commit: 9518cdcd843ace2d861749aec10c811b5417b3c2 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Tue Jul 26 19:27:19 2022 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Tue Jul 26 19:27:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9518cdcd
opam.eclass: add EAPI 8 Closes: https://github.com/gentoo/gentoo/pull/26565 Signed-off-by: David Seifert <soap <AT> gentoo.org> eclass/opam.eclass | 4 ++-- 1 file 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 <[email protected]> # @AUTHOR: # Alexis Ballier <[email protected]> -# @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
