Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-docs: ChangeLog python-docs-2.5.4.ebuild
Date: Tue, 31 Mar 2009 13:58:58
Message-Id: E1LoeUS-0001s3-6G@stork.gentoo.org
1 patrick 09/03/31 13:58:56
2
3 Modified: ChangeLog
4 Added: python-docs-2.5.4.ebuild
5 Log:
6 Adding 2.5.4. Fixes half of #252317
7 (Portage version: 2.2_rc28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.107 dev-python/python-docs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-docs/ChangeLog?rev=1.107&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-docs/ChangeLog?rev=1.107&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-docs/ChangeLog?r1=1.106&r2=1.107
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v
19 retrieving revision 1.106
20 retrieving revision 1.107
21 diff -u -r1.106 -r1.107
22 --- ChangeLog 24 Dec 2008 20:28:56 -0000 1.106
23 +++ ChangeLog 31 Mar 2009 13:58:56 -0000 1.107
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/python-docs
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.106 2008/12/24 20:28:56 neurogeek Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/ChangeLog,v 1.107 2009/03/31 13:58:56 patrick Exp $
30 +
31 +*python-docs-2.5.4 (31 Mar 2009)
32 +
33 + 31 Mar 2009; Patrick Lauer <patrick@g.o> +python-docs-2.5.4.ebuild:
34 + Adding 2.5.4. Fixes half of #252317
35
36 *python-docs-2.6.1 (24 Dec 2008)
37
38
39
40
41 1.1 dev-python/python-docs/python-docs-2.5.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-docs/python-docs-2.5.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-docs/python-docs-2.5.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: python-docs-2.5.4.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-docs/python-docs-2.5.4.ebuild,v 1.1 2009/03/31 13:58:56 patrick Exp $
51
52 DESCRIPTION="HTML documentation for Python"
53 HOMEPAGE="http://www.python.org/doc/${PV}/"
54 SRC_URI="http://www.python.org/ftp/python/doc/${PV}/html-${PV}.tar.bz2"
55
56 LICENSE="PSF-2.2"
57 SLOT="2.5"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
59 IUSE=""
60
61 DEPEND=""
62 RDEPEND=""
63
64 S=${WORKDIR}
65
66 src_unpack() {
67 unpack html-${PV}.tar.bz2
68 rm -f README python.dir
69 }
70
71 src_install() {
72 docinto html
73 cp -R "${S}"/Python-Docs-${PV}/* ${D}/usr/share/doc/${PF}/html
74 }
75
76 pkg_preinst() {
77 dodir /etc/env.d
78 echo "PYTHONDOCS=/usr/share/doc/${PF}/html/lib" > ${D}/etc/env.d/50python-docs
79 }