From owner-svn-ports-head@freebsd.org Sun Oct 4 19:01:09 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4426DA0F3E3; Sun, 4 Oct 2015 19:01:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.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 34FF61EAD; Sun, 4 Oct 2015 19:01:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t94J19KB071710; Sun, 4 Oct 2015 19:01:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t94J18Yr071707; Sun, 4 Oct 2015 19:01:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201510041901.t94J18Yr071707@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 4 Oct 2015 19:01:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398618 - head/math/py-numexpr 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, 04 Oct 2015 19:01:09 -0000 Author: sunpoet Date: Sun Oct 4 19:01:07 2015 New Revision: 398618 URL: https://svnweb.freebsd.org/changeset/ports/398618 Log: - Update to 2.4.4 - Update MASTER_SITES: move back to CHEESESHOP - Add LICENSE_FILE - Reformat pkg-descr and remove trailing space - Add PyPI as primary WWW Changes: https://github.com/pydata/numexpr/blob/master/RELEASE_NOTES.rst Modified: head/math/py-numexpr/Makefile head/math/py-numexpr/distinfo head/math/py-numexpr/pkg-descr Modified: head/math/py-numexpr/Makefile ============================================================================== --- head/math/py-numexpr/Makefile Sun Oct 4 18:58:34 2015 (r398617) +++ head/math/py-numexpr/Makefile Sun Oct 4 19:01:07 2015 (r398618) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= numexpr -PORTVERSION= 2.4 -DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTVERSION= 2.4.4 CATEGORIES= math python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast numerical array expression evaluator for Python and NumPy LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= ${PYNUMPY} RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -19,9 +19,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PYTHON= autoplist concurrent distutils USES= python -GH_ACCOUNT= pydata -USE_GITHUB= yes - post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/numexpr/interpreter.so Modified: head/math/py-numexpr/distinfo ============================================================================== --- head/math/py-numexpr/distinfo Sun Oct 4 18:58:34 2015 (r398617) +++ head/math/py-numexpr/distinfo Sun Oct 4 19:01:07 2015 (r398618) @@ -1,2 +1,2 @@ -SHA256 (pydata-numexpr-v2.4_GH0.tar.gz) = b3d5f998d1e489c6e3e672d75c2e6b4a871d67fefc6b6154b90795010bee14c0 -SIZE (pydata-numexpr-v2.4_GH0.tar.gz) = 89752 +SHA256 (numexpr-2.4.4.tar.gz) = dfa2fad1af040e93a8022fbe4437f2183bf80e5f64d466381ad589308a73565b +SIZE (numexpr-2.4.4.tar.gz) = 87133 Modified: head/math/py-numexpr/pkg-descr ============================================================================== --- head/math/py-numexpr/pkg-descr Sun Oct 4 18:58:34 2015 (r398617) +++ head/math/py-numexpr/pkg-descr Sun Oct 4 19:01:07 2015 (r398618) @@ -1,16 +1,17 @@ -numexpr - Fast numerical array expression evaluator for Python and NumPy. +numexpr - Fast numerical array expression evaluator for Python and NumPy. The numexpr package evaluates multiple-operator array expressions many times faster than NumPy can. It accepts the expression as a string, analyzes it, rewrites it more efficiently, and compiles it to faster Python code on the fly. -It's the next best thing to writing the expression in C and compiling it with -a specialized just-in-time (JIT) compiler, i.e. it does not require a compiler -at runtime. +It's the next best thing to writing the expression in C and compiling it with a +specialized just-in-time (JIT) compiler, i.e. it does not require a compiler at +runtime. Also, numexpr has support for the Intel VML (Vector Math Library) -- integrated in Intel MKL (Math Kernel Library) --, allowing nice speed-ups when computing transcendental functions (like trigonometrical, exponentials...) on top of Intel-compatible platforms. This support also allows to use multiple cores in -your computations. +your computations. +WWW: https://pypi.python.org/pypi/numexpr WWW: https://github.com/pydata/numexpr