diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-09-25 20:21:45 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-09-25 20:21:45 +0100 |
commit | c719fdcee603a5a706a45d10cb598762d56a727d (patch) | |
tree | 620cbf137661399a3fb1eff92914204f9a970713 /dev-util/rebar-bin | |
parent | cc4618c9ba3d974948ebf340b542d8cb01db2f55 (diff) |
gentoo resync : 25.09.2021
Diffstat (limited to 'dev-util/rebar-bin')
-rw-r--r-- | dev-util/rebar-bin/Manifest | 2 | ||||
-rw-r--r-- | dev-util/rebar-bin/rebar-bin-3.17.0.ebuild | 21 |
2 files changed, 23 insertions, 0 deletions
diff --git a/dev-util/rebar-bin/Manifest b/dev-util/rebar-bin/Manifest index 9045872d6340..086a0dc58150 100644 --- a/dev-util/rebar-bin/Manifest +++ b/dev-util/rebar-bin/Manifest @@ -1,3 +1,5 @@ DIST rebar-bin-3.16.1 942316 BLAKE2B c3296d54f85c146a58ff24a9b337f7d26e2beb3287257ecca6344c082b84295d9daf042b7bcb422df7c5dd29dd681f0c81064c1ef5b7b30ed8be8328ca694bc4 SHA512 be9e4ffdf654f8038ff14cd4b53328bdbc8b26e0f1306a16220f4d5d4b13bc36ac2f302d52a799424ffc3835e41ce326a4fd8e422ececf70ab8c0f951e3e4b24 +DIST rebar-bin-3.17.0 944741 BLAKE2B 2ae670b36019afcc6e595bcbb7d9db7286bd0ea44ad095e7bd0b45be579f6b45d0cc4bbb11478e13adbeb68231f3a888ff231ca4ee4881cb30a26dd68eb8b60e SHA512 908ed9018e456cb4a8f6c9b2737ead58f632bbcac4960834de841b814a97f8fac2181b8630e2ae9e8e9680c4965488b2a736c54baa561a089489987615f6405e EBUILD rebar-bin-3.16.1.ebuild 610 BLAKE2B f8b801213ff3d41987f7b54747d200ccab01f11e21be2a8fc540a5a3b6da7976f5c767d5b1752ac0328834f34c187719e501e5ab9ad841fbc34147a834c2a2a5 SHA512 6d794157feffbc22160e67569a536073711412d81c34af0f429496940e0c9c55098c92742b65bb43bdee326fd2defa730073a359801885e67328f43a69bf4bdb +EBUILD rebar-bin-3.17.0.ebuild 525 BLAKE2B adecfbeb588afea1b54aa68edfc0d573fde5149db29509721bb84794256a8d158168d56ba18c5afcd393a034c3bbd650434df42433b9f02de679367349fe8e68 SHA512 b21a60e136183af5a5be1b4201942de79ca0bec6d383d6d06af56108bba7626d351fb2eb08bf06003bc4365b3393bf82299812496b206dac1452a65dfdb2dd21 MISC metadata.xml 1187 BLAKE2B eda5aa3b730fd7b60fb73d0e8aa3fff5e1d67996cb7abebfdd4de568eae0c02fa6a9a1980a1e1d85a6f0581f26d8f8d94b25b5a486489457e6b7319120dcd1ea SHA512 6f86d6ed8df338c5c2807c9ff4a8f2fbb2f68f4ef1f139a97e4712c5365cdbb686f117a18b3abc87f54273eace33a9863c34b7c3765597cb39da4e413d6264f1 diff --git a/dev-util/rebar-bin/rebar-bin-3.17.0.ebuild b/dev-util/rebar-bin/rebar-bin-3.17.0.ebuild new file mode 100644 index 000000000000..46ed763d7724 --- /dev/null +++ b/dev-util/rebar-bin/rebar-bin-3.17.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A sophisticated build-tool for Erlang projects that follows OTP principles" +HOMEPAGE="https://rebar3.org https://github.com/erlang/rebar3" +SRC_URI="https://github.com/erlang/rebar3/releases/download/${PV}/rebar3 -> ${P}" +S="${WORKDIR}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-lang/erlang" + +QA_PREBUILT="usr/bin/rebar3" + +src_install() { + newbin "${DISTDIR}"/${P} rebar3 +} |