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/foolscap: foolscap-0.6.0.ebuild ChangeLog
Date: Wed, 29 Dec 2010 18:37:52
Message-Id: 20101229183728.5DF7720054@flycatcher.gentoo.org
1 arfrever 10/12/29 18:37:28
2
3 Modified: ChangeLog
4 Added: foolscap-0.6.0.ebuild
5 Log:
6 Version bump. Disable test failing with openssl-1 (bug #330079).
7
8 (Portage version: 2.2.0_alpha10_p17/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.25 dev-python/foolscap/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/foolscap/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/foolscap/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/foolscap/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/foolscap/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 7 Oct 2010 19:21:00 -0000 1.24
24 +++ ChangeLog 29 Dec 2010 18:37:28 -0000 1.25
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/foolscap
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/foolscap/ChangeLog,v 1.24 2010/10/07 19:21:00 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/foolscap/ChangeLog,v 1.25 2010/12/29 18:37:28 arfrever Exp $
30 +
31 +*foolscap-0.6.0 (29 Dec 2010)
32 +
33 + 29 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +foolscap-0.6.0.ebuild:
35 + Version bump. Disable test failing with openssl-1 (bug #330079).
36
37 07 Oct 2010; Samuli Suominen <ssuominen@g.o> foolscap-0.5.1.ebuild:
38 ppc64 stable wrt #337142
39
40
41
42 1.1 dev-python/foolscap/foolscap-0.6.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/foolscap/foolscap-0.6.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/foolscap/foolscap-0.6.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: foolscap-0.6.0.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/foolscap/foolscap-0.6.0.ebuild,v 1.1 2010/12/29 18:37:28 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.* *-jython"
57 DISTUTILS_SRC_TEST="trial"
58 DISTUTILS_DISABLE_TEST_DEPENDENCY="1"
59
60 inherit distutils
61
62 DESCRIPTION="RPC protocol for Twisted"
63 HOMEPAGE="http://foolscap.lothar.com/trac http://pypi.python.org/pypi/foolscap"
64 SRC_URI="http://${PN}.lothar.com/releases/${P}.tar.gz"
65
66 LICENSE="MIT"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
69 IUSE="doc ssl"
70
71 RDEPEND=">=dev-python/twisted-2.4.0
72 dev-python/twisted-web
73 ssl? ( dev-python/pyopenssl )"
74 DEPEND="${DEPEND}
75 dev-python/setuptools"
76
77 src_prepare() {
78 distutils_src_prepare
79
80 # Disable test failing with dev-python/pyopenssl and dev-libs/openssl-1.
81 sed -e "s/test_generate/_&/" -i foolscap/test/test_tub.py
82 }
83
84 src_test() {
85 LC_ALL="C" distutils_src_test
86 }
87
88 src_install() {
89 distutils_src_install
90
91 if use doc; then
92 dodoc doc/*.txt || die "dodoc failed"
93 dohtml -A py,tpl,xhtml -r doc/* || die "dohtml failed"
94 fi
95 }