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