┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Rojas <[email protected]>2025-04-26 00:12:56 +0200
committerAntonio Rojas <[email protected]>2025-04-26 00:12:56 +0200
commitfd50f56c524e6969e5d4e4835b2f8719a6f2e4b4 (patch)
tree7e21778951fbaee12ec7e692d0c75d1bc61709bd
parent43220d31beafa17ef5e7a4b2052b6d6145bab67d (diff)
upgpkg: 25.04.0-1: Fix session restore
Fixes #1
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD10
2 files changed, 10 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c1a68cf..f3ea3e2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -51,10 +51,12 @@ pkgbase = dolphin
optdepends = purpose: share context menu
source = https://download.kde.org/stable/release-service/25.04.0/src/dolphin-25.04.0.tar.xz
source = https://download.kde.org/stable/release-service/25.04.0/src/dolphin-25.04.0.tar.xz.sig
+ source = https://invent.kde.org/system/dolphin/-/commit/6032b785.patch
validpgpkeys = CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7
validpgpkeys = F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87
validpgpkeys = D81C0CB38EB725EF6691C385BB463350D6EF31EF
sha256sums = 8997ec04ef12af22647dfef67b15ea8f1304f7ae076c7b8fd53184a55a012a18
sha256sums = SKIP
+ sha256sums = fd189cf40e65fd48b3ffb83f7d2e4315572fd519261fd05682b06b7722c0adad
pkgname = dolphin
diff --git a/PKGBUILD b/PKGBUILD
index fb62aed..cfba8d4 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -54,13 +54,19 @@ optdepends=('ffmpegthumbs: video thumbnails'
'purpose: share context menu')
groups=(kde-applications
kde-system)
-source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig}
+ https://invent.kde.org/system/dolphin/-/commit/6032b785.patch)
sha256sums=('8997ec04ef12af22647dfef67b15ea8f1304f7ae076c7b8fd53184a55a012a18'
- 'SKIP')
+ 'SKIP'
+ 'fd189cf40e65fd48b3ffb83f7d2e4315572fd519261fd05682b06b7722c0adad')
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <[email protected]>
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87 # Christoph Feck <[email protected]>
D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker <[email protected]>
+prepare() {
+ patch -d $pkgname-$pkgver -p1 < 6032b785.patch # Fix session restore
+}
+
build() {
cmake -B build -S $pkgname-$pkgver \
-DBUILD_TESTING=OFF