SHA256
1
0
forked from pool/trufflehog
trufflehog/trufflehog.spec

56 lines
1.5 KiB
RPMSpec
Raw Normal View History

- Update to version 3.81.10: * GitHub source logger clean up (#3269) * fix(deps): update module github.com/felixge/fgprof to v0.9.5 (#3277) * fix(deps): update golang.org/x/exp digest to e7e105d (#3202) * [chore] Skip analyzer tests in CI (#3270) * [analyze] Add Analyzer for Postgres (#3192) * [analyze] Add Analyzer for SourceGraph (#3173) * [analyze] Add Analyzer for Asana (#3139) * [analyze] Add Analyzer for Slack (#3207) * [analyze] Improve SquareUp analyzer and Implemented test (#3231) * [analyze] Add Analyze interface for Mailchimp (#3225) * [analyze] Add analyze interface for Bitbucket (#3224) * [analyze] Add Analyzer for Sendgrid (#3174) * [analyze] Add Analyzer for Opsgenie (#3181) * [analyze] Add analyzer for Postman (#3180) * Add Sentry protobufs (#3263) * Make worker multipliers configurable (#3267) * add rotation links (#3257) * Reduce high freq keywords (#3265) * Add central feature flags (#3264) * Add huggingface tui config (#3060) * Add Robinhood Crypto detector (#3254) * Update buffer (#3255) * Download files when reverifying (#3252) * update rotation guide link for teams (#3248) * Th 899 postman panic issue (#3245) * Strip leading +/- from github target diffs (#3244) * Skip filtration for targeted scans #3243 * Customize results cleaning (using smuggled interface) (#3235) * fix(deps): update module cloud.google.com/go/secretmanager to v1.14.0 (#3240) * fix(deps): update testcontainers-go monorepo to v0.33.0 (#3239) * fix(deps): update module google.golang.org/api to v0.193.0 (#3238) * fix(deps): update module google.golang.org/api to v0.192.0 (#3237) * fix(deps): update module github.com/prometheus/client_golang to v1.20.1 (#3236) * chore(deps): update golang docker tag to v1.23 (#3228) * fix(deps): update module github.com/charmbracelet/bubbletea to v0.27.0 (#3229) OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/trufflehog?expand=0&rev=123
2024-09-10 08:14:15 +00:00
#
# 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.81.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.22
%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