diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-04-27 09:35:25 +0200 |
|---|---|---|
| committer | Steve Sakoman <steve@sakoman.com> | 2023-05-18 04:29:33 -1000 |
| commit | 9fa1f1403f537938e4ce91f3480b1212b3a7e994 (patch) | |
| tree | 0b3e43db1afecf83629a4afef92bbef3f914fa8d /meta/lib | |
| parent | 6c64c50802d3ea7c1e6f226d5360ef197c6bf2cf (diff) | |
| download | poky-9fa1f1403f537938e4ce91f3480b1212b3a7e994.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: d1ad59bb7a5360433403733de71b66ff3e1484ef)
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>
(cherry picked from commit e9158b191c1cfc16f97abed6c05891aa84fe9463)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/distrodata.py | 6 |
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 |
