Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 21 Sep 2018 16:07:00
Message-Id: 1537545936.2869e6c953397db6eda69ebe1769b30beea2e133.perfinion@gentoo
1 commit: 2869e6c953397db6eda69ebe1769b30beea2e133
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 17 11:18:37 2018 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 21 16:05:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2869e6c9
7
8 check-reqs.eclass: update to EAPI7
9
10 Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
11
12 eclass/check-reqs.eclass | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass
16 index d1ed395c8b1..689944c8770 100644
17 --- a/eclass/check-reqs.eclass
18 +++ b/eclass/check-reqs.eclass
19 @@ -7,7 +7,7 @@
20 # @AUTHOR:
21 # Bo Ørsted Andresen <zlin@g.o>
22 # Original Author: Ciaran McCreesh <ciaranm@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: Provides a uniform way of handling ebuild which have very high build requirements
26 # @DESCRIPTION:
27 # This eclass provides a uniform way of handling ebuilds which have very high
28 @@ -63,7 +63,7 @@ if [[ ! ${_CHECK_REQS_ECLASS_} ]]; then
29 EXPORT_FUNCTIONS pkg_setup
30 case "${EAPI:-0}" in
31 0|1|2|3) ;;
32 - 4|5|6) EXPORT_FUNCTIONS pkg_pretend ;;
33 + 4|5|6|7) EXPORT_FUNCTIONS pkg_pretend ;;
34 *) die "EAPI=${EAPI} is not supported" ;;
35 esac