python-feedparser: rebuild for Python 3.5
Switch to python3-* pkgs. Convert python3.4-* pkg into dummy pkg.
This commit is contained in:
parent
5b94abafa9
commit
61ca7c4602
|
@ -1,13 +1,12 @@
|
|||
# Template file for 'python-feedparser'
|
||||
pkgname=python-feedparser
|
||||
version=5.2.1
|
||||
revision=2
|
||||
revision=3
|
||||
noarch=yes
|
||||
wrksrc="feedparser-${version}"
|
||||
build_style=python-module
|
||||
python_versions="2.7 3.4"
|
||||
pycompile_module="feedparser.py"
|
||||
hostmakedepends="python-setuptools python3.4-setuptools"
|
||||
hostmakedepends="python-setuptools python3-setuptools"
|
||||
depends="python"
|
||||
maintainer="Dominik Honnef <dominik@honnef.co>"
|
||||
license="Simplified BSD"
|
||||
|
@ -16,13 +15,19 @@ short_desc="Parse Atom and RSS feeds in Python2"
|
|||
distfiles="${PYPI_SITE}/f/feedparser/feedparser-${version}.tar.bz2"
|
||||
checksum=ce875495c90ebd74b179855449040003a1beb40cd13d5f037a0654251e260b02
|
||||
|
||||
python3.4-feedparser_package() {
|
||||
python3-feedparser_package() {
|
||||
noarch=yes
|
||||
depends="python3.4"
|
||||
pycompile_version="3.4"
|
||||
depends="python3"
|
||||
pycompile_module="feedparser.py"
|
||||
short_desc="${short_desc/Python2/Python3.4}"
|
||||
replaces="python3.4-feedparser>=0"
|
||||
short_desc="${short_desc/Python2/Python3}"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3.4
|
||||
vmove usr/lib/python3*
|
||||
}
|
||||
}
|
||||
python3.4-feedparser_package() {
|
||||
noarch=yes
|
||||
build_style=meta
|
||||
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
||||
depends="python3-feedparser>=${version}_${revision}"
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
python-feedparser
|
Loading…
Reference in New Issue