From 5dfeff2052b1f94b334649b2909c4ccdca87f804 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Tue, 18 Feb 2020 19:21:12 +0000 Subject: [PATCH] removed extra/python2-isort --- extra/python2-isort/PKGBUILD | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 extra/python2-isort/PKGBUILD diff --git a/extra/python2-isort/PKGBUILD b/extra/python2-isort/PKGBUILD deleted file mode 100644 index 325b9ec1c..000000000 --- a/extra/python2-isort/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: Felix Yan -# Contributor: Yaron de Leeuw - -# ALARM: Kevin Mihelich -# - python2 variant since it's missing upstream and still a dep - -pkgname=python2-isort -pkgver=4.3.4 -pkgrel=2 -pkgdesc="A Python utility / library to sort Python imports." -arch=('any') -url="https://github.com/timothycrosley/isort" -license=('MIT') -depends=('python2-setuptools' 'python2-futures') -checkdepends=('python2-pytest' 'python2-mock') -source=("$pkgbase-$pkgver.tar.gz::https://github.com/timothycrosley/isort/archive/$pkgver.tar.gz") -sha512sums=('cc9254c288e479a05cc20c29c9be6fa368a46e85f8eb0a22238ee3e57004a75999d35d2a736ad0a4ddc7d7c7efcc30fb97bfd16fcd0adb44d3b937dd935588b7') - -build() { - cd "$srcdir"/isort-$pkgver - python2 setup.py build -} - -check() { - cd "$srcdir"/isort-$pkgver - python2 setup.py test -} - -package() { - cd isort-$pkgver - python2 setup.py install --root="$pkgdir" --optimize=1 - install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE - - mv "$pkgdir"/usr/bin/isort{,2} -}