svn commit: r398618 - head/math/py-numexpr

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Oct 4 19:01:09 UTC 2015


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 at 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


More information about the svn-ports-head mailing list