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