Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/twisted-web: twisted-web-11.1.0.ebuild ChangeLog
Date: Tue, 27 Dec 2011 07:03:14
Message-Id: 20111227070304.6255B2004B@flycatcher.gentoo.org
1 floppym 11/12/27 07:03:04
2
3 Modified: ChangeLog
4 Added: twisted-web-11.1.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha83/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.76 dev-python/twisted-web/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-web/ChangeLog?rev=1.76&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-web/ChangeLog?rev=1.76&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-web/ChangeLog?r1=1.75&r2=1.76
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v
20 retrieving revision 1.75
21 retrieving revision 1.76
22 diff -u -r1.75 -r1.76
23 --- ChangeLog 17 Jul 2011 10:58:00 -0000 1.75
24 +++ ChangeLog 27 Dec 2011 07:03:04 -0000 1.76
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/twisted-web
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v 1.75 2011/07/17 10:58:00 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/ChangeLog,v 1.76 2011/12/27 07:03:04 floppym Exp $
30 +
31 +*twisted-web-11.1.0 (27 Dec 2011)
32 +
33 + 27 Dec 2011; Mike Gilbert <floppym@g.o> +twisted-web-11.1.0.ebuild:
34 + Version bump.
35
36 17 Jul 2011; Kacper Kowalik <xarthisius@g.o>
37 twisted-web-11.0.0.ebuild:
38
39
40
41 1.1 dev-python/twisted-web/twisted-web-11.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-web/twisted-web-11.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/twisted-web/twisted-web-11.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: twisted-web-11.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-web/twisted-web-11.1.0.ebuild,v 1.1 2011/12/27 07:03:04 floppym Exp $
51
52 EAPI="4"
53 PYTHON_DEPEND="2"
54 SUPPORT_PYTHON_ABIS="1"
55 RESTRICT_PYTHON_ABIS="3.* *-jython"
56 MY_PACKAGE="Web"
57
58 inherit twisted versionator
59
60 DESCRIPTION="Twisted web server, programmable in Python"
61
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
63 IUSE="soap"
64
65 DEPEND="=dev-python/twisted-$(get_version_component_range 1-2)*
66 soap? ( dev-python/soappy )"
67 RDEPEND="${DEPEND}"
68
69 PYTHON_MODNAME="twisted/plugins twisted/web"
70
71 src_prepare() {
72 distutils_src_prepare
73
74 if [[ "${EUID}" -eq 0 ]]; then
75 # Disable tests failing with root permissions.
76 sed -e "s/test_forbiddenResource/_&/" -i twisted/web/test/test_static.py
77 sed -e "s/testDownloadPageError3/_&/" -i twisted/web/test/test_webclient.py
78 fi
79 }