Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cl/
Date: Sun, 09 Jan 2022 19:11:31
Message-Id: 1641755468.1a5b8c987b4d399bbc40d7f4e2ffd8a3da45a12a.asturm@gentoo
1 commit: 1a5b8c987b4d399bbc40d7f4e2ffd8a3da45a12a
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 9 19:09:23 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 9 19:11:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5b8c98
7
8 dev-libs/cl: Drop 1.2.4 (r0)
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/cl/cl-1.2.4.ebuild | 33 ---------------------------------
14 1 file changed, 33 deletions(-)
15
16 diff --git a/dev-libs/cl/cl-1.2.4.ebuild b/dev-libs/cl/cl-1.2.4.ebuild
17 deleted file mode 100644
18 index 7f303904f45f..000000000000
19 --- a/dev-libs/cl/cl-1.2.4.ebuild
20 +++ /dev/null
21 @@ -1,33 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit multilib
27 -
28 -DESCRIPTION="OpenCL bindings for Erlang"
29 -HOMEPAGE="https://github.com/tonyrog/cl"
30 -SRC_URI="https://github.com/tonyrog/cl/archive/${P}.tar.gz"
31 -
32 -LICENSE="MIT"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86"
35 -
36 -RDEPEND="
37 - >=dev-lang/erlang-16
38 - virtual/opencl
39 - dev-util/rebar
40 -"
41 -DEPEND="${RDEPEND}"
42 -
43 -S=${WORKDIR}/${PN}-${P}
44 -
45 -src_compile() {
46 - rebar compile || die
47 -}
48 -
49 -src_install() {
50 - ERLANG_DIR="/usr/$(get_libdir)/erlang/lib"
51 - CL_DIR="${ERLANG_DIR}/${P}"
52 - insinto "${CL_DIR}"
53 - doins -r ebin src include c_src examples
54 -}