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/camlzip/
Date: Mon, 05 Sep 2016 12:12:51
Message-Id: 1473077559.48d6b8383c1261fb6c1b3d15fbe311eb4b14f865.aballier@gentoo
1 commit: 48d6b8383c1261fb6c1b3d15fbe311eb4b14f865
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 5 12:12:34 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 5 12:12:39 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d6b838
7
8 dev-ml/camlzip: bump to 1.06
9
10 Package-Manager: portage-2.3.0
11
12 dev-ml/camlzip/Manifest | 1 +
13 dev-ml/camlzip/camlzip-1.06.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-ml/camlzip/Manifest b/dev-ml/camlzip/Manifest
17 index bb47bb4..2ba048a 100644
18 --- a/dev-ml/camlzip/Manifest
19 +++ b/dev-ml/camlzip/Manifest
20 @@ -1 +1,2 @@
21 DIST camlzip-1.05.tar.gz 25817 SHA256 930b70c736ab5a7ed1b05220102310a0a2241564786657abe418e834a538d06b SHA512 5128243fc7528e5ec6cbb7d9b121e8cb0b6d486a95a82161cd74cafe05454602c9952ed6fee3d38a53614e5ecdc20ef88437681107c5952bf85b8f8c78bf042d WHIRLPOOL 26d2bf8d08a425b2297a913ec140fdfff78a31eb9a09e3641b38face44994c2f322354fddd9b96c003df74479e3d40dd12b5d9243160eeadd466b66e896b1acd
22 +DIST camlzip-1.06.tar.gz 26499 SHA256 c83877f9972943e6f2e147cf9715a785da2fc8531e7bed3ab4787043b8f4cf54 SHA512 5ef0172927106589620678897f12f054533503a5cf13df71bf4deda43f223d0cd6acce118977e87bce53afe289f367b851f192a8e693274c2bd13549121019dd WHIRLPOOL a83ad24836d64adc00324f44ce5f3877c8d912afe14dcb0ad5b8788a52dfe777b2b582e240e74ed24bda950ca0202505792e62f9c205f0a5f39c33918e70217a
23
24 diff --git a/dev-ml/camlzip/camlzip-1.06.ebuild b/dev-ml/camlzip/camlzip-1.06.ebuild
25 new file mode 100644
26 index 00000000..750167f
27 --- /dev/null
28 +++ b/dev-ml/camlzip/camlzip-1.06.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI="5"
35 +
36 +inherit findlib eutils
37 +
38 +IUSE="+ocamlopt"
39 +
40 +DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
41 +HOMEPAGE="http://forge.ocamlcore.org/projects/camlzip/"
42 +SRC_URI="http://forge.ocamlcore.org/frs/download.php/1616/${P}.tar.gz"
43 +
44 +SLOT="1/${PV}"
45 +LICENSE="LGPL-2.1"
46 +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
47 +
48 +RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
49 + >=sys-libs/zlib-1.1.3"
50 +DEPEND="${RDEPEND}"
51 +
52 +src_compile() {
53 + emake all
54 + if use ocamlopt; then
55 + emake allopt
56 + fi
57 +}
58 +
59 +src_install() {
60 + findlib_src_preinst
61 + emake DESTDIR="${D}" install-findlib
62 +
63 + dodoc README Changes
64 +}