diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-28 21:09:32 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-31 11:50:34 +0200 |
commit | 16efdcca959f10d82c40035437ad20aa6a494c1f (patch) | |
tree | 60d4f78aa247aa247d200910f8a85a876d966d70 /x11-misc | |
parent | sci-misc/jupyterlab-desktop-bin: drop 3.4.4.1 (diff) | |
download | gentoo-16efdcca959f10d82c40035437ad20aa6a494c1f.tar.gz gentoo-16efdcca959f10d82c40035437ad20aa6a494c1f.tar.bz2 gentoo-16efdcca959f10d82c40035437ad20aa6a494c1f.zip |
x11-misc/xbindkeys: drop 1.8.6-r1, EAPI-6--
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xbindkeys/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/xbindkeys/files/xbindkeys-apply-mask-on-release-event-status.patch | 28 | ||||
-rw-r--r-- | x11-misc/xbindkeys/xbindkeys-1.8.6-r1.ebuild | 29 |
3 files changed, 0 insertions, 58 deletions
diff --git a/x11-misc/xbindkeys/Manifest b/x11-misc/xbindkeys/Manifest index 8c5f2f19b9c5..084a2ff8da29 100644 --- a/x11-misc/xbindkeys/Manifest +++ b/x11-misc/xbindkeys/Manifest @@ -1,2 +1 @@ -DIST xbindkeys-1.8.6.tar.gz 151941 BLAKE2B f5eafb8f3655cbfa1ae7d7c5ed0bcdac97d4105df8df7a0aeecc267e08fbae8297713fc14c3e36871493e23959b624d5a88ba45cbef715a79df7de1f0927152f SHA512 3c77541eae9f87d2020c2272984c221094276dae2a8690c5cec9fe1b23c0139229b8f56876170da70684aeaa128642349b6835c375d473186cbf8123517173ba DIST xbindkeys-1.8.7.tar.gz 177532 BLAKE2B 9ff6c9cd10bb6f2bf96a288482edb50e6671c9e4e3b5c136bdfaa92796f9e9bcfc42ab69ca3546c3871bdcdba1e952631cbd3d288dce9738986c20680e91c316 SHA512 a6b1478e8ef4bedc686fdd15abc11a8a592ac17c69e1a5a13f60e735e9be9646faed62e980cdac4aa7bc7e3253237465de38dee98935dd3f9911d4e48209b2e9 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 deleted file mode 100644 index 427983e2d12b..000000000000 --- a/x11-misc/xbindkeys/files/xbindkeys-apply-mask-on-release-event-status.patch +++ /dev/null @@ -1,28 +0,0 @@ -commit ceb7093f8d77cf5952e8e7778db02a6f3e8d8872 -Author: Alberto <address@hidden> -Date: Mon Feb 10 09:21:57 2014 +0200 - - fix keyboard layout problems - -diff --git a/xbindkeys.c b/xbindkeys.c -index b0adef9..162e47e 100644 ---- a/xbindkeys.c -+++ b/xbindkeys.c -@@ -377,7 +377,7 @@ event_loop (Display * d) - printf ("e.xbutton.state=%d\n", e.xbutton.state); - } - -- e.xbutton.state &= ~(numlock_mask | capslock_mask | scrolllock_mask -+ e.xbutton.state &= 0x1FFF && ~(numlock_mask | capslock_mask | scrolllock_mask - | Button1Mask | Button2Mask | Button3Mask - | Button4Mask | Button5Mask); - -@@ -409,7 +409,7 @@ event_loop (Display * d) - printf ("e.xbutton.state=%d\n", e.xbutton.state); - } - -- e.xbutton.state &= ~(numlock_mask | capslock_mask | scrolllock_mask -+ e.xbutton.state &= 0x1FFF && ~(numlock_mask | capslock_mask | scrolllock_mask - | Button1Mask | Button2Mask | Button3Mask - | Button4Mask | Button5Mask); - diff --git a/x11-misc/xbindkeys/xbindkeys-1.8.6-r1.ebuild b/x11-misc/xbindkeys/xbindkeys-1.8.6-r1.ebuild deleted file mode 100644 index ff72ad31364c..000000000000 --- a/x11-misc/xbindkeys/xbindkeys-1.8.6-r1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -DESCRIPTION="Tool for launching commands on keystrokes" -SRC_URI="https://www.nongnu.org/${PN}/${P}.tar.gz" -HOMEPAGE="https://www.nongnu.org/xbindkeys/xbindkeys.html" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris" -IUSE="guile tk" - -RDEPEND="x11-libs/libX11 - guile? ( >=dev-scheme/guile-1.8.4[deprecated] ) - tk? ( dev-lang/tk )" -DEPEND="${RDEPEND} - x11-base/xorg-proto" - -PATCHES=( - "${FILESDIR}/${PN}-apply-mask-on-release-event-status.patch" -) - -src_configure() { - econf \ - $(use_enable tk) \ - $(use_enable guile) -} |