From owner-svn-ports-head@FreeBSD.ORG Sun Jun 14 12:39:05 2015 Return-Path: Delivered-To: svn-ports-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDE5867A; Sun, 14 Jun 2015 12:39:05 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1E1A87C; Sun, 14 Jun 2015 12:39:05 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5ECd5sk074774; Sun, 14 Jun 2015 12:39:05 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5ECd4NX074769; Sun, 14 Jun 2015 12:39:04 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201506141239.t5ECd4NX074769@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 14 Jun 2015 12:39:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389627 - in head/science: . py-scikit-sparse X-SVN-Group: ports-head 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.20 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: Sun, 14 Jun 2015 12:39:06 -0000 Author: wen Date: Sun Jun 14 12:39:04 2015 New Revision: 389627 URL: https://svnweb.freebsd.org/changeset/ports/389627 Log: scikits-sparse is a Python module for sparse matrix calculations. WWW: https://scikits.appspot.com/sparse/ PR: 200678 Submitted by: yuri@rawbw.com Added: head/science/py-scikit-sparse/ head/science/py-scikit-sparse/Makefile (contents, props changed) head/science/py-scikit-sparse/distinfo (contents, props changed) head/science/py-scikit-sparse/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Sun Jun 14 11:36:55 2015 (r389626) +++ head/science/Makefile Sun Jun 14 12:39:04 2015 (r389627) @@ -149,6 +149,7 @@ SUBDIR += py-pydicom SUBDIR += py-pysal SUBDIR += py-scikit-learn + SUBDIR += py-scikit-sparse SUBDIR += py-scimath SUBDIR += py-scipy SUBDIR += py-ws2300 Added: head/science/py-scikit-sparse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-scikit-sparse/Makefile Sun Jun 14 12:39:04 2015 (r389627) @@ -0,0 +1,28 @@ +# Created by: Yuri Victorovich +# $FreeBSD$ + +PORTNAME= scikit-sparse +PORTVERSION= 0.2 +CATEGORIES= science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= scikits.sparse-${PORTVERSION} + +MAINTAINER= yuri@rawbw.com +COMMENT= Sparse matrix package + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_SITELIBDIR}/scipy/version.py:${PORTSDIR}/science/py-scipy +BUILD_DEPENDS= ${RUN_DEPENDS} \ + cython>0:${PORTSDIR}/lang/cython +LIB_DEPENDS= libumfpack.so:${PORTSDIR}/math/suitesparse + +USES= fortran python +USE_PYTHON= autoplist distutils + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -shared + +.include Added: head/science/py-scikit-sparse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-scikit-sparse/distinfo Sun Jun 14 12:39:04 2015 (r389627) @@ -0,0 +1,2 @@ +SHA256 (scikits.sparse-0.2.tar.gz) = 509d93d1020362607ebd677995df6480c160cbd9f021c296152f1fd59c8c1afc +SIZE (scikits.sparse-0.2.tar.gz) = 204097 Added: head/science/py-scikit-sparse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-scikit-sparse/pkg-descr Sun Jun 14 12:39:04 2015 (r389627) @@ -0,0 +1,3 @@ +scikits-sparse is a Python module for sparse matrix calculations. + +WWW: https://scikits.appspot.com/sparse/