Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 06 May 2016 09:41:33
Message-Id: 1462527682.cc450cd9fb2e907d1663c1ba5368ff1f7d7c0b6e.graaff@gentoo
1 commit: cc450cd9fb2e907d1663c1ba5368ff1f7d7c0b6e
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 6 09:39:35 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri May 6 09:41:22 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc450cd9
7
8 ruby-single.eclass: Support EAPI=6
9
10 The current implementation is compatible with EAPI=6.
11 Thanks to Poly-C for additional testing.
12
13 eclass/ruby-single.eclass | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/eclass/ruby-single.eclass b/eclass/ruby-single.eclass
17 index b76faae..f8ef648 100644
18 --- a/eclass/ruby-single.eclass
19 +++ b/eclass/ruby-single.eclass
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 +# Copyright 1999-2016 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24 # $Id$
25
26 @@ -26,7 +26,7 @@ case "${EAPI:-0}" in
27 0|1|2|3)
28 die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}"
29 ;;
30 - 4|5)
31 + 4|5|6)
32 ;;
33 *)
34 die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"