diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-12-10 21:05:26 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-12-14 10:22:13 +0100 |
commit | a22124a62b7e9d1921ee4e7f3c7a1e127e5a7e72 (patch) | |
tree | cb7f3c22cdd930d744075d83ef8ffb51ace7d933 /kde-frameworks/syntax-highlighting | |
parent | kde-frameworks/sonnet: drop 5.85.0* (diff) | |
download | gentoo-a22124a62b7e9d1921ee4e7f3c7a1e127e5a7e72.tar.gz gentoo-a22124a62b7e9d1921ee4e7f3c7a1e127e5a7e72.tar.bz2 gentoo-a22124a62b7e9d1921ee4e7f3c7a1e127e5a7e72.zip |
kde-frameworks/syntax-highlighting: drop 5.85.0*
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/syntax-highlighting')
3 files changed, 0 insertions, 204 deletions
diff --git a/kde-frameworks/syntax-highlighting/Manifest b/kde-frameworks/syntax-highlighting/Manifest index aa550901334a..db2e137fc684 100644 --- a/kde-frameworks/syntax-highlighting/Manifest +++ b/kde-frameworks/syntax-highlighting/Manifest @@ -1,3 +1,2 @@ -DIST syntax-highlighting-5.85.0.tar.xz 2334784 BLAKE2B faaa2e57b4f5acc6b090e0ffebbeb70715dc164f634683b2d442017087aed630581ab5d91e04fd4591d28c3a6d7bbfff395a36af6ed3911de79a512c00fe1f3a SHA512 d01ef96ba4fc2c281918850adbc72239f60875a6c9f1c589286eaa4cb7a18be96e8b184f77e1a056ed17ece7d70338e4b6fd7cadf69a307e4a8bdc0ce6dc3d38 DIST syntax-highlighting-5.88.0.tar.xz 2372812 BLAKE2B 260622a6ae7faf007e103d06570761d08c23eb6df11fe1d4241e4773b703ac87452f96bb9794e89df53e3c654761cafe2c4502342937fb3880a4bd2f5c2d1186 SHA512 1e1a294b382c7697bc89a27a32911770b4a4fce222e5bb2520cdd42a2792521df9592bd71b87918ed967b225d95cb95832e5325e721dc68cf3fa9b2d8edb396f DIST syntax-highlighting-5.89.0.tar.xz 2381864 BLAKE2B 9d1deab5d9c2a0a08992202bcfc7f74ddab7c8541309abc0a80c8af5e2e0abedc2074e23648077ccd96f00733c2d2f65038c7bcd6a1b3c2489f3dd7fb2762b71 SHA512 af60f9a85fe01dae6c49f33e8982b5bf9fd8285abaceb10893e3657b021361573eee29b08e59631ee2dadc7cfe9dc76b60e52b8cc1e8d0f8c8fa73ba41bdd96b diff --git a/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.85.0-python-add-yield-from-keyword.patch b/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.85.0-python-add-yield-from-keyword.patch deleted file mode 100644 index ba1ae38355e8..000000000000 --- a/kde-frameworks/syntax-highlighting/files/syntax-highlighting-5.85.0-python-add-yield-from-keyword.patch +++ /dev/null @@ -1,170 +0,0 @@ -From 439f8cbfe0b5d1f931c2233d1790e1280170c24c Mon Sep 17 00:00:00 2001 -From: Jan Paul Batrina <jpmbatrina01@gmail.com> -Date: Sat, 28 Aug 2021 21:27:41 +0800 -Subject: [PATCH] Python: Add "yield from" keyword - -BUG: 441540 ---- - autotests/folding/test.py.fold | 9 +++++++++ - autotests/html/test.py.dark.html | 9 +++++++++ - autotests/html/test.py.html | 9 +++++++++ - autotests/input/test.py | 9 +++++++++ - autotests/reference/test.py.ref | 9 +++++++++ - data/syntax/python.xml | 17 +++++++++++++++-- - 6 files changed, 60 insertions(+), 2 deletions(-) - -diff --git a/autotests/folding/test.py.fold b/autotests/folding/test.py.fold -index 7bbf054c..5e7a3ba8 100644 ---- a/autotests/folding/test.py.fold -+++ b/autotests/folding/test.py.fold -@@ -118,6 +118,15 @@ match<beginfold id='2'>(</beginfold id='2'>command.split<beginfold id='2'>(</beg - case <beginfold id='5'>[</beginfold id='5'>"quit"<endfold id='5'>]</endfold id='5'>: - print<beginfold id='2'>(</beginfold id='2'>"Goodbye!"<endfold id='2'>)</endfold id='2'> - -+def func1<beginfold id='2'>(</beginfold id='2'><endfold id='2'>)</endfold id='2'>: -+ yield 1 -+ yield from <beginfold id='5'>[</beginfold id='5'>func<beginfold id='2'>(</beginfold id='2'><endfold id='2'>)</endfold id='2'>, 1, 2, "3"<endfold id='5'>]</endfold id='5'> -+ # invalid, "from" no longer part of "yield from" -+ yield, from 1 -+ -+async def func2<beginfold id='2'>(</beginfold id='2'><endfold id='2'>)</endfold id='2'>: -+ await asyncio.sleep<beginfold id='2'>(</beginfold id='2'>1<endfold id='2'>)</endfold id='2'> -+ - "\\\\\\\\\\ENSURE THAT THIS AND THE FOLLOWING LINES ARE AT THE <endfold id='6'>END</endfold id='6'> OF THE FILE\\\\\\\\\\ \ - " - </indentfold>a = 'otherwise all succeeding lines will be -diff --git a/autotests/html/test.py.dark.html b/autotests/html/test.py.dark.html -index 23718b11..1d6c1dd2 100644 ---- a/autotests/html/test.py.dark.html -+++ b/autotests/html/test.py.dark.html -@@ -124,6 +124,15 @@ match(command.split()) - <span style="color:#fdbc4b;font-weight:bold;">case</span> [<span style="color:#f44f4f;">"quit"</span>]: - <span style="color:#7f8c8d;">print</span>(<span style="color:#f44f4f;">"Goodbye!"</span>) - -+<span style="font-weight:bold;">def</span> func1(): -+ <span style="color:#fdbc4b;font-weight:bold;">yield</span> <span style="color:#f67400;">1</span> -+ <span style="color:#fdbc4b;font-weight:bold;">yield</span> <span style="color:#fdbc4b;font-weight:bold;">from</span> [func(), <span style="color:#f67400;">1</span>, <span style="color:#f67400;">2</span>, <span style="color:#f44f4f;">"3"</span>] -+ <span style="color:#7a7c7d;"># invalid, "from" no longer part of "yield from"</span> -+ <span style="color:#fdbc4b;font-weight:bold;">yield</span>, <span style="color:#27ae60;">from</span> <span style="color:#f67400;">1</span> -+ -+<span style="color:#fdbc4b;font-weight:bold;">async</span> <span style="font-weight:bold;">def</span> func2(): -+ <span style="color:#fdbc4b;font-weight:bold;">await</span> asyncio.sleep(<span style="color:#f67400;">1</span>) -+ - <span style="color:#7a7c7d;">"</span><span style="color:#3daee9;">\\\\\\\\\\</span><span style="color:#7a7c7d;">ENSURE THAT THIS AND THE FOLLOWING LINES ARE AT THE </span><span style="color:#2980b9;background-color:#153042;">END</span><span style="color:#7a7c7d;"> OF THE FILE</span><span style="color:#3daee9;">\\\\\\\\\\</span><span style="color:#7a7c7d;"> </span><span style="color:#3daee9;">\</span> - <span style="color:#7a7c7d;">"</span> - a <span style="color:#3f8058;">=</span> <span style="color:#f44f4f;">'otherwise all succeeding lines will be</span> -diff --git a/autotests/html/test.py.html b/autotests/html/test.py.html -index 55cfefb0..4d7a2709 100644 ---- a/autotests/html/test.py.html -+++ b/autotests/html/test.py.html -@@ -124,6 +124,15 @@ match(command.split()) - <span style="font-weight:bold;">case</span> [<span style="color:#bf0303;">"quit"</span>]: - <span style="color:#644a9b;font-weight:bold;">print</span>(<span style="color:#bf0303;">"Goodbye!"</span>) - -+<span style="font-weight:bold;">def</span> func1(): -+ <span style="font-weight:bold;">yield</span> <span style="color:#b08000;">1</span> -+ <span style="font-weight:bold;">yield</span> <span style="font-weight:bold;">from</span> [func(), <span style="color:#b08000;">1</span>, <span style="color:#b08000;">2</span>, <span style="color:#bf0303;">"3"</span>] -+ <span style="color:#898887;"># invalid, "from" no longer part of "yield from"</span> -+ <span style="font-weight:bold;">yield</span>, <span style="color:#ff5500;">from</span> <span style="color:#b08000;">1</span> -+ -+<span style="font-weight:bold;">async</span> <span style="font-weight:bold;">def</span> func2(): -+ <span style="font-weight:bold;">await</span> asyncio.sleep(<span style="color:#b08000;">1</span>) -+ - <span style="color:#898887;">"</span><span style="color:#924c9d;">\\\\\\\\\\</span><span style="color:#898887;">ENSURE THAT THIS AND THE FOLLOWING LINES ARE AT THE </span><span style="color:#0057ae;background-color:#e0e9f8;">END</span><span style="color:#898887;"> OF THE FILE</span><span style="color:#924c9d;">\\\\\\\\\\</span><span style="color:#898887;"> </span><span style="color:#924c9d;">\</span> - <span style="color:#898887;">"</span> - a <span style="color:#ca60ca;">=</span> <span style="color:#bf0303;">'otherwise all succeeding lines will be</span> -diff --git a/autotests/input/test.py b/autotests/input/test.py -index 3eb8378d..d91db578 100644 ---- a/autotests/input/test.py -+++ b/autotests/input/test.py -@@ -118,6 +118,15 @@ match(command.split()): - case ["quit"]: - print("Goodbye!") - -+def func1(): -+ yield 1 -+ yield from [func(), 1, 2, "3"] -+ # invalid, "from" no longer part of "yield from" -+ yield, from 1 -+ -+async def func2(): -+ await asyncio.sleep(1) -+ - "\\\\\\\\\\ENSURE THAT THIS AND THE FOLLOWING LINES ARE AT THE END OF THE FILE\\\\\\\\\\ \ - " - a = 'otherwise all succeeding lines will be -diff --git a/autotests/reference/test.py.ref b/autotests/reference/test.py.ref -index 9c5bdb54..1742da2b 100644 ---- a/autotests/reference/test.py.ref -+++ b/autotests/reference/test.py.ref -@@ -118,6 +118,15 @@ - <Normal Text> </Normal Text><Flow Control Keyword>case</Flow Control Keyword><Normal Text> [</Normal Text><String>"quit"</String><Normal Text>]:</Normal Text><br/> - <Normal Text> </Normal Text><Builtin Function>print</Builtin Function><Normal Text>(</Normal Text><String>"Goodbye!"</String><Normal Text>)</Normal Text><br/> - <Normal Text></Normal Text><br/> -+<Definition Keyword>def</Definition Keyword><Normal Text> func1():</Normal Text><br/> -+<Normal Text> </Normal Text><Flow Control Keyword>yield</Flow Control Keyword><Normal Text> </Normal Text><Int>1</Int><br/> -+<Normal Text> </Normal Text><Flow Control Keyword>yield</Flow Control Keyword><Normal Text> </Normal Text><Flow Control Keyword>from</Flow Control Keyword><Normal Text> [func(), </Normal Text><Int>1</Int><Normal Text>, </Normal Text><Int>2</Int><Normal Text>, </Normal Text><String>"3"</String><Normal Text>]</Normal Text><br/> -+<Normal Text> </Normal Text><Comment># invalid, "from" no longer part of "yield from"</Comment><br/> -+<Normal Text> </Normal Text><Flow Control Keyword>yield</Flow Control Keyword><Normal Text>, </Normal Text><Import>from</Import><Normal Text> </Normal Text><Int>1</Int><br/> -+<Normal Text></Normal Text><br/> -+<Flow Control Keyword>async</Flow Control Keyword><Normal Text> </Normal Text><Definition Keyword>def</Definition Keyword><Normal Text> func2():</Normal Text><br/> -+<Normal Text> </Normal Text><Flow Control Keyword>await</Flow Control Keyword><Normal Text> asyncio.sleep(</Normal Text><Int>1</Int><Normal Text>)</Normal Text><br/> -+<Normal Text></Normal Text><br/> - <Comment>"</Comment><String Char>\\\\\\\\\\</String Char><Comment>ENSURE THAT THIS AND THE FOLLOWING LINES ARE AT THE </Comment><Region Marker>END</Region Marker><Comment> OF THE FILE</Comment><String Char>\\\\\\\\\\</String Char><Comment> </Comment><String Char>\</String Char><br/> - <Comment>"</Comment><br/> - <Normal Text>a </Normal Text><Operator>=</Operator><Normal Text> </Normal Text><String>'otherwise all succeeding lines will be</String><br/> -diff --git a/data/syntax/python.xml b/data/syntax/python.xml -index 7143bf30..676872f0 100644 ---- a/data/syntax/python.xml -+++ b/data/syntax/python.xml -@@ -52,7 +52,7 @@ - <!-- v2.07 add support for %prog and co, see bug 142832 --> - <!-- v2.08 add missing overloaders, new Python 3 statements, builtins, and keywords --> - <!-- v2.29 recognize escape sequenzes correctly --> --<language name="Python" version="21" style="python" indenter="python" kateversion="5.0" section="Scripts" extensions="*.py;*.pyw;SConstruct;SConscript;*.FCMacro" mimetype="application/x-python;text/x-python;text/x-python3" casesensitive="1" author="Michael Bueker" license=""> -+<language name="Python" version="22" style="python" indenter="python" kateversion="5.0" section="Scripts" extensions="*.py;*.pyw;SConstruct;SConscript;*.FCMacro" mimetype="application/x-python;text/x-python;text/x-python3" casesensitive="1" author="Michael Bueker" license=""> - <highlighting> - <list name="import"> - <item>import</item> -@@ -90,10 +90,17 @@ - <item>try</item> - <item>while</item> - <item>with</item> -- <item>yield</item> - <item>async</item> - <item>await</item> - </list> -+ <list name="flow_yield"> -+ <item>yield</item> -+ <!-- -+ "yield from" added here as a keyword for autocompletion. The actual handling -+ is in context="yield" so that we won't need to add space as a weakDeliminator. -+ --> -+ <item>yield from</item> -+ </list> - <list name="patternmatching"> - <item>match</item> - <item>case</item> -@@ -380,6 +387,7 @@ - <keyword attribute="Definition Keyword" String="defs" context="#stay"/> - <keyword attribute="Operator Keyword" String="operators" context="#stay"/> - <keyword attribute="Flow Control Keyword" String="flow" context="#stay"/> -+ <keyword attribute="Flow Control Keyword" String="flow_yield" context="yield"/> - <keyword attribute="Flow Control Keyword" String="patternmatching" context="Pattern Matching" lookAhead="1" firstNonSpace="1"/> - <keyword attribute="Builtin Function" String="builtinfuncs" context="#stay"/> - <keyword attribute="Special Variable" String="specialvars" context="#stay"/> -@@ -428,6 +436,11 @@ - <RegExpr attribute="Error" String="[\w\d]+" context="#pop#pop"/> - </context> - -+ <context name="yield" attribute="Flow Control Keyword" lineEndContext="#pop" fallthrough="1" fallthroughContext="#pop"> -+ <DetectSpaces attribute="Normal Text" context="#stay"/> -+ <WordDetect attribute="Flow Control Keyword" context="#pop" String="from"/> -+ </context> -+ - <context name="Pattern Matching" attribute="Flow Control Keyword" lineEndContext="#pop"> - <!-- - Python 3.10: https://docs.python.org/3.10/reference/compound_stmts.html#the-match-statement --- -GitLab - diff --git a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.85.0-r1.ebuild b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.85.0-r1.ebuild deleted file mode 100644 index d9a1de132dd5..000000000000 --- a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.85.0-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -ECM_TEST="forceoptional" -QTMIN=5.15.2 -inherit ecm kde.org - -DESCRIPTION="Framework for syntax highlighting" -LICENSE="MIT" -KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86" -IUSE="nls" - -BDEPEND=" - dev-lang/perl - nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 ) -" -DEPEND=" - >=dev-qt/qtgui-${QTMIN}:5 - >=dev-qt/qtnetwork-${QTMIN}:5 - >=dev-qt/qtxmlpatterns-${QTMIN}:5 -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-python-add-yield-from-keyword.patch # KDE-bug 441540 -) - -src_install() { - ecm_src_install - dobin "${BUILD_DIR}"/bin/katehighlightingindexer -} |