[arch-commits] Commit in python-pytables/repos (4 files)

Andrzej Giniewicz aginiewicz at archlinux.org
Fri May 15 16:29:21 UTC 2015


    Date: Friday, May 15, 2015 @ 18:29:21
  Author: aginiewicz
Revision: 133516

archrelease: copy trunk to community-i686, community-x86_64

Added:
  python-pytables/repos/community-i686/PKGBUILD
    (from rev 133515, python-pytables/trunk/PKGBUILD)
  python-pytables/repos/community-x86_64/PKGBUILD
    (from rev 133515, python-pytables/trunk/PKGBUILD)
Deleted:
  python-pytables/repos/community-i686/PKGBUILD
  python-pytables/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |  114 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   56 ---------------------
 community-x86_64/PKGBUILD |   56 ---------------------
 3 files changed, 114 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2015-05-15 16:28:35 UTC (rev 133515)
+++ community-i686/PKGBUILD	2015-05-15 16:29:21 UTC (rev 133516)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
-# Contributor: Sebastien Binet <binet at cern.ch>
-
-pkgbase=python-pytables
-pkgname=('python2-pytables' 'python-pytables')
-pkgver=3.2.0
-pkgrel=1
-arch=("i686" "x86_64")
-pkgdesc="A package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data"
-url="http://www.pytables.org"
-license=("BSD")
-makedepends=('lzo' 'hdf5' 'python2-numexpr' 'python-numexpr' 'python-setuptools' 'python2-setuptools')
-source=("http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz")
-md5sums=('339a2225ee814a6899cb14e7ba28c081')
-
-prepare() {
-  cd "$srcdir"/tables-$pkgver
-
-  cd "$srcdir"
-  cp -a tables-$pkgver tables-py2-$pkgver
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/tables-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/tables-$pkgver
-  python setup.py build
-}
-
-package_python2-pytables() {
-  depends=('lzo' 'hdf5' 'python2-numexpr')
-
-  cd "$srcdir"/tables-py2-${pkgver}
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # see FS#36015
-  mv "$pkgdir"/usr/bin/pt2to3{,-2.7}
-  mv "$pkgdir"/usr/bin/ptdump{,-2.7}
-  mv "$pkgdir"/usr/bin/ptrepack{,-2.7}
-}
-
-package_python-pytables() {
-  depends=('lzo' 'hdf5' 'python-numexpr')
-
-  cd "$srcdir"/tables-${pkgver}
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: python-pytables/repos/community-i686/PKGBUILD (from rev 133515, python-pytables/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2015-05-15 16:29:21 UTC (rev 133516)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Sebastien Binet <binet at cern.ch>
+
+pkgbase=python-pytables
+pkgname=('python2-pytables' 'python-pytables')
+pkgver=3.2.0
+pkgrel=2
+arch=("i686" "x86_64")
+pkgdesc="A package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data"
+url="http://www.pytables.org"
+license=("BSD")
+makedepends=('lzo' 'hdf5' 'python2-numexpr' 'python-numexpr' 'python-setuptools' 'python2-setuptools')
+source=("http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz")
+md5sums=('339a2225ee814a6899cb14e7ba28c081')
+
+prepare() {
+  cd "$srcdir"/tables-$pkgver
+
+  cd "$srcdir"
+  cp -a tables-$pkgver tables-py2-$pkgver
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/tables-py2-$pkgver
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/tables-$pkgver
+  python setup.py build
+}
+
+package_python2-pytables() {
+  depends=('lzo' 'hdf5' 'python2-numexpr')
+
+  cd "$srcdir"/tables-py2-${pkgver}
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # see FS#36015 and FS#44971
+  mv "$pkgdir"/usr/bin/pt2to3{,-2.7}
+  mv "$pkgdir"/usr/bin/ptdump{,-2.7}
+  mv "$pkgdir"/usr/bin/ptrepack{,-2.7}
+  mv "$pkgdir"/usr/bin/pttree{,-2.7}
+}
+
+package_python-pytables() {
+  depends=('lzo' 'hdf5' 'python-numexpr')
+
+  cd "$srcdir"/tables-${pkgver}
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-05-15 16:28:35 UTC (rev 133515)
+++ community-x86_64/PKGBUILD	2015-05-15 16:29:21 UTC (rev 133516)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
-# Contributor: Sebastien Binet <binet at cern.ch>
-
-pkgbase=python-pytables
-pkgname=('python2-pytables' 'python-pytables')
-pkgver=3.2.0
-pkgrel=1
-arch=("i686" "x86_64")
-pkgdesc="A package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data"
-url="http://www.pytables.org"
-license=("BSD")
-makedepends=('lzo' 'hdf5' 'python2-numexpr' 'python-numexpr' 'python-setuptools' 'python2-setuptools')
-source=("http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz")
-md5sums=('339a2225ee814a6899cb14e7ba28c081')
-
-prepare() {
-  cd "$srcdir"/tables-$pkgver
-
-  cd "$srcdir"
-  cp -a tables-$pkgver tables-py2-$pkgver
-}
-
-build() {
-  msg "Building Python2"
-  cd "$srcdir"/tables-py2-$pkgver
-  python2 setup.py build
-
-  msg "Building Python3"
-  cd "$srcdir"/tables-$pkgver
-  python setup.py build
-}
-
-package_python2-pytables() {
-  depends=('lzo' 'hdf5' 'python2-numexpr')
-
-  cd "$srcdir"/tables-py2-${pkgver}
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # see FS#36015
-  mv "$pkgdir"/usr/bin/pt2to3{,-2.7}
-  mv "$pkgdir"/usr/bin/ptdump{,-2.7}
-  mv "$pkgdir"/usr/bin/ptrepack{,-2.7}
-}
-
-package_python-pytables() {
-  depends=('lzo' 'hdf5' 'python-numexpr')
-
-  cd "$srcdir"/tables-${pkgver}
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-

Copied: python-pytables/repos/community-x86_64/PKGBUILD (from rev 133515, python-pytables/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-05-15 16:29:21 UTC (rev 133516)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz <gginiu at gmail.com>
+# Contributor: Sebastien Binet <binet at cern.ch>
+
+pkgbase=python-pytables
+pkgname=('python2-pytables' 'python-pytables')
+pkgver=3.2.0
+pkgrel=2
+arch=("i686" "x86_64")
+pkgdesc="A package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data"
+url="http://www.pytables.org"
+license=("BSD")
+makedepends=('lzo' 'hdf5' 'python2-numexpr' 'python-numexpr' 'python-setuptools' 'python2-setuptools')
+source=("http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz")
+md5sums=('339a2225ee814a6899cb14e7ba28c081')
+
+prepare() {
+  cd "$srcdir"/tables-$pkgver
+
+  cd "$srcdir"
+  cp -a tables-$pkgver tables-py2-$pkgver
+}
+
+build() {
+  msg "Building Python2"
+  cd "$srcdir"/tables-py2-$pkgver
+  python2 setup.py build
+
+  msg "Building Python3"
+  cd "$srcdir"/tables-$pkgver
+  python setup.py build
+}
+
+package_python2-pytables() {
+  depends=('lzo' 'hdf5' 'python2-numexpr')
+
+  cd "$srcdir"/tables-py2-${pkgver}
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # see FS#36015 and FS#44971
+  mv "$pkgdir"/usr/bin/pt2to3{,-2.7}
+  mv "$pkgdir"/usr/bin/ptdump{,-2.7}
+  mv "$pkgdir"/usr/bin/ptrepack{,-2.7}
+  mv "$pkgdir"/usr/bin/pttree{,-2.7}
+}
+
+package_python-pytables() {
+  depends=('lzo' 'hdf5' 'python-numexpr')
+
+  cd "$srcdir"/tables-${pkgver}
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+



More information about the arch-commits mailing list