diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-06-01 17:03:25 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-06-02 15:16:36 +0100 |
| commit | cae9740a66bf8f2d32bd10a8c54f2964bc042767 (patch) | |
| tree | be6b14a3e7c4ed32461c29b3542504af99bcdfa3 /meta/recipes-devtools/python/python3-sphinx_7.0.1.bb | |
| parent | edf998161ce1834a66db6f42742dbbb2ba913c43 (diff) | |
| download | poky-cae9740a66bf8f2d32bd10a8c54f2964bc042767.tar.gz | |
python3-sphinx: upgrade 6.1.3 -> 7.0.1
License-Update: Remove smartypants from LICENSE
Changelog:
===========
#11411: Support Docutils 0.20.
#11418: Clean up remaining references to sphinx.setup_command following the removal of support for setuptools.
(From OE-Core rev: c823432d3941c85ca936a99da69be35220f01bd9)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-sphinx_7.0.1.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-sphinx_7.0.1.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-sphinx_7.0.1.bb b/meta/recipes-devtools/python/python3-sphinx_7.0.1.bb new file mode 100644 index 0000000000..7af4582861 --- /dev/null +++ b/meta/recipes-devtools/python/python3-sphinx_7.0.1.bb | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | SUMMARY = "Python documentation generator" | ||
| 2 | HOMEPAGE = "http://sphinx-doc.org/" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "BSD-2-Clause & MIT & BSD-3-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5eb6ac1b115a1ed24a12d9f15b633993" | ||
| 6 | |||
| 7 | PYPI_PACKAGE = "Sphinx" | ||
| 8 | |||
| 9 | SRC_URI[sha256sum] = "61e025f788c5977d9412587e733733a289e2b9fdc2fef8868ddfbfc4ccfe881d" | ||
| 10 | |||
| 11 | inherit python_flit_core pypi | ||
| 12 | |||
| 13 | |||
| 14 | do_install:append () { | ||
| 15 | # The cache format of "{None, 'en', 'ja'}" doesn't seem to be consistent (dict ordering?) | ||
| 16 | rm ${D}${libdir}/${PYTHON_DIR}/site-packages/sphinx/writers/__pycache__/*latex* | ||
| 17 | } | ||
| 18 | |||
| 19 | RDEPENDS:${PN} = "\ | ||
| 20 | python3-alabaster \ | ||
| 21 | python3-babel \ | ||
| 22 | python3-docutils \ | ||
| 23 | python3-imagesize \ | ||
| 24 | python3-jinja2 \ | ||
| 25 | python3-packaging \ | ||
| 26 | python3-pygments \ | ||
| 27 | python3-requests \ | ||
| 28 | python3-snowballstemmer \ | ||
| 29 | python3-sphinxcontrib-applehelp \ | ||
| 30 | python3-sphinxcontrib-devhelp \ | ||
| 31 | python3-sphinxcontrib-htmlhelp \ | ||
| 32 | python3-sphinxcontrib-jsmath \ | ||
| 33 | python3-sphinxcontrib-qthelp \ | ||
| 34 | python3-sphinxcontrib-serializinghtml \ | ||
| 35 | " | ||
| 36 | |||
| 37 | BBCLASSEXTEND = "native nativesdk" | ||
