Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cockpit-podman for openSUSE:Factory 
checked in at 2026-07-26 11:27:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cockpit-podman (Old)
 and      /work/SRC/openSUSE:Factory/.cockpit-podman.new.2004 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cockpit-podman"

Sun Jul 26 11:27:17 2026 rev:30 rq:1367651 version:128

Changes:
--------
--- /work/SRC/openSUSE:Factory/cockpit-podman/cockpit-podman.changes    
2026-02-27 17:06:02.786509120 +0100
+++ /work/SRC/openSUSE:Factory/.cockpit-podman.new.2004/cockpit-podman.changes  
2026-07-26 11:27:50.065391751 +0200
@@ -1,0 +2,35 @@
+Tue Jun 30 10:43:27 UTC 2026 - Alice Brooks <[email protected]>
+
+- Update to 128
+  * 128
+    - Translation and dependency updates
+  * 127
+    - Avoid bogus page reloads on firefox
+  * 126
+    - Bug fixes and translation updates
+
+-------------------------------------------------------------------
+Wed Apr 22 09:58:50 UTC 2026 - Alice Brooks <[email protected]>
+
+- Update to 125
+  * 125
+    - Dependency updates
+  * 124
+    - Translation and dependency updates
+
+-------------------------------------------------------------------
+Wed Mar 25 09:56:18 UTC 2026 - Alice Brooks <[email protected]>
+
+- Update to 123
+  * 123
+    - Don't show Quadlet template units
+    - Handle quadlet lifecycle errors
+    - Translation update
+  * 122
+    - Show description, version and documentation image labels
+    - Bug fixes and translation updates
+  * 120
+    - Update dependencies
+    - Convert license headers to SPDX format
+
+-------------------------------------------------------------------
@@ -4 +39 @@
-- Update dependencies bsc#1257836/CVE-2026-25547, bsc#1258641/CVE-2026-26996
+- Update dependencies bsc#1257836/CVE-2026-25547, bsc#1258641/CVE-2026-26996, 
bsc#1259013/CVE-2026-27904

Old:
----
  cockpit-podman-120.tar.gz

New:
----
  cockpit-podman-128.tar.gz
  update_version.sh

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

