diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2016-09-07 09:55:50 +0100 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2016-09-07 09:58:14 +0100 |
commit | db77727d36c02dacdf338c20c9c1433184d1282b (patch) | |
tree | 2bca060df2c46d45f90744ac8743de474066dfcd /dev-python/cement/cement-2.10.0.ebuild | |
parent | dev-python/flake8: Stop build from trying to install pytest-runner (diff) | |
download | gentoo-db77727d36c02dacdf338c20c9c1433184d1282b.tar.gz gentoo-db77727d36c02dacdf338c20c9c1433184d1282b.tar.bz2 gentoo-db77727d36c02dacdf338c20c9c1433184d1282b.zip |
dev-python/cement: Version bump to 2.10.0 as requested by Colin Silcock in the LINX software team. Herd approval from Patrice "monsieurp" Clement on #gentoo-dev.
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-python/cement/cement-2.10.0.ebuild')
-rw-r--r-- | dev-python/cement/cement-2.10.0.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/dev-python/cement/cement-2.10.0.ebuild b/dev-python/cement/cement-2.10.0.ebuild new file mode 100644 index 000000000000..0dcc5740963c --- /dev/null +++ b/dev-python/cement/cement-2.10.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 versionator + +PV_MAJOR_MINOR=$(get_version_component_range 1-2) + +DESCRIPTION="CLI Application Framework for Python" +HOMEPAGE="http://builtoncement.com/" +SRC_URI="http://builtoncement.com/${PN}/${PV_MAJOR_MINOR}/source/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test doc examples" + +RDEPEND=" + dev-python/pystache[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/configobj[${PYTHON_USEDEP}] + dev-python/pylibmc[${PYTHON_USEDEP}] + dev-python/genshi[${PYTHON_USEDEP}] + dev-python/colorlog[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + )" + +DOCS=( ChangeLog CONTRIBUTORS README.md ) + +PATCHES=( "${FILESDIR}/${PN}"-2.6.2-exmples.patch ) + +#https://github.com/datafolklabs/cement/issues/331 +RESTRICT=test + +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/. ) + use examples && EXAMPLES=( examples ) + + distutils-r1_python_install_all +} |