update package version to 2.5.2
This commit is contained in:
parent
25a72ca7db
commit
ba1da5c67d
Binary file not shown.
BIN
Pygments-2.5.2.tar.gz
Normal file
BIN
Pygments-2.5.2.tar.gz
Normal file
Binary file not shown.
@ -1,12 +0,0 @@
|
|||||||
diff -ur Pygments-2.2.0/pygments/sphinxext.py Pygments-2.2.0.patch/pygments/sphinxext.py
|
|
||||||
--- Pygments-2.2.0/pygments/sphinxext.py 2017-01-22 16:01:32.000000000 -0500
|
|
||||||
+++ Pygments-2.2.0.patch/pygments/sphinxext.py 2018-03-19 12:57:52.099927570 -0400
|
|
||||||
@@ -16,7 +16,7 @@
|
|
||||||
|
|
||||||
from docutils import nodes
|
|
||||||
from docutils.statemachine import ViewList
|
|
||||||
-from sphinx.util.compat import Directive
|
|
||||||
+from docutils.parsers.rst import Directive
|
|
||||||
from sphinx.util.nodes import nested_parse_with_titles
|
|
||||||
|
|
||||||
|
|
||||||
34
pep479.patch
34
pep479.patch
@ -1,34 +0,0 @@
|
|||||||
diff -r 7941677dc77d pygments/lexers/lisp.py
|
|
||||||
--- a/pygments/lexers/lisp.py Mon Mar 13 19:16:03 2017 +0000
|
|
||||||
+++ b/pygments/lexers/lisp.py Wed Jul 04 18:03:07 2018 +0200
|
|
||||||
@@ -2327,13 +2327,13 @@
|
|
||||||
token = Name.Function if token == Literal else token
|
|
||||||
yield index, token, value
|
|
||||||
|
|
||||||
- raise StopIteration
|
|
||||||
+ return
|
|
||||||
|
|
||||||
def _process_signature(self, tokens):
|
|
||||||
for index, token, value in tokens:
|
|
||||||
if token == Literal and value == '}':
|
|
||||||
yield index, Punctuation, value
|
|
||||||
- raise StopIteration
|
|
||||||
+ return
|
|
||||||
elif token in (Literal, Name.Function):
|
|
||||||
token = Name.Variable if value.istitle() else Keyword.Type
|
|
||||||
yield index, token, value
|
|
||||||
diff -r 7941677dc77d pygments/lexers/sql.py
|
|
||||||
--- a/pygments/lexers/sql.py Mon Mar 13 19:16:03 2017 +0000
|
|
||||||
+++ b/pygments/lexers/sql.py Wed Jul 04 18:03:07 2018 +0200
|
|
||||||
@@ -347,7 +347,10 @@
|
|
||||||
# Emit the output lines
|
|
||||||
out_token = Generic.Output
|
|
||||||
while 1:
|
|
||||||
- line = next(lines)
|
|
||||||
+ try:
|
|
||||||
+ line = next(lines)
|
|
||||||
+ except StopIteration:
|
|
||||||
+ return
|
|
||||||
mprompt = re_prompt.match(line)
|
|
||||||
if mprompt is not None:
|
|
||||||
# push the line back to have it processed by the prompt
|
|
||||||
@ -15,15 +15,11 @@ need to prettify source code. Highlights are: \
|
|||||||
|
|
||||||
Name: python-pygments
|
Name: python-pygments
|
||||||
Summary: Syntax highlighting engine written in Python
|
Summary: Syntax highlighting engine written in Python
|
||||||
Version: 2.2.0
|
Version: 2.5.2
|
||||||
Release: 15
|
Release: 1
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: http://pygments.org/
|
URL: http://pygments.org/
|
||||||
Source0: https://pypi.org/packages/source/P/Pygments/Pygments-%{version}.tar.gz
|
Source0: https://pypi.org/packages/source/P/Pygments/Pygments-%{version}.tar.gz
|
||||||
|
|
||||||
Patch0: import-directive.patch
|
|
||||||
Patch1: pep479.patch
|
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -81,9 +77,12 @@ make test PYTHON=%{__python3}
|
|||||||
%{_bindir}/pygmentize
|
%{_bindir}/pygmentize
|
||||||
|
|
||||||
%files help
|
%files help
|
||||||
%doc AUTHORS CHANGES build/sphinx/html doc/reST TODO
|
%doc AUTHORS CHANGES build/sphinx/html doc/reST
|
||||||
%lang(en) %{_mandir}/man1/pygmentize.1*
|
%lang(en) %{_mandir}/man1/pygmentize.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Aug 22 2020 tianwei<tianwei12@huawei.com> - 2.5.2-1
|
||||||
|
- Package update to 2.5.2
|
||||||
|
|
||||||
* Fri Dec 6 2019 caomeng<caomeng5@huawei.com> - 2.2.0-15
|
* Fri Dec 6 2019 caomeng<caomeng5@huawei.com> - 2.2.0-15
|
||||||
- Package init
|
- Package init
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user