From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Po1qV-00008B-Nd for garchives@archives.gentoo.org; Fri, 11 Feb 2011 22:52:12 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40FB1E09A9; Fri, 11 Feb 2011 22:52:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F2455E0AE4 for ; Fri, 11 Feb 2011 22:52:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E8221B408E for ; Fri, 11 Feb 2011 22:52:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id DC9658006E for ; Fri, 11 Feb 2011 22:52:03 +0000 (UTC) From: "Tomas Chvatal" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tomas Chvatal" Message-ID: Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde4-base.eclass X-VCS-Directories: eclass/ X-VCS-Committer: scarabeus X-VCS-Committer-Name: Tomas Chvatal X-VCS-Revision: bf83a3b1a987ab7bf6066ee7ca3e0f9ff57efc94 Date: Fri, 11 Feb 2011 22:52:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 1d1e689e0e2e7770f91943f1f220c412 commit: bf83a3b1a987ab7bf6066ee7ca3e0f9ff57efc94 Author: Tomas Chvatal gentoo org> AuthorDate: Fri Feb 11 22:45:48 2011 +0000 Commit: Tomas Chvatal gentoo org> CommitDate: Fri Feb 11 22:51:52 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kde.git;a=3Dc= ommit;h=3Dbf83a3b1 Rename ESCM variables to EGIT ones. --- eclass/kde4-base.eclass | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index 7eea817..829061e 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -581,19 +581,19 @@ _calculate_live_repo() { ;; git) local _kmname - # @ECLASS-VARIABLE: ESCM_MIRROR + # @ECLASS-VARIABLE: EGIT_MIRROR # @DESCRIPTION: # This variable allows easy overriding of default kde mirror service # (anongit) with anything else you might want to use. - ESCM_MIRROR=3D${ESCM_MIRROR:=3Dgit://anongit.kde.org} + EGIT_MIRROR=3D${EGIT_MIRROR:=3Dgit://anongit.kde.org} =20 - # @ECLASS-VARIABLE: ESCM_REPONAME + # @ECLASS-VARIABLE: EGIT_REPONAME # @DESCRIPTION: # This variable allows overriding of default repository # name. Specify only if this differ from PN and KMNAME. - if [[ -n ${ESCM_REPONAME} ]]; then + if [[ -n ${EGIT_REPONAME} ]]; then # the repository and kmname different - _kmname=3D${ESCM_REPONAME} + _kmname=3D${EGIT_REPONAME} elif [[ -n ${KMNAME} ]]; then _kmname=3D${KMNAME} else @@ -604,12 +604,12 @@ _calculate_live_repo() { case ${PV} in 9999*) ;; *) - # set ESCM_BRANCH and ESCM_COMMIT to ${SLOT} + # set EGIT_BRANCH and EGIT_COMMIT to ${SLOT} case ${_kmname} in kdeplasma-addons | kdepim | kdepim-runtime | kdepimlibs) - ESCM_BRANCH=3D"${SLOT}" + EGIT_BRANCH=3D"${SLOT}" ;; - *) ESCM_BRANCH=3D"KDE/${SLOT}" ;; + *) EGIT_BRANCH=3D"KDE/${SLOT}" ;; esac ;; esac @@ -619,15 +619,15 @@ _calculate_live_repo() { case ${PV} in # kdepim still did not branch 4.6.9999) - ESCM_BRANCH=3D"master" + EGIT_BRANCH=3D"master" ;; esac ;; esac - ESCM_REPO_URI=3D"${ESCM_MIRROR}/${_kmname}" + EGIT_REPO_URI=3D"${EGIT_MIRROR}/${_kmname}" =20 - debug-print "${FUNCNAME}: Repository: ${ESCM_REPO_URI}" - debug-print "${FUNCNAME}: Branch: ${ESCM_BRANCH}" + debug-print "${FUNCNAME}: Repository: ${EGIT_REPO_URI}" + debug-print "${FUNCNAME}: Branch: ${EGIT_BRANCH}" ;; esac }