author | Antonio Rojas
<arojas@archlinux.org> 2023-11-10 09:30:23 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2023-11-10 09:30:23 UTC |
parent | ca7f0dd5d8f051da970e1730080420243a0ddbe1 |
.SRCINFO | +9 | -5 |
PKGBUILD | +11 | -6 |
diff --git a/.SRCINFO b/.SRCINFO index 8071a5e..c48e090 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = layer-shell-qt pkgdesc = Qt component to allow applications to make use of the Wayland wl-layer-shell protocol - pkgver = 5.27.9 + pkgver = 5.27.80 pkgrel = 1 url = https://kde.org/plasma-desktop/ arch = x86_64 @@ -9,14 +9,18 @@ pkgbase = layer-shell-qt license = LGPL makedepends = extra-cmake-modules makedepends = wayland-protocols - depends = qt5-wayland - source = https://download.kde.org/stable/plasma/5.27.9/layer-shell-qt-5.27.9.tar.xz - source = https://download.kde.org/stable/plasma/5.27.9/layer-shell-qt-5.27.9.tar.xz.sig + depends = gcc-libs + depends = glibc + depends = qt6-base + depends = qt6-wayland + depends = wayland + source = https://download.kde.org/unstable/plasma/5.27.80/layer-shell-qt-5.27.80.tar.xz + source = https://download.kde.org/unstable/plasma/5.27.80/layer-shell-qt-5.27.80.tar.xz.sig validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D validpgpkeys = 0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D validpgpkeys = D07BD8662C56CB291B316EB2F5675605C74E02CF validpgpkeys = 1FA881591C26B276D7A5518EEAAF29B42A678C20 - sha256sums = 67207ed9f764280da309d735dd1b0788187a7a9efcbb4f5b2849c723ee66886f + sha256sums = 1e8c65fd7fc7294a08de6124201da8a21225fb11add904281f8eada2f7bc3fef sha256sums = SKIP pkgname = layer-shell-qt diff --git a/PKGBUILD b/PKGBUILD index fb373e9..fdfa023 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,18 +1,23 @@ # Maintainer: Antonio Rojas <arojas@archlinux.org> pkgname=layer-shell-qt -pkgver=5.27.9 +pkgver=5.27.80 _dirver=$(echo $pkgver | cut -d. -f1-3) pkgrel=1 pkgdesc='Qt component to allow applications to make use of the Wayland wl-layer-shell protocol' arch=(x86_64) url='https://kde.org/plasma-desktop/' license=(GPL LGPL) -source=(https://download.kde.org/stable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) -depends=(qt5-wayland) -makedepends=(extra-cmake-modules wayland-protocols) +depends=(gcc-libs + glibc + qt6-base + qt6-wayland + wayland) +makedepends=(extra-cmake-modules + wayland-protocols) groups=(plasma) -sha256sums=('67207ed9f764280da309d735dd1b0788187a7a9efcbb4f5b2849c723ee66886f' +source=(https://download.kde.org/unstable/plasma/$_dirver/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('1e8c65fd7fc7294a08de6124201da8a21225fb11add904281f8eada2f7bc3fef' 'SKIP') validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D' # Jonathan Esk-Riddell <jr@jriddell.org> '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D' # Bhushan Shah <bshah@kde.org> @@ -20,7 +25,7 @@ validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D' # Jonathan Esk-Riddell '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com> build() { - cmake -B build -S $pkgname-$pkgver + cmake -B build -S $pkgname-$pkgver cmake --build build }