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/mechanize: ChangeLog mechanize-0.1.11.ebuild
Date: Sun, 03 Jan 2010 02:26:46
Message-Id: E1NRGB0-0000M7-EU@stork.gentoo.org
1 arfrever 10/01/03 02:26:42
2
3 Modified: ChangeLog mechanize-0.1.11.ebuild
4 Log:
5 Fix a part of tests with Python 2.7 (bug #299001).
6 (Portage version: 15156-svn/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.17 dev-python/mechanize/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/ChangeLog?rev=1.17&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/ChangeLog?rev=1.17&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/ChangeLog?r1=1.16&r2=1.17
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/mechanize/ChangeLog,v
18 retrieving revision 1.16
19 retrieving revision 1.17
20 diff -u -r1.16 -r1.17
21 --- ChangeLog 18 Oct 2009 19:37:44 -0000 1.16
22 +++ ChangeLog 3 Jan 2010 02:26:42 -0000 1.17
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-python/mechanize
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/ChangeLog,v 1.16 2009/10/18 19:37:44 arfrever Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/ChangeLog,v 1.17 2010/01/03 02:26:42 arfrever Exp $
29 +
30 + 03 Jan 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
31 + mechanize-0.1.11.ebuild, +files/mechanize-0.1.11-python-2.7.patch:
32 + Fix a part of tests with Python 2.7 (bug #299001).
33
34 18 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 mechanize-0.1.11.ebuild:
36
37
38
39 1.7 dev-python/mechanize/mechanize-0.1.11.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/mechanize-0.1.11.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/mechanize-0.1.11.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/mechanize-0.1.11.ebuild?r1=1.6&r2=1.7
44
45 Index: mechanize-0.1.11.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/mechanize/mechanize-0.1.11.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- mechanize-0.1.11.ebuild 30 Oct 2009 12:27:36 -0000 1.6
52 +++ mechanize-0.1.11.ebuild 3 Jan 2010 02:26:42 -0000 1.7
53 @@ -1,11 +1,11 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/mechanize-0.1.11.ebuild,v 1.6 2009/10/30 12:27:36 arfrever Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/mechanize-0.1.11.ebuild,v 1.7 2010/01/03 02:26:42 arfrever Exp $
59
60 EAPI="2"
61 SUPPORT_PYTHON_ABIS="1"
62
63 -inherit distutils
64 +inherit distutils eutils
65
66 DESCRIPTION="Stateful programmatic web browsing in Python"
67 HOMEPAGE="http://wwwsearch.sourceforge.net/mechanize/ http://pypi.python.org/pypi/mechanize"
68 @@ -30,6 +30,8 @@
69 # We don't run coverage tests or functional_tests
70 # which access the network, just doctests and unit tests
71 sed -e '/import coverage/d' -i test.py || die "sed in test.py failed"
72 +
73 + epatch "${FILESDIR}/${P}-python-2.7.patch"
74 }
75
76 src_test() {