Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package virt-libguestfs-tools-container for openSUSE:Factory checked in at 2023-07-13 17:19:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/virt-libguestfs-tools-container (Old) and /work/SRC/openSUSE:Factory/.virt-libguestfs-tools-container.new.8922 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "virt-libguestfs-tools-container" Thu Jul 13 17:19:05 2023 rev:11 rq:1098522 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/virt-libguestfs-tools-container/virt-libguestfs-tools-container.changes 2023-03-15 18:56:32.089030365 +0100 +++ /work/SRC/openSUSE:Factory/.virt-libguestfs-tools-container.new.8922/virt-libguestfs-tools-container.changes 2023-07-13 17:19:08.657328225 +0200 @@ -1,0 +2,5 @@ +Wed Jul 12 06:55:40 UTC 2023 - Vasily Ulyanov <vasily.ulya...@suse.com> + +- Drop TARGETARCH argument (detect arch during build) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.s0Nnya/_old 2023-07-13 17:19:09.305332050 +0200 +++ /var/tmp/diff_new_pack.s0Nnya/_new 2023-07-13 17:19:09.309332073 +0200 @@ -10,9 +10,6 @@ # BuildFlags: dockerarg:KUBEVIRTFROM=opensuse/tumbleweed ARG KUBEVIRTFROM FROM $KUBEVIRTFROM -# TARGETARCH defined in prjconf, to handle architecture specific bits -# since TARGETARCH is not defined in OBS builds yet. Default to amd64. -ARG TARGETARCH=amd64 # Mandatory labels for the build service: # https://en.opensuse.org/Building_derived_containers @@ -57,15 +54,15 @@ zerofree #!ArchExclusiveLine: x86_64 -RUN if [ "$TARGETARCH" = "amd64" ]; then \ - zypper -n install qemu-x86 ; \ - fi; +RUN if [ "$(uname -m)" = "x86_64" ]; then \ + zypper -n install qemu-x86 ; \ + fi; # qemu-x86 is required on aarch64 to get the test to pass (allow fallback to non KVM mode) #!ArchExclusiveLine: aarch64 -RUN if [ "$TARGETARCH" = "arm64" ]; then \ - zypper -n install qemu-arm qemu-uefi-aarch64 qemu-x86; \ - fi; +RUN if [ "$(uname -m)" = "aarch64" ]; then \ + zypper -n install qemu-arm qemu-uefi-aarch64 qemu-x86; \ + fi; # Make a "fixed appliance" for libguestfs. # Note: the resulting 'appliance/root' is a sparse file. Docker does not