Other differences:
------------------
++++++ cockpit-podman.spec ++++++
--- /var/tmp/diff_new_pack.Gt6lFa/_old  2026-07-26 11:28:09.986072186 +0200
+++ /var/tmp/diff_new_pack.Gt6lFa/_new  2026-07-26 11:28:09.986072186 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           cockpit-podman
-Version:        120
+Version:        128
 Release:        0
 Summary:        Cockpit component for Podman containers
 License:        LGPL-2.1-or-later

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.Gt6lFa/_old  2026-07-26 11:28:10.030073689 +0200
+++ /var/tmp/diff_new_pack.Gt6lFa/_new  2026-07-26 11:28:10.034073825 +0200
@@ -1,6 +1,6 @@
-mtime: 1771939578
-commit: 763541581cc921bc16e3ec6bbe9c0fbc420469f08aa55d4165d99760202390e7
-url: https://src.opensuse.org/cockpit/cockpit-podman.git
-revision: 763541581cc921bc16e3ec6bbe9c0fbc420469f08aa55d4165d99760202390e7
+mtime: 1782816286
+commit: 16d3979bbfc5027b76bcaec5d3f514a532113c5e0cc81091d09838449635057a
+url: https://src.opensuse.org/cockpit/cockpit-podman
+revision: 16d3979bbfc5027b76bcaec5d3f514a532113c5e0cc81091d09838449635057a
 projectscmsync: https://src.opensuse.org/cockpit/_ObsPrj.git
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-06-30 12:44:46.000000000 +0200
@@ -0,0 +1,2 @@
+.osc
+node_modules.sums
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/update_version.sh new/update_version.sh
--- old/update_version.sh       1970-01-01 01:00:00.000000000 +0100
+++ new/update_version.sh       2026-06-30 12:44:46.000000000 +0200
@@ -0,0 +1,81 @@
+#!/usr/bin/bash
+
+set -e
+
+curVersion=$(grep Version: cockpit-podman.spec | sed -e 
's,^\(\s*Version:\s*\)\(.*\)\s*$,\2,')
+
+if [[ ! "$curVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then
+  echo "Error: curVersion is not a valid integer"
+  exit 1
+fi
+
+if [[ "$curVersion" =~ '.' ]]; then
+    curMajor=$(echo ${curVersion} | cut -d'.' -f1)
+    curMinor=$(echo ${curVersion} | cut -d'.' -f2)
+else
+    curMajor=$curVersion
+    curMinor='0'
+fi
+
+###
+### Fetch latest soruces
+###
+
+GitDir="cockpit-podman"
+GWD="-C $GitDir"
+
+# fetch latest cockpit-podman
+if [ ! -d $GitDir ]; then
+       git clone https://github.com/cockpit-project/cockpit-podman $GitDir
+else
+    git $GWD checkout main
+       git $GWD fetch
+fi
+
+newVersion=$(git $GWD tag | grep '^[0-9.]\+$' | sort -rn | head -1)
+
+echo "Current version: $curVersion"
+echo "    New version: $newVersion"
+
+if [[ ! "$newVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then
+  echo "Error: newVersion cannot be determined"
+  exit 1
+fi
+
+if [[ "$newVersion" =~ '.' ]]; then
+    newMajor=$(echo ${newVersion} | cut -d'.' -f1)
+    newMinor=$(echo ${newVersion} | cut -d'.' -f2)
+else
+    newMajor=$newVersion
+    newMinor='0'
+fi
+
+if [ "$curMajor" -gt "$newMajor" ]; then
+       echo "Nothing to do."
+       exit 0
+elif [[ "$curMajor" -eq "$newMajor"  && "$curMinor" -ge "$newMinor" ]]; then
+       echo "Nothing to do."
+       exit 0
+fi
+
+###
+### UPDATE
+###
+
+# update node_modules
+git $GWD checkout $newVersion
+pushd $PWD
+cd "$GitDir"
+npm install --include optional
+popd
+cp "$GitDir/package-lock.json" .
+osc service manualrun --verbose
+rm --verbose *.tgz || true
+
+# update package
+curl -Lo cockpit-podman-$newVersion.tar.gz 
https://github.com/cockpit-project/cockpit-podman/archive/$newVersion.tar.gz
+
+# Updating version in spec file
+sed -i -e "s,^\(\s*Version:\s*\)\(.*\)\s*$,\1${newVersion}," 
cockpit-podman.spec
+git rm cockpit-podman-$curVersion.tar.gz
+git add cockpit-podman-$newVersion.tar.gz

++++++ cockpit-podman-120.tar.gz -> cockpit-podman-128.tar.gz ++++++
++++ 37511 lines of diff (skipped)

++++++ node_modules.obscpio ++++++
/work/SRC/openSUSE:Factory/cockpit-podman/node_modules.obscpio 
/work/SRC/openSUSE:Factory/.cockpit-podman.new.2004/node_modules.obscpio 
differ: char 218463, line 929

++++++ node_modules.spec.inc ++++++
++++ 943 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/cockpit-podman/node_modules.spec.inc
++++ and 
/work/SRC/openSUSE:Factory/.cockpit-podman.new.2004/node_modules.spec.inc

++++++ package-lock.json ++++++
++++ 3475 lines (skipped)
++++ between /work/SRC/openSUSE:Factory/cockpit-podman/package-lock.json
++++ and /work/SRC/openSUSE:Factory/.cockpit-podman.new.2004/package-lock.json

++++++ update_version.sh ++++++
#!/usr/bin/bash

set -e

curVersion=$(grep Version: cockpit-podman.spec | sed -e 
's,^\(\s*Version:\s*\)\(.*\)\s*$,\2,')

if [[ ! "$curVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then
  echo "Error: curVersion is not a valid integer"
  exit 1
fi

if [[ "$curVersion" =~ '.' ]]; then
    curMajor=$(echo ${curVersion} | cut -d'.' -f1)
    curMinor=$(echo ${curVersion} | cut -d'.' -f2)
else
    curMajor=$curVersion
    curMinor='0'
fi

###
### Fetch latest soruces
###

GitDir="cockpit-podman"
GWD="-C $GitDir"

# fetch latest cockpit-podman
if [ ! -d $GitDir ]; then
        git clone https://github.com/cockpit-project/cockpit-podman $GitDir
else
    git $GWD checkout main
        git $GWD fetch
fi

newVersion=$(git $GWD tag | grep '^[0-9.]\+$' | sort -rn | head -1)

echo "Current version: $curVersion"
echo "    New version: $newVersion"

if [[ ! "$newVersion" =~ ^[0-9]+(.[0-9]+)?$ ]]; then
  echo "Error: newVersion cannot be determined"
  exit 1
fi

if [[ "$newVersion" =~ '.' ]]; then
    newMajor=$(echo ${newVersion} | cut -d'.' -f1)
    newMinor=$(echo ${newVersion} | cut -d'.' -f2)
else
    newMajor=$newVersion
    newMinor='0'
fi

if [ "$curMajor" -gt "$newMajor" ]; then
        echo "Nothing to do."
        exit 0
elif [[ "$curMajor" -eq "$newMajor"  && "$curMinor" -ge "$newMinor" ]]; then
        echo "Nothing to do."
        exit 0
fi

###
### UPDATE
###

# update node_modules
git $GWD checkout $newVersion
pushd $PWD
cd "$GitDir"
npm install --include optional
popd
cp "$GitDir/package-lock.json" .
osc service manualrun --verbose
rm --verbose *.tgz || true

# update package
curl -Lo cockpit-podman-$newVersion.tar.gz 
https://github.com/cockpit-project/cockpit-podman/archive/$newVersion.tar.gz

# Updating version in spec file
sed -i -e "s,^\(\s*Version:\s*\)\(.*\)\s*$,\1${newVersion}," cockpit-podman.spec
git rm cockpit-podman-$curVersion.tar.gz
git add cockpit-podman-$newVersion.tar.gz

Reply via email to