Gentoo Archives: gentoo-dev

From: Sam James <sam@g.o>
To: gentoo-dev@l.g.o
Cc: kde@g.o
Subject: Re: [gentoo-dev] [PATCH] cmake.eclass: support EAPI 8
Date: Mon, 16 Aug 2021 20:48:21
Message-Id: 579152EE-0AA3-41CD-BCE1-AD9E868D67FD@gentoo.org
In Reply to: [gentoo-dev] [PATCH] cmake.eclass: support EAPI 8 by Marek Szuba
1 See https://bugs.gentoo.org/802786 and https://github.com/gentoo/kde/pull/903. There's some work to be done first.
2
3 > On 16 Aug 2021, at 17:43, Marek Szuba <marecki@g.o> wrote:
4 >
5 > Signed-off-by: Marek Szuba <marecki@g.o>
6 > ---
7 > eclass/cmake.eclass | 4 ++--
8 > 1 file changed, 2 insertions(+), 2 deletions(-)
9 >
10 > diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass
11 > index 4bd09459ea6..52bf65a463d 100644
12 > --- a/eclass/cmake.eclass
13 > +++ b/eclass/cmake.eclass
14 > @@ -9,7 +9,7 @@
15 > # Maciej Mrozowski <reavertm@g.o>
16 > # (undisclosed contributors)
17 > # Original author: Zephyrus (zephyrus@××××××.it)
18 > -# @SUPPORTED_EAPIS: 7
19 > +# @SUPPORTED_EAPIS: 7 8
20 > # @BLURB: common ebuild functions for cmake-based packages
21 > # @DESCRIPTION:
22 > # The cmake eclass makes creating ebuilds for cmake-based packages much easier.
23 > @@ -98,7 +98,7 @@ _CMAKE_ECLASS=1
24 > # Helps in improving QA of build systems that write to source tree.
25 >
26 > case ${EAPI} in
27 > - 7) ;;
28 > + 7|8) ;;
29 > *) die "EAPI=${EAPI:-0} is not supported" ;;
30 > esac
31 >
32 > --
33 > 2.31.1
34 >
35 >

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-dev] [PATCH] cmake.eclass: support EAPI 8 Marek Szuba <marecki@g.o>