diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2013-02-07 03:38:33 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2013-02-07 03:38:33 +0000 |
commit | ace765003b8f5e6e620e78ed2086160f0ee44d47 (patch) | |
tree | 485ff7b96dfcd66f067cad6e09497d7a3a12e073 /eclass/kde4-functions.eclass | |
parent | Use EAPI 5 slot-operator for bug #455900. (diff) | |
download | gentoo-2-ace765003b8f5e6e620e78ed2086160f0ee44d47.tar.gz gentoo-2-ace765003b8f5e6e620e78ed2086160f0ee44d47.tar.bz2 gentoo-2-ace765003b8f5e6e620e78ed2086160f0ee44d47.zip |
[eclass] Version bump KDE SC 4.10.0
Diffstat (limited to 'eclass/kde4-functions.eclass')
-rw-r--r-- | eclass/kde4-functions.eclass | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index a3f84289a0b7..ce006fc49dd1 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.62 2012/09/27 16:35:41 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.63 2013/02/07 03:38:33 alexxy Exp $ inherit versionator @@ -54,28 +54,22 @@ export KDE_BUILD_TYPE if [[ ${KDE_BUILD_TYPE} == live ]]; then case "${KMNAME}" in kdebase-workspace) - KDE_SCM="git" EGIT_REPONAME=${EGIT_REPONAME:=kde-workspace} ;; kdebase-runtime) - KDE_SCM="git" EGIT_REPONAME=${EGIT_REPONAME:=kde-runtime} ;; kdebase-apps) - KDE_SCM="git" EGIT_REPONAME=${EGIT_REPONAME:=kde-baseapps} ;; - kde-workspace|kde-runtime|kde-baseapps) - KDE_SCM="git" - ;; esac fi # @ECLASS-VARIABLE: KDE_SCM # @DESCRIPTION: # If this is a live package which scm does it use -# Everything else uses svn by default -KDE_SCM="${KDE_SCM:-svn}" +# Everything else uses git by default +KDE_SCM="${KDE_SCM:-git}" case ${KDE_SCM} in svn|git) ;; *) die "KDE_SCM: ${KDE_SCM} is not supported" ;; |