Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package chromium for openSUSE:Factory checked in at 2023-06-25 21:42:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/chromium (Old) and /work/SRC/openSUSE:Factory/.chromium.new.15902 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "chromium" Sun Jun 25 21:42:12 2023 rev:386 rq:1095206 version:114.0.5735.133 Changes: -------- --- /work/SRC/openSUSE:Factory/chromium/chromium.changes 2023-06-14 16:32:23.355593023 +0200 +++ /work/SRC/openSUSE:Factory/.chromium.new.15902/chromium.changes 2023-06-25 21:42:20.345076299 +0200 @@ -1,0 +2,5 @@ +Sun Jun 25 09:54:37 UTC 2023 - Callum Farmer <gm...@opensuse.org> + +- Install Qt5 library & prepare for Qt6 in 115 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ chromium.spec ++++++ --- /var/tmp/diff_new_pack.WWsg5B/_old 2023-06-25 21:42:27.125117024 +0200 +++ /var/tmp/diff_new_pack.WWsg5B/_new 2023-06-25 21:42:27.129117048 +0200 @@ -41,12 +41,14 @@ %bcond_without arm_bti %bcond_without system_icu %bcond_without ffmpeg_51 +%bcond_without qt6 %else %bcond_with system_harfbuzz %bcond_with system_freetype %bcond_with arm_bti %bcond_with system_icu %bcond_with ffmpeg_51 +%bcond_with qt6 %endif %bcond_with system_avif # LLVM version @@ -308,6 +310,10 @@ BuildRequires: pkgconfig(Qt5Core) BuildRequires: pkgconfig(Qt5Widgets) %endif +%if %{with qt6} +BuildRequires: pkgconfig(Qt6Core) +BuildRequires: pkgconfig(Qt6Widgets) +%endif %if %{with clang} %if 0%{?suse_version} < 1550 BuildRequires: clang%{llvm_version} @@ -826,6 +832,9 @@ %if %{without qt} myconf_gn+=" use_qt=false" %endif +%if %{with qt6} +myconf_gn+=" use_qt6=true" +%endif # See dependency logic in third_party/BUILD.gn %if %{with system_harfbuzz} myconf_gn+=" use_system_harfbuzz=true" ++++++ INSTALL.sh ++++++ --- /var/tmp/diff_new_pack.WWsg5B/_old 2023-06-25 21:42:27.165117264 +0200 +++ /var/tmp/diff_new_pack.WWsg5B/_new 2023-06-25 21:42:27.169117288 +0200 @@ -90,6 +90,18 @@ # Install the ICD json file to point ANGLE to libvk_swiftshader.so install -m 644 "${OUTPUTDIR}/vk_swiftshader_icd.json" "${STAGEDIR}/${INSTALLDIR}/" +# QT shim +if [ -f "${OUTPUTDIR}/libqt5_shim.so" ]; then + file="libqt5_shim.so" + buildfile="${OUTPUTDIR}/${file}" + install -m ${SHLIB_PERMS} "${buildfile}" "${STAGEDIR}/${INSTALLDIR}/${file}" +fi +if [ -f "${OUTPUTDIR}/libqt6_shim.so" ]; then + file="libqt6_shim.so" + buildfile="${OUTPUTDIR}/${file}" + install -m ${SHLIB_PERMS} "${buildfile}" "${STAGEDIR}/${INSTALLDIR}/${file}" +fi + # default apps if [ -d "${OUTPUTDIR}/default_apps" ]; then cp -a "${OUTPUTDIR}/default_apps" "${STAGEDIR}/${INSTALLDIR}/"