helm-changelog/helm-changelog.spec
Your Name e986af9b0b
All checks were successful
Run CI/CD... / main (push) Successful in 9m29s
0.0.1
2025-02-13 22:42:36 +00:00

33 lines
627 B
RPMSpec

%define debug %nil
%define debug_package %nil
Name: helm-changelog
Version: 0.0.1
Release: 1
Summary: Create changelogs for Helm Charts
URL: https://github.com/mogensen/helm-changelog
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
License: ASL 2.0
Group: Development/Other
BuildRequires: go >= 1.11
BuildRequires: upx
BuildRequires: git-core
%description
Create changelogs for Helm Charts, based on git history
%prep
%setup -q
%build
export GOPROXY=direct
make build
upx bin/%{name}
%install
install -Dm0755 bin/%{name} %{buildroot}%{_bindir}/%{name}
%files
%doc README.md LICENSE
%{_bindir}/%{name}