commit: d7904ba5ca0dd59f5281d81c4e9654fd42a18a6f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 25 03:16:02 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 25 03:39:36 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7904ba5
dev-python/icalendar: Bump to 7.0.2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/icalendar/Manifest | 1 +
dev-python/icalendar/icalendar-7.0.2.ebuild | 42 +++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/dev-python/icalendar/Manifest b/dev-python/icalendar/Manifest
index 8d037df12064..fe50d7cacdee 100644
--- a/dev-python/icalendar/Manifest
+++ b/dev-python/icalendar/Manifest
@@ -1,3 +1,4 @@
DIST icalendar-6.3.2.tar.gz 178422 BLAKE2B
e3c34b8b9372f66c42ea1be609e77e45c03a17585157699cd6aa4c521cf9b35d78e3d3821811b1fbd828c1add81b26ff3047565c826229cfbf1a3dab42fc96ea
SHA512
a74067a527d46e26a8c50c6ef1ec9a264534349fae624df75388c9167b509d829f6a60340975b6aaeff1f7544bf5318ab24cc33e2bf7189fb8f57c00fea44bd8
DIST icalendar-7.0.0.tar.gz 436350 BLAKE2B
6ea30c35f6de88fe1c61a70603d907cc0029b9057cea0eaa0cdb8fbbd89eff8a53ee073e83a20515600cfc82ffa9a1c55a259144740ac3f05c395eb15481ca08
SHA512
c920cf6f16178d7425e469dc299aad7a903b0c0066a4d811b19ecdeb2863e0e2f19bdcb65f91068c19bcbacac94d8657f4bb7f8e605db26ecd016625743cfb44
DIST icalendar-7.0.1.tar.gz 439216 BLAKE2B
b5ae676fccb3ebfda2f59fd2f66126304b63eb8a296d0d1aa66250972bb9a930409835e65fc0bb7cd2eb892985de16dce22e8d047f7123d265c96611578ca9e5
SHA512
6c209ebe41f4795843a3d1dcb04a4994d6f23ae2904e63819412259be420802db673cb7f1136942a5fa1322a0dc4526a398f91bf439d1b8c3ce1d13080f57cdc
+DIST icalendar-7.0.2.tar.gz 440039 BLAKE2B
4346fefe51286cb3e64cb3f8282fb24220131f9d5d416644c8620d7f231dff644ee16e6a19f9f5b60c87fdf1137e76b0504d000c1ef9ba83eefbbe507a94a71b
SHA512
3de540195f227535c6258bde6595d3404a7050f2aa37eb9c811dcaf3ed7700c1bb7f8efef3a0ab077e21f4e516475a33ff963b1ef307e160724e2f40fcb913d3
diff --git a/dev-python/icalendar/icalendar-7.0.2.ebuild
b/dev-python/icalendar/icalendar-7.0.2.ebuild
new file mode 100644
index 000000000000..19d0d7de1613
--- /dev/null
+++ b/dev-python/icalendar/icalendar-7.0.2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-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="RFC 5545 compatible parser and generator of iCalendar files"
+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}]
+ $(python_gen_cond_dep '
+ >=dev-python/typing-extensions-4.10[${PYTHON_USEDEP}]
+ ' 3.11 3.12 3.13)
+"
+BDEPEND="
+ dev-python/hatch-vcs[${PYTHON_USEDEP}]
+ test? (
+ >=dev-python/pytz-2025.2[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_PLUGINS=( hypothesis )
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+ # upstream puts quite an effort for funding.json, but failed to
+ # include it in sdist
+ src/icalendar/tests/test_funding_json.py
+)