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/plasma/
Date: Wed, 29 Jun 2022 19:53:32
Message-Id: 1656532396.d0725ca5300d9f3eab35344bf81d8d02955aef97.asturm@gentoo
1 commit: d0725ca5300d9f3eab35344bf81d8d02955aef97
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 19:33:15 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 19:53:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0725ca5
7
8 kde-frameworks/plasma: Drop 5.95.0-r3
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 kde-frameworks/plasma/plasma-5.95.0-r3.ebuild | 75 ---------------------------
14 1 file changed, 75 deletions(-)
15
16 diff --git a/kde-frameworks/plasma/plasma-5.95.0-r3.ebuild b/kde-frameworks/plasma/plasma-5.95.0-r3.ebuild
17 deleted file mode 100644
18 index fc4992b6fe0d..000000000000
19 --- a/kde-frameworks/plasma/plasma-5.95.0-r3.ebuild
20 +++ /dev/null
21 @@ -1,75 +0,0 @@
22 -# Copyright 1999-2022 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=8
26 -
27 -KDE_ORG_NAME="${PN}-framework"
28 -PVCUT=$(ver_cut 1-2)
29 -QTMIN=5.15.3
30 -VIRTUALX_REQUIRED="test"
31 -inherit ecm kde.org
32 -
33 -DESCRIPTION="Plasma framework"
34 -
35 -LICENSE="LGPL-2+"
36 -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
37 -IUSE="gles2-only man wayland X"
38 -
39 -RESTRICT="test"
40 -
41 -RDEPEND="
42 - >=dev-qt/qtdbus-${QTMIN}:5
43 - >=dev-qt/qtdeclarative-${QTMIN}:5
44 - >=dev-qt/qtgui-${QTMIN}:5[gles2-only=,X=]
45 - >=dev-qt/qtquickcontrols-${QTMIN}:5
46 - >=dev-qt/qtsql-${QTMIN}:5
47 - >=dev-qt/qtsvg-${QTMIN}:5
48 - >=dev-qt/qtwidgets-${QTMIN}:5
49 - =kde-frameworks/kactivities-${PVCUT}*:5
50 - =kde-frameworks/karchive-${PVCUT}*:5
51 - =kde-frameworks/kconfig-${PVCUT}*:5[qml]
52 - =kde-frameworks/kconfigwidgets-${PVCUT}*:5
53 - =kde-frameworks/kcoreaddons-${PVCUT}*:5
54 - =kde-frameworks/kdeclarative-${PVCUT}*:5
55 - =kde-frameworks/kglobalaccel-${PVCUT}*:5
56 - =kde-frameworks/kguiaddons-${PVCUT}*:5
57 - =kde-frameworks/ki18n-${PVCUT}*:5
58 - =kde-frameworks/kiconthemes-${PVCUT}*:5
59 - =kde-frameworks/kio-${PVCUT}*:5
60 - =kde-frameworks/kirigami-${PVCUT}*:5
61 - =kde-frameworks/knotifications-${PVCUT}*:5
62 - =kde-frameworks/kpackage-${PVCUT}*:5
63 - =kde-frameworks/kservice-${PVCUT}*:5
64 - =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
65 - =kde-frameworks/kwindowsystem-${PVCUT}*:5
66 - =kde-frameworks/kxmlgui-${PVCUT}*:5
67 - !gles2-only? ( media-libs/libglvnd[X?] )
68 - wayland? (
69 - =kde-frameworks/kwayland-${PVCUT}*:5
70 - media-libs/libglvnd
71 - )
72 - X? (
73 - >=dev-qt/qtx11extras-${QTMIN}:5
74 - x11-libs/libX11
75 - x11-libs/libxcb
76 - )
77 -"
78 -DEPEND="${RDEPEND}
79 - X? ( x11-base/xorg-proto )
80 -"
81 -BDEPEND="man? ( >=kde-frameworks/kdoctools-${PVCUT}:5 )"
82 -
83 -PATCHES=( "${FILESDIR}/${P}-revert-QT_FEATURE_foo.patch" )
84 -
85 -src_configure() {
86 - local mycmakeargs=(
87 - $(cmake_use_find_package !gles2-only OpenGL)
88 - $(cmake_use_find_package man KF5DocTools)
89 - $(cmake_use_find_package wayland EGL)
90 - $(cmake_use_find_package wayland KF5Wayland)
91 - $(cmake_use_find_package X X11)
92 - $(cmake_use_find_package X XCB)
93 - )
94 -
95 - ecm_src_configure
96 -}