blob: 38f76a4072eef21b0b97ae8754d44b7bd31067c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# 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"
|