[arch-commits] Commit in python-netcdf4/trunk (PKGBUILD)

Bruno Pagani archange at archlinux.org
Mon Feb 17 17:54:14 UTC 2020


    Date: Monday, February 17, 2020 @ 17:54:13
  Author: archange
Revision: 574480

Drop python2 version

Modified:
  python-netcdf4/trunk/PKGBUILD

----------+
 PKGBUILD |   35 +++++------------------------------
 1 file changed, 5 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-02-17 17:53:08 UTC (rev 574479)
+++ PKGBUILD	2020-02-17 17:54:13 UTC (rev 574480)
@@ -4,8 +4,7 @@
 # Contributor: rememberthemer <rememberthemer at _GMAIL_DOT_COM_>
 
 _pkg=netCDF4
-pkgbase=python-${_pkg,,}
-pkgname=("python-${_pkg,,}" "python2-${_pkg,,}")
+pkgname=python-${_pkg,,}
 pkgver=1.5.3
 pkgrel=2
 pkgdesc="Python/NumPy interface to the netCDF C library"
@@ -12,33 +11,22 @@
 arch=(x86_64)
 url="https://unidata.github.io/netcdf4-python"
 license=(MIT)
-makedepends=(cython python-setuptools cython2 python2-setuptools python-numpy python-cftime python2-numpy python2-cftime netcdf)
-source=("https://files.pythonhosted.org/packages/source/n/${_pkg}/${_pkg}-${pkgver}.tar.gz")
+depends=(python-numpy python-cftime netcdf)
+makedepends=(cython python-setuptools)
+source=(https://files.pythonhosted.org/packages/source/${_pkg::1}/${_pkg}/${_pkg}-${pkgver}.tar.gz)
 sha256sums=('2a3ca855848f4bbf07fac366da77a681fcead18c0a8813d91d46302f562dc3be')
 
-prepare() {
-    cp -a ${_pkg}-${pkgver}{,-py2}
-}
-
 build() {
     cd ${_pkg}-${pkgver}
     USE_NCCONFIG=1 python setup.py build
-
-    cd ../${_pkg}-${pkgver}-py2
-    USE_NCCONFIG=1 python2 setup.py build
 }
 
 check() {
     cd ${_pkg}-${pkgver}/test
     PYTHONPATH="../build/lib.linux-${CARCH}-3.8" python -B ./run_all.py
-
-    cd ../../${_pkg}-${pkgver}-py2/test
-    PYTHONPATH="../build/lib.linux-${CARCH}-2.7" python2 -B ./run_all.py
 }
 
-package_python-netcdf4() {
-    depends=(python-numpy python-cftime netcdf)
-
+package() {
     cd ${_pkg}-${pkgver}
     USE_NCCONFIG=1 python setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=2
 
@@ -45,16 +33,3 @@
     install -Dm644 docs/netCDF4/* -t "${pkgdir}"/usr/share/doc/${pkgname}/docs/netCDF4
     install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
 }
-
-package_python2-netcdf4() {
-    depends=(python2-numpy python2-cftime netcdf)
-
-    cd ${_pkg}-${pkgver}-py2
-    USE_NCCONFIG=1 python2 setup.py install --prefix=/usr --root="${pkgdir}" --skip-build --optimize=2
-
-    for binary in "${pkgdir}"/usr/bin/* ;
-        do mv ${binary}{,-py2} ;
-    done
-    install -Dm644 docs/netCDF4/* -t "${pkgdir}"/usr/share/doc/${pkgname}/docs/netCDF4
-    install -Dm644 COPYING -t "${pkgdir}"/usr/share/licenses/${pkgname}
-}



More information about the arch-commits mailing list