From owner-svn-ports-all@freebsd.org Sun Feb 25 05:34:09 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 766D3F07681; Sun, 25 Feb 2018 05:34:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 219E66C21B; Sun, 25 Feb 2018 05:34:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1C5297A0; Sun, 25 Feb 2018 05:34:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1P5Y8vh066617; Sun, 25 Feb 2018 05:34:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1P5Y8oK066614; Sun, 25 Feb 2018 05:34:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802250534.w1P5Y8oK066614@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, 25 Feb 2018 05:34:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462929 - head/science/py-h5py X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/science/py-h5py X-SVN-Commit-Revision: 462929 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Feb 2018 05:34:09 -0000 Author: sunpoet Date: Sun Feb 25 05:34:08 2018 New Revision: 462929 URL: https://svnweb.freebsd.org/changeset/ports/462929 Log: Update to 2.7.1 - Change MASTER_SITES to CHEESESHOP - Sort BUILD_DEPENDS - Update pkg-descr - Add PyPI and GitHub repository to WWW - Take maintainership Modified: head/science/py-h5py/Makefile head/science/py-h5py/distinfo head/science/py-h5py/pkg-descr Modified: head/science/py-h5py/Makefile ============================================================================== --- head/science/py-h5py/Makefile Sun Feb 25 05:34:03 2018 (r462928) +++ head/science/py-h5py/Makefile Sun Feb 25 05:34:08 2018 (r462929) @@ -2,26 +2,26 @@ # $FreeBSD$ PORTNAME= h5py -DISTVERSION= 2.7.1 +PORTVERSION= 2.7.1 CATEGORIES= science python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= General-purpose Python interface to the HDF5 library LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/licenses/license.txt BUILD_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pkgconfig>0:devel/py-pkgconfig@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pkgconfig>=0:devel/py-pkgconfig@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} LIB_DEPENDS= libhdf5.so:science/hdf5 RUN_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} USES= python -USE_GITHUB= yes -USE_PYTHON= distutils cython autoplist concurrent +USE_PYTHON= autoplist concurrent cython distutils PORTDOCS= * PORTEXAMPLES= multiprocessing_example.py swmr_multiprocess.py \ @@ -29,19 +29,19 @@ PORTEXAMPLES= multiprocessing_example.py swmr_multipro OPTIONS_DEFINE= DOCS EXAMPLES -do-install-DOCS-on: +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/h5py/*.so + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR} - ${COPYTREE_SHARE} ${WRKSRC}/docs ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} -do-install-EXAMPLES-on: +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - ${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/examples/|} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples/ && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR} -post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/h5py/*.so - do-test: - @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test + cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test .include Modified: head/science/py-h5py/distinfo ============================================================================== --- head/science/py-h5py/distinfo Sun Feb 25 05:34:03 2018 (r462928) +++ head/science/py-h5py/distinfo Sun Feb 25 05:34:08 2018 (r462929) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519520436 -SHA256 (h5py-h5py-2.7.1_GH0.tar.gz) = 55bdefda47c49973ec24384097d18eb5f84797c057aaf0bf0b6b0f7860ad43e7 -SIZE (h5py-h5py-2.7.1_GH0.tar.gz) = 268457 +TIMESTAMP = 1519522205 +SHA256 (h5py-2.7.1.tar.gz) = 180a688311e826ff6ae6d3bda9b5c292b90b28787525ddfcb10a29d5ddcae2cc +SIZE (h5py-2.7.1.tar.gz) = 264225 Modified: head/science/py-h5py/pkg-descr ============================================================================== --- head/science/py-h5py/pkg-descr Sun Feb 25 05:34:03 2018 (r462928) +++ head/science/py-h5py/pkg-descr Sun Feb 25 05:34:08 2018 (r462929) @@ -1,12 +1,12 @@ 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.8 API, while the high-level component supports -Python-style object-oriented access to HDF5 files, datasets and groups. +library from Python. The low-level interface is intended to be a complete +wrapping of the HDF5 API, while the high-level component supports access to HDF5 +files, datasets and groups using established Python and NumPy concepts. -The goal of this package is not to provide yet another scientific data -model. It is an attempt to create as straightforward a binding as possible -to the existing HDF5 API and abstractions, so that Python programs can -easily deal with HDF5 files and exchange data with other HDF5-aware -applications. +A strong emphasis on automatic conversion between Python (Numpy) datatypes and +data structures and their HDF5 equivalents vastly simplifies the process of +reading and writing data from Python. -WWW: https://www.h5py.org +WWW: https://www.h5py.org/ +WWW: https://pypi.python.org/pypi/h5py +WWW: https://github.com/h5py/h5py