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-11-11 19:21:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/arkade (Old)
 and      /work/SRC/openSUSE:Factory/.arkade.new.1980 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "arkade"

Tue Nov 11 19:21:18 2025 rev:60 rq:1317065 version:0.11.56

Changes:
--------
--- /work/SRC/openSUSE:Factory/arkade/arkade.changes    2025-10-30 
17:11:19.006426222 +0100
+++ /work/SRC/openSUSE:Factory/.arkade.new.1980/arkade.changes  2025-11-11 
19:21:54.664916322 +0100
@@ -1,0 +2,13 @@
+Tue Nov 11 10:27:51 UTC 2025 - Johannes Kastl 
<[email protected]>
+
+- Update to version 0.11.56:
+  * Examples of shortcut apps
+  * Support short names for apps
+
+-------------------------------------------------------------------
+Tue Nov 11 10:17:31 UTC 2025 - Johannes Kastl 
<[email protected]>
+
+- Update to version 0.11.55:
+  * Update for oci install for windows users
+
+-------------------------------------------------------------------

Old:
----
  arkade-0.11.54.obscpio

New:
----
  arkade-0.11.56.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ arkade.spec ++++++
--- /var/tmp/diff_new_pack.QjzV0I/_old  2025-11-11 19:21:55.408947484 +0100
+++ /var/tmp/diff_new_pack.QjzV0I/_new  2025-11-11 19:21:55.408947484 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           arkade
-Version:        0.11.54
+Version:        0.11.56
 Release:        0
 Summary:        Open Source Kubernetes Marketplace
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.QjzV0I/_old  2025-11-11 19:21:55.460949661 +0100
+++ /var/tmp/diff_new_pack.QjzV0I/_new  2025-11-11 19:21:55.464949829 +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.54</param>
+    <param name="revision">0.11.56</param>
     <param name="versionformat">@PARENT_TAG@</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="changesgenerate">enable</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.QjzV0I/_old  2025-11-11 19:21:55.492951002 +0100
+++ /var/tmp/diff_new_pack.QjzV0I/_new  2025-11-11 19:21:55.496951169 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/alexellis/arkade</param>
-              <param 
name="changesrevision">159594008d7ec21a7f33bb1f81b2be0b5ea6ccd1</param></service></servicedata>
+              <param 
name="changesrevision">5fdeccbb17e25bb8ba4571fe0e053be401350dc4</param></service></servicedata>
 (No newline at EOF)
 

++++++ arkade-0.11.54.obscpio -> arkade-0.11.56.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/arkade-0.11.54/cmd/oci/install.go 
new/arkade-0.11.56/cmd/oci/install.go
--- old/arkade-0.11.54/cmd/oci/install.go       2025-10-29 15:17:00.000000000 
+0100
+++ new/arkade-0.11.56/cmd/oci/install.go       2025-11-10 23:20:49.000000000 
+0100
@@ -23,14 +23,17 @@
                Short:   "Install the contents of an OCI image to a given path",
                Long: `Use this command to install binaries or packages 
distributed within an 
 OCI image.`,
-               Example: `  # Install vmmeter to /usr/local/bin
-  arkade oci install ghcr.io/openfaasltd/vmmeter
+               Example: `  # Install slicer to /usr/local/bin
+  arkade oci install ghcr.io/openfaasltd/slicer
 
-  # Install a specific version of vmmeter to /tmp/
-  arkade oci install ghcr.io/openfaasltd/vmmeter --path /tmp --version 0.1.0
+  # Install a specific version of slicer to /tmp/
+  arkade oci install ghcr.io/openfaasltd/slicer --path /tmp --version 0.1.0
 
-  # Install vmmeter for arm64 as an architecture override, instead of using 
uname
-  arkade oci install ghcr.io/openfaasltd/vmmeter --arch arm64
+  # Install slicer for arm64 as an architecture override, instead of using 
uname
+  arkade oci install ghcr.io/openfaasltd/slicer --arch arm64
+
+  # Use a shortcut for the image name (vmmeter, slicer, k3sup-pro)
+  arkade oci install k3sup-pro
 `,
                SilenceUsage: true,
        }
@@ -60,6 +63,15 @@
 
                imageName := args[0]
 
+               switch imageName {
+               case "vmmeter":
+                       imageName = "ghcr.io/openfaasltd/vmmeter"
+               case "slicer":
+                       imageName = "ghcr.io/openfaasltd/slicer"
+               case "k3sup-pro":
+                       imageName = "ghcr.io/openfaasltd/k3sup-pro"
+               }
+
                if !strings.Contains(imageName, ":") {
                        imageName = imageName + ":" + version
                }
@@ -80,6 +92,10 @@
 
                if cmd.Flags().Changed("os") {
                        clientOS, _ = cmd.Flags().GetString("os")
+               } else {
+                       if strings.Contains(clientOS, "microsoft windows") {
+                               clientOS = "windows"
+                       }
                }
 
                tempFile, err := os.CreateTemp(os.TempDir(), "arkade-oci-*")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/arkade-0.11.54/cmd/oci/oci.go 
new/arkade-0.11.56/cmd/oci/oci.go
--- old/arkade-0.11.54/cmd/oci/oci.go   2025-10-29 15:17:00.000000000 +0100
+++ new/arkade-0.11.56/cmd/oci/oci.go   2025-11-10 23:20:49.000000000 +0100
@@ -13,8 +13,8 @@
        command := &cobra.Command{
                Use:     "oci",
                Aliases: []string{"o"},
-               Short:   "oci apps",
-               Long:    `Apps from OCI images.`,
+               Short:   "Install files from OCI/container images",
+               Long:    `Install files from OCI/container images to a given 
path.`,
                Example: `  arkade oci install [container image]
   arkade oci i [container image]`,
                SilenceUsage: true,

++++++ arkade.obsinfo ++++++
--- /var/tmp/diff_new_pack.QjzV0I/_old  2025-11-11 19:21:57.029015337 +0100
+++ /var/tmp/diff_new_pack.QjzV0I/_new  2025-11-11 19:21:57.037015672 +0100
@@ -1,5 +1,5 @@
 name: arkade
-version: 0.11.54
-mtime: 1761747420
-commit: 159594008d7ec21a7f33bb1f81b2be0b5ea6ccd1
+version: 0.11.56
+mtime: 1762813249
+commit: 5fdeccbb17e25bb8ba4571fe0e053be401350dc4
 

++++++ vendor.tar.gz ++++++

Reply via email to