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-08-29 17:40:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cockpit-podman (Old) and /work/SRC/openSUSE:Factory/.cockpit-podman.new.1265 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cockpit-podman" Sat Aug 29 17:40:16 2026 rev:31 rq:1374319 version:129 Changes: -------- --- /work/SRC/openSUSE:Factory/cockpit-podman/cockpit-podman.changes 2026-07-26 11:27:50.065391751 +0200 +++ /work/SRC/openSUSE:Factory/.cockpit-podman.new.1265/cockpit-podman.changes 2026-08-29 17:40:44.059600673 +0200 @@ -1,0 +2,7 @@ +Wed Aug 12 11:57:56 UTC 2026 - Alice Brooks <[email protected]> + +- Update to 129 + * Bugfixes + * Translations and dependency updates + +------------------------------------------------------------------- Old: ---- cockpit-podman-128.tar.gz New: ---- cockpit-podman-129.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cockpit-podman.spec ++++++ --- /var/tmp/diff_new_pack.nmnS0D/_old 2026-08-29 17:41:11.747577664 +0200 +++ /var/tmp/diff_new_pack.nmnS0D/_new 2026-08-29 17:41:11.749577735 +0200 @@ -17,7 +17,7 @@ Name: cockpit-podman -Version: 128 +Version: 129 Release: 0 Summary: Cockpit component for Podman containers License: LGPL-2.1-or-later ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.nmnS0D/_old 2026-08-29 17:41:11.872582075 +0200 +++ /var/tmp/diff_new_pack.nmnS0D/_new 2026-08-29 17:41:11.883582463 +0200 @@ -1,6 +1,6 @@ -mtime: 1782816286 -commit: 16d3979bbfc5027b76bcaec5d3f514a532113c5e0cc81091d09838449635057a +mtime: 1786535999 +commit: 453176c35ce8811d300337a13b3523bf80129be07ecffc03100981f44f34ac25 url: https://src.opensuse.org/cockpit/cockpit-podman -revision: 16d3979bbfc5027b76bcaec5d3f514a532113c5e0cc81091d09838449635057a +revision: 453176c35ce8811d300337a13b3523bf80129be07ecffc03100981f44f34ac25 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-08-12 13:59:59.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-08-12 13:59:59.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-128.tar.gz -> cockpit-podman-129.tar.gz ++++++ ++++ 9595 lines of diff (skipped) ++++++ node_modules.obscpio ++++++ /work/SRC/openSUSE:Factory/cockpit-podman/node_modules.obscpio /work/SRC/openSUSE:Factory/.cockpit-podman.new.1265/node_modules.obscpio differ: char 62, line 1 ++++++ node_modules.spec.inc ++++++ ++++ 842 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/cockpit-podman/node_modules.spec.inc ++++ and /work/SRC/openSUSE:Factory/.cockpit-podman.new.1265/node_modules.spec.inc ++++++ package-lock.json ++++++ ++++ 2243 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/cockpit-podman/package-lock.json ++++ and /work/SRC/openSUSE:Factory/.cockpit-podman.new.1265/package-lock.json
