gentoo/dev-python/timelib/timelib-0.2.4-r1.ebuild
Michał Górny 013d302474
dev-python/timelib: Disable python3*
This package clearly does not support Python 3. Using the documented
APIs (and running the tests) causes wrong type exceptions. They could
be worked around via passing bytes around but that's not the documented
API.

The only reverse dependency is app-admin/salt which is 2.7-only.
2017-05-17 22:51:10 +02:00

26 lines
701 B
Bash

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="parse english textual date descriptions"
HOMEPAGE="https://github.com/pediapress/timelib https://pypi.python.org/pypi/timelib"
# pypi zipball lacks tests; also it's .zip
SRC_URI="https://github.com/pediapress/timelib/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="PHP-3.01 ZLIB"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
DEPEND="dev-python/cython[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
python_test() {
py.test -v || die "Tests fail with ${EPYTHON}"
}