Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kio/
Date: Sat, 06 Aug 2022 07:45:09
Message-Id: 1659770485.5a2d3f999e836360b6af3541fb593c315d701fe7.asturm@gentoo
1 commit: 5a2d3f999e836360b6af3541fb593c315d701fe7
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 6 07:20:27 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 6 07:21:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a2d3f99
7
8 kde-frameworks/kio: drop 5.96.0-r1
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 kde-frameworks/kio/kio-5.96.0-r1.ebuild | 96 ---------------------------------
13 1 file changed, 96 deletions(-)
14
15 diff --git a/kde-frameworks/kio/kio-5.96.0-r1.ebuild b/kde-frameworks/kio/kio-5.96.0-r1.ebuild
16 deleted file mode 100644
17 index b0ac9188780f..000000000000
18 --- a/kde-frameworks/kio/kio-5.96.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,96 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -ECM_DESIGNERPLUGIN="true"
27 -ECM_TEST="forceoptional"
28 -PVCUT=$(ver_cut 1-2)
29 -QTMIN=5.15.4
30 -VIRTUALX_REQUIRED="test"
31 -inherit ecm frameworks.kde.org xdg-utils
32 -
33 -DESCRIPTION="Framework providing transparent file and data management"
34 -
35 -LICENSE="LGPL-2+"
36 -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
37 -IUSE="acl +handbook kerberos +kwallet X"
38 -
39 -# tests hang
40 -RESTRICT="test"
41 -
42 -RDEPEND="
43 - dev-libs/libxml2
44 - dev-libs/libxslt
45 - >=dev-qt/qtdbus-${QTMIN}:5
46 - >=dev-qt/qtdeclarative-${QTMIN}:5
47 - >=dev-qt/qtgui-${QTMIN}:5
48 - >=dev-qt/qtnetwork-${QTMIN}:5[ssl]
49 - >=dev-qt/qtwidgets-${QTMIN}:5
50 - >=dev-qt/qtxml-${QTMIN}:5
51 - =kde-frameworks/kauth-${PVCUT}*:5
52 - =kde-frameworks/karchive-${PVCUT}*:5
53 - =kde-frameworks/kbookmarks-${PVCUT}*:5
54 - =kde-frameworks/kcodecs-${PVCUT}*:5
55 - =kde-frameworks/kcompletion-${PVCUT}*:5
56 - =kde-frameworks/kconfig-${PVCUT}*:5
57 - =kde-frameworks/kconfigwidgets-${PVCUT}*:5
58 - =kde-frameworks/kcoreaddons-${PVCUT}*:5
59 - =kde-frameworks/kcrash-${PVCUT}*:5
60 - =kde-frameworks/kdbusaddons-${PVCUT}*:5
61 - =kde-frameworks/kguiaddons-${PVCUT}*:5
62 - =kde-frameworks/ki18n-${PVCUT}*:5
63 - =kde-frameworks/kiconthemes-${PVCUT}*:5
64 - =kde-frameworks/kitemviews-${PVCUT}*:5
65 - =kde-frameworks/kjobwidgets-${PVCUT}*:5
66 - =kde-frameworks/knotifications-${PVCUT}*:5
67 - =kde-frameworks/kservice-${PVCUT}*:5
68 - =kde-frameworks/ktextwidgets-${PVCUT}*:5
69 - =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
70 - =kde-frameworks/kwindowsystem-${PVCUT}*:5
71 - =kde-frameworks/kxmlgui-${PVCUT}*:5
72 - =kde-frameworks/solid-${PVCUT}*:5
73 - acl? (
74 - sys-apps/attr
75 - virtual/acl
76 - )
77 - handbook? ( =kde-frameworks/kdoctools-${PVCUT}*:5 )
78 - kerberos? ( virtual/krb5 )
79 - kwallet? ( =kde-frameworks/kwallet-${PVCUT}*:5 )
80 - X? ( >=dev-qt/qtx11extras-${QTMIN}:5 )
81 -"
82 -DEPEND="${RDEPEND}
83 - >=dev-qt/qtconcurrent-${QTMIN}:5
84 - test? ( sys-libs/zlib )
85 - X? (
86 - x11-base/xorg-proto
87 - x11-libs/libX11
88 - x11-libs/libXrender
89 - )
90 -"
91 -PDEPEND=">=kde-frameworks/kded-${PVCUT}:5"
92 -
93 -PATCHES=( "${FILESDIR}/${P}-fix-crash-in-dropjob.patch" ) # KDE-bug #454747
94 -
95 -src_configure() {
96 - local mycmakeargs=(
97 - -DKIO_NO_PUBLIC_QTCONCURRENT=ON
98 - $(cmake_use_find_package acl ACL)
99 - $(cmake_use_find_package handbook KF5DocTools)
100 - $(cmake_use_find_package kerberos GSSAPI)
101 - $(cmake_use_find_package kwallet KF5Wallet)
102 - $(cmake_use_find_package X X11)
103 - )
104 -
105 - ecm_src_configure
106 -}
107 -
108 -pkg_postinst() {
109 - ecm_pkg_postinst
110 - xdg_desktop_database_update
111 -}
112 -
113 -pkg_postrm() {
114 - ecm_pkg_postrm
115 - xdg_desktop_database_update
116 -}