40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
# Template file for 'python-icalendar'
|
|
pkgname=python-icalendar
|
|
version=4.0.3
|
|
revision=1
|
|
wrksrc="icalendar-${version}"
|
|
noarch=yes
|
|
build_style=python-module
|
|
pycompile_module="icalendar"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools python-dateutil python-pytz"
|
|
checkdepends="python3-dateutil python3-pytz python3-pytest python3-hypothesis"
|
|
short_desc="Parser/generator of iCalendar files for use with Python2"
|
|
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/collective/icalendar"
|
|
distfiles="${PYPI_SITE}/i/icalendar/icalendar-${version}.tar.gz"
|
|
checksum=07c2447a1d44cbb27c90b8c6a5c98e890cc1853c6223e2a52195cddec26c6356
|
|
alternatives="icalendar:icalendar:/usr/bin/icalendar2"
|
|
|
|
do_check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.rst LICENSE
|
|
}
|
|
|
|
python3-icalendar_package() {
|
|
noarch=yes
|
|
pycompile_module="icalendar"
|
|
depends="python3-setuptools python3-dateutil python3-pytz"
|
|
alternatives="icalendar:icalendar:/usr/bin/icalendar3"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/bin/*3
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE.rst LICENSE
|
|
}
|
|
}
|