Gentoo Archives: gentoo-dev

From: "Hanno Böck" <hanno@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] [PATCH] rebar.eclass: Use := dependency
Date: Sat, 25 Apr 2020 08:01:52
Message-Id: 20200425100150.13b37066@computer
1 All erlang rebar based packages should be rebuilt after a subslot
2 update of dev-lang/erlang.
3
4 Right now this is done in some ebuilds, but inconsistent.
5 Given this affects all packages this should be reflected in the
6 rebar.eclass, see also [1].
7
8 [1] https://bugs.gentoo.org/714702
9
10 Closes: https://bugs.gentoo.org/714702
11 Signed-off-by: Hanno Böck <hanno@g.o>
12 ---
13
14 diff --git a/eclass/rebar.eclass b/eclass/rebar.eclass
15 index f2a620fd8..92dd16b08 100644
16 --- a/eclass/rebar.eclass
17 +++ b/eclass/rebar.eclass
18 @@ -32,7 +32,7 @@ esac
19
20 EXPORT_FUNCTIONS src_prepare src_compile src_test src_install
21
22 -RDEPEND="dev-lang/erlang"
23 +RDEPEND="dev-lang/erlang:="
24 DEPEND="${RDEPEND}
25 dev-util/rebar
26 >=sys-apps/gawk-4.1"
27
28 --
29 Hanno Böck
30 https://hboeck.de/

Replies

Subject Author
Re: [gentoo-dev] [PATCH] rebar.eclass: Use := dependency Sergei Trofimovich <slyfox@g.o>