python-dockerpty: rebuild for Python 3.5
Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg.
This commit is contained in:
parent
fbdddc1159
commit
384aa60339
|
@ -1,12 +1,11 @@
|
|||
# Template file for 'python-dockerpty'
|
||||
pkgname=python-dockerpty
|
||||
version=0.4.1
|
||||
revision=1
|
||||
revision=2
|
||||
noarch=yes
|
||||
wrksrc="dockerpty-${version}"
|
||||
build_style=python-module
|
||||
python_versions="2.7 3.4"
|
||||
hostmakedepends="python-setuptools python3.4-setuptools"
|
||||
hostmakedepends="python-setuptools python3-setuptools"
|
||||
depends="python-six python-docker-py"
|
||||
pycompile_module="dockerpty"
|
||||
short_desc="Python2 library to use the pseudo-tty of a docker container"
|
||||
|
@ -16,13 +15,19 @@ license="Apache-2.0"
|
|||
distfiles="${PYPI_SITE}/d/dockerpty/dockerpty-${version}.tar.gz"
|
||||
checksum=69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce
|
||||
|
||||
python3-dockerpty_package() {
|
||||
noarch=yes
|
||||
depends="python3-six python3-docker-py"
|
||||
pycompile_module="dockerpty"
|
||||
replaces="python3.4-dockerpty>=0"
|
||||
short_desc="${short_desc/Python2/Python3}"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3*
|
||||
}
|
||||
}
|
||||
python3.4-dockerpty_package() {
|
||||
noarch=yes
|
||||
depends="python3.4-six python3.4-docker-py"
|
||||
pycompile_version="3.4"
|
||||
pycompile_module="dockerpty"
|
||||
short_desc="${short_desc/Python2/Python3.4}"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3.4
|
||||
}
|
||||
build_style=meta
|
||||
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
||||
depends="python3-dockerpty>=${version}_${revision}"
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
python-dockerpty
|
Loading…
Reference in New Issue