aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-11-19 18:37:51 +0100
committerJakub Jirutka <jakub@jirutka.cz>2016-11-19 18:46:43 +0100
commit8c3e8c1acf4b307de56e12319e323bd95012c68b (patch)
tree540cc3b46cfb0e5dd78b73445a53266093b4693b
parent100f56206c71d63a2a07bd789e4b0067f5ae5e1e (diff)
downloadaports-8c3e8c1acf4b307de56e12319e323bd95012c68b.tar.bz2
aports-8c3e8c1acf4b307de56e12319e323bd95012c68b.tar.xz
testing/pep8: remove, duplicate of main/py-pep8
-rw-r--r--testing/pep8/APKBUILD43
1 files changed, 0 insertions, 43 deletions
diff --git a/testing/pep8/APKBUILD b/testing/pep8/APKBUILD
deleted file mode 100644
index 38f76a4072..0000000000
--- a/testing/pep8/APKBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# Contributor: Orion <systmkor@gmail.com>
-# Maintainer: Orion <systmkor@gmail.com>
-# Reference
-# https://www.archlinux.org/packages/community/any/pep8/
-# https://pypi.python.org/pypi/pep8
-pkgname=pep8
-pkgver=1.7.0
-pkgrel=0
-pkgdesc="A tool to check your Python code against some of the style conventions in PEP 8."
-url="http://github.com/jcrocholl/pep8/"
-arch="noarch"
-license="custom:Expat"
-depends="python2 py-setuptools"
-depends_dev=""
-makedepends=""
-install=""
-subpackages=""
-source="https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz"
-
-_builddir="$srcdir/$pkgname-$pkgver"
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- python2 setup.py build || return 1
-}
-
-package() {
- cd "$_builddir"
- python2 setup.py install --prefix=/usr --root="$pkgdir" || return 1
-}
-
-md5sums="2b03109b0618afe3b04b3e63b334ac9d pep8-1.7.0.tar.gz"
-sha256sums="a113d5f5ad7a7abacef9df5ec3f2af23a20a28005921577b15dd584d099d5900 pep8-1.7.0.tar.gz"
-sha512sums="0077dac97846fe3a5fc654cd3ce8578845cf3b93ee097a3ae6ff2db4ae0797ad5766c69f036d6a5add786eb929a9beb6d657ab693227b8df2ba46ec0f9284b0a pep8-1.7.0.tar.gz"