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-hashcons/
Date: Tue, 24 Jan 2017 11:23:17
Message-Id: 1485256605.9bd10bd3cb45d6d34dcb9986abcc35b3d547185a.aballier@gentoo
1 commit: 9bd10bd3cb45d6d34dcb9986abcc35b3d547185a
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 24 11:16:45 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 24 11:16:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd10bd3
7
8 dev-ml/ocaml-hashcons: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ml/ocaml-hashcons/Manifest | 1 -
13 dev-ml/ocaml-hashcons/ocaml-hashcons-1.0.ebuild | 38 -------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-ml/ocaml-hashcons/Manifest b/dev-ml/ocaml-hashcons/Manifest
17 index a6c312a..3a72ad9 100644
18 --- a/dev-ml/ocaml-hashcons/Manifest
19 +++ b/dev-ml/ocaml-hashcons/Manifest
20 @@ -1,2 +1 @@
21 -DIST ocaml-hashcons-1.0.tar.gz 19624 SHA256 b32d9f9fb933708e9ab51184bb9d6a1523cea0d775a66c78161f30f5d7365cf3 SHA512 58afc7f65920f4e31884ecd7e7538dd86b2a7a7f4f449cae098d510ac0446fcb663bf29fbbb4a2c44ad0e6d93d83901d1af1b81d0f8770530a77e8d127dd5186 WHIRLPOOL 6e412db459c815469d02867c93a516d3b7633a16001688c6818c8a281fc64a5f819f5020adfff569ff37d23b005acfb48a1b2c94727d3121e4f40151c41c9812
22 DIST ocaml-hashcons-1.2.tar.gz 19775 SHA256 de48e8e3e19b8cf84fb4d8d2484f0bb44dc6ced160b0d22b74d4de7236c821bb SHA512 167ed8d74c5080ef14af0ac1232ea16faee3f0e09e0a65cd72447266939ce7ed5416f4cf6a3021e5ca8215726df129d3f05c9e0c12dcd36f845b060fd93072b2 WHIRLPOOL 4d89bbf99826dbc1e5d8e46f03d71357b0b6c6b71ba76f9b7a8dcaa4906b976c4edd30407d0d1cb183e9cb5ef8b11f412fee98beb8eb1d4a6113cc9650eea0a3
23
24 diff --git a/dev-ml/ocaml-hashcons/ocaml-hashcons-1.0.ebuild b/dev-ml/ocaml-hashcons/ocaml-hashcons-1.0.ebuild
25 deleted file mode 100644
26 index fbc814e..00000000
27 --- a/dev-ml/ocaml-hashcons/ocaml-hashcons-1.0.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -inherit autotools findlib
37 -
38 -DESCRIPTION="OCaml hash-consing library"
39 -HOMEPAGE="https://github.com/backtracking/ocaml-hashcons"
40 -SRC_URI="https://github.com/backtracking/ocaml-hashcons/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2.1-with-linking-exception"
43 -SLOT="0/${PV}"
44 -KEYWORDS="~amd64"
45 -IUSE="+ocamlopt"
46 -
47 -RDEPEND="dev-lang/ocaml:=[ocamlopt?]"
48 -DEPEND="${RDEPEND}"
49 -
50 -src_prepare() {
51 - eautoreconf
52 - sed -i -e 's/$(OCAMLFIND) remove/#/' Makefile.in || die
53 -}
54 -
55 -src_compile() {
56 - if use ocamlopt; then
57 - emake opt byte
58 - else
59 - emake byte
60 - fi
61 -}
62 -
63 -src_install() {
64 - dodir "$(ocamlfind printconf destdir)/hashcons"
65 - emake DESTDIR="-destdir ${D}/$(ocamlfind printconf destdir)/" $(usex ocamlopt install-opt install-byte)
66 - dodoc README.md CHANGES
67 -}