Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/wsgiintercept: wsgiintercept-0.10.0.ebuild ChangeLog
Date: Tue, 02 Jun 2015 16:02:07
Message-Id: 20150602160158.93624A1B@oystercatcher.gentoo.org
1 idella4 15/06/02 16:01:58
2
3 Modified: wsgiintercept-0.10.0.ebuild ChangeLog
4 Log:
5 Disable tests connecting to the network, fixes Bug #550710
6
7 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/wsgiintercept/wsgiintercept-0.10.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.10.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.10.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.10.0.ebuild?r1=1.1&r2=1.2
15
16 Index: wsgiintercept-0.10.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.10.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- wsgiintercept-0.10.0.ebuild 29 May 2015 03:42:41 -0000 1.1
23 +++ wsgiintercept-0.10.0.ebuild 2 Jun 2015 16:01:58 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.10.0.ebuild,v 1.1 2015/05/29 03:42:41 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.10.0.ebuild,v 1.2 2015/06/02 16:01:58 idella4 Exp $
29
30 EAPI=5
31
32 @@ -33,6 +33,11 @@
33 python_prepare_all() {
34 # .pyc files cause failure of tests
35 rm -rf test/__pycache__/ || die
36 +
37 + # Disable tests connecting to the network; Bug #550710
38 + sed -e 's:test_http_not_intercepted:_&:' \
39 + -e 's:test_https_not_intercepted:_&:' \
40 + -i test/{test_urllib.py,test_http_client.py,test_requests.py} || die
41 distutils-r1_python_prepare_all
42 }
43
44
45
46
47 1.17 dev-python/wsgiintercept/ChangeLog
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?rev=1.17&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?rev=1.17&content-type=text/plain
51 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?r1=1.16&r2=1.17
52
53 Index: ChangeLog
54 ===================================================================
55 RCS file: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v
56 retrieving revision 1.16
57 retrieving revision 1.17
58 diff -u -r1.16 -r1.17
59 --- ChangeLog 29 May 2015 03:42:41 -0000 1.16
60 +++ ChangeLog 2 Jun 2015 16:01:58 -0000 1.17
61 @@ -1,6 +1,9 @@
62 # ChangeLog for dev-python/wsgiintercept
63 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
64 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.16 2015/05/29 03:42:41 patrick Exp $
65 +# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.17 2015/06/02 16:01:58 idella4 Exp $
66 +
67 + 02 Jun 2015; Ian Delaney <idella4@g.o> wsgiintercept-0.10.0.ebuild:
68 + Disable tests connecting to the network, fixes Bug #550710
69
70 *wsgiintercept-0.10.0 (29 May 2015)