aboutsummaryrefslogtreecommitdiffstats
path: root/community/rstcheck/01-python3-test-suite.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/rstcheck/01-python3-test-suite.patch')
-rw-r--r--community/rstcheck/01-python3-test-suite.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/community/rstcheck/01-python3-test-suite.patch b/community/rstcheck/01-python3-test-suite.patch
new file mode 100644
index 00000000000..d7cd1e53bd8
--- /dev/null
+++ b/community/rstcheck/01-python3-test-suite.patch
@@ -0,0 +1,22 @@
+--- a/rstcheck.py
++++ b/rstcheck.py
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env python
++#!/usr/bin/env python3
+
+ # Copyright (C) 2013-2017 Steven Myint
+ #
+--- a/test.bash
++++ b/test.bash
+@@ -73,9 +73,9 @@
+ # Ignore message on configuration file
+ ./rstcheck.py examples/with_configuration/bad-2.rst
+
+-if python -c 'import sys; sys.exit(0 if sys.version_info >= (3,) else 1)'
++if python3 -c 'import sys; sys.exit(0 if sys.version_info >= (3,) else 1)'
+ then
+- python -m doctest -v README.rst rstcheck.py
++ python3 -m doctest -v README.rst rstcheck.py
+ ./rstcheck.py README.rst
+ fi
+