diff options
author | Patrick Lauer <patrick@gentoo.org> | 2024-06-12 14:16:14 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2024-06-12 14:27:05 +0000 |
commit | 64a7bf34f31437b26886cc75cff8d5585fc50236 (patch) | |
tree | 300b35f3a8eaf38497a3f52bd06549f78d36057a /eclass | |
parent | dev-python/moto: Deselect tests failing with 32-bit time_t (diff) | |
download | gentoo-64a7bf34f31437b26886cc75cff8d5585fc50236.tar.gz gentoo-64a7bf34f31437b26886cc75cff8d5585fc50236.tar.bz2 gentoo-64a7bf34f31437b26886cc75cff8d5585fc50236.zip |
postgres-multi.eclass: Add EAPI 8 support
Previously blocked by postgres.eclass, which was fixed in
304ab5e1acc056aca413ed69bc6791270502cbce
Signed-off-by: Patrick Lauer <patrick@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/postgres-multi.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/postgres-multi.eclass b/eclass/postgres-multi.eclass index d93df851cd24..52ca83b9126f 100644 --- a/eclass/postgres-multi.eclass +++ b/eclass/postgres-multi.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: postgres-multi.eclass @@ -15,7 +15,7 @@ # POSTGRES_TARGETS use flags. case ${EAPI} in - 7) ;; + 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac |