From owner-svn-ports-all@freebsd.org Thu Jan 21 21:07:39 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C41814DFACB; Thu, 21 Jan 2021 21:07:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DMFMv5BVSz4vT7; Thu, 21 Jan 2021 21:07:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9A6A213066; Thu, 21 Jan 2021 21:07:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10LL7dG9043786; Thu, 21 Jan 2021 21:07:39 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10LL7cBx043782; Thu, 21 Jan 2021 21:07:38 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202101212107.10LL7cBx043782@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 21 Jan 2021 21:07:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562245 - in head/misc: . py-pyEDFlib X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-pyEDFlib X-SVN-Commit-Revision: 562245 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jan 2021 21:07:39 -0000 Author: yuri Date: Thu Jan 21 21:07:38 2021 New Revision: 562245 URL: https://svnweb.freebsd.org/changeset/ports/562245 Log: New port: misc/py-pyEDFlib: Python library to read/write EDF+/BDF+ files based on EDFlib Added: head/misc/py-pyEDFlib/ head/misc/py-pyEDFlib/Makefile (contents, props changed) head/misc/py-pyEDFlib/distinfo (contents, props changed) head/misc/py-pyEDFlib/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Thu Jan 21 20:52:47 2021 (r562244) +++ head/misc/Makefile Thu Jan 21 21:07:38 2021 (r562245) @@ -399,6 +399,7 @@ SUBDIR += py-powerline-status SUBDIR += py-progressbar SUBDIR += py-progressbar2 + SUBDIR += py-pyEDFlib SUBDIR += py-pyfiglet SUBDIR += py-pykml SUBDIR += py-pyprind Added: head/misc/py-pyEDFlib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyEDFlib/Makefile Thu Jan 21 21:07:38 2021 (r562245) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= pyEDFlib +DISTVERSION= 0.1.20 +CATEGORIES= misc +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python library to read/write EDF+/BDF+ files based on EDFlib + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} + +USES= fortran python +USE_PYTHON= distutils cython autoplist + +USE_GCC= yes # fails to build with clang: https://github.com/holgern/pyedflib/issues/104 + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pyedflib/_extensions/_pyedflib.so + +.include Added: head/misc/py-pyEDFlib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyEDFlib/distinfo Thu Jan 21 21:07:38 2021 (r562245) @@ -0,0 +1,3 @@ +TIMESTAMP = 1611261255 +SHA256 (pyEDFlib-0.1.20.tar.gz) = ab6db552e4ec07f0c667504f395dd665ff753937b2d6b288b3214dd2d98fd56b +SIZE (pyEDFlib-0.1.20.tar.gz) = 1248389 Added: head/misc/py-pyEDFlib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-pyEDFlib/pkg-descr Thu Jan 21 21:07:38 2021 (r562245) @@ -0,0 +1,10 @@ +pyEDFlib is a python library to read/write EDF+/BDF+ files based on EDFlib. + +EDF means European Data Format and was first published by Kemp in 1992. In 2003, +an improved version of the file protocol named EDF+ has been published, also +by Kemp. + +The EDF/EDF+ format saves all data in the 16 bit format. A version which saves +all data in the 24 bit format was introduces by the company BioSemi. + +WWW: https://github.com/holgern/pyedflib