Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tik for openSUSE:Factory checked in at 2024-05-28 17:29:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tik (Old) and /work/SRC/openSUSE:Factory/.tik.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tik" Tue May 28 17:29:12 2024 rev:7 rq:1177163 version:1.0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/tik/tik.changes 2024-05-24 19:53:47.823339348 +0200 +++ /work/SRC/openSUSE:Factory/.tik.new.24587/tik.changes 2024-05-28 17:30:07.762884395 +0200 @@ -1,0 +2,6 @@ +Mon May 27 14:55:51 UTC 2024 - rbr...@suse.com + +- Update to version 1.0.4: + * module-mig: filter out empty SD card readers from install target list + +------------------------------------------------------------------- Old: ---- tik-1.0.3.tar.xz New: ---- tik-1.0.4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tik.spec ++++++ --- /var/tmp/diff_new_pack.5MFESR/_old 2024-05-28 17:30:08.562913650 +0200 +++ /var/tmp/diff_new_pack.5MFESR/_new 2024-05-28 17:30:08.562913650 +0200 @@ -17,7 +17,7 @@ Name: tik -Version: 1.0.3 +Version: 1.0.4 Release: 0 Summary: Transactional Installation Kit License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.5MFESR/_old 2024-05-28 17:30:08.610915406 +0200 +++ /var/tmp/diff_new_pack.5MFESR/_new 2024-05-28 17:30:08.614915552 +0200 @@ -3,7 +3,7 @@ <service name="obs_scm" mode="localonly"> <param name="url">https://github.com/sysrich/tik.git</param> <param name="scm">git</param> - <param name="revision">v1.0.3</param> + <param name="revision">v1.0.4</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> <param name="versionrewrite-pattern">v(.*)</param> ++++++ tik-1.0.3.tar.xz -> tik-1.0.4.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/tik-1.0.3/usr/lib/tik/lib/tik-functions new/tik-1.0.4/usr/lib/tik/lib/tik-functions --- old/tik-1.0.3/usr/lib/tik/lib/tik-functions 2024-05-24 12:28:41.000000000 +0200 +++ new/tik-1.0.4/usr/lib/tik/lib/tik-functions 2024-05-27 15:55:13.000000000 +0200 @@ -100,6 +100,11 @@ for disk_meta in $( eval lsblk "${blk_opts}" | grep -E "disk|raid" | tr ' ' ":" );do + disk_size=$(echo "${disk_meta}" | cut -f2 -d:) + if [[ "${disk_size}" == "0B" ]]; then + # ignore disks with no size, e.g. empty SD card readers + continue + fi disk_device="$(echo "${disk_meta}" | cut -f1 -d:)" if [[ "${tik_install_disk_part}" == "${disk_device}"* ]]; then # ignore install source device @@ -113,7 +118,6 @@ # ignore zram devices continue fi - disk_size=$(echo "${disk_meta}" | cut -f2 -d:) disk_device_by_id=$( get_persistent_device_from_unix_node "${disk_device}" "${disk_id}" )