Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 03 Oct 2018 02:09:05
Message-Id: 1538532502.8421857be64e68560db2f81994ea1786f664c46a.floppym@gentoo
1 commit: 8421857be64e68560db2f81994ea1786f664c46a
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 30 21:55:52 2018 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 3 02:08:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8421857b
7
8 xdg-utils.eclass: support EAPI 7
9
10 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
11
12 eclass/xdg-utils.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/xdg-utils.eclass b/eclass/xdg-utils.eclass
16 index 725b6731622..fe1eef213ea 100644
17 --- a/eclass/xdg-utils.eclass
18 +++ b/eclass/xdg-utils.eclass
19 @@ -6,7 +6,7 @@
20 # gnome@g.o
21 # @AUTHOR:
22 # Original author: Gilles Dartiguelongue <eva@g.o>
23 -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6
24 +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7
25 # @BLURB: Auxiliary functions commonly used by XDG compliant packages.
26 # @DESCRIPTION:
27 # This eclass provides a set of auxiliary functions needed by most XDG
28 @@ -16,7 +16,7 @@
29 # * XDG mime information database management
30
31 case "${EAPI:-0}" in
32 - 0|1|2|3|4|5|6) ;;
33 + 0|1|2|3|4|5|6|7) ;;
34 *) die "EAPI=${EAPI} is not supported" ;;
35 esac