The package rpms/godot3.git has added or updated architecture specific content in its spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s): https://src.fedoraproject.org/cgit/rpms/godot3.git/commit/?id=9d2786adb6fb33....
Change: +%ifarch riscv64
Thanks.
Full change: ============
commit 5b0ea2c69fee84a1cc8ad40d19861e51f96bf3fa Author: Rémi Verschelde rverschelde@gmail.com Date: Thu Jan 30 10:30:12 2025 +0100
Version 3.6-stable
- Use system-provided embree3 - Fix build with GCC 15
diff --git a/.gitignore b/.gitignore index af9078b..df3af21 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ /godot-3.5.2-stable.tar.xz *.src.rpm +/godot-3.6-stable.tar.xz +/godot-3.6-stable.tar.xz.sha256 diff --git a/0001-embree-Fix-invalid-output-operators-raising-errors-w.patch b/0001-embree-Fix-invalid-output-operators-raising-errors-w.patch new file mode 100644 index 0000000..93cb7c6 --- /dev/null +++ b/0001-embree-Fix-invalid-output-operators-raising-errors-w.patch @@ -0,0 +1,91 @@ +From e5cbaba3836961ffd9d5570ecbc7b5599e8d296e Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= rverschelde@gmail.com +Date: Sat, 25 Jan 2025 15:25:37 +0100 +Subject: [PATCH] embree: Fix invalid output operators raising errors with GCC + 15 + +(cherry picked from commit 209579a2a6a8c48af3fec560f95e5f3dda85c314) +--- + thirdparty/embree/kernels/geometry/pointi.h | 4 +- + .../embree/kernels/subdiv/bezier_curve.h | 2 +- + .../patches/embree-fix-output-operator.patch | 39 +++++++++++++++++++ + 3 files changed, 42 insertions(+), 3 deletions(-) + create mode 100644 thirdparty/embree/patches/embree-fix-output-operator.patch + +diff --git a/thirdparty/embree/kernels/geometry/pointi.h b/thirdparty/embree/kernels/geometry/pointi.h +index bed04116b0..f33169223e 100644 +--- a/thirdparty/embree/kernels/geometry/pointi.h ++++ b/thirdparty/embree/kernels/geometry/pointi.h +@@ -210,9 +210,9 @@ namespace embree + }; + + /*! output operator */ +- friend __forceinline embree_ostream operator<<(embree_ostream cout, const PointMi& line) ++ friend __forceinline embree_ostream operator<<(embree_ostream cout, const PointMi& point) + { +- return cout << "Line" << M << "i {" << line.v0 << ", " << line.geomID() << ", " << line.primID() << "}"; ++ return cout << "Point" << M << "i {" << point.geomID() << ", " << point.primID() << "}"; + } + + public: +diff --git a/thirdparty/embree/kernels/subdiv/bezier_curve.h b/thirdparty/embree/kernels/subdiv/bezier_curve.h +index a5adad5cc9..4f20a5abbb 100644 +--- a/thirdparty/embree/kernels/subdiv/bezier_curve.h ++++ b/thirdparty/embree/kernels/subdiv/bezier_curve.h +@@ -135,7 +135,7 @@ namespace embree + } + + friend embree_ostream operator<<(embree_ostream cout, const QuadraticBezierCurve& a) { +- return cout << "QuadraticBezierCurve ( (" << a.u.lower << ", " << a.u.upper << "), " << a.v0 << ", " << a.v1 << ", " << a.v2 << ")"; ++ return cout << "QuadraticBezierCurve (" << a.v0 << ", " << a.v1 << ", " << a.v2 << ")"; + } + }; + +diff --git a/thirdparty/embree/patches/embree-fix-output-operator.patch b/thirdparty/embree/patches/embree-fix-output-operator.patch +new file mode 100644 +index 0000000000..7ddfcd6c98 +--- /dev/null ++++ b/thirdparty/embree/patches/embree-fix-output-operator.patch +@@ -0,0 +1,39 @@ ++From cda4cf1919bb2a748e78915fbd6e421a1056638d Mon Sep 17 00:00:00 2001 ++From: Daniel Opitz daniel.opitz@intel.com ++Date: Mon, 13 May 2024 10:17:51 +0200 ++Subject: [PATCH] fix output operator, issue #486 ++ ++--- ++ kernels/geometry/pointi.h | 4 ++-- ++ kernels/subdiv/bezier_curve.h | 2 +- ++ 2 files changed, 3 insertions(+), 3 deletions(-) ++ ++diff --git a/kernels/geometry/pointi.h b/kernels/geometry/pointi.h ++index f81edb9035..aba8ec4ab3 100644 ++--- a/kernels/geometry/pointi.h +++++ b/kernels/geometry/pointi.h ++@@ -210,9 +210,9 @@ namespace embree ++ }; ++ ++ /*! output operator */ ++- friend __forceinline embree_ostream operator<<(embree_ostream cout, const PointMi& line) +++ friend __forceinline embree_ostream operator<<(embree_ostream cout, const PointMi& point) ++ { ++- return cout << "Line" << M << "i {" << line.v0 << ", " << line.geomID() << ", " << line.primID() << "}"; +++ return cout << "Point" << M << "i {" << point.geomID() << ", " << point.primID() << "}"; ++ } ++ ++ public: ++diff --git a/kernels/subdiv/bezier_curve.h b/kernels/subdiv/bezier_curve.h ++index 257e0afd40..5e3b5c83b3 100644 ++--- a/kernels/subdiv/bezier_curve.h +++++ b/kernels/subdiv/bezier_curve.h ++@@ -135,7 +135,7 @@ namespace embree ++ } ++ ++ friend embree_ostream operator<<(embree_ostream cout, const QuadraticBezierCurve& a) { ++- return cout << "QuadraticBezierCurve ( (" << a.u.lower << ", " << a.u.upper << "), " << a.v0 << ", " << a.v1 << ", " << a.v2 << ")"; +++ return cout << "QuadraticBezierCurve (" << a.v0 << ", " << a.v1 << ", " << a.v2 << ")"; ++ } ++ }; ++ +-- +2.48.1 + diff --git a/godot3.spec b/godot3.spec index 70638b4..038ecce 100644 --- a/godot3.spec +++ b/godot3.spec @@ -17,8 +17,8 @@ %define rdnsname %{urdnsname}3
Name: godot3 -Version: 3.5.2 -Release: 12%{?dist} +Version: 3.6 +Release: 1%{?dist} Summary: Multi-platform 2D and 3D game engine with a feature-rich editor (version 3) %if 0%{?mageia} Group: Development/Tools @@ -26,27 +26,23 @@ Group: Development/Tools # Godot itself is MIT-licensed, the rest is from vendored thirdparty libraries License: MIT and CC-BY and ASL 2.0 and BSD and zlib and OFL and Bitstream Vera and ISC and MPLv2.0 URL: https://godotengine.org -Source0: https://downloads.tuxfamily.org/godotengine/%%7Bversion%7D/%%7Buname%7D-%%7B... -Source1: https://downloads.tuxfamily.org/godotengine/%%7Bversion%7D/%%7Buname%7D-%%7B... +Source0: https://github.com/godotengine/godot-builds/releases/download/%%7Buversion%7... +Source1: https://github.com/godotengine/godot-builds/releases/download/%%7Buversion%7...
Patch0: godot3-dist-files-rebranding.patch -# https://github.com/transmission/transmission/pull/6907 +# https://github.com/godotengine/godot/pull/97139 Patch1: godot3-miniupnp228.patch +# https://github.com/godotengine/godot/pull/102023 +Patch2: 0001-embree-Fix-invalid-output-operators-raising-errors-w.patch
# Upstream does not support those arches (for now) ExcludeArch: ppc64 ppc64le s390x
-# See bundled section for explanations. -%define system_bullet 0%{?mageia} || 0%{?fedora} >= 34 -%define system_embree 0%{?mageia} || (0%{?fedora} && 0%{?fedora} < 38) - BuildRequires: gcc-c++ BuildRequires: mbedtls-devel BuildRequires: miniupnpc-devel BuildRequires: pkgconfig(alsa) -%if %{system_bullet} BuildRequires: pkgconfig(bullet) >= 2.89 -%endif BuildRequires: pkgconfig(freetype2) BuildRequires: pkgconfig(gl) BuildRequires: pkgconfig(libpcre2-32) @@ -76,10 +72,8 @@ BuildRequires: scons BuildRequires: python3-scons %endif
-%if %{system_embree} %ifarch aarch64 x86_64 -BuildRequires: embree-devel < 4 -%endif +BuildRequires: embree3-devel %endif
# For desktop and appdata files validation @@ -98,25 +92,18 @@ Requires: hicolor-icon-theme # though that the `thirdparty` folder also contains code which is typically # not packaged in distros, and is probably best left bundled.
-%if ! %{system_bullet} -# Needs at least bullet 2.89 (with a patch, see linked PR) or later (unpatched). -# https://github.com/bulletphysics/bullet3/pull/2748 -Provides: bundled(bullet) = 3.24 -%endif -# Godot requires Embree 3, and recent Fedora upgraded to Embree 4 which breaks the API. -Provides: bundled(embree) = 3.13.0 # Has some modifications for IPv6 support, upstream enet is unresponsive. # Should not be unbundled. # Cf: https://github.com/godotengine/godot/issues/6992 -Provides: bundled(enet) = 1.3.17 +Provides: bundled(enet) = 1.3.18 # Upstream commit from 2016 (32d5ac49414a8914ec1e1f285f3f927c6e8ec29d), # newer than 1.0.0.27 which is the last tag. # Could be unbundled if packaged. Provides: bundled(libwebm) # Has custom changes to support seeking in zip archives # Should not be unbundled. -Provides: bundled(minizip) = 1.2.12 -# Upstream commit ccdb1995134d340a93fb20e3a3d323ccb3838dd0, no releases. +Provides: bundled(minizip) = 1.3.1 +# Upstream commit 93ce879dc4c04a3ef1758428ec80083c38610b1f, no releases. # Could be unbundled if packaged. Provides: bundled(nanosvg) %ifarch x86_64 @@ -127,7 +114,7 @@ Provides: bundled(oidn) = 1.1.0 # Could be unbundled if packaged. Provides: bundled(squish) = 1.15 # Could be unbundled if packaged. -Provides: bundled(tinyexr) = 1.0.1 +Provides: bundled(tinyexr) = 1.0.8
%description Godot 3 is an advanced, feature-packed, multi-platform 2D and 3D game engine. @@ -219,14 +206,7 @@ simply by pointing to the location of the game's data package. %build # Needs to be in %%build so that system_libs stays in scope # We don't unbundle enet and minizip as they have necessary custom changes -to_unbundle="freetype libogg libpng libtheora libvorbis libvpx libwebp mbedtls miniupnpc opus pcre2 wslay zlib zstd" - -%if %{system_bullet} -to_unbundle+=" bullet" -%endif -%if %{system_embree} -to_unbundle+=" embree" -%endif +to_unbundle="bullet embree freetype libogg libpng libtheora libvorbis libvpx libwebp mbedtls miniupnpc opus pcre2 wslay zlib zstd"
system_libs="" for lib in $to_unbundle; do @@ -240,7 +220,7 @@ done %define disable_modules module_denoise_enabled=no %endif
-%define _scons scons %{?_smp_mflags} "CCFLAGS=%{?build_cflags}" "LINKFLAGS=%{?build_ldflags}" $system_libs use_lto=yes use_static_cpp=no progress=no %{?disable_modules} +%define _scons scons %{?_smp_mflags} "CCFLAGS=%{?build_cflags}" "LINKFLAGS=%{?build_ldflags}" $system_libs lto=full use_static_cpp=no progress=no %{?disable_modules}
%if 0%{?fedora} export BUILD_NAME="fedora" @@ -304,6 +284,11 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{rdnsname}.desktop appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{rdnsname}.appdata.xml
%changelog +* Thu Jan 30 2025 Rémi Verschelde akien@fedoraproject.org - 3.6-1 +- Version 3.6-stable +- Use system-provided embree3 +- Fix build with GCC 15 + * Tue Jan 28 2025 Simone Caronni negativo17@gmail.com - 3.5.2-12 - Rebuild for updated dependencies.
diff --git a/sources b/sources index 5155b2d..3af00fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (godot-3.5.2-stable.tar.xz) = e9f3c8b23cd69422639fe22948fb1f5f2071dff6e013fee3c08d6d3c1f39de4dfc252d32eb395c847021c9bbc1b2fa320500140ff3e684bf00530889ba48a181 +SHA512 (godot-3.6-stable.tar.xz.sha256) = a4d443285a0e58a909c9c0b146eb65e249e0aa19a0ce41888adf4a0670445ec75e3e33f5b6acef3d6d618a347a58ef490f1211c24d36ca21d6301a03c25a0172
commit 7caed0875037dea732f7185255dd811a12ef862c Author: Simone Caronni negativo17@gmail.com Date: Tue Jan 28 13:57:14 2025 +0100
Rebuild for updated dependencies
diff --git a/godot3.spec b/godot3.spec index cab301b..70638b4 100644 --- a/godot3.spec +++ b/godot3.spec @@ -18,7 +18,7 @@
Name: godot3 Version: 3.5.2 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Multi-platform 2D and 3D game engine with a feature-rich editor (version 3) %if 0%{?mageia} Group: Development/Tools @@ -304,6 +304,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{rdnsname}.desktop appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{rdnsname}.appdata.xml
%changelog +* Tue Jan 28 2025 Simone Caronni negativo17@gmail.com - 3.5.2-12 +- Rebuild for updated dependencies. + * Thu Jan 16 2025 Fedora Release Engineering releng@fedoraproject.org - 3.5.2-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
commit bacb2ffb06df57de2c8d5be208d2356cb2865e35 Author: Fedora Release Engineering releng@fedoraproject.org Date: Thu Jan 16 23:09:29 2025 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
diff --git a/godot3.spec b/godot3.spec index af750ee..cab301b 100644 --- a/godot3.spec +++ b/godot3.spec @@ -18,7 +18,7 @@
Name: godot3 Version: 3.5.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Multi-platform 2D and 3D game engine with a feature-rich editor (version 3) %if 0%{?mageia} Group: Development/Tools @@ -304,6 +304,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{rdnsname}.desktop appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{rdnsname}.appdata.xml
%changelog +* Thu Jan 16 2025 Fedora Release Engineering releng@fedoraproject.org - 3.5.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Tue Oct 08 2024 Simone Caronni negativo17@gmail.com - 3.5.2-10 - Rebuild for updated miniupnpc.
commit 8b204d0ba917bd7d71187e730c44989666cb2c64 Author: Simone Caronni negativo17@gmail.com Date: Tue Oct 8 23:23:49 2024 +0200
Fix typo
diff --git a/godot3-miniupnp228.patch b/godot3-miniupnp228.patch index af973c0..87f5a2f 100644 --- a/godot3-miniupnp228.patch +++ b/godot3-miniupnp228.patch @@ -8,9 +8,9 @@ diff -Naur godot-3.5.2-stable.old/modules/upnp/upnp.cpp godot-3.5.2-stable/modul - int i = UPNP_GetValidIGD(devlist, urls, &data, (char *)&addr, 16); - +#if MINIUPNPC_API_VERSION >= 18 -+ int i = UPNP_GetValidIGD(devlist, &urls, data, (char *)&addr, 16, nullptr, 0); ++ int i = UPNP_GetValidIGD(devlist, urls, &data, (char *)&addr, 16, nullptr, 0); +#else -+ int i = UPNP_GetValidIGD(devlist, &urls, data, (char *)&addr, 16); ++ int i = UPNP_GetValidIGD(devlist, urls, &data, (char *)&addr, 16); +#endif if (i != 1) { FreeUPNPUrls(urls);
commit 63e41d267f479604891eca95a5ef4b818cb1939d Author: Simone Caronni negativo17@gmail.com Date: Tue Oct 8 22:59:13 2024 +0200
Add miniupnp 2.2.8 patch from upstream
diff --git a/godot3-miniupnp228.patch b/godot3-miniupnp228.patch new file mode 100644 index 0000000..af973c0 --- /dev/null +++ b/godot3-miniupnp228.patch @@ -0,0 +1,17 @@ +diff -Naur godot-3.5.2-stable.old/modules/upnp/upnp.cpp godot-3.5.2-stable/modules/upnp/upnp.cpp +--- godot-3.5.2-stable.old/modules/upnp/upnp.cpp 2024-10-08 22:55:13.094608093 +0200 ++++ godot-3.5.2-stable/modules/upnp/upnp.cpp 2024-10-08 22:57:59.614737504 +0200 +@@ -145,8 +145,11 @@ + } + + char addr[16]; +- int i = UPNP_GetValidIGD(devlist, urls, &data, (char *)&addr, 16); +- ++#if MINIUPNPC_API_VERSION >= 18 ++ int i = UPNP_GetValidIGD(devlist, &urls, data, (char *)&addr, 16, nullptr, 0); ++#else ++ int i = UPNP_GetValidIGD(devlist, &urls, data, (char *)&addr, 16); ++#endif + if (i != 1) { + FreeUPNPUrls(urls); + diff --git a/godot3.spec b/godot3.spec index 9261e75..af750ee 100644 --- a/godot3.spec +++ b/godot3.spec @@ -30,6 +30,8 @@ Source0: https://downloads.tuxfamily.org/godotengine/%%7Bversion%7D/%%7Buname%7D- Source1: https://downloads.tuxfamily.org/godotengine/%%7Bversion%7D/%%7Buname%7D-%%7B...
Patch0: godot3-dist-files-rebranding.patch +# https://github.com/transmission/transmission/pull/6907 +Patch1: godot3-miniupnp228.patch
# Upstream does not support those arches (for now) ExcludeArch: ppc64 ppc64le s390x
commit bc8a00cd5e082a78f8d1b36cf03cf0cc750610af Author: Simone Caronni negativo17@gmail.com Date: Tue Oct 8 18:43:48 2024 +0200
Rebuild for updated miniupnpc
diff --git a/godot3.spec b/godot3.spec index 9a5cd0c..9261e75 100644 --- a/godot3.spec +++ b/godot3.spec @@ -18,7 +18,7 @@
Name: godot3 Version: 3.5.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Multi-platform 2D and 3D game engine with a feature-rich editor (version 3) %if 0%{?mageia} Group: Development/Tools @@ -302,6 +302,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{rdnsname}.desktop appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{rdnsname}.appdata.xml
%changelog +* Tue Oct 08 2024 Simone Caronni negativo17@gmail.com - 3.5.2-10 +- Rebuild for updated miniupnpc. + * Tue Sep 03 2024 Morten Stevens mstevens@fedoraproject.org - 3.5.2-9 - Rebuilt for mbedTLS 3.6.1
commit 7752ae57c9066390f031cba3d691b50bf015bb8d Author: Morten Stevens mstevens@fedoraproject.org Date: Tue Sep 3 17:01:58 2024 +0200
Rebuilt for mbedTLS 3.6.1
diff --git a/godot3.spec b/godot3.spec index a72f7d6..9a5cd0c 100644 --- a/godot3.spec +++ b/godot3.spec @@ -18,7 +18,7 @@
Name: godot3 Version: 3.5.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Multi-platform 2D and 3D game engine with a feature-rich editor (version 3) %if 0%{?mageia} Group: Development/Tools @@ -302,6 +302,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{rdnsname}.desktop appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{rdnsname}.appdata.xml
%changelog +* Tue Sep 03 2024 Morten Stevens mstevens@fedoraproject.org - 3.5.2-9 +- Rebuilt for mbedTLS 3.6.1 + * Thu Jul 18 2024 Fedora Release Engineering releng@fedoraproject.org - 3.5.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
commit b7753ca122dcdb9676830bd2258680ef7998a5d5 Author: Fedora Release Engineering releng@fedoraproject.org Date: Thu Jul 18 03:23:57 2024 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
diff --git a/godot3.spec b/godot3.spec index 0ce8309..a72f7d6 100644 --- a/godot3.spec +++ b/godot3.spec @@ -18,7 +18,7 @@
Name: godot3 Version: 3.5.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Multi-platform 2D and 3D game engine with a feature-rich editor (version 3) %if 0%{?mageia} Group: Development/Tools @@ -302,6 +302,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{rdnsname}.desktop appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{rdnsname}.appdata.xml
%changelog +* Thu Jul 18 2024 Fedora Release Engineering releng@fedoraproject.org - 3.5.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon Mar 25 2024 Songsong Zhang U2FsdGVkX1@gmail.com - 3.5.2-7 - Add riscv64 support
commit 9d2786adb6fb33d113daba7fdce551183331312c Author: U2FsdGVkX1 U2FsdGVkX1@gmail.com Date: Mon Mar 25 17:19:09 2024 +0800
Add riscv64 support
diff --git a/godot3.spec b/godot3.spec index 88aac7f..0ce8309 100644 --- a/godot3.spec +++ b/godot3.spec @@ -18,7 +18,7 @@
Name: godot3 Version: 3.5.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Multi-platform 2D and 3D game engine with a feature-rich editor (version 3) %if 0%{?mageia} Group: Development/Tools @@ -264,14 +264,19 @@ export BUILD_NAME="mageia" %endif
%install +%ifarch riscv64 +suffix=rv64 +%else +suffix=%{__isa_bits} +%endif install -d %{buildroot}%{_bindir} -install -m755 bin/%{uname}.x11.opt.tools.%{__isa_bits} %{buildroot}%{_bindir}/%{name} -install -m755 bin/%{uname}.x11.opt.%{__isa_bits} %{buildroot}%{_bindir}/%{name}-runner +install -m755 bin/%{uname}.x11.opt.tools.$suffix %{buildroot}%{_bindir}/%{name} +install -m755 bin/%{uname}.x11.opt.$suffix %{buildroot}%{_bindir}/%{name}-runner %if %{with headless} -install -m755 bin/%{uname}_server.x11.opt.tools.%{__isa_bits} %{buildroot}%{_bindir}/%{name}-headless +install -m755 bin/%{uname}_server.x11.opt.tools.$suffix %{buildroot}%{_bindir}/%{name}-headless %endif %if %{with server} -install -m755 bin/%{uname}_server.x11.opt.%{__isa_bits} %{buildroot}%{_bindir}/%{name}-server +install -m755 bin/%{uname}_server.x11.opt.$suffix %{buildroot}%{_bindir}/%{name}-server %endif
install -D -m644 icon.svg \ @@ -297,6 +302,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{rdnsname}.desktop appstream-util validate-relax --nonet %{buildroot}%{_datadir}/metainfo/%{rdnsname}.appdata.xml
%changelog +* Mon Mar 25 2024 Songsong Zhang U2FsdGVkX1@gmail.com - 3.5.2-7 +- Add riscv64 support + * Wed Feb 07 2024 Pete Walter pwalter@fedoraproject.org - 3.5.2-6 - Rebuild for libvpx 1.14.x
arch-excludes@lists.fedoraproject.org