2020-10-20 16:13:13 +02:00
|
|
|
#
|
|
|
|
# spec file for package trivy
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 SUSE LLC
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
# nodebuginfo
|
|
|
|
|
|
|
|
Name: trivy
|
2020-10-21 14:40:13 +02:00
|
|
|
Version: 0.12.0
|
2020-10-20 16:13:13 +02:00
|
|
|
Release: 0
|
2020-10-21 14:40:13 +02:00
|
|
|
Summary: A Simple and Comprehensive Vulnerability Scanner for Containers
|
2020-10-20 16:13:13 +02:00
|
|
|
License: Apache-2.0
|
|
|
|
Group: System/Management
|
|
|
|
URL: https://github.com/aquasecurity/trivy
|
2020-10-21 14:40:13 +02:00
|
|
|
Source: %{name}-%{version}.tar.gz
|
2020-10-20 16:13:13 +02:00
|
|
|
Source1: vendor.tar.gz
|
|
|
|
BuildRequires: golang-packaging
|
2020-10-21 14:40:13 +02:00
|
|
|
BuildRequires: golang(API) = 1.13
|
|
|
|
|
|
|
|
# As specified in their documentation. The version of these packages doesn't
|
|
|
|
# seem to matter too much.
|
|
|
|
Requires: git-core
|
|
|
|
Requires: ca-certificates
|
|
|
|
Requires: rpm
|
|
|
|
%{go_nostrip}
|
2020-10-20 16:13:13 +02:00
|
|
|
|
|
|
|
%description
|
2020-10-21 14:40:13 +02:00
|
|
|
Trivy (`tri` pronounced like trigger, `vy` pronounced like envy) is a simple and
|
|
|
|
comprehensive vulnerability scanner for containers and other artifacts. A
|
|
|
|
software vulnerability is a glitch, flaw, or weakness present in the software or
|
|
|
|
in an Operating System. Trivy detects vulnerabilities of OS packages (Alpine,
|
|
|
|
RHEL, CentOS, etc.) and application dependencies (Bundler, Composer, npm, yarn,
|
|
|
|
etc.). Trivy is easy to use. Just install the binary and you're ready to
|
|
|
|
scan. All you need to do for scanning is to specify a target such as an image
|
|
|
|
name of the container.
|
2020-10-20 16:13:13 +02:00
|
|
|
|
|
|
|
%prep
|
2020-10-21 14:40:13 +02:00
|
|
|
%setup -q -a1
|
2020-10-20 16:13:13 +02:00
|
|
|
|
2020-10-21 14:40:13 +02:00
|
|
|
# Even though this is a bit ugly because it falls outside of the scope of the
|
|
|
|
# original intent of the `LDFLAGS` variable, it's useful to do it once just so
|
|
|
|
# we don't have to patch both `build` and `install`.
|
|
|
|
sed -i -e 's|LDFLAGS=|LDFLAGS=-buildmode=pie -mod vendor |g' Makefile
|
2020-10-20 16:13:13 +02:00
|
|
|
|
2020-10-21 14:40:13 +02:00
|
|
|
%build
|
|
|
|
make build VERSION=%{version}
|
2020-10-20 16:13:13 +02:00
|
|
|
|
|
|
|
%install
|
2020-10-21 14:40:13 +02:00
|
|
|
make install VERSION=%{version}
|
|
|
|
install -D -m 0755 ~/go/bin/%{name} "%{buildroot}/%{_bindir}/%{name}"
|
2020-10-20 16:13:13 +02:00
|
|
|
|
|
|
|
%files
|
|
|
|
%license LICENSE
|
|
|
|
%doc README.md
|
2020-10-21 14:40:13 +02:00
|
|
|
%{_bindir}/%{name}
|
2020-10-20 16:13:13 +02:00
|
|
|
|
|
|
|
%changelog
|