trufflehog/trufflehog.spec

56 lines
1.5 KiB
RPMSpec
Raw Normal View History

- Update to version 3.82.5: * fix(deps): update module google.golang.org/api to v0.199.0 (#3336) * [chore] Ensure testing Endpoints() doesn't silently pass on change (#3334) * [fix] Correctly initialize detectors with cloud endpoint customization (#3333) * RailwayApp Detector (#3331) * fix(deps): update module github.com/couchbase/gocb/v2 to v2.9.2 (#3332) * Adding Descriptions (#3258) * update timeout to 60s (#3330) * Include all detector tests for captain (#3329) * Use captain for test aggregation (#3328) * [Fix] (#3306) * fix(deps): update module google.golang.org/api to v0.198.0 (#3323) * Endpoint customizer refresh (#3308) * Ignore glTF & JPEG XL files (#3325) * fix(deps): update module golang.org/x/oauth2 to v0.23.0 (#3322) * fix(deps): update module go.uber.org/automaxprocs to v1.6.0 (#3321) * fix(deps): update module go.mongodb.org/mongo-driver to v1.17.0 (#3319) * [bug] - Improve seekability check for stdout pipes in BufferedReadSeeker (#3189) * Improve MongoDB connection string matching (#1550) * fix(deps): update module github.com/xanzy/go-gitlab to v0.109.0 (#3318) * [Analyzer] Test and generated permissions for HuggingFace, Square & Stripe (#3294) * Implement SourceUnitEnumChunker for GitHub (#3298) * fix(deps): update module github.com/wasilibs/go-re2 to v1.7.0 (#3317) * fix(deps): update module github.com/schollz/progressbar/v3 to v3.16.0 (#3315) * hit em w/ a min (#3316) * fix(deps): update module github.com/snowflakedb/gosnowflake to v1.11.1 (#3313) * [fix] - Add Size Method to BufferedReadSeeker and Refactor Context Timeout Handling in HandleFile (#3307) * fix(deps): update module github.com/sendgrid/sendgrid-go to v3.16.0+incompatible (#3312) * fix(deps): update module github.com/schollz/progressbar/v3 to v3.15.0 (#3311) * fix(deps): update module github.com/getsentry/sentry-go to v0.29.0 (#3310) OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/trufflehog?expand=0&rev=127
2024-09-26 14:57:31 +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.82.6
- Update to version 3.82.5: * fix(deps): update module google.golang.org/api to v0.199.0 (#3336) * [chore] Ensure testing Endpoints() doesn't silently pass on change (#3334) * [fix] Correctly initialize detectors with cloud endpoint customization (#3333) * RailwayApp Detector (#3331) * fix(deps): update module github.com/couchbase/gocb/v2 to v2.9.2 (#3332) * Adding Descriptions (#3258) * update timeout to 60s (#3330) * Include all detector tests for captain (#3329) * Use captain for test aggregation (#3328) * [Fix] (#3306) * fix(deps): update module google.golang.org/api to v0.198.0 (#3323) * Endpoint customizer refresh (#3308) * Ignore glTF & JPEG XL files (#3325) * fix(deps): update module golang.org/x/oauth2 to v0.23.0 (#3322) * fix(deps): update module go.uber.org/automaxprocs to v1.6.0 (#3321) * fix(deps): update module go.mongodb.org/mongo-driver to v1.17.0 (#3319) * [bug] - Improve seekability check for stdout pipes in BufferedReadSeeker (#3189) * Improve MongoDB connection string matching (#1550) * fix(deps): update module github.com/xanzy/go-gitlab to v0.109.0 (#3318) * [Analyzer] Test and generated permissions for HuggingFace, Square & Stripe (#3294) * Implement SourceUnitEnumChunker for GitHub (#3298) * fix(deps): update module github.com/wasilibs/go-re2 to v1.7.0 (#3317) * fix(deps): update module github.com/schollz/progressbar/v3 to v3.16.0 (#3315) * hit em w/ a min (#3316) * fix(deps): update module github.com/snowflakedb/gosnowflake to v1.11.1 (#3313) * [fix] - Add Size Method to BufferedReadSeeker and Refactor Context Timeout Handling in HandleFile (#3307) * fix(deps): update module github.com/sendgrid/sendgrid-go to v3.16.0+incompatible (#3312) * fix(deps): update module github.com/schollz/progressbar/v3 to v3.15.0 (#3311) * fix(deps): update module github.com/getsentry/sentry-go to v0.29.0 (#3310) OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/trufflehog?expand=0&rev=127
2024-09-26 14:57:31 +00:00
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