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/python-distutils-extra: ChangeLog python-distutils-extra-2.23.ebuild
Date: Thu, 30 Dec 2010 22:41:14
Message-Id: 20101230224104.D9A6820054@flycatcher.gentoo.org
1 arfrever 10/12/30 22:41:04
2
3 Modified: ChangeLog
4 Added: python-distutils-extra-2.23.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha10_p22/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 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.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-distutils-extra/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-distutils-extra/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 15 Jul 2010 17:31:57 -0000 1.5
24 +++ ChangeLog 30 Dec 2010 22:41:04 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/python-distutils-extra
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.5 2010/07/15 17:31:57 arfrever Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-distutils-extra/ChangeLog,v 1.6 2010/12/30 22:41:04 arfrever Exp $
30 +
31 +*python-distutils-extra-2.23 (30 Dec 2010)
32 +
33 + 30 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + -python-distutils-extra-2.15.ebuild, +python-distutils-extra-2.23.ebuild:
35 + Version bump.
36
37 *python-distutils-extra-2.19 (15 Jul 2010)
38
39
40
41
42 1.1 dev-python/python-distutils-extra/python-distutils-extra-2.23.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-distutils-extra/python-distutils-extra-2.23.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.23.ebuild?rev=1.1&content-type=text/plain
46
47 Index: python-distutils-extra-2.23.ebuild
48 ===================================================================
49 # Copyright 1999-2010 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.23.ebuild,v 1.1 2010/12/30 22:41:04 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="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 }