Gentoo Archives: gentoo-dev

From: Marek Szuba <marecki@g.o>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] [PATCH] depend.apache.eclass: support EAPI-7
Date: Tue, 03 Nov 2020 16:26:23
Message-Id: 20201103162551.173434-2-marecki@gentoo.org
In Reply to: [gentoo-dev] [PATCH 0/1] depend.apache.eclass: support EAPI-7 by Marek Szuba
1 Signed-off-by: Marek Szuba <marecki@g.o>
2 ---
3 eclass/depend.apache.eclass | 6 +++---
4 1 file changed, 3 insertions(+), 3 deletions(-)
5
6 diff --git a/eclass/depend.apache.eclass b/eclass/depend.apache.eclass
7 index 79bfdcc493f..5aa55254268 100644
8 --- a/eclass/depend.apache.eclass
9 +++ b/eclass/depend.apache.eclass
10 @@ -1,10 +1,10 @@
11 -# Copyright 1999-2012 Gentoo Foundation
12 +# Copyright 1999-2020 Gentoo Authors
13 # Distributed under the terms of the GNU General Public License v2
14
15 # @ECLASS: depend.apache.eclass
16 # @MAINTAINER:
17 # apache-devs@g.o
18 -# @SUPPORTED_EAPIS: 0 2 3 4 5 6
19 +# @SUPPORTED_EAPIS: 0 2 3 4 5 6 7
20 # @BLURB: Functions to allow ebuilds to depend on apache
21 # @DESCRIPTION:
22 # This eclass handles depending on apache in a sane way and provides information
23 @@ -44,7 +44,7 @@ case ${EAPI:-0} in
24 0|2|3|4|5)
25 inherit multilib
26 ;;
27 - 6)
28 + 6|7)
29 ;;
30 *)
31 die "EAPI=${EAPI} is not supported by depend.apache.eclass"
32 --
33 2.26.2

Replies

Subject Author
Re: [gentoo-dev] [PATCH] depend.apache.eclass: support EAPI-7 Pacho Ramos <pacho@g.o>