mirror of
https://git.yoctoproject.org/poky
synced 2026-04-02 17:02:21 +02:00
python3-sphinx: Work around reproducibility issue
The dict used in this recipe doesn't write into the cache consistently, work around it until this issue is resolved in python upstream (similar to frozenset issues). (From OE-Core rev: a0d056862c218f5fcd921905271169742cf464dc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -10,6 +10,12 @@ SRC_URI[sha256sum] = "6caad9786055cb1fa22b4a365c1775816b876f91966481765d7d50e9f0
|
||||
|
||||
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 \
|
||||
|
||||
Reference in New Issue
Block a user