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/ocaml-containers/files/, dev-ml/ocaml-containers/
Date: Tue, 24 Jan 2017 11:15:02
Message-Id: 1485256456.83315eba145df907dde535652e5df848a44dc15e.aballier@gentoo
1 commit: 83315eba145df907dde535652e5df848a44dc15e
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 24 11:10:44 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 24 11:14:16 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83315eba
7
8 dev-ml/ocaml-containers: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ml/ocaml-containers/Manifest | 1 -
13 dev-ml/ocaml-containers/files/seq.patch | 13 --------
14 .../ocaml-containers/ocaml-containers-0.22.ebuild | 35 ----------------------
15 3 files changed, 49 deletions(-)
16
17 diff --git a/dev-ml/ocaml-containers/Manifest b/dev-ml/ocaml-containers/Manifest
18 index 77b4f9f..5fd1cfc 100644
19 --- a/dev-ml/ocaml-containers/Manifest
20 +++ b/dev-ml/ocaml-containers/Manifest
21 @@ -1,2 +1 @@
22 DIST ocaml-containers-0.22.1.tar.gz 429672 SHA256 2ef64e8ed93211dfd4f8cd594943db3cde81ee0400b17703d8a7993128634622 SHA512 9294d43485cd17998f9d0c758ee0ffdc187ea78f1f456c0b06a57a9401c6de529e9e68bad12908b2b0da5f22fca64835acb90f3dfd6ee3403bb7c3c301cd6821 WHIRLPOOL 67844578447b321439223b5f560258cb5d5417135dfdbfdaf2fa10e104beb764e9ca6ae0ab774864c974d928e75aa5aedc7e90ea5659d910f33349a7ec4b568b
23 -DIST ocaml-containers-0.22.tar.gz 429678 SHA256 883e64a6b2275355086521a67d5fe0e436bbf79f54c8fb068a05ab3cf3408e98 SHA512 1454f8bcd11d02a9efd2fe223e2db591d2e1d66df6877af920b4d8a2cc3a2c6b34b0979069015565618700dfb4a74d6a8f2d8cd8f9fc6fa7888331320ea41c46 WHIRLPOOL f5993d629fe2a803b1284cd5794f3345060215cf16bb97347dd2173b7015735ddcd43b98c3b5ccf365d372ffedf77892e862fbc276b24468699a95492dc784e7
24
25 diff --git a/dev-ml/ocaml-containers/files/seq.patch b/dev-ml/ocaml-containers/files/seq.patch
26 deleted file mode 100644
27 index 2ba116e..00000000
28 --- a/dev-ml/ocaml-containers/files/seq.patch
29 +++ /dev/null
30 @@ -1,13 +0,0 @@
31 -Index: ocaml-containers-0.22/src/advanced/CCLinq.ml
32 -===================================================================
33 ---- ocaml-containers-0.22.orig/src/advanced/CCLinq.ml
34 -+++ ocaml-containers-0.22/src/advanced/CCLinq.ml
35 -@@ -212,7 +212,7 @@ module PMap = struct
36 - seq
37 -
38 - let flatten_l m =
39 -- let seq = Sequence.flatMap
40 -+ let seq = Sequence.flat_map
41 - (fun (k,v) -> Sequence.map (fun v' -> k,v') (Sequence.of_list v))
42 - m.to_seq
43 - in
44
45 diff --git a/dev-ml/ocaml-containers/ocaml-containers-0.22.ebuild b/dev-ml/ocaml-containers/ocaml-containers-0.22.ebuild
46 deleted file mode 100644
47 index 29bae80..00000000
48 --- a/dev-ml/ocaml-containers/ocaml-containers-0.22.ebuild
49 +++ /dev/null
50 @@ -1,35 +0,0 @@
51 -# Copyright 1999-2016 Gentoo Foundation
52 -# Distributed under the terms of the GNU General Public License v2
53 -# $Id$
54 -
55 -EAPI=5
56 -
57 -OASIS_BUILD_TESTS=1
58 -OASIS_BUILD_DOCS=1
59 -
60 -inherit oasis
61 -
62 -DESCRIPTION="A modular standard library focused on data structures"
63 -HOMEPAGE="https://github.com/c-cube/ocaml-containers"
64 -SRC_URI="https://github.com/c-cube/ocaml-containers/archive/${PV}.tar.gz -> ${P}.tar.gz"
65 -
66 -LICENSE="BSD-2"
67 -SLOT="0/${PV}"
68 -KEYWORDS="~amd64"
69 -IUSE="test"
70 -
71 -RDEPEND="
72 - dev-ml/result:=
73 - >=dev-ml/sequence-0.9:=
74 -"
75 -DEPEND="${RDEPEND} dev-ml/cppo
76 - test? ( dev-ml/iTeML )"
77 -
78 -PATCHES=( "${FILESDIR}/seq.patch" )
79 -
80 -src_configure() {
81 - oasis_configure_opts="
82 - --enable-unix
83 - --disable-bench
84 - " oasis_src_configure
85 -}