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/soappy: soappy-0.12.0.ebuild ChangeLog
Date: Sun, 25 Oct 2009 19:53:56
Message-Id: E1N29A1-0006dM-Rd@stork.gentoo.org
1 arfrever 09/10/25 19:53:53
2
3 Modified: soappy-0.12.0.ebuild ChangeLog
4 Log:
5 Set SUPPORT_PYTHON_ABIS.
6 (Portage version: 14724-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.12 dev-python/soappy/soappy-0.12.0.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/soappy/soappy-0.12.0.ebuild?rev=1.12&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/soappy/soappy-0.12.0.ebuild?rev=1.12&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/soappy/soappy-0.12.0.ebuild?r1=1.11&r2=1.12
14
15 Index: soappy-0.12.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/soappy/soappy-0.12.0.ebuild,v
18 retrieving revision 1.11
19 retrieving revision 1.12
20 diff -u -r1.11 -r1.12
21 --- soappy-0.12.0.ebuild 14 Mar 2009 17:41:34 -0000 1.11
22 +++ soappy-0.12.0.ebuild 25 Oct 2009 19:53:53 -0000 1.12
23 @@ -1,6 +1,9 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/soappy/soappy-0.12.0.ebuild,v 1.11 2009/03/14 17:41:34 armin76 Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/soappy/soappy-0.12.0.ebuild,v 1.12 2009/10/25 19:53:53 arfrever Exp $
28 +
29 +EAPI="2"
30 +SUPPORT_PYTHON_ABIS="1"
31
32 inherit distutils
33
34 @@ -19,14 +22,16 @@
35 DEPEND=">=dev-python/fpconst-0.7.1
36 dev-python/pyxml"
37 RDEPEND="${DEPEND}
38 - ssl? ( dev-python/m2crypto )"
39 + ssl? ( dev-python/m2crypto )"
40 +RESTRICT_PYTHON_ABIS="3.*"
41 +
42 +S="${WORKDIR}/${MY_P}"
43
44 -S=${WORKDIR}/${MY_P}
45 -PYTHON_MODNAME=${MY_PN}
46 +PYTHON_MODNAME="${MY_PN}"
47 DOCS="RELEASE_INFO"
48
49 pkg_setup() {
50 - if use ssl && ! built_with_use dev-lang/python ssl ; then
51 + if use ssl && ! has_version dev-lang/python[ssl]; then
52 ewarn "The 'ssl' USE-flag is enabled, but dev-lang/python is"
53 ewarn "not compiled with it. You'll only get server-side SSL support."
54 ewarn "Just emerge dev-lang/python afterwards with the ssl USE-flag to"
55 @@ -34,18 +39,15 @@
56 fi
57 }
58
59 -src_unpack() {
60 - unpack ${A}
61 - cd "${S}"
62 -
63 +src_prepare() {
64 epatch "${FILESDIR}/${P}-python-2.5-compat.patch"
65 }
66
67 src_install() {
68 distutils_src_install
69 dodoc docs/*
70 - if use examples ; then
71 + if use examples; then
72 insinto /usr/share/doc/${PF}/examples
73 - doins -r contrib bid tools validate
74 + doins -r bid contrib tools validate
75 fi
76 }
77
78
79
80 1.27 dev-python/soappy/ChangeLog
81
82 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/soappy/ChangeLog?rev=1.27&view=markup
83 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/soappy/ChangeLog?rev=1.27&content-type=text/plain
84 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/soappy/ChangeLog?r1=1.26&r2=1.27
85
86 Index: ChangeLog
87 ===================================================================
88 RCS file: /var/cvsroot/gentoo-x86/dev-python/soappy/ChangeLog,v
89 retrieving revision 1.26
90 retrieving revision 1.27
91 diff -u -r1.26 -r1.27
92 --- ChangeLog 14 Mar 2009 17:41:34 -0000 1.26
93 +++ ChangeLog 25 Oct 2009 19:53:53 -0000 1.27
94 @@ -1,6 +1,10 @@
95 # ChangeLog for dev-python/soappy
96 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
97 -# $Header: /var/cvsroot/gentoo-x86/dev-python/soappy/ChangeLog,v 1.26 2009/03/14 17:41:34 armin76 Exp $
98 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
99 +# $Header: /var/cvsroot/gentoo-x86/dev-python/soappy/ChangeLog,v 1.27 2009/10/25 19:53:53 arfrever Exp $
100 +
101 + 25 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
102 + soappy-0.12.0.ebuild:
103 + Set SUPPORT_PYTHON_ABIS.
104
105 14 Mar 2009; Raúl Porcel <armin76@g.o> soappy-0.12.0.ebuild:
106 Add ~arm/~s390/~sh wrt #172818