Package Details: gnome-shell-extension-x11gestures 17-1

Git Clone URL: https://aur.archlinux.org/gnome-shell-extension-x11gestures.git (read-only, click to copy)
Package Base: gnome-shell-extension-x11gestures
Description: Enable GNOME Shell multi-touch gestures on X11
Upstream URL: https://github.com/JoseExposito/gnome-shell-extension-x11gestures
Licenses: GPL
Submitter: tdy
Maintainer: tdy
Last Packager: tdy
Votes: 5
Popularity: 0.000031
First Submitted: 2021-02-28 19:24 (UTC)
Last Updated: 2023-05-11 16:32 (UTC)

Latest Comments

shurizzle commented on 2023-10-12 01:04 (UTC)

@yochananmarqos I'm really sorry but I didn't think that a 2 line patch for a software that updates 2 or 3 times a year would fit into this case. I updated the post with a gist, I wouldn't want to bother the guy via email.

By the way the right link is https://wiki.archlinux.org/title/Arch_User_Repository#Commenting_on_packages

yochananmarqos commented on 2023-10-11 22:27 (UTC) (edited on 2023-10-12 14:28 (UTC) by yochananmarqos)

@shura:

Avoid pasting patches or PKGBUILDs into the comments section: they quickly become obsolete and just end up needlessly taking up lots of space. Instead, email those files to the maintainer, or even use a pastebin.

-- https://wiki.archlinux.org/title/Arch_User_Repository#Commenting_on_packages

shurizzle commented on 2023-10-11 21:46 (UTC) (edited on 2023-10-12 01:02 (UTC) by shurizzle)

Here is the patch for the new version https://gist.github.com/shurizzle/a24ae4d6e89c177da128baa09833e147

Kasami commented on 2022-11-21 22:54 (UTC)

Hey, @tdy, Could you update to latest version, please?

Here's patch that worked for me

diff --git a/PKGBUILD b/PKGBUILD
index c3337bd..5e6b197 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@

 pkgname=gnome-shell-extension-x11gestures
 _uuid=x11gestures@joseexposito.github.io
-pkgver=14
+pkgver=15
 pkgrel=1
 pkgdesc="Enable GNOME Shell multi-touch gestures on X11"
 arch=(any)
@@ -12,7 +12,7 @@ depends=(gnome-shell touchegg)
 install=$pkgname.install
 source=($_uuid-$pkgver.zip::https://github.com/JoseExposito/$pkgname/releases/download/$pkgver/$_uuid.zip)
 noextract=($_uuid-$pkgver.zip)
-sha256sums=(860941664cfcff4a0fa6953bc4efdc34354b6ffa48f5b32a2a5034eb4a63132e)
+sha256sums=(ee00ccd91fb84bddd47a4044e36d45b3a40ee3fec8d6179d7e85711f0a46619f)

 package() {
     bsdtar -xf "$srcdir"/$_uuid-$pkgver.zip \
-- 
2.38.1

langfingaz commented on 2022-11-18 11:09 (UTC)

After changing pkgver to pkgver=15 and running updpkgsums I was able to build the latest release and touch gestures work again in Gnome 43. Would be great if you find the time to update this package on the AUR @tdy.

tdy commented on 2021-04-27 17:13 (UTC)

Fixed, thanks

yochananmarqos commented on 2021-04-27 14:37 (UTC)

noextract() should be $_uuid-$pkgver.zip.

tdy commented on 2021-03-27 13:11 (UTC)

Fixed, thanks

siliconmeadow commented on 2021-03-27 10:28 (UTC)

Hi,

The sha256sum needs to be updated:

diff --git a/PKGBUILD b/PKGBUILD
index 5ca727f..e7b25ba 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,7 +12,7 @@ depends=(gnome-shell touchegg)
 install=$pkgname.install
 source=(https://github.com/JoseExposito/$pkgname/releases/download/$pkgver/$_uuid.zip)
 noextract=($_uuid.zip)
-sha256sums=(065cd60ae902a5f020b020e01d718870ca508f9a111e88ff7d439a930bf393b2)
+sha256sums=(09989eea5902622f9f90f44409931232617527ae1a7472283b740af289964a24)

 package() {
     bsdtar -xf "$srcdir"/$_uuid.zip \

HTH