git » knewstuff.git » commit 32d015c

upgpkg: 6.0.0-4: Fix link list dialog for installation button

author Antonio Rojas
2024-03-11 07:05:45 UTC
committer Antonio Rojas
2024-03-11 07:05:45 UTC
parent 24ee5424727826436146ba6ba4abc20e9a3aeda7

upgpkg: 6.0.0-4: Fix link list dialog for installation button

.SRCINFO +3 -1
PKGBUILD +6 -3

diff --git a/.SRCINFO b/.SRCINFO
index 92740f6..92afa86 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
 pkgbase = knewstuff
 	pkgdesc = Support for downloading application assets from the network
 	pkgver = 6.0.0
-	pkgrel = 3
+	pkgrel = 4
 	url = https://community.kde.org/Frameworks
 	arch = x86_64
 	groups = kf6
@@ -30,10 +30,12 @@ pkgbase = knewstuff
 	source = https://download.kde.org/stable/frameworks/6.0/knewstuff-6.0.0.tar.xz
 	source = https://download.kde.org/stable/frameworks/6.0/knewstuff-6.0.0.tar.xz.sig
 	source = https://invent.kde.org/frameworks/knewstuff/-/commit/4f01e2ff.patch
+	source = https://invent.kde.org/frameworks/knewstuff/-/commit/49f2037a.patch
 	validpgpkeys = 53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB
 	validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D
 	sha256sums = 0299dba980590bd7c74870a74c6bb6ca732af478ab2c9ba414943f62ea0be0fa
 	sha256sums = SKIP
 	sha256sums = dec069302c5fd27594763ff4c67666c33625c3d63cb50f5ece39c14334cacc20
+	sha256sums = bf428c232084233175d6d508c92711827011f68f73776a543dabc821619c51aa
 
 pkgname = knewstuff
diff --git a/PKGBUILD b/PKGBUILD
index d7bfb6f..6a2d4d4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 
 pkgname=knewstuff
 pkgver=6.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Support for downloading application assets from the network'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -31,15 +31,18 @@ optdepends=('kirigami: QML components'
             'qt6-declarative: QML components')
 groups=(kf6)
 source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz{,.sig}
-        https://invent.kde.org/frameworks/knewstuff/-/commit/4f01e2ff.patch)
+        https://invent.kde.org/frameworks/knewstuff/-/commit/4f01e2ff.patch
+        https://invent.kde.org/frameworks/knewstuff/-/commit/49f2037a.patch)
 sha256sums=('0299dba980590bd7c74870a74c6bb6ca732af478ab2c9ba414943f62ea0be0fa'
             'SKIP'
-            'dec069302c5fd27594763ff4c67666c33625c3d63cb50f5ece39c14334cacc20')
+            'dec069302c5fd27594763ff4c67666c33625c3d63cb50f5ece39c14334cacc20'
+            'bf428c232084233175d6d508c92711827011f68f73776a543dabc821619c51aa')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB  # David Faure <faure@kde.org>
               E0A3EB202F8E57528E13E72FD7574483BB57B18D) # Jonathan Esk-Riddell <jr@jriddell.org>
 
 prepare() {
   patch -d $pkgname-$pkgver -p1 < 4f01e2ff.patch # Fix Get New... buttons with Qt 6.7
+  patch -d $pkgname-$pkgver -p1 < 49f2037a.patch # Fix link list dialog for installation button
 }
 
 build() {