Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 29 Sep 2015 06:08:42 +0000 (UTC)
From:      Wen Heping <wen@FreeBSD.org>
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
Message-ID:  <201509290608.t8T68gNs007352@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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; \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509290608.t8T68gNs007352>