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: Fri, 03 Mar 2023 05:53:23
Message-Id: 1677822789.e21e5fcb688f80e25c8517bb01fd2d73d21ccbdd.mgorny@gentoo
1 commit: e21e5fcb688f80e25c8517bb01fd2d73d21ccbdd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 3 05:06:37 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 3 05:53:09 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e21e5fcb
7
8 dev-python/myst-parser: Bump to 0.19.1
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.19.1.ebuild | 60 ++++++++++++++++++++++++
14 2 files changed, 61 insertions(+)
15
16 diff --git a/dev-python/myst-parser/Manifest b/dev-python/myst-parser/Manifest
17 index 1a6c205ba923..7fd007508ff0 100644
18 --- a/dev-python/myst-parser/Manifest
19 +++ b/dev-python/myst-parser/Manifest
20 @@ -1,2 +1,3 @@
21 DIST MyST-Parser-0.18.1.gh.tar.gz 769288 BLAKE2B 77f21ae4277ef4ed9020caad86ef3ea92a1efca35f7ab61203fe2125e4fab31a74a740db7a1f1d6ea0a576c24706b0997beea296d782eb5a07ba4e91a0a9e52d SHA512 4bc3a89480f175779da4f093aaa99a1516f76ab4107dcf8747b6614f347e91739f8596693f95529d76aedbb0c84b4efde4262517bc445aa7027d51e05e8b48bc
22 DIST MyST-Parser-0.19.0.gh.tar.gz 812180 BLAKE2B 44dd773dfcbd8c01b3089303e81b103ce3eba2432b1891b4fb35b8bbd9c0088b3245e6afe14c6378a262cdd4e7930da16ddc7ab6abb3a06779d4d0bd9e9ebd53 SHA512 3b646b78032914b42ab655d5f653f38fb58e4c51814fca0f987c8207f6fb97db6f3ba6b9951b3ecdf98430800b2a198cc2b26f17162b5b57309bfe74de3f4450
23 +DIST MyST-Parser-0.19.1.gh.tar.gz 812247 BLAKE2B 24a3502d2b9f81ec066c8fc5055b59448938fda63e74b47810e16cb2ce57b17fab1e219469df6e57fd1343453012855f104806e05e0831166af3506adc8589f5 SHA512 abe57048a9c19cfa08bb11c2ab988ebe462b4a104ffe3fc3b9083e2563da0bda271b5b1e278ac94e1d328bb70f5aeb20e72f81fc428fbb79dd6fb695abfd01cb
24
25 diff --git a/dev-python/myst-parser/myst-parser-0.19.1.ebuild b/dev-python/myst-parser/myst-parser-0.19.1.ebuild
26 new file mode 100644
27 index 000000000000..c578ea90b4a1
28 --- /dev/null
29 +++ b/dev-python/myst-parser/myst-parser-0.19.1.ebuild
30 @@ -0,0 +1,60 @@
31 +# Copyright 2022-2023 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=flit
37 +PYTHON_COMPAT=( python3_{9..11} pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +MY_P=MyST-Parser-${PV}
42 +DESCRIPTION="Extended commonmark compliant parser, with bridges to Sphinx"
43 +HOMEPAGE="
44 + https://github.com/executablebooks/MyST-Parser/
45 + https://pypi.org/project/myst-parser/
46 +"
47 +SRC_URI="
48 + https://github.com/executablebooks/MyST-Parser/archive/v${PV}.tar.gz
49 + -> ${MY_P}.gh.tar.gz
50 +"
51 +S=${WORKDIR}/${MY_P}
52 +
53 +LICENSE="MIT"
54 +SLOT="0"
55 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
56 +
57 +RDEPEND="
58 + <dev-python/docutils-0.20[${PYTHON_USEDEP}]
59 + dev-python/jinja[${PYTHON_USEDEP}]
60 + dev-python/markdown-it-py[${PYTHON_USEDEP}]
61 + >=dev-python/mdit-py-plugins-0.3.4[${PYTHON_USEDEP}]
62 + dev-python/pyyaml[${PYTHON_USEDEP}]
63 + <dev-python/sphinx-7[${PYTHON_USEDEP}]
64 + >=dev-python/sphinx-5[${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 +distutils_enable_tests pytest
76 +
77 +python_test() {
78 + local EPYTEST_DESELECT=(
79 + # Unimportant tests needing a new dep linkify
80 + tests/test_renderers/test_myst_config.py::test_cmdline
81 + tests/test_sphinx/test_sphinx_builds.py::test_extended_syntaxes
82 + )
83 +
84 + [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
85 + # bad test relying on exact exception messages
86 + "tests/test_renderers/test_include_directive.py::test_errors[9-Non-existent path:]"
87 + )
88 +
89 + epytest
90 +}