Bug 184584 - [NEW PORT] math/py-bottleneck: Collection of fast NumPy array functions written in Cython
Summary: [NEW PORT] math/py-bottleneck: Collection of fast NumPy array functions writt...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: William Grzybowski
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-12-07 21:40 UTC by Johannes Meixner
Modified: 2013-12-08 14:20 UTC (History)
0 users

See Also:


Attachments
.shar (2.05 KB, text/plain)
2013-12-07 21:40 UTC, Johannes Meixner
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Johannes Meixner 2013-12-07 21:40:00 UTC
Bottleneck is a collection of fast NumPy array functions written in Cython.

WWW: https://www.github.com/kwgoodman/bottleneck/

Generated with FreeBSD Port Tools 0.99_8 (mode: new)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-12-07 21:40:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->freebsd-python

freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Comment 2 William Grzybowski freebsd_committer freebsd_triage 2013-12-08 14:16:52 UTC
Responsible Changed
From-To: freebsd-python->wg

I'll take it.
Comment 3 William Grzybowski freebsd_committer freebsd_triage 2013-12-08 14:19:39 UTC
State Changed
From-To: open->closed

New port added. Thanks!
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-12-08 14:19:48 UTC
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@chaot.net>
+# $FreeBSD$
+
+PORTNAME=	bottleneck
+PORTVERSION=	0.7.0
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	Bottleneck-${PORTVERSION}
+
+MAINTAINER=	xmj@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/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"