git » plasma-workspace.git » commit cb8e58f

Disable toplevel fixed positions on Wayland

author Antonio Rojas
2022-07-26 16:47:11 UTC
committer Antonio Rojas
2022-07-26 16:47:11 UTC
parent 368cbb523c22c3a6605d83e34289d454e80f9f60

Disable toplevel fixed positions on Wayland

PKGBUILD +9 -3

diff --git a/PKGBUILD b/PKGBUILD
index 9d378e1..3ef8fae 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
 pkgbase=plasma-workspace
 pkgname=(plasma-workspace plasma-wayland-session)
 pkgver=5.25.3.1
-pkgrel=1
+pkgrel=2
 pkgdesc='KDE Plasma Workspace'
 arch=(x86_64)
 url='https://kde.org/plasma-desktop/'
@@ -17,16 +17,22 @@ depends=(knotifyconfig ksystemstats ktexteditor libqalculate kde-cli-tools appst
          accountsservice kio-extras kio-fuse qt5-tools oxygen-sounds)
 makedepends=(extra-cmake-modules kdoctools gpsd baloo networkmanager-qt plasma-wayland-protocols kunitconversion kinit)
 groups=(plasma)
-source=(https://download.kde.org/stable/plasma/${pkgver%.*}/$pkgbase-$pkgver.tar.xz{,.sig} kde.pam)
+source=(https://download.kde.org/stable/plasma/${pkgver%.*}/$pkgbase-$pkgver.tar.xz{,.sig} kde.pam
+        https://invent.kde.org/plasma/plasma-workspace/-/commit/e87d29c2.patch)
 sha256sums=('a150355ff35a98e17afca3c2239b826817aa178cf89040140aba240066680f26'
             'SKIP'
-            '00090291204baabe9d6857d3b1419832376dd2e279087d718b64792691e86739')
+            '00090291204baabe9d6857d3b1419832376dd2e279087d718b64792691e86739'
+            'b180e972e95597b89209a543e864250ee0f048ff4aefcaa5d0babd87d6a759b8')
 validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D'  # Jonathan Esk-Riddell <jr@jriddell.org>
               '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah <bshah@kde.org>
               'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson <davidedmundson@kde.org>
               '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com>
 options=(debug)
 
+prepare() {
+  patch -d $pkgbase-$pkgver -p1 < e87d29c2.patch # Disable toplevel fixed positions on Wayland
+}
+
 build() {
   cmake -B build -S $pkgbase-$pkgver \
     -DCMAKE_INSTALL_LIBEXECDIR=lib \