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 6E673138334 for ; Thu, 13 Dec 2018 22:24:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2466E0D9B; Thu, 13 Dec 2018 22:24:14 +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 B3749E0D9B for ; Thu, 13 Dec 2018 22:24:14 +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 28B8D335CD9 for ; Thu, 13 Dec 2018 22:24:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D72D4E4 for ; Thu, 13 Dec 2018 22:24: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: <1544739838.6feb742d8db469b2eda1c7d59b62a46ebb376f36.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/dolphin-plugins-git/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/dolphin-plugins-git/dolphin-plugins-git-18.12.49.9999.ebuild kde-apps/dolphin-plugins-git/dolphin-plugins-git-9999.ebuild kde-apps/dolphin-plugins-git/metadata.xml X-VCS-Directories: kde-apps/dolphin-plugins-git/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6feb742d8db469b2eda1c7d59b62a46ebb376f36 X-VCS-Branch: master Date: Thu, 13 Dec 2018 22:24: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: a3269d87-0ec2-4658-bd7c-ef841d0d2d5b X-Archives-Hash: 596c1c643f93624b6f8af8273c40f27a commit: 6feb742d8db469b2eda1c7d59b62a46ebb376f36 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Dec 13 19:58:05 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Dec 13 22:23:58 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=6feb742d kde-apps/dolphin-plugins-git: 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> .../dolphin-plugins-git-18.12.49.9999.ebuild | 51 ++++++++++++++++++++++ .../dolphin-plugins-git-9999.ebuild | 51 ++++++++++++++++++++++ kde-apps/dolphin-plugins-git/metadata.xml | 8 ++++ 3 files changed, 110 insertions(+) diff --git a/kde-apps/dolphin-plugins-git/dolphin-plugins-git-18.12.49.9999.ebuild b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-18.12.49.9999.ebuild new file mode 100644 index 0000000000..9c41c12526 --- /dev/null +++ b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-18.12.49.9999.ebuild @@ -0,0 +1,51 @@ +# 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="git" +inherit kde5 + +DESCRIPTION="Dolphin plugin for Git integration" +KEYWORDS="" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(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 + dev-vcs/git +" + +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_hg=OFF + -DBUILD_svn=OFF + ) + kde5_src_configure +} diff --git a/kde-apps/dolphin-plugins-git/dolphin-plugins-git-9999.ebuild b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-9999.ebuild new file mode 100644 index 0000000000..9c41c12526 --- /dev/null +++ b/kde-apps/dolphin-plugins-git/dolphin-plugins-git-9999.ebuild @@ -0,0 +1,51 @@ +# 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="git" +inherit kde5 + +DESCRIPTION="Dolphin plugin for Git integration" +KEYWORDS="" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(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 + dev-vcs/git +" + +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_hg=OFF + -DBUILD_svn=OFF + ) + kde5_src_configure +} diff --git a/kde-apps/dolphin-plugins-git/metadata.xml b/kde-apps/dolphin-plugins-git/metadata.xml new file mode 100644 index 0000000000..2fdbf33d96 --- /dev/null +++ b/kde-apps/dolphin-plugins-git/metadata.xml @@ -0,0 +1,8 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + +