Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-distutils-extra: python-distutils-extra-2.34.ebuild ChangeLog python-distutils-extra-2.19.ebuild python-distutils-extra-2.32.ebuild python-distutils-extra-2.29.ebuild
Date: Wed, 29 Aug 2012 06:17:16
Message-Id: 20120829061705.49CC120AF3@flycatcher.gentoo.org
1 patrick 12/08/29 06:17:05
2
3 Modified: ChangeLog
4 Added: python-distutils-extra-2.34.ebuild
5 Removed: python-distutils-extra-2.19.ebuild
6 python-distutils-extra-2.32.ebuild
7 python-distutils-extra-2.29.ebuild
8 Log:
9 Bump
10
11 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
12
13 Revision Changes Path
14 1.13 dev-python/python-distutils-extra/ChangeLog
15
16 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-distutils-extra/ChangeLog?rev=1.13&view=markup
17 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-distutils-extra/ChangeLog?rev=1.13&content-type=text/plain
18 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-distutils-extra/ChangeLog?r1=1.12&r2=1.13
19
20 Index: ChangeLog
21 ===================================================================
22 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v
23 retrieving revision 1.12
24 retrieving revision 1.13
25 diff -u -r1.12 -r1.13
26 --- ChangeLog 28 Jun 2012 07:15:04 -0000 1.12
27 +++ ChangeLog 29 Aug 2012 06:17:05 -0000 1.13
28 @@ -1,6 +1,13 @@
29 # ChangeLog for dev-python/python-distutils-extra
30 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.12 2012/06/28 07:15:04 patrick Exp $
32 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.13 2012/08/29 06:17:05 patrick Exp $
33 +
34 +*python-distutils-extra-2.34 (29 Aug 2012)
35 +
36 + 29 Aug 2012; Patrick Lauer <patrick@g.o>
37 + +python-distutils-extra-2.34.ebuild, -python-distutils-extra-2.19.ebuild,
38 + -python-distutils-extra-2.29.ebuild, -python-distutils-extra-2.32.ebuild:
39 + Bump
40
41 *python-distutils-extra-2.33 (28 Jun 2012)
42
43
44
45
46 1.1 dev-python/python-distutils-extra/python-distutils-extra-2.34.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.34.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.34.ebuild?rev=1.1&content-type=text/plain
50
51 Index: python-distutils-extra-2.34.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.34.ebuild,v 1.1 2012/08/29 06:17:05 patrick Exp $
56
57 EAPI="3"
58 PYTHON_DEPEND="2"
59 SUPPORT_PYTHON_ABIS="1"
60 RESTRICT_PYTHON_ABIS="3.*"
61
62 inherit distutils
63
64 DESCRIPTION="You can integrate gettext support, themed icons and scrollkeeper based documentation in distutils."
65 HOMEPAGE="https://launchpad.net/python-distutils-extra"
66 SRC_URI="http://launchpad.net/python-distutils-extra/trunk/${PV}/+download/${P}.tar.gz"
67
68 LICENSE="GPL-2"
69 SLOT="0"
70 KEYWORDS="~amd64 ~ppc ~x86"
71 IUSE=""
72
73 DEPEND="dev-python/setuptools"
74 RDEPEND="${DEPEND}"
75
76 DOCS="doc/FAQ doc/README doc/setup.cfg.example doc/setup.py.example"
77 PYTHON_MODNAME="DistUtilsExtra"
78
79 src_prepare() {
80 distutils_src_prepare
81
82 # Disable broken tests.
83 sed \
84 -e "s/test_desktop/_&/" \
85 -e "s/test_po(/_&/" \
86 -e "s/test_policykit/_&/" \
87 -e "s/test_requires_provides/_&/" \
88 -i test/auto.py
89 }
90
91 src_test() {
92 # 5 tests fail with disabled byte-compilation.
93 python_enable_pyc
94
95 testing() {
96 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/auto.py
97 }
98 python_execute_function testing
99
100 python_disable_pyc
101 }