commit: 06b214493a8bd09519496c12426c79c9bdcd5a64 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org> AuthorDate: Tue Sep 16 13:53:17 2014 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Tue Sep 16 13:53:17 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=06b21449
[eclass] Move inherit inside inherit-once conditional as per review from pesa. --- eclass/kde4-functions.eclass | 4 ++-- eclass/kde5-functions.eclass | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index b86d7dd..22cc0cd 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -2,8 +2,6 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit versionator - # @ECLASS: kde4-functions.eclass # @MAINTAINER: # [email protected] @@ -15,6 +13,8 @@ inherit versionator if [[ -z ${_KDE4_FUNCTIONS_ECLASS} ]]; then _KDE4_FUNCTIONS_ECLASS=1 +inherit versionator + # @ECLASS-VARIABLE: EAPI # @DESCRIPTION: # Currently kde4 eclasses support EAPI 4 and 5. diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index 18b0b1a..00dfe6a 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -2,8 +2,6 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit versionator - # @ECLASS: kde5-functions.eclass # @MAINTAINER: # [email protected] @@ -15,6 +13,8 @@ inherit versionator if [[ -z ${_KDE5_FUNCTIONS_ECLASS} ]]; then _KDE5_FUNCTIONS_ECLASS=1 +inherit versionator + # @ECLASS-VARIABLE: EAPI # @DESCRIPTION: # Currently EAPI 5 is supported.
