From owner-svn-ports-head@freebsd.org Tue Sep 29 06:08:43 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 B4A25A0BC88; Tue, 29 Sep 2015 06:08:43 +0000 (UTC) (envelope-from wen@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 A55941C1E; Tue, 29 Sep 2015 06:08:43 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8T68hTH007356; Tue, 29 Sep 2015 06:08:43 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8T68gNs007352; Tue, 29 Sep 2015 06:08:42 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201509290608.t8T68gNs007352@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 29 Sep 2015 06:08:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398159 - in head/math/py-gsl: . files 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: Tue, 29 Sep 2015 06:08:43 -0000 Author: wen Date: Tue Sep 29 06:08:41 2015 New Revision: 398159 URL: https://svnweb.freebsd.org/changeset/ports/398159 Log: - Update to 2.1.1 - Add LICENSE - Reset maintainer to ports@ Modified: head/math/py-gsl/Makefile head/math/py-gsl/distinfo head/math/py-gsl/files/patch-src_init_initmodule.c head/math/py-gsl/files/patch-src_transform_wavelet.c Modified: head/math/py-gsl/Makefile ============================================================================== --- head/math/py-gsl/Makefile Tue Sep 29 05:19:40 2015 (r398158) +++ head/math/py-gsl/Makefile Tue Sep 29 06:08:41 2015 (r398159) @@ -2,22 +2,23 @@ # $FreeBSD$ PORTNAME= gsl -PORTVERSION= 0.9.5 -PORTREVISION= 7 +PORTVERSION= 2.1.1 CATEGORIES= math python MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/py${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= pygsl-${PORTVERSION} DIST_SUBDIR= python -MAINTAINER= wen@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python interface to GNU Scientific Library -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/numpy/core/include/numpy/arrayobject.h:${PORTSDIR}/math/py-numpy -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/numpy/__init__.py:${PORTSDIR}/math/py-numpy +LICENSE= GPLv2 + +BUILD_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} LIB_DEPENDS= libgsl.so:${PORTSDIR}/math/gsl USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils .include Modified: head/math/py-gsl/distinfo ============================================================================== --- head/math/py-gsl/distinfo Tue Sep 29 05:19:40 2015 (r398158) +++ head/math/py-gsl/distinfo Tue Sep 29 06:08:41 2015 (r398159) @@ -1,2 +1,2 @@ -SHA256 (python/pygsl-0.9.5.tar.gz) = 05d11160ff482e1f1f5f6a047aaef2776eedc1e8e1f98533a95299584fd4752d -SIZE (python/pygsl-0.9.5.tar.gz) = 1674504 +SHA256 (python/pygsl-2.1.1.tar.gz) = 3d17e6deb5433b331a567a45ff467f41e9059def76e6ef0f21d8e891498f946a +SIZE (python/pygsl-2.1.1.tar.gz) = 727636 Modified: head/math/py-gsl/files/patch-src_init_initmodule.c ============================================================================== --- head/math/py-gsl/files/patch-src_init_initmodule.c Tue Sep 29 05:19:40 2015 (r398158) +++ head/math/py-gsl/files/patch-src_init_initmodule.c Tue Sep 29 06:08:41 2015 (r398159) @@ -1,6 +1,6 @@ ---- src/init/initmodule.c.orig +--- src/init/initmodule.c.orig 2015-09-27 12:30:47 UTC +++ src/init/initmodule.c -@@ -83,7 +83,7 @@ +@@ -111,7 +111,7 @@ PyGSL_set_debug_level(PyObject *self, Py FUNC_MESS_BEGIN(); #if DEBUG == 1 @@ -9,11 +9,11 @@ int tmp, i, max, *ptr; if(!PyArg_ParseTuple(args, "i", &tmp)) return NULL; -@@ -108,6 +108,7 @@ +@@ -136,6 +136,7 @@ PyGSL_set_debug_level(PyObject *self, Py Py_INCREF(Py_None); FUNC_MESS_END(); return Py_None; + } #else - GSL_ERROR_NULL("PyGSL was not compiled with DEBUG = 1; Can not set DEBUG level!", GSL_EUNIMPL); + PyGSL_ERROR_NULL("PyGSL was not compiled with DEBUG = 1; Can not set DEBUG level!", GSL_EUNIMPL); #endif Modified: head/math/py-gsl/files/patch-src_transform_wavelet.c ============================================================================== --- head/math/py-gsl/files/patch-src_transform_wavelet.c Tue Sep 29 05:19:40 2015 (r398158) +++ head/math/py-gsl/files/patch-src_transform_wavelet.c Tue Sep 29 06:08:41 2015 (r398159) @@ -1,6 +1,6 @@ ---- src/transform/wavelet.c.orig +--- src/transform/wavelet.c.orig 2015-09-13 16:16:51 UTC +++ src/transform/wavelet.c -@@ -70,6 +70,7 @@ +@@ -147,6 +147,7 @@ PyGSL_wavelet_ ## direction(PyGSL_wavele { \ PyObject *tmp; \ FUNC_MESS_BEGIN(); \ @@ -8,7 +8,7 @@ pygsl_transform_help_s helps;\ struct _pygsl_transform_help_rf_s s; \ helps.info = &wavelet_info; \ -@@ -79,6 +80,7 @@ +@@ -156,6 +157,7 @@ PyGSL_wavelet_ ## direction(PyGSL_wavele tmp = PyGSL_transform_((PyObject *) self, args, &helps); \ FUNC_MESS_END(); \ return tmp; \ @@ -16,7 +16,7 @@ } PYGSL_WAVLET(forward) PYGSL_WAVLET(inverse) -@@ -89,6 +91,7 @@ +@@ -166,6 +168,7 @@ PyGSL_wavelet2d_ ## type ## direction(Py { \ PyObject *tmp; \ FUNC_MESS_BEGIN(); \ @@ -24,7 +24,7 @@ pygsl_transform_help_s helps;\ struct _pygsl_transform_help_rf_s s; \ helps.info = &wavelet_info; \ -@@ -98,6 +101,7 @@ +@@ -175,6 +178,7 @@ PyGSL_wavelet2d_ ## type ## direction(Py tmp = PyGSL_transform_2d_((PyObject *) self, args, &helps); \ FUNC_MESS_END(); \ return tmp; \