Compare commits

..

No commits in common. 'i9f' and 'i9cf' have entirely different histories.
i9f ... i9cf

@ -8,10 +8,6 @@
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
## END: Set by rpmautospec
%define bash_completions_dir /usr/share/bash-completion/completions
%define fish_completions_dir /usr/share/fish/vendor_completions.d
%define zsh_completions_dir /usr/share/zsh/site-functions
# Generated by go2rpm 1.10.0
%bcond_without check
@ -19,14 +15,14 @@
%global goipath github.com/aquasecurity/trivy
Version: 0.50.4
%gometa
%gometa -L
%global common_description %{expand:
Find vulnerabilities, misconfigurations, secrets, SBOM in containers,
Kubernetes, code repositories, clouds and more.}
Name: trivy
Release: 1%{dist}.inferit
Release: %autorelease
Summary: Vulnerability and license scanner
# Generated with go-vendor-tools
@ -42,7 +38,7 @@ BuildRequires: sqlite-devel
%description %{common_description}
%prep
%goprep
%goprep -A
%setup -q -T -D -a1 %{forgesetupargs}
%autopatch -p1
# Keep in sync with go-vendor-tools.toml
@ -52,9 +48,13 @@ sed -i 's|_ "modernc.org/sqlite"|_ "github.com/mattn/go-sqlite3"|' \
%build
# Set the package version in the binary
# Change go-sqlite3 driver name for compatibility with modernc sqlite
export GO_LDFLAGS="-X=github.com/aquasecurity/trivy/pkg/version.ver=%{version} -X=github.com/mattn/go-sqlite3.driverName=sqlite"
%global our_goldflags %{shrink:
-X=github.com/aquasecurity/trivy/pkg/version.ver=%{version}
-X=github.com/mattn/go-sqlite3.driverName=sqlite
}
export GO_LDFLAGS=%{shescape:%our_goldflags}
# Do not use the bundled sqlite
export CGO_CFLAGS="-D USE_LIBSQLITE3=1 %{build_cflags}" CGO_LDFLAGS=" -lsqlite3 %{build_ldflags}"
export CGO_CFLAGS="-D USE_LIBSQLITE3=1 %{build_cflags}" CGO_LDFLAGS="-lsqlite3 %{build_ldflags}"
# This package does not build without go modules enabled
%global gomodulesmode GO111MODULE=on
%gobuild -o trivy %{goipath}/cmd/trivy
@ -71,6 +71,34 @@ install -Dpm 0755 trivy.fish %{buildroot}%{fish_completions_dir}/trivy.fish
install -Dpm 0755 trivy.zsh %{buildroot}%{zsh_completions_dir}/_trivy
%go_vendor_license_install -c %{SOURCE2} -d trivy -D "trivy_path=$(pwd)/trivy"
%check
skiptest() {
for test in "$@"; do
awk -i inplace '/^func.*'"${test}"'\(/ { print; print "\tt.Skip(\"disabled failing test\")"; next}1' \
$(grep -rl "${test}")
done
}
%go_vendor_license_check -c %{SOURCE2} -d trivy -D "trivy_path=$(pwd)/trivy"
%if %{with check}
# Disable tests that require WASM, generated code, or networking
rm -v \
pkg/fanal/artifact/repo/git_test.go \
pkg/module/module_test.go
%ifarch s390x
%dnl Cannot load the test database on s390x
rm -v pkg/fanal/cache/fs_test.go
skiptest Test_dbWorker_update
%endif
# Terraform tests attempt to connect to the terraform registry
find pkg/iac/scanners/terraform*/ -name '*_test.go' -print -delete
export GO_LDFLAGS="-X=github.com/mattn/go-sqlite3.driverName=sqlite"
export CGO_CFLAGS="-D USE_LIBSQLITE3=1" CGO_LDFLAGS="-lsqlite3"
%gotest ./...
%endif
%files -f %{go_vendor_license_filelist}
%doc CONTRIBUTING.md README.md SECURITY.md
@ -80,8 +108,7 @@ install -Dpm 0755 trivy.zsh %{buildroot}%{zsh_completions_dir}/_trivy
%{zsh_completions_dir}/_trivy
%changelog
* Fri Jul 19 2024 Sergey Cherevko <s.cherevko@msvsphere-os.ru> - 0.50.4-1.inferit
- Adapted for MSVphere 9 build
* Fri Jul 19 2024 Sergey Cherevko <s.cherevko@msvsphere-os.ru> - 0.50.4-1
- Rebuilt for MSVSphere 9.4
## START: Generated by rpmautospec

Loading…
Cancel
Save