summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSughosha <sughosha@disroot.org>2026-03-05 17:37:03 +0530
committerSughosha <sughosha@disroot.org>2026-03-05 17:41:51 +0530
commit9a6abcb713fad6d20d72ed56d250eb83583480c8 (patch)
treea4e6ded434cda9df13c927fa9ac0d8c6bf66bdab /gnu
parent4b2ba9592e5bd7e681b3d49f143c28f3be5903d3 (diff)
gnu: qgit: Update to 2.13.
* gnu/packages/version-control.scm (qgit): Update to 2.13. [source]<patches>: Remove qgit-2.13-fix-search-style.patch. * gnu/packages/patches/qgit-2.13-fix-search-style.patch: Remove file. * gnu/local.mk: Deregister it. Change-Id: I47bb9211febd5a8bdf29bb898bab7cbc2aa6df1e
Diffstat (limited to 'gnu')
-rw-r--r--gnu/local.mk1
-rw-r--r--gnu/packages/patches/qgit-2.12-fix-search-style.patch23
-rw-r--r--gnu/packages/version-control.scm8
3 files changed, 2 insertions, 30 deletions
diff --git a/gnu/local.mk b/gnu/local.mk
index 1ff07976bb1..decc531cd78 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -2114,7 +2114,6 @@ dist_patch_DATA = \
2114 %D%/packages/patches/python-sshtunnel-pep518.patch \ 2114 %D%/packages/patches/python-sshtunnel-pep518.patch \
2115 %D%/packages/patches/python-zeroc-ice-3.6.5-python-3.11-support.patch \ 2115 %D%/packages/patches/python-zeroc-ice-3.6.5-python-3.11-support.patch \
2116 %D%/packages/patches/qcodeeditor-qt6.patch \ 2116 %D%/packages/patches/qcodeeditor-qt6.patch \
2117 %D%/packages/patches/qgit-2.12-fix-search-style.patch \
2118 %D%/packages/patches/qtdeclarative-5-disable-qmlcache.patch \ 2117 %D%/packages/patches/qtdeclarative-5-disable-qmlcache.patch \
2119 %D%/packages/patches/qtdeclarative-disable-qmlcache.patch \ 2118 %D%/packages/patches/qtdeclarative-disable-qmlcache.patch \
2120 %D%/packages/patches/qtlocation-5.15.8-mapboxgl-gcc13.patch \ 2119 %D%/packages/patches/qtlocation-5.15.8-mapboxgl-gcc13.patch \
diff --git a/gnu/packages/patches/qgit-2.12-fix-search-style.patch b/gnu/packages/patches/qgit-2.12-fix-search-style.patch
deleted file mode 100644
index 07d87dfeb21..00000000000
--- a/gnu/packages/patches/qgit-2.12-fix-search-style.patch
+++ /dev/null
@@ -1,23 +0,0 @@
1From 757c0fc17b879f5a5719e6959c926c997ef5c4f2 Mon Sep 17 00:00:00 2001
2From: Cristian Tibirna <tibirna@kde.org>
3Date: Mon, 28 Jul 2025 20:21:11 -0400
4Subject: [PATCH] Fix issue #162: match partial strings as well as wildcards in
5 listview search
6
7---
8 src/listview.cpp | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/src/listview.cpp b/src/listview.cpp
12index 3223d61..8cd8f71 100644
13--- a/src/listview.cpp
14+++ b/src/listview.cpp
15@@ -1321,7 +1321,7 @@ bool ListViewProxy::filterAcceptsRow(int source_row, const QModelIndex&) const {
16 int ListViewProxy::setFilter(bool isOn, bool h, SCRef fl, int cn, ShaSet* s) {
17
18 #if QT_VERSION >= 0x060000
19- filter = QRegularExpression::fromWildcard(fl, Qt::CaseInsensitive);
20+ filter = QRegularExpression::fromWildcard(fl, Qt::CaseInsensitive, QRegularExpression::UnanchoredWildcardConversion);
21 #else
22 filter = QRegExp(fl, Qt::CaseInsensitive, QRegExp::Wildcard);
23 #endif
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index f35d3955b1d..c69650f7a79 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4334,7 +4334,7 @@ TkDiff is included for browsing and merging your changes.")
4334(define-public qgit 4334(define-public qgit
4335 (package 4335 (package
4336 (name "qgit") 4336 (name "qgit")
4337 (version "2.12") 4337 (version "2.13")
4338 (source (origin 4338 (source (origin
4339 (method git-fetch) 4339 (method git-fetch)
4340 (uri (git-reference 4340 (uri (git-reference
@@ -4343,11 +4343,7 @@ TkDiff is included for browsing and merging your changes.")
4343 (file-name (git-file-name name version)) 4343 (file-name (git-file-name name version))
4344 (sha256 4344 (sha256
4345 (base32 4345 (base32
4346 "16gy1xyn4xa3bjziphcdixbf6qv3bcs81z2k9j6biwpzs1ingkdb")) 4346 "0di205cy97qdfgwnmzscw0ar7i734gmqjxz1lyfdrfhwhwapmv44"))))
4347 ;; TODO: Remove this patch in the next update since it is fixed
4348 ;; in the next commit.
4349 (patches
4350 (search-patches "qgit-2.12-fix-search-style.patch"))))
4351 (build-system qt-build-system) 4347 (build-system qt-build-system)
4352 (arguments 4348 (arguments
4353 (list #:qtbase qtbase 4349 (list #:qtbase qtbase