diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-10-16 21:30:54 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-10-16 21:30:54 +0200 |
commit | 8d5136866d42fd12112ae54030b8a4e7c026fb99 (patch) | |
tree | 451bae9797f0137f41eededbefbd74cbe4b1fafe /dev-python/icalendar/icalendar-4.0.9.ebuild | |
parent | dev-python/pyjwt: Bump to 2.3.0 (diff) | |
download | gentoo-8d5136866d42fd12112ae54030b8a4e7c026fb99.tar.gz gentoo-8d5136866d42fd12112ae54030b8a4e7c026fb99.tar.bz2 gentoo-8d5136866d42fd12112ae54030b8a4e7c026fb99.zip |
dev-python/icalendar: Bump to 4.0.9
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/icalendar/icalendar-4.0.9.ebuild')
-rw-r--r-- | dev-python/icalendar/icalendar-4.0.9.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/icalendar/icalendar-4.0.9.ebuild b/dev-python/icalendar/icalendar-4.0.9.ebuild new file mode 100644 index 000000000000..1baac6524fe2 --- /dev/null +++ b/dev-python/icalendar/icalendar-4.0.9.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 2445)" +HOMEPAGE="https://github.com/collective/icalendar" +SRC_URI="mirror://pypi/i/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=" + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}]" + +distutils_enable_sphinx docs +distutils_enable_tests pytest + +python_prepare_all() { + # reset conf.py to not read version from an installed instance + sed -e "s:pkg_resources.get_distribution('icalendar').version:'${PV}':" \ + -i docs/conf.py || die + distutils-r1_python_prepare_all +} |