Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package skupper for openSUSE:Factory checked in at 2025-03-21 20:23:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/skupper (Old) and /work/SRC/openSUSE:Factory/.skupper.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "skupper" Fri Mar 21 20:23:02 2025 rev:5 rq:1254939 version:2.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/skupper/skupper.changes 2025-01-09 15:12:28.972854989 +0100 +++ /work/SRC/openSUSE:Factory/.skupper.new.2696/skupper.changes 2025-03-21 20:23:15.232835776 +0100 @@ -1,0 +2,25 @@ +Fri Mar 07 17:32:01 UTC 2025 - opensuse_buildserv...@ojkastl.de + +- Update to version 2.0.0: + * Changelog + - Automate secret generation in network-observer chart + - Relabeling podman containers to allow v1 and v2 to coexist + - Add ensure-secret command to network observer + - Added install/uninstall system commands + - Site state serialized using flat structure (non-kube + platforms) + - Add ability to configure labels and annotations on created + resources + - Improved handing of conflict between multiple controllers + - Add means of configuring site sizing + - Cache the configured platform + * Fixes + - https://github.com/skupperproject/skupper/issues/1958 + - https://github.com/skupperproject/skupper/issues/1897 + - https://github.com/skupperproject/skupper/issues/1930 + - https://github.com/skupperproject/skupper/issues/1979 + - https://github.com/skupperproject/skupper/issues/1862 + - https://github.com/skupperproject/skupper/issues/1956 + - https://github.com/skupperproject/skupper/issues/1942 + +------------------------------------------------------------------- Old: ---- Makefile PACKAGING_README.md generated.tar.gz skupper-1.8.3.obscpio New: ---- skupper-2.0.0.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ skupper.spec ++++++ --- /var/tmp/diff_new_pack.QfQuiG/_old 2025-03-21 20:23:17.152915656 +0100 +++ /var/tmp/diff_new_pack.QfQuiG/_new 2025-03-21 20:23:17.156915823 +0100 @@ -16,19 +16,18 @@ # -%define __arch_install_post export NO_BRP_STRIP_DEBUG=true - Name: skupper -Version: 1.8.3 +Version: 2.0.0 Release: 0 Summary: Virtual Application Network, enabling rich hybrid cloud communication License: Apache-2.0 URL: https://github.com/skupperproject/skupper Source: %{name}-%{version}.tar.gz Source1: vendor.tar.gz -Source2: generated.tar.gz -Source3: PACKAGING_README.md +BuildRequires: bash-completion +BuildRequires: fish BuildRequires: go >= 1.22 +BuildRequires: zsh %description Skupper enables cloud communication by enabling you to create a Virtual @@ -53,9 +52,41 @@ Skupper does not require any special privileges, that is, you do not require the cluster-admin role to create networks. +%package -n %{name}-bash-completion +Summary: Bash Completion for %{name} +Group: System/Shells +Requires: %{name} = %{version} +Requires: bash-completion +Supplements: (%{name} and bash-completion) +BuildArch: noarch + +%description -n %{name}-bash-completion +Bash command line completion support for %{name}. + +%package -n %{name}-fish-completion +Summary: Fish Completion for %{name} +Group: System/Shells +Requires: %{name} = %{version} +Requires: fish +Supplements: (%{name} and fish) +BuildArch: noarch + +%description -n %{name}-fish-completion +Fish command line completion support for %{name}. + +%package -n %{name}-zsh-completion +Summary: Zsh Completion for %{name} +Group: System/Shells +Requires: %{name} = %{version} +Requires: zsh +Supplements: (%{name} and zsh) +BuildArch: noarch + +%description -n %{name}-zsh-completion +zsh command line completion support for %{name}. + %prep %autosetup -p 1 -a 1 -tar xvf %{SOURCE2} %build go build \ @@ -69,11 +100,32 @@ # Install the binary. install -D -m 0755 bin/%{name} %{buildroot}/%{_bindir}/%{name} +# create the bash completion file +mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions/ +%{buildroot}/%{_bindir}/%{name} completion bash > %{buildroot}%{_datarootdir}/bash-completion/completions/%{name} + +# create the fish completion file +mkdir -p %{buildroot}%{_datarootdir}/fish/vendor_completions.d/ +%{buildroot}/%{_bindir}/%{name} completion fish > %{buildroot}%{_datarootdir}/fish/vendor_completions.d/%{name}.fish + +# create the zsh completion file +mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/ +%{buildroot}/%{_bindir}/%{name} completion zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_%{name} + %check -go test -v -count=1 ./client +%{buildroot}/%{_bindir}/%{name} version | grep 'cli.*%{version}' %files %doc README.md %license LICENSE %{_bindir}/%{name} +%files -n %{name}-bash-completion +%{_datarootdir}/bash-completion/completions/%{name} + +%files -n %{name}-fish-completion +%{_datarootdir}/fish/vendor_completions.d/%{name}.fish + +%files -n %{name}-zsh-completion +%{_datarootdir}/zsh/site-functions/_%{name} + ++++++ _service ++++++ --- /var/tmp/diff_new_pack.QfQuiG/_old 2025-03-21 20:23:17.196917487 +0100 +++ /var/tmp/diff_new_pack.QfQuiG/_new 2025-03-21 20:23:17.196917487 +0100 @@ -3,12 +3,14 @@ <param name="url">https://github.com/skupperproject/skupper</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">1.8.3</param> + <param name="revision">2.0.0</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> </service> <service name="set_version" mode="manual"> </service> + <service name="go_modules" mode="manual"> + </service> <!-- services below are running at buildtime --> <service name="tar" mode="buildtime"> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.QfQuiG/_old 2025-03-21 20:23:17.220918485 +0100 +++ /var/tmp/diff_new_pack.QfQuiG/_new 2025-03-21 20:23:17.224918652 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/skupperproject/skupper</param> - <param name="changesrevision">f9c88e4e90f0a7f916e9b5d29e8dce5d2340f78e</param></service></servicedata> + <param name="changesrevision">773d96887ab6db0be606d57067cac38b7fa1079c</param></service></servicedata> (No newline at EOF) ++++++ skupper-1.8.3.obscpio -> skupper-2.0.0.obscpio ++++++ ++++ 240370 lines of diff (skipped) ++++++ skupper.obsinfo ++++++ --- /var/tmp/diff_new_pack.QfQuiG/_old 2025-03-21 20:23:17.676937457 +0100 +++ /var/tmp/diff_new_pack.QfQuiG/_new 2025-03-21 20:23:17.680937623 +0100 @@ -1,5 +1,5 @@ name: skupper -version: 1.8.3 -mtime: 1736359252 -commit: f9c88e4e90f0a7f916e9b5d29e8dce5d2340f78e +version: 2.0.0 +mtime: 1741363085 +commit: 773d96887ab6db0be606d57067cac38b7fa1079c ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/skupper/vendor.tar.gz /work/SRC/openSUSE:Factory/.skupper.new.2696/vendor.tar.gz differ: char 5, line 1