summaryrefslogtreecommitdiff
path: root/dev-python/myst_parser/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-22 00:40:12 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-05-22 00:40:12 +0000
commit8e0eb0ad3dfbe366fbb79e93dd4e27dff301ed50 (patch)
treed8310a183d743d8f4018edf0106d6d25fb4c4cd7 /dev-python/myst_parser/files
parent0ab0678be688a9e5ff3a2c1777c07759df498155 (diff)
downloadbaldeagleos-repo-8e0eb0ad3dfbe366fbb79e93dd4e27dff301ed50.tar.gz
baldeagleos-repo-8e0eb0ad3dfbe366fbb79e93dd4e27dff301ed50.tar.xz
baldeagleos-repo-8e0eb0ad3dfbe366fbb79e93dd4e27dff301ed50.zip
Adding metadata
Diffstat (limited to 'dev-python/myst_parser/files')
-rw-r--r--dev-python/myst_parser/files/myst_parser-0.17.0-32-bit-test-fix.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-python/myst_parser/files/myst_parser-0.17.0-32-bit-test-fix.patch b/dev-python/myst_parser/files/myst_parser-0.17.0-32-bit-test-fix.patch
deleted file mode 100644
index 2363ac639c60..000000000000
--- a/dev-python/myst_parser/files/myst_parser-0.17.0-32-bit-test-fix.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-https://github.com/executablebooks/MyST-Parser/pull/523
-https://bugs.gentoo.org/832823
-
-From 84b0223eace0a1022935f2766da6c930181503e4 Mon Sep 17 00:00:00 2001
-From: Stefano Rivera <stefano@rivera.za.net>
-Date: Sat, 19 Feb 2022 14:57:58 -0400
-Subject: [PATCH] Massage test output on 32-bit systems to match 64-bit systems
-
-Fixes test_sphinx_directives[35-highlight (sphinx.directives.code.Highlight):]
-which was failing on 32-bit platforms due to linenothreshold defaulting
-to sys.maxsize.
-
-Fixes: #522
---- a/tests/test_renderers/test_fixtures_sphinx.py
-+++ b/tests/test_renderers/test_fixtures_sphinx.py
-@@ -3,6 +3,7 @@
- Note, the output AST is before any transforms are applied.
- """
- import re
-+import sys
- from pathlib import Path
-
- import pytest
-@@ -50,6 +51,9 @@ def test_sphinx_directives(file_params):
- document = to_docutils(file_params.content, in_sphinx_env=True).pformat()
- # see https://github.com/sphinx-doc/sphinx/issues/9827
- document = document.replace('<glossary sorted="False">', "<glossary>")
-+ # see https://github.com/executablebooks/MyST-Parser/issues/522
-+ if sys.maxsize == 2147483647:
-+ document = document.replace('"2147483647"', '"9223372036854775807"')
- file_params.assert_expected(document, rstrip_lines=True)
-
-