Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyparsing: pyparsing-2.0.0.ebuild pyparsing-1.5.7.ebuild ChangeLog
Date: Tue, 01 Jan 2013 14:07:41
Message-Id: 20130101140731.084262171D@flycatcher.gentoo.org
1 mgorny 13/01/01 14:07:30
2
3 Modified: ChangeLog
4 Added: pyparsing-2.0.0.ebuild pyparsing-1.5.7.ebuild
5 Log:
6 Version bump. Upstream has split pyparsing to a Python 2-compatible 1.* branch and Python 3-compatible 2.* branch.
7
8 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
9
10 Revision Changes Path
11 1.87 dev-python/pyparsing/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparsing/ChangeLog?rev=1.87&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparsing/ChangeLog?rev=1.87&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparsing/ChangeLog?r1=1.86&r2=1.87
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v
20 retrieving revision 1.86
21 retrieving revision 1.87
22 diff -u -r1.86 -r1.87
23 --- ChangeLog 21 Dec 2012 10:15:31 -0000 1.86
24 +++ ChangeLog 1 Jan 2013 14:07:30 -0000 1.87
25 @@ -1,6 +1,14 @@
26 # ChangeLog for dev-python/pyparsing
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.86 2012/12/21 10:15:31 mgorny Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/ChangeLog,v 1.87 2013/01/01 14:07:30 mgorny Exp $
31 +
32 +*pyparsing-1.5.7 (01 Jan 2013)
33 +*pyparsing-2.0.0 (01 Jan 2013)
34 +
35 + 01 Jan 2013; Michał Górny <mgorny@g.o> +pyparsing-1.5.7.ebuild,
36 + +pyparsing-2.0.0.ebuild:
37 + Version bump. Upstream has split pyparsing to a Python 2-compatible 1.* branch
38 + and Python 3-compatible 2.* branch.
39
40 *pyparsing-1.5.6-r2 (21 Dec 2012)
41
42
43
44
45 1.1 dev-python/pyparsing/pyparsing-2.0.0.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparsing/pyparsing-2.0.0.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparsing/pyparsing-2.0.0.ebuild?rev=1.1&content-type=text/plain
49
50 Index: pyparsing-2.0.0.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/pyparsing-2.0.0.ebuild,v 1.1 2013/01/01 14:07:30 mgorny Exp $
55
56 EAPI=5
57 PYTHON_COMPAT=( python{3_1,3_2,3_3} )
58
59 inherit distutils-r1
60
61 DESCRIPTION="pyparsing is an easy-to-use Python module for text parsing"
62 HOMEPAGE="http://pyparsing.wikispaces.com/ http://pypi.python.org/pypi/pyparsing"
63 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="py3"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
68 IUSE="doc examples"
69
70 RDEPEND="!dev-python/pyparsing:0"
71
72 python_install_all() {
73 local HTML_DOCS=( HowToUsePyparsing.html )
74 use doc && HTML_DOCS+=( htmldoc/ )
75
76 distutils-r1_python_install_all
77
78 use doc && dodoc docs/*.pdf
79 use examples && dodoc -r examples
80 }
81
82
83
84 1.1 dev-python/pyparsing/pyparsing-1.5.7.ebuild
85
86 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparsing/pyparsing-1.5.7.ebuild?rev=1.1&view=markup
87 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyparsing/pyparsing-1.5.7.ebuild?rev=1.1&content-type=text/plain
88
89 Index: pyparsing-1.5.7.ebuild
90 ===================================================================
91 # Copyright 1999-2013 Gentoo Foundation
92 # Distributed under the terms of the GNU General Public License v2
93 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyparsing/pyparsing-1.5.7.ebuild,v 1.1 2013/01/01 14:07:30 mgorny Exp $
94
95 EAPI=5
96 PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_8,1_9} )
97
98 inherit distutils-r1
99
100 DESCRIPTION="pyparsing is an easy-to-use Python module for text parsing"
101 HOMEPAGE="http://pyparsing.wikispaces.com/ http://pypi.python.org/pypi/pyparsing"
102 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
103
104 LICENSE="MIT"
105 SLOT="py2"
106 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
107 IUSE="doc examples"
108
109 RDEPEND="!dev-python/pyparsing:0"
110
111 python_install_all() {
112 local HTML_DOCS=( HowToUsePyparsing.html )
113
114 distutils-r1_python_install_all
115
116 use doc && dodoc docs/*.pdf
117 use examples && dodoc -r examples
118 }