Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/louie: louie-1.1-r1.ebuild ChangeLog
Date: Wed, 31 Dec 2014 02:41:24
Message-Id: 20141231024118.C546DE88C@oystercatcher.gentoo.org
1 idella4 14/12/31 02:41:18
2
3 Modified: ChangeLog
4 Added: louie-1.1-r1.ebuild
5 Log:
6 revbump; conversion -> distutils-r1
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.12 dev-python/louie/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 5 Mar 2011 17:09:58 -0000 1.11
24 +++ ChangeLog 31 Dec 2014 02:41:18 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/louie
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v 1.11 2011/03/05 17:09:58 armin76 Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v 1.12 2014/12/31 02:41:18 idella4 Exp $
31 +
32 +*louie-1.1-r1 (31 Dec 2014)
33 +
34 + 31 Dec 2014; Ian Delaney <idella4@g.o> +louie-1.1-r1.ebuild:
35 + revbump; conversion -> distutils-r1
36
37 05 Mar 2011; Raúl Porcel <armin76@g.o> louie-1.1.ebuild:
38 Drop ia64 keywords
39 @@ -39,4 +44,3 @@
40 28 Feb 2009; Patrick Lauer <patrick@g.o> +metadata.xml,
41 +louie-1.1.ebuild:
42 Initial import. Fixes #225475. Initial ebuild by Maciej Blizinski.
43 -
44
45
46
47 1.1 dev-python/louie/louie-1.1-r1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/louie-1.1-r1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/louie-1.1-r1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: louie-1.1-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/louie/louie-1.1-r1.ebuild,v 1.1 2014/12/31 02:41:18 idella4 Exp $
57
58 EAPI=5
59 PYTHON_COMPAT=( python2_7 )
60 DISTUTILS_SRC_TEST="nosetests"
61
62 inherit distutils-r1
63
64 MY_PN="Louie"
65 MY_P="${MY_PN}-${PV}"
66
67 DESCRIPTION="Signal dispatching mechanism for Python"
68 HOMEPAGE="http://pypi.python.org/pypi/Louie"
69 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
70
71 LICENSE="BSD"
72 SLOT="0"
73 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
74 IUSE="test"
75
76 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
77 test? ( dev-python/nose[${PYTHON_USEDEP}] )"
78 RDEPEND=""
79
80 S="${WORKDIR}/${MY_P}"
81
82 python_prepare_all() {
83 sed -e "/'nose >= 0.8.3'/d" -i setup.py || die "sed failed"
84 distutils-r1_python_prepare_all
85 }
86
87 python_test() {
88 nosetests || die "Tests failed"
89 }