diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2023-08-14 14:40:57 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2023-08-14 17:14:10 -0400 |
commit | 187edbb4abe395cda4a01817f11b78d2c70a0dc1 (patch) | |
tree | 1629d7a9e87a0c5ebc74b7bbee553c6b5b9e07a2 /eclass/netsurf.eclass | |
parent | netsurf.eclass: add myself as maintainer; fix spaces -> tabs (diff) | |
download | gentoo-187edbb4abe395cda4a01817f11b78d2c70a0dc1.tar.gz gentoo-187edbb4abe395cda4a01817f11b78d2c70a0dc1.tar.bz2 gentoo-187edbb4abe395cda4a01817f11b78d2c70a0dc1.zip |
netsurf.eclass: support EAPI=8
This eclass provides one function that sets some environment variables,
nothing to worry about.
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'eclass/netsurf.eclass')
-rw-r--r-- | eclass/netsurf.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/netsurf.eclass b/eclass/netsurf.eclass index f027b88b4965..b69c93d87ca3 100644 --- a/eclass/netsurf.eclass +++ b/eclass/netsurf.eclass @@ -4,13 +4,13 @@ # @ECLASS: netsurf.eclass # @MAINTAINER: # mjo@gentoo.org -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: Handle buildsystem of www.netsurf-browser.org components # @DESCRIPTION: # Handle settings build environment for netsurf build system case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |