Gentoo Archives: gentoo-commits

From: "Stefan Briesenick (sbriesen)" <sbriesen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.3.ebuild
Date: Fri, 07 May 2010 10:22:02
Message-Id: 20100507102156.5C86628867@corvid.gentoo.org
1 sbriesen 10/05/07 10:21:56
2
3 Modified: ChangeLog
4 Added: libyaml-0.1.3.ebuild
5 Log:
6 version bump, solving bug #308247.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 dev-libs/libyaml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libyaml/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libyaml/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libyaml/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 14 Jan 2010 21:39:14 -0000 1.10
23 +++ ChangeLog 7 May 2010 10:21:56 -0000 1.11
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libyaml
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.10 2010/01/14 21:39:14 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.11 2010/05/07 10:21:56 sbriesen Exp $
29 +
30 +*libyaml-0.1.3 (07 May 2010)
31 +
32 + 07 May 2010; Stefan Briesenick <sbriesen@g.o>
33 + +libyaml-0.1.3.ebuild:
34 + version bump, solving bug #308247.
35
36 14 Jan 2010; Christian Faulhammer <fauli@g.o> libyaml-0.1.2.ebuild:
37 Transfer Prefix keywords
38
39
40
41 1.1 dev-libs/libyaml/libyaml-0.1.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libyaml/libyaml-0.1.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libyaml/libyaml-0.1.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libyaml-0.1.3.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.3.ebuild,v 1.1 2010/05/07 10:21:56 sbriesen Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 MY_P="${P/lib}"
57
58 DESCRIPTION="YAML 1.1 parser and emitter written in C"
59 HOMEPAGE="http://pyyaml.org/wiki/LibYAML"
60 SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-linux ~x86-macos"
65 IUSE="doc examples test"
66
67 S="${WORKDIR}/${MY_P}"
68
69 src_prepare() {
70 # conditionally remove tests
71 if use test ; then
72 sed -i -e 's: tests::g' Makefile*
73 fi
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" install || die "emake install failed"
78 use doc && dohtml -r doc/html/.
79 dodoc README
80 if use examples ; then
81 insinto /usr/share/doc/${PF}/examples
82 doins tests/example-*.c
83 fi
84 }