Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/myst_parser/
Date: Wed, 08 Jun 2022 05:35:38
Message-Id: 1654666497.d70c44cdf7111f83b02222a677d21e028e6d9a03.mgorny@gentoo
1 commit: d70c44cdf7111f83b02222a677d21e028e6d9a03
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 8 04:49:05 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 8 05:34:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d70c44cd
7
8 dev-python/myst_parser: Bump to 0.18.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/myst_parser/Manifest | 1 +
13 dev-python/myst_parser/myst_parser-0.18.0.ebuild | 52 ++++++++++++++++++++++++
14 2 files changed, 53 insertions(+)
15
16 diff --git a/dev-python/myst_parser/Manifest b/dev-python/myst_parser/Manifest
17 index 45d9c0dc30ee..169f7cb717af 100644
18 --- a/dev-python/myst_parser/Manifest
19 +++ b/dev-python/myst_parser/Manifest
20 @@ -1 +1,2 @@
21 DIST MyST-Parser-0.17.2.gh.tar.gz 878600 BLAKE2B 0c5b9dd5aa1e1e54706c1a04770fac33f8b2233164f2462a27dccdd405592dde4d41ab986632a2903aa26a6e7ae942e0ad54103c48f0829d410b080facb061a8 SHA512 625894686093266af03ef2cf01cd3dc2fea80c933479d6df3a4b99a103f17e8afd7120fe7a56ef21bdc8aa33569741a675caf4a7e1ed6ddbe3facae19b3c222a
22 +DIST MyST-Parser-0.18.0.gh.tar.gz 768448 BLAKE2B efb5d1907b5779b1816f1cc4fd5ede9543cf246e4029f4bf6d763a8aacdf54b5c8c5efa2fea61de4bf257f5979871409ee907b3349cdb4f099ac689131d0805a SHA512 919494467de3f0cd97c9c8062626b88c22fd0596e120b7ca117b8bce18d9fad9faf06a36e4c5bd8a4dad838c888524c780beceaf3e7acb42232bd3c903fabc3f
23
24 diff --git a/dev-python/myst_parser/myst_parser-0.18.0.ebuild b/dev-python/myst_parser/myst_parser-0.18.0.ebuild
25 new file mode 100644
26 index 000000000000..42594f3b0f45
27 --- /dev/null
28 +++ b/dev-python/myst_parser/myst_parser-0.18.0.ebuild
29 @@ -0,0 +1,52 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=flit
36 +PYTHON_COMPAT=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_P=MyST-Parser-${PV}
41 +DESCRIPTION="Extended commonmark compliant parser, with bridges to sphinx"
42 +HOMEPAGE="
43 + https://github.com/executablebooks/MyST-Parser/
44 + https://pypi.org/project/myst-parser/
45 +"
46 +SRC_URI="
47 + https://github.com/executablebooks/MyST-Parser/archive/v${PV}.tar.gz
48 + -> ${MY_P}.gh.tar.gz
49 +"
50 +S=${WORKDIR}/${MY_P}
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +KEYWORDS="~amd64"
55 +
56 +RDEPEND="
57 + <dev-python/docutils-0.19[${PYTHON_USEDEP}]
58 + dev-python/jinja[${PYTHON_USEDEP}]
59 + dev-python/markdown-it-py[${PYTHON_USEDEP}]
60 + dev-python/mdit-py-plugins[${PYTHON_USEDEP}]
61 + dev-python/pyyaml[${PYTHON_USEDEP}]
62 + <dev-python/sphinx-6[${PYTHON_USEDEP}]
63 + >=dev-python/sphinx-4[${PYTHON_USEDEP}]
64 + dev-python/typing-extensions[${PYTHON_USEDEP}]
65 +"
66 +BDEPEND="
67 + test? (
68 + dev-python/beautifulsoup4[${PYTHON_USEDEP}]
69 + dev-python/pytest-regressions[${PYTHON_USEDEP}]
70 + dev-python/pytest-param-files[${PYTHON_USEDEP}]
71 + dev-python/sphinx-pytest[${PYTHON_USEDEP}]
72 + )
73 +"
74 +
75 +EPYTEST_DESELECT=(
76 + # Unimportant tests needing a new dep linkify
77 + tests/test_renderers/test_myst_config.py::test_cmdline
78 + tests/test_sphinx/test_sphinx_builds.py::test_extended_syntaxes
79 +)
80 +
81 +distutils_enable_tests pytest