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: Tue, 02 Jan 2018 02:49:17
Message-Id: 1514861067.82ed7a06c1dd76692ff05b54edc9fdbf712659a0.floppym@gentoo
1 commit: 82ed7a06c1dd76692ff05b54edc9fdbf712659a0
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 31 15:10:41 2017 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 02:44:27 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82ed7a06
7
8 tmpfiles.eclass: allow EAPI 5 usage
9
10 eclass/tmpfiles.eclass | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass
14 index 6a461d4df85..74622578412 100644
15 --- a/eclass/tmpfiles.eclass
16 +++ b/eclass/tmpfiles.eclass
17 @@ -55,7 +55,7 @@ if [[ -z ${TMPFILES_ECLASS} ]]; then
18 TMPFILES_ECLASS=1
19
20 case "${EAPI}" in
21 -6) ;;
22 +5|6) ;;
23 *) die "API is undefined for EAPI ${EAPI}" ;;
24 esac