a96ee8dda3
- Remove miri complete instead of excluding. This is experimental and so should not be included. - BuildRequires ccache in attempt to reduce compile times. - Remove more extraneous directories from src that will never be used. - Extra patterns in rpmlintrc to catch more false positives: + Rust has no stable API, ignore SONAME warnings + Tool versions don't update in step with rust, ignore warnings OBS-URL: https://build.opensuse.org/request/show/686253 OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/rust?expand=0&rev=202
16 lines
803 B
Plaintext
16 lines
803 B
Plaintext
# filters for rust-src
|
|
addFilter("devel-dependency rust-std-static")
|
|
addFilter("devel-file-in-non-devel-package.*/usr/lib/rustlib/src/.*")
|
|
# filters for rust-std
|
|
# rlib not in elf format
|
|
addFilter("binaryinfo-readelf-failed*./usr/lib/rustlib/*.rlib")
|
|
# rust has no stable ABI as of yet, soname is of no use yet
|
|
addFilter("no-soname.*/usr/lib/rustlib/.*")
|
|
addFilter("no-soname.*/usr/lib/lib*")
|
|
# tool versions don't always change at same pace as rustc
|
|
addFilter("clippy.x86_64: W: no-version-in-last-changelog")
|
|
addFilter("rls.x86_64: W: no-version-in-last-changelog")
|
|
addFilter("rust-analysis.x86_64: W: no-version-in-last-changelog")
|
|
addFilter("rustfmt.x86_64: W: no-version-in-last-changelog")
|
|
# error when building with bootstrap. ignore for now
|
|
addFilter(".*shlib-policy-name-error.*libLLVM-8svn.*") |