diff options
author | David Seifert <soap@gentoo.org> | 2022-07-26 21:27:19 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-07-26 21:27:19 +0200 |
commit | 9518cdcd843ace2d861749aec10c811b5417b3c2 (patch) | |
tree | 59b306eed3abe7aea37748f3b325f9310de8329b /eclass/opam.eclass | |
parent | opam.eclass: remove EAPI 5 and 6 (diff) | |
download | gentoo-9518cdcd843ace2d861749aec10c811b5417b3c2.tar.gz gentoo-9518cdcd843ace2d861749aec10c811b5417b3c2.tar.bz2 gentoo-9518cdcd843ace2d861749aec10c811b5417b3c2.zip |
opam.eclass: add EAPI 8
Closes: https://github.com/gentoo/gentoo/pull/26565
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/opam.eclass')
-rw-r--r-- | eclass/opam.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/opam.eclass b/eclass/opam.eclass index b667bf31f151..197c3256f015 100644 --- a/eclass/opam.eclass +++ b/eclass/opam.eclass @@ -7,14 +7,14 @@ # ML <ml@gentoo.org> # @AUTHOR: # Alexis Ballier <aballier@gentoo.org> -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Provides functions for installing opam packages. # @DESCRIPTION: # Provides dependencies on opam and ocaml, opam-install and a default # src_install for opam-based packages. case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |