Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocamlbuild/
Date: Thu, 04 Feb 2021 12:58:56
Message-Id: 1612443519.85bf3c32b253356b73883f1f4ffecf60ab0ab251.tupone@gentoo
1 commit: 85bf3c32b253356b73883f1f4ffecf60ab0ab251
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 4 12:58:39 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 4 12:58:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85bf3c32
7
8 dev-ml/ocamlbuild: merge 0.14.0 and 0.14.0-r1
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
12
13 dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild | 2 +-
14 dev-ml/ocamlbuild/ocamlbuild-0.14.0.ebuild | 40 ---------------------------
15 2 files changed, 1 insertion(+), 41 deletions(-)
16
17 diff --git a/dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild b/dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild
18 index bf4f3bb4acf..8ec83d02e23 100644
19 --- a/dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild
20 +++ b/dev-ml/ocamlbuild/ocamlbuild-0.14.0-r1.ebuild
21 @@ -9,7 +9,7 @@ SRC_URI="https://github.com/ocaml/ocamlbuild/archive/${PV}.tar.gz -> ${P}.tar.gz
22
23 LICENSE="LGPL-2.1-with-linking-exception"
24 SLOT="0/${PV}"
25 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
26 +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 x86 ~amd64-linux ~x86-linux"
27 IUSE="+ocamlopt test"
28 RESTRICT="!test? ( test )"
29
30
31 diff --git a/dev-ml/ocamlbuild/ocamlbuild-0.14.0.ebuild b/dev-ml/ocamlbuild/ocamlbuild-0.14.0.ebuild
32 deleted file mode 100644
33 index fc4760420dd..00000000000
34 --- a/dev-ml/ocamlbuild/ocamlbuild-0.14.0.ebuild
35 +++ /dev/null
36 @@ -1,40 +0,0 @@
37 -# Copyright 1999-2021 Gentoo Authors
38 -# Distributed under the terms of the GNU General Public License v2
39 -
40 -EAPI=7
41 -
42 -DESCRIPTION="Generic build tool with built-in rules for building OCaml library and programs"
43 -HOMEPAGE="https://github.com/ocaml/ocamlbuild"
44 -SRC_URI="https://github.com/ocaml/ocamlbuild/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="LGPL-2.1-with-linking-exception"
47 -SLOT="0/${PV}"
48 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
49 -IUSE="+ocamlopt test"
50 -RESTRICT="!test? ( test )"
51 -
52 -DEPEND=">=dev-lang/ocaml-4.02.3-r1:=[ocamlopt?]"
53 -RDEPEND="${DEPEND}
54 - !<dev-ml/findlib-1.6.1-r1
55 -"
56 -DEPEND="${DEPEND}
57 - test? ( dev-ml/findlib )"
58 -
59 -PATCHES=(
60 - "${FILESDIR}"/${PN}-0.14.0-Disable-tests-failing-with-OCaml-4.08.0.patch
61 -)
62 -
63 -src_configure() {
64 - emake -f configure.make Makefile.config \
65 - PREFIX="${EPREFIX}/usr" \
66 - BINDIR="${EPREFIX}/usr/bin" \
67 - LIBDIR="$(ocamlc -where)" \
68 - OCAML_NATIVE=$(usex ocamlopt true false) \
69 - OCAML_NATIVE_TOOLS=$(usex ocamlopt true false) \
70 - NATDYNLINK=$(usex ocamlopt true false)
71 -}
72 -
73 -src_install() {
74 - emake CHECK_IF_PREINSTALLED=false DESTDIR="${D}" install
75 - dodoc Changes
76 -}