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/cmdliner/
Date: Wed, 02 Aug 2017 11:23:06
Message-Id: 1501672963.619c830dd742b27198272d760f0da4b213067082.aballier@gentoo
1 commit: 619c830dd742b27198272d760f0da4b213067082
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 2 10:32:40 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 2 11:22:43 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=619c830d
7
8 dev-ml/cmdliner: Remove old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-ml/cmdliner/Manifest | 1 -
13 dev-ml/cmdliner/cmdliner-0.9.8.ebuild | 37 -----------------------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-ml/cmdliner/Manifest b/dev-ml/cmdliner/Manifest
17 index a27331ea4f0..4419ec5028e 100644
18 --- a/dev-ml/cmdliner/Manifest
19 +++ b/dev-ml/cmdliner/Manifest
20 @@ -1,2 +1 @@
21 -DIST cmdliner-0.9.8.tbz 53249 SHA256 7dfaafdd88ec9d96abf8ded4c0ea7111948194400220a56e4bb44a1edfa4bd41 SHA512 6c71c360eaba7f7127e422a71a00a830a086f1d6750897bea0ebc1cc10f8fdaf9e9532d354abd84dbc6c5fcc1878f19d3f424fd9335e7226b625b63b51c89cab WHIRLPOOL 25739c09f78cc8ade6d0e5805f48eb14a6c42f0891832747caef44fc6135c81feaa0055b2874256bde2270753106c60accd50c24771333c2cb16913d9bd38c3d
22 DIST cmdliner-1.0.0.tbz 46542 SHA256 3df9a78a1fa966ba0cfbc4195f0e4dc8d0ff67a4ed23aa1807ef47a0233ed6e7 SHA512 3fc87e49504167864ba4d81fde7bbaa01b7d58b06e2b68b36647857590f41fdc8b3bbd547418f8159b0e76628236b5c30301404b3d8d57e2ff3f082228eee73c WHIRLPOOL 866c6aa188787ec384ea099406e4b82998892ee7513339b0d5f514cc14e98a1f2cd0d8b2b6a852d9b80897aa60f182b75caf35f97d58e98b394f9d1c60fe3de8
23
24 diff --git a/dev-ml/cmdliner/cmdliner-0.9.8.ebuild b/dev-ml/cmdliner/cmdliner-0.9.8.ebuild
25 deleted file mode 100644
26 index f84963e5465..00000000000
27 --- a/dev-ml/cmdliner/cmdliner-0.9.8.ebuild
28 +++ /dev/null
29 @@ -1,37 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit findlib
36 -
37 -DESCRIPTION="Declarative definition of command line interfaces for OCaml"
38 -HOMEPAGE="http://erratique.ch/software/cmdliner"
39 -SRC_URI="http://erratique.ch/software/${PN}/releases/${P}.tbz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0/${PV}"
43 -KEYWORDS="~amd64 ~arm ~ppc"
44 -IUSE="doc +ocamlopt"
45 -
46 -RDEPEND=">=dev-lang/ocaml-4:=[ocamlopt?]"
47 -DEPEND="${RDEPEND}
48 - dev-ml/ocamlbuild"
49 -
50 -src_compile() {
51 - ocaml pkg/build.ml \
52 - native=$(usex ocamlopt true false) \
53 - native-dynlink=$(usex ocamlopt true false) \
54 - || die
55 -}
56 -
57 -src_install() {
58 - # Can't use opam-installer here as it is an opam dep...
59 - findlib_src_preinst
60 - local nativelibs=""
61 - use ocamlopt && nativelibs="$(echo _build/src/cmdliner.cm{x,xa,xs} _build/src/cmdliner.a)"
62 - ocamlfind install cmdliner _build/pkg/META \
63 - _build/src/cmdliner.mli _build/src/cmdliner.cm{a,i} ${nativelibs} || die
64 - dodoc README.md TODO.md CHANGES.md
65 - use doc && dohtml -r doc/
66 -}