Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dolphin-emu for openSUSE:Factory checked in at 2023-08-21 11:45:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dolphin-emu (Old) and /work/SRC/openSUSE:Factory/.dolphin-emu.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dolphin-emu" Mon Aug 21 11:45:51 2023 rev:7 rq:1104938 version:5.0.17995 Changes: -------- --- /work/SRC/openSUSE:Factory/dolphin-emu/dolphin-emu.changes 2023-05-05 17:26:19.227790180 +0200 +++ /work/SRC/openSUSE:Factory/.dolphin-emu.new.1766/dolphin-emu.changes 2023-08-21 11:46:07.643751585 +0200 @@ -1,0 +2,6 @@ +Sun Aug 20 19:17:37 UTC 2023 - ÐлÑÑ Ðндиго <i...@ilya.cf> + +- Switched to gcc12 (boo#1210477). +- Removed file dolphin-emu-gcc13.patch. + +------------------------------------------------------------------- Old: ---- dolphin-emu-gcc13.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dolphin-emu.spec ++++++ --- /var/tmp/diff_new_pack.mD1tRr/_old 2023-08-21 11:46:08.487753203 +0200 +++ /var/tmp/diff_new_pack.mD1tRr/_new 2023-08-21 11:46:08.495753218 +0200 @@ -26,9 +26,10 @@ # n=dolphin-emu && v=5.0.17995 && c=8bad821019721b9b72701b495da95656ace5fea5 && cd /tmp && git clone https://github.com/$n/dolphin.git $n && cd $n && git checkout $c && rm -rf .??* && cd .. && n=dolphin-emu && d=$n-$v && mv $n $d && f=$d.tar.xz && tar c --remove-files "$d" | xz -9e > "$f" Source0: %{name}-%{version}.tar.xz Patch0: %{name}-not-discord-presence.patch -Patch1: dolphin-emu-gcc13.patch BuildRequires: cmake BuildRequires: fdupes +BuildRequires: gcc12 +BuildRequires: gcc12-c++ BuildRequires: hicolor-icon-theme BuildRequires: libQt5Gui-private-headers-devel >= 5.9 BuildRequires: mbedtls-devel < 3 @@ -66,9 +67,6 @@ BuildRequires: pkgconfig(soundtouch) BuildRequires: pkgconfig(xi) BuildRequires: pkgconfig(xrandr) -%if 0%{?suse_version} <= 1500 -BuildRequires: gcc10-c++ -%endif Requires: nintendo-gamecube-wiimote-udev-rules ExclusiveArch: x86_64 aarch64 @@ -98,27 +96,21 @@ sed -i 's/minizip>=2.0.0/minizip/' CMakeLists.txt %build -%if 0%{?suse_version} <= 1500 -export CXX=g++-10 -%endif - # FIXME: you should use the %%cmake macros cmake . \ -LA \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -%ifarch x86_64 + -DCMAKE_C_COMPILER=gcc-12 \ + -DCMAKE_CXX_COMPILER=g++-12 \ -DCMAKE_C_FLAGS="%{optflags}" \ -DCMAKE_CXX_FLAGS="%{optflags}" \ -%endif -DCMAKE_INSTALL_PREFIX=%{_prefix} \ -DDISTRIBUTOR=openSUSE \ -DDOLPHIN_WC_BRANCH=beta \ -DDOLPHIN_WC_DESCRIBE=%{version} \ -DDOLPHIN_WC_REVISION=%{commit} \ -DENABLE_ANALYTICS=OFF \ -%if 0%{?suse_version} >= 1550 -DENABLE_LTO=ON \ -%endif -DENCODE_FRAMEDUMPS=OFF \ -DUSE_DISCORD_PRESENCE=OFF \ -DUSE_MGBA=OFF \