Date: Thu, 21 Jan 2021 02:28:35 +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: r562169 - in head/math: . py-python-picard Message-ID: <202101210228.10L2SZdM057754@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Thu Jan 21 02:28:35 2021 New Revision: 562169 URL: https://svnweb.freebsd.org/changeset/ports/562169 Log: New port: math/py-python-picard: Preconditoned ICA algorithm for Real Data Added: head/math/py-python-picard/ head/math/py-python-picard/Makefile (contents, props changed) head/math/py-python-picard/distinfo (contents, props changed) head/math/py-python-picard/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jan 21 02:27:40 2021 (r562168) +++ head/math/Makefile Thu Jan 21 02:28:35 2021 (r562169) @@ -840,6 +840,7 @@ SUBDIR += py-python-fcl SUBDIR += py-python-igraph SUBDIR += py-python-louvain + SUBDIR += py-python-picard SUBDIR += py-pyvtk SUBDIR += py-qdldl SUBDIR += py-quadprog Added: head/math/py-python-picard/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-python-picard/Makefile Thu Jan 21 02:28:35 2021 (r562169) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= python-picard +DISTVERSION= 0.4 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Preconditoned ICA algorithm for Real Data + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>0:math/py-matplotlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}numexpr>0:math/py-numexpr@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= distutils concurrent autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/math/py-python-picard/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-python-picard/distinfo Thu Jan 21 02:28:35 2021 (r562169) @@ -0,0 +1,3 @@ +TIMESTAMP = 1611194915 +SHA256 (python-picard-0.4.tar.gz) = e7359f44ac4c0988faed690b2efaa6ad9424a297e3e2d37433a263ea9dbd537f +SIZE (python-picard-0.4.tar.gz) = 58647 Added: head/math/py-python-picard/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-python-picard/pkg-descr Thu Jan 21 02:28:35 2021 (r562169) @@ -0,0 +1,6 @@ +Picard is a library to run the Preconditioned ICA for Real Data (PICARD) +algorithm and its orthogonal version (PICARD-O). These algorithms show fast +convergence even on real data for which sources independence do not perfectly +hold. + +WWW: https://pierreablin.github.io/picard/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101210228.10L2SZdM057754>