mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-27 09:17:27 -08:00
This commit: * bumps EAPI. * fixes EPYTHON. * removes python3.3. * removes version 0.10 and version 0.9.1-r1. * revision-bumps to version 0.12-r1. * fixes testing: testing was broken both for CPython and PyPy, it was solved by two patches. One is from upstream, the other has been submitted to upstream. Upstream submission: https://sourceforge.net/p/docutils/patches/136/ Gentoo-Bug: https://bugs.gentoo.org/452792 Gentoo-Bug: https://bugs.gentoo.org/451830 Gentoo-Bug: https://bugs.gentoo.org/529930 Gentoo-Bug: https://bugs.gentoo.org/593754 Courtesy of Mathy Vanvoorden <mathy@vanvoorden.be>. Package-Manager: portage-2.3.0 Closes: https://github.com/gentoo/gentoo/pull/2600 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
106 lines
3.8 KiB
Diff
106 lines
3.8 KiB
Diff
From c8329f1bca61c203b48f80f01876384a79cceab5 Mon Sep 17 00:00:00 2001
|
|
From: milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>
|
|
Date: Sat, 14 May 2016 21:15:00 +0000
|
|
Subject: [PATCH] Apply #131 (update pygments test to pygments 2.1) by
|
|
cstratak.
|
|
|
|
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@7936 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
|
|
---
|
|
.../test_parsers/test_rst/test_directives/test_code.py | 6 +++---
|
|
.../test_rst/test_directives/test_code_long.py | 2 +-
|
|
docutils/test/test_parsers/test_rst/test_interpreted.py | 14 +++++++-------
|
|
3 files changed, 11 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/test/test_parsers/test_rst/test_directives/test_code.py b/test/test_parsers/test_rst/test_directives/test_code.py
|
|
index 5e013d4..8affcbe 100644
|
|
--- a/test/test_parsers/test_rst/test_directives/test_code.py
|
|
+++ b/test/test_parsers/test_rst/test_directives/test_code.py
|
|
@@ -107,10 +107,10 @@ totest['code-parsing'] = [
|
|
<inline classes="keyword">
|
|
print
|
|
\n\
|
|
- <inline classes="literal string">
|
|
+ <inline classes="literal string single">
|
|
'hello world'
|
|
\n\
|
|
- <inline classes="comment">
|
|
+ <inline classes="comment single">
|
|
# to stdout
|
|
"""],
|
|
["""\
|
|
@@ -155,7 +155,7 @@ totest['code-parsing'] = [
|
|
<inline classes="ln">
|
|
11 \n\
|
|
\n\
|
|
- <inline classes="comment">
|
|
+ <inline classes="comment single">
|
|
# and now for something completely different
|
|
\n\
|
|
<inline classes="ln">
|
|
diff --git a/test/test_parsers/test_rst/test_directives/test_code_long.py b/test/test_parsers/test_rst/test_directives/test_code_long.py
|
|
index f015357..e6430cc 100644
|
|
--- a/test/test_parsers/test_rst/test_directives/test_code_long.py
|
|
+++ b/test/test_parsers/test_rst/test_directives/test_code_long.py
|
|
@@ -60,7 +60,7 @@ totest['code-parsing-long'] = [
|
|
<inline classes="ln">
|
|
11 \n\
|
|
\n\
|
|
- <inline classes="comment">
|
|
+ <inline classes="comment single">
|
|
# and now for something completely different
|
|
\n\
|
|
<inline classes="ln">
|
|
diff --git a/test/test_parsers/test_rst/test_interpreted.py b/test/test_parsers/test_rst/test_interpreted.py
|
|
index f9a1194..87d0a77 100755
|
|
--- a/test/test_parsers/test_rst/test_interpreted.py
|
|
+++ b/test/test_parsers/test_rst/test_interpreted.py
|
|
@@ -119,30 +119,30 @@ totest['basics'] = [
|
|
:not a role if it contains whitespace:
|
|
"""],
|
|
["""\
|
|
-:title:`` (empty interpteted text not recognized)
|
|
+:title:`` (empty interpreted text not recognized)
|
|
""",
|
|
"""\
|
|
<document source="test data">
|
|
<paragraph>
|
|
- :title:`` (empty interpteted text not recognized)
|
|
+ :title:`` (empty interpreted text not recognized)
|
|
"""],
|
|
["""\
|
|
-:title:`\ ` (interpteted text containing empty string)
|
|
+:title:`\ ` (interpreted text containing empty string)
|
|
""",
|
|
"""\
|
|
<document source="test data">
|
|
<paragraph>
|
|
<title_reference>
|
|
- (interpteted text containing empty string)
|
|
+ (interpreted text containing empty string)
|
|
"""],
|
|
["""\
|
|
-`\ `:title: (interpteted text containing empty string (postfix))
|
|
+`\ `:title: (interpreted text containing empty string (postfix))
|
|
""",
|
|
"""\
|
|
<document source="test data">
|
|
<paragraph>
|
|
<title_reference>
|
|
- (interpteted text containing empty string (postfix))
|
|
+ (interpreted text containing empty string (postfix))
|
|
"""],
|
|
["""\
|
|
:title:`\ non-empty`
|
|
@@ -283,7 +283,7 @@ Python code :python:`print("The end")`.
|
|
print
|
|
<inline classes="punctuation">
|
|
(
|
|
- <inline classes="literal string">
|
|
+ <inline classes="literal string double">
|
|
"The end"
|
|
<inline classes="punctuation">
|
|
)
|
|
--
|
|
2.7.4.GIT
|
|
|