From owner-svn-ports-head@freebsd.org Mon May 21 07:47:12 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF53DEE6CC6; Mon, 21 May 2018 07:47:12 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E0EC771CA1; Mon, 21 May 2018 07:47:11 +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 A32DF22103; Mon, 21 May 2018 07:47:11 +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 w4L7lBJs097551; Mon, 21 May 2018 07:47:11 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4L7lAOw097547; Mon, 21 May 2018 07:47:10 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201805210747.w4L7lAOw097547@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 21 May 2018 07:47:10 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-scikit-umfpack X-SVN-Commit-Revision: 470515 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2018 07:47:13 -0000 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 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/