mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 14:22:14 +01:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
# 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="python py-setuptools"
|
|
depends_dev=""
|
|
makedepends=""
|
|
install=""
|
|
subpackages=""
|
|
source="https://pypi.python.org/packages/source/p/pep8/${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"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python 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"
|