mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-30 16:57:29 -07:00
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.
26 lines
701 B
Bash
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}"
|
|
}
|