From: Tim Orling Date: Sat, 8 Oct 2022 23:54:51 +0000 (-0700) Subject: python3-sphinx: upgrade 5.1.1 -> 5.2.3 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~2801 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=951589b96e8545b13d9c5f8aeb61f85681720088;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git python3-sphinx: upgrade 5.1.1 -> 5.2.3 * Now uses flit-core backend (python_flit_core.bbclass) * Sort RDEPENDS alphabetically to make it easier to see what is present. For changes see: https://www.sphinx-doc.org/en/master/changes.html#release-5-2-3-released-sep-30-2022 https://www.sphinx-doc.org/en/master/changes.html#release-5-2-2-released-sep-27-2022 https://www.sphinx-doc.org/en/master/changes.html#release-5-2-0-post0-released-sep-24-2022 https://www.sphinx-doc.org/en/master/changes.html#release-5-2-0-released-sep-24-2022 Signed-off-by: Tim Orling Signed-off-by: Alexandre Belloni --- diff --git a/meta/recipes-devtools/python/python3-sphinx_5.1.1.bb b/meta/recipes-devtools/python/python3-sphinx_5.1.1.bb deleted file mode 100644 index 1bef20c2e25..00000000000 --- a/meta/recipes-devtools/python/python3-sphinx_5.1.1.bb +++ /dev/null @@ -1,28 +0,0 @@ -DESCRIPTION = "Python documentation generator" -HOMEPAGE = "http://sphinx-doc.org/" -SECTION = "devel/python" -LICENSE = "BSD-2-Clause & MIT & BSD-3-Clause" -LIC_FILES_CHKSUM = "file://LICENSE;md5=72c536e78c21c567311b193fe00cd253" - -PYPI_PACKAGE = "Sphinx" - -SRC_URI[sha256sum] = "ba3224a4e206e1fbdecf98a4fae4992ef9b24b85ebf7b584bb340156eaf08d89" - -inherit setuptools3 pypi - - -do_install:append () { - # The cache format of "{None, 'en', 'ja'}" doesn't seem to be consistent (dict ordering?) - rm ${D}${libdir}/${PYTHON_DIR}/site-packages/sphinx/writers/__pycache__/*latex* -} - -RDEPENDS:${PN} = "\ - python3-packaging python3-docutils python3-requests \ - python3-imagesize python3-alabaster python3-jinja2 \ - python3-babel python3-pygments python3-snowballstemmer \ - python3-sphinxcontrib-applehelp python3-sphinxcontrib-devhelp \ - python3-sphinxcontrib-jsmath python3-sphinxcontrib-htmlhelp \ - python3-sphinxcontrib-serializinghtml python3-sphinxcontrib-qthelp \ - " - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta/recipes-devtools/python/python3-sphinx_5.2.3.bb b/meta/recipes-devtools/python/python3-sphinx_5.2.3.bb new file mode 100644 index 00000000000..957bd17fc07 --- /dev/null +++ b/meta/recipes-devtools/python/python3-sphinx_5.2.3.bb @@ -0,0 +1,37 @@ +DESCRIPTION = "Python documentation generator" +HOMEPAGE = "http://sphinx-doc.org/" +SECTION = "devel/python" +LICENSE = "BSD-2-Clause & MIT & BSD-3-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=72c536e78c21c567311b193fe00cd253" + +PYPI_PACKAGE = "Sphinx" + +SRC_URI[sha256sum] = "5b10cb1022dac8c035f75767799c39217a05fc0fe2d6fe5597560d38e44f0363" + +inherit python_flit_core pypi + + +do_install:append () { + # The cache format of "{None, 'en', 'ja'}" doesn't seem to be consistent (dict ordering?) + rm ${D}${libdir}/${PYTHON_DIR}/site-packages/sphinx/writers/__pycache__/*latex* +} + +RDEPENDS:${PN} = "\ + python3-alabaster \ + python3-babel \ + python3-docutils \ + python3-imagesize \ + python3-jinja2 \ + python3-packaging \ + python3-pygments \ + python3-requests \ + python3-snowballstemmer \ + python3-sphinxcontrib-applehelp \ + python3-sphinxcontrib-devhelp \ + python3-sphinxcontrib-htmlhelp \ + python3-sphinxcontrib-jsmath \ + python3-sphinxcontrib-qthelp \ + python3-sphinxcontrib-serializinghtml \ + " + +BBCLASSEXTEND = "native nativesdk"