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 716BB138335 for ; Thu, 13 Dec 2018 22:26:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86B6AE0D24; Thu, 13 Dec 2018 22:26:12 +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 47549E0D24 for ; Thu, 13 Dec 2018 22:26:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 129F7335CE7 for ; Thu, 13 Dec 2018 22:26:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 789994E6 for ; Thu, 13 Dec 2018 22:26:09 +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: <1544739946.b02fb14d5f4b757ad7708f89426532c19b2ec13e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/dolphin-plugins-subversion/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/dolphin-plugins-subversion/Manifest kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-18.12.0.ebuild kde-apps/dolphin-plugins-subversion/metadata.xml X-VCS-Directories: kde-apps/dolphin-plugins-subversion/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b02fb14d5f4b757ad7708f89426532c19b2ec13e X-VCS-Branch: master Date: Thu, 13 Dec 2018 22:26:09 +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: 93ef3623-4616-44a4-b238-4f6e9341b911 X-Archives-Hash: 81cc128d716cc0cfaeeff35c5b9a80b0 commit: b02fb14d5f4b757ad7708f89426532c19b2ec13e Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Dec 13 22:06:54 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Dec 13 22:25:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b02fb14d kde-apps/dolphin-plugins-subversion: New package Split from kde-apps/dolphin-plugins. Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/dolphin-plugins-subversion/Manifest | 1 + .../dolphin-plugins-subversion-18.12.0.ebuild | 50 ++++++++++++++++++++++ kde-apps/dolphin-plugins-subversion/metadata.xml | 8 ++++ 3 files changed, 59 insertions(+) diff --git a/kde-apps/dolphin-plugins-subversion/Manifest b/kde-apps/dolphin-plugins-subversion/Manifest new file mode 100644 index 00000000000..81c358f7a48 --- /dev/null +++ b/kde-apps/dolphin-plugins-subversion/Manifest @@ -0,0 +1 @@ +DIST dolphin-plugins-18.12.0.tar.xz 191844 BLAKE2B cf4c59909f961d2c295e6a15e963c409302f9ae52c001c284015977c88ed4d6fa71b47d0402bc7049834c702d94169a543e7552f6517882578dc9a0d490bfc6e SHA512 237fb4204267894903708ced1fed771871591606c12d3a25fb1452526fc71146f53f1e26c97954897eab97f08bfacc277dd189082c53aa867829a61e3b098348 diff --git a/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-18.12.0.ebuild b/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-18.12.0.ebuild new file mode 100644 index 00000000000..f08b557c872 --- /dev/null +++ b/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-18.12.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KMNAME="dolphin-plugins" +KDE_HANDBOOK="false" +MY_PLUGIN_NAME="svn" +inherit kde5 + +DESCRIPTION="Dolphin plugin for Subversion integration" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kio) + $(add_frameworks_dep ktextwidgets) + $(add_kdeapps_dep dolphin) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) +" +RDEPEND="${DEPEND} + !kde-apps/dolphin-plugins:5 + $(add_kdeapps_dep kompare) + dev-vcs/subversion +" + +src_prepare() { + kde5_src_prepare + # kxmlgui, qtnetwork only required by dropbox + punt_bogus_dep Qt5 Network + punt_bogus_dep KF5 XmlGui + # delete non-${PN} translations + if [[ ${KDE_BUILD_TYPE} = release ]]; then + find po -type f -name "*po" -and -not -name "*${MY_PLUGIN_NAME}plugin" -delete || die + fi +} + +src_configure() { + local mycmakeargs=( + -DBUILD_${MY_PLUGIN_NAME}=ON + -DBUILD_bazaar=OFF + -DBUILD_dropbox=OFF + -DBUILD_git=OFF + -DBUILD_hg=OFF + ) + kde5_src_configure +} diff --git a/kde-apps/dolphin-plugins-subversion/metadata.xml b/kde-apps/dolphin-plugins-subversion/metadata.xml new file mode 100644 index 00000000000..2fdbf33d963 --- /dev/null +++ b/kde-apps/dolphin-plugins-subversion/metadata.xml @@ -0,0 +1,8 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + +