automatic version update by autodist [release 5.69.0-1mamba;Tue Apr 14 2020]
This commit is contained in:
parent
0a21116b7b
commit
71ae4fc752
@ -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()) {
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user