diff options
author | Alex Brandt <alunduil@gentoo.org> | 2014-10-19 20:18:26 +0000 |
---|---|---|
committer | Alex Brandt <alunduil@gentoo.org> | 2014-10-19 20:18:26 +0000 |
commit | 272213190a0097da4875d5707acc7de9e71cd6be (patch) | |
tree | ab647800ba303abedafd6e3b7c6168359179bf98 | |
parent | Remove old (diff) | |
download | gentoo-2-272213190a0097da4875d5707acc7de9e71cd6be.tar.gz gentoo-2-272213190a0097da4875d5707acc7de9e71cd6be.tar.bz2 gentoo-2-272213190a0097da4875d5707acc7de9e71cd6be.zip |
drop 0.3.1; keep three
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
-rw-r--r-- | dev-python/clint/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/clint/clint-0.3.1.ebuild | 38 |
2 files changed, 4 insertions, 39 deletions
diff --git a/dev-python/clint/ChangeLog b/dev-python/clint/ChangeLog index e6fa51ce5457..12652a5b6be5 100644 --- a/dev-python/clint/ChangeLog +++ b/dev-python/clint/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/clint # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/clint/ChangeLog,v 1.3 2014/10/19 20:17:06 alunduil Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/clint/ChangeLog,v 1.4 2014/10/19 20:18:26 alunduil Exp $ + + 19 Oct 2014; Alex Brandt <alunduil@gentoo.org> -clint-0.3.1.ebuild: + drop 0.3.1; keep three *clint-0.4.1 (19 Oct 2014) diff --git a/dev-python/clint/clint-0.3.1.ebuild b/dev-python/clint/clint-0.3.1.ebuild deleted file mode 100644 index 8930eacb9093..000000000000 --- a/dev-python/clint/clint-0.3.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/clint/clint-0.3.1.ebuild,v 1.1 2014/10/07 17:58:44 alunduil Exp $ - -EAPI=5 -PYTHON_COMPAT=( python2_7 python3_3 ) - -inherit distutils-r1 vcs-snapshot - -DESCRIPTION="Python Command-line Application Tools" -HOMEPAGE="https://github.com/kennethreitz/clint" -SRC_URI="https://github.com/kennethreitz/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc examples test" - -DEPEND=" - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) -" -RDEPEND="" - -python_compile_all() { - use doc && emake -C docs html -} - -python_test() { - py.test || die "Tests failed under ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - use examples && local EXAMPLES=( examples/. ) - - distutils-r1_python_install_all -} |