automatic version update by autodist [release 5.69.0-1mamba;Tue Apr 14 2020]

This commit is contained in:
Automatic Build System 2024-01-05 18:17:08 +01:00
parent 0a21116b7b
commit 71ae4fc752
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,11 @@
--- syntax-highlighting-5.69.0/src/indexer/katehighlightingindexer.cpp.orig 2020-04-17 10:21:34.673089819 +0200
+++ syntax-highlighting-5.69.0/src/indexer/katehighlightingindexer.cpp 2020-04-17 10:21:55.482717824 +0200
@@ -122,7 +122,7 @@
// validate regexp
const QRegularExpression regexp(string);
- if (!regexp.isValid()) {
+ if (string.length() < 79 && !regexp.isValid()) {
qWarning() << hlFilename << "line" << xml.lineNumber() << "broken regex:" << string << "problem:" << regexp.errorString() << "at offset" << regexp.patternErrorOffset();
return false;
} else if (string.isEmpty()) {

View File

@ -1,7 +1,7 @@
%define majver %(echo %version | cut -d. -f1-2)
Name: syntax-highlighting
Version: 5.68.0
Version: 5.69.0
Release: 1mamba
Summary: KDE Frameworks 5 Syntax highlighting engine for Kate syntax definitions
Group: System/Libraries
@ -10,6 +10,7 @@ Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.kde.org
Source: http://download.kde.org/stable/frameworks/%{majver}/syntax-highlighting-%{version}.tar.xz
Patch0: syntax-highlighting-5.69.0-arm-qt-regex-crash-workaround.patch
# Source: http://download.kde.org/stable/frameworks/%{majver}/...-%{version}.tar.xz
License: GPL
## AUTOBUILDREQ-BEGIN
@ -46,6 +47,9 @@ This package contains libraries and header files for developing applications tha
%prep
%setup -q
%ifarch arm
%patch0 -p1
%endif
%build
%cmake_kde5 -d build
@ -86,6 +90,9 @@ exit 0
%{_kde5_mkspecsdir}/qt_KSyntaxHighlighting.pri
%changelog
* Tue Apr 14 2020 Automatic Build System <autodist@mambasoft.it> 5.69.0-1mamba
- automatic version update by autodist
* Tue Mar 17 2020 Automatic Build System <autodist@mambasoft.it> 5.68.0-1mamba
- automatic version update by autodist