Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2022-08-23 14:26:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/chromium (Old)
 and      /work/SRC/openSUSE:Factory/.chromium.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "chromium"

Tue Aug 23 14:26:08 2022 rev:349 rq:998611 version:104.0.5112.101

Changes:
--------
--- /work/SRC/openSUSE:Factory/chromium/chromium.changes        2022-08-20 
20:28:58.245403871 +0200
+++ /work/SRC/openSUSE:Factory/.chromium.new.2083/chromium.changes      
2022-08-23 14:27:06.527287141 +0200
@@ -1,0 +2,5 @@
+Mon Aug 22 09:53:49 UTC 2022 - Andreas Schwab <sch...@suse.de>
+
+- Fix quoting in chrome-wrapper, don't put cwd on LD_LIBRARY_PATH
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ chromium.spec ++++++
--- /var/tmp/diff_new_pack.TWXhVm/_old  2022-08-23 14:27:12.659300637 +0200
+++ /var/tmp/diff_new_pack.TWXhVm/_new  2022-08-23 14:27:12.663300646 +0200
@@ -152,11 +152,11 @@
 BuildRequires:  python3
 BuildRequires:  python3-setuptools
 BuildRequires:  python3-six
-BuildRequires:  (python3-importlib-metadata if python3-base < 3.8)
 BuildRequires:  snappy-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  util-linux
 BuildRequires:  wdiff
+BuildRequires:  (python3-importlib-metadata if python3-base < 3.8)
 BuildRequires:  perl(Switch)
 BuildRequires:  pkgconfig(alsa)
 BuildRequires:  pkgconfig(bzip2)

++++++ chrome-wrapper ++++++
--- /var/tmp/diff_new_pack.TWXhVm/_old  2022-08-23 14:27:12.719300769 +0200
+++ /var/tmp/diff_new_pack.TWXhVm/_new  2022-08-23 14:27:12.723300778 +0200
@@ -4,8 +4,6 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-ARGS="$@"
-
 # Let the wrapped binary know that it has been run through the wrapper.
 export CHROME_WRAPPER="`readlink -f "$0"`"
 
@@ -13,7 +11,7 @@
 
 # Always use our versions of ffmpeg libs.
 # This also makes RPMs find the compatibly-named library symlinks.
-export LD_LIBRARY_PATH="$HERE:$LD_LIBRARY_PATH"
+export LD_LIBRARY_PATH="$HERE${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
 
 export CHROME_VERSION_EXTRA="stable"
 
@@ -21,8 +19,9 @@
 export GNOME_DISABLE_CRASH_DIALOG=SET_BY_GOOGLE_CHROME
 
 # Allow root usage
+no_sandbox=
 if [ "`id -u`" == "0" ]; then
-  ARGS="--no-sandbox $ARGS"
+  no_sandbox=--no-sandbox
 fi
 
 # Sanitize std{in,out,err} because they'll be shared with untrusted child
@@ -32,5 +31,5 @@
 exec 2> >(exec cat >&2)
 
 # Note: exec -a below is a bashism.
-exec -a "$0" "$HERE/chrome" $ARGS
+exec -a "$0" "$HERE/chrome" $no_sandbox "$@"
 

Reply via email to