Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cdi-importer-container for openSUSE:Factory checked in at 2023-07-13 17:19:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cdi-importer-container (Old) and /work/SRC/openSUSE:Factory/.cdi-importer-container.new.8922 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "cdi-importer-container" Thu Jul 13 17:19:14 2023 rev:9 rq:1098526 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/cdi-importer-container/cdi-importer-container.changes 2023-07-03 17:43:56.185125163 +0200 +++ /work/SRC/openSUSE:Factory/.cdi-importer-container.new.8922/cdi-importer-container.changes 2023-07-13 17:19:15.357367764 +0200 @@ -1,0 +2,5 @@ +Wed Jul 12 10:38:39 UTC 2023 - Vasily Ulyanov <vasily.ulya...@suse.com> + +- Drop TARGETARCH argument (detect arch during build) + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Dockerfile ++++++ --- /var/tmp/diff_new_pack.B4xNSM/_old 2023-07-13 17:19:15.925371116 +0200 +++ /var/tmp/diff_new_pack.B4xNSM/_new 2023-07-13 17:19:15.929371139 +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 @@ -40,9 +37,9 @@ # nbdkit-vddk-plugin is available only on x86_64 #!ArchExclusiveLine: x86_64 -RUN if [ "$TARGETARCH" = "amd64" ]; then \ - zypper -n install nbdkit-vddk-plugin ; \ - fi; +RUN if [ "$(uname -m)" = "x86_64" ]; then \ + zypper -n install nbdkit-vddk-plugin ; \ + fi; RUN zypper clean -a && \ useradd -u 1001 --create-home -s /bin/bash cdi-importer