Accepting request 1223532 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/1223532 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perses-cli?expand=0&rev=3
This commit is contained in:
commit
57194fdb55
2
_service
2
_service
@ -3,7 +3,7 @@
|
|||||||
<param name="url">https://github.com/perses/perses/</param>
|
<param name="url">https://github.com/perses/perses/</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="exclude">.git</param>
|
<param name="exclude">.git</param>
|
||||||
<param name="revision">v0.48.0</param>
|
<param name="revision">v0.49.0</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/perses/perses/</param>
|
<param name="url">https://github.com/perses/perses/</param>
|
||||||
<param name="changesrevision">d9a8b90b7213248160f8b6c6428c043c0709c3e4</param></service></servicedata>
|
<param name="changesrevision">49fb6056c41c2f49a849ebb01d751be0400f1286</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:35fc226f6fb7c672ee7be0a9d2a9663385b89cadef8f00a61140e61f0276d7b0
|
|
||||||
size 10552333
|
|
3
perses-cli-0.49.0.obscpio
Normal file
3
perses-cli-0.49.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3eeeaf3e117145da6ee895d71e4adabe94bd988c11b64cd15a2ec452f10c9ac6
|
||||||
|
size 10706445
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 12 06:52:05 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||||
|
|
||||||
|
- Update to version 0.49.0:
|
||||||
|
CLI-related changes:
|
||||||
|
* [DOC] better wording for `percli dac`'s commands helpers
|
||||||
|
(#2350)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 11 07:27:36 UTC 2024 - opensuse_buildservice@ojkastl.de
|
Fri Oct 11 07:27:36 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: perses-cli
|
name: perses-cli
|
||||||
version: 0.48.0
|
version: 0.49.0
|
||||||
mtime: 1728475705
|
mtime: 1730801076
|
||||||
commit: d9a8b90b7213248160f8b6c6428c043c0709c3e4
|
commit: 49fb6056c41c2f49a849ebb01d751be0400f1286
|
||||||
|
@ -16,19 +16,20 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
|
|
||||||
|
|
||||||
%define executable_name percli
|
%define executable_name percli
|
||||||
|
|
||||||
Name: perses-cli
|
Name: perses-cli
|
||||||
Version: 0.48.0
|
Version: 0.49.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: CLI for the Perses observability visualisation project
|
Summary: CLI for the Perses observability visualisation project
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: https://github.com/perses/perses
|
URL: https://github.com/perses/perses
|
||||||
Source: %{name}-%{version}.tar.gz
|
Source: %{name}-%{version}.tar.gz
|
||||||
Source1: vendor.tar.gz
|
Source1: vendor.tar.gz
|
||||||
|
BuildRequires: bash-completion
|
||||||
|
BuildRequires: fish
|
||||||
BuildRequires: go1.22 >= 1.22.5
|
BuildRequires: go1.22 >= 1.22.5
|
||||||
|
BuildRequires: zsh
|
||||||
Provides: percli = %{version}
|
Provides: percli = %{version}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -99,8 +100,8 @@ mkdir -p %{buildroot}%{_datarootdir}/fish/vendor_completions.d/
|
|||||||
%{buildroot}/%{_bindir}/%{executable_name} completion fish > %{buildroot}%{_datarootdir}/fish/vendor_completions.d/%{executable_name}.fish
|
%{buildroot}/%{_bindir}/%{executable_name} completion fish > %{buildroot}%{_datarootdir}/fish/vendor_completions.d/%{executable_name}.fish
|
||||||
|
|
||||||
# create the zsh completion file
|
# create the zsh completion file
|
||||||
mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d/
|
mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/
|
||||||
%{buildroot}/%{_bindir}/%{executable_name} completion zsh > %{buildroot}%{_datarootdir}/zsh_completion.d/_%{executable_name}
|
%{buildroot}/%{_bindir}/%{executable_name} completion zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_%{executable_name}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README.md
|
%doc README.md
|
||||||
@ -108,17 +109,12 @@ mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d/
|
|||||||
%{_bindir}/%{executable_name}
|
%{_bindir}/%{executable_name}
|
||||||
|
|
||||||
%files -n %{name}-bash-completion
|
%files -n %{name}-bash-completion
|
||||||
%dir %{_datarootdir}/bash-completion/completions/
|
|
||||||
%{_datarootdir}/bash-completion/completions/%{executable_name}
|
%{_datarootdir}/bash-completion/completions/%{executable_name}
|
||||||
|
|
||||||
%files -n %{name}-fish-completion
|
%files -n %{name}-fish-completion
|
||||||
%dir %{_datarootdir}/fish
|
|
||||||
%dir %{_datarootdir}/fish/vendor_completions.d
|
|
||||||
%{_datarootdir}/fish/vendor_completions.d/%{executable_name}.fish
|
%{_datarootdir}/fish/vendor_completions.d/%{executable_name}.fish
|
||||||
|
|
||||||
%files -n %{name}-zsh-completion
|
%files -n %{name}-zsh-completion
|
||||||
%defattr(-,root,root)
|
%{_datarootdir}/zsh/site-functions/_%{executable_name}
|
||||||
%dir %{_datarootdir}/zsh_completion.d/
|
|
||||||
%{_datarootdir}/zsh_completion.d/_%{executable_name}
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:38faa2cc8fd5bb4f37c8b9a80eb23bee3b253f00f3a6ddc7303167ba07523110
|
oid sha256:a713a978bddcffa0d5e479eb2f79bcb8a57e7ff3218cc28974979cf333d21996
|
||||||
size 11551914
|
size 11539421
|
||||||
|
Loading…
Reference in New Issue
Block a user