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/pyparsing: ChangeLog pyparsing-1.5.2.ebuild pyparsing-1.2.2.ebuild pyparsing-1.4.8.ebuild
Date: Fri, 04 Sep 2009 14:38:07
Message-Id: E1Mjejz-000409-Ly@stork.gentoo.org
1 patrick 09/09/04 19:46:35
2
3 Modified: ChangeLog
4 Added: pyparsing-1.5.2.ebuild
5 Removed: pyparsing-1.2.2.ebuild pyparsing-1.4.8.ebuild
6 Log:
7 Bump to 1.5.2, remove old
8 (Portage version: 2.2_rc40/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.41 dev-python/pyparsing/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyparsing/ChangeLog?rev=1.41&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyparsing/ChangeLog?rev=1.41&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyparsing/ChangeLog?r1=1.40&r2=1.41
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v
20 retrieving revision 1.40
21 retrieving revision 1.41
22 diff -u -r1.40 -r1.41
23 --- ChangeLog 5 Apr 2009 14:25:54 -0000 1.40
24 +++ ChangeLog 4 Sep 2009 19:46:35 -0000 1.41
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/pyparsing
27 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.40 2009/04/05 14:25:54 klausman Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.41 2009/09/04 19:46:35 patrick Exp $
31 +
32 +*pyparsing-1.5.2 (04 Sep 2009)
33 +
34 + 04 Sep 2009; Patrick Lauer <patrick@g.o> -pyparsing-1.2.2.ebuild,
35 + -pyparsing-1.4.8.ebuild, +pyparsing-1.5.2.ebuild:
36 + Bump to 1.5.2, remove old
37
38 05 Apr 2009; Tobias Klausmann <klausman@g.o>
39 pyparsing-1.5.1.ebuild:
40
41
42
43 1.1 dev-python/pyparsing/pyparsing-1.5.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyparsing/pyparsing-1.5.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyparsing/pyparsing-1.5.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pyparsing-1.5.2.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/pyparsing-1.5.2.ebuild,v 1.1 2009/09/04 19:46:35 patrick Exp $
53
54 inherit distutils
55
56 DESCRIPTION="pyparsing is an easy-to-use Python module for text parsing"
57 HOMEPAGE="http://pyparsing.wikispaces.com/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="doc examples"
64
65 src_install() {
66 distutils_src_install
67
68 dohtml HowToUsePyparsing.html
69 dodoc CHANGES
70
71 if use doc; then
72 dohtml -r htmldoc/*
73 insinto /usr/share/doc/${PF}
74 doins docs/*.pdf
75 fi
76
77 if use examples; then
78 insinto /usr/share/doc/${PF}
79 doins -r examples
80 fi
81 }