summaryrefslogtreecommitdiffstats
path: root/meta-perl/conf
diff options
context:
space:
mode:
authorYoann Congal <yoann.congal@smile.fr>2025-06-16 23:03:01 +0200
committerKhem Raj <raj.khem@gmail.com>2025-06-20 10:34:11 -0700
commitbf400cd73fad89aff85017dfc4c169e7a39fdc4a (patch)
tree6af4e14de470ad3d4360013815b96ce21c45ffad /meta-perl/conf
parent3b1cc7418fa61b61f40bf33a9d5a98cab229afe9 (diff)
downloadmeta-openembedded-bf400cd73fad89aff85017dfc4c169e7a39fdc4a.tar.gz
reproducibility: move known non-repro list to layer.conf
The current include file that stores the known non-reproducible packages is layer dependent and that forces the user of the layers to maintain the list of the files (for example, see AB config[0]). By moving the exclude list to each layer.conf and extending the common OEQA_REPRODUCIBLE_EXCLUDED_PACKAGES variable, the known non-reproducible packages will be automatically excluded for each layer used in the reproducibility test without any special knowledge in the test environment. NB: the empty list for meta-initramfs was just removed not moved. [0]: https://git.yoctoproject.org/yocto-autobuilder-helper/tree/config.json?id=7d8933e75bdf7fb821a25617cb2dcabf1f3f8700#n322 Suggested-by: Quentin Schulz <quentin.schulz@cherry.de> Co-Developed-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> Signed-off-by: Guillaume Swaenepoel <guillaume.swaenepoel@smile.fr> Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-perl/conf')
-rwxr-xr-xmeta-perl/conf/include/non-repro-meta-perl.inc10
-rw-r--r--meta-perl/conf/layer.conf11
2 files changed, 11 insertions, 10 deletions
diff --git a/meta-perl/conf/include/non-repro-meta-perl.inc b/meta-perl/conf/include/non-repro-meta-perl.inc
deleted file mode 100755
index 9082691f67..0000000000
--- a/meta-perl/conf/include/non-repro-meta-perl.inc
+++ /dev/null
@@ -1,10 +0,0 @@
1# List of known non-reproducible package of the meta-perl layer
2# Please keep this list sorted
3KNOWN_NON_REPRO_META_PERL = " \
4 libencode-perl-src \
5 libhtml-tree-perl \
6 libhtml-tree-perl-doc \
7 libmodule-build-tiny-perl \
8 po4a \
9 po4a-doc \
10"
diff --git a/meta-perl/conf/layer.conf b/meta-perl/conf/layer.conf
index 33f0822ec0..7ae1a39fcd 100644
--- a/meta-perl/conf/layer.conf
+++ b/meta-perl/conf/layer.conf
@@ -16,3 +16,14 @@ LAYERVERSION_perl-layer = "1"
16LAYERDEPENDS_perl-layer = "core openembedded-layer" 16LAYERDEPENDS_perl-layer = "core openembedded-layer"
17 17
18LAYERSERIES_COMPAT_perl-layer = "walnascar whinlatter" 18LAYERSERIES_COMPAT_perl-layer = "walnascar whinlatter"
19
20# List of known non-reproducible package of the meta-perl layer
21# Please keep this list sorted
22OEQA_REPRODUCIBLE_EXCLUDED_PACKAGES += " \
23 libencode-perl-src \
24 libhtml-tree-perl \
25 libhtml-tree-perl-doc \
26 libmodule-build-tiny-perl \
27 po4a \
28 po4a-doc \
29"