Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.5.ebuild
Date: Fri, 07 Feb 2014 07:23:49
Message-Id: 20140207072345.CC5AF2004C@flycatcher.gentoo.org
1 radhermit 14/02/07 07:23:45
2
3 Modified: ChangeLog
4 Added: libyaml-0.1.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.36 dev-libs/libyaml/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libyaml/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libyaml/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libyaml/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 8 Aug 2013 22:53:43 -0000 1.35
24 +++ ChangeLog 7 Feb 2014 07:23:45 -0000 1.36
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libyaml
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.35 2013/08/08 22:53:43 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.36 2014/02/07 07:23:45 radhermit Exp $
31 +
32 +*libyaml-0.1.5 (07 Feb 2014)
33 +
34 + 07 Feb 2014; Tim Harder <radhermit@g.o> +libyaml-0.1.5.ebuild:
35 + Version bump.
36
37 08 Aug 2013; Tim Harder <radhermit@g.o> metadata.xml:
38 Add myself as maintainer.
39
40
41
42 1.1 dev-libs/libyaml/libyaml-0.1.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libyaml/libyaml-0.1.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libyaml/libyaml-0.1.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libyaml-0.1.5.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.5.ebuild,v 1.1 2014/02/07 07:23:45 radhermit Exp $
52
53 EAPI=5
54
55 inherit autotools-utils eutils libtool
56
57 MY_P="${P/lib}"
58
59 DESCRIPTION="YAML 1.1 parser and emitter written in C"
60 HOMEPAGE="http://pyyaml.org/wiki/LibYAML"
61 SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz"
62
63 LICENSE="MIT"
64 SLOT="0"
65 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 ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
66 IUSE="doc examples test static-libs"
67
68 S="${WORKDIR}/${MY_P}"
69
70 DOCS="README"
71
72 src_prepare() {
73 # conditionally remove tests
74 if ! use test; then
75 sed -i -e 's: tests::g' Makefile* || die
76 fi
77 elibtoolize # for FreeMiNT
78 }
79
80 src_install() {
81 autotools-utils_src_install
82 use doc && dohtml -r doc/html/.
83 if use examples ; then
84 docompress -x /usr/share/doc/${PF}/examples
85 insinto /usr/share/doc/${PF}/examples
86 doins tests/example-*.c
87 fi
88 }