Date: Sunday, December 30, 2018 @ 15:34:38 Author: jelle Revision: 419298
python-pep8: test dep of python-flake8-polyfill Added: python-pep8/ python-pep8/repos/ python-pep8/trunk/ python-pep8/trunk/PKGBUILD ----------+ PKGBUILD | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) Added: python-pep8/trunk/PKGBUILD =================================================================== --- python-pep8/trunk/PKGBUILD (rev 0) +++ python-pep8/trunk/PKGBUILD 2018-12-30 15:34:38 UTC (rev 419298) @@ -0,0 +1,21 @@ +# Maintainer: Tim Rakowski <[email protected]> +pkgname=python-pep8 +pkgver=1.7.1 +pkgrel=1 +pkgdesc="The final release of the pep8 package" +arch=('any') +url="https://github.com/PyCQA/pycodestyle" +license=('MIT') +depends=('python') +makedepends=('python-setuptools') +options=(!emptydirs) +source=("$pkgname-$pkgver.tar.gz::https://github.com/PyCQA/pycodestyle/archive/1.7.1.tar.gz") +md5sums=('29968b9f5563d32f5946fbefe7086ee0') + +package() { + cd "$srcdir/pycodestyle-1.7.1" + python setup.py install --root="$pkgdir/" --optimize=1 + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +# vim:set ts=2 sw=2 et:
