diff options
author | Jan Vermaete <jan.vermaete@gmail.com> | 2025-03-30 21:40:34 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-03-31 14:42:08 -0700 |
commit | 9e3b1d59ac2ee9122c1f3a36c049fa2beb6de20e (patch) | |
tree | 3a47b3c671055df02b093e286fdc792ca84a9184 /meta-python | |
parent | adb57d702bd751e02bfb9a11ab8c947d8b34526b (diff) | |
download | meta-openembedded-9e3b1d59ac2ee9122c1f3a36c049fa2beb6de20e.tar.gz |
python3-breathe: new recipe version 4.36.0
Breathe is a Sphinx plugin providing beautifully integrated Doxygen output in your user-facing documentation
Added to ptest list.
Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
3 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/conf/include/ptest-packagelists-meta-python.inc b/meta-python/conf/include/ptest-packagelists-meta-python.inc index 101d39d969..fc71eb4003 100644 --- a/meta-python/conf/include/ptest-packagelists-meta-python.inc +++ b/meta-python/conf/include/ptest-packagelists-meta-python.inc | |||
@@ -14,6 +14,7 @@ PTESTS_FAST_META_PYTHON = "\ | |||
14 | python3-aspectlib \ | 14 | python3-aspectlib \ |
15 | python3-bleak \ | 15 | python3-bleak \ |
16 | python3-blinker \ | 16 | python3-blinker \ |
17 | python3-breathe \ | ||
17 | python3-cachetools \ | 18 | python3-cachetools \ |
18 | python3-cbor2 \ | 19 | python3-cbor2 \ |
19 | python3-configobj \ | 20 | python3-configobj \ |
diff --git a/meta-python/recipes/devtool/python3-breathe/run-ptest b/meta-python/recipes/devtool/python3-breathe/run-ptest new file mode 100644 index 0000000000..8d2017d39c --- /dev/null +++ b/meta-python/recipes/devtool/python3-breathe/run-ptest | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | pytest --automake | ||
diff --git a/meta-python/recipes/devtool/python3-breathe_4.36.0.bb b/meta-python/recipes/devtool/python3-breathe_4.36.0.bb new file mode 100644 index 0000000000..dc14f1ce1c --- /dev/null +++ b/meta-python/recipes/devtool/python3-breathe_4.36.0.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Sphinx Doxygen renderer" | ||
2 | DESCRIPTION = "Breathe is a Sphinx plugin providing beautifully integrated Doxygen output in your user-facing documentation." | ||
3 | HOMEPAGE = "https://www.breathe-doc.org/" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=9e49eecf36fc015de7c61a0247df75d6" | ||
6 | |||
7 | SRC_URI[sha256sum] = "14860b73118ac140b7a3f55446890c777d1b67149cb024279fe3710dad7f535c" | ||
8 | |||
9 | inherit pypi python_flit_core ptest | ||
10 | |||
11 | SRC_URI:append = " file://run-ptest" | ||
12 | |||
13 | RDEPENDS:${PN} = "python3-sphinx" | ||
14 | |||
15 | PYPI_PACKAGE = "breathe" | ||
16 | |||
17 | do_install_ptest() { | ||
18 | install -d ${D}${PTEST_PATH}/tests | ||
19 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
20 | } | ||
21 | |||
22 | BBCLASSEXTEND =+ "native" | ||