git » krita.git » commit d9008cf

Fix crash whenloading some TIFF files (FS#78228)

author Antonio Rojas
2023-05-01 12:43:20 UTC
committer Antonio Rojas
2023-05-01 12:43:20 UTC
parent 4281fe4e9132cb66298e605f3d5fefc20fbaae84

Fix crash whenloading some TIFF files (FS#78228)

PKGBUILD +6 -3

diff --git a/PKGBUILD b/PKGBUILD
index 874db6b..4225e3b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
 pkgname=krita
 _pkgver=5.1.5
 pkgver=${_pkgver/-/}
-pkgrel=5
+pkgrel=6
 pkgdesc='Edit and paint images'
 arch=(x86_64)
 url='https://krita.org'
@@ -18,11 +18,13 @@ optdepends=('poppler-qt5: PDF filter' 'ffmpeg: to save animations'
             'krita-plugin-gmic: GMic plugin' 'libjxl: JPEG-XL filter')
 source=(https://download.kde.org/stable/krita/$_pkgver/$pkgname-$_pkgver.tar.gz{,.sig}
         find-xsimd.patch
-        https://invent.kde.org/graphics/krita/-/commit/e9184281.patch)
+        https://invent.kde.org/graphics/krita/-/commit/e9184281.patch
+        https://invent.kde.org/graphics/krita/-/commit/bbee5eff.patch)
 sha256sums=('1c775ebef0f799a9a6b74440c3d906ab913c27541b177ed621704de714e9a4d3'
             'SKIP'
             '622c9ffbbfef72dd024b391b879c79ae34da11d52b2f3488dfd8ee42bf7b453b'
-            '3db041acee92d6e4238c47ad572142a930340858703f523baa32f129e6474060')
+            '3db041acee92d6e4238c47ad572142a930340858703f523baa32f129e6474060'
+            '0f52ba825ce0432e55c1c673d8ebbd34f4353470a6c27bdc55beb2a5446f9a4a')
 validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD'  # Boudewijn Rempt <foundation@krita.org>
               'E9FB29E74ADEACC5E3035B8AB69EB4CF7468332F'  # Dmitry Kazakov (main key) <dimula73@gmail.com>
               '064182440C674D9F8D0F6F8B4DA79EDA231C852B') # Stichting Krita Foundation <foundation@krita.org>
@@ -30,6 +32,7 @@ validpgpkeys=('05D00A8B73A686789E0A156858B9596C722EA3BD'  # Boudewijn Rempt <fou
 prepare() {
   patch -d $pkgname-$_pkgver -p1 < find-xsimd.patch
   patch -d $pkgname-$_pkgver -p1 < e9184281.patch # Fix build with libheif 1.14.1
+  patch -d $pkgname-$_pkgver -p1 < bbee5eff.patch # Fix crash when loading some TIFF files
 }
 
 build() {