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/pyyaml: pyyaml-3.09.ebuild ChangeLog
Date: Fri, 04 Sep 2009 12:47:41
Message-Id: E1Mjd17-0008LR-S5@stork.gentoo.org
1 patrick 09/09/04 17:56:09
2
3 Modified: ChangeLog
4 Added: pyyaml-3.09.ebuild
5 Log:
6 Bump to 3.09, remove 3.05
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.12 dev-python/pyyaml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyyaml/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyyaml/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyyaml/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyyaml/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 29 Aug 2009 23:21:53 -0000 1.11
23 +++ ChangeLog 4 Sep 2009 17:56:09 -0000 1.12
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-python/pyyaml
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyyaml/ChangeLog,v 1.11 2009/08/29 23:21:53 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyyaml/ChangeLog,v 1.12 2009/09/04 17:56:09 patrick Exp $
29 +
30 +*pyyaml-3.09 (04 Sep 2009)
31 +
32 + 04 Sep 2009; Patrick Lauer <patrick@g.o> +pyyaml-3.09.ebuild:
33 + Bump to 3.09, remove 3.05
34
35 *pyyaml-3.08-r1 (29 Aug 2009)
36
37
38
39
40 1.1 dev-python/pyyaml/pyyaml-3.09.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyyaml/pyyaml-3.09.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pyyaml/pyyaml-3.09.ebuild?rev=1.1&content-type=text/plain
44
45 Index: pyyaml-3.09.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyyaml/pyyaml-3.09.ebuild,v 1.1 2009/09/04 17:56:09 patrick Exp $
50
51 EAPI="2"
52
53 NEED_PYTHON="2.3"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 MY_P="PyYAML-${PV}"
59
60 DESCRIPTION="YAML parser and emitter for Python"
61 HOMEPAGE="http://pyyaml.org/wiki/PyYAML"
62 SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
67 IUSE="examples libyaml"
68
69 DEPEND="libyaml? ( dev-libs/libyaml dev-python/pyrex )"
70 RDEPEND="libyaml? ( dev-libs/libyaml )"
71
72 S="${WORKDIR}/${MY_P}"
73
74 PYTHON_MODNAME="yaml"
75
76 src_install() {
77 distutils_src_install
78 if use examples; then
79 insinto /usr/share/doc/${PF}/examples
80 doins -r examples/.
81 fi
82 }