python-namedlist: rebuild for Python 3.5
Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg.
This commit is contained in:
parent
7b03785497
commit
9e48f768e6
|
@ -1,12 +1,11 @@
|
|||
# Template file for 'python-namedlist'
|
||||
pkgname=python-namedlist
|
||||
version=1.7
|
||||
revision=1
|
||||
revision=2
|
||||
noarch=yes
|
||||
wrksrc="namedlist-${version}"
|
||||
build_style=python-module
|
||||
python_versions="2.7 3.4"
|
||||
hostmakedepends="python-setuptools python3.4-setuptools"
|
||||
hostmakedepends="python-setuptools python3-setuptools"
|
||||
depends="python"
|
||||
pycompile_module="namedlist"
|
||||
short_desc="Similar to namedtuple, but instances are mutable"
|
||||
|
@ -16,13 +15,19 @@ license="Apache-2.0"
|
|||
distfiles="${PYPI_SITE}/n/namedlist/namedlist-${version}.tar.gz"
|
||||
checksum=190b39ceaf1d6b59999811259e61beb1b26aaa482fb8c95538294d551461c986
|
||||
|
||||
python3.4-namedlist_package() {
|
||||
python3-namedlist_package() {
|
||||
noarch=yes
|
||||
depends="python3.4"
|
||||
pycompile_version="3.4"
|
||||
depends="python3"
|
||||
pycompile_module="namedlist"
|
||||
short_desc="${short_desc/Python2/Python3.4}"
|
||||
replaces="python3.4-namedlist>=0"
|
||||
short_desc="${short_desc/Python2/Python3}"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3.4
|
||||
vmove usr/lib/python3*
|
||||
}
|
||||
}
|
||||
python3.4-namedlist_package() {
|
||||
noarch=yes
|
||||
build_style=meta
|
||||
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
||||
depends="python3-namedlist>=${version}_${revision}"
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
python-namedlist
|
Loading…
Reference in New Issue