Gentoo Archives: gentoo-commits

From: "Rob Cakebread (pythonhead)" <pythonhead@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/twisted: ChangeLog twisted-8.1.0.ebuild
Date: Thu, 04 Sep 2008 01:59:17
Message-Id: E1Kb47u-0008An-8D@stork.gentoo.org
1 pythonhead 08/09/04 01:59:14
2
3 Modified: ChangeLog twisted-8.1.0.ebuild
4 Log:
5 Remove test if not using Python 2.5+ bug# 234370
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 i686)
7
8 Revision Changes Path
9 1.98 dev-python/twisted/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.98&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted/ChangeLog?rev=1.98&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted/ChangeLog?r1=1.97&r2=1.98
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v
18 retrieving revision 1.97
19 retrieving revision 1.98
20 diff -u -r1.97 -r1.98
21 --- ChangeLog 13 Aug 2008 08:43:53 -0000 1.97
22 +++ ChangeLog 4 Sep 2008 01:59:13 -0000 1.98
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-python/twisted
25 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.97 2008/08/13 08:43:53 coldwind Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/ChangeLog,v 1.98 2008/09/04 01:59:13 pythonhead Exp $
28 +
29 + 04 Sep 2008; Rob Cakebread <pythonhead@g.o> twisted-8.1.0.ebuild:
30 + Remove test if not using Python 2.5+ bug# 234370
31
32 13 Aug 2008; Santiago M. Mola <coldwind@g.o> twisted-8.1.0.ebuild:
33 amd64 stable wrt bug #231675
34
35
36
37 1.7 dev-python/twisted/twisted-8.1.0.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted/twisted-8.1.0.ebuild?rev=1.7&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted/twisted-8.1.0.ebuild?rev=1.7&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted/twisted-8.1.0.ebuild?r1=1.6&r2=1.7
42
43 Index: twisted-8.1.0.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-8.1.0.ebuild,v
46 retrieving revision 1.6
47 retrieving revision 1.7
48 diff -u -r1.6 -r1.7
49 --- twisted-8.1.0.ebuild 13 Aug 2008 08:43:53 -0000 1.6
50 +++ twisted-8.1.0.ebuild 4 Sep 2008 01:59:13 -0000 1.7
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-8.1.0.ebuild,v 1.6 2008/08/13 08:43:53 coldwind Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-8.1.0.ebuild,v 1.7 2008/09/04 01:59:13 pythonhead Exp $
56
57 inherit eutils distutils versionator
58
59 @@ -27,6 +27,7 @@
60 DOCS="CREDITS NEWS README"
61
62 src_unpack() {
63 + python_version
64 unpack ${A}
65 cd "${S}"
66
67 @@ -35,6 +36,12 @@
68
69 # Pass valid arguments to "head" in the zsh completion function.
70 epatch "${FILESDIR}/${PN}-2.1.0-zsh-head.patch"
71 +
72 + # Skip test that only works with Python >=2.5 (won't byte-compile)
73 + if [ "${PYVER_MINOR}" -lt 5 ]; then
74 + echo "'''skip'''" > "${S}"/twisted/test/generator_failure_tests.py || die
75 + fi
76 +
77 }
78
79 src_install() {