From owner-svn-ports-all@FreeBSD.ORG Sun Dec 8 14:19:36 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4373CEA9; Sun, 8 Dec 2013 14:19:36 +0000 (UTC) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 23D73169C; Sun, 8 Dec 2013 14:19:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB8EJagj098349; Sun, 8 Dec 2013 14:19:36 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB8EJZF6098345; Sun, 8 Dec 2013 14:19:35 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201312081419.rB8EJZF6098345@svn.freebsd.org> From: William Grzybowski Date: Sun, 8 Dec 2013 14:19:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335898 - in head/math: . py-bottleneck X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Dec 2013 14:19:36 -0000 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 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 +# $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 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/