diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-10-15 13:07:30 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-10-15 13:09:59 -0700 |
commit | 19cbdbcac664b16e3c669e724d43725b8b00d2ef (patch) | |
tree | f7a1b3699e28ab2fcfc9fd29e5516aea10c2fa6c /meta-python/recipes-devtools/python | |
parent | 066b5207a08869fabf6e1056a4b4fde347788c6b (diff) | |
download | meta-openembedded-19cbdbcac664b16e3c669e724d43725b8b00d2ef.tar.gz |
python3-lazy-object-proxy: Remove __pycache__ from packaging
They make the package non-reproducible morever these are cache files anyway
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb b/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb index b0296dfc95..acd84efd21 100644 --- a/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb +++ b/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.12.0.bb | |||
@@ -11,3 +11,8 @@ SRC_URI[sha256sum] = "1f5a462d92fd0cfb82f1fab28b51bfb209fabbe6aabf7f0d51472c0c12 | |||
11 | PYPI_PACKAGE = "lazy_object_proxy" | 11 | PYPI_PACKAGE = "lazy_object_proxy" |
12 | 12 | ||
13 | inherit pypi python_setuptools_build_meta | 13 | inherit pypi python_setuptools_build_meta |
14 | |||
15 | do_install:append() { | ||
16 | # contain moddate, makes is non-reproducible | ||
17 | rm -f ${D}${PYTHON_SITEPACKAGES_DIR}/lazy_object_proxy/__pycache__/*.cpython-*.pyc | ||
18 | } | ||