summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-01-10 09:47:19 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2019-01-10 16:50:01 +0100
commitbf8512d598d6e4979f9c12a7c6e5e82e476c5b4d (patch)
tree185af112be74928dd5649cd7e3aaf5a9a6a004a5 /kde-apps/ark
parentkde-apps: Add KDE Applications 18.12.1 (diff)
downloadgentoo-bf8512d598d6e4979f9c12a7c6e5e82e476c5b4d.tar.gz
gentoo-bf8512d598d6e4979f9c12a7c6e5e82e476c5b4d.tar.bz2
gentoo-bf8512d598d6e4979f9c12a7c6e5e82e476c5b4d.zip
kde-apps: Drop KDE Applications 18.12.0
Package-Manager: Portage-2.3.54, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/ark')
-rw-r--r--kde-apps/ark/Manifest1
-rw-r--r--kde-apps/ark/ark-18.12.0.ebuild77
2 files changed, 0 insertions, 78 deletions
diff --git a/kde-apps/ark/Manifest b/kde-apps/ark/Manifest
index 4abd97b257d3..3d602b385904 100644
--- a/kde-apps/ark/Manifest
+++ b/kde-apps/ark/Manifest
@@ -1,3 +1,2 @@
DIST ark-18.08.3.tar.xz 2580200 BLAKE2B 7ecfcc542d25c0a6ba8639e4a5cd353358d5188077ca309c6fe6dc07288c071083ff7a025d71d489d3fed412c63d69f33d480084afbd015b6c45b64cf08a3286 SHA512 56ec9a592cc0862dfe39dbef424b1fb09e8d32050448558c402b864756e00ba402e9fdec7159e3bd5b7013217f6cf1b33cdd4b0d663a11b8bfe5c4c76535f820
-DIST ark-18.12.0.tar.xz 2580244 BLAKE2B 79f1290ca4dcc40f9b34a838d4fc0165f8d7eb69ed3cf54ffd517b59df5e2df6dc2c627ff0a17db67fb34275638f9d808be512e0faafd89c814c82f154df0989 SHA512 015ae8c9fa8e955c627ff206e9d946ee9f572735f8e05a2a428a029811594eebb5f6354320060b4eca15c7e51d08bea33f8da5ddc8ac4a79fa6901f4b2b597c2
DIST ark-18.12.1.tar.xz 2580288 BLAKE2B 0108d56b3a140cc405688202e412e0e61c1153a16df1bd5455f53197fa6e5f6a8147115d1f26bd06524e77237bd4ed201a8d1155a559dc46440c6827bf640e62 SHA512 64fe8e3a300c1ff0d192c5366e1ba0f7916abd2cdb7df8f7953eff266d76462d95794d801e9d08053f53d0ca4a6406f6c7695a5ab1a982f3b6205c4e1fe59d28
diff --git a/kde-apps/ark/ark-18.12.0.ebuild b/kde-apps/ark/ark-18.12.0.ebuild
deleted file mode 100644
index 6ed461e7c98b..000000000000
--- a/kde-apps/ark/ark-18.12.0.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="optional"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="KDE Archiving tool"
-HOMEPAGE="https://www.kde.org/applications/utilities/ark
-https://utils.kde.org/projects/ark/"
-KEYWORDS="~amd64 ~x86"
-IUSE="bzip2 lzma zip"
-
-RDEPEND="
- $(add_frameworks_dep karchive)
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kcrash)
- $(add_frameworks_dep kdbusaddons)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep kio)
- $(add_frameworks_dep kitemmodels)
- $(add_frameworks_dep kjobwidgets)
- $(add_frameworks_dep kparts)
- $(add_frameworks_dep kpty)
- $(add_frameworks_dep kservice)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kxmlgui)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtwidgets)
- app-arch/libarchive:=[bzip2?,lzma?,zlib]
- sys-libs/zlib
- zip? ( >=dev-libs/libzip-1.2.0:= )
-"
-DEPEND="${RDEPEND}
- $(add_qt_dep qtconcurrent)
- sys-devel/gettext
-"
-
-# bug #560548, last checked with 16.04.1
-RESTRICT+=" test"
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_find_package bzip2 BZip2)
- $(cmake-utils_use_find_package lzma LibLZMA)
- $(cmake-utils_use_find_package zip LibZip)
- )
-
- kde5_src_configure
-}
-
-pkg_postinst() {
- kde5_pkg_postinst
-
- if [[ -z "${REPLACING_VERSIONS}" ]]; then
- if ! has_version app-arch/unar && ! has_version app-arch/unrar; then
- elog "For extracting rar archives, install app-arch/unar (free) or app-arch/unrar (non-free)."
- fi
-
- has_version app-arch/rar || \
- elog "For creating rar archives, installing app-arch/rar is required."
-
- has_version app-arch/p7zip || \
- elog "For handling 7-Zip archives, install app-arch/p7zip."
-
- has_version app-arch/lrzip || \
- elog "For handling lrz archives, install app-arch/lrzip."
- fi
-}