Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/libkworkspace/
Date: Tue, 01 Sep 2020 16:41:01
Message-Id: 1598978086.66014b69ce8869108d87367977e4afb9f98d24a7.asturm@gentoo
1 commit: 66014b69ce8869108d87367977e4afb9f98d24a7
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 1 16:34:46 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 16:34:46 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=66014b69
7
8 kde-plasma/libkworkspace: drop 5.19.5*
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 .../libkworkspace/libkworkspace-5.19.5.ebuild | 61 ----------------------
13 1 file changed, 61 deletions(-)
14
15 diff --git a/kde-plasma/libkworkspace/libkworkspace-5.19.5.ebuild b/kde-plasma/libkworkspace/libkworkspace-5.19.5.ebuild
16 deleted file mode 100644
17 index 56426b1fa6..0000000000
18 --- a/kde-plasma/libkworkspace/libkworkspace-5.19.5.ebuild
19 +++ /dev/null
20 @@ -1,61 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -ECM_TEST="true"
27 -KDE_ORG_NAME="plasma-workspace"
28 -KFMIN=5.71.0
29 -PVCUT=$(ver_cut 1-3)
30 -QTMIN=5.14.2
31 -inherit ecm kde.org
32 -
33 -DESCRIPTION="Workspace library to interact with the Plasma session manager"
34 -
35 -LICENSE="GPL-2" # TODO: CHECK
36 -SLOT="5"
37 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
38 -IUSE=""
39 -
40 -COMMON_DEPEND="
41 - >=dev-qt/qtdbus-${QTMIN}:5
42 - >=dev-qt/qtx11extras-${QTMIN}:5
43 - >=kde-frameworks/kcoreaddons-${KFMIN}:5
44 - >=kde-frameworks/ki18n-${KFMIN}:5
45 - >=kde-frameworks/kinit-${KFMIN}:5
46 - >=kde-frameworks/kwindowsystem-${KFMIN}:5
47 - >=kde-frameworks/plasma-${KFMIN}:5
48 - >=kde-plasma/kscreenlocker-${PVCUT}:5
49 - x11-libs/libICE
50 - x11-libs/libSM
51 - x11-libs/libX11
52 - x11-libs/libXau
53 -"
54 -DEPEND="${COMMON_DEPEND}
55 - >=kde-plasma/kwin-${PVCUT}:5
56 -"
57 -RDEPEND="${COMMON_DEPEND}
58 - !<kde-plasma/plasma-workspace-5.14.2:5
59 -"
60 -
61 -S="${S}/${PN}"
62 -
63 -PATCHES=( "${FILESDIR}/${PN}-5.18.80-standalone.patch" )
64 -
65 -src_prepare() {
66 - # delete colliding libkworkspace translations, let ecm_src_prepare do its magic
67 - if [[ ${KDE_BUILD_TYPE} = release ]]; then
68 - find ../po -type f -name "*po" -and -not -name "libkworkspace*" -delete || die
69 - rm -rf po/*/docs || die
70 - cp -a ../po ./ || die
71 - fi
72 - ecm_src_prepare
73 - if [[ ${KDE_BUILD_TYPE} = release ]]; then
74 - cat >> CMakeLists.txt <<- _EOF_ || die
75 - ki18n_install(po)
76 - _EOF_
77 - fi
78 -
79 - sed -e "/set/s/GENTOO_PV/$(ver_cut 1-3)/" \
80 - -i CMakeLists.txt || die "Failed to prepare CMakeLists.txt"
81 -}