Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package sdbootutil for openSUSE:Factory checked in at 2026-03-20 21:19:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sdbootutil (Old) and /work/SRC/openSUSE:Factory/.sdbootutil.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sdbootutil" Fri Mar 20 21:19:55 2026 rev:96 rq:1341447 version:1+git20260319.f4cfda0 Changes: -------- --- /work/SRC/openSUSE:Factory/sdbootutil/sdbootutil.changes 2026-03-13 21:16:28.580477613 +0100 +++ /work/SRC/openSUSE:Factory/.sdbootutil.new.8177/sdbootutil.changes 2026-03-20 21:20:23.046939991 +0100 @@ -1,0 +2,8 @@ +Thu Mar 19 19:14:26 UTC 2026 - Alberto Planas Dominguez <[email protected]> + +- Update to version 1+git20260319.f4cfda0: + * Drop unused variable + * Drop --raw from findmnt + * bootloader_version: allow for padding between strings in grub binary + +------------------------------------------------------------------- Old: ---- sdbootutil-1+git20260313.ff5ea17.obscpio New: ---- sdbootutil-1+git20260319.f4cfda0.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sdbootutil.spec ++++++ --- /var/tmp/diff_new_pack.lPUwqT/_old 2026-03-20 21:20:23.990979322 +0100 +++ /var/tmp/diff_new_pack.lPUwqT/_new 2026-03-20 21:20:23.990979322 +0100 @@ -18,7 +18,7 @@ %global rustflags '-Clink-arg=-Wl,-z,relro,-z,now' Name: sdbootutil -Version: 1+git20260313.ff5ea17 +Version: 1+git20260319.f4cfda0 Release: 0 Summary: Bootctl wrapper for BLS boot loaders License: MIT ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.lPUwqT/_old 2026-03-20 21:20:24.046981655 +0100 +++ /var/tmp/diff_new_pack.lPUwqT/_new 2026-03-20 21:20:24.050981821 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/openSUSE/sdbootutil.git</param> - <param name="changesrevision">ff5ea17c75654f3e3ff6d7ea0c1c123f3328c60e</param></service></servicedata> + <param name="changesrevision">f4cfda0bc53a85fd9526ecf4557c506c63225717</param></service></servicedata> (No newline at EOF) ++++++ sdbootutil-1+git20260313.ff5ea17.obscpio -> sdbootutil-1+git20260319.f4cfda0.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sdbootutil-1+git20260313.ff5ea17/sdbootutil new/sdbootutil-1+git20260319.f4cfda0/sdbootutil --- old/sdbootutil-1+git20260313.ff5ea17/sdbootutil 2026-03-13 14:28:44.000000000 +0100 +++ new/sdbootutil-1+git20260319.f4cfda0/sdbootutil 2026-03-19 20:13:11.000000000 +0100 @@ -548,7 +548,7 @@ is_rootfs_crypt() { local device - read -r device < <(findmnt / -v -r -n -o SOURCE 2> /dev/null) + read -r device < <(findmnt / -v -n -o SOURCE 2> /dev/null) [ -n "$device" ] && [ "$(lsblk --noheadings -o TYPE "$device")" = "crypt" ] } @@ -557,15 +557,15 @@ local rootfs_data case "$ROOTFS" in - uuid) read -r rootfs_data < <(findmnt / -v -r -n -o UUID 2> /dev/null) ;; - label) read -r rootfs_data < <(findmnt / -v -r -n -o LABEL 2> /dev/null) ;; - partuuid) read -r rootfs_data < <(findmnt / -v -r -n -o PARTUUID 2> /dev/null) ;; - partlabel) read -r rootfs_data < <(findmnt / -v -r -n -o PARTLABEL 2> /dev/null) ;; - device) read -r rootfs_data < <(findmnt / -v -r -n -o SOURCE 2> /dev/null) ;; + uuid) read -r rootfs_data < <(findmnt / -v -n -o UUID 2> /dev/null) ;; + label) read -r rootfs_data < <(findmnt / -v -n -o LABEL 2> /dev/null) ;; + partuuid) read -r rootfs_data < <(findmnt / -v -n -o PARTUUID 2> /dev/null) ;; + partlabel) read -r rootfs_data < <(findmnt / -v -n -o PARTLABEL 2> /dev/null) ;; + device) read -r rootfs_data < <(findmnt / -v -n -o SOURCE 2> /dev/null) ;; *) info "Can't determine rootfs ($ROOTFS). Using UUID as default" ROOTFS="uuid" - read -r rootfs_data < <(findmnt / -v -r -n -o UUID 2> /dev/null) + read -r rootfs_data < <(findmnt / -v -n -o UUID 2> /dev/null) ;; esac rootfs_data="${arg_rootfs_data:-$rootfs_data}" @@ -581,19 +581,19 @@ { local rootfs rootfs_data - read -r rootfs_data < <(findmnt / -v -r -n -o SOURCE) + read -r rootfs_data < <(findmnt / -v -n -o SOURCE) rootfs="$rootfs_data" - read -r rootfs_data < <(findmnt / -v -r -n -o UUID) + read -r rootfs_data < <(findmnt / -v -n -o UUID) [ -z "$rootfs_data" ] || rootfs="$rootfs|UUID=$rootfs_data" - read -r rootfs_data < <(findmnt / -v -r -n -o LABEL) + read -r rootfs_data < <(findmnt / -v -n -o LABEL) [ -z "$rootfs_data" ] || rootfs="$rootfs|LABEL=$rootfs_data" - read -r rootfs_data < <(findmnt / -v -r -n -o PARTUUID) + read -r rootfs_data < <(findmnt / -v -n -o PARTUUID) [ -z "$rootfs_data" ] || rootfs="$rootfs|PARTUUID=$rootfs_data" - read -r rootfs_data < <(findmnt / -v -r -n -o PARTLABEL) + read -r rootfs_data < <(findmnt / -v -n -o PARTLABEL) [ -z "$rootfs_data" ] || rootfs="$rootfs|PARTLABEL=$rootfs_data" echo "$rootfs" @@ -1739,7 +1739,7 @@ # Useless as it reports mayor.minor, so append the # last update time until the minutes, as the FAT store # dates differently than other filesystems - read -r _ _ _ v _ < <(grep -aoP 'GNU GRUB version %s\x00[^\x00]+\x00' "$fn") + read -r _ _ _ v _ < <(grep -aoP 'GNU GRUB version %s\x00+[^\x00]+\x00' "$fn") v="${v:2}-$(date -r "$fn" +'%Y%m%d%H%M')" fi [ -n "$v" ] || return 1 @@ -2140,10 +2140,8 @@ get_default_bootctl() { - local val update_entries_for_this_system jq -r '.[] | select(.isDefault == true) | .id' < "$entryfile" - [ -z "$val" ] || echo "$val" } get_default_sdboot() ++++++ sdbootutil.obsinfo ++++++ --- /var/tmp/diff_new_pack.lPUwqT/_old 2026-03-20 21:20:24.282991487 +0100 +++ /var/tmp/diff_new_pack.lPUwqT/_new 2026-03-20 21:20:24.286991654 +0100 @@ -1,5 +1,5 @@ name: sdbootutil -version: 1+git20260313.ff5ea17 -mtime: 1773408524 -commit: ff5ea17c75654f3e3ff6d7ea0c1c123f3328c60e +version: 1+git20260319.f4cfda0 +mtime: 1773947591 +commit: f4cfda0bc53a85fd9526ecf4557c506c63225717
