Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/docutils/files/
Date: Tue, 02 Jun 2020 04:28:26
Message-Id: 1591072078.35b797ac754acc1e937d67e50ad7e1771ea8c605.bman@gentoo
1 commit: 35b797ac754acc1e937d67e50ad7e1771ea8c605
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue May 19 19:17:56 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 2 04:27:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35b797ac
7
8 dev-python/docutils: remove unused patch
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
12
13 .../docutils/files/docutils-0.15.2-tests.patch | 40 ----------------------
14 1 file changed, 40 deletions(-)
15
16 diff --git a/dev-python/docutils/files/docutils-0.15.2-tests.patch b/dev-python/docutils/files/docutils-0.15.2-tests.patch
17 deleted file mode 100644
18 index 11ccbd01b90..00000000000
19 --- a/dev-python/docutils/files/docutils-0.15.2-tests.patch
20 +++ /dev/null
21 @@ -1,40 +0,0 @@
22 -diff -ru docutils-0.15.2.orig/test/test_writers/test_odt.py docutils-0.15.2/test/test_writers/test_odt.py
23 ---- docutils-0.15.2.orig/test/test_writers/test_odt.py 2019-11-25 19:38:23.327374852 -0800
24 -+++ docutils-0.15.2/test/test_writers/test_odt.py 2019-11-25 19:38:13.585433399 -0800
25 -@@ -38,6 +38,7 @@
26 -
27 - from __init__ import DocutilsTestSupport
28 -
29 -+import unittest
30 - import docutils
31 - import docutils.core
32 - from docutils._compat import BytesIO
33 -@@ -146,12 +147,13 @@
34 - # xxxx is replaced with a name for the new test.
35 - # See instructions above in module doc-string.
36 - #
37 --
38 -+ @unittest.skipIf(sys.hexversion > 0x308000, "test is buggy on 3.8")
39 - def test_odt_basic(self):
40 - self.process_test('odt_basic.txt', 'odt_basic.odt',
41 - save_output_name='odt_basic.odt'
42 - )
43 -
44 -+ @unittest.skipIf(sys.hexversion > 0x308000, "test is buggy on 3.8")
45 - def test_odt_nested_class(self):
46 - self.process_test('odt_nested_class.txt',
47 - 'odt_nested_class.odt',
48 -@@ -166,11 +168,13 @@
49 - save_output_name='odt_no_class.odt'
50 - )
51 -
52 -+ @unittest.skipIf(sys.hexversion > 0x308000, "test is buggy on 3.8")
53 - def test_odt_tables1(self):
54 - self.process_test('odt_tables1.txt', 'odt_tables1.odt',
55 - save_output_name='odt_tables1.odt'
56 - )
57 -
58 -+ @unittest.skipIf(sys.hexversion > 0x308000, "test is buggy on 3.8")
59 - def test_odt_custom_headfoot(self):
60 - settings_overrides = {
61 - 'custom_header': 'Page %p% of %P%',