logo

overlay

My own overlay for experimentations, use with caution, no support is provided git clone https://hacktivis.me/git/overlay.git
commit: 95ac77d10805467288f238e4e1551b08579f4197
parent 03d9f7060ab7918775829c415a7eb2d1114f6fa1
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue,  5 Jan 2021 16:24:04 +0100

dev-util/rebar: Bump, 3.14.2

Diffstat:

Mdev-util/rebar/Manifest2+-
Ddev-util/rebar/rebar-3.11.1.ebuild37-------------------------------------
Adev-util/rebar/rebar-3.14.2.ebuild36++++++++++++++++++++++++++++++++++++
3 files changed, 37 insertions(+), 38 deletions(-)

diff --git a/dev-util/rebar/Manifest b/dev-util/rebar/Manifest @@ -1 +1 @@ -DIST rebar-3.11.1.tar.gz 375468 BLAKE2B a12d2978bb4b70766057cdf2d39bc69774547b0b5186855ad06b7b33c8324ce9652d4df9ef31827836ca88a40396ba748b6f98bb70dd5eba16cdb73412a5647c SHA512 749368c8c19641d0c1083f1750438cfc5f1c75e284bd74b4f8ae368103e79a376f4bd91e85db35e1619116cd2f3b1a8dc2d3d89db19da8f4440e0b58d3c0a37c +DIST rebar-3.14.2.tar.gz 425600 BLAKE2B 1ab3509de275a770371b34b692418133d4af280f2d951cbf12f25b379b4a251280b4108dc0129710c6fa24b2afdafc73d19fda3c721adfe6232b9a679dd80bab SHA512 0a42234cf79128263fc8426a19e7d15b06b697db1b635952f81ed1d3bc6a6b23df07cb7074d8364055f822886a7b1825dcb3a9b5506e3d2868c05d58c0eb4cf1 diff --git a/dev-util/rebar/rebar-3.11.1.ebuild b/dev-util/rebar/rebar-3.11.1.ebuild @@ -1,37 +0,0 @@ -# Copyright 2019 Haelwenn (lanodan) Monnier <contact@hacktivis.me> -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit bash-completion-r1 rebar3 - -DESCRIPTION="Sophisticated build-tool for Erlang projects that follows OTP principles" -HOMEPAGE="https://www.rebar3.org/" -LICENSE="Apache-2.0" -SRC_URI="https://github.com/erlang/rebar3/archive/3.11.1.tar.gz -> ${P}.tar.gz" -SLOT="3" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" -RESTRICT="network-sandbox" - -DEPEND="dev-lang/erlang" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}3-${PV}" - -src_compile() { - ./bootstrap || die -} - -src_test() { - ./rebar3 ct || die -} - -src_install() { - rebar3_src_install - - dobin rebar3 - doman manpages/rebar3.1 - dodoc rebar.config.sample - dobashcomp priv/shell-completion/bash/rebar3 -} diff --git a/dev-util/rebar/rebar-3.14.2.ebuild b/dev-util/rebar/rebar-3.14.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 2019 Haelwenn (lanodan) Monnier <contact@hacktivis.me> +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit bash-completion-r1 rebar3 + +DESCRIPTION="Erlang build tool that makes it easy to compile and test Erlang applications and releases" +HOMEPAGE="https://www.rebar3.org/" +LICENSE="Apache-2.0" +SRC_URI="https://github.com/erlang/rebar3/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}3-${PV}" +SLOT="3" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" +RESTRICT="network-sandbox" + +DEPEND="dev-lang/erlang" +RDEPEND="${DEPEND}" + +src_compile() { + ./bootstrap || die +} + +src_test() { + ./rebar3 ct || die +} + +src_install() { + rebar3_src_install + + dobin rebar3 + doman manpages/rebar3.1 + dodoc rebar.config.sample + dobashcomp priv/shell-completion/bash/rebar3 +}