Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ml/camlp4: ChangeLog camlp4-4.02.1_p2.ebuild
Date: Fri, 30 Jan 2015 13:15:03
Message-Id: 20150130131458.DF13010AF5@oystercatcher.gentoo.org
1 aballier 15/01/30 13:14:58
2
3 Modified: ChangeLog
4 Added: camlp4-4.02.1_p2.ebuild
5 Log:
6 version bump, by hfk22, bug #538206
7
8 Signed-off-by: aballier@g.o
9 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.3 dev-ml/camlp4/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camlp4/ChangeLog?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camlp4/ChangeLog?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camlp4/ChangeLog?r1=1.2&r2=1.3
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlp4/ChangeLog,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- ChangeLog 29 Nov 2014 14:53:17 -0000 1.2
25 +++ ChangeLog 30 Jan 2015 13:14:58 -0000 1.3
26 @@ -1,6 +1,11 @@
27 # ChangeLog for dev-ml/camlp4
28 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp4/ChangeLog,v 1.2 2014/11/29 14:53:17 aballier Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp4/ChangeLog,v 1.3 2015/01/30 13:14:58 aballier Exp $
32 +
33 +*camlp4-4.02.1_p2 (30 Jan 2015)
34 +
35 + 30 Jan 2015; Alexis Ballier <aballier@g.o> +camlp4-4.02.1_p2.ebuild:
36 + version bump, by hfk22, bug #538206
37
38 *camlp4-4.02.0_p1-r1 (29 Nov 2014)
39
40
41
42
43 1.1 dev-ml/camlp4/camlp4-4.02.1_p2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camlp4/camlp4-4.02.1_p2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camlp4/camlp4-4.02.1_p2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: camlp4-4.02.1_p2.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ml/camlp4/camlp4-4.02.1_p2.ebuild,v 1.1 2015/01/30 13:14:58 aballier Exp $
53
54 EAPI=5
55
56 MY_PV=${PV/_p/+}
57 MY_P=${PN}-${MY_PV}
58
59 DESCRIPTION="System for writing extensible parsers for programming languages"
60 HOMEPAGE="https://github.com/ocaml/camlp4"
61 SRC_URI="https://github.com/ocaml/camlp4/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
62
63 LICENSE="LGPL-2-with-linking-exception"
64 SLOT="0/${PV}"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~x86-linux"
66 IUSE="+ocamlopt"
67
68 DEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]"
69 RDEPEND="${DEPEND}
70 !<dev-ml/findlib-1.5.5-r1"
71
72 S=${WORKDIR}/${P/_p/-}
73
74 src_configure() {
75 ./configure \
76 --bindir="${EPREFIX}/usr/bin" \
77 --libdir="$(ocamlc -where)" \
78 --pkgdir="$(ocamlc -where)" \
79 || die
80 }
81
82 src_compile() {
83 emake byte
84 use ocamlopt && emake native
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install install-META
89 dodoc CHANGES.md README.md
90 }