svn commit: r335898 - in head/math: . py-bottleneck
William Grzybowski
wg at FreeBSD.org
Sun Dec 8 14:19:36 UTC 2013
Author: wg
Date: Sun Dec 8 14:19:34 2013
New Revision: 335898
URL: http://svnweb.freebsd.org/changeset/ports/335898
Log:
math/py-bottleneck: Collection of fast NumPy array functions written in Cython
WWW: https://www.github.com/kwgoodman/bottleneck/
PR: ports/184584
Submitted by: Johannes Jost Meixner <xmj chaot.net>
Added:
head/math/py-bottleneck/
head/math/py-bottleneck/Makefile (contents, props changed)
head/math/py-bottleneck/distinfo (contents, props changed)
head/math/py-bottleneck/pkg-descr (contents, props changed)
Modified:
head/math/Makefile
Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile Sun Dec 8 14:19:02 2013 (r335897)
+++ head/math/Makefile Sun Dec 8 14:19:34 2013 (r335898)
@@ -541,6 +541,7 @@
SUBDIR += py-basemap
SUBDIR += py-basemap-data
SUBDIR += py-bitvector
+ SUBDIR += py-bottleneck
SUBDIR += py-ffc
SUBDIR += py-fiat
SUBDIR += py-fpconst
Added: head/math/py-bottleneck/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/math/py-bottleneck/Makefile Sun Dec 8 14:19:34 2013 (r335898)
@@ -0,0 +1,37 @@
+# Created by: Johannes Meixner <xmj at chaot.net>
+# $FreeBSD$
+
+PORTNAME= bottleneck
+PORTVERSION= 0.7.0
+CATEGORIES= math python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= Bottleneck-${PORTVERSION}
+
+MAINTAINER= xmj at chaot.net
+COMMENT= Collection of fast NumPy array functions written in Cython
+
+LICENSE= BSD
+
+BUILD_DEPENDS= ${PYNUMPY} \
+ cython:${PORTSDIR}/lang/cython
+RUN_DEPENDS= ${PYNUMPY}
+TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose
+
+USE_PYTHON= yes
+USE_PYDISTUTILS= yes
+PYDISTUTILS_AUTOPLIST= yes
+
+OPTIONS_DEFINE= DOCS
+DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
+PORTDOCS= *
+
+regression-test: build
+ @cd ${WRKSRC} && nosetests
+
+post-install:
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/README.rst ${WRKSRC}/RELEASE.rst ${STAGEDIR}${DOCSDIR}
+ cd ${WRKSRC}/doc/source/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>
Added: head/math/py-bottleneck/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/math/py-bottleneck/distinfo Sun Dec 8 14:19:34 2013 (r335898)
@@ -0,0 +1,2 @@
+SHA256 (Bottleneck-0.7.0.tar.gz) = 8d7bc7eac458632603fc10c71f26c0f9f976293ff394f48efae6ecd4c79b21fc
+SIZE (Bottleneck-0.7.0.tar.gz) = 1634309
Added: head/math/py-bottleneck/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/math/py-bottleneck/pkg-descr Sun Dec 8 14:19:34 2013 (r335898)
@@ -0,0 +1,3 @@
+Bottleneck is a collection of fast NumPy array functions written in Cython.
+
+WWW: https://www.github.com/kwgoodman/bottleneck/
More information about the svn-ports-all
mailing list