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