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, 18 Jan 2022 17:40:46
Message-Id: 1642527397.5b0b3f68905a44356ce940b38cd9e025046a09f9.asturm@gentoo
1 commit: 5b0b3f68905a44356ce940b38cd9e025046a09f9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 18 17:23:02 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 18 17:36:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b0b3f68
7
8 kde-plasma/xembed-sni-proxy: 5.23.90 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.23.90.ebuild | 43 ++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/kde-plasma/xembed-sni-proxy/Manifest b/kde-plasma/xembed-sni-proxy/Manifest
17 index 5a12397eaa43..e5b78db71c63 100644
18 --- a/kde-plasma/xembed-sni-proxy/Manifest
19 +++ b/kde-plasma/xembed-sni-proxy/Manifest
20 @@ -1,2 +1,3 @@
21 DIST plasma-workspace-5.23.4.tar.xz 9012468 BLAKE2B 491c211bbfdecb1a4e7adb15647c6f9d7d2ded3314ddef855b79b4a222e1bedb4ac88b8a380d66ea296b6696248d67d0ce4757853d01300abdfbe85394936abe SHA512 730e8a69e5dc2e22db1356832aa2adc9255de179ed139c0abe06ad6b44dd0cffb8f214b32eb1f882eb73c337f44e16f64873789130939e25b2b8bab23d2dcfc2
22 DIST plasma-workspace-5.23.5.tar.xz 9010724 BLAKE2B 215b862bcf31c4cadc381f80edbc28f6f63d73066dcb43200b1527a07312bda2721ed1cee700d009f4c67add01a1546a7b0cbae944b28dd3ad22e5ae29212bc5 SHA512 5f55137a1c0949ea65e61d8bbf5476a7ba56ef5afd721945c42817030d1c519ada86442426a4eda0dca164cd6676534f710ddc588c319f849415224b6c953099
23 +DIST plasma-workspace-5.23.90.tar.xz 18479952 BLAKE2B cb7a6115230c27504a8c9b6439362baaacd70706bc76533c32d9c793bdae3d504b645ba2b6172254d81224d02c29468278cf1d9939a636cf3990633b118f45f1 SHA512 521f6a33649549af9a15c55c1143b364fa0d094ee1265f8a9d113e8f1730fb766a31aa60a10aab35bd07b2e669b8390e426ab0aeb7ba2313c05bb2c983b21cf5
24
25 diff --git a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.23.90.ebuild b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.23.90.ebuild
26 new file mode 100644
27 index 000000000000..b73f5cac8f27
28 --- /dev/null
29 +++ b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.23.90.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +KDE_ORG_NAME="plasma-workspace"
37 +KFMIN=5.90.0
38 +PVCUT=$(ver_cut 1-3)
39 +QTMIN=5.15.2
40 +inherit cmake kde.org
41 +
42 +DESCRIPTION="Legacy xembed tray icons support for SNI-only system trays"
43 +HOMEPAGE="https://invent.kde.org/plasma/plasma-workspace/-/blob/master/xembed-sni-proxy/Readme.md"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="5"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
48 +
49 +DEPEND="
50 + >=dev-qt/qtcore-${QTMIN}:5
51 + >=dev-qt/qtdbus-${QTMIN}:5
52 + >=dev-qt/qtgui-${QTMIN}:5
53 + >=dev-qt/qtx11extras-${QTMIN}:5
54 + >=kde-frameworks/extra-cmake-modules-${KFMIN}:5
55 + >=kde-frameworks/kwindowsystem-${KFMIN}:5[X]
56 + x11-libs/libxcb
57 + x11-libs/libXtst
58 + x11-libs/xcb-util-image
59 +"
60 +RDEPEND="${DEPEND}
61 + !kde-plasma/xembed-sni-proxy:0
62 +"
63 +
64 +S="${S}/${PN}"
65 +
66 +PATCHES=( "${FILESDIR}/${PN}-5.20.80-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 +}