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/twisted-web: ChangeLog twisted-web-8.2.0.ebuild
Date: Sun, 25 Oct 2009 20:12:52
Message-Id: E1N29SM-0008Ia-L2@stork.gentoo.org
1 arfrever 09/10/25 20:12:50
2
3 Modified: ChangeLog twisted-web-8.2.0.ebuild
4 Log:
5 Set SUPPORT_PYTHON_ABIS.
6 (Portage version: 14724-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.43 dev-python/twisted-web/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted-web/ChangeLog?rev=1.43&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted-web/ChangeLog?rev=1.43&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted-web/ChangeLog?r1=1.42&r2=1.43
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v
18 retrieving revision 1.42
19 retrieving revision 1.43
20 diff -u -r1.42 -r1.43
21 --- ChangeLog 6 Sep 2009 20:37:21 -0000 1.42
22 +++ ChangeLog 25 Oct 2009 20:12:50 -0000 1.43
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-python/twisted-web
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v 1.42 2009/09/06 20:37:21 idl0r Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v 1.43 2009/10/25 20:12:50 arfrever Exp $
28 +
29 + 25 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
30 + twisted-web-8.2.0.ebuild:
31 + Set SUPPORT_PYTHON_ABIS.
32
33 06 Sep 2009; Christian Ruppert <idl0r@g.o>
34 -files/twisted-web-0.5.0-tests-2.2-compat.patch:
35
36
37
38 1.3 dev-python/twisted-web/twisted-web-8.2.0.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted-web/twisted-web-8.2.0.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted-web/twisted-web-8.2.0.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/twisted-web/twisted-web-8.2.0.ebuild?r1=1.2&r2=1.3
43
44 Index: twisted-web-8.2.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-web/twisted-web-8.2.0.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- twisted-web-8.2.0.ebuild 21 Jul 2009 11:59:12 -0000 1.2
51 +++ twisted-web-8.2.0.ebuild 25 Oct 2009 20:12:50 -0000 1.3
52 @@ -1,23 +1,25 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/twisted-web-8.2.0.ebuild,v 1.2 2009/07/21 11:59:12 ssuominen Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/twisted-web-8.2.0.ebuild,v 1.3 2009/10/25 20:12:50 arfrever Exp $
57
58 -MY_PACKAGE=Web
59 +EAPI="2"
60 +SUPPORT_PYTHON_ABIS="1"
61 +MY_PACKAGE="Web"
62
63 -inherit twisted eutils versionator
64 +inherit eutils twisted versionator
65
66 DESCRIPTION="Twisted web server, programmable in Python"
67
68 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
69 +IUSE="soap"
70
71 -RDEPEND="=dev-python/twisted-$(get_version_component_range 1-2)*
72 +DEPEND="=dev-python/twisted-$(get_version_component_range 1-2)*
73 soap? ( dev-python/soappy )"
74 -DEPEND="${RDEPEND}"
75 +RDEPEND="${DEPEND}"
76 +RESTRICT_PYTHON_ABIS="3.*"
77
78 -IUSE="soap"
79 +PYTHON_MODNAME="twisted/plugins twisted/web"
80
81 -src_unpack() {
82 - unpack ${A}
83 - cd "${S}"
84 - epatch "${FILESDIR}"/${PN}-0.5.0-root-skip.patch
85 +src_prepare() {
86 + epatch "${FILESDIR}/${PN}-0.5.0-root-skip.patch"
87 }