python-icalendar: update to 4.0.2

Add missing alternatives:
"Added rudimentary command line interface." - 4.0.1 (2018-02-11)
This commit is contained in:
Alessio Sergi 2018-06-30 17:02:46 +02:00
parent 3127d351ba
commit 01d295c4cc
1 changed files with 8 additions and 5 deletions

View File

@ -1,19 +1,20 @@
# Template file for 'python-icalendar'
pkgname=python-icalendar
version=4.0.1
version=4.0.2
revision=1
wrksrc="icalendar-${version}"
noarch=yes
build_style=python-module
pycompile_module="icalendar"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-dateutil python-pytz"
depends="python-setuptools python-dateutil python-pytz"
short_desc="Parser/generator of iCalendar files for use with Python2"
maintainer="Oliver Kiddle <okiddle@yahoo.co.uk>"
license="BSD-2-Clause"
homepage="http://icalendar.readthedocs.org/"
homepage="https://github.com/collective/icalendar"
distfiles="${PYPI_SITE}/i/icalendar/icalendar-${version}.tar.gz"
checksum=682a42023d3d43a3a83933b4e329d109aabb07c9e11cb94a4d83ca687c3a3e8d
checksum=80362a9f3c2686b88791fdb78c063f33bd96451f7b1b12140c5aad2df81c008c
alternatives="icalendar:icalendar:/usr/bin/icalendar2"
post_install() {
vlicense LICENSE.rst LICENSE
@ -22,9 +23,11 @@ post_install() {
python3-icalendar_package() {
noarch=yes
pycompile_module="icalendar"
depends="python3-dateutil python3-pytz"
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
}