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-plasma/xembed-sni-proxy/
Date: Tue, 13 Oct 2020 11:51:14
Message-Id: 1602589854.49d3d3b4c3bd062ae6b5af8f005310214f61ff54.asturm@gentoo
1 commit: 49d3d3b4c3bd062ae6b5af8f005310214f61ff54
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 13 11:38:31 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 13 11:50:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49d3d3b4
7
8 kde-plasma/xembed-sni-proxy: 5.20.0 version bump
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 kde-plasma/xembed-sni-proxy/Manifest | 1 +
13 .../xembed-sni-proxy-5.20.0.ebuild | 44 ++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/kde-plasma/xembed-sni-proxy/Manifest b/kde-plasma/xembed-sni-proxy/Manifest
17 index 764bc8aa0d6..4991332bbe5 100644
18 --- a/kde-plasma/xembed-sni-proxy/Manifest
19 +++ b/kde-plasma/xembed-sni-proxy/Manifest
20 @@ -1 +1,2 @@
21 DIST plasma-workspace-5.19.5.tar.xz 5682264 BLAKE2B 435ea4c73fe50fb78911efb607f1a22ce6fe4a8f089b90b44374e7932d4f0111069dbce0168eedb61de09affdae3549563365bf85b4bbafb33fc69fad6b343e8 SHA512 4cab64c1f817f391a61ae15e37bf1fc936ddd3fb3b234e281a3e5750b67dab05c1c156789446096cbde719bf972e876757c1c5ae78adde4e85f3591fa8df5df9
22 +DIST plasma-workspace-5.20.0.tar.xz 8991780 BLAKE2B 40e57968595b53c63f91bf58fd7714586a9cc1caf2e5cbddc94463699383997e4067b1250fd62a6b2acd6aea6ac0b0e7539920b85aa6f2b95017e5495a68e4c2 SHA512 3b49ad852a1c2cfb1b4f304a25423506825b94ca80809e0e9ea55e1efa100b0b5411b3591087c35750f971e78dc640d851a367fae7c33902d02610d21511a613
23
24 diff --git a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.20.0.ebuild b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.20.0.ebuild
25 new file mode 100644
26 index 00000000000..7fbf12903ee
27 --- /dev/null
28 +++ b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.20.0.ebuild
29 @@ -0,0 +1,44 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +KDE_ORG_NAME="plasma-workspace"
36 +KFMIN=5.74.0
37 +PVCUT=$(ver_cut 1-3)
38 +QTMIN=5.15.1
39 +inherit cmake kde.org
40 +
41 +DESCRIPTION="Legacy xembed tray icons support for SNI-only system trays"
42 +HOMEPAGE="https://invent.kde.org/plasma/plasma-workspace/-/blob/master/xembed-sni-proxy/Readme.md"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="5"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
47 +
48 +DEPEND="
49 + >=dev-qt/qtcore-${QTMIN}:5
50 + >=dev-qt/qtdbus-${QTMIN}:5
51 + >=dev-qt/qtgui-${QTMIN}:5
52 + >=dev-qt/qtx11extras-${QTMIN}:5
53 + >=kde-frameworks/extra-cmake-modules-${KFMIN}:5
54 + >=kde-frameworks/kwindowsystem-${KFMIN}:5[X]
55 + x11-libs/libxcb
56 + x11-libs/libXtst
57 + x11-libs/xcb-util-image
58 +"
59 +RDEPEND="${DEPEND}
60 + !<kde-plasma/plasma-workspace-5.14.2:5
61 + !kde-plasma/xembed-sni-proxy:0
62 +"
63 +
64 +S="${S}/${PN}"
65 +
66 +PATCHES=( "${FILESDIR}/${PN}-5.14.90-standalone.patch" )
67 +
68 +src_prepare() {
69 + cmake_src_prepare
70 +
71 + sed -e "/set/s/GENTOO_PV/$(ver_cut 1-3)/" \
72 + -i CMakeLists.txt || die "Failed to prepare CMakeLists.txt"
73 +}