diff options
author | Davide Pesavento <pesa@gentoo.org> | 2015-12-20 02:51:59 +0100 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2015-12-20 02:51:59 +0100 |
commit | f563c87e37651a4a999696579de9b30bb77ba80a (patch) | |
tree | 9c267140a90c1684cf475a36666636993aa832b4 /eclass/qt4-r2.eclass | |
parent | dev-python/pyside-tools: update HOMEPAGE, simplify deps (diff) | |
download | gentoo-f563c87e37651a4a999696579de9b30bb77ba80a.tar.gz gentoo-f563c87e37651a4a999696579de9b30bb77ba80a.tar.bz2 gentoo-f563c87e37651a4a999696579de9b30bb77ba80a.zip |
qt4-r2.eclass: ban for EAPI=6
Diffstat (limited to 'eclass/qt4-r2.eclass')
-rw-r--r-- | eclass/qt4-r2.eclass | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/eclass/qt4-r2.eclass b/eclass/qt4-r2.eclass index 964233bf64c4..5a95ba0ab479 100644 --- a/eclass/qt4-r2.eclass +++ b/eclass/qt4-r2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,11 +8,13 @@ # @BLURB: Eclass for Qt4-based packages, second edition. # @DESCRIPTION: # This eclass contains various functions that may be useful when -# dealing with packages using Qt4 libraries. Requires EAPI=2 or later. +# dealing with packages using Qt4 libraries. Supports only EAPIs +# 2, 3, 4, and 5. Use qmake-utils.eclass in EAPI 6 and later. case ${EAPI} in 2|3|4|5) : ;; - *) die "qt4-r2.eclass: unsupported EAPI=${EAPI:-0}" ;; + 6) die "qt4-r2.eclass is banned in EAPI 6 and later" ;; + *) die "qt4-r2.eclass: unsupported EAPI=${EAPI:-0}" ;; esac inherit base eutils qmake-utils |