pycodestyle: rebuild for Python 3.5
Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg.
This commit is contained in:
parent
61d93d0270
commit
071f46de03
|
@ -1,12 +1,11 @@
|
|||
# Template file for 'pycodestyle'
|
||||
pkgname=pycodestyle
|
||||
version=2.0.0
|
||||
revision=2
|
||||
revision=3
|
||||
noarch=yes
|
||||
build_style=python-module
|
||||
python_versions="2.7 3.4"
|
||||
pycompile_module="pycodestyle.py"
|
||||
hostmakedepends="python-setuptools python3.4-setuptools"
|
||||
hostmakedepends="python-setuptools python3-setuptools"
|
||||
depends="python-setuptools"
|
||||
short_desc="Python2 style guide checker (formerly called pep8)"
|
||||
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||
|
@ -14,7 +13,7 @@ homepage="https://github.com/PyCQA/pycodestyle"
|
|||
license="MIT"
|
||||
distfiles="${PYPI_SITE}/p/pycodestyle/pycodestyle-${version}.tar.gz"
|
||||
checksum=37f0420b14630b0eaaf452978f3a6ea4816d787c3e6dcbba6fb255030adae2e7
|
||||
alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle2.7"
|
||||
alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle2"
|
||||
|
||||
post_install() {
|
||||
# fix permissions
|
||||
|
@ -25,16 +24,22 @@ post_install() {
|
|||
vlicense LICENSE
|
||||
}
|
||||
|
||||
python3.4-pycodestyle_package() {
|
||||
python3-pycodestyle_package() {
|
||||
noarch=yes
|
||||
pycompile_version="3.4"
|
||||
pycompile_module="pycodestyle.py"
|
||||
depends="python3.4-setuptools"
|
||||
short_desc="${short_desc/Python2/Python3.4}"
|
||||
alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle3.4"
|
||||
replaces="python3.4-pycodestyle>=0"
|
||||
depends="python3-setuptools"
|
||||
short_desc="${short_desc/Python2/Python3}"
|
||||
alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle3"
|
||||
pkg_install() {
|
||||
vmove usr/bin/*3.4
|
||||
vmove usr/lib/python3.4
|
||||
vmove usr/bin/*3
|
||||
vmove usr/lib/python3*
|
||||
vlicense LICENSE
|
||||
}
|
||||
}
|
||||
python3.4-pycodestyle_package() {
|
||||
noarch=yes
|
||||
build_style=meta
|
||||
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
||||
depends="python3-pycodestyle>=${version}_${revision}"
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
pycodestyle
|
Loading…
Reference in New Issue