add /dev-python/recurring-ical-events
This commit is contained in:
parent
f43e435a75
commit
1ac5975ccd
|
@ -0,0 +1,2 @@
|
||||||
|
DIST recurring-ical-events-0.1.19.tar.gz 306198 BLAKE2B 762e824faff8239fc27cf5979364104cb9f4b4107cbda78aeb7df2b0b0b7a73d4fb92fc5587437e7b00e332951b5827f8cad7de1fbc8f86be84ab33ca9815e3d SHA512 6acc01b82659dc110000bb491b3d696bcf7f34450a0cd796e3de826bb9c7a5e8ff6570a4ef32f17b720bda69dc773f4ede34675b306370145118fa90244e7122
|
||||||
|
EBUILD recurring-ical-events-0.1.19.ebuild 946 BLAKE2B e29688156eee51930994c4505caea92f71911e72ab102e64d83afc63eeac0b0d0afc3c679a7a3775bc63a66a1ecda27f31d4972ee6acc04b49553a95d20f5ae9 SHA512 94a2513d08231dfd752da29db4beab6668d6979fcefe6ea13b695f504f841deea089c678f51e2527a2323d0a8780c39952befebd78828e85c48c10afbb228371
|
|
@ -0,0 +1,33 @@
|
||||||
|
# Copyright 1999-2020 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI="7"
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{6,7,8,9} )
|
||||||
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||||
|
|
||||||
|
inherit distutils-r1
|
||||||
|
|
||||||
|
DESCRIPTION="A Python module which repeats ICalendar events by RRULE, RDATE and EXDATE."
|
||||||
|
HOMEPAGE="https://github.com/niccokunzmann/python-recurring-ical-events"
|
||||||
|
SRC_URI="https://github.com/niccokunzmann/python-${PN}/archive/v${PV}b0.tar.gz -> ${P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="BSD"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 arm arm64 x86"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
dev-python/icalendar[${PYTHON_USEDEP}]
|
||||||
|
dev-python/python-dateutil[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pytz[${PYTHON_USEDEP}]"
|
||||||
|
|
||||||
|
distutils_enable_tests pytest
|
||||||
|
|
||||||
|
S=${WORKDIR}/python-${P}b0
|
||||||
|
|
||||||
|
##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
|
||||||
|
##}
|
Loading…
Reference in New Issue