summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTérence Clastres2019-10-15 03:18:45 +0200
committerTérence Clastres2019-10-15 03:19:36 +0200
commitdad17b592d0e1712333f8976baf8c6927368d60b (patch)
tree31bf9836a78f507047677d8849c45fa4a1c65509
parent944d99bf5a1965581e7fda49a20be5f166a49900 (diff)
downloadaur-dad17b592d0e1712333f8976baf8c6927368d60b.tar.gz
Update to 3.34.1
-rw-r--r--.SRCINFO6
-rw-r--r--739.patch35
-rw-r--r--PKGBUILD4
3 files changed, 5 insertions, 40 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e2ed18e3cb31..152889d5a83f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = gnome-shell-performance
pkgdesc = Next generation desktop shell
- pkgver = 3.34.0+175+g3d39b32a0
+ pkgver = 3.34.1
pkgrel = 1
url = https://wiki.gnome.org/Projects/GnomeShell
install = gnome-shell-performance.install
@@ -37,9 +37,9 @@ pkgbase = gnome-shell-performance
optdepends = gnome-control-center: System settings
optdepends = evolution-data-server: Evolution calendar integration
provides = gnome-shell
- provides = gnome-shell=3.34.0+175+g3d39b32a0
+ provides = gnome-shell=3.34.1
conflicts = gnome-shell
- source = git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=3d39b32a0b65da23d3e6e1513bd7388afdf0e87a
+ source = git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=986600ab31383724e2eeb4fe2475b3d7fcfb54fc
source = git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git
sha256sums = SKIP
sha256sums = SKIP
diff --git a/739.patch b/739.patch
deleted file mode 100644
index ae366834223b..000000000000
--- a/739.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 4411d9db6ee6112f987fac8469a2cc617f4f9b6c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
-Date: Fri, 20 Sep 2019 21:08:45 +0200
-Subject: [PATCH] shellDBus: Don't assume devices have a node
-
-Clutter.InputDevice.get_device_node() may return null. Handle that
-case when building the 'AcceleratorActivated' vardict parameter.
-
-https://gitlab.gnome.org/GNOME/gnome-shell/issues/1641
----
- js/ui/shellDBus.js | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/js/ui/shellDBus.js b/js/ui/shellDBus.js
-index e750c207f9..fca0b64255 100644
---- a/js/ui/shellDBus.js
-+++ b/js/ui/shellDBus.js
-@@ -151,9 +151,13 @@ var GnomeShell = class {
- let connection = this._dbusImpl.get_connection();
- let info = this._dbusImpl.get_info();
- let params = { 'device-id': GLib.Variant.new('u', device.get_device_id()),
-- 'device-node': GLib.Variant.new('s', device.get_device_node()),
- 'timestamp': GLib.Variant.new('u', timestamp),
- 'action-mode': GLib.Variant.new('u', Main.actionMode) };
-+
-+ let deviceNode = device.get_device_node();
-+ if (deviceNode)
-+ params['device-node'] = GLib.Variant.new('s', deviceNode);
-+
- connection.emit_signal(destination,
- this._dbusImpl.get_object_path(),
- info ? info.name : null,
---
-2.22.0
-
diff --git a/PKGBUILD b/PKGBUILD
index ebb463a7d962..46be33e4da20 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=gnome-shell-performance
_pkgname=gnome-shell
-pkgver=3.34.0+175+g3d39b32a0
+pkgver=3.34.1
pkgrel=1
pkgdesc="Next generation desktop shell"
url="https://wiki.gnome.org/Projects/GnomeShell"
@@ -22,7 +22,7 @@ groups=(gnome)
provides=(gnome-shell gnome-shell=$pkgver)
conflicts=(gnome-shell)
install=$pkgname.install
-_commit=3d39b32a0b65da23d3e6e1513bd7388afdf0e87a # master
+_commit=986600ab31383724e2eeb4fe2475b3d7fcfb54fc # tags/3.34.1^0
source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit"
"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git")
sha256sums=('SKIP'