summaryrefslogtreecommitdiff
path: root/kde-apps/dolphin-plugins-subversion
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-12-06 19:26:49 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-12-06 19:26:49 +0100
commit956ecd585deb21af5594eb00983a2bdfc67cf3cc (patch)
tree6f668b9df47fe93a876d69bb1bdca553192f5354 /kde-apps/dolphin-plugins-subversion
parent6a73eee40c7fd52d7772926ff698416c590be96c (diff)
downloadkde-956ecd585deb21af5594eb00983a2bdfc67cf3cc.tar.gz
kde-956ecd585deb21af5594eb00983a2bdfc67cf3cc.tar.bz2
kde-956ecd585deb21af5594eb00983a2bdfc67cf3cc.zip
kde-apps/dolphin-plugins-subversion: 24.12.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/dolphin-plugins-subversion')
-rw-r--r--kde-apps/dolphin-plugins-subversion/Manifest1
-rw-r--r--kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-24.12.0.ebuild59
2 files changed, 60 insertions, 0 deletions
diff --git a/kde-apps/dolphin-plugins-subversion/Manifest b/kde-apps/dolphin-plugins-subversion/Manifest
index 6899d3b628d..ec058d5b64c 100644
--- a/kde-apps/dolphin-plugins-subversion/Manifest
+++ b/kde-apps/dolphin-plugins-subversion/Manifest
@@ -1 +1,2 @@
DIST dolphin-plugins-24.11.90.tar.xz 318776 BLAKE2B 4b87cd5da4b94403408dc837514f12d039bdaf3f9d5ea6a62b197a6867aa10cfbfe7039a845e65c66cf03dcc0d524c150c9ed40a3855cb979dcfa887dfc0969d SHA512 a14fc834b58cd81446ba72e496917d466bb35eaf7eef35fc3483d745cdfb0861c6efa56910e4cdf279b5123faae0241008dbbaea7e23764b87dee1025e840507
+DIST dolphin-plugins-24.12.0.tar.xz 319128 BLAKE2B c793b10b882029eb7b2b681f15220fa065c2f59e4a1aa35ecf6ebfee253c4bd68aaf32c6555a8e03dad0ec8de7fba824834f1c0cbcb88c0c702b731b3d9b78d8 SHA512 94b4f8cd785c380b915da0e4a8efb9521d3a8440246466e4903746a2eb44188f1ae8cf3b483ec901f70c49c60a391de7c09d567e9a1a905b4229378c2623ee42
diff --git a/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-24.12.0.ebuild b/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-24.12.0.ebuild
new file mode 100644
index 00000000000..4341c6306b1
--- /dev/null
+++ b/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-24.12.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+KDE_ORG_NAME="dolphin-plugins"
+MY_PLUGIN_NAME="svn"
+PVCUT=$(ver_cut 1-3)
+KFMIN=6.5.0
+QTMIN=6.7.2
+inherit ecm gear.kde.org
+
+DESCRIPTION="Dolphin plugin for Subversion integration"
+HOMEPAGE="https://apps.kde.org/dolphin_plugins/"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE=""
+
+DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6[gui,widgets]
+ >=kde-apps/dolphin-${PVCUT}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/ktextwidgets-${KFMIN}:6
+"
+RDEPEND="${DEPEND}
+ dev-vcs/subversion
+ >=kde-apps/dolphin-plugins-common-${PV}
+ >=kde-apps/kompare-${PVCUT}:*
+"
+
+src_prepare() {
+ ecm_src_prepare
+ ecm_punt_po_install
+ # qtconcurrent only required by git
+ ecm_punt_qt_module Concurrent
+ # solid, qtdbus only required by mountiso
+ ecm_punt_qt_module DBus
+ ecm_punt_kf_module Solid
+ # kxmlgui, qtnetwork only required by dropbox
+ ecm_punt_qt_module Network
+ ecm_punt_kf_module XmlGui
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_${MY_PLUGIN_NAME}=ON
+ -DBUILD_bazaar=OFF
+ -DBUILD_dropbox=OFF
+ -DBUILD_git=OFF
+ -DBUILD_hg=OFF
+ -DBUILD_makefileactions=OFF
+ -DBUILD_mountiso=OFF
+ )
+ ecm_src_configure
+}