mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-28 04:07:32 -07:00
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/10942 Signed-off-by: Aaron Bauman <bman@gentoo.org>
45 lines
985 B
Bash
45 lines
985 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
PYTHON_COMPAT=( python2_7 )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="CLI Application Framework for Python"
|
|
HOMEPAGE="https://builtoncement.com/"
|
|
SRC_URI="https://github.com/datafolklabs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="test doc"
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
|
|
test? (
|
|
dev-python/nose[${PYTHON_USEDEP}]
|
|
dev-python/coverage[${PYTHON_USEDEP}]
|
|
)"
|
|
|
|
DOCS=( ChangeLog CONTRIBUTORS README.md )
|
|
PATCHES=( "${FILESDIR}"/tests-installation.patch )
|
|
# https://github.com/cement/cement/issues/185
|
|
|
|
python_test() {
|
|
nosetests --verbose || die "Tests fail with ${EPYTHON}"
|
|
}
|
|
|
|
python_compile_all() {
|
|
use doc && esetup.py build_sphinx
|
|
}
|
|
|
|
python_install_all() {
|
|
use doc && HTML_DOCS=( doc/build/html/. )
|
|
|
|
distutils-r1_python_install_all
|
|
}
|