diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-12-31 02:41:18 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-12-31 02:41:18 +0000 |
commit | 260e609502479f4558078bb0d0a0d171c293e49c (patch) | |
tree | ff04b78f30138ad5a6390a74dafeabf484aa9869 /dev-python | |
parent | New ebuild by Alex Deymo from Chromium OS. (diff) | |
download | gentoo-2-260e609502479f4558078bb0d0a0d171c293e49c.tar.gz gentoo-2-260e609502479f4558078bb0d0a0d171c293e49c.tar.bz2 gentoo-2-260e609502479f4558078bb0d0a0d171c293e49c.zip |
revbump; conversion -> distutils-r1
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/louie/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/louie/louie-1.1-r1.ebuild | 36 |
2 files changed, 43 insertions, 3 deletions
diff --git a/dev-python/louie/ChangeLog b/dev-python/louie/ChangeLog index 375cd685e87b..53d270304180 100644 --- a/dev-python/louie/ChangeLog +++ b/dev-python/louie/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/louie -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v 1.11 2011/03/05 17:09:58 armin76 Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v 1.12 2014/12/31 02:41:18 idella4 Exp $ + +*louie-1.1-r1 (31 Dec 2014) + + 31 Dec 2014; Ian Delaney <idella4@gentoo.org> +louie-1.1-r1.ebuild: + revbump; conversion -> distutils-r1 05 Mar 2011; Raúl Porcel <armin76@gentoo.org> louie-1.1.ebuild: Drop ia64 keywords @@ -39,4 +44,3 @@ 28 Feb 2009; Patrick Lauer <patrick@gentoo.org> +metadata.xml, +louie-1.1.ebuild: Initial import. Fixes #225475. Initial ebuild by Maciej Blizinski. - diff --git a/dev-python/louie/louie-1.1-r1.ebuild b/dev-python/louie/louie-1.1-r1.ebuild new file mode 100644 index 000000000000..c2c10cea7c64 --- /dev/null +++ b/dev-python/louie/louie-1.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/louie-1.1-r1.ebuild,v 1.1 2014/12/31 02:41:18 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils-r1 + +MY_PN="Louie" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Signal dispatching mechanism for Python" +HOMEPAGE="http://pypi.python.org/pypi/Louie" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +python_prepare_all() { + sed -e "/'nose >= 0.8.3'/d" -i setup.py || die "sed failed" + distutils-r1_python_prepare_all +} + +python_test() { + nosetests || die "Tests failed" +} |