summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-04-12 12:35:28 +0100
committerSam James <sam@gentoo.org>2023-04-17 22:14:33 +0100
commit304ab5e1acc056aca413ed69bc6791270502cbce (patch)
treea6fd0b6347c5fdba24c3bc940fe480b2f0d6fdf7 /eclass
parentpostgres.eclass: document PG_SLOT, PG_CONFIG (diff)
downloadgentoo-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.eclass4
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