summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/icalendar/Manifest1
-rw-r--r--dev-python/icalendar/icalendar-6.3.0.ebuild38
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/icalendar/Manifest b/dev-python/icalendar/Manifest
index f99376a73034..921b3c8aedcf 100644
--- a/dev-python/icalendar/Manifest
+++ b/dev-python/icalendar/Manifest
@@ -1,2 +1,3 @@
DIST icalendar-6.1.3.tar.gz 152131 BLAKE2B f1315537dee85282073d4b67b06fbb823ba6642247449e950243d44fc8c8e3147c703095b1370bec9458a1fa0d01b5e1bb0f4cdc04ffb4b721100a8d68eb5ba1 SHA512 aa0e92c0fcf6a394cca608391defd67616752b12984b5848eb56b89337537e3761fdbfc731838db2c565603ddcc845b034c4592b3be736d68c6f435726ed2977
DIST icalendar-6.2.0.tar.gz 172530 BLAKE2B d0a7e7e5555076840a27f16f7e4d579c853217204cf8706a3a067265dc5324c5faafc917da67e1b4a2e81ffcd2caf0ae12c456d7698a87b815111e7c53eb885f SHA512 ff3fe1e1a13aa4bdd997b19e488c9890e650231ae9016ca7efce480d938e0d5aecf985d8bfa34d7b20b4750726c9aa57eb3e9827d059e3a59a7de647fdadd9e4
+DIST icalendar-6.3.0.tar.gz 176001 BLAKE2B c85215daf37c15abd8486d60e5f67766650e1412284ad5203bcfbeebb0c845e616fae7cdd3d6cc5e37195c628d49e0ea7052028fd7a37ae858b48c48df2293ab SHA512 e283d135e8da98e1976be1b87773107a84c1f40ad8b3bc86c65ed10b735ccdf3af40c447d4e96fb98eb8c14023bd8810aa64c55ce57528b119fe2ce9c1a104cb
diff --git a/dev-python/icalendar/icalendar-6.3.0.ebuild b/dev-python/icalendar/icalendar-6.3.0.ebuild
new file mode 100644
index 000000000000..b55e1b689e27
--- /dev/null
+++ b/dev-python/icalendar/icalendar-6.3.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2025 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="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/tzdata[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/hatch-vcs[${PYTHON_USEDEP}]
+ test? (
+ dev-python/hypothesis[${PYTHON_USEDEP}]
+ dev-python/pytz[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}