diff options
author | Mike Gilbert <floppym@gentoo.org> | 2018-09-30 17:55:52 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2018-10-02 22:08:22 -0400 |
commit | 8421857be64e68560db2f81994ea1786f664c46a (patch) | |
tree | b162fc2ad7b7d1b2166cc29c47aa130f1b765f1b /eclass | |
parent | xdg-utils.eclass: avoid duplicate leading slashes (diff) | |
download | gentoo-8421857be64e68560db2f81994ea1786f664c46a.tar.gz gentoo-8421857be64e68560db2f81994ea1786f664c46a.tar.bz2 gentoo-8421857be64e68560db2f81994ea1786f664c46a.zip |
xdg-utils.eclass: support EAPI 7
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xdg-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/xdg-utils.eclass b/eclass/xdg-utils.eclass index 725b67316221..fe1eef213ea4 100644 --- a/eclass/xdg-utils.eclass +++ b/eclass/xdg-utils.eclass @@ -6,7 +6,7 @@ # gnome@gentoo.org # @AUTHOR: # Original author: Gilles Dartiguelongue <eva@gentoo.org> -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 # @BLURB: Auxiliary functions commonly used by XDG compliant packages. # @DESCRIPTION: # This eclass provides a set of auxiliary functions needed by most XDG @@ -16,7 +16,7 @@ # * XDG mime information database management case "${EAPI:-0}" in - 0|1|2|3|4|5|6) ;; + 0|1|2|3|4|5|6|7) ;; *) die "EAPI=${EAPI} is not supported" ;; esac |