Date: Thu, 21 Jan 2021 21:07:38 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562245 - in head/misc: . py-pyEDFlib Message-ID: <202101212107.10LL7cBx043782@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101212107.10LL7cBx043782>