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_tools/
Date: Wed, 02 Mar 2016 19:29:18
Message-Id: 1456946946.e8ca40de226e14c45fdcf419237179a598e4d847.aballier@gentoo
1 commit: e8ca40de226e14c45fdcf419237179a598e4d847
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 1 19:45:59 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=e8ca40de
7
8 dev-ml/ppx_tools: bump a snapshot that works with ocaml 4.03
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ml/ppx_tools/Manifest | 1 +
14 dev-ml/ppx_tools/ppx_tools-0.99.3_p20160217.ebuild | 34 ++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/dev-ml/ppx_tools/Manifest b/dev-ml/ppx_tools/Manifest
18 index 96063a1..f48fca0 100644
19 --- a/dev-ml/ppx_tools/Manifest
20 +++ b/dev-ml/ppx_tools/Manifest
21 @@ -1,2 +1,3 @@
22 +DIST ppx_tools-0.99.3_p20160217.tar.gz 16749 SHA256 96c7639f3833a3f4b9b164cfabc8d366a3e7a8407c518207f2d1c7364c2715fd SHA512 b744bfe00704abbf8eb87c08d29ec613c82291f15f12c183a045eb06fddefbd3c6fd8790812ecd382afcf420894f584cd1d2b6f1609229ff6d7a21c9ae8c24a0 WHIRLPOOL a9b6a99ab98a8ae19ed2c79d41f112d7cdc8dd699f13f739019f6281da661c8636ab363fac4277342deb01556c434fd05e6b4c4b7042cbff988aaf932edab375
23 DIST ppx_tools_0.99.2.tar.gz 15877 SHA256 98128022ea0574d769a263eb9b73be06200eec4bac9adb8dc44df289a77c4dec SHA512 1ed8b3a670e233e77988d10c777003384c86c124b8b7e4cec41c0a3e0de280f818b7cbbddc59c49644517899ce0ef022407db6d4aaf29c559abc0788dce11594 WHIRLPOOL f04ecf57ab457ce2ea58b93a50215f49f257597ce4176a4cd3fe8ffb230ab1a898a479d2bbab3df2675b71f7123c556d3a7cd84e8b2263389ea02f3990585924
24 DIST ppx_tools_0.99.3.tar.gz 16258 SHA256 79a9430086231e0a5a863f2aaebf3fb32f1ff0c25ab8cdfd11f53b4ce4550787 SHA512 2b6e4e1168951b5501e930e3de294611ed0652162b8e6a3e5b72d27d602ea4b3cf07bb96dc524347553c30be6d3a7ab5b28ef4d5d69e4de6f6c6e5359e37c32d WHIRLPOOL 0b38432072b25e4c6dafadd5aeac4e19680095c83c2be121f837caeeec8801aa077515e97b94e4c647f05640139d26b4cbfd69e796ba0027ce38009590b04a80
25
26 diff --git a/dev-ml/ppx_tools/ppx_tools-0.99.3_p20160217.ebuild b/dev-ml/ppx_tools/ppx_tools-0.99.3_p20160217.ebuild
27 new file mode 100644
28 index 0000000..520749c
29 --- /dev/null
30 +++ b/dev-ml/ppx_tools/ppx_tools-0.99.3_p20160217.ebuild
31 @@ -0,0 +1,34 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +inherit findlib
39 +
40 +DESCRIPTION="Tools for authors of ppx rewriters"
41 +HOMEPAGE="https://github.com/alainfrisch/ppx_tools"
42 +# This is the version used by opam.
43 +# Needed by eliom-5[ppx]
44 +#SRC_URI="http://github.com/diml/ppx_tools/archive/${PN}_${PV}.tar.gz"
45 +#SRC_URI="https://github.com/alainfrisch/ppx_tools/archive/${PN}_${PV}.tar.gz"
46 +SRC_URI="mirror://gentoo/${P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +SLOT="0/${PV}"
50 +KEYWORDS="~amd64"
51 +IUSE=""
52 +
53 +DEPEND=">=dev-lang/ocaml-4.03_beta:="
54 +RDEPEND="${DEPEND}"
55 +
56 +#S="${WORKDIR}/${PN}-${PN}_${PV}"
57 +
58 +src_compile() {
59 + emake -j1
60 +}
61 +
62 +src_install() {
63 + findlib_src_install
64 + dodoc README.md
65 +}