diff options
author | Sam James <sam@gentoo.org> | 2023-04-12 12:35:28 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-04-17 22:14:33 +0100 |
commit | 304ab5e1acc056aca413ed69bc6791270502cbce (patch) | |
tree | a6fd0b6347c5fdba24c3bc940fe480b2f0d6fdf7 /eclass | |
parent | postgres.eclass: document PG_SLOT, PG_CONFIG (diff) | |
download | gentoo-304ab5e1acc056aca413ed69bc6791270502cbce.tar.gz gentoo-304ab5e1acc056aca413ed69bc6791270502cbce.tar.bz2 gentoo-304ab5e1acc056aca413ed69bc6791270502cbce.zip |
postgres.eclass: add EAPI 8
Closes: https://bugs.gentoo.org/836781
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/postgres.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/postgres.eclass b/eclass/postgres.eclass index 1597f2a9aafb..95ed168d40a1 100644 --- a/eclass/postgres.eclass +++ b/eclass/postgres.eclass @@ -6,7 +6,7 @@ # PostgreSQL <pgsql-bugs@gentoo.org> # @AUTHOR: # Aaron W. Swenson <titanofold@gentoo.org> -# @SUPPORTED_EAPIS: 7 +# @SUPPORTED_EAPIS: 7 8 # @BLURB: An eclass for PostgreSQL-related packages # @DESCRIPTION: # This eclass provides common utility functions that many @@ -15,7 +15,7 @@ # user to the postgres system group, and generating dependencies. case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |