mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +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.6.2
|
|
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="c7a3f57d832484a6295164661fbb1335 pep8-1.6.2.tar.gz"
|
|
sha256sums="b8b7e35630b5539e26a197dfc6005be9e1e9a135496b377723a8ebc01b9bcbff pep8-1.6.2.tar.gz"
|
|
sha512sums="f046a1e3ed68a7c409ad6c501a54ed14188de670f0e0d873d2d7960e45fec0c4e2c27067877854ecbb20f3690f9d2ca1fa4bc1cc52b22e1f71bd0aec4ddb6fc9 pep8-1.6.2.tar.gz"
|