diff options
Diffstat (limited to 'dev-python/myst_parser')
-rw-r--r-- | dev-python/myst_parser/Manifest | 1 | ||||
-rw-r--r-- | dev-python/myst_parser/myst_parser-0.18.0.ebuild | 61 |
2 files changed, 0 insertions, 62 deletions
diff --git a/dev-python/myst_parser/Manifest b/dev-python/myst_parser/Manifest index 381eb2f9e5a6..3bf1830ac4c5 100644 --- a/dev-python/myst_parser/Manifest +++ b/dev-python/myst_parser/Manifest @@ -1,2 +1 @@ -DIST MyST-Parser-0.18.0.gh.tar.gz 768448 BLAKE2B efb5d1907b5779b1816f1cc4fd5ede9543cf246e4029f4bf6d763a8aacdf54b5c8c5efa2fea61de4bf257f5979871409ee907b3349cdb4f099ac689131d0805a SHA512 919494467de3f0cd97c9c8062626b88c22fd0596e120b7ca117b8bce18d9fad9faf06a36e4c5bd8a4dad838c888524c780beceaf3e7acb42232bd3c903fabc3f DIST MyST-Parser-0.18.1.gh.tar.gz 769288 BLAKE2B 77f21ae4277ef4ed9020caad86ef3ea92a1efca35f7ab61203fe2125e4fab31a74a740db7a1f1d6ea0a576c24706b0997beea296d782eb5a07ba4e91a0a9e52d SHA512 4bc3a89480f175779da4f093aaa99a1516f76ab4107dcf8747b6614f347e91739f8596693f95529d76aedbb0c84b4efde4262517bc445aa7027d51e05e8b48bc diff --git a/dev-python/myst_parser/myst_parser-0.18.0.ebuild b/dev-python/myst_parser/myst_parser-0.18.0.ebuild deleted file mode 100644 index 7217c0a65cc4..000000000000 --- a/dev-python/myst_parser/myst_parser-0.18.0.ebuild +++ /dev/null @@ -1,61 +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..11} pypy3 ) - -inherit distutils-r1 - -MY_P=MyST-Parser-${PV} -DESCRIPTION="Extended commonmark compliant parser, with bridges to sphinx" -HOMEPAGE=" - https://github.com/executablebooks/MyST-Parser/ - https://pypi.org/project/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 ~m68k ppc ppc64 ~riscv ~s390 sparc x86" - -RDEPEND=" - <dev-python/docutils-0.19[${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-6[${PYTHON_USEDEP}] - >=dev-python/sphinx-4[${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}] - dev-python/sphinx-pytest[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -python_test() { - local 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 - ) - - [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( - # bad test relying on exact exception messages - "tests/test_renderers/test_include_directive.py::test_errors[9-Non-existent path:]" - ) - - epytest -} |