[arch-commits] Commit in python-pytest-flake8/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sun Jul 8 12:55:20 UTC 2018
Date: Sunday, July 8, 2018 @ 12:55:20
Author: felixonmars
Revision: 354839
archrelease: copy trunk to community-staging-any
Added:
python-pytest-flake8/repos/community-staging-any/
python-pytest-flake8/repos/community-staging-any/PKGBUILD
(from rev 354837, python-pytest-flake8/trunk/PKGBUILD)
----------+
PKGBUILD | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
Copied: python-pytest-flake8/repos/community-staging-any/PKGBUILD (from rev 354837, python-pytest-flake8/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2018-07-08 12:55:20 UTC (rev 354839)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-pytest-flake8
+pkgname=('python-pytest-flake8' 'python2-pytest-flake8')
+pkgver=1.0.1
+pkgrel=2
+pkgdesc='pytest plugin to check FLAKE8 requirements'
+arch=('any')
+license=('MIT')
+url='https://github.com/tholo/pytest-flake8'
+makedepends=('python-pytest' 'python2-pytest' 'flake8' 'python2-flake8')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/tholo/pytest-flake8/archive/$pkgver.tar.gz")
+sha512sums=('a46f47493094543ee88068527c211a4fef7bf17b5a7ff39c04b3daaa46493919710266ae3e02041f9ded0191ffa7a0687a939bf8b4d647ee4d543a3b210dc994')
+
+prepare() {
+ sed -i 's/ignore = E128/ignore = E128 W605/' pytest-flake8-$pkgver/tox.ini
+
+ cp -a pytest-flake8-$pkgver{,-py2}
+}
+
+build() {
+ cd "$srcdir"/pytest-flake8-$pkgver
+ python setup.py build
+
+ cd "$srcdir"/pytest-flake8-$pkgver-py2
+ python2 setup.py build
+}
+
+check() {
+ # Hack entry points by installing it
+
+ cd "$srcdir"/pytest-flake8-$pkgver
+ python setup.py install --root="$PWD/tmp_install" --optimize=1
+ PYTHONPATH="$PWD/tmp_install/usr/lib/python3.7/site-packages:$PYTHONPATH" py.test
+
+ cd "$srcdir"/pytest-flake8-$pkgver-py2
+ python2 setup.py install --root="$PWD/tmp_install" --optimize=1
+ PYTHONPATH="$PWD/tmp_install/usr/lib/python2.7/site-packages:$PYTHONPATH" py.test2
+}
+
+package_python-pytest-flake8() {
+ depends=('python-pytest' 'flake8')
+
+ cd pytest-flake8-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+ install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-pytest-flake8() {
+ depends=('python2-pytest' 'python2-flake8')
+
+ cd pytest-flake8-$pkgver-py2
+ python2 setup.py install --root="$pkgdir" --optimize=1
+ install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list