Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlp4/
Date: Fri, 03 Mar 2017 11:28:58
Message-Id: 1488540523.a66d6e2380344b539ecf299531bd5e9254fb71f3.aballier@gentoo
1 commit: a66d6e2380344b539ecf299531bd5e9254fb71f3
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 3 11:23:47 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 3 11:28:43 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a66d6e23
7
8 dev-ml/camlp4: bump to 4.05
9
10 Package-Manager: Portage-2.3.4, Repoman-2.3.2
11
12 dev-ml/camlp4/Manifest | 1 +
13 dev-ml/camlp4/camlp4-4.05_p1.ebuild | 43 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-ml/camlp4/Manifest b/dev-ml/camlp4/Manifest
17 index 148b15da99b..48b32e950d2 100644
18 --- a/dev-ml/camlp4/Manifest
19 +++ b/dev-ml/camlp4/Manifest
20 @@ -1 +1,2 @@
21 DIST camlp4-4.04_p1.tar.gz 648320 SHA256 6044f24a44053684d1260f19387e59359f59b0605cdbf7295e1de42783e48ff1 SHA512 7db8eebcf3d230f60650ba62d9cb630c069394237e97b678a40b61d3dcaded752a2b7e089a50ff528f1ea0740d0291b722df123a072f2cee489cadc5201c6776 WHIRLPOOL 6cfed59e81dbd92debe23670657eb7e96125105fccb7b20a8e16553090cc9a0e8c732b8e0cac1a9b39e172aa8dfaae145ba8827948f371aeaa69345f3ba39096
22 +DIST camlp4-4.05_p1.tar.gz 647566 SHA256 9819b5c7a5c1a4854be18020ef312bfec6541e26c798a5c863be875bfd7e8e2b SHA512 0ee9720286d0d832fb7d2d21a8877856e0e47c94c86b1b58d28f8e757a18472eecb56a16e3a04ce815f240dd5048f5d597515461d084fd1cf4da1b121f97a3fe WHIRLPOOL 0f89cd42bac84ba13d373160bf33452fc1cc31e0f6529aa1da2ff372e5cbb69868247461c17ac4fccd50528f97abe8009d899129c73afab8ce799791b259cc77
23
24 diff --git a/dev-ml/camlp4/camlp4-4.05_p1.ebuild b/dev-ml/camlp4/camlp4-4.05_p1.ebuild
25 new file mode 100644
26 index 00000000000..f2382e86d20
27 --- /dev/null
28 +++ b/dev-ml/camlp4/camlp4-4.05_p1.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +MY_PV=${PV/_p/+}
36 +MY_P=${PN}-${MY_PV}
37 +
38 +DESCRIPTION="System for writing extensible parsers for programming languages"
39 +HOMEPAGE="https://github.com/ocaml/camlp4"
40 +SRC_URI="https://github.com/ocaml/camlp4/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="LGPL-2-with-linking-exception"
43 +SLOT="0/${PV}"
44 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
45 +IUSE="+ocamlopt"
46 +
47 +DEPEND=">=dev-lang/ocaml-4.05_beta:=[ocamlopt?]"
48 +RDEPEND="${DEPEND}
49 + !<dev-lang/ocaml-4.02
50 + !<dev-ml/findlib-1.5.5-r1"
51 +DEPEND="${DEPEND}
52 + dev-ml/ocamlbuild"
53 +
54 +S=${WORKDIR}/${P/_p/-}
55 +
56 +src_configure() {
57 + ./configure \
58 + --bindir="${EPREFIX}/usr/bin" \
59 + --libdir="$(ocamlc -where)" \
60 + --pkgdir="$(ocamlc -where)" \
61 + || die
62 +}
63 +
64 +src_compile() {
65 + emake byte
66 + use ocamlopt && emake native
67 +}
68 +
69 +src_install() {
70 + emake DESTDIR="${D}" install install-META
71 + dodoc CHANGES.md README.md
72 +}