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-02-27 17:02:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cockpit-podman (Old) and /work/SRC/openSUSE:Factory/.cockpit-podman.new.29461 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cockpit-podman" Fri Feb 27 17:02:47 2026 rev:29 rq:1335034 version:120 Changes: -------- --- /work/SRC/openSUSE:Factory/cockpit-podman/cockpit-podman.changes 2026-02-17 16:36:22.287894683 +0100 +++ /work/SRC/openSUSE:Factory/.cockpit-podman.new.29461/cockpit-podman.changes 2026-02-27 17:06:02.786509120 +0100 @@ -1,0 +2,5 @@ +Tue Feb 24 13:24:34 UTC 2026 - Alice Brooks <[email protected]> + +- Update dependencies bsc#1257836/CVE-2026-25547, bsc#1258641/CVE-2026-26996 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.Y3z7Ff/_old 2026-02-27 17:06:53.692616872 +0100 +++ /var/tmp/diff_new_pack.Y3z7Ff/_new 2026-02-27 17:06:53.700617203 +0100 @@ -1,6 +1,6 @@ -mtime: 1770805249 -commit: 0b30b2dc89d9cf09919e62abbfc5fb4fcb5a00b62dc199520dad47a114ef0684 +mtime: 1771939578 +commit: 763541581cc921bc16e3ec6bbe9c0fbc420469f08aa55d4165d99760202390e7 url: https://src.opensuse.org/cockpit/cockpit-podman.git -revision: 0b30b2dc89d9cf09919e62abbfc5fb4fcb5a00b62dc199520dad47a114ef0684 +revision: 763541581cc921bc16e3ec6bbe9c0fbc420469f08aa55d4165d99760202390e7 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-02-24 20:14:35.000000000 +0100 @@ -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-02-24 20:14:36.000000000 +0100 @@ -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 ++++++ node_modules.obscpio ++++++ /work/SRC/openSUSE:Factory/cockpit-podman/node_modules.obscpio /work/SRC/openSUSE:Factory/.cockpit-podman.new.29461/node_modules.obscpio differ: char 129379569, line 447507 ++++++ node_modules.spec.inc ++++++ ++++ 742 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/cockpit-podman/node_modules.spec.inc ++++ and /work/SRC/openSUSE:Factory/.cockpit-podman.new.29461/node_modules.spec.inc ++++++ package-lock.json ++++++ ++++ 668 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/cockpit-podman/package-lock.json ++++ and /work/SRC/openSUSE:Factory/.cockpit-podman.new.29461/package-lock.json
