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/ppx_deriving/
Date: Wed, 02 Mar 2016 19:29:21
Message-Id: 1456946946.423a59ac2cb70202bc26eee094cf096ee91b1d27.aballier@gentoo
1 commit: 423a59ac2cb70202bc26eee094cf096ee91b1d27
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 2 19:24:23 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 2 19:29:06 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=423a59ac
7
8 dev-ml/ppx_deriving: bump to 3.2
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ml/ppx_deriving/Manifest | 2 +
14 dev-ml/ppx_deriving/ppx_deriving-3.2.ebuild | 59 +++++++++++++++++++++++++++++
15 2 files changed, 61 insertions(+)
16
17 diff --git a/dev-ml/ppx_deriving/Manifest b/dev-ml/ppx_deriving/Manifest
18 index 7ddb5a2..3c6b3b1 100644
19 --- a/dev-ml/ppx_deriving/Manifest
20 +++ b/dev-ml/ppx_deriving/Manifest
21 @@ -1,2 +1,4 @@
22 DIST ppx_deriving-3.0.tar.gz 38560 SHA256 1998607e68b35b6c61e1fb33c03b523f3bf88f802df6d5bf180dc6932317179b SHA512 1b8ef40fd1b85df0d5307edcc46c16ae1834aadb1419d92dced4b2b542f51bb24999abcdf725647f1f7033ca2df4dc88ab156002b1e6a7a6a83a5e0e4854d833 WHIRLPOOL cda0c6afc31c6d39dd4974c2ce63d28ddea2019bb8bc1c50338c1005880a0a0ef66c2ceb00e86a6a7040c042778f1216321cda3d1dcfc2327c6e084f0ab45b53
23 DIST ppx_deriving-3.1.tar.gz 40720 SHA256 19babff7706753d24d4859a24d7303555dd1af125d6ca8a0589b8fac3c110fa7 SHA512 ef3174f4fbecea9c613deb62aebb45de2b2abf640d557973f0621575a391cc11fc4135c782dc3d202012ddbeaadb3c7dd84f42d08aef0ba668bd169dedfeedf0 WHIRLPOOL cdace363540346f3660811c57f7c10757dd09011fed1300fe29e3746297cae9ed3567e2b865c20dda6061404bb10c5b1e3350acfa8ad7f92bb20199f0a8052ea
24 +DIST ppx_deriving-3.2-ocaml403.patch.bz2 23241 SHA256 2ef8fe4346283151d2af6385473d1b78c7a8da40b83386357d894e38b8f96cf9 SHA512 2f43bd7ed3c34f3f1f41780eb11f552313e0ed36ef553fd00acce04e16caef2588c8ed171f8f63e00fc5d43a42ab2dfcc1085071a2dddd6a3adc46d993522239 WHIRLPOOL 5b926588237393bdc061b28499de3728d415cf0f6af902affad9714bf86024f56f2b29f6786d6e89b3d62ebd8e558d52a7851092d652638d400e986c85b25147
25 +DIST ppx_deriving-3.2.tar.gz 41202 SHA256 9328c7bfbdc78463a302b45f7a8102bc164f345c5d1582dd51c4e77fd38997e3 SHA512 dd25ddbe812524b3035333c16e62d6423cb20fff2160b18cf20260dfbf214afc7ee3bbe6275ba6d1f357c686d738bc2bdb96d413896d970942592ac971398ad9 WHIRLPOOL 47e9be6a8a2528c429b7c615240f374f988b8a21aba759539bfbe54f08abfff2e336b4b37692b204b77a4ff6b1a76e7864d1834ae32c6afa9d18119ff83c9c41
26
27 diff --git a/dev-ml/ppx_deriving/ppx_deriving-3.2.ebuild b/dev-ml/ppx_deriving/ppx_deriving-3.2.ebuild
28 new file mode 100644
29 index 0000000..e7607f9
30 --- /dev/null
31 +++ b/dev-ml/ppx_deriving/ppx_deriving-3.2.ebuild
32 @@ -0,0 +1,59 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI="5"
38 +
39 +inherit findlib eutils
40 +
41 +DESCRIPTION="Type-driven code generation for OCaml"
42 +HOMEPAGE="https://github.com/whitequark/ppx_deriving"
43 +SRC_URI="https://github.com/whitequark/ppx_deriving/archive/v${PV}.tar.gz -> ${P}.tar.gz
44 + mirror://gentoo/${P}-ocaml403.patch.bz2"
45 +
46 +LICENSE="MIT"
47 +SLOT="0/${PV}"
48 +KEYWORDS="~amd64"
49 +IUSE="doc +ocamlopt test"
50 +
51 +DEPEND="dev-ml/ppx_tools:=
52 + >=dev-lang/ocaml-4.02.3:=[ocamlopt?]"
53 +RDEPEND="${DEPEND}"
54 +DEPEND="${RDEPEND}
55 + dev-ml/opam
56 + test? ( dev-ml/ounit )"
57 +
58 +src_prepare() {
59 + has_version '>=dev-lang/ocaml-4.03.0_beta1' && epatch "${WORKDIR}/${P}-ocaml403.patch"
60 +}
61 +
62 +src_compile() {
63 + cp pkg/META.in pkg/META || die
64 + ocaml pkg/build.ml \
65 + native=$(usex ocamlopt true false) \
66 + native-dynlink=$(usex ocamlopt true false) \
67 + || die
68 + use doc && emake doc
69 +}
70 +
71 +src_test() {
72 + ocamlbuild -j 0 -use-ocamlfind -classic-display \
73 + src_test/test_ppx_deriving.byte -- || die
74 + if use ocamlopt; then
75 + ocamlbuild -j 0 -use-ocamlfind -classic-display \
76 + src_test/test_ppx_deriving.native -- || die
77 + fi
78 +}
79 +
80 +src_install() {
81 + opam-installer -i \
82 + --prefix="${ED}/usr" \
83 + --libdir="${D}/$(ocamlc -where)" \
84 + --docdir="${ED}/usr/share/doc/${PF}" \
85 + ${PN}.install || die
86 + mv "${ED}/usr/lib/ppx_deriving/ppx_deriving" "${D}/$(ocamlc -where)/ppx_deriving/" || die
87 +
88 + use doc && dohtml api.docdir/*
89 +
90 + dodoc CHANGELOG.md README.md
91 +}