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/ply: ply-2.5.ebuild ChangeLog
Date: Wed, 01 Jul 2009 06:29:48
Message-Id: E1MLtKF-00059e-4i@stork.gentoo.org
1 patrick 09/07/01 06:29:47
2
3 Modified: ChangeLog
4 Added: ply-2.5.ebuild
5 Log:
6 Bump to 2.5. Small fixes to remove deprecation warnings. Tests fail because of a path mismatch although the results would be valid.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 dev-python/ply/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/ply/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/ply/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/ply/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/ply/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 3 Jul 2007 10:39:28 -0000 1.9
23 +++ ChangeLog 1 Jul 2009 06:29:47 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/ply
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ChangeLog,v 1.9 2007/07/03 10:39:28 lucass Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ChangeLog,v 1.10 2009/07/01 06:29:47 patrick Exp $
30 +
31 +*ply-2.5 (01 Jul 2009)
32 +
33 + 01 Jul 2009; Patrick Lauer <patrick@g.o> +ply-2.5.ebuild:
34 + Bump to 2.5. Small fixes to remove deprecation warnings. Tests fail
35 + because of a path mismatch although the results would be valid.
36
37 03 Jul 2007; Lukasz Strzygowski <lucass@g.o> -ply-2.2.ebuild:
38 Dropped old version.
39
40
41
42 1.1 dev-python/ply/ply-2.5.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/ply/ply-2.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/ply/ply-2.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ply-2.5.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/ply/ply-2.5.ebuild,v 1.1 2009/07/01 06:29:47 patrick Exp $
52
53 EAPI="2"
54
55 inherit distutils
56
57 KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
58
59 DESCRIPTION="Python Lex-Yacc library"
60 SRC_URI="http://www.dabeaz.com/ply/${P}.tar.gz"
61 HOMEPAGE="http://www.dabeaz.com/ply/"
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 IUSE="examples"
65
66 src_prepare() {
67 sed -i -e 's/md5,/hashlib,/' ply/yacc.py
68 sed -i -e 's/md5.new/hashlib.md5/' ply/yacc.py
69 }
70
71 src_install() {
72 DOCS="ANNOUNCE CHANGES"
73 distutils_src_install
74 dohtml doc/*
75 if use examples; then
76 insinto /usr/share/doc/${PF}
77 doins -r example
78 fi
79 }
80
81 src_test() {
82 cd test
83 "${python}" rununit.py || die "test failed"
84 }