Accepting request 1233552 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/1233552 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/pluto?expand=0&rev=47
This commit is contained in:
commit
51e43eb6e5
13
_service
13
_service
@ -3,19 +3,20 @@
|
||||
<param name="url">https://github.com/FairwindsOps/pluto</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="revision">v5.20.3</param>
|
||||
<param name="revision">v5.21.0</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="set_version" mode="manual">
|
||||
<param name="basename">pluto</param>
|
||||
</service>
|
||||
<service name="tar" mode="buildtime"/>
|
||||
<service name="go_modules" mode="manual">
|
||||
</service>
|
||||
<!-- services below are running at buildtime -->
|
||||
<service name="tar" mode="buildtime">
|
||||
</service>
|
||||
<service name="recompress" mode="buildtime">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
<service name="go_modules" mode="manual">
|
||||
</service>
|
||||
</services>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/FairwindsOps/pluto</param>
|
||||
<param name="changesrevision">bed05e30b6932aec8ee6615ddc88310fc959e248</param></service></servicedata>
|
||||
<param name="changesrevision">8f45ff5c56e1142fb39ba422f9dee52f8309d214</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:265809dc595b998fa8aa2c6a8a146b9d28d93052f13458c5844486854578bd86
|
||||
size 1797644
|
3
pluto-5.21.0.obscpio
Normal file
3
pluto-5.21.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c7f933e7ec0b2692c018679174113f8e467a3968910ae7f1be089fe75e5a88da
|
||||
size 1798156
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 27 12:16:24 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
- Update to version 5.21.0:
|
||||
* feat: add flowcontrol v1beta2 removal in 1.32
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 27 20:32:19 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: pluto
|
||||
version: 5.20.3
|
||||
mtime: 1727204320
|
||||
commit: bed05e30b6932aec8ee6615ddc88310fc959e248
|
||||
version: 5.21.0
|
||||
mtime: 1734978332
|
||||
commit: 8f45ff5c56e1142fb39ba422f9dee52f8309d214
|
||||
|
22
pluto.spec
22
pluto.spec
@ -16,17 +16,18 @@
|
||||
#
|
||||
|
||||
|
||||
%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
|
||||
|
||||
Name: pluto
|
||||
Version: 5.20.3
|
||||
Version: 5.21.0
|
||||
Release: 0
|
||||
Summary: A cli tool to help discover deprecated apiVersions in Kubernetes
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/FairwindsOps/pluto
|
||||
Source: pluto-%{version}.tar.gz
|
||||
Source1: vendor.tar.gz
|
||||
BuildRequires: bash-completion
|
||||
BuildRequires: fish
|
||||
BuildRequires: go >= 1.22
|
||||
BuildRequires: zsh
|
||||
|
||||
%description
|
||||
Pluto is a utility to help users find deprecated Kubernetes apiVersions in
|
||||
@ -75,11 +76,11 @@ go build \
|
||||
|
||||
%install
|
||||
# Install the binary.
|
||||
install -D -m 0755 ./bin/%{name} "%{buildroot}/%{_bindir}/%{name}"
|
||||
install -D -m 0755 ./bin/%{name} %{buildroot}/%{_bindir}/%{name}
|
||||
mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions
|
||||
%{buildroot}/%{_bindir}/%{name} completion bash > %{buildroot}%{_datarootdir}/bash-completion/completions/%{name}
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d
|
||||
%{buildroot}/%{_bindir}/%{name} completion zsh > %{buildroot}%{_datarootdir}/zsh_completion.d/_%{name}
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions
|
||||
%{buildroot}/%{_bindir}/%{name} completion zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_%{name}
|
||||
mkdir -p %{buildroot}%{_datadir}/fish/vendor_completions.d
|
||||
%{buildroot}/%{_bindir}/%{name} completion fish > %{buildroot}%{_datarootdir}/fish/vendor_completions.d/%{name}.fish
|
||||
|
||||
@ -89,19 +90,12 @@ mkdir -p %{buildroot}%{_datadir}/fish/vendor_completions.d
|
||||
%{_bindir}/%{name}
|
||||
|
||||
%files bash-completion
|
||||
%defattr(-,root,root)
|
||||
%dir %{_datarootdir}/bash-completion/completions/
|
||||
%{_datarootdir}/bash-completion/completions/%{name}
|
||||
|
||||
%files zsh-completion
|
||||
%defattr(-,root,root)
|
||||
%dir %{_datarootdir}/zsh_completion.d/
|
||||
%{_datarootdir}/zsh_completion.d/_%{name}
|
||||
%{_datarootdir}/zsh/site-functions/_%{name}
|
||||
|
||||
%files fish-completion
|
||||
%defattr(-,root,root)
|
||||
%dir %{_datarootdir}/fish
|
||||
%dir %{_datarootdir}/fish/vendor_completions.d
|
||||
%{_datarootdir}/fish/vendor_completions.d/%{name}.fish
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dfa93b89532b61d8700cebd34296b94a63137f1ff43bfc996ed3f0d0b872ca04
|
||||
size 7362892
|
||||
oid sha256:1ccb4138c2889ecf04e7faba2c7d55c2be28b519643c5e2f0ba432eb30892cff
|
||||
size 7712069
|
||||
|
Loading…
Reference in New Issue
Block a user