summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-apps/ark/Manifest1
-rw-r--r--kde-apps/ark/ark-24.01.90.ebuild79
2 files changed, 0 insertions, 80 deletions
diff --git a/kde-apps/ark/Manifest b/kde-apps/ark/Manifest
index 129800b0d61..1e2f8619407 100644
--- a/kde-apps/ark/Manifest
+++ b/kde-apps/ark/Manifest
@@ -1,2 +1 @@
-DIST ark-24.01.90.tar.xz 3016616 BLAKE2B a58bb74da5b76f9e1974aec58a850d078363865f989273c19b1f612ad608c63a204c8c4b447afc424914ba8875564af7d675e56e0ca30f23d699098e7df14d18 SHA512 9080fa977b6b46274448927860502adba6bea31abd61c71c4a0f89ed4d4d5f71e87ce490fe6565bf5528ada17daff0f336ce06b7db9cc1c6b0e2031597b9f2fb
DIST ark-24.01.95.tar.xz 3016664 BLAKE2B 254d292e566bfdf8a2c7971cdf61e0b6f0ecfb6220c904a0b7b9384887e6f232859884771c55d37672eaf24af472af280c3531dfa23ebc6df620ef09169663b0 SHA512 737911db397fc40ba80dccdd8def48dc56db1401c9822511c41695be9bd957656e927019c6b5d77499b33d11a10c11a0289a0da8e3792a513cda72cee911fc32
diff --git a/kde-apps/ark/ark-24.01.90.ebuild b/kde-apps/ark/ark-24.01.90.ebuild
deleted file mode 100644
index 10bc238a6cd..00000000000
--- a/kde-apps/ark/ark-24.01.90.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional"
-ECM_TEST="optional"
-KFMIN=5.248.0
-QTMIN=6.6.0
-inherit ecm gear.kde.org optfeature
-
-DESCRIPTION="File archiver by KDE"
-HOMEPAGE="https://apps.kde.org/ark/"
-
-LICENSE="GPL-2" # TODO: CHECK
-SLOT="6"
-KEYWORDS="~amd64 ~arm64 ~loong ~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/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
- ecm_pkg_postinst
-}