trufflehog/trufflehog.spec
Jeff Kowalczyk e981c05bfd Accepting request 1139765 from home:ph03nix
- Update to version 3.63.10:
  * [chore] - Add regex and keyword for api_org tokens (#2240)
  * Assume unauthenticated github scans have public visibility (#2308)
  * [fixup ] - Allow ssh cloning with AWS Code Commit (#2307)
  * added azure protos (#2304)
  * Disable recently added postgres detector because it it too sensitive (#2303)
  * [feat] - Provide CLI flag to only use custom verifiers (#2299)
  * Individuate archive tests #2293
  * [feat] - Allow for the use of include/exclude path files for filesystem scans (#2297)
  * [chore] - small updates (#2288)
  * fix(deps): update module github.com/bradleyfalzon/ghinstallation/v2 to v2.9.0 (#2295)
  * fix(deps): update module github.com/aws/aws-sdk-go to v1.49.19 (#2294)
  * feat(installation): Implement checksum signature verification (#2157)
  * fix(deps): update module github.com/aws/aws-sdk-go to v1.49.18 (#2292)
  * fix(deps): update module cloud.google.com/go/storage to v1.36.0 (#2291)
  * chore(deps): update sigstore/cosign-installer action to v3.3.0 (#2290)
  * chore(deps): update alpine docker tag to v3.19 (#2287)
  * fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.19 (#2286)
  * Extend memory cache (#2275)
  * fix(deps): update module github.com/gabriel-vasile/mimetype to v1.4.3 (#2285)
  * fix(deps): update golang.org/x/exp digest to 0dcbfd6 (#2284)
  * fix(deps): update module github.com/azuread/microsoft-authentication-library-for-go to v1.2.1 (#2282)
  * adding postgres detector (#2108)
  * update test (#2283)
  * fix(deps): update golang.org/x/exp digest to be819d1 (#2281)
  * fix(signable): ignore common false positives (#2230)
  * fix(parseur): ignore false positives (#2229)
  * [chore] - update docs for pre-commit (#2280)
  * 1833 Fix syslog udp (#1835)
  * Wrap temp deletion err #2277

OBS-URL: https://build.opensuse.org/request/show/1139765
OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/trufflehog?expand=0&rev=42
2024-01-18 17:09:58 +00:00

56 lines
1.5 KiB
RPMSpec

#
# spec file for package trufflehog
#
# Copyright (c) 2024 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/
#
Name: trufflehog
Version: 3.63.10
Release: 0
Summary: CLI tool to find exposed secrets in source and archives
License: AGPL-3.0-or-later
URL: https://github.com/trufflesecurity/trufflehog
Source: trufflehog-%{version}.tar.gz
Source1: vendor.tar.gz
BuildRequires: golang(API) >= 1.21
%description
TruffleHog is a scanning engine that helps find exposed secrets
within e.g. GitHub/GitLab repos, AWS S3 buckets, GCS buckets,
Docker images, Circle CI/Travis CI setups, or in individual files.
%prep
%autosetup -D -a 1
%build
%ifnarch ppc64
export GOFLAGS="-buildmode=pie"
%endif
go build
%check
# execute the binary as a basic check
./%{name} --help
%install
install -D -m 0755 %{name} %{buildroot}%{_bindir}/%{name}
%files
%doc README.md
%license LICENSE
%{_bindir}/%{name}
%changelog