Gentoo Archives: gentoo-dev

From: Florian Schmaus <flow@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] [PATCH] rebar.eclass: depend on slotted rebar2
Date: Sun, 10 Apr 2022 13:38:09
Message-Id: c6bb8368-bcf0-786c-ee0f-66eab09ff42a@gentoo.org
In Reply to: [gentoo-dev] [PATCH] rebar.eclass: depend on slotted rebar2 by Matthew Smith
1 On 10/04/2022 15.33, Matthew Smith wrote:
2 > Depend on the Rebar 2 slot in preparation for the addition of rebar:3.
3 >
4 > Signed-off-by: Matthew Smith <matthew@g.o>
5 > ---
6 >  eclass/rebar.eclass | 4 ++--
7 >  1 file changed, 2 insertions(+), 2 deletions(-)
8 >
9 > diff --git a/eclass/rebar.eclass b/eclass/rebar.eclass
10 > index 17ae8e0d765..e7a64bb7a7e 100644
11 > --- a/eclass/rebar.eclass
12 > +++ b/eclass/rebar.eclass
13 > @@ -1,4 +1,4 @@
14 > -# Copyright 1999-2021 Gentoo Authors
15 > +# Copyright 1999-2022 Gentoo Authors
16 >  # Distributed under the terms of the GNU General Public License v2
17 >
18 >  # @ECLASS: rebar.eclass
19 > @@ -35,7 +35,7 @@ EXPORT_FUNCTIONS src_prepare src_compile src_test
20 > src_install
21 >  RDEPEND="dev-lang/erlang:="
22 >  DEPEND="${RDEPEND}"
23 >  BDEPEND="
24 > -    dev-util/rebar
25 > +    dev-util/rebar:0
26 >      >=sys-apps/gawk-4.1
27 >  "
28 >  if [[ ${EAPI} == 6 ]]; then
29
30 lgtm
31
32 - Flow