Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package arkade for openSUSE:Factory checked in at 2026-02-12 17:27:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/arkade (Old) and /work/SRC/openSUSE:Factory/.arkade.new.1977 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "arkade" Thu Feb 12 17:27:27 2026 rev:75 rq:1332707 version:0.11.79 Changes: -------- --- /work/SRC/openSUSE:Factory/arkade/arkade.changes 2026-02-10 21:14:39.001163207 +0100 +++ /work/SRC/openSUSE:Factory/.arkade.new.1977/arkade.changes 2026-02-12 17:28:50.071025872 +0100 @@ -1,0 +2,16 @@ +Thu Feb 12 12:49:56 UTC 2026 - Johannes Kastl <[email protected]> + +- Update to version 0.11.79: + * Switch to binfmt for qemu-static +- Update to version 0.11.78: + no changes +- Update to version 0.11.77: + * qemu-static can run on arm64 systems now + +------------------------------------------------------------------- +Thu Feb 12 06:11:49 UTC 2026 - Johannes Kastl <[email protected]> + +- Update to version 0.11.76: + * Fix traefik2 install for current Helm chart + +------------------------------------------------------------------- Old: ---- arkade-0.11.75.obscpio New: ---- arkade-0.11.79.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ arkade.spec ++++++ --- /var/tmp/diff_new_pack.RZTKXb/_old 2026-02-12 17:28:55.143241051 +0100 +++ /var/tmp/diff_new_pack.RZTKXb/_new 2026-02-12 17:28:55.163241899 +0100 @@ -17,7 +17,7 @@ Name: arkade -Version: 0.11.75 +Version: 0.11.79 Release: 0 Summary: Open Source Kubernetes Marketplace License: Apache-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.RZTKXb/_old 2026-02-12 17:28:55.579259548 +0100 +++ /var/tmp/diff_new_pack.RZTKXb/_new 2026-02-12 17:28:55.647262432 +0100 @@ -3,7 +3,7 @@ <param name="url">https://github.com/alexellis/arkade</param> <param name="scm">git</param> <param name="exclude">.git</param> - <param name="revision">0.11.75</param> + <param name="revision">0.11.79</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.RZTKXb/_old 2026-02-12 17:28:55.935274651 +0100 +++ /var/tmp/diff_new_pack.RZTKXb/_new 2026-02-12 17:28:56.007277705 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/alexellis/arkade</param> - <param name="changesrevision">8e860ea5a87682d22908c2d4355c50f089b55c0a</param></service></servicedata> + <param name="changesrevision">3f8830418f1e16bc3400fe19e94e61a0328c3199</param></service></servicedata> (No newline at EOF) ++++++ arkade-0.11.75.obscpio -> arkade-0.11.79.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/arkade-0.11.75/cmd/apps/qemu-static.go new/arkade-0.11.79/cmd/apps/qemu-static.go --- old/arkade-0.11.75/cmd/apps/qemu-static.go 2026-02-10 11:35:47.000000000 +0100 +++ new/arkade-0.11.79/cmd/apps/qemu-static.go 2026-02-12 12:12:24.000000000 +0100 @@ -9,7 +9,6 @@ "os" "github.com/alexellis/arkade/pkg" - "github.com/alexellis/arkade/pkg/env" execute "github.com/alexellis/go-execute/v2" "github.com/spf13/cobra" ) @@ -18,26 +17,19 @@ var qemuStatic = &cobra.Command{ Use: "qemu-static", Short: "Install qemu-user-static", - Long: `Runs the qemu-user-static container in Docker to enable + Long: `Runs the tonistiigi/binfmt container in Docker to enable support for multi-arch builds. Learn more: -https://github.com/multiarch/qemu-user-static`, +https://github.com/tonistiigi/binfmt`, Example: ` arkade install qemu-static`, - Aliases: []string{"qemu-user-static"}, + Aliases: []string{"qemu-user-static", "binfmt"}, SilenceUsage: true, } qemuStatic.RunE = func(command *cobra.Command, args []string) error { - - arch, _ := env.GetClientArch() - - if arch != "x86_64" { - return fmt.Errorf(`qemu-user-static is only supported on the AMD64 architecture, found: %s`, arch) - } - - fmt.Printf("Running \"docker run --rm --privileged multiarch/qemu-user-static --reset -p yes\"\n\n") + fmt.Printf("Running \"docker run --privileged --rm tonistiigi/binfmt --install all\"\n\n") if err := runQemuStaticContainer(); err != nil { return err @@ -52,7 +44,7 @@ } const QemuStaticInfoMsg = `# Find out more at: -# https://github.com/multiarch/qemu-user-static` +# https://github.com/tonistiigi/binfmt` const qemuStaticPostInstallMsg = `======================================================================= = qemu-user-static has been installed. = @@ -62,8 +54,8 @@ func runQemuStaticContainer() error { task := execute.ExecTask{ Command: "docker", - Args: []string{"run", "--rm", "--privileged", - "multiarch/qemu-user-static", "--reset", "-p", "yes"}, + Args: []string{"run", "--privileged", "--rm", + "tonistiigi/binfmt", "--install", "all"}, Env: os.Environ(), StreamStdio: true, } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/arkade-0.11.75/cmd/apps/traefik2_app.go new/arkade-0.11.79/cmd/apps/traefik2_app.go --- old/arkade-0.11.75/cmd/apps/traefik2_app.go 2026-02-10 11:35:47.000000000 +0100 +++ new/arkade-0.11.79/cmd/apps/traefik2_app.go 2026-02-12 12:12:24.000000000 +0100 @@ -52,7 +52,7 @@ return err } - err = helm.AddHelmRepo("traefik", "https://helm.traefik.io/traefik", updateRepo) + err = helm.AddHelmRepo("traefik", "https://traefik.github.io/charts", updateRepo) if err != nil { return fmt.Errorf("Unable to add repo %s", err) } @@ -74,15 +74,15 @@ } overrides["service.type"] = svc - overrides["additional.checkNewVersion"] = "false" - overrides["additional.sendAnonymousUsage"] = "false" + overrides["global.checkNewVersion"] = "false" + overrides["global.sendAnonymousUsage"] = "false" if dashboard { - overrides["dashboard.ingressRoute"] = "true" + overrides["ingressRoute.dashboard.enabled"] = "true" } if ingressProvider { - overrides["additionalArguments"] = `{--providers.kubernetesingress}` + overrides["additionalArguments[0]"] = "--providers.kubernetesingress" } customFlags, err := command.Flags().GetStringArray("set") ++++++ arkade.obsinfo ++++++ --- /var/tmp/diff_new_pack.RZTKXb/_old 2026-02-12 17:28:59.435423137 +0100 +++ /var/tmp/diff_new_pack.RZTKXb/_new 2026-02-12 17:28:59.471424665 +0100 @@ -1,5 +1,5 @@ name: arkade -version: 0.11.75 -mtime: 1770719747 -commit: 8e860ea5a87682d22908c2d4355c50f089b55c0a +version: 0.11.79 +mtime: 1770894744 +commit: 3f8830418f1e16bc3400fe19e94e61a0328c3199 ++++++ vendor.tar.gz ++++++
