Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xbindkeys/, x11-misc/xbindkeys/files/
Date: Wed, 31 Aug 2022 09:50:54
Message-Id: 1661939434.16efdcca959f10d82c40035437ad20aa6a494c1f.asturm@gentoo
1 commit: 16efdcca959f10d82c40035437ad20aa6a494c1f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 19:09:32 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 09:50:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16efdcca
7
8 x11-misc/xbindkeys: drop 1.8.6-r1, EAPI-6--
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 x11-misc/xbindkeys/Manifest | 1 -
13 ...ndkeys-apply-mask-on-release-event-status.patch | 28 ---------------------
14 x11-misc/xbindkeys/xbindkeys-1.8.6-r1.ebuild | 29 ----------------------
15 3 files changed, 58 deletions(-)
16
17 diff --git a/x11-misc/xbindkeys/Manifest b/x11-misc/xbindkeys/Manifest
18 index 8c5f2f19b9c5..084a2ff8da29 100644
19 --- a/x11-misc/xbindkeys/Manifest
20 +++ b/x11-misc/xbindkeys/Manifest
21 @@ -1,2 +1 @@
22 -DIST xbindkeys-1.8.6.tar.gz 151941 BLAKE2B f5eafb8f3655cbfa1ae7d7c5ed0bcdac97d4105df8df7a0aeecc267e08fbae8297713fc14c3e36871493e23959b624d5a88ba45cbef715a79df7de1f0927152f SHA512 3c77541eae9f87d2020c2272984c221094276dae2a8690c5cec9fe1b23c0139229b8f56876170da70684aeaa128642349b6835c375d473186cbf8123517173ba
23 DIST xbindkeys-1.8.7.tar.gz 177532 BLAKE2B 9ff6c9cd10bb6f2bf96a288482edb50e6671c9e4e3b5c136bdfaa92796f9e9bcfc42ab69ca3546c3871bdcdba1e952631cbd3d288dce9738986c20680e91c316 SHA512 a6b1478e8ef4bedc686fdd15abc11a8a592ac17c69e1a5a13f60e735e9be9646faed62e980cdac4aa7bc7e3253237465de38dee98935dd3f9911d4e48209b2e9
24
25 diff --git a/x11-misc/xbindkeys/files/xbindkeys-apply-mask-on-release-event-status.patch b/x11-misc/xbindkeys/files/xbindkeys-apply-mask-on-release-event-status.patch
26 deleted file mode 100644
27 index 427983e2d12b..000000000000
28 --- a/x11-misc/xbindkeys/files/xbindkeys-apply-mask-on-release-event-status.patch
29 +++ /dev/null
30 @@ -1,28 +0,0 @@
31 -commit ceb7093f8d77cf5952e8e7778db02a6f3e8d8872
32 -Author: Alberto <address@hidden>
33 -Date: Mon Feb 10 09:21:57 2014 +0200
34 -
35 - fix keyboard layout problems
36 -
37 -diff --git a/xbindkeys.c b/xbindkeys.c
38 -index b0adef9..162e47e 100644
39 ---- a/xbindkeys.c
40 -+++ b/xbindkeys.c
41 -@@ -377,7 +377,7 @@ event_loop (Display * d)
42 - printf ("e.xbutton.state=%d\n", e.xbutton.state);
43 - }
44 -
45 -- e.xbutton.state &= ~(numlock_mask | capslock_mask | scrolllock_mask
46 -+ e.xbutton.state &= 0x1FFF && ~(numlock_mask | capslock_mask | scrolllock_mask
47 - | Button1Mask | Button2Mask | Button3Mask
48 - | Button4Mask | Button5Mask);
49 -
50 -@@ -409,7 +409,7 @@ event_loop (Display * d)
51 - printf ("e.xbutton.state=%d\n", e.xbutton.state);
52 - }
53 -
54 -- e.xbutton.state &= ~(numlock_mask | capslock_mask | scrolllock_mask
55 -+ e.xbutton.state &= 0x1FFF && ~(numlock_mask | capslock_mask | scrolllock_mask
56 - | Button1Mask | Button2Mask | Button3Mask
57 - | Button4Mask | Button5Mask);
58 -
59
60 diff --git a/x11-misc/xbindkeys/xbindkeys-1.8.6-r1.ebuild b/x11-misc/xbindkeys/xbindkeys-1.8.6-r1.ebuild
61 deleted file mode 100644
62 index ff72ad31364c..000000000000
63 --- a/x11-misc/xbindkeys/xbindkeys-1.8.6-r1.ebuild
64 +++ /dev/null
65 @@ -1,29 +0,0 @@
66 -# Copyright 1999-2020 Gentoo Authors
67 -# Distributed under the terms of the GNU General Public License v2
68 -
69 -EAPI="6"
70 -
71 -DESCRIPTION="Tool for launching commands on keystrokes"
72 -SRC_URI="https://www.nongnu.org/${PN}/${P}.tar.gz"
73 -HOMEPAGE="https://www.nongnu.org/xbindkeys/xbindkeys.html"
74 -
75 -LICENSE="GPL-2"
76 -SLOT="0"
77 -KEYWORDS="amd64 ~arm ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
78 -IUSE="guile tk"
79 -
80 -RDEPEND="x11-libs/libX11
81 - guile? ( >=dev-scheme/guile-1.8.4[deprecated] )
82 - tk? ( dev-lang/tk )"
83 -DEPEND="${RDEPEND}
84 - x11-base/xorg-proto"
85 -
86 -PATCHES=(
87 - "${FILESDIR}/${PN}-apply-mask-on-release-event-status.patch"
88 -)
89 -
90 -src_configure() {
91 - econf \
92 - $(use_enable tk) \
93 - $(use_enable guile)
94 -}