commit:     73f9aaf157000628658e6d04febcbf084e26f829
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 19:21:56 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 21 19:22:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73f9aaf1

dev-python/myst_parser: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/myst_parser/Manifest                    |  2 -
 .../files/myst_parser-0.17.0-32-bit-test-fix.patch | 33 --------------
 dev-python/myst_parser/myst_parser-0.17.0.ebuild   | 51 ----------------------
 dev-python/myst_parser/myst_parser-0.17.1.ebuild   | 46 -------------------
 4 files changed, 132 deletions(-)

diff --git a/dev-python/myst_parser/Manifest b/dev-python/myst_parser/Manifest
index 692e56f6b48f..45d9c0dc30ee 100644
--- a/dev-python/myst_parser/Manifest
+++ b/dev-python/myst_parser/Manifest
@@ -1,3 +1 @@
-DIST MyST-Parser-0.17.0.gh.tar.gz 877372 BLAKE2B 
00dea98fa9cd8770480047a824e18a903098600dd52cea427e1cf3a4ff0a4930502967e136a3c6e9ccb4a7f6c54c8c4c8f9c5bfc701e1b24a0006b867f8ce74a
 SHA512 
e9f4ea05ab55b0979b26f0211603aee0835a30fb37a0ca23f23b96e0b47670b6b8e443ee9759df5011d009e20d817eaffd4066c4be4920f96786c283aa206239
-DIST MyST-Parser-0.17.1.gh.tar.gz 877466 BLAKE2B 
79f2e03f07ad0887318e4d38745b7bbcfba5ffcb8a56a689489e2202c151702c3b1200607c7f8a0bb29b276c6ab74c201dd819a93a5b1dcfce556bf2bc38ffe1
 SHA512 
8b149f35d83285d54ad5e6c530eded9c9c838e65f5971c0c0fd5c1be55f365eca9d2c2871fa3c176daa58a7d7498fe06df747818c46f9fefcf9641db3286817d
 DIST MyST-Parser-0.17.2.gh.tar.gz 878600 BLAKE2B 
0c5b9dd5aa1e1e54706c1a04770fac33f8b2233164f2462a27dccdd405592dde4d41ab986632a2903aa26a6e7ae942e0ad54103c48f0829d410b080facb061a8
 SHA512 
625894686093266af03ef2cf01cd3dc2fea80c933479d6df3a4b99a103f17e8afd7120fe7a56ef21bdc8aa33569741a675caf4a7e1ed6ddbe3facae19b3c222a

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 <stef...@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)
- 
- 

diff --git a/dev-python/myst_parser/myst_parser-0.17.0.ebuild 
b/dev-python/myst_parser/myst_parser-0.17.0.ebuild
deleted file mode 100644
index e2a7f33c4954..000000000000
--- a/dev-python/myst_parser/myst_parser-0.17.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1
-
-MY_P=MyST-Parser-${PV}
-DESCRIPTION="Extended commonmark compliant parser, with bridges to sphinx"
-HOMEPAGE="https://pypi.org/project/myst-parser/ 
https://github.com/executablebooks/MyST-Parser";
-SRC_URI="
-       https://github.com/executablebooks/MyST-Parser/archive/v${PV}.tar.gz
-               -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="
-       <dev-python/docutils-0.18[${PYTHON_USEDEP}]
-       dev-python/jinja[${PYTHON_USEDEP}]
-       dev-python/markdown-it-py[${PYTHON_USEDEP}]
-       dev-python/mdit-py-plugins[${PYTHON_USEDEP}]
-       dev-python/pyyaml[${PYTHON_USEDEP}]
-       <dev-python/sphinx-5[${PYTHON_USEDEP}]
-       dev-python/typing-extensions[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-               dev-python/pytest-regressions[${PYTHON_USEDEP}]
-               dev-python/pytest-param-files[${PYTHON_USEDEP}]
-       )
-"
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-0.17.0-32-bit-test-fix.patch
-)
-
-EPYTEST_DESELECT=(
-       # Unimportant tests needing a new dep linkify
-       tests/test_renderers/test_myst_config.py::test_cmdline
-       tests/test_sphinx/test_sphinx_builds.py::test_extended_syntaxes
-)
-
-distutils_enable_tests pytest

diff --git a/dev-python/myst_parser/myst_parser-0.17.1.ebuild 
b/dev-python/myst_parser/myst_parser-0.17.1.ebuild
deleted file mode 100644
index 765e019e6eee..000000000000
--- a/dev-python/myst_parser/myst_parser-0.17.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-MY_P=MyST-Parser-${PV}
-DESCRIPTION="Extended commonmark compliant parser, with bridges to sphinx"
-HOMEPAGE="https://pypi.org/project/myst-parser/ 
https://github.com/executablebooks/MyST-Parser";
-SRC_URI="
-       https://github.com/executablebooks/MyST-Parser/archive/v${PV}.tar.gz
-               -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-
-RDEPEND="
-       <dev-python/docutils-0.18[${PYTHON_USEDEP}]
-       dev-python/jinja[${PYTHON_USEDEP}]
-       dev-python/markdown-it-py[${PYTHON_USEDEP}]
-       dev-python/mdit-py-plugins[${PYTHON_USEDEP}]
-       dev-python/pyyaml[${PYTHON_USEDEP}]
-       <dev-python/sphinx-5[${PYTHON_USEDEP}]
-       dev-python/typing-extensions[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-               dev-python/pytest-regressions[${PYTHON_USEDEP}]
-               dev-python/pytest-param-files[${PYTHON_USEDEP}]
-       )
-"
-
-EPYTEST_DESELECT=(
-       # Unimportant tests needing a new dep linkify
-       tests/test_renderers/test_myst_config.py::test_cmdline
-       tests/test_sphinx/test_sphinx_builds.py::test_extended_syntaxes
-)
-
-distutils_enable_tests pytest

Reply via email to