Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package element-web for openSUSE:Factory checked in at 2022-07-28 20:58:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/element-web (Old) and /work/SRC/openSUSE:Factory/.element-web.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "element-web" Thu Jul 28 20:58:22 2022 rev:16 rq:991376 version:1.11.0 Changes: -------- --- /work/SRC/openSUSE:Factory/element-web/element-web.changes 2022-07-15 13:52:30.083563877 +0200 +++ /work/SRC/openSUSE:Factory/.element-web.new.1533/element-web.changes 2022-07-28 20:58:38.651569166 +0200 @@ -1,0 +2,5 @@ +Wed Jul 20 09:15:27 UTC 2022 - Dominik Heidler <dheid...@suse.de> + +- Don't download sentry-cli + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ npm-packages-offline-cache.tar.gz ++++++ /work/SRC/openSUSE:Factory/element-web/npm-packages-offline-cache.tar.gz /work/SRC/openSUSE:Factory/.element-web.new.1533/npm-packages-offline-cache.tar.gz differ: char 14, line 1 ++++++ prepare.sh ++++++ --- /var/tmp/diff_new_pack.Zz1FUM/_old 2022-07-28 20:58:41.575577399 +0200 +++ /var/tmp/diff_new_pack.Zz1FUM/_new 2022-07-28 20:58:41.587577433 +0200 @@ -32,14 +32,17 @@ tar czf matrix-analytics-events-0.0.1.tgz package/ rm -r package -# fill sentry-cli cache with binaries for all architecutres +# fill sentry-cli cache with mock binaries for all architecutres cd sentry-cli sentry_cli_version=$(ls ../@sentry-cli-*.tgz | sed -e 's/.*cli-//' -e 's/.tgz//') for arch in i686 x86_64 aarch64 armv7 ; do url="https://downloads.sentry-cdn.com/sentry-cli/${sentry_cli_version}/sentry-cli-Linux-${arch}" - filehash=$(echo -n "$url" | md5sum | cut -c1-6) + filehash=$(echo -n "$url" | md5sum | cut -c1-6) target="${filehash}-sentry-cli-Linux-${arch/_/-}" - wget -O "$target" "$url" + #wget -O "$target" "$url" + echo '#!/bin/bash' > "$target" + echo '' >> "$target" + echo "echo ${sentry_cli_version}" >> "$target" chmod +x "$target" done cd ..