[arch-commits] Commit in python-h5py/repos (8 files)
Felix Yan
felixonmars at archlinux.org
Wed Mar 22 08:39:05 UTC 2017
Date: Wednesday, March 22, 2017 @ 08:39:04
Author: felixonmars
Revision: 218351
archrelease: copy trunk to community-i686, community-x86_64
Added:
python-h5py/repos/community-i686/DOCS_LICENSE.txt
(from rev 218350, python-h5py/trunk/DOCS_LICENSE.txt)
python-h5py/repos/community-i686/PKGBUILD
(from rev 218350, python-h5py/trunk/PKGBUILD)
python-h5py/repos/community-x86_64/DOCS_LICENSE.txt
(from rev 218350, python-h5py/trunk/DOCS_LICENSE.txt)
python-h5py/repos/community-x86_64/PKGBUILD
(from rev 218350, python-h5py/trunk/PKGBUILD)
Deleted:
python-h5py/repos/community-i686/DOCS_LICENSE.txt
python-h5py/repos/community-i686/PKGBUILD
python-h5py/repos/community-x86_64/DOCS_LICENSE.txt
python-h5py/repos/community-x86_64/PKGBUILD
-----------------------------------+
/DOCS_LICENSE.txt | 50 ++++++++++++++
/PKGBUILD | 126 ++++++++++++++++++++++++++++++++++++
community-i686/DOCS_LICENSE.txt | 25 -------
community-i686/PKGBUILD | 62 -----------------
community-x86_64/DOCS_LICENSE.txt | 25 -------
community-x86_64/PKGBUILD | 62 -----------------
6 files changed, 176 insertions(+), 174 deletions(-)
Deleted: community-i686/DOCS_LICENSE.txt
===================================================================
--- community-i686/DOCS_LICENSE.txt 2017-03-22 08:38:26 UTC (rev 218350)
+++ community-i686/DOCS_LICENSE.txt 2017-03-22 08:39:04 UTC (rev 218351)
@@ -1,25 +0,0 @@
-Summary
-=======
-
-The h5py documentation is licensed under the Creative Commons "BY" license.
-This license allows you to reproduce and create derivative works based on the
-documentation contained in this directory, provided you acknowledge the h5py
-authors when you do so.
-
-We suggest you use the following method of acknowledgement:
-
-****************************************************
-HDF5 for Python Documentation
-Copyright 2008-2011 Andrew Collette and contributers
-http://h5py.alfven.org
-****************************************************
-
-License Terms
-=============
-
-The text of this license is available on the Creative Commons website:
-http://creativecommons.org/licenses/by/3.0/legalcode
-
-A non-official summary is also available:
-http://creativecommons.org/licenses/by/3.0/
-
Copied: python-h5py/repos/community-i686/DOCS_LICENSE.txt (from rev 218350, python-h5py/trunk/DOCS_LICENSE.txt)
===================================================================
--- community-i686/DOCS_LICENSE.txt (rev 0)
+++ community-i686/DOCS_LICENSE.txt 2017-03-22 08:39:04 UTC (rev 218351)
@@ -0,0 +1,25 @@
+Summary
+=======
+
+The h5py documentation is licensed under the Creative Commons "BY" license.
+This license allows you to reproduce and create derivative works based on the
+documentation contained in this directory, provided you acknowledge the h5py
+authors when you do so.
+
+We suggest you use the following method of acknowledgement:
+
+****************************************************
+HDF5 for Python Documentation
+Copyright 2008-2011 Andrew Collette and contributers
+http://h5py.alfven.org
+****************************************************
+
+License Terms
+=============
+
+The text of this license is available on the Creative Commons website:
+http://creativecommons.org/licenses/by/3.0/legalcode
+
+A non-official summary is also available:
+http://creativecommons.org/licenses/by/3.0/
+
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2017-03-22 08:38:26 UTC (rev 218350)
+++ community-i686/PKGBUILD 2017-03-22 08:39:04 UTC (rev 218351)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
-# Contributor: Rich Li <rich at dranek.com>
-# Contributor: Sebastien Binet <binet at lblbox>
-
-pkgbase=python-h5py
-pkgname=(python-h5py python2-h5py)
-pkgver=2.6.0
-pkgrel=3
-pkgdesc="General-purpose Python bindings for the HDF5 library"
-url="http://www.h5py.org/"
-arch=('i686' 'x86_64')
-license=('BSD')
-makedepends=('cython' 'cython2' 'hdf5' 'python-numpy' 'python2-numpy' 'python-six' 'python2-six')
-source=("https://pypi.python.org/packages/source/h/h5py/h5py-$pkgver.tar.gz"
- DOCS_LICENSE.txt)
-md5sums=('ec476211bd1de3f5ac150544189b0bf4'
- '747a856995bb271af44733b2fdab642b')
-
-prepare() {
- # Remove RPATH
- sed -i "s/settings\\['runtime_library_dirs'\\] = settings\\['library_dirs'\\]/pass/" h5py-$pkgver/setup_build.py
-
- cp -a h5py-$pkgver{,-py2}
-}
-
-build() {
- cd "$srcdir"/h5py-$pkgver
- python setup.py build
-
- cd "$srcdir"/h5py-$pkgver-py2
- python2 setup.py build
-}
-
-check() {
- cd "$srcdir"/h5py-$pkgver
- python setup.py test
-
- cd "$srcdir"/h5py-$pkgver-py2
- python2 setup.py test
-}
-
-package_python-h5py() {
- depends=('hdf5' 'python-numpy' 'python-six' 'cython')
- conflicts=('hdf5-openmpi' 'python-h5py-openmpi')
-
- cd "$srcdir"/h5py-$pkgver
- python setup.py install --root="$pkgdir" --optimize=1
-
- install -D "$srcdir"/DOCS_LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-h5py() {
- depends=('hdf5' 'python2-numpy' 'python2-six' 'cython2')
- conflicts=('hdf5-openmpi' 'python2-h5py-openmpi')
-
- cd "$srcdir"/h5py-$pkgver-py2
- python2 setup.py install --root="$pkgdir" --optimize=1
-
- install -D "$srcdir"/DOCS_LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
Copied: python-h5py/repos/community-i686/PKGBUILD (from rev 218350, python-h5py/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-22 08:39:04 UTC (rev 218351)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Rich Li <rich at dranek.com>
+# Contributor: Sebastien Binet <binet at lblbox>
+
+pkgbase=python-h5py
+pkgname=(python-h5py python2-h5py)
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="General-purpose Python bindings for the HDF5 library"
+url="http://www.h5py.org/"
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('cython' 'cython2' 'hdf5' 'python-numpy' 'python2-numpy' 'python-six' 'python2-six'
+ 'python-pkgconfig' 'python2-pkgconfig')
+source=("https://pypi.io/packages/source/h/h5py/h5py-$pkgver.tar.gz"
+ DOCS_LICENSE.txt)
+md5sums=('f62937f40f68d3b128b3941be239dd93'
+ '747a856995bb271af44733b2fdab642b')
+
+prepare() {
+ # Remove RPATH
+ sed -i "s/settings\\['runtime_library_dirs'\\] = settings\\['library_dirs'\\]/pass/" h5py-$pkgver/setup_build.py
+
+ cp -a h5py-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir"/h5py-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/h5py-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir"/h5py-$pkgver
+ python setup.py test
+
+ cd "$srcdir"/h5py-$pkgver-py2
+ python2 setup.py test
+}
+
+package_python-h5py() {
+ depends=('hdf5' 'python-numpy' 'python-six' 'cython')
+ conflicts=('hdf5-openmpi' 'python-h5py-openmpi')
+
+ cd "$srcdir"/h5py-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+
+ install -D "$srcdir"/DOCS_LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-h5py() {
+ depends=('hdf5' 'python2-numpy' 'python2-six' 'cython2')
+ conflicts=('hdf5-openmpi' 'python2-h5py-openmpi')
+
+ cd "$srcdir"/h5py-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+
+ install -D "$srcdir"/DOCS_LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
Deleted: community-x86_64/DOCS_LICENSE.txt
===================================================================
--- community-x86_64/DOCS_LICENSE.txt 2017-03-22 08:38:26 UTC (rev 218350)
+++ community-x86_64/DOCS_LICENSE.txt 2017-03-22 08:39:04 UTC (rev 218351)
@@ -1,25 +0,0 @@
-Summary
-=======
-
-The h5py documentation is licensed under the Creative Commons "BY" license.
-This license allows you to reproduce and create derivative works based on the
-documentation contained in this directory, provided you acknowledge the h5py
-authors when you do so.
-
-We suggest you use the following method of acknowledgement:
-
-****************************************************
-HDF5 for Python Documentation
-Copyright 2008-2011 Andrew Collette and contributers
-http://h5py.alfven.org
-****************************************************
-
-License Terms
-=============
-
-The text of this license is available on the Creative Commons website:
-http://creativecommons.org/licenses/by/3.0/legalcode
-
-A non-official summary is also available:
-http://creativecommons.org/licenses/by/3.0/
-
Copied: python-h5py/repos/community-x86_64/DOCS_LICENSE.txt (from rev 218350, python-h5py/trunk/DOCS_LICENSE.txt)
===================================================================
--- community-x86_64/DOCS_LICENSE.txt (rev 0)
+++ community-x86_64/DOCS_LICENSE.txt 2017-03-22 08:39:04 UTC (rev 218351)
@@ -0,0 +1,25 @@
+Summary
+=======
+
+The h5py documentation is licensed under the Creative Commons "BY" license.
+This license allows you to reproduce and create derivative works based on the
+documentation contained in this directory, provided you acknowledge the h5py
+authors when you do so.
+
+We suggest you use the following method of acknowledgement:
+
+****************************************************
+HDF5 for Python Documentation
+Copyright 2008-2011 Andrew Collette and contributers
+http://h5py.alfven.org
+****************************************************
+
+License Terms
+=============
+
+The text of this license is available on the Creative Commons website:
+http://creativecommons.org/licenses/by/3.0/legalcode
+
+A non-official summary is also available:
+http://creativecommons.org/licenses/by/3.0/
+
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2017-03-22 08:38:26 UTC (rev 218350)
+++ community-x86_64/PKGBUILD 2017-03-22 08:39:04 UTC (rev 218351)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
-# Contributor: Rich Li <rich at dranek.com>
-# Contributor: Sebastien Binet <binet at lblbox>
-
-pkgbase=python-h5py
-pkgname=(python-h5py python2-h5py)
-pkgver=2.6.0
-pkgrel=3
-pkgdesc="General-purpose Python bindings for the HDF5 library"
-url="http://www.h5py.org/"
-arch=('i686' 'x86_64')
-license=('BSD')
-makedepends=('cython' 'cython2' 'hdf5' 'python-numpy' 'python2-numpy' 'python-six' 'python2-six')
-source=("https://pypi.python.org/packages/source/h/h5py/h5py-$pkgver.tar.gz"
- DOCS_LICENSE.txt)
-md5sums=('ec476211bd1de3f5ac150544189b0bf4'
- '747a856995bb271af44733b2fdab642b')
-
-prepare() {
- # Remove RPATH
- sed -i "s/settings\\['runtime_library_dirs'\\] = settings\\['library_dirs'\\]/pass/" h5py-$pkgver/setup_build.py
-
- cp -a h5py-$pkgver{,-py2}
-}
-
-build() {
- cd "$srcdir"/h5py-$pkgver
- python setup.py build
-
- cd "$srcdir"/h5py-$pkgver-py2
- python2 setup.py build
-}
-
-check() {
- cd "$srcdir"/h5py-$pkgver
- python setup.py test
-
- cd "$srcdir"/h5py-$pkgver-py2
- python2 setup.py test
-}
-
-package_python-h5py() {
- depends=('hdf5' 'python-numpy' 'python-six' 'cython')
- conflicts=('hdf5-openmpi' 'python-h5py-openmpi')
-
- cd "$srcdir"/h5py-$pkgver
- python setup.py install --root="$pkgdir" --optimize=1
-
- install -D "$srcdir"/DOCS_LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-h5py() {
- depends=('hdf5' 'python2-numpy' 'python2-six' 'cython2')
- conflicts=('hdf5-openmpi' 'python2-h5py-openmpi')
-
- cd "$srcdir"/h5py-$pkgver-py2
- python2 setup.py install --root="$pkgdir" --optimize=1
-
- install -D "$srcdir"/DOCS_LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
Copied: python-h5py/repos/community-x86_64/PKGBUILD (from rev 218350, python-h5py/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2017-03-22 08:39:04 UTC (rev 218351)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Rich Li <rich at dranek.com>
+# Contributor: Sebastien Binet <binet at lblbox>
+
+pkgbase=python-h5py
+pkgname=(python-h5py python2-h5py)
+pkgver=2.7.0
+pkgrel=1
+pkgdesc="General-purpose Python bindings for the HDF5 library"
+url="http://www.h5py.org/"
+arch=('i686' 'x86_64')
+license=('BSD')
+makedepends=('cython' 'cython2' 'hdf5' 'python-numpy' 'python2-numpy' 'python-six' 'python2-six'
+ 'python-pkgconfig' 'python2-pkgconfig')
+source=("https://pypi.io/packages/source/h/h5py/h5py-$pkgver.tar.gz"
+ DOCS_LICENSE.txt)
+md5sums=('f62937f40f68d3b128b3941be239dd93'
+ '747a856995bb271af44733b2fdab642b')
+
+prepare() {
+ # Remove RPATH
+ sed -i "s/settings\\['runtime_library_dirs'\\] = settings\\['library_dirs'\\]/pass/" h5py-$pkgver/setup_build.py
+
+ cp -a h5py-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir"/h5py-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/h5py-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ cd "$srcdir"/h5py-$pkgver
+ python setup.py test
+
+ cd "$srcdir"/h5py-$pkgver-py2
+ python2 setup.py test
+}
+
+package_python-h5py() {
+ depends=('hdf5' 'python-numpy' 'python-six' 'cython')
+ conflicts=('hdf5-openmpi' 'python-h5py-openmpi')
+
+ cd "$srcdir"/h5py-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+
+ install -D "$srcdir"/DOCS_LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-h5py() {
+ depends=('hdf5' 'python2-numpy' 'python2-six' 'cython2')
+ conflicts=('hdf5-openmpi' 'python2-h5py-openmpi')
+
+ cd "$srcdir"/h5py-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+
+ install -D "$srcdir"/DOCS_LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
More information about the arch-commits
mailing list