Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package buildpacks-cli for openSUSE:Factory checked in at 2025-06-14 16:18:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/buildpacks-cli (Old) and /work/SRC/openSUSE:Factory/.buildpacks-cli.new.19631 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "buildpacks-cli" Sat Jun 14 16:18:18 2025 rev:9 rq:1285785 version:0.38.0 Changes: -------- --- /work/SRC/openSUSE:Factory/buildpacks-cli/buildpacks-cli.changes 2025-03-24 13:29:21.668579982 +0100 +++ /work/SRC/openSUSE:Factory/.buildpacks-cli.new.19631/buildpacks-cli.changes 2025-06-14 16:19:38.482998062 +0200 @@ -1,0 +2,42 @@ +Sat Jun 14 08:26:05 UTC 2025 - Johannes Kastl <opensuse_buildserv...@ojkastl.de> + +- Update to version 0.38.0: + * Features + - Make go build work without Makefile (#2390 by @abitrolly) + - Fix default userns=host behavior to be opt-in (#2386 by + @jjbustamante) + - Add as suggested builder the ubi8 builder image (#2383 by + @cmoulliard) + - Bump to go 1.24 (#2364 by @AidanDelaney) + - Clarify help text for append-image-name-suffix (#2358 by + @natalieparellano) + - Support FreeBSD build phase (#2357 by @gogolok) + - Updating default lifecycle version to 0.20.8 (#2356 by + @jjbustamante) + - pack builder create supports system buildpacks (#2349 by + @jjbustamante) + - Support docker uri for lifecycle (#2112 by @rashadism) + - Support Insecure Registries (#2077 by @prashantrewar) + * Bugs + - Do not select target for daemon only from os if arch is + specified (#2385 by @pigeonhands) + * Dependencies + - build(deps): bump buildpacks/github-actions from 5.8.10 to + 5.8.11 (#2381) + - build(deps): bump the go-dependencies group with 6 updates + (#2380) + - build(deps): bump github.com/go-git/go-git/v5 (#2373) + - Upgrade Go version to 1.24 + - build(deps): bump the go-dependencies group across 1 + directory with 8 updates + - updating go.mod at tools to 1.24 + - Bump to go 1.24 + - build(deps): bump buildpacks/github-actions from 5.8.8 to + 5.8.10 + - build(deps): bump the go-dependencies group across 1 + directory with 9 updates + - build(deps): bump github.com/golang-jwt/jwt/v4 from 4.5.1 to + 4.5.2 + - Upgrade Go version to 1.23.3 across project files + +------------------------------------------------------------------- Old: ---- buildpacks-cli-0.37.0.obscpio New: ---- buildpacks-cli-0.38.0.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ buildpacks-cli.spec ++++++ --- /var/tmp/diff_new_pack.k0ZBdO/_old 2025-06-14 16:19:47.695377907 +0200 +++ /var/tmp/diff_new_pack.k0ZBdO/_new 2025-06-14 16:19:47.707378402 +0200 @@ -19,7 +19,7 @@ %define executable_name pack Name: buildpacks-cli -Version: 0.37.0 +Version: 0.38.0 Release: 0 Summary: CLI for building apps using Cloud Native Buildpacks License: Apache-2.0 @@ -28,8 +28,8 @@ Source1: vendor.tar.gz BuildRequires: bash-completion BuildRequires: fish -BuildRequires: go >= 1.22 BuildRequires: zsh +BuildRequires: golang(API) >= 1.24 Provides: pack = %{version} Conflicts: allegro44-tools # @@ -80,27 +80,33 @@ %autosetup -p 1 -a 1 %build +# hash will be shortened by COMMIT_HASH:0:7 later +COMMIT_HASH="$(sed -n 's/commit: \(.*\)/\1/p' %_sourcedir/%{name}.obsinfo)" + go build \ -mod=vendor \ -buildmode=pie \ - -ldflags="-X github.com/buildpacks/pack.Version=%{version}" \ - -o bin/%{executable_name} ./cmd/%{executable_name} + -ldflags="-X github.com/buildpacks/pack/pkg/client.Version=%{version}+git-${COMMIT_HASH:0:7}.openSUSE" \ + -o bin/%{executable_name} %install # Install the binary. -install -D -m 0755 bin/%{executable_name} %{buildroot}/%{_bindir}/%{executable_name} +install -D -m 0755 bin/%{executable_name} %{buildroot}%{_bindir}/%{executable_name} # create the bash completion file mkdir -p %{buildroot}%{_datarootdir}/bash-completion/completions/ -%{buildroot}/%{_bindir}/%{executable_name} completion bash > %{buildroot}%{_datarootdir}/bash-completion/completions/%{executable_name} +%{buildroot}%{_bindir}/%{executable_name} completion bash > %{buildroot}%{_datarootdir}/bash-completion/completions/%{executable_name} # create the fish completion file 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 mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/ -%{buildroot}/%{_bindir}/%{executable_name} completion zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_%{executable_name} +%{buildroot}%{_bindir}/%{executable_name} completion zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_%{executable_name} + +%check +%{buildroot}%{_bindir}/%{executable_name} --version | grep %{version} %files %doc README.md ++++++ _service ++++++ --- /var/tmp/diff_new_pack.k0ZBdO/_old 2025-06-14 16:19:48.035391926 +0200 +++ /var/tmp/diff_new_pack.k0ZBdO/_new 2025-06-14 16:19:48.087394071 +0200 @@ -3,7 +3,7 @@ <param name="url">https://github.com/buildpacks/pack</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">v0.37.0</param> + <param name="revision">v0.38.0</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.k0ZBdO/_old 2025-06-14 16:19:48.179397864 +0200 +++ /var/tmp/diff_new_pack.k0ZBdO/_new 2025-06-14 16:19:48.215399348 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/buildpacks/pack</param> - <param name="changesrevision">bf1bd85682ed57e6015cc5faeb9e97a1aa7139fe</param></service></servicedata> + <param name="changesrevision">8e54e8a8db67f404d47789ffdf933797e43ee493</param></service></servicedata> (No newline at EOF) ++++++ buildpacks-cli-0.37.0.obscpio -> buildpacks-cli-0.38.0.obscpio ++++++ ++++ 5619 lines of diff (skipped) ++++++ buildpacks-cli.obsinfo ++++++ --- /var/tmp/diff_new_pack.k0ZBdO/_old 2025-06-14 16:19:49.323445036 +0200 +++ /var/tmp/diff_new_pack.k0ZBdO/_new 2025-06-14 16:19:49.327445201 +0200 @@ -1,5 +1,5 @@ name: buildpacks-cli -version: 0.37.0 -mtime: 1741953498 -commit: bf1bd85682ed57e6015cc5faeb9e97a1aa7139fe +version: 0.38.0 +mtime: 1749231074 +commit: 8e54e8a8db67f404d47789ffdf933797e43ee493 ++++++ vendor.tar.gz ++++++ /work/SRC/openSUSE:Factory/buildpacks-cli/vendor.tar.gz /work/SRC/openSUSE:Factory/.buildpacks-cli.new.19631/vendor.tar.gz differ: char 5, line 1