Gentoo Archives: gentoo-commits

From: Sergey Popov <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Wed, 26 Jul 2017 12:46:42
Message-Id: 1501072805.6ffe9a1b6086582bbe91d35d21b4fad0748fa9c0.pinkbyte@gentoo
1 commit: 6ffe9a1b6086582bbe91d35d21b4fad0748fa9c0
2 Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 26 12:23:42 2017 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 26 12:40:05 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ffe9a1b
7
8 office-ext-r1.eclass: add support for EAPI 6
9
10 eclass/office-ext-r1.eclass | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/eclass/office-ext-r1.eclass b/eclass/office-ext-r1.eclass
14 index 4bfc170ab39..bdd9ffd9166 100644
15 --- a/eclass/office-ext-r1.eclass
16 +++ b/eclass/office-ext-r1.eclass
17 @@ -11,7 +11,7 @@
18 # Eclass for easing maitenance of libreoffice/openoffice extensions.
19
20 case "${EAPI:-0}" in
21 - 5) OEXT_EXPORTED_FUNCTIONS="src_unpack src_install pkg_postinst pkg_prerm" ;;
22 + 5|6) OEXT_EXPORTED_FUNCTIONS="src_unpack src_install pkg_postinst pkg_prerm" ;;
23 *) die "EAPI=${EAPI} is not supported" ;;
24 esac