Date: Monday, August 19, 2019 @ 17:51:50 Author: aginiewicz Revision: 500197
upgpkg: python-pytables 3.5.2-2 python-pytables: without python2-pandas this is not needed by anything, removing due to python 2 EOL in 2020 Modified: python-pytables/trunk/PKGBUILD ----------+ PKGBUILD | 52 +++++++--------------------------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-08-19 16:37:15 UTC (rev 500196) +++ PKGBUILD 2019-08-19 17:51:50 UTC (rev 500197) @@ -2,63 +2,25 @@ # Maintainer: Bruno Pagani <[email protected]> # Contributor: Sebastien Binet <[email protected]> -pkgbase=python-pytables -pkgname=(python2-pytables python-pytables) +pkgname=python-pytables pkgver=3.5.2 -pkgrel=1 +pkgrel=2 pkgdesc="A package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data" arch=(x86_64) url="https://www.pytables.org" license=("BSD") -makedepends=(lzo hdf5 python2-numexpr python-numexpr python-setuptools python2-setuptools cython cython2 blosc bzip2) -source=(${pkgbase}-${pkgver}.tar.gz::"https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz") +depends=(blosc lzo hdf5 python-numexpr) +makedepends=(python-setuptools cython) +source=(${pkgname}-${pkgver}.tar.gz::"https://github.com/PyTables/PyTables/archive/v${pkgver}.tar.gz") sha256sums=('e4fc6f1194f02a8b10ff923e77364fb70710592f620d7de35f4d4e064dc70e91') -prepare() { - cp -a PyTables-$pkgver PyTables-py2-$pkgver -} - build() { - # "Building Python2" - cd PyTables-py2-$pkgver - python2 setup.py build --blosc=/usr --lzo=/usr --hdf5=/usr --bzip2=/usr - - # "Building Python3" - cd ../PyTables-$pkgver + cd PyTables-$pkgver python setup.py build --blosc=/usr --lzo=/usr --hdf5=/usr --bzip2=/usr } -package_python2-pytables() { - depends=(lzo hdf5 python2-numexpr blosc) - - cd PyTables-py2-$pkgver - python2 setup.py install --skip-build --prefix=/usr --root="$pkgdir" --optimize=1 - - install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/ - - # 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} - - # see FS#45975 - _site_packages=`python2 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"` - chmod a+rx "${pkgdir}${_site_packages}"/*.egg-info - chmod a+r "${pkgdir}${_site_packages}"/*.egg-info/* -} - -package_python-pytables() { - depends=(lzo hdf5 python-numexpr blosc) - +package() { cd PyTables-${pkgver} python setup.py install --skip-build --prefix=/usr --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname/ - - # see FS#45975 - _site_packages=`python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"` - chmod a+rx "${pkgdir}${_site_packages}"/*.egg-info - chmod a+r "${pkgdir}${_site_packages}"/*.egg-info/* } -
