Gentoo Archives: gentoo-commits

From: "Dirkjan Ochtman (djc)" <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/mechanize: ChangeLog mechanize-0.2.0.ebuild
Date: Sun, 25 Apr 2010 09:03:34
Message-Id: 20100425090330.6FCAA2C04C@corvid.gentoo.org
1 djc 10/04/25 09:03:30
2
3 Modified: ChangeLog mechanize-0.2.0.ebuild
4 Log:
5 Fix for bug 317047.
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.20 dev-python/mechanize/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/ChangeLog?rev=1.20&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/ChangeLog?rev=1.20&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/ChangeLog?r1=1.19&r2=1.20
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/mechanize/ChangeLog,v
18 retrieving revision 1.19
19 retrieving revision 1.20
20 diff -u -r1.19 -r1.20
21 --- ChangeLog 24 Apr 2010 10:33:34 -0000 1.19
22 +++ ChangeLog 25 Apr 2010 09:03:30 -0000 1.20
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-python/mechanize
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/ChangeLog,v 1.19 2010/04/24 10:33:34 djc Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/ChangeLog,v 1.20 2010/04/25 09:03:30 djc Exp $
28 +
29 + 25 Apr 2010; Dirkjan Ochtman <djc@g.o> mechanize-0.2.0.ebuild:
30 + Bug 317047: fix docs. Patch by Olivier Huber <oli.huber@×××××.com>.
31
32 *mechanize-0.2.0 (24 Apr 2010)
33
34
35
36
37 1.2 dev-python/mechanize/mechanize-0.2.0.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/mechanize-0.2.0.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/mechanize-0.2.0.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mechanize/mechanize-0.2.0.ebuild?r1=1.1&r2=1.2
42
43 Index: mechanize-0.2.0.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/dev-python/mechanize/mechanize-0.2.0.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- mechanize-0.2.0.ebuild 24 Apr 2010 10:33:34 -0000 1.1
50 +++ mechanize-0.2.0.ebuild 25 Apr 2010 09:03:30 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/mechanize-0.2.0.ebuild,v 1.1 2010/04/24 10:33:34 djc Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mechanize/mechanize-0.2.0.ebuild,v 1.2 2010/04/25 09:03:30 djc Exp $
56
57 EAPI="2"
58 SUPPORT_PYTHON_ABIS="1"
59 @@ -20,7 +20,7 @@
60 RDEPEND=""
61 RESTRICT_PYTHON_ABIS="3.*"
62
63 -DOCS="0.1-changes.txt"
64 +DOCS="docs/*.txt"
65
66 src_prepare() {
67 # Use distutils instead of setuptools.
68 @@ -41,9 +41,8 @@
69 }
70
71 src_install() {
72 - # Remove some files to prevent distutils_src_install from installing them.
73 - dohtml *.html
74 - rm -f README.html*
75 -
76 + # Fix some paths.
77 + sed -i -e 's:../styles/:styles/:g' docs/html/*
78 + dohtml -r docs/html/ docs/styles
79 distutils_src_install
80 }