Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/louie: ChangeLog louie-1.1.ebuild
Date: Sat, 30 Oct 2010 20:56:55
Message-Id: 20101030205646.C927720051@flycatcher.gentoo.org
1 arfrever 10/10/30 20:56:46
2
3 Modified: ChangeLog louie-1.1.ebuild
4 Log:
5 Update EAPI. Fix dependencies. Set SUPPORT_PYTHON_ABIS. Enable tests. Use PyPI mirrors.
6
7 (Portage version: 2.2.0_alpha2_p2/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 dev-python/louie/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 15 Oct 2010 14:19:22 -0000 1.5
23 +++ ChangeLog 30 Oct 2010 20:56:46 -0000 1.6
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/louie
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v 1.5 2010/10/15 14:19:22 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/ChangeLog,v 1.6 2010/10/30 20:56:46 arfrever Exp $
29 +
30 + 30 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
31 + louie-1.1.ebuild:
32 + Update EAPI. Fix dependencies. Set SUPPORT_PYTHON_ABIS. Enable tests. Use
33 + PyPI mirrors.
34
35 15 Oct 2010; Brent Baude <ranger@g.o> louie-1.1.ebuild:
36 Marking louie-1.1 ~ppc for bug 311825
37
38
39
40 1.6 dev-python/louie/louie-1.1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/louie-1.1.ebuild?rev=1.6&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/louie-1.1.ebuild?rev=1.6&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/louie/louie-1.1.ebuild?r1=1.5&r2=1.6
45
46 Index: louie-1.1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-python/louie/louie-1.1.ebuild,v
49 retrieving revision 1.5
50 retrieving revision 1.6
51 diff -u -r1.5 -r1.6
52 --- louie-1.1.ebuild 15 Oct 2010 14:19:22 -0000 1.5
53 +++ louie-1.1.ebuild 30 Oct 2010 20:56:46 -0000 1.6
54 @@ -1,13 +1,22 @@
55 # Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/louie-1.1.ebuild,v 1.5 2010/10/15 14:19:22 ranger Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-python/louie/louie-1.1.ebuild,v 1.6 2010/10/30 20:56:46 arfrever Exp $
59 +
60 +EAPI="3"
61 +PYTHON_DEPEND="2"
62 +SUPPORT_PYTHON_ABIS="1"
63 +RESTRICT_PYTHON_ABIS="3.*"
64 +DISTUTILS_SRC_TEST="nosetests"
65
66 inherit distutils
67
68 -MY_P="Louie-${PV}"
69 +MY_PN="Louie"
70 +MY_P="${MY_PN}-${PV}"
71 +
72 DESCRIPTION="Signal dispatching mechanism for Python"
73 -HOMEPAGE="http://pypi.python.org/pypi/Louie/"
74 -SRC_URI="http://cheeseshop.python.org/packages/source/L/Louie/${MY_P}.tar.gz"
75 +HOMEPAGE="http://pypi.python.org/pypi/Louie"
76 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
77 +
78 LICENSE="BSD"
79 SLOT="0"
80 KEYWORDS="amd64 ~ppc ~ppc64 x86"
81 @@ -18,7 +27,7 @@
82
83 S="${WORKDIR}/${MY_P}"
84
85 -# This has changed with upstream migrating to setuptools. No idea how to actually run them tests now ...
86 -#src_test() {
87 -# python selftest.py || die "selftest.py failed"
88 -#}
89 +src_prepare() {
90 + distutils_src_prepare
91 + sed -e "/'nose >= 0.8.3'/d" -i setup.py || die "sed failed"
92 +}