Gentoo Archives: gentoo-dev

From: David Seifert <soap@g.o>
To: gentoo-dev@l.g.o
Cc: David Seifert <soap@g.o>
Subject: [gentoo-dev] [PATCH 2/2] opam.eclass: add EAPI 8
Date: Sun, 24 Jul 2022 21:07:29
Message-Id: 20220724210659.5947-2-soap@gentoo.org
In Reply to: [gentoo-dev] [PATCH 1/2] opam.eclass: remove EAPI 5 and 6 by David Seifert
1 Signed-off-by: David Seifert <soap@g.o>
2 ---
3 eclass/opam.eclass | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/eclass/opam.eclass b/eclass/opam.eclass
7 index b667bf31f15..197c3256f01 100644
8 --- a/eclass/opam.eclass
9 +++ b/eclass/opam.eclass
10 @@ -7,14 +7,14 @@
11 # ML <ml@g.o>
12 # @AUTHOR:
13 # Alexis Ballier <aballier@g.o>
14 -# @SUPPORTED_EAPIS: 7
15 +# @SUPPORTED_EAPIS: 7 8
16 # @BLURB: Provides functions for installing opam packages.
17 # @DESCRIPTION:
18 # Provides dependencies on opam and ocaml, opam-install and a default
19 # src_install for opam-based packages.
20
21 case ${EAPI} in
22 - 7) ;;
23 + 7|8) ;;
24 *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
25 esac
26
27 --
28 2.35.1