[arch-commits] Commit in kwin/repos/extra-x86_64 (4 files)

Antonio Rojas arojas at gemini.archlinux.org
Mon Oct 18 11:29:26 UTC 2021


    Date: Monday, October 18, 2021 @ 11:29:26
  Author: arojas
Revision: 426194

archrelease: copy trunk to extra-x86_64

Added:
  kwin/repos/extra-x86_64/PKGBUILD
    (from rev 426193, kwin/trunk/PKGBUILD)
  kwin/repos/extra-x86_64/kwin.install
    (from rev 426193, kwin/trunk/kwin.install)
Deleted:
  kwin/repos/extra-x86_64/PKGBUILD
  kwin/repos/extra-x86_64/kwin.install

--------------+
 PKGBUILD     |   76 ++++++++++++++++++++++++++++++---------------------------
 kwin.install |   18 ++++++-------
 2 files changed, 50 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-10-18 11:28:40 UTC (rev 426193)
+++ PKGBUILD	2021-10-18 11:29:26 UTC (rev 426194)
@@ -1,35 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Maintainer: Antonio Rojas <arojas at archlinux.org>
-# Contributor: Andrea Scarpino <andrea at archlinux.org>
-
-pkgname=kwin
-pkgver=5.23.0
-pkgrel=1
-pkgdesc='An easy to use, but flexible, composited Window Manager'
-arch=(x86_64)
-url='https://kde.org/plasma-desktop/'
-license=(LGPL)
-depends=(kscreenlocker xcb-util-cursor plasma-framework kcmutils kwayland-server breeze
-         pipewire-media-session libqaccessibilityclient lcms2)
-makedepends=(extra-cmake-modules qt5-tools kdoctools krunner)
-optdepends=('maliit-keyboard: virtual keyboard for kwin-wayland')
-groups=(plasma)
-source=(https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz{,.sig})
-install=$pkgname.install
-sha256sums=('ba74f70648faa3c92c88e1b77916c6abd7fcad1af9e717a39dc9df278f1a551f'
-            'SKIP')
-validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D'  # Jonathan Esk-Riddell <jr at jriddell.org>
-              '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah <bshah at kde.org>
-              'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson <davidedmundson at kde.org>
-              '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart at gmail.com>
-
-build() {
-  cmake -B build -S $pkgname-$pkgver \
-    -DCMAKE_INSTALL_LIBEXECDIR=lib \
-    -DBUILD_TESTING=OFF
-  cmake --build build
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-}

Copied: kwin/repos/extra-x86_64/PKGBUILD (from rev 426193, kwin/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-10-18 11:29:26 UTC (rev 426194)
@@ -0,0 +1,41 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=kwin
+pkgver=5.23.0
+pkgrel=2
+pkgdesc='An easy to use, but flexible, composited Window Manager'
+arch=(x86_64)
+url='https://kde.org/plasma-desktop/'
+license=(LGPL)
+depends=(kscreenlocker xcb-util-cursor plasma-framework kcmutils kwayland-server breeze
+         pipewire-media-session libqaccessibilityclient lcms2)
+makedepends=(extra-cmake-modules qt5-tools kdoctools krunner)
+optdepends=('maliit-keyboard: virtual keyboard for kwin-wayland')
+groups=(plasma)
+source=(https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz{,.sig}
+        https://invent.kde.org/plasma/kwin/-/commit/85f8a533.patch)
+install=$pkgname.install
+sha256sums=('ba74f70648faa3c92c88e1b77916c6abd7fcad1af9e717a39dc9df278f1a551f'
+            'SKIP'
+            '2c42a47dd1d62cde93d3d392d42056689d8fdbc24cd8497bd29adf113e16a7be')
+validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D'  # Jonathan Esk-Riddell <jr at jriddell.org>
+              '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D'  # Bhushan Shah <bshah at kde.org>
+              'D07BD8662C56CB291B316EB2F5675605C74E02CF'  # David Edmundson <davidedmundson at kde.org>
+              '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart at gmail.com>
+
+prepare() {
+  patch -d $pkgname-$pkgver -p1 < 85f8a533.patch # Properly unredirect windows if compositing is not possible
+}
+
+build() {
+  cmake -B build -S $pkgname-$pkgver \
+    -DCMAKE_INSTALL_LIBEXECDIR=lib \
+    -DBUILD_TESTING=OFF
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+}

Deleted: kwin.install
===================================================================
--- kwin.install	2021-10-18 11:28:40 UTC (rev 426193)
+++ kwin.install	2021-10-18 11:29:26 UTC (rev 426194)
@@ -1,9 +0,0 @@
-post_install() {
-# this is executed by make install, but doesn't work since setcap can only be run as root
-  setcap CAP_SYS_NICE=+ep /usr/bin/kwin_wayland
-}
-
-post_upgrade() {
-  post_install
-}
-

Copied: kwin/repos/extra-x86_64/kwin.install (from rev 426193, kwin/trunk/kwin.install)
===================================================================
--- kwin.install	                        (rev 0)
+++ kwin.install	2021-10-18 11:29:26 UTC (rev 426194)
@@ -0,0 +1,9 @@
+post_install() {
+# this is executed by make install, but doesn't work since setcap can only be run as root
+  setcap CAP_SYS_NICE=+ep /usr/bin/kwin_wayland
+}
+
+post_upgrade() {
+  post_install
+}
+



More information about the arch-commits mailing list