flake-pilot/flake-pilot-rpmlintrc
Marcus Schäfer f973364b26 - Bump version: 3.1.8 → 3.1.9
- Copy symlinks for host dependencies
  For provisioning of host dependencies copy symlinks such
  that they appear under their name as a file and not as a
  symlink. We use this logic for the host dependency sync
  only to be less strict on versioned library syncing

- Clippy fix
  elide the lifetimes for User instances

OBS-URL: https://build.opensuse.org/package/show/Virtualization:Appliances:Builder/flake-pilot?expand=0&rev=33
2024-12-12 10:02:23 +00:00

16 lines
509 B
Plaintext

# providing deb packages from this spec requires the tag to be hard coded
addFilter("W: hardcoded-packager-tag");
# rust binaries
addFilter("W: unstripped-binary-or-object");
# this is wanted, sci is a static binary
addFilter("E: statically-linked-binary");
# this is wanted for flake-pilot-firecracker-guestvm-tools
# which gets installed to an sci controlled firecracker guest
addFilter("E: filelist-forbidden-fhs23");
# this comes from a rust crate
addFilter("W: binary-or-shlib-calls-gethostbyname");