diff options
author | 2024-03-20 06:57:06 +0100 | |
---|---|---|
committer | 2024-03-20 07:28:24 +0100 | |
commit | 1e6afee629490b9584cc9989b56323aacb2dcbec (patch) | |
tree | 30035e1d1c9ae1224ef513be6a4b6cf26e763f94 | |
parent | net-misc/miniupnpd: Bump to 2.3.6 (diff) | |
download | gentoo-1e6afee629490b9584cc9989b56323aacb2dcbec.tar.gz gentoo-1e6afee629490b9584cc9989b56323aacb2dcbec.tar.bz2 gentoo-1e6afee629490b9584cc9989b56323aacb2dcbec.zip |
dev-python/icalendar: Bump to 5.0.12
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/icalendar/Manifest | 1 | ||||
-rw-r--r-- | dev-python/icalendar/icalendar-5.0.12.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/icalendar/Manifest b/dev-python/icalendar/Manifest index cc24d252ef12..c3f44c49e10d 100644 --- a/dev-python/icalendar/Manifest +++ b/dev-python/icalendar/Manifest @@ -1 +1,2 @@ DIST icalendar-5.0.11.tar.gz 112178 BLAKE2B 6b71d0a391643435729ed39caadffb0aff6893be26d1e3bd887a69d9156df30d0b798fb3c5d2f268f602a9953400a30c3aae49698008108f2ba810d2bba1eb5e SHA512 ac567ac761fde076d5895a3353fff4de9244847689d4f5366d918223a49f1ffa87063f8bb55b7458092369482868e40d2c9925ea7d95e77feeaf3d9711a5b7d9 +DIST icalendar-5.0.12.tar.gz 115981 BLAKE2B b6a778f78977b2e967f639ca1a6209002c003c0729a993217da2fa7d3e407d5fa696740daae7b3c1084588140675a2fb1346b39042fe869195d917b3a2436f49 SHA512 0b608054b955223c1b876c8395b94a501f6b5afb92285561750749882cde2d55cbb48487f7fcd64188d2d6cd193f3bdb5634871352eb5b7a445c483075a62453 diff --git a/dev-python/icalendar/icalendar-5.0.12.ebuild b/dev-python/icalendar/icalendar-5.0.12.ebuild new file mode 100644 index 000000000000..8e6ce208d2d6 --- /dev/null +++ b/dev-python/icalendar/icalendar-5.0.12.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 2445)" +HOMEPAGE=" + https://github.com/collective/icalendar/ + https://pypi.org/project/icalendar/ +" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" + +RDEPEND=" + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/hypothesis[${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 +} |