svn commit: r332177 - in head/science/py-h5py: . files
Rusmir Dusko
nemysis at FreeBSD.org
Wed Oct 30 21:34:18 UTC 2013
Author: nemysis
Date: Wed Oct 30 21:34:16 2013
New Revision: 332177
URL: http://svnweb.freebsd.org/changeset/ports/332177
Log:
- Update to 2.1.1
- Remove leading article from COMMENT
- Use default dependency for science/hdf5-18
- Add patch
PR: ports/181483
Submitted by: Johannes Meixner <xmj at chaot.net>
Approved by: wg (mentor)
Added:
head/science/py-h5py/files/
head/science/py-h5py/files/patch-setup.py (contents, props changed)
Deleted:
head/science/py-h5py/pkg-plist
Modified:
head/science/py-h5py/Makefile
head/science/py-h5py/distinfo (contents, props changed)
head/science/py-h5py/pkg-descr
Modified: head/science/py-h5py/Makefile
==============================================================================
--- head/science/py-h5py/Makefile Wed Oct 30 21:28:24 2013 (r332176)
+++ head/science/py-h5py/Makefile Wed Oct 30 21:34:16 2013 (r332177)
@@ -2,32 +2,27 @@
# $FreeBSD$
PORTNAME= h5py
-PORTVERSION= 1.2.1
-PORTREVISION= 3
+PORTVERSION= 2.1.1
CATEGORIES= science python
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= fmysh at iijmio-mail.jp
-COMMENT= A general-purpose Python interface to the HDF5 library
+COMMENT= General-purpose Python interface to the HDF5 library
BUILD_DEPENDS= ${PYNUMPY}
RUN_DEPENDS= ${PYNUMPY}
+LIB_DEPENDS= libhdf5.so:${PORTSDIR}/science/hdf5-18
-OPTIONS_DEFINE= NEW_HDF5
-NEW_HDF5_DESC= Use port science/hdf5-18 instead of science/hdf5
-OPTIONSFILE?= ${PORT_DBDIR}/py-${PORTNAME}/options
-
-NO_STAGE= yes
-.include <bsd.port.options.mk>
-.if ${PORT_OPTIONS:MNEW_HDF5}
-LIB_DEPENDS= hdf5:${PORTSDIR}/science/hdf5-18
-.else
-LIB_DEPENDS= hdf5:${PORTSDIR}/science/hdf5
-.endif
-
-USE_PYTHON= 2.5+
-USE_PYDISTUTILS= easy_install
-PYEASYINSTALL_ARCHDEP= yes
+USE_PYTHON= yes
+USE_PYDISTUTILS= yes
+PYDISTUTILS_AUTOPLIST= yes
+
+post-patch:
+ ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \
+ ${WRKSRC}/setup.py
+
+regression-test: build
+ @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
.include <bsd.port.mk>
Modified: head/science/py-h5py/distinfo
==============================================================================
--- head/science/py-h5py/distinfo Wed Oct 30 21:28:24 2013 (r332176)
+++ head/science/py-h5py/distinfo Wed Oct 30 21:34:16 2013 (r332177)
@@ -1,2 +1,2 @@
-SHA256 (h5py-1.2.1.tar.gz) = 2263c966a87adff606a677214d3af7593d3ae300b6b6b0a77412a9f3ae7a8e43
-SIZE (h5py-1.2.1.tar.gz) = 1462012
+SHA256 (h5py-2.1.1.tar.gz) = 6e4f135268436cda1dc19a081dc5384d431057344fa1121a886016cd8c89c716
+SIZE (h5py-2.1.1.tar.gz) = 984939
Added: head/science/py-h5py/files/patch-setup.py
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/science/py-h5py/files/patch-setup.py Wed Oct 30 21:34:16 2013 (r332177)
@@ -0,0 +1,12 @@
+--- ./setup.py.orig 2013-10-29 15:50:15.741120947 +0200
++++ ./setup.py 2013-10-29 15:51:01.621119992 +0200
+@@ -68,6 +68,9 @@
+ elif sys.platform == 'darwin':
+ COMPILER_SETTINGS['include_dirs'] += ['/opt/local/include']
+ COMPILER_SETTINGS['library_dirs'] += ['/opt/local/lib']
++ elif sys.platform.startswith('freebsd'):
++ COMPILER_SETTINGS['include_dirs'] += ['%%LOCALBASE%%/include']
++ COMPILER_SETTINGS['library_dirs'] += ['%%LOCALBASE%%/lib']
+ COMPILER_SETTINGS['runtime_library_dirs'] = [op.abspath(x) for x in COMPILER_SETTINGS['library_dirs']]
+
+ MODULES = ['defs','_errors','_objects','_proxy', 'h5fd', 'h5z',
Modified: head/science/py-h5py/pkg-descr
==============================================================================
--- head/science/py-h5py/pkg-descr Wed Oct 30 21:28:24 2013 (r332176)
+++ head/science/py-h5py/pkg-descr Wed Oct 30 21:34:16 2013 (r332177)
@@ -1,6 +1,6 @@
The h5py package provides both a high- and low-level interface to the HDF5
-library from Python. The low-level interface is intended to be a complete
-wrapping of the HDF5 1.6 and 1.8 APIs, while the high-level component supports
+library from Python. The low-level interface is intended to be a complete
+wrapping of the HDF5 1.8 API, while the high-level component supports
Python-style object-oriented access to HDF5 files, datasets and groups.
The goal of this package is not to provide yet another scientific data
More information about the svn-ports-all
mailing list