From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9745B1388C2 for ; Wed, 2 Mar 2016 13:39:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B3C3E0852; Wed, 2 Mar 2016 13:39:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88ED0E0853 for ; Wed, 2 Mar 2016 13:39:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 41B8B340C03 for ; Wed, 2 Mar 2016 13:39:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1741ACEB for ; Wed, 2 Mar 2016 13:39:04 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1456877948.3bb4a6ac957e45757ed2077b9d003dd5cc9810c6.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5-functions.eclass eclass/kde5.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 3bb4a6ac957e45757ed2077b9d003dd5cc9810c6 X-VCS-Branch: master Date: Wed, 2 Mar 2016 13:39:04 +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-Archives-Salt: 9734bbf6-6bcd-4f91-936c-cce48c74c152 X-Archives-Hash: f6a0bf8bd247f2239f008190c83b6a04 commit: 3bb4a6ac957e45757ed2077b9d003dd5cc9810c6 Author: Andreas Sturmlechner gmail com> AuthorDate: Wed Mar 2 00:19:08 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Mar 2 00:19:08 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=3bb4a6ac kde5.eclass: Drop KDE_SCM=svn support It's not used by any kf5 based ebuild anymore. eclass/kde5-functions.eclass | 2 +- eclass/kde5.eclass | 31 ------------------------------- 2 files changed, 1 insertion(+), 32 deletions(-) diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index ffdac91..ea894ad 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -63,7 +63,7 @@ debug-print "${ECLASS}: ${KDEBASE} ebuild recognized" : ${KDE_SCM:=git} case ${KDE_SCM} in - svn|git) ;; + git) ;; *) die "KDE_SCM: ${KDE_SCM} is not supported" ;; esac diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index c8d4b5e..7d764b2 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -23,7 +23,6 @@ inherit cmake-utils eutils flag-o-matic gnome2-utils kde5-functions versionator if [[ ${KDE_BUILD_TYPE} = live ]]; then case ${KDE_SCM} in - svn) inherit subversion ;; git) inherit git-r3 ;; esac fi @@ -331,33 +330,6 @@ _calculate_live_repo() { SRC_URI="" case ${KDE_SCM} in - svn) - # @ECLASS-VARIABLE: ESVN_MIRROR - # @DESCRIPTION: - # This variable allows easy overriding of default kde mirror service - # (anonsvn) with anything else you might want to use. - ESVN_MIRROR=${ESVN_MIRROR:=svn://anonsvn.kde.org/home/kde} - - local branch_prefix="trunk/KDE" - - if [[ ${PV} == ??.??.49.9999 && ${CATEGORY} = kde-apps ]]; then - branch_prefix="branches/Applications/$(get_version_component_range 1-2)" - fi - - if [[ ${PV} != 9999 && ${CATEGORY} = kde-plasma ]]; then - branch_prefix="branches/plasma/$(get_version_component_range 1-2)" - fi - - local _kmname - - if [[ -n ${KMNAME} ]]; then - _kmname=${KMNAME} - else - _kmname=${PN} - fi - - ESVN_REPO_URI="${ESVN_MIRROR}/${branch_prefix}/${_kmname}" - ;; git) # @ECLASS-VARIABLE: EGIT_MIRROR # @DESCRIPTION: @@ -458,9 +430,6 @@ kde5_src_unpack() { if [[ ${KDE_BUILD_TYPE} = live ]]; then case ${KDE_SCM} in - svn) - subversion_src_unpack - ;; git) git-r3_src_unpack ;;