dev-python/recurring-ical-events: Remove old

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-06-13 11:07:00 +02:00
parent da548176cf
commit 1f4dd5aeb1
2 changed files with 0 additions and 47 deletions

View File

@@ -1,2 +1 @@
DIST recurring_ical_events-3.8.1.tar.gz 603730 BLAKE2B f0497499427d2152af381b3607c22276a532cf38a5792442252ecf77ed77f2c79fd06909409bc0cfc1f777a8fcde15de9d3893a9c14d879115b17d733752faee SHA512 9aaa025460499c33658233e40de0a684a53495468d16b88e87a724677da6ef8aadbc504c88c36d5f4439426fb0cf56c0626563e8577393dc18f581bab808a895
DIST recurring_ical_events-3.8.2.tar.gz 604992 BLAKE2B 10854f6aae872f5d59792d1ff78eeb98f2d09af75b423c5bb453b84d624c2dfe8a7fe605343eb0aa21a25e047b3e6d4b3d098eafcdc79b3e6408f7aa04cd58ad SHA512 0a085111f090dc36560e1cd5307aac050b91c65456b8f5dd9180febb63772d8941f44bdc100ff494c24bbedf99bebb0d7ab1c03bb199a485f7fdb7181eab4629

View File

@@ -1,46 +0,0 @@
# 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-6.1.0[${PYTHON_USEDEP}]
>=dev-python/python-dateutil-2.8.1[${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
)
src_prepare() {
distutils-r1_src_prepare
# strip unnecessary pins
sed -i -e 's:, < [0-9.]*::' pyproject.toml || die
}