idella4 14/12/31 02:41:18 Modified: ChangeLog Added: louie-1.1-r1.ebuild Log: revbump; conversion -> distutils-r1 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.12 dev-python/louie/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 5 Mar 2011 17:09:58 -0000 1.11 +++ ChangeLog 31 Dec 2014 02:41:18 -0000 1.12 @@ -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 <idel...@gentoo.org> +louie-1.1-r1.ebuild: + revbump; conversion -> distutils-r1 05 Mar 2011; Raúl Porcel <armi...@gentoo.org> louie-1.1.ebuild: Drop ia64 keywords @@ -39,4 +44,3 @@ 28 Feb 2009; Patrick Lauer <patr...@gentoo.org> +metadata.xml, +louie-1.1.ebuild: Initial import. Fixes #225475. Initial ebuild by Maciej Blizinski. - 1.1 dev-python/louie/louie-1.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/louie-1.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/louie-1.1-r1.ebuild?rev=1.1&content-type=text/plain Index: louie-1.1-r1.ebuild =================================================================== # 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" }