From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BFEDE138334 for ; Sun, 17 Mar 2019 18:32:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CC78E099F; Sun, 17 Mar 2019 18:31:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5937DE099F for ; Sun, 17 Mar 2019 18:31:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74EEF335D19 for ; Sun, 17 Mar 2019 18:31:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB5C557E for ; Sun, 17 Mar 2019 18:31:53 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1552847186.fbc998ce9c6c95644b027ea9e8bf11f94e078f98.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: fbc998ce9c6c95644b027ea9e8bf11f94e078f98 X-VCS-Branch: master Date: Sun, 17 Mar 2019 18:31:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: dff7a51c-c9a0-48da-847d-01138bbaf598 X-Archives-Hash: 3ffc74131416bbf1d0551dc8d833f13e commit: fbc998ce9c6c95644b027ea9e8bf11f94e078f98 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Mar 17 18:26:26 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Mar 17 18:26:26 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=fbc998ce kde5.eclass: Support kdevelop* stable branches Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde5.eclass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 7dda037017..e2aae0f652 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -391,6 +391,10 @@ _calculate_live_repo() { EGIT_BRANCH="Plasma/$(ver_cut 1-2)" fi + if [[ ${PV} != 9999 && ${PN} = kdevelop* ]]; then + EGIT_BRANCH="$(ver_cut 1-2)" + fi + EGIT_REPO_URI="${EGIT_MIRROR}/${_kmname}" }