summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/recurring-ical-events/Manifest1
-rw-r--r--dev-python/recurring-ical-events/recurring-ical-events-3.8.1.ebuild42
2 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/recurring-ical-events/Manifest b/dev-python/recurring-ical-events/Manifest
index a7cfdddf47b9..09a477510246 100644
--- a/dev-python/recurring-ical-events/Manifest
+++ b/dev-python/recurring-ical-events/Manifest
@@ -1 +1,2 @@
DIST recurring_ical_events-3.8.0.tar.gz 602665 BLAKE2B eab970859257ad0b98a54a80b6524add28241f9540994b96daede6e001c61517a2c8bd8e175cb558fb5df001bebd0983c40204ecbc860358b6ce5bf470247474 SHA512 81cb7ed4562c677f039c954e6c96943ab2e726f0dd875a648c04638fec3f10edd367c33349453e9574fd8db8becc52232a2a98b1cf39ac8002eb5a66b96b9a60
+DIST recurring_ical_events-3.8.1.tar.gz 603730 BLAKE2B f0497499427d2152af381b3607c22276a532cf38a5792442252ecf77ed77f2c79fd06909409bc0cfc1f777a8fcde15de9d3893a9c14d879115b17d733752faee SHA512 9aaa025460499c33658233e40de0a684a53495468d16b88e87a724677da6ef8aadbc504c88c36d5f4439426fb0cf56c0626563e8577393dc18f581bab808a895
diff --git a/dev-python/recurring-ical-events/recurring-ical-events-3.8.1.ebuild b/dev-python/recurring-ical-events/recurring-ical-events-3.8.1.ebuild
new file mode 100644
index 000000000000..ce4ea78502d1
--- /dev/null
+++ b/dev-python/recurring-ical-events/recurring-ical-events-3.8.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2023-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Repeat ICalendar events by RRULE, RDATE and EXDATE"
+HOMEPAGE="
+ https://github.com/niccokunzmann/python-recurring-ical-events/
+ https://pypi.org/project/recurring-ical-events/
+"
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+ <dev-python/icalendar-7[${PYTHON_USEDEP}]
+ >=dev-python/icalendar-6.1.0[${PYTHON_USEDEP}]
+ <dev-python/python-dateutil-3[${PYTHON_USEDEP}]
+ >=dev-python/python-dateutil-2.8.1[${PYTHON_USEDEP}]
+ <dev-python/x-wr-timezone-3[${PYTHON_USEDEP}]
+ >=dev-python/x-wr-timezone-1.0.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/hatch-vcs[${PYTHON_USEDEP}]
+ test? (
+ >=dev-python/pytz-2023.3[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=()
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+ {recurring_ical_events/,}test/test_readme.py
+)