From 6893907201bcd4741b2df06190d7549fe8e26530 Mon Sep 17 00:00:00 2001 From: Artem Polishchuk Date: Sat, 13 Apr 2024 14:29:41 +0300 Subject: [PATCH 01/18] build: Update bundled(lua) to 5.3.6 --- retroarch.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.spec b/retroarch.spec index 1c7270a..d27d663 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -224,7 +224,7 @@ Provides: bundled(glslang) Provides: bundled(ibxm) # https://github.com/libretro/RetroArch/issues/8153 -Provides: bundled(lua) = 5.3.5 +Provides: bundled(lua) = 5.3.6 Provides: bundled(rcheevos) = 10.7 Provides: bundled(SPIRV-Cross) From 73510624b201f8d30db7419370b42d16520121d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert-Andr=C3=A9=20Mauchin?= Date: Sun, 5 May 2024 13:01:30 +0200 Subject: [PATCH 02/18] Add compatibility with FFMPEG 7.0 --- 0001-Add-compatibility-with-FFMPEG-7.0.patch | 122 +++++++++++++++++++ retroarch.spec | 5 + 2 files changed, 127 insertions(+) create mode 100644 0001-Add-compatibility-with-FFMPEG-7.0.patch diff --git a/0001-Add-compatibility-with-FFMPEG-7.0.patch b/0001-Add-compatibility-with-FFMPEG-7.0.patch new file mode 100644 index 0000000..e676efb --- /dev/null +++ b/0001-Add-compatibility-with-FFMPEG-7.0.patch @@ -0,0 +1,122 @@ +From 4a1047151ceba2ff0c52fe1962bbf5df41506899 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Robert-Andr=C3=A9=20Mauchin?= +Date: Sun, 5 May 2024 12:43:48 +0200 +Subject: [PATCH] Add compatibility with FFMPEG 7.0 + +channel_layout has been replaced with ch_layout + +Fix: #16437 +--- + cores/libretro-ffmpeg/ffmpeg_core.c | 8 ++++++++ + record/drivers/record_ffmpeg.c | 29 ++++++++++++++++++++++++++--- + 2 files changed, 34 insertions(+), 3 deletions(-) + +diff --git a/cores/libretro-ffmpeg/ffmpeg_core.c b/cores/libretro-ffmpeg/ffmpeg_core.c +index c96b4f4c75..08bee25063 100644 +--- a/cores/libretro-ffmpeg/ffmpeg_core.c ++++ b/cores/libretro-ffmpeg/ffmpeg_core.c +@@ -65,6 +65,8 @@ extern "C" { + s ##_version() >> 8 & 0xFF, \ + s ##_version() & 0xFF); + ++#define HAVE_CH_LAYOUT (LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(57, 28, 100)) ++ + static bool reset_triggered; + static bool libretro_supports_bitmasks = false; + +@@ -1726,8 +1728,14 @@ static void decode_thread(void *data) + { + swr[i] = swr_alloc(); + ++#if HAVE_CH_LAYOUT ++ AVChannelLayout out_chlayout = AV_CHANNEL_LAYOUT_STEREO; ++ av_opt_set_chlayout(swr[i], "in_chlayout", &actx[i]->ch_layout, 0); ++ av_opt_set_chlayout(swr[i], "out_chlayout", &out_chlayout, 0); ++#else + av_opt_set_int(swr[i], "in_channel_layout", actx[i]->channel_layout, 0); + av_opt_set_int(swr[i], "out_channel_layout", AV_CH_LAYOUT_STEREO, 0); ++#endif + av_opt_set_int(swr[i], "in_sample_rate", actx[i]->sample_rate, 0); + av_opt_set_int(swr[i], "out_sample_rate", media.sample_rate, 0); + av_opt_set_int(swr[i], "in_sample_fmt", actx[i]->sample_fmt, 0); +diff --git a/record/drivers/record_ffmpeg.c b/record/drivers/record_ffmpeg.c +index cb5114b945..0af5499872 100644 +--- a/record/drivers/record_ffmpeg.c ++++ b/record/drivers/record_ffmpeg.c +@@ -70,6 +70,7 @@ extern "C" { + #include "../../verbosity.h" + + #define FFMPEG3 (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 10, 100)) ++#define HAVE_CH_LAYOUT (LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(57, 28, 100)) + + struct ff_video_info + { +@@ -301,9 +302,15 @@ static bool ffmpeg_init_audio(ffmpeg_t *handle, const char *audio_resampler) + audio->codec = avcodec_alloc_context3(codec); + + audio->codec->codec_type = AVMEDIA_TYPE_AUDIO; ++#if HAVE_CH_LAYOUT ++ audio->codec->ch_layout = (param->channels > 1) ++ ? (AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO ++ : (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; ++#else + audio->codec->channels = param->channels; + audio->codec->channel_layout = (param->channels > 1) + ? AV_CH_LAYOUT_STEREO : AV_CH_LAYOUT_MONO; ++#endif + + ffmpeg_audio_resolve_format(audio, codec); + ffmpeg_audio_resolve_sample_rate(handle, codec); +@@ -351,9 +358,15 @@ static bool ffmpeg_init_audio(ffmpeg_t *handle, const char *audio_resampler) + if (!audio->codec->frame_size) + audio->codec->frame_size = 1024; + ++#if HAVE_CH_LAYOUT ++ int nb_channels = audio->codec->ch_layout.nb_channels; ++#else ++ int nb_channels = audio->codec->channels; ++#endif ++ + audio->buffer = (uint8_t*)av_malloc( + audio->codec->frame_size * +- audio->codec->channels * ++ nb_channels * + audio->sample_size); + + if (!audio->buffer) +@@ -1342,20 +1355,30 @@ static bool encode_audio(ffmpeg_t *handle, bool dry) + + frame->nb_samples = handle->audio.frames_in_buffer; + frame->format = handle->audio.codec->sample_fmt; ++#if HAVE_CH_LAYOUT ++ av_channel_layout_copy(&frame->ch_layout, &handle->audio.codec->ch_layout); ++#else + frame->channel_layout = handle->audio.codec->channel_layout; ++#endif + frame->pts = handle->audio.frame_cnt; + + planarize_audio(handle); + ++#if HAVE_CH_LAYOUT ++ int nb_channels = handle->audio.codec->ch_layout.nb_channels; ++#else ++ int nb_channels = handle->audio.codec->channels; ++#endif ++ + samples_size = av_samples_get_buffer_size( + NULL, +- handle->audio.codec->channels, ++ nb_channels, + handle->audio.frames_in_buffer, + handle->audio.codec->sample_fmt, 0); + + av_frame_get_buffer(frame, 0); + avcodec_fill_audio_frame(frame, +- handle->audio.codec->channels, ++ nb_channels, + handle->audio.codec->sample_fmt, + handle->audio.is_planar + ? (uint8_t*)handle->audio.planar_buf : +-- +2.44.0 + diff --git a/retroarch.spec b/retroarch.spec index d27d663..0b57e7c 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -127,6 +127,10 @@ Source10: %{name}-enable-network-access.sh Source11: README.fedora.md +# Add compatibility with FFMPEG 7.0 +# https://github.com/libretro/RetroArch/pull/16499 +Patch1: 0001-Add-compatibility-with-FFMPEG-7.0.patch + BuildRequires: desktop-file-utils BuildRequires: gcc-c++ >= 7 BuildRequires: glslang-devel @@ -296,6 +300,7 @@ database of ROMs that are known to be good copies. %setup -n RetroArch-%{version} -q -D -T -a3 %setup -n RetroArch-%{version} -q -D -T -a4 %setup -n RetroArch-%{version} -q -D -T -a5 +%patch -P 1 -p 1 # Unbundling pushd deps From 1b7d008b5e2ae55544394acb462f2aec2621c476 Mon Sep 17 00:00:00 2001 From: Artem Polishchuk Date: Fri, 31 May 2024 17:20:33 +0300 Subject: [PATCH 03/18] build: Update to 1.19.0 Signed-off-by: Artem Polishchuk --- .gitignore | 5 + 0001-Add-compatibility-with-FFMPEG-7.0.patch | 122 ------------------- retroarch.spec | 40 ++---- sources | 10 +- 4 files changed, 23 insertions(+), 154 deletions(-) delete mode 100644 0001-Add-compatibility-with-FFMPEG-7.0.patch diff --git a/.gitignore b/.gitignore index c7ad232..d4b9199 100644 --- a/.gitignore +++ b/.gitignore @@ -147,3 +147,8 @@ /libretro-database-1.18.0.tar.gz /retroarch-1.18.0.tar.gz /retroarch-joypad-autoconfig-1.18.0.tar.gz +/libretro-core-info-1.19.0.tar.gz +/libretro-database-1.19.0.tar.gz +/retroarch-1.19.0.tar.gz +/retroarch-assets-1.19.0.tar.gz +/retroarch-joypad-autoconfig-1.19.0.tar.gz diff --git a/0001-Add-compatibility-with-FFMPEG-7.0.patch b/0001-Add-compatibility-with-FFMPEG-7.0.patch deleted file mode 100644 index e676efb..0000000 --- a/0001-Add-compatibility-with-FFMPEG-7.0.patch +++ /dev/null @@ -1,122 +0,0 @@ -From 4a1047151ceba2ff0c52fe1962bbf5df41506899 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Robert-Andr=C3=A9=20Mauchin?= -Date: Sun, 5 May 2024 12:43:48 +0200 -Subject: [PATCH] Add compatibility with FFMPEG 7.0 - -channel_layout has been replaced with ch_layout - -Fix: #16437 ---- - cores/libretro-ffmpeg/ffmpeg_core.c | 8 ++++++++ - record/drivers/record_ffmpeg.c | 29 ++++++++++++++++++++++++++--- - 2 files changed, 34 insertions(+), 3 deletions(-) - -diff --git a/cores/libretro-ffmpeg/ffmpeg_core.c b/cores/libretro-ffmpeg/ffmpeg_core.c -index c96b4f4c75..08bee25063 100644 ---- a/cores/libretro-ffmpeg/ffmpeg_core.c -+++ b/cores/libretro-ffmpeg/ffmpeg_core.c -@@ -65,6 +65,8 @@ extern "C" { - s ##_version() >> 8 & 0xFF, \ - s ##_version() & 0xFF); - -+#define HAVE_CH_LAYOUT (LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(57, 28, 100)) -+ - static bool reset_triggered; - static bool libretro_supports_bitmasks = false; - -@@ -1726,8 +1728,14 @@ static void decode_thread(void *data) - { - swr[i] = swr_alloc(); - -+#if HAVE_CH_LAYOUT -+ AVChannelLayout out_chlayout = AV_CHANNEL_LAYOUT_STEREO; -+ av_opt_set_chlayout(swr[i], "in_chlayout", &actx[i]->ch_layout, 0); -+ av_opt_set_chlayout(swr[i], "out_chlayout", &out_chlayout, 0); -+#else - av_opt_set_int(swr[i], "in_channel_layout", actx[i]->channel_layout, 0); - av_opt_set_int(swr[i], "out_channel_layout", AV_CH_LAYOUT_STEREO, 0); -+#endif - av_opt_set_int(swr[i], "in_sample_rate", actx[i]->sample_rate, 0); - av_opt_set_int(swr[i], "out_sample_rate", media.sample_rate, 0); - av_opt_set_int(swr[i], "in_sample_fmt", actx[i]->sample_fmt, 0); -diff --git a/record/drivers/record_ffmpeg.c b/record/drivers/record_ffmpeg.c -index cb5114b945..0af5499872 100644 ---- a/record/drivers/record_ffmpeg.c -+++ b/record/drivers/record_ffmpeg.c -@@ -70,6 +70,7 @@ extern "C" { - #include "../../verbosity.h" - - #define FFMPEG3 (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 10, 100)) -+#define HAVE_CH_LAYOUT (LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(57, 28, 100)) - - struct ff_video_info - { -@@ -301,9 +302,15 @@ static bool ffmpeg_init_audio(ffmpeg_t *handle, const char *audio_resampler) - audio->codec = avcodec_alloc_context3(codec); - - audio->codec->codec_type = AVMEDIA_TYPE_AUDIO; -+#if HAVE_CH_LAYOUT -+ audio->codec->ch_layout = (param->channels > 1) -+ ? (AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO -+ : (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; -+#else - audio->codec->channels = param->channels; - audio->codec->channel_layout = (param->channels > 1) - ? AV_CH_LAYOUT_STEREO : AV_CH_LAYOUT_MONO; -+#endif - - ffmpeg_audio_resolve_format(audio, codec); - ffmpeg_audio_resolve_sample_rate(handle, codec); -@@ -351,9 +358,15 @@ static bool ffmpeg_init_audio(ffmpeg_t *handle, const char *audio_resampler) - if (!audio->codec->frame_size) - audio->codec->frame_size = 1024; - -+#if HAVE_CH_LAYOUT -+ int nb_channels = audio->codec->ch_layout.nb_channels; -+#else -+ int nb_channels = audio->codec->channels; -+#endif -+ - audio->buffer = (uint8_t*)av_malloc( - audio->codec->frame_size * -- audio->codec->channels * -+ nb_channels * - audio->sample_size); - - if (!audio->buffer) -@@ -1342,20 +1355,30 @@ static bool encode_audio(ffmpeg_t *handle, bool dry) - - frame->nb_samples = handle->audio.frames_in_buffer; - frame->format = handle->audio.codec->sample_fmt; -+#if HAVE_CH_LAYOUT -+ av_channel_layout_copy(&frame->ch_layout, &handle->audio.codec->ch_layout); -+#else - frame->channel_layout = handle->audio.codec->channel_layout; -+#endif - frame->pts = handle->audio.frame_cnt; - - planarize_audio(handle); - -+#if HAVE_CH_LAYOUT -+ int nb_channels = handle->audio.codec->ch_layout.nb_channels; -+#else -+ int nb_channels = handle->audio.codec->channels; -+#endif -+ - samples_size = av_samples_get_buffer_size( - NULL, -- handle->audio.codec->channels, -+ nb_channels, - handle->audio.frames_in_buffer, - handle->audio.codec->sample_fmt, 0); - - av_frame_get_buffer(frame, 0); - avcodec_fill_audio_frame(frame, -- handle->audio.codec->channels, -+ nb_channels, - handle->audio.codec->sample_fmt, - handle->audio.is_planar - ? (uint8_t*)handle->audio.planar_buf : --- -2.44.0 - diff --git a/retroarch.spec b/retroarch.spec index 0b57e7c..ba46404 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -21,16 +21,8 @@ ExcludeArch: s390x %global short_url https://github.com/libretro -# Assets -# * https://github.com/libretro/retroarch-assets -# * https://github.com/libretro/retroarch-assets/issues/414 -%global commit1 923b711dc6772a168d83dc8915e9260730fcf3a1 -%global date 20240102 -%global shortcommit1 %(c=%{commit1}; echo ${c:0:7}) - Name: %{appname}%{?p_suffix} -Version: 1.18.0 -%global version_addons 1.18.0 +Version: 1.19.0 Release: %autorelease Summary: Cross-platform, sophisticated frontend for the libretro API. %{?sum_suffix} @@ -100,7 +92,7 @@ URL: https://www.libretro.com/ Source0: %{short_url}/RetroArch/archive/v%{version}/%{appname}-%{version}.tar.gz # Assets -Source1: %{short_url}/%{appname}-assets/archive/%{commit1}/%{appname}-assets-%{date}git%{shortcommit1}.tar.gz +Source1: %{short_url}/%{appname}-assets/archive/v%{version}/%{appname}-assets-%{version}.tar.gz # AppData manifest # Upstreamed so should be easier now to maintain and automate updates for both @@ -113,13 +105,13 @@ Source1: %{short_url}/%{appname}-assets/archive/%{commit1}/%{appname}-ass %dnl Source2: https://raw.githubusercontent.com/flathub/%{uuid}/63af0e2449891e40c6ab6feae5d27845768b26fb/%{uuid}.appdata.xml # Libretro's core info -Source3: %{short_url}/libretro-core-info/archive/v%{version_addons}/libretro-core-info-%{version_addons}.tar.gz +Source3: %{short_url}/libretro-core-info/archive/v%{version}/libretro-core-info-%{version}.tar.gz # Joypad Autoconfig Files -Source4: %{short_url}/%{appname}-joypad-autoconfig/archive/v%{version_addons}/%{appname}-joypad-autoconfig-%{version_addons}.tar.gz +Source4: %{short_url}/%{appname}-joypad-autoconfig/archive/v%{version}/%{appname}-joypad-autoconfig-%{version}.tar.gz # Database files (cheatcode, content data, cursors) -Source5: %{short_url}/libretro-database/archive/v%{version_addons}/libretro-database-%{version_addons}.tar.gz +Source5: %{short_url}/libretro-database/archive/v%{version}/libretro-database-%{version}.tar.gz # Script for enabling network access which allows downloading more libretro # cores @@ -127,10 +119,6 @@ Source10: %{name}-enable-network-access.sh Source11: README.fedora.md -# Add compatibility with FFMPEG 7.0 -# https://github.com/libretro/RetroArch/pull/16499 -Patch1: 0001-Add-compatibility-with-FFMPEG-7.0.patch - BuildRequires: desktop-file-utils BuildRequires: gcc-c++ >= 7 BuildRequires: glslang-devel @@ -300,7 +288,6 @@ database of ROMs that are known to be good copies. %setup -n RetroArch-%{version} -q -D -T -a3 %setup -n RetroArch-%{version} -q -D -T -a4 %setup -n RetroArch-%{version} -q -D -T -a5 -%patch -P 1 -p 1 # Unbundling pushd deps @@ -373,8 +360,7 @@ sed -e 's|retroarch.cfg|%{name}.cfg|g' \ %make_build # Assets -%make_build -C %{appname}-assets-%{commit1} \ - GIT_VERSION=%{shortcommit1} +%make_build -C %{appname}-assets-%{version} # Audio filters %make_build -C libretro-common/audio/dsp_filters @@ -383,13 +369,13 @@ sed -e 's|retroarch.cfg|%{name}.cfg|g' \ %make_build -C gfx/video_filters # Libretro's core info -%make_build -C libretro-core-info-%{version_addons} +%make_build -C libretro-core-info-%{version} # Joypad Autoconfig Files -%make_build -C %{appname}-joypad-autoconfig-%{version_addons} +%make_build -C %{appname}-joypad-autoconfig-%{version} # Database files (cheatcode, content data, cursors) -%make_build -C libretro-database-%{version_addons} +%make_build -C libretro-database-%{version} %install @@ -398,7 +384,7 @@ rm %{buildroot}%{_docdir}/%{appname}/COPYING \ %{buildroot}%{_docdir}/%{appname}/README.md # Assets -%make_install -C %{appname}-assets-%{commit1} +%make_install -C %{appname}-assets-%{version} %if %{with freeworld} mv %{buildroot}%{_datadir}/libretro/assets/ \ %{buildroot}%{_datadir}/libretro/assets-freeworld/ @@ -424,14 +410,14 @@ rm %{buildroot}%{_datadir}/libretro/assets%{?p_suffix}/pkg/osd-font.ttf \ INSTALLDIR=%{_libdir}/retroarch/filters%{?p_suffix}/video # Libretro's core info -%make_install -C libretro-core-info-%{version_addons} \ +%make_install -C libretro-core-info-%{version} \ INSTALLDIR=%{_datadir}/libretro/info%{?p_suffix} # AppData manifest %dnl install -m 0644 -Dp %{SOURCE2} %{buildroot}%{_metainfodir}/%{uuid}.appdata.xml # Joypad Autoconfig Files -%make_install -C %{appname}-joypad-autoconfig-%{version_addons} \ +%make_install -C %{appname}-joypad-autoconfig-%{version} \ DOC_DIR=%{_datadir}/libretro/autoconfig/doc %if %{with freeworld} mv %{buildroot}%{_datadir}/libretro/autoconfig/ \ @@ -439,7 +425,7 @@ mv %{buildroot}%{_datadir}/libretro/autoconfig/ \ %endif # Database files (cheatcode, content data, cursors) -%make_install -C libretro-database-%{version_addons} \ +%make_install -C libretro-database-%{version} \ INSTALLDIR=%{_datadir}/libretro/database%{?p_suffix} # Rename desktop file to UUID for compatibility diff --git a/sources b/sources index b2800a9..2671772 100644 --- a/sources +++ b/sources @@ -1,5 +1,5 @@ -SHA512 (libretro-core-info-1.18.0.tar.gz) = 832132b943d979ff24a6a60cb0bc339cbd684822b81d6384854bf171d8e73fb0a627eb8fba4354fa0de32d18fb810b753538d521c357e8c73753adda1e54e133 -SHA512 (libretro-database-1.18.0.tar.gz) = c4e793ffcb11680a7be4968d99daa5dcd547d028ddc2b698e74b2271c42c3e17c1b62dfaf1d7fcec9726be56d66c19dc4092d5c8f4fedb0753fad0cb0457b1fa -SHA512 (retroarch-1.18.0.tar.gz) = 3b685a4016e06bc69dfe015da91dc240f24672d30f1511f87ded90d1953b8aab60e54a81eb51cb4666676b2b8544ebdcf8497b5987a9683551c5f24ba1d86306 -SHA512 (retroarch-assets-20240102git923b711.tar.gz) = 0d436662985b43ab372975082eb9f5c08093a52c447d4c7ddf62bd61fa148534ecffa9e30f51086637d5682c37fc551462e1f0f111ce43662e521558c45dac68 -SHA512 (retroarch-joypad-autoconfig-1.18.0.tar.gz) = 69e0fc60ed381a932099a45f348e1ef8f31638766b540e8815cbb088f32a845f274095d8ac5786becd09bf5ec866218482bec354f363fe00adfa836eb4b306f0 +SHA512 (libretro-core-info-1.19.0.tar.gz) = 17cca258bb3460f2078fea0f2d64319a946aecf915475f61ca4b8eac3c882edfb96e38ae897285b4e1959ab06cf277e93130317ea13c469515948fd28fc942cd +SHA512 (libretro-database-1.19.0.tar.gz) = 1ca406d93670ef9bd8fb4fdd4a551c8cff4f6523aad3b5172af62b78cc4ae69ffddc911f7077aa93cdbd5860ed20e75d93a6271d48b6a1d24b63528cfbea753f +SHA512 (retroarch-1.19.0.tar.gz) = fe807570eedac5e5142e68a0c9d4e085be923e4914a3cfa9635ef644c02de2d8f9777ce7dfbdee0d8584fc4fa038f04adc1c9a55e3fe46903ba8ce05878b17a0 +SHA512 (retroarch-assets-1.19.0.tar.gz) = 4e02e4c5d9b546ad12bf10d54aae51b43f18879e603edc7f90f02907712fff78c8cfd23adaa8fbce6b054aea91254ad942fc4ade60daf925906ba85e9b6ec9fb +SHA512 (retroarch-joypad-autoconfig-1.19.0.tar.gz) = 2644fe7f40dcb94fb433ea23b7825193ddc1b81d9fe9841b0a3bcba9598aa72286ea07426657ec6de404efb64e2c42950d81f58861ffc9193a892e8bd4a59a6d From b20e425e2b7f211cb9a2a30a92ed00c9b9338e92 Mon Sep 17 00:00:00 2001 From: Artem Polishchuk Date: Fri, 31 May 2024 17:24:30 +0300 Subject: [PATCH 04/18] docs: Update desc Signed-off-by: Artem Polishchuk --- retroarch.spec | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/retroarch.spec b/retroarch.spec index ba46404..9e7830d 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -232,10 +232,8 @@ While RetroArch is the reference frontend for libretro, several other projects have used the libretro interface to include support for emulators and/or game engines. libretro is completely open and free for anyone to use. -To download and install more libretro cores please read included README.Fedora -file: - - $ xdg-open %{_docdir}/%{name}/README.fedora.md} +For how to download and install more libretro cores please read included README.fedora.md +file. %description %{_description} From 5045366c0f376a39062a97fb913c866b2e45d88f Mon Sep 17 00:00:00 2001 From: Artem Polishchuk Date: Fri, 31 May 2024 17:27:01 +0300 Subject: [PATCH 05/18] build: Add Packit config Signed-off-by: Artem Polishchuk --- .packit.yaml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .packit.yaml diff --git a/.packit.yaml b/.packit.yaml new file mode 100644 index 0000000..0cb662d --- /dev/null +++ b/.packit.yaml @@ -0,0 +1,27 @@ +copy_upstream_release_description: false +# downstream_package_name: foo # not mandatory +# upstream_package_name: Foo # not mandatory +upstream_project_url: https://github.com/libretro/RetroArch +upstream_tag_template: v{version} + +jobs: + - job: pull_from_upstream + trigger: release + dist_git_branches: + - fedora-rawhide + # - fedora-development + # - fedora-all + + - job: koji_build + trigger: commit + allowed_pr_authors: ["packit", "atim"] + allowed_committers: ["packit", "atim"] + dist_git_branches: + - fedora-all + # - epel-9 + + - job: bodhi_update + trigger: commit + dist_git_branches: + - fedora-branched + # - epel-9 From 1358879df4a2d134509e4a815d517671e57472d4 Mon Sep 17 00:00:00 2001 From: Artem Polishchuk Date: Fri, 31 May 2024 17:30:35 +0300 Subject: [PATCH 06/18] build: Add } to desc Signed-off-by: Artem Polishchuk --- retroarch.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.spec b/retroarch.spec index 9e7830d..9a22c98 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -233,7 +233,7 @@ have used the libretro interface to include support for emulators and/or game engines. libretro is completely open and free for anyone to use. For how to download and install more libretro cores please read included README.fedora.md -file. +file.} %description %{_description} From c8d3e4c9095a268fd36b9cd569523e01b892a678 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 18:32:54 +0000 Subject: [PATCH 07/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From c11b52a92eca5ff5c7d64e23b7020702fa1e6b49 Mon Sep 17 00:00:00 2001 From: Morten Stevens Date: Tue, 3 Sep 2024 17:27:42 +0200 Subject: [PATCH 08/18] Rebuilt for mbedTLS 3.6.1 --- changelog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changelog b/changelog index d81bd64..2d278a8 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,6 @@ +* Tue Sep 03 2024 Morten Stevens - 1.15.0-7 +- Rebuilt for mbedTLS 3.6.1 + * Tue Jun 27 2023 Artem Polishchuk - 1.15.0-6 - build: ExcludeArch: s390x From 29b630c7b62c16185a52f016e30c338db71f75ec Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Mon, 23 Sep 2024 17:01:16 +0200 Subject: [PATCH 09/18] Rebuild for ffmpeg 7 From f5dcafa5703b5b3fcf2c81a6f6e0063b78c76cbe Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 22:24:43 +0000 Subject: [PATCH 10/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 4906717aa9d3f7582073e927b4504a81ed9f1e2f Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Wed, 19 Mar 2025 17:38:22 +0000 Subject: [PATCH 11/18] Rebuild for mbedtls 3.6 From d48557cd0583f593edd28ade0154ae4684415c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Hor=C3=A1k?= Date: Mon, 24 Mar 2025 17:14:23 +0000 Subject: [PATCH 12/18] switch to bundled mbedtls 2.x for Fedora >= 42 retroarch is not compatible with mbedtls 3.x (yet?) and the bundled bearssl won't build on ppc64le --- retroarch.spec | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/retroarch.spec b/retroarch.spec index 9a22c98..1335577 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -124,7 +124,9 @@ BuildRequires: gcc-c++ >= 7 BuildRequires: glslang-devel BuildRequires: libappstream-glib BuildRequires: make +%if 0%{?fedora} < 42 BuildRequires: mbedtls-devel +%endif BuildRequires: mesa-libEGL-devel BuildRequires: spirv-tools-libs BuildRequires: systemd-devel @@ -222,6 +224,10 @@ Provides: bundled(rcheevos) = 10.7 Provides: bundled(SPIRV-Cross) Provides: bundled(stb) +%if 0%{?fedora} >= 42 +Provides: bundled(mbedtls) = 2.5.1 +%endif + %global _description %{expand: libretro is an API that exposes generic audio/video/input callbacks. A frontend for libretro (such as RetroArch) handles video output, audio output, input and @@ -301,8 +307,10 @@ rm -rf \ %{nil} popd +%if 0%{?fedora} < 42 # * Not part of the 'mbedtls' upstream source find deps/mbedtls/ ! -name 'cacert.h' -type f -exec rm -f {} + +%endif # Use system assets, libretro cores, libretro's core info and audio/video, # filters, database files (cheatcode, content data, cursors) @@ -348,7 +356,11 @@ sed -e 's|retroarch.cfg|%{name}.cfg|g' \ ./configure \ --prefix=%{_prefix} \ --disable-builtinflac \ +%if 0%{?fedora} < 42 --disable-builtinmbedtls \ +%else + --enable-builtinmbedtls \ +%endif --disable-builtinzlib \ --enable-dbus \ --enable-libdecor \ From 8b4270569b21505bb6d3442b7392bdd1b34b839f Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Tue, 8 Apr 2025 06:15:16 -0400 Subject: [PATCH 13/18] Unbundle three of the four bundled stb libraries --- retroarch.spec | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/retroarch.spec b/retroarch.spec index 1335577..3bef799 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -131,6 +131,11 @@ BuildRequires: mesa-libEGL-devel BuildRequires: spirv-tools-libs BuildRequires: systemd-devel +# https://docs.fedoraproject.org/en-US/packaging-guidelines/#_packaging_header_only_libraries +BuildRequires: stb_image-static +BuildRequires: stb_rect_pack-static +BuildRequires: stb_truetype-static + BuildRequires: pkgconfig(alsa) BuildRequires: pkgconfig(caca) BuildRequires: pkgconfig(dbus-1) @@ -222,7 +227,8 @@ Provides: bundled(lua) = 5.3.6 Provides: bundled(rcheevos) = 10.7 Provides: bundled(SPIRV-Cross) -Provides: bundled(stb) +# Unbundling this in the manner of the other stb libraries does not work. +Provides: bundled(stb_vorbis) %if 0%{?fedora} >= 42 Provides: bundled(mbedtls) = 2.5.1 @@ -306,6 +312,10 @@ rm -rf \ wayland-protocols \ %{nil} popd +for lib in image rect_pack truetype +do + ln -svf /usr/include/stb/stb_${lib}.h deps/stb/stb_${lib}.h +done %if 0%{?fedora} < 42 # * Not part of the 'mbedtls' upstream source From 08651437574680ddf12dc46d005acb73ac7d94e1 Mon Sep 17 00:00:00 2001 From: Jitka Plesnikova Date: Tue, 27 May 2025 17:39:48 +0200 Subject: [PATCH 14/18] Rebuilt for flac 1.5.0 From fd81acf7626aed3cad0ef7a81cb295808c3c2475 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 11:56:33 +0000 Subject: [PATCH 15/18] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 5c0d919eddd9b5025cb0b9d02f6877c0c96c821a Mon Sep 17 00:00:00 2001 From: Dominik 'Rathann' Mierzejewski Date: Wed, 15 Oct 2025 10:36:53 +0200 Subject: [PATCH 16/18] Rebuilt for FFmpeg 8 From e782a2bb6080df95636d8fc9c8ddebc8b59796fb Mon Sep 17 00:00:00 2001 From: Dominik 'Rathann' Mierzejewski Date: Wed, 15 Oct 2025 10:36:53 +0200 Subject: [PATCH 17/18] Fixed build with FFmpeg 8 Backported upstream patch. --- retroarch-ffmpeg8.patch | 85 +++++++++++++++++++++++++++++++++++++++++ retroarch.spec | 3 ++ 2 files changed, 88 insertions(+) create mode 100644 retroarch-ffmpeg8.patch diff --git a/retroarch-ffmpeg8.patch b/retroarch-ffmpeg8.patch new file mode 100644 index 0000000..0d64fb1 --- /dev/null +++ b/retroarch-ffmpeg8.patch @@ -0,0 +1,85 @@ +diff -up RetroArch-1.19.0/cores/libretro-ffmpeg/ffmpeg_core.c.ffmpeg8 RetroArch-1.19.0/cores/libretro-ffmpeg/ffmpeg_core.c +--- RetroArch-1.19.0/cores/libretro-ffmpeg/ffmpeg_core.c.ffmpeg8 2024-05-30 05:03:48.000000000 +0200 ++++ RetroArch-1.19.0/cores/libretro-ffmpeg/ffmpeg_core.c 2025-10-23 17:12:03.063697264 +0200 +@@ -99,6 +99,9 @@ static tpool_t *tpool; + + #define FFMPEG3 ((LIBAVUTIL_VERSION_INT < (56, 6, 100)) || \ + (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 10, 100))) ++#ifndef FFMPEG8 ++#define FFMPEG8 (LIBAVCODEC_VERSION_MAJOR >= 62) ++#endif + + #if ENABLE_HW_ACCEL + static enum AVHWDeviceType hw_decoder; +@@ -2088,17 +2091,28 @@ void CORE_PREFIX(retro_unload_game)(void + + for (i = 0; i < MAX_STREAMS; i++) + { ++#if FFMPEG8 ++ if (sctx[i]) ++ avcodec_free_context(&sctx[i]); ++ if (actx[i]) ++ avcodec_free_context(&actx[i]); ++#else + if (sctx[i]) + avcodec_close(sctx[i]); + if (actx[i]) + avcodec_close(actx[i]); ++#endif + sctx[i] = NULL; + actx[i] = NULL; + } + + if (vctx) + { ++#if FFMPEG8 ++ avcodec_free_context(&vctx); ++#else + avcodec_close(vctx); ++#endif + vctx = NULL; + } + +diff -up RetroArch-1.19.0/record/drivers/record_ffmpeg.c.ffmpeg8 RetroArch-1.19.0/record/drivers/record_ffmpeg.c +--- RetroArch-1.19.0/record/drivers/record_ffmpeg.c.ffmpeg8 2024-05-30 05:03:48.000000000 +0200 ++++ RetroArch-1.19.0/record/drivers/record_ffmpeg.c 2025-10-23 17:11:17.419250148 +0200 +@@ -70,6 +70,15 @@ extern "C" { + #include "../../verbosity.h" + + #define FFMPEG3 (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 10, 100)) ++ ++#ifndef FFMPEG8 ++#define FFMPEG8 (LIBAVCODEC_VERSION_MAJOR >= 62) ++#endif ++ ++#ifndef AV_INPUT_BUFFER_MIN_SIZE ++#define AV_INPUT_BUFFER_MIN_SIZE 16384 ++#endif ++ + #define HAVE_CH_LAYOUT (LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(57, 28, 100)) + + struct ff_video_info +@@ -949,7 +958,11 @@ static void ffmpeg_free(void *data) + + if (handle->audio.codec) + { ++#if FFMPEG8 ++ avcodec_free_context(&handle->audio.codec); ++#else + avcodec_close(handle->audio.codec); ++#endif + av_free(handle->audio.codec); + } + +@@ -957,7 +970,11 @@ static void ffmpeg_free(void *data) + + if (handle->video.codec) + { ++#if FFMPEG8 ++ avcodec_free_context(&handle->video.codec); ++#else + avcodec_close(handle->video.codec); ++#endif + av_free(handle->video.codec); + } + diff --git a/retroarch.spec b/retroarch.spec index 3bef799..e7f480e 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -118,6 +118,8 @@ Source5: %{short_url}/libretro-database/archive/v%{version}/libretro-data Source10: %{name}-enable-network-access.sh Source11: README.fedora.md +# https://github.com/libretro/RetroArch/commit/21776a2e59f5f5899ff2198c0df25a95b5020012 +Patch0: %{name}-ffmpeg8.patch BuildRequires: desktop-file-utils BuildRequires: gcc-c++ >= 7 @@ -298,6 +300,7 @@ database of ROMs that are known to be good copies. %setup -n RetroArch-%{version} -q -D -T -a3 %setup -n RetroArch-%{version} -q -D -T -a4 %setup -n RetroArch-%{version} -q -D -T -a5 +%patch -P0 -p1 -b .ffmpeg8 # Unbundling pushd deps From 08cf039f9889f017c1674ec1812282b932243273 Mon Sep 17 00:00:00 2001 From: Artem Polishchuk Date: Thu, 18 Dec 2025 06:57:18 +0300 Subject: [PATCH 18/18] Update to 1.22.0 Signed-off-by: Artem Polishchuk --- .gitignore | 5 +++ retroarch-ffmpeg8.patch | 85 ----------------------------------------- retroarch.spec | 42 +++++++------------- sources | 10 ++--- 4 files changed, 23 insertions(+), 119 deletions(-) delete mode 100644 retroarch-ffmpeg8.patch diff --git a/.gitignore b/.gitignore index d4b9199..1df90dd 100644 --- a/.gitignore +++ b/.gitignore @@ -152,3 +152,8 @@ /retroarch-1.19.0.tar.gz /retroarch-assets-1.19.0.tar.gz /retroarch-joypad-autoconfig-1.19.0.tar.gz +/libretro-core-info-1.22.0.tar.gz +/libretro-database-1.22.0.tar.gz +/retroarch-1.22.0.tar.gz +/retroarch-assets-1.22.0.tar.gz +/retroarch-joypad-autoconfig-1.22.0.tar.gz diff --git a/retroarch-ffmpeg8.patch b/retroarch-ffmpeg8.patch deleted file mode 100644 index 0d64fb1..0000000 --- a/retroarch-ffmpeg8.patch +++ /dev/null @@ -1,85 +0,0 @@ -diff -up RetroArch-1.19.0/cores/libretro-ffmpeg/ffmpeg_core.c.ffmpeg8 RetroArch-1.19.0/cores/libretro-ffmpeg/ffmpeg_core.c ---- RetroArch-1.19.0/cores/libretro-ffmpeg/ffmpeg_core.c.ffmpeg8 2024-05-30 05:03:48.000000000 +0200 -+++ RetroArch-1.19.0/cores/libretro-ffmpeg/ffmpeg_core.c 2025-10-23 17:12:03.063697264 +0200 -@@ -99,6 +99,9 @@ static tpool_t *tpool; - - #define FFMPEG3 ((LIBAVUTIL_VERSION_INT < (56, 6, 100)) || \ - (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 10, 100))) -+#ifndef FFMPEG8 -+#define FFMPEG8 (LIBAVCODEC_VERSION_MAJOR >= 62) -+#endif - - #if ENABLE_HW_ACCEL - static enum AVHWDeviceType hw_decoder; -@@ -2088,17 +2091,28 @@ void CORE_PREFIX(retro_unload_game)(void - - for (i = 0; i < MAX_STREAMS; i++) - { -+#if FFMPEG8 -+ if (sctx[i]) -+ avcodec_free_context(&sctx[i]); -+ if (actx[i]) -+ avcodec_free_context(&actx[i]); -+#else - if (sctx[i]) - avcodec_close(sctx[i]); - if (actx[i]) - avcodec_close(actx[i]); -+#endif - sctx[i] = NULL; - actx[i] = NULL; - } - - if (vctx) - { -+#if FFMPEG8 -+ avcodec_free_context(&vctx); -+#else - avcodec_close(vctx); -+#endif - vctx = NULL; - } - -diff -up RetroArch-1.19.0/record/drivers/record_ffmpeg.c.ffmpeg8 RetroArch-1.19.0/record/drivers/record_ffmpeg.c ---- RetroArch-1.19.0/record/drivers/record_ffmpeg.c.ffmpeg8 2024-05-30 05:03:48.000000000 +0200 -+++ RetroArch-1.19.0/record/drivers/record_ffmpeg.c 2025-10-23 17:11:17.419250148 +0200 -@@ -70,6 +70,15 @@ extern "C" { - #include "../../verbosity.h" - - #define FFMPEG3 (LIBAVCODEC_VERSION_INT < AV_VERSION_INT(58, 10, 100)) -+ -+#ifndef FFMPEG8 -+#define FFMPEG8 (LIBAVCODEC_VERSION_MAJOR >= 62) -+#endif -+ -+#ifndef AV_INPUT_BUFFER_MIN_SIZE -+#define AV_INPUT_BUFFER_MIN_SIZE 16384 -+#endif -+ - #define HAVE_CH_LAYOUT (LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(57, 28, 100)) - - struct ff_video_info -@@ -949,7 +958,11 @@ static void ffmpeg_free(void *data) - - if (handle->audio.codec) - { -+#if FFMPEG8 -+ avcodec_free_context(&handle->audio.codec); -+#else - avcodec_close(handle->audio.codec); -+#endif - av_free(handle->audio.codec); - } - -@@ -957,7 +970,11 @@ static void ffmpeg_free(void *data) - - if (handle->video.codec) - { -+#if FFMPEG8 -+ avcodec_free_context(&handle->video.codec); -+#else - avcodec_close(handle->video.codec); -+#endif - av_free(handle->video.codec); - } - diff --git a/retroarch.spec b/retroarch.spec index e7f480e..8b7c4ba 100644 --- a/retroarch.spec +++ b/retroarch.spec @@ -22,7 +22,7 @@ ExcludeArch: s390x %global short_url https://github.com/libretro Name: %{appname}%{?p_suffix} -Version: 1.19.0 +Version: 1.22.0 Release: %autorelease Summary: Cross-platform, sophisticated frontend for the libretro API. %{?sum_suffix} @@ -118,17 +118,13 @@ Source5: %{short_url}/libretro-database/archive/v%{version}/libretro-data Source10: %{name}-enable-network-access.sh Source11: README.fedora.md -# https://github.com/libretro/RetroArch/commit/21776a2e59f5f5899ff2198c0df25a95b5020012 -Patch0: %{name}-ffmpeg8.patch BuildRequires: desktop-file-utils BuildRequires: gcc-c++ >= 7 BuildRequires: glslang-devel BuildRequires: libappstream-glib BuildRequires: make -%if 0%{?fedora} < 42 BuildRequires: mbedtls-devel -%endif BuildRequires: mesa-libEGL-devel BuildRequires: spirv-tools-libs BuildRequires: systemd-devel @@ -141,7 +137,8 @@ BuildRequires: stb_truetype-static BuildRequires: pkgconfig(alsa) BuildRequires: pkgconfig(caca) BuildRequires: pkgconfig(dbus-1) -BuildRequires: pkgconfig(flac) +# Since Flac 1.5.0 update RetroArch won't compile +#BuildRequires: pkgconfig(flac) BuildRequires: pkgconfig(freetype2) BuildRequires: pkgconfig(gbm) BuildRequires: pkgconfig(gl) @@ -218,7 +215,7 @@ Recommends: libretro-stella2014 # * Dummy for future %endif -Provides: bundled(7zip) = 9.20 +Provides: bundled(7zip) = 19.00 Provides: bundled(discord-rpc) Provides: bundled(dr) Provides: bundled(glslang) @@ -227,15 +224,12 @@ Provides: bundled(ibxm) # https://github.com/libretro/RetroArch/issues/8153 Provides: bundled(lua) = 5.3.6 -Provides: bundled(rcheevos) = 10.7 +Provides: bundled(flac) = 1.3.2 +Provides: bundled(rcheevos) = 12.1 Provides: bundled(SPIRV-Cross) # Unbundling this in the manner of the other stb libraries does not work. Provides: bundled(stb_vorbis) -%if 0%{?fedora} >= 42 -Provides: bundled(mbedtls) = 2.5.1 -%endif - %global _description %{expand: libretro is an API that exposes generic audio/video/input callbacks. A frontend for libretro (such as RetroArch) handles video output, audio output, input and @@ -246,8 +240,8 @@ While RetroArch is the reference frontend for libretro, several other projects have used the libretro interface to include support for emulators and/or game engines. libretro is completely open and free for anyone to use. -For how to download and install more libretro cores please read included README.fedora.md -file.} +For how to download and install more libretro cores please read included +README.fedora.md file.} %description %{_description} @@ -290,8 +284,8 @@ Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} %description database RetroArch incoporates a ROM scanning system to automatically produce playlists. -Each ROM that is scanned by the playlist generator is checked against a -database of ROMs that are known to be good copies. +Each ROM that is scanned by the playlist generator is checked against a database +of ROMs that are known to be good copies. %prep @@ -300,13 +294,13 @@ database of ROMs that are known to be good copies. %setup -n RetroArch-%{version} -q -D -T -a3 %setup -n RetroArch-%{version} -q -D -T -a4 %setup -n RetroArch-%{version} -q -D -T -a5 -%patch -P0 -p1 -b .ffmpeg8 # Unbundling pushd deps rm -rf \ libfat \ - libFLAC \ +%dnl Since Flac 1.5.0 update RetroArch won't compile \ +%dnl libFLAC \ libiosuhax \ libvita2d \ libz \ @@ -320,10 +314,8 @@ do ln -svf /usr/include/stb/stb_${lib}.h deps/stb/stb_${lib}.h done -%if 0%{?fedora} < 42 # * Not part of the 'mbedtls' upstream source find deps/mbedtls/ ! -name 'cacert.h' -type f -exec rm -f {} + -%endif # Use system assets, libretro cores, libretro's core info and audio/video, # filters, database files (cheatcode, content data, cursors) @@ -368,12 +360,8 @@ sed -e 's|retroarch.cfg|%{name}.cfg|g' \ %build ./configure \ --prefix=%{_prefix} \ - --disable-builtinflac \ -%if 0%{?fedora} < 42 +%dnl --disable-builtinflac \ --disable-builtinmbedtls \ -%else - --enable-builtinmbedtls \ -%endif --disable-builtinzlib \ --enable-dbus \ --enable-libdecor \ @@ -451,10 +439,6 @@ mv %{buildroot}%{_datadir}/libretro/autoconfig/ \ %make_install -C libretro-database-%{version} \ INSTALLDIR=%{_datadir}/libretro/database%{?p_suffix} -# Rename desktop file to UUID for compatibility -mv %{buildroot}%{_datadir}/applications/%{appname}.desktop \ - %{buildroot}%{_datadir}/applications/%{uuid}.desktop - %if %{with freeworld} # Rename binary, desktop file, appdata manifest, manpage and config file mv %{buildroot}%{_bindir}/%{appname} \ diff --git a/sources b/sources index 2671772..19cfff3 100644 --- a/sources +++ b/sources @@ -1,5 +1,5 @@ -SHA512 (libretro-core-info-1.19.0.tar.gz) = 17cca258bb3460f2078fea0f2d64319a946aecf915475f61ca4b8eac3c882edfb96e38ae897285b4e1959ab06cf277e93130317ea13c469515948fd28fc942cd -SHA512 (libretro-database-1.19.0.tar.gz) = 1ca406d93670ef9bd8fb4fdd4a551c8cff4f6523aad3b5172af62b78cc4ae69ffddc911f7077aa93cdbd5860ed20e75d93a6271d48b6a1d24b63528cfbea753f -SHA512 (retroarch-1.19.0.tar.gz) = fe807570eedac5e5142e68a0c9d4e085be923e4914a3cfa9635ef644c02de2d8f9777ce7dfbdee0d8584fc4fa038f04adc1c9a55e3fe46903ba8ce05878b17a0 -SHA512 (retroarch-assets-1.19.0.tar.gz) = 4e02e4c5d9b546ad12bf10d54aae51b43f18879e603edc7f90f02907712fff78c8cfd23adaa8fbce6b054aea91254ad942fc4ade60daf925906ba85e9b6ec9fb -SHA512 (retroarch-joypad-autoconfig-1.19.0.tar.gz) = 2644fe7f40dcb94fb433ea23b7825193ddc1b81d9fe9841b0a3bcba9598aa72286ea07426657ec6de404efb64e2c42950d81f58861ffc9193a892e8bd4a59a6d +SHA512 (libretro-core-info-1.22.0.tar.gz) = a9c4b471b77b09fcaa1d46f4fae9d56a07e30ef15665f1b067d53a28b5e14c2b83120dee8ddaa1ec9ba31bab198fb748f76d5d4990888f9141e774e256ec6e2d +SHA512 (libretro-database-1.22.0.tar.gz) = 832f020182d4371e88ddb817c9214f7292265a82e51e53e9a1645217f1de801ad67c2b05cd19e17b70732f79e3ee3d33e82e7045e5bda6d3d81414a677b3fcb5 +SHA512 (retroarch-1.22.0.tar.gz) = 99a2c1bf4d74090c357431e78968012187ec47040b2b22c5f5d155d9e1713583d3160b2fcd4b872e177f706a87cbc660efb37766181862865f8f3a437e3b92f5 +SHA512 (retroarch-assets-1.22.0.tar.gz) = 930683106b777745a799ce6a45aac82e09164946a788f820aed27856d1a3fcf39f26045edc84706f047afe654bd3ba265d84dcaf143def194258606c4ff656be +SHA512 (retroarch-joypad-autoconfig-1.22.0.tar.gz) = 1b59694d3520a516f145d3e48d12b42267591cd59f44ca0d6b1a3532d6c195884e2d4345a69326bf6fe75bf53b4edb077cfe57a4701e3fe72f04e61f66a0d317