summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/distrodata.py
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-04-27 09:35:25 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-05-05 11:07:25 +0100
commit1f21419fc8ba23220b661453fef4c8ed0e2b82e2 (patch)
treef5c7d600a5aad4076475019bc2d0f48097e0cdf5 /meta/lib/oeqa/selftest/cases/distrodata.py
parentc3380dbe3d684e3bccb99fbab53d72a5c6a78156 (diff)
downloadpoky-1f21419fc8ba23220b661453fef4c8ed0e2b82e2.tar.gz
selftest/distrodata: clean up exception lists in recipe maintainers test
Specifically: - add missing maintainer.inc entries for initramfs-module-*, systemd-machine-units and target-sdk-provides-dummy and drop them from exception list. - remove rust from exception list for unbuildable-by-default recipes as it is now buildable. - add missing maintainer.inc entry for libx11-compose-data and cve-update-nvd2-native; as they are also unbuildable by default, they needs to be in exception list as well. (From OE-Core rev: e9158b191c1cfc16f97abed6c05891aa84fe9463) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/distrodata.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/distrodata.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/distrodata.py b/meta/lib/oeqa/selftest/cases/distrodata.py
index b5554a6c3c..c83a3a7bd6 100644
--- a/meta/lib/oeqa/selftest/cases/distrodata.py
+++ b/meta/lib/oeqa/selftest/cases/distrodata.py
@@ -84,15 +84,15 @@ The following recipes do not have a DESCRIPTION. Please add an entry for DESCRIP
84 Author: Alexander Kanavin <alex.kanavin@gmail.com> 84 Author: Alexander Kanavin <alex.kanavin@gmail.com>
85 """ 85 """
86 def is_exception(pkg): 86 def is_exception(pkg):
87 exceptions = ["packagegroup-", "initramfs-", "systemd-machine-units", "target-sdk-provides-dummy"] 87 exceptions = ["packagegroup-",]
88 for i in exceptions: 88 for i in exceptions:
89 if i in pkg: 89 if i in pkg:
90 return True 90 return True
91 return False 91 return False
92 92
93 def is_maintainer_exception(entry): 93 def is_maintainer_exception(entry):
94 exceptions = ["musl", "newlib", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran", 94 exceptions = ["musl", "newlib", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran", "libx11-compose-data",
95 "cve-update-db-native", "rust"] 95 "cve-update-db-native","cve-update-nvd2-native",]
96 for i in exceptions: 96 for i in exceptions:
97 if i in entry: 97 if i in entry:
98 return True 98 return True