
After more than a year the switch to python3 packages, it is time to say them goodbye. So long, and thanks for all the fish.
35 lines
1.0 KiB
Bash
35 lines
1.0 KiB
Bash
# Template file for 'python-vobject'
|
|
pkgname=python-vobject
|
|
version=0.9.5
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="vobject-${version}"
|
|
build_style=python-module
|
|
pycompile_module="vobject"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools python-dateutil python-six"
|
|
short_desc="Python2 package for parsing and creating iCalendar and vCard files"
|
|
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
|
|
license="Apache-2.0"
|
|
homepage="https://eventable.github.io/vobject"
|
|
distfiles="${PYPI_SITE}/v/vobject/vobject-${version}.tar.gz"
|
|
checksum=0f56cae196303d875682b9648b4bb43ffc769d2f0f800958e0a506af867b1243
|
|
|
|
alternatives="
|
|
vobject:change_tz:/usr/bin/change_tz2
|
|
vobject:ics_diff:/usr/bin/ics_diff2"
|
|
|
|
python3-vobject_package() {
|
|
noarch=yes
|
|
pycompile_module="vobject"
|
|
depends="python3-setuptools python3-dateutil python3-six"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="
|
|
vobject:change_tz:/usr/bin/change_tz3
|
|
vobject:ics_diff:/usr/bin/ics_diff3"
|
|
pkg_install() {
|
|
vmove usr/bin/*3
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|