Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xsm/
Date: Mon, 04 Apr 2022 02:40:05
Message-Id: 1649039813.9e4561bd2aabc10a6053d9cfdf4c9f14fa9e4ca7.mattst88@gentoo
1 commit: 9e4561bd2aabc10a6053d9cfdf4c9f14fa9e4ca7
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 4 02:36:46 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 4 02:36:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e4561bd
7
8 x11-apps/xsm: Version bump to 1.0.5
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-apps/xsm/Manifest | 1 +
13 x11-apps/xsm/xsm-1.0.5.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/x11-apps/xsm/Manifest b/x11-apps/xsm/Manifest
17 index 871a8cb966ba..594a4a7327f1 100644
18 --- a/x11-apps/xsm/Manifest
19 +++ b/x11-apps/xsm/Manifest
20 @@ -1 +1,2 @@
21 DIST xsm-1.0.4.tar.bz2 170933 BLAKE2B 05cf4614440f36da6ed1e8e0949ef6955da03d1fe0cc2d0323150b34ea01c293301aa49006a93fe7c44c842db41fb6b66a2f4a4051ddf2258143e54a6e99b390 SHA512 d4e4da7c309a4eae126d2b58a13684f4dbc06b09f76dde9c89c707375df2843614f3d83bc44f9cd02f239200db3397abd86796dca0dbafc69f60482b0af5a176
22 +DIST xsm-1.0.5.tar.xz 159496 BLAKE2B 18531fd06970a244478cd674cac1d669d4fcecb4f680a656c5182927c76a111aa82b96fd96e5b887d6f8b44e7ab88292607812b7d6bbcac86d9f4448bbb4fed5 SHA512 df3777b3aab813ec8aa906f5a03f93b8ca645978970290cf7baf732e175c36c00ae19baeb45ea7404d35838c21e6f8fca28f0da3e2f398d17adac5f2acb7b351
23
24 diff --git a/x11-apps/xsm/xsm-1.0.5.ebuild b/x11-apps/xsm/xsm-1.0.5.ebuild
25 new file mode 100644
26 index 000000000000..22022dd49fb0
27 --- /dev/null
28 +++ b/x11-apps/xsm/xsm-1.0.5.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +XORG_TARBALL_SUFFIX="xz"
36 +inherit xorg-3
37 +
38 +DESCRIPTION="X Session Manager"
39 +
40 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
41 +
42 +RDEPEND="x11-libs/libXaw
43 + x11-libs/libX11
44 + x11-libs/libXt
45 + x11-libs/libICE
46 + x11-libs/libSM"
47 +DEPEND="${RDEPEND}
48 + x11-base/xorg-proto"
49 +
50 +pkg_setup() {
51 + # (#158056) /usr/$(get_libdir)/X11/xsm could be a symlink
52 + local XSMPATH="${EROOT}/usr/$(get_libdir)/X11/xsm"
53 + if [[ -L ${XSMPATH} ]]; then
54 + einfo "Removing symlink ${XSMPATH}"
55 + rm -f ${XSMPATH} || die "failed to remove symlink ${XSMPATH}"
56 + fi
57 + xorg-3_pkg_setup
58 +}