diff options
Diffstat (limited to 'dev-python/icalendar')
-rw-r--r-- | dev-python/icalendar/icalendar-4.0.3-r1.ebuild | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/dev-python/icalendar/icalendar-4.0.3-r1.ebuild b/dev-python/icalendar/icalendar-4.0.3-r1.ebuild index 015b5a6..f903290 100644 --- a/dev-python/icalendar/icalendar-4.0.3-r1.ebuild +++ b/dev-python/icalendar/icalendar-4.0.3-r1.ebuild @@ -3,12 +3,10 @@ EAPI="6" -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy ) inherit distutils-r1 -MY_PN="collective-${PN}" - DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 2445)" HOMEPAGE="https://github.com/collective/icalendar" SRC_URI="mirror://pypi/i/${PN}/${P}.tar.gz" @@ -20,29 +18,25 @@ IUSE="doc test" DOCS="README.rst" RDEPEND=" + dev-python/python-dateutil[${PYTHON_USEDEP}] dev-python/pytz[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/python-dateutil[${PYTHON_USEDEP}]" + dev-python/setuptools[${PYTHON_USEDEP}]" DEPEND=" ${RDEPEND} doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/python-dateutil:0[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/coverage[${PYTHON_USEDEP}] )" + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" python_prepare_all() { # reset conf.py to not read version from an installed instance - sed -e "s:pkg_resources.get_distribution('icalendar').version:'3.9.0':" \ + sed -e "s:pkg_resources.get_distribution('icalendar').version:'${PV}':" \ -i docs/conf.py || die distutils-r1_python_prepare_all } python_compile_all() { if use doc; then - pushd docs > /dev/null - emake text - popd > /dev/null + emake -C docs text DOCS=( ${DOCS} docs/_build/text/*.txt ) fi } |