Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/liblxqt/
Date: Mon, 25 Jul 2016 18:25:48
Message-Id: 1469471111.d68b3eb31e7a76f8f94be296fc6c5fa61dc31fcb.wizardedit@gentoo
1 commit: d68b3eb31e7a76f8f94be296fc6c5fa61dc31fcb
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 12 21:23:15 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 25 18:25:11 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d68b3eb3
7
8 lxqt-base/liblxqt: fix gcc version check
9
10 Also update to EAPI 6
11
12 Gentoo-Bug: https://bugs.gentoo.org/588230
13
14 Package-Manager: portage-2.3.0
15
16 lxqt-base/liblxqt/liblxqt-0.10.0.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/lxqt-base/liblxqt/liblxqt-0.10.0.ebuild b/lxqt-base/liblxqt/liblxqt-0.10.0.ebuild
20 index 1d47614..579019e 100644
21 --- a/lxqt-base/liblxqt/liblxqt-0.10.0.ebuild
22 +++ b/lxqt-base/liblxqt/liblxqt-0.10.0.ebuild
23 @@ -2,7 +2,7 @@
24 # Distributed under the terms of the GNU General Public License v2
25 # $Id$
26
27 -EAPI=5
28 +EAPI=6
29 inherit cmake-utils
30
31 DESCRIPTION="Common base library for the LXQt desktop environment"
32 @@ -34,7 +34,7 @@ DEPEND="${RDEPEND}
33
34 pkg_pretend() {
35 if [[ ${MERGE_TYPE} != binary ]]; then
36 - [[ $(gcc-version) < 4.8 ]] && \
37 + tc-is-gcc && [[ $(gcc-version) < 4.8 ]] && \
38 die 'The active compiler needs to be gcc 4.8 (or newer)'
39 fi
40 }