blob: 5bb4ef12b10ff8eef2060cf2ca345edf9edacb46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# List of packages that are subject to the hal-rootstrap-checker.
# Follow pattern matching of bash(1).
target_package_name:
- hal-backend-*
# List of packages that are exempt from the hal-rootstrap-checker.
# It is applied on top of the above 'target_package_name'.
# Follow pattern matching of bash(1).
excluded_target_package_name:
# List of packages that are allowed to be used as BuildRequires
# Follow pattern matching of bash(1).
allowed_buildrequires:
- cmake
- pkgconfig(hal-rootstrap)
# List of packages that are allowed to be used as BuildConflicts
# Follow pattern matching of bash(1).
allowed_buildconflicts:
# List of packages that are allowed to be used as Requires
# Follow pattern matching of bash(1).
allowed_requires:
# yes or no(default)
# if no, you can skip the hal-rootstrap-checker test
# by giving gbs build parameter, --define 'disable_hal_rootstrap_checker 1'.
check_always: no
|