Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package arkade for openSUSE:Factory checked in at 2025-10-18 14:36:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/arkade (Old) and /work/SRC/openSUSE:Factory/.arkade.new.18484 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "arkade" Sat Oct 18 14:36:38 2025 rev:57 rq:1312128 version:0.11.51 Changes: -------- --- /work/SRC/openSUSE:Factory/arkade/arkade.changes 2025-10-06 18:08:14.659563855 +0200 +++ /work/SRC/openSUSE:Factory/.arkade.new.18484/arkade.changes 2025-10-18 14:38:05.727123491 +0200 @@ -1,0 +2,7 @@ +Sat Oct 18 06:02:38 UTC 2025 - Johannes Kastl <[email protected]> + +- Update to version 0.11.51: + * Add alexellis/discord-updater + * fix: increase k8s ver strat timeout to 10 + +------------------------------------------------------------------- Old: ---- arkade-0.11.50.obscpio New: ---- arkade-0.11.51.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ arkade.spec ++++++ --- /var/tmp/diff_new_pack.oxD1y4/_old 2025-10-18 14:38:06.503155955 +0200 +++ /var/tmp/diff_new_pack.oxD1y4/_new 2025-10-18 14:38:06.503155955 +0200 @@ -17,7 +17,7 @@ Name: arkade -Version: 0.11.50 +Version: 0.11.51 Release: 0 Summary: Open Source Kubernetes Marketplace License: Apache-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.oxD1y4/_old 2025-10-18 14:38:06.567158633 +0200 +++ /var/tmp/diff_new_pack.oxD1y4/_new 2025-10-18 14:38:06.571158800 +0200 @@ -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.50</param> + <param name="revision">0.11.51</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.oxD1y4/_old 2025-10-18 14:38:06.599159972 +0200 +++ /var/tmp/diff_new_pack.oxD1y4/_new 2025-10-18 14:38:06.599159972 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/alexellis/arkade</param> - <param name="changesrevision">7436f52ab122d4de069d5f1c2d731c2801f1805a</param></service></servicedata> + <param name="changesrevision">6df799d60833803dd6718ea66d32c17fe2890b5a</param></service></servicedata> (No newline at EOF) ++++++ arkade-0.11.50.obscpio -> arkade-0.11.51.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/arkade-0.11.50/README.md new/arkade-0.11.51/README.md --- old/arkade-0.11.50/README.md 2025-10-03 20:34:10.000000000 +0200 +++ new/arkade-0.11.51/README.md 2025-10-17 09:35:44.000000000 +0200 @@ -790,6 +790,7 @@ | [crossplane](https://github.com/crossplane/crossplane) | Simplify some development and administration aspects of Crossplane. | | [dagger](https://github.com/dagger/dagger) | A portable devkit for CI/CD pipelines. | | [devpod](https://github.com/loft-sh/devpod) | Codespaces but open-source, client-only and unopinionated: Works with any IDE and lets you use any cloud, kubernetes or just localhost docker. | +| [discord-updater](https://github.com/alexellis/discord-updater) | Discord updater tool. | | [devspace](https://github.com/devspace-sh/devspace) | Automate your deployment workflow with DevSpace and develop software directly inside Kubernetes. | | [dive](https://github.com/wagoodman/dive) | A tool for exploring each layer in a docker image | | [docker-compose](https://github.com/docker/compose) | Define and run multi-container applications with Docker. | @@ -935,6 +936,6 @@ | [waypoint](https://github.com/hashicorp/waypoint) | Easy application deployment for Kubernetes and Amazon ECS | | [yq](https://github.com/mikefarah/yq) | Portable command-line YAML processor. | | [yt-dlp](https://github.com/yt-dlp/yt-dlp) | Fork of youtube-dl with additional features and fixes | -There are 174 tools, use `arkade get NAME` to download one. +There are 175 tools, use `arkade get NAME` to download one. > Note to contributors, run `go build && ./arkade get --format markdown` to > generate this list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/arkade-0.11.50/pkg/get/get.go new/arkade-0.11.51/pkg/get/get.go --- old/arkade-0.11.50/pkg/get/get.go 2025-10-03 20:34:10.000000000 +0200 +++ new/arkade-0.11.51/pkg/get/get.go 2025-10-17 09:35:44.000000000 +0200 @@ -83,7 +83,7 @@ }, k8sVersionStrategy: { Url: "https://cdn.dl.k8s.io/release/stable.txt", - Timeout: time.Second * 5, + Timeout: time.Second * 10, Method: http.MethodGet, }, } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/arkade-0.11.50/pkg/get/get_test.go new/arkade-0.11.51/pkg/get/get_test.go --- old/arkade-0.11.50/pkg/get/get_test.go 2025-10-03 20:34:10.000000000 +0200 +++ new/arkade-0.11.51/pkg/get/get_test.go 2025-10-17 09:35:44.000000000 +0200 @@ -900,6 +900,41 @@ } } +func Test_DownloadDiscordUpdater(t *testing.T) { + tools := MakeTools() + name := "discord-updater" + + tool := getTool(name, tools) + + tests := []test{ + {os: "linux", + arch: arch64bit, + version: "v0.0.2", + url: "https://github.com/alexellis/discord-updater/releases/download/v0.0.2/discord-updater"}, + {os: "linux", + arch: archARM64, + version: "v0.0.2", + url: "https://github.com/alexellis/discord-updater/releases/download/v0.0.2/discord-updater-arm64"}, + {os: "mingw64_nt-10.0-18362", + arch: arch64bit, + version: "v0.0.2", + url: "https://github.com/alexellis/discord-updater/releases/download/v0.0.2/discord-updater-not-available"}, + {os: "darwin", + arch: arch64bit, + version: "v0.0.2", + url: "https://github.com/alexellis/discord-updater/releases/download/v0.0.2/discord-updater-not-available"}, + } + for _, tc := range tests { + got, err := tool.GetURL(tc.os, tc.arch, tc.version, false) + if err != nil { + t.Fatal(err) + } + if got != tc.url { + t.Fatalf("want: %s, got: %s", tc.url, got) + } + } +} + func Test_DownloadTilt(t *testing.T) { tools := MakeTools() name := "tilt" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/arkade-0.11.50/pkg/get/tools.go new/arkade-0.11.51/pkg/get/tools.go --- old/arkade-0.11.50/pkg/get/tools.go 2025-10-03 20:34:10.000000000 +0200 +++ new/arkade-0.11.51/pkg/get/tools.go 2025-10-17 09:35:44.000000000 +0200 @@ -355,6 +355,23 @@ tools = append(tools, Tool{ + Owner: "alexellis", + Repo: "discord-updater", + Name: "discord-updater", + Description: "Discord updater tool.", + BinaryTemplate: `{{$binary := "discord-updater-not-available"}} +{{- if eq .OS "linux" -}} + {{- if eq .Arch "aarch64" -}} + {{$binary = "discord-updater-arm64"}} + {{- else -}} + {{$binary = "discord-updater"}} + {{- end -}} +{{- end -}} +{{$binary}}`, + }) + + tools = append(tools, + Tool{ Owner: "tilt-dev", Repo: "tilt", Name: "tilt", ++++++ arkade.obsinfo ++++++ --- /var/tmp/diff_new_pack.oxD1y4/_old 2025-10-18 14:38:08.163225402 +0200 +++ /var/tmp/diff_new_pack.oxD1y4/_new 2025-10-18 14:38:08.167225570 +0200 @@ -1,5 +1,5 @@ name: arkade -version: 0.11.50 -mtime: 1759516450 -commit: 7436f52ab122d4de069d5f1c2d731c2801f1805a +version: 0.11.51 +mtime: 1760686544 +commit: 6df799d60833803dd6718ea66d32c17fe2890b5a ++++++ vendor.tar.gz ++++++
