Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rebar-bin/
Date: Tue, 25 May 2021 11:12:47
Message-Id: 1621941155.ac2512786881302c1e98643515c2c7094cb3cec8.juippis@gentoo
1 commit: ac2512786881302c1e98643515c2c7094cb3cec8
2 Author: Matt Smith <matt <AT> offtopica <DOT> uk>
3 AuthorDate: Wed May 19 06:47:26 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue May 25 11:12:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac251278
7
8 dev-util/rebar-bin: Bump to 3.16.1
9
10 Bug: https://bugs.gentoo.org/791862
11 Package-Manager: Portage-3.0.18, Repoman-3.0.3
12 Signed-off-by: Matt Smith <matt <AT> offtopica.uk>
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 dev-util/rebar-bin/Manifest | 1 +
16 dev-util/rebar-bin/rebar-bin-3.16.1.ebuild | 30 ++++++++++++++++++++++++++++++
17 2 files changed, 31 insertions(+)
18
19 diff --git a/dev-util/rebar-bin/Manifest b/dev-util/rebar-bin/Manifest
20 index 2b40f7d9069..4a8751cfb49 100644
21 --- a/dev-util/rebar-bin/Manifest
22 +++ b/dev-util/rebar-bin/Manifest
23 @@ -1 +1,2 @@
24 DIST rebar-bin-3.15.1 951017 BLAKE2B b9c71729397678ace6b9988dc3bbcf3685a9c832298f66ac8b758f515c7c4f0e24b5bebaea93fa7f2f1b1fd88cebd7581c6e2c7e6efc08b5138225b1a02700d8 SHA512 3dd66d3e35b4431a9cc565a20ebdad9732df6e673b818236be5be377279b179ddf12c953268b0d6edf5f0c45253b4e5a0b192904f1c606354dbed2ae86fb2403
25 +DIST rebar-bin-3.16.1 942316 BLAKE2B c3296d54f85c146a58ff24a9b337f7d26e2beb3287257ecca6344c082b84295d9daf042b7bcb422df7c5dd29dd681f0c81064c1ef5b7b30ed8be8328ca694bc4 SHA512 be9e4ffdf654f8038ff14cd4b53328bdbc8b26e0f1306a16220f4d5d4b13bc36ac2f302d52a799424ffc3835e41ce326a4fd8e422ececf70ab8c0f951e3e4b24
26
27 diff --git a/dev-util/rebar-bin/rebar-bin-3.16.1.ebuild b/dev-util/rebar-bin/rebar-bin-3.16.1.ebuild
28 new file mode 100644
29 index 00000000000..83bb5eb671c
30 --- /dev/null
31 +++ b/dev-util/rebar-bin/rebar-bin-3.16.1.ebuild
32 @@ -0,0 +1,30 @@
33 +# Copyright 1999-2021 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +MY_PN=${P#-bin}
39 +MY_P=${MY_PN}-${PV}
40 +
41 +DESCRIPTION="A sophisticated build-tool for Erlang projects that follows OTP principles"
42 +HOMEPAGE="https://rebar3.org https://github.com/erlang/rebar3"
43 +
44 +SRC_URI="https://github.com/erlang/rebar3/releases/download/${PV}/rebar3 -> ${P}"
45 +
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +RDEPEND="dev-lang/erlang"
51 +
52 +S="${WORKDIR}"
53 +
54 +QA_PREBUILT="/usr/bin/rebar3"
55 +
56 +src_unpack() {
57 + cp -v "${DISTDIR}/${P}" "${S}/rebar3" || die
58 +}
59 +
60 +src_install() {
61 + dobin rebar3
62 +}