Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 May 2018 07:47:10 +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: r470515 - in head/math: . py-scikit-umfpack
Message-ID:  <201805210747.w4L7lAOw097547@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Mon May 21 07:47:10 2018
New Revision: 470515
URL: https://svnweb.freebsd.org/changeset/ports/470515

Log:
  New port: math/py-scikit-umfpack: Python interface to UMFPACK sparse direct solver

Added:
  head/math/py-scikit-umfpack/
  head/math/py-scikit-umfpack/Makefile   (contents, props changed)
  head/math/py-scikit-umfpack/distinfo   (contents, props changed)
  head/math/py-scikit-umfpack/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Mon May 21 07:35:32 2018	(r470514)
+++ head/math/Makefile	Mon May 21 07:47:10 2018	(r470515)
@@ -707,6 +707,7 @@
     SUBDIR += py-random2
     SUBDIR += py-roman
     SUBDIR += py-scientific
+    SUBDIR += py-scikit-umfpack
     SUBDIR += py-seaborn
     SUBDIR += py-statsmodels
     SUBDIR += py-svgmath

Added: head/math/py-scikit-umfpack/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-scikit-umfpack/Makefile	Mon May 21 07:47:10 2018	(r470515)
@@ -0,0 +1,32 @@
+# $FreeBSD$
+
+PORTNAME=	scikit-umfpack
+DISTVERSION=	0.3.1
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Python interface to UMFPACK sparse direct solver
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYNUMPY} \
+		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${FLAVOR} \
+		swig3.0:devel/swig30
+LIB_DEPENDS=	libblas.so:math/blas \
+		libcblas.so:math/cblas \
+		libumfpack.so:math/suitesparse
+RUN_DEPENDS=	${PYNUMPY} \
+		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils cython autoplist
+
+BINARY_ALIAS=	swig=swig3.0
+
+post-extract: # workaround for https://github.com/scikit-umfpack/scikit-umfpack/issues/53
+	@truncate -s 0 ${WRKSRC}/README.rst
+
+.include <bsd.port.mk>

Added: head/math/py-scikit-umfpack/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-scikit-umfpack/distinfo	Mon May 21 07:47:10 2018	(r470515)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1526884059
+SHA256 (scikit-umfpack-0.3.1.tar.gz) = 6236856ed34a74a541028a80989372e956ccfbd2751de0ee74b7e0800f50f3b7
+SIZE (scikit-umfpack-0.3.1.tar.gz) = 24627

Added: head/math/py-scikit-umfpack/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-scikit-umfpack/pkg-descr	Mon May 21 07:47:10 2018	(r470515)
@@ -0,0 +1,3 @@
+scikit-umfpack provides a wrapper of UMFPACK sparse direct solver to SciPy.
+
+WWW: https://scikit-umfpack.github.io/scikit-umfpack/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805210747.w4L7lAOw097547>