Date: Fri, 22 Jan 2021 22:24:57 +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: r562350 - in head/misc: . py-mffpy Message-ID: <202101222224.10MMOvij086010@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Jan 22 22:24:57 2021 New Revision: 562350 URL: https://svnweb.freebsd.org/changeset/ports/562350 Log: New port: misc/py-mffpy: Reader and writer for Philips' MFF file format Added: head/misc/py-mffpy/ head/misc/py-mffpy/Makefile (contents, props changed) head/misc/py-mffpy/distinfo (contents, props changed) head/misc/py-mffpy/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Fri Jan 22 22:18:23 2021 (r562349) +++ head/misc/Makefile Fri Jan 22 22:24:57 2021 (r562350) @@ -385,6 +385,7 @@ SUBDIR += py-gluonnlp SUBDIR += py-huepy SUBDIR += py-kartograph + SUBDIR += py-mffpy SUBDIR += py-molequeue SUBDIR += py-mxnet SUBDIR += py-onnx Added: head/misc/py-mffpy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-mffpy/Makefile Fri Jan 22 22:24:57 2021 (r562350) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= mffpy +DISTVERSION= 0.6.0 +CATEGORIES= misc +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Reader and writer for Philips' MFF file format + +LICENSE= APACHE20 + +PY_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}pytz>=2019.2:devel/py-pytz@${PY_FLAVOR} +BUILD_DEPENDS= ${PY_DEPENDS} \ + ${PYTHON_PKGNAMEPREFIX}pip>0:devel/py-pip@${PY_FLAVOR} +RUN_DEPENDS= ${PY_DEPENDS} + +USES= python:3.6+ +USE_PYTHON= distutils concurrent autoplist + +TEST_TARGET= test + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/misc/py-mffpy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-mffpy/distinfo Fri Jan 22 22:24:57 2021 (r562350) @@ -0,0 +1,3 @@ +TIMESTAMP = 1611353163 +SHA256 (mffpy-0.6.0.tar.gz) = 3a8deeaa2b18b96a9bf89d710a57603e6494ce491bcdedfab2b91dec89be5953 +SIZE (mffpy-0.6.0.tar.gz) = 120571 Added: head/misc/py-mffpy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-mffpy/pkg-descr Fri Jan 22 22:24:57 2021 (r562350) @@ -0,0 +1,4 @@ +mffpy is a lean reader for EGI's MFF file format. These files are directories +containing several files of mostly xml files, but also binary files. + +WWW: https://github.com/BEL-Public/mffpy/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101222224.10MMOvij086010>