diff options
author | Marc Schiffbauer <mschiff@gentoo.org> | 2012-07-08 23:46:42 +0000 |
---|---|---|
committer | Marc Schiffbauer <mschiff@gentoo.org> | 2012-07-08 23:46:42 +0000 |
commit | 055e848703b1aead1fa5daa67b3570354db5be3e (patch) | |
tree | dd370ad6657162be3a928ea78e7ce5cae64a5f32 /dev-python | |
parent | Version bump. (diff) | |
download | gentoo-2-055e848703b1aead1fa5daa67b3570354db5be3e.tar.gz gentoo-2-055e848703b1aead1fa5daa67b3570354db5be3e.tar.bz2 gentoo-2-055e848703b1aead1fa5daa67b3570354db5be3e.zip |
Version bump.
(Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/cliapp/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/cliapp/cliapp-1.20120630.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-python/cliapp/ChangeLog b/dev-python/cliapp/ChangeLog index ca1c9003393f..d98a6719d523 100644 --- a/dev-python/cliapp/ChangeLog +++ b/dev-python/cliapp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/cliapp # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.3 2012/06/27 04:44:09 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.4 2012/07/08 23:46:42 mschiff Exp $ + +*cliapp-1.20120630 (08 Jul 2012) + + 08 Jul 2012; Marc Schiffbauer <mschiff@gentoo.org> +cliapp-1.20120630.ebuild: + Version bump. 27 Jun 2012; Michael Sterrett <mr_bones_@gentoo.org> cliapp-0.29.ebuild: add missing test to IUSE diff --git a/dev-python/cliapp/cliapp-1.20120630.ebuild b/dev-python/cliapp/cliapp-1.20120630.ebuild new file mode 100644 index 000000000000..ae9329498a3f --- /dev/null +++ b/dev-python/cliapp/cliapp-1.20120630.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/cliapp-1.20120630.ebuild,v 1.1 2012/07/08 23:46:42 mschiff Exp $ + +EAPI=4 + +PYTHON_DEPEND="2:2.6:2.7" + +inherit distutils python + +DESCRIPTION="Framework for Unix-like command line programs" +HOMEPAGE="http://liw.fi/cliapp/" +SRC_URI="http://code.liw.fi/debian/pool/main/p/python-${PN}/python-${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="test? ( dev-python/CoverageTestRunner )" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_test() { + # remove build directory so tests will not fail + # due to tests defined twice + rm -rf "${S}"/build + default +} |