diff options
author | Yoann Congal <yoann.congal@smile.fr> | 2024-04-27 23:37:14 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-04-30 11:00:33 -0700 |
commit | 2e25f21f523904908a016259bce092be3cb6bdf1 (patch) | |
tree | 1c4d549b7a21af80da2dffa6c4fc99cab745c702 /meta-python | |
parent | fe0ba70f91b6f6691d493bcf28f79a1a130a0e38 (diff) | |
download | meta-openembedded-2e25f21f523904908a016259bce092be3cb6bdf1.tar.gz |
reproducibility: move repro excludes from AB config.json to meta-oe
For now, the known non-reproducible packages list is stored inside the
autobuilder config.json file. This is not ideal. Let's move this list
into each layers of meta-openembedded.
These lists can be used with, in local.conf:
include conf/include/non-repro-meta-oe.inc
OEQA_REPRODUCIBLE_EXCLUDED_PACKAGES = "${KNOWN_NON_REPRO_META_OE}"
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Acked-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rwxr-xr-x | meta-python/conf/include/non-repro-meta-python.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-python/conf/include/non-repro-meta-python.inc b/meta-python/conf/include/non-repro-meta-python.inc new file mode 100755 index 0000000000..629dc4aa04 --- /dev/null +++ b/meta-python/conf/include/non-repro-meta-python.inc | |||
@@ -0,0 +1,22 @@ | |||
1 | # List of known non-reproducible package of the meta-python layer | ||
2 | # Please keep this list sorted | ||
3 | KNOWN_NON_REPRO_META_PYTHON = " \ | ||
4 | python3-evdev-src \ | ||
5 | python3-frozenlist \ | ||
6 | python3-frozenlist-dbg \ | ||
7 | python3-kivy-src \ | ||
8 | python3-pandas \ | ||
9 | python3-pandas-dbg \ | ||
10 | python3-pandas-src \ | ||
11 | python3-pycocotools-src \ | ||
12 | python3-pydantic-core \ | ||
13 | python3-pynacl \ | ||
14 | python3-pynacl-dbg \ | ||
15 | python3-pynacl-src \ | ||
16 | python3-pyproj \ | ||
17 | python3-pyproj-dbg \ | ||
18 | python3-pyproj-src \ | ||
19 | python3-pyzmq \ | ||
20 | python3-yarl \ | ||
21 | python3-yarl-dbg \ | ||
22 | " | ||