mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 03:49:32 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
c3380dbe3d
commit
1f21419fc8
@@ -84,15 +84,15 @@ The following recipes do not have a DESCRIPTION. Please add an entry for DESCRIP
|
||||
Author: Alexander Kanavin <alex.kanavin@gmail.com>
|
||||
"""
|
||||
def is_exception(pkg):
|
||||
exceptions = ["packagegroup-", "initramfs-", "systemd-machine-units", "target-sdk-provides-dummy"]
|
||||
exceptions = ["packagegroup-",]
|
||||
for i in exceptions:
|
||||
if i in pkg:
|
||||
return True
|
||||
return False
|
||||
|
||||
def is_maintainer_exception(entry):
|
||||
exceptions = ["musl", "newlib", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran",
|
||||
"cve-update-db-native", "rust"]
|
||||
exceptions = ["musl", "newlib", "linux-yocto", "linux-dummy", "mesa-gl", "libgfortran", "libx11-compose-data",
|
||||
"cve-update-db-native","cve-update-nvd2-native",]
|
||||
for i in exceptions:
|
||||
if i in entry:
|
||||
return True
|
||||
|
||||
Reference in New Issue
Block a user