git » knewstuff.git » commit 16edd30

upgpkg: 6.0.0-5: Fix crash in Discover

author Antonio Rojas
2024-03-30 18:01:01 UTC
committer Antonio Rojas
2024-03-30 18:01:01 UTC
parent a60f2f0b270f1cf71b0524c8db6ea1229d595104

upgpkg: 6.0.0-5: Fix crash in Discover

.SRCINFO +3 -2
PKGBUILD +6 -3

diff --git a/.SRCINFO b/.SRCINFO
index 92afa86..8e46188 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 = 4
+	pkgrel = 5
 	url = https://community.kde.org/Frameworks
 	arch = x86_64
 	groups = kf6
@@ -24,18 +24,19 @@ pkgbase = knewstuff
 	depends = qt6-base
 	depends = syndication
 	optdepends = kirigami: QML components
-	optdepends = knewstuff: QML components
 	optdepends = qt6-5compat: QML components
 	optdepends = qt6-declarative: QML components
 	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
+	source = https://invent.kde.org/frameworks/knewstuff/-/commit/8e80d1c0.patch
 	validpgpkeys = 53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB
 	validpgpkeys = E0A3EB202F8E57528E13E72FD7574483BB57B18D
 	sha256sums = 0299dba980590bd7c74870a74c6bb6ca732af478ab2c9ba414943f62ea0be0fa
 	sha256sums = SKIP
 	sha256sums = dec069302c5fd27594763ff4c67666c33625c3d63cb50f5ece39c14334cacc20
 	sha256sums = bf428c232084233175d6d508c92711827011f68f73776a543dabc821619c51aa
+	sha256sums = 44eb37d871531b9f8bdbea4cccd74b12f6b2711408cb8eb287716527b313b0b3
 
 pkgname = knewstuff
diff --git a/PKGBUILD b/PKGBUILD
index 94e97c4..fa26add 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
 
 pkgname=knewstuff
 pkgver=6.0.0
-pkgrel=4
+pkgrel=5
 pkgdesc='Support for downloading application assets from the network'
 arch=(x86_64)
 url='https://community.kde.org/Frameworks'
@@ -31,17 +31,20 @@ optdepends=('kirigami: 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/49f2037a.patch)
+        https://invent.kde.org/frameworks/knewstuff/-/commit/49f2037a.patch
+        https://invent.kde.org/frameworks/knewstuff/-/commit/8e80d1c0.patch)
 sha256sums=('0299dba980590bd7c74870a74c6bb6ca732af478ab2c9ba414943f62ea0be0fa'
             'SKIP'
             'dec069302c5fd27594763ff4c67666c33625c3d63cb50f5ece39c14334cacc20'
-            'bf428c232084233175d6d508c92711827011f68f73776a543dabc821619c51aa')
+            'bf428c232084233175d6d508c92711827011f68f73776a543dabc821619c51aa'
+            '44eb37d871531b9f8bdbea4cccd74b12f6b2711408cb8eb287716527b313b0b3')
 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
+  patch -d $pkgname-$pkgver -p1 < 8e80d1c0.patch # Fix crash in Discover
 }
 
 build() {