diff options
author | Marc Schiffbauer <mschiff@gentoo.org> | 2012-12-18 15:25:56 +0000 |
---|---|---|
committer | Marc Schiffbauer <mschiff@gentoo.org> | 2012-12-18 15:25:56 +0000 |
commit | cce0fc55b0447fe308c1128274f131abb550cb6b (patch) | |
tree | 7f733453723d7703d87d6ee3ea53d69f1e4e9b2c /dev-python | |
parent | Stabilise 1.1.1 on amd64 x86 ppc and ppc64, drop older. (diff) | |
download | gentoo-2-cce0fc55b0447fe308c1128274f131abb550cb6b.tar.gz gentoo-2-cce0fc55b0447fe308c1128274f131abb550cb6b.tar.bz2 gentoo-2-cce0fc55b0447fe308c1128274f131abb550cb6b.zip |
Version bump.
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 0x296C6CCA35A64134)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/cliapp/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/cliapp/cliapp-1.20121216.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-python/cliapp/ChangeLog b/dev-python/cliapp/ChangeLog index bde0881ea0e8..c94f096144b5 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.5 2012/10/06 23:26:35 mschiff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cliapp/ChangeLog,v 1.6 2012/12/18 15:25:56 mschiff Exp $ + +*cliapp-1.20121216 (18 Dec 2012) + + 18 Dec 2012; Marc Schiffbauer <mschiff@gentoo.org> +cliapp-1.20121216.ebuild: + Version bump. *cliapp-1.20120929 (06 Oct 2012) diff --git a/dev-python/cliapp/cliapp-1.20121216.ebuild b/dev-python/cliapp/cliapp-1.20121216.ebuild new file mode 100644 index 000000000000..39d8d681a14f --- /dev/null +++ b/dev-python/cliapp/cliapp-1.20121216.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.20121216.ebuild,v 1.1 2012/12/18 15:25:56 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 +} |