Date: Thursday, February 13, 2020 @ 14:59:56 Author: felixonmars Revision: 570516
upgpkg: python-deprecation 2.0.7-2: remove python2 sibling Modified: python-deprecation/trunk/PKGBUILD ----------+ PKGBUILD | 35 ++++++++--------------------------- 1 file changed, 8 insertions(+), 27 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-02-13 14:57:10 UTC (rev 570515) +++ PKGBUILD 2020-02-13 14:59:56 UTC (rev 570516) @@ -1,22 +1,18 @@ # Maintainer: Felix Yan <felixonm...@archlinux.org> -_name=deprecation -pkgbase=python-deprecation -pkgname=('python-deprecation' 'python2-deprecation') +pkgname=python-deprecation pkgver=2.0.7 -pkgrel=1 +pkgrel=2 pkgdesc="A library to handle automated deprecations" arch=('any') license=('Apache') url="https://deprecation.readthedocs.io" -makedepends=('python-setuptools' 'python2-setuptools') -checkdepends=('python2-unittest2') -source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz") +depends=('python') +makedepends=('python-setuptools') +source=("https://files.pythonhosted.org/packages/source/d/deprecation/deprecation-$pkgver.tar.gz") sha512sums=('4412e2e95f4aa4b3d5598346a6649c8d945d7401ac2d0fba3b6f6eef567403c8454ebe537e8de646903cd0c2308f48ecb949dae3015ba7617edd2fa3a26ed429') prepare() { - cp -a deprecation-$pkgver{,-py2} - sed -i 's/unittest2/unittest/g' deprecation-$pkgver/tests/*.py export LC_CTYPE=en_US.UTF-8 @@ -23,31 +19,16 @@ } build() { - cd "$srcdir"/deprecation-$pkgver + cd deprecation-$pkgver python setup.py build - - cd "$srcdir"/deprecation-$pkgver-py2 - python2 setup.py build } check() { - cd "$srcdir"/deprecation-$pkgver + cd deprecation-$pkgver python -m unittest discover - - cd "$srcdir"/deprecation-$pkgver-py2 - python2 -m unittest discover } -package_python-deprecation() { - depends=('python') - +package() { cd deprecation-$pkgver python setup.py install --root="$pkgdir" --optimize=1 } - -package_python2-deprecation() { - depends=('python2') - - cd deprecation-$pkgver-py2 - python2 setup.py install --root="$pkgdir" --optimize=1 -}