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