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/cppo/
Date: Mon, 21 Sep 2015 09:41:35
Message-Id: 1442828034.0a8c118782740a02f08180b963834f2316147daa.aballier@gentoo
1 commit: 0a8c118782740a02f08180b963834f2316147daa
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 21 09:08:15 2015 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 21 09:33:54 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8c1187
7
8 dev-ml/cppo: bump to 1.3.1.
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-ml/cppo/Manifest | 1 +
13 dev-ml/cppo/cppo-1.3.1.ebuild | 31 +++++++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/dev-ml/cppo/Manifest b/dev-ml/cppo/Manifest
17 index c4da34e..9acf374 100644
18 --- a/dev-ml/cppo/Manifest
19 +++ b/dev-ml/cppo/Manifest
20 @@ -1 +1,2 @@
21 DIST cppo-1.3.0.tar.gz 26012 SHA256 042180a1c4c0d141025685977ac866c5c26505b2913c4cb1fdc2affa4fd21d7e SHA512 cbed2323b3458fd793df6d945e9f4dcd9ede61ad1df566d83027079f6abdd0c505bb03c3cc3f1dccf841afa8cd30052bfa0eab756e338b4c487c7a11413c7527 WHIRLPOOL dc726c557edc34f3c96d7f3d1973b237719ec3011734776176b3908fb21576a8301bb0497668eb7a839dd647b4f12403147d89f90f30660997630a7396c595be
22 +DIST cppo-1.3.1.tar.gz 26259 SHA256 2e3e658b0ba24d7217c59e76df3e92d4e03866143da8d206b3267cebccfefc69 SHA512 0e5180ce21bb605733ca4bfd64f1917ccb8772f6d078a23d39710b4dc1c5ede32dcaa3bd30116f17683c4040a7cfc41a4ca541e9c973265ec1dd988e2ec67238 WHIRLPOOL 37cc6699aaabd2642b55e00d3c55bfe442c978eb540889ee396ebecd5e5343e45b7e4322cff65e5add8ea3cf18f379d1d7632389742bac1f30b7cfa67c5af172
23
24 diff --git a/dev-ml/cppo/cppo-1.3.1.ebuild b/dev-ml/cppo/cppo-1.3.1.ebuild
25 new file mode 100644
26 index 0000000..2ff1f6d
27 --- /dev/null
28 +++ b/dev-ml/cppo/cppo-1.3.1.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2014 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI="5"
35 +
36 +inherit findlib
37 +
38 +DESCRIPTION="An equivalent of the C preprocessor for OCaml programs"
39 +HOMEPAGE="http://mjambon.com/cppo.html"
40 +SRC_URI="https://github.com/mjambon/cppo/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +SLOT="0"
43 +LICENSE="BSD"
44 +KEYWORDS="~amd64"
45 +
46 +IUSE="examples"
47 +
48 +RDEPEND=">=dev-lang/ocaml-3.12:="
49 +DEPEND="${RDEPEND}"
50 +
51 +src_install() {
52 + findlib_src_preinst
53 + mkdir -p "${ED}"/usr/bin
54 + emake PREFIX="${ED}"/usr install
55 + dodoc README.md Changes
56 + if use examples ; then
57 + dodoc -r examples
58 + docompress -x /usr/share/doc/${PF}/examples
59 + fi
60 +}