diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-12-10 12:02:49 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-12-10 12:37:31 +0100 |
commit | 964f947d6087b2184209da43091179802be48c6a (patch) | |
tree | 7d99942aab50c5efd25be274eba9fc954af21aa6 /kde-frameworks/syntax-highlighting | |
parent | kde-frameworks: 5.40.0 amd64 stable, bug #639542 (diff) | |
download | gentoo-964f947d6087b2184209da43091179802be48c6a.tar.gz gentoo-964f947d6087b2184209da43091179802be48c6a.tar.bz2 gentoo-964f947d6087b2184209da43091179802be48c6a.zip |
kde-frameworks: Drop KDE Frameworks 5.37.0
Package-Manager: Portage-2.3.17, Repoman-2.3.6
Diffstat (limited to 'kde-frameworks/syntax-highlighting')
4 files changed, 0 insertions, 159 deletions
diff --git a/kde-frameworks/syntax-highlighting/Manifest b/kde-frameworks/syntax-highlighting/Manifest index ee78bca702ef..cc6dce3feed0 100644 --- a/kde-frameworks/syntax-highlighting/Manifest +++ b/kde-frameworks/syntax-highlighting/Manifest @@ -1,3 +1,2 @@ -DIST syntax-highlighting-5.37.0.tar.xz 1050660 BLAKE2B acf94ddb920b4d8b419408eb1690acb84c49493e43060badaf7586b87da7aae8eb966f493952075d35e077ad7c27ee5ac9473ba397809fd7ef5066b820f3096a SHA512 d49f62934283c07c1b6e8fad11b9fa469b21bb55f35ddbc6c28ab29bd79b7cba67a93d0b46abb8b3d86ee7ba7a90ea50a98553aac7bdfe396bc2b010611c24c2 DIST syntax-highlighting-5.40.0.tar.xz 1108400 BLAKE2B 44fd2a5374dd2a28db211fa1d258fe612cd6fe6c72422cd1fbe942d56684a9c4286a947038e105e8e90d1a701bb5df376a3f18aa73e836773690f695a6325152 SHA512 4e7868ae64e18b7734d7d5b778187951ae01fdd2d2dfaa1a78f8d9c0b9d5c435e30f4bc333dac3ed18f864f3458991144e870bd6a2c5b17c8ee49b61a82c0ccb DIST syntax-highlighting-5.41.0.tar.xz 1108580 BLAKE2B 1b5a61b45ba6a4900059e5813a92a3a47cf87aacb75094fd0f7b5c13acc6bc6f104ddac00b56cf4694bdaa9a82cc20c2afd16f764b7eb43e16a6a3cd5e68698c SHA512 86ed50766c9c0a3ef9e71421f5e7b9248ab1f28d0ecd424af57d643e613f488e572d001c55c58ab0ef501d6160b2db75dec0b325447132a5f49ff6dc6c52afea diff --git a/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.37.0-powershell.patch b/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.37.0-powershell.patch deleted file mode 100644 index 5da7999dffbd..000000000000 --- a/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.37.0-powershell.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 26daf7ee5b4a4534d918ed7d9e66d64cb30b0c26 Mon Sep 17 00:00:00 2001 -From: Till Schfer <till2.schaefer@tu-dortmund.de> -Date: Tue, 22 Aug 2017 18:47:04 +0200 -Subject: fix: plaintext is highlighted as powershell - -Summary: see [[ https://bugs.kde.org/show_bug.cgi?id=383848 | Bug 383848 ]] - -Reviewers: #framework_syntax_hightlighting, vkrause - -Reviewed By: #framework_syntax_hightlighting, vkrause - -Subscribers: dhaumann, #framework_syntax_hightlighting - -Tags: #frameworks - -Differential Revision: https://phabricator.kde.org/D7464 ---- - data/syntax/powershell.xml | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/data/syntax/powershell.xml b/data/syntax/powershell.xml -index 3a38846..2b73cfe 100644 ---- a/data/syntax/powershell.xml -+++ b/data/syntax/powershell.xml -@@ -1,11 +1,10 @@ - <!DOCTYPE language SYSTEM "language.dtd"> - <language - name="PowerShell" -- version="1" -+ version="2" - kateversion="5.0" - extensions="*.ps1;*.ps1m;*.ps1d" - section="Scripts" -- mimetype="text/plain" - author="Motoki Kashihara (motoki8791@gmail.com); Michael Lombardi (Michael.T.Lombardi@outlook.com)" - casesensitive="0" - license="LGPLv2+"> --- -cgit v0.11.2 - diff --git a/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.37.0-regexp.patch b/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.37.0-regexp.patch deleted file mode 100644 index f0a87e6d76df..000000000000 --- a/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.37.0-regexp.patch +++ /dev/null @@ -1,86 +0,0 @@ -From ad077e4045e650e1708b6c81d33a14f4a9c99a5d Mon Sep 17 00:00:00 2001 -From: Heiko Becker <heirecka@exherbo.org> -Date: Wed, 23 Aug 2017 12:28:52 +0200 -Subject: Escape hyphen in rest.xml regular expressions - -Summary: -The unescaped hyphen caused a build failure with pcre2-10.30 due to a broken -regex: 'syntax-highlighting/data/syntax/rest.xml" line 27 broken regex: -"^\\s*\\.\\. [w-_\\.]+::(\\s|$)" problem: "range out of order in character -class" at offset 12'. - -The pcre2pattern documentation says this: - -"Perl treats a hyphen as a literal if it appears before or after a POSIX class -(see below) or before or after a character type escape such as as \d or \H. -However, unless the hyphen is the last character in the class, Perl outputs a -warning in its warning mode, as this is most likely a user error. As PCRE2 has -no facility for warning, an error is given in these cases." - -Test Plan: -cmake && make && make test works fine pcre2-10.30, quick look at -http://docutils.sourceforge.net/FAQ.txt in kate seems fine. - -Reviewers: #framework_syntax_hightlighting, kfunk - -Subscribers: #frameworks - -Tags: #frameworks - -BUG: 383632 - -Differential Revision: https://phabricator.kde.org/D7478 ---- - data/syntax/rest.xml | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - -diff --git a/data/syntax/rest.xml b/data/syntax/rest.xml -index 1363965..ccfd08a 100644 ---- a/data/syntax/rest.xml -+++ b/data/syntax/rest.xml -@@ -11,7 +11,7 @@ - Copyright 2010 Matt Williams (matt@milliams.com) - Copyright 2014 Matthew Woehlke (mw_triad@users.sourceforge.net) - --> --<language name="reStructuredText" extensions="*.rst" section="Markup" mimetype="text/x-rst" version="2" kateversion="2.4" casesensitive="1"> -+<language name="reStructuredText" extensions="*.rst" section="Markup" mimetype="text/x-rst" version="3" kateversion="2.4" casesensitive="1"> - - <highlighting> - -@@ -24,11 +24,11 @@ - <RegExpr attribute="Citation" context="#stay" String="^\s*\.\. \[[&SimpleReferenceNameChars;]+\]\s" minimal="true" column="0"/> - <RegExpr attribute="HyperlinkTarget" context="#stay" String="^\s*(\.\. (__:|_[&SimpleReferenceNameChars; ]+:(\s|$))|__ )" minimal="true" column="0"/> - <RegExpr attribute="Code" String="^\s*\.\. code-block::" context="CodeBlock" column="0"/> -- <RegExpr attribute="Directive" context="#stay" String="^\s*\.\. [\w-_\.]+::(\s|$)" minimal="true" column="0"/> -+ <RegExpr attribute="Directive" context="#stay" String="^\s*\.\. [\w\-_\.]+::(\s|$)" minimal="true" column="0"/> - <RegExpr attribute="Code" String="::$" context="CodeBlock" /> - <RegExpr attribute="SubstitutionDefinition" context="#stay" String="^\s*\.\. \|[&SimpleReferenceNameChars; ]+\|\s+[&SimpleReferenceNameChars;]+::\s" minimal="true" column="0"/> - <RegExpr attribute="Field" String=":(?=([^:]*\\:)*[^:]*:(\s|$))" context="Field" firstNonSpace="true"/> -- <RegExpr attribute="Comment" context="Comment" String="^(\s*)\.\.\s(?![\w-_\.]+::(\s|$))" column="0"/> -+ <RegExpr attribute="Comment" context="Comment" String="^(\s*)\.\.\s(?![\w\-_\.]+::(\s|$))" column="0"/> - </context> - - <context name="InlineMarkup" attribute="Normal" lineEndContext="#stay"> -@@ -38,8 +38,8 @@ - <RegExpr attribute="FootnoteReference" context="#stay" String="&inlinestart;\[[&SimpleReferenceNameChars;]+\]_&inlineend;" minimal="true"/> - <RegExpr attribute="HyperlinkReference" context="#stay" String="&inlinestart;`[^\s].*`_&inlineend;" minimal="true"/> - <RegExpr attribute="HyperlinkReference" context="#stay" String="&inlinestart;\w+_&inlineend;" minimal="true"/> -- <RegExpr attribute="InterpretedText" context="TrailingRole" String="&inlinestart;`[^\s].*`(?=:[\w-_\.\+]+:)" minimal="true"/> -- <RegExpr attribute="Role" String=":[\w-_\.\+]+:(?=`)" context="Role"/> -+ <RegExpr attribute="InterpretedText" context="TrailingRole" String="&inlinestart;`[^\s].*`(?=:[\w\-_\.\+]+:)" minimal="true"/> -+ <RegExpr attribute="Role" String=":[\w\-_\.\+]+:(?=`)" context="Role"/> - </context> - - <context name="Field" attribute="Field" lineEndContext="#stay"> -@@ -56,7 +56,7 @@ - <DetectChar attribute="InterpretedText" char="`" context="#pop!InterpretedText" /> - </context> - <context name="TrailingRole" attribute="Role" lineEndContext="#pop"> -- <RegExpr attribute="Role" String=":[\w-_\.\+]+:" context="#pop"/> -+ <RegExpr attribute="Role" String=":[\w\-_\.\+]+:" context="#pop"/> - </context> - <context name="Comment" attribute="Comment" lineEndContext="#stay" dynamic="true"> - <RegExpr attribute="Code" String="^%1 " context="#stay" column="0" dynamic="true"/> --- -cgit v0.11.2 - diff --git a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.37.0-r1.ebuild b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.37.0-r1.ebuild deleted file mode 100644 index 3d73aef9a630..000000000000 --- a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.37.0-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_TEST="forceoptional" -inherit kde5 - -DESCRIPTION="Framework for syntax highlighting" -LICENSE="LGPL-2+ LGPL-2.1+" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="nls" - -RDEPEND=" - $(add_qt_dep qtgui) - $(add_qt_dep qtnetwork) - $(add_qt_dep qtxmlpatterns) -" -DEPEND="${RDEPEND} - dev-lang/perl - nls? ( $(add_qt_dep linguist-tools) ) -" - -PATCHES=( - "${FILESDIR}/${P}-powershell.patch" - "${FILESDIR}/${P}-regexp.patch" -) - -src_install() { - kde5_src_install - dobin "${BUILD_DIR}"/src/indexer/katehighlightingindexer -} |