diff options
author | Jan Vermaete <jan.vermaete@gmail.com> | 2025-04-13 11:17:26 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-04-15 12:52:18 -0700 |
commit | cb29690e9c5ef29c8f332ba57e2774b72375bc25 (patch) | |
tree | 183f9a2843b81c3704d404be899ae52471fe0aea | |
parent | 5db973d20ab4abe0ae9a7265e6b1f97d58f0741b (diff) | |
download | meta-openembedded-cb29690e9c5ef29c8f332ba57e2774b72375bc25.tar.gz |
python3-myst-parser: new recipe version 4.0.1
MyST is a rich and extensible flavor of Markdown meant for technical documentation and publishing.
MyST is a flavor of markdown that is designed for simplicity, flexibility, and extensibility.
This repository serves as the reference implementation of MyST Markdown,
as well as a collection of tools to support working with MyST in Python and Sphinx.
It contains an extended CommonMark-compliant parser using markdown-it-py,
as well as a Sphinx extension that allows you to write MyST Markdown in Sphinx.
Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-myst-parser_4.0.1.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-myst-parser_4.0.1.bb b/meta-python/recipes-devtools/python/python3-myst-parser_4.0.1.bb new file mode 100644 index 0000000000..01c98b8db1 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-myst-parser_4.0.1.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | SUMMARY = "An extended commonmark compliant parser, with bridges to docutils/sphinx" | ||
2 | HOMEPAGE = "https://github.com/executablebooks/MyST-Parser" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a38a1697260a7ad7bf29f44b362db1fc" | ||
5 | |||
6 | SRC_URI[sha256sum] = "5cfea715e4f3574138aecbf7d54132296bfd72bb614d31168f48c477a830a7c4" | ||
7 | |||
8 | inherit pypi python_flit_core | ||
9 | |||
10 | PYPI_PACKAGE = "myst_parser" | ||
11 | |||
12 | RDEPENDS:${PN} = "\ | ||
13 | python3-docutils \ | ||
14 | python3-jinja2 \ | ||
15 | python3-pyyaml \ | ||
16 | python3-sphinx \ | ||
17 | " | ||
18 | |||
19 | BBCLASSEXTEND = "native nativesdk" | ||