summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-04-11 21:20:20 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-04-11 21:24:26 +0200
commitfa0f142ecc35e24a2bdc71c0103a10f64dde842b (patch)
tree5d4d014ce45f729d86c56a7daf06651c5420ad4f
parent433b8e244ec14c99da1490e3daa4f8bf3a1f2592 (diff)
downloadkde-fa0f142ecc35e24a2bdc71c0103a10f64dde842b.tar.gz
kde-fa0f142ecc35e24a2bdc71c0103a10f64dde842b.tar.bz2
kde-fa0f142ecc35e24a2bdc71c0103a10f64dde842b.zip
kde-apps/ark: 25.04.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-apps/ark/Manifest1
-rw-r--r--kde-apps/ark/ark-25.04.0.ebuild80
2 files changed, 81 insertions, 0 deletions
diff --git a/kde-apps/ark/Manifest b/kde-apps/ark/Manifest
index 4d3dacf79a4..216b4a51a6e 100644
--- a/kde-apps/ark/Manifest
+++ b/kde-apps/ark/Manifest
@@ -1 +1,2 @@
DIST ark-25.03.90.tar.xz 3017260 BLAKE2B b4e10d289e7d1abd36637e0bdcb89d7085fc761227f12d4cf531fae7a3cbcdadc7ea827c83d6d08a34086a13c0e0ac9b9c44a32c8726ccea759ad78f943aa07f SHA512 3b6e2efa44af8569dd4337254934a04e99c6ac5d9278bd210c1393828348927d207f6304604f4d9103f426dbd157ae3f20e691c6001417d45f9bbb05cd93d03d
+DIST ark-25.04.0.tar.xz 3017272 BLAKE2B 0a3e8fcdb493325ca53dc4b9e32ee2491eede64293ba1756f4b923a692e61f8adbf0692eba08bba66c534ba8e39c5eefe70ecd875a1a3946e7ee86188304a014 SHA512 d46a32138d037f982c237a0ec7735ffdda28b01e392fed1f6600ae743221deaa5809653202151b64c11ee0c67527a5d9de5c127d3658b6f036326ceb2a491c5a
diff --git a/kde-apps/ark/ark-25.04.0.ebuild b/kde-apps/ark/ark-25.04.0.ebuild
new file mode 100644
index 00000000000..17b5e848de8
--- /dev/null
+++ b/kde-apps/ark/ark-25.04.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_HANDBOOK="forceoptional"
+ECM_TEST="true"
+KFMIN=6.9.0
+QTMIN=6.7.2
+inherit ecm gear.kde.org optfeature xdg
+
+DESCRIPTION="File archiver by KDE"
+HOMEPAGE="https://apps.kde.org/ark/"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="zip"
+
+RDEPEND="
+ >=app-arch/libarchive-3.5.3:=[bzip2,lzma]
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets]
+ >=kde-frameworks/kcompletion-${KFMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kconfigwidgets-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kcrash-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/kfilemetadata-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/kjobwidgets-${KFMIN}:6
+ >=kde-frameworks/kparts-${KFMIN}:6
+ >=kde-frameworks/kpty-${KFMIN}:6
+ >=kde-frameworks/kservice-${KFMIN}:6
+ >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+ >=kde-frameworks/kwindowsystem-${KFMIN}:6
+ >=kde-frameworks/kxmlgui-${KFMIN}:6
+ sys-libs/zlib
+ zip? ( >=dev-libs/libzip-1.6.0:= )
+"
+DEPEND="${RDEPEND}
+ >=kde-frameworks/kiconthemes-${KFMIN}:6
+ >=dev-qt/qtbase-${QTMIN}:6[concurrent]
+ test? ( >=dev-libs/libzip-1.6.0:= )
+"
+# app-arch/rar is binary only
+BDEPEND="
+ sys-devel/gettext
+ elibc_glibc? ( test? ( amd64? ( app-arch/rar ) x86? ( app-arch/rar ) ) )
+"
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake_use_find_package zip LibZip)
+ )
+
+ ecm_src_configure
+}
+
+src_test() {
+ local myctestargs=(
+ # bug 822177: kerfuffle-addtoarchivetest: may segfault or hang indefinitely
+ # bug 827840: plugins-clirartest: continuously broken with translations installed
+ -E "(kerfuffle-addtoarchivetest|plugins-clirartest)"
+ )
+
+ ecm_src_test
+}
+
+pkg_postinst() {
+ if [[ -z "${REPLACING_VERSIONS}" ]]; then
+ optfeature "rar archive creation/extraction" "app-arch/rar"
+ optfeature "rar archive extraction only" "app-arch/unar" "app-arch/unrar"
+ optfeature "7-Zip archive support" "app-arch/p7zip"
+ optfeature "lrz archive support" "app-arch/lrzip"
+ optfeature "Markdown support in text previews" "kde-misc/markdownpart:${SLOT}"
+ fi
+ xdg_pkg_postinst
+}