public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Neal Gompa <ngompa@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/ffmpeg] epel9-next: Add missing files for some of the libraries to fix riscv64 builds
Date: Mon, 20 Jul 2026 17:31:15 GMT	[thread overview]
Message-ID: <178456867555.1.12018660997443041139.rpms-ffmpeg-bea10e455bc9@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/ffmpeg
Branch : epel9-next
Commit : bea10e455bc90d8822e1a502978e79095e62c842
Author : Neal Gompa <ngompa@fedoraproject.org>
Date   : 2024-01-15T10:55:52-05:00
Stats  : +15/-2 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/ffmpeg/c/bea10e455bc90d8822e1a502978e79095e62c842?branch=epel9-next

Log:
Add missing files for some of the libraries to fix riscv64 builds

---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 396fab5..4e8cb6e 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -92,7 +92,7 @@ Name:           ffmpeg
 %global pkg_name %{name}%{?pkg_suffix}
 
 Version:        6.1.1
-Release:        3%{?dist}
+Release:        4%{?dist}
 Summary:        A complete solution to record, convert and stream audio and video
 License:        GPL-3.0-or-later
 URL:            https://ffmpeg.org/
@@ -861,6 +861,9 @@ rm -rf %{buildroot}%{_datadir}/%{name}/examples
 %{_mandir}/man3/libswscale.3*
 
 %changelog
+* Mon Jan 15 2024 Neal Gompa <ngompa@fedoraproject.org> - 6.1.1-4
+- Add missing files for some of the libraries to fix riscv64 builds
+
 * Fri Jan 12 2024 Fabio Valentini <decathorpe@gmail.com> - 6.1.1-3
 - Rebuild for dav1d 1.3.0
 

diff --git a/ffmpeg_free_sources b/ffmpeg_free_sources
index 9830b45..c3be5a0 100644
--- a/ffmpeg_free_sources
+++ b/ffmpeg_free_sources
@@ -3479,11 +3479,13 @@ libavutil/arm/cpu.c
 libavutil/arm/cpu.h
 libavutil/arm/float_dsp_arm.h
 libavutil/arm/float_dsp_init_arm.c
+libavutil/arm/float_dsp_init_neon.c
 libavutil/arm/float_dsp_init_vfp.c
 libavutil/arm/float_dsp_neon.S
 libavutil/arm/float_dsp_vfp.S
 libavutil/arm/intmath.h
 libavutil/arm/intreadwrite.h
+libavutil/arm/neontest.h
 libavutil/arm/timer.h
 libavutil/attributes.h
 libavutil/attributes_internal.h
@@ -3670,6 +3672,7 @@ libavutil/ripemd.h
 libavutil/riscv/Makefile
 libavutil/riscv/asm.S
 libavutil/riscv/bswap.h
+libavutil/riscv/bswap_rvb.S
 libavutil/riscv/cpu.c
 libavutil/riscv/cpu.h
 libavutil/riscv/fixed_dsp_init.c
@@ -3755,6 +3758,7 @@ libavutil/x86/pixelutils_init.c
 libavutil/x86/timer.h
 libavutil/x86/tx_float.asm
 libavutil/x86/tx_float_init.c
+libavutil/x86/w64xmmtest.h
 libavutil/x86/x86inc.asm
 libavutil/x86/x86util.asm
 libavutil/xga_font_data.c
@@ -3775,11 +3779,13 @@ libswresample/Makefile
 libswresample/aarch64/Makefile
 libswresample/aarch64/audio_convert_init.c
 libswresample/aarch64/audio_convert_neon.S
+libswresample/aarch64/neontest.c
 libswresample/aarch64/resample.S
 libswresample/aarch64/resample_init.c
 libswresample/arm/Makefile
 libswresample/arm/audio_convert_init.c
 libswresample/arm/audio_convert_neon.S
+libswresample/arm/neontest.c
 libswresample/arm/resample.S
 libswresample/arm/resample_init.c
 libswresample/audioconvert.c
@@ -3811,6 +3817,7 @@ libswresample/x86/rematrix.asm
 libswresample/x86/rematrix_init.c
 libswresample/x86/resample.asm
 libswresample/x86/resample_init.c
+libswresample/x86/w64xmmtest.c
 libswscale/Makefile
 libswscale/aarch64/Makefile
 libswscale/aarch64/hscale.S
@@ -3826,6 +3833,7 @@ libswscale/arm/hscale.S
 libswscale/arm/output.S
 libswscale/arm/rgb2yuv_neon_16.S
 libswscale/arm/rgb2yuv_neon_32.S
+libswscale/arm/rgb2yuv_neon_common.S
 libswscale/arm/swscale.c
 libswscale/arm/swscale_unscaled.c
 libswscale/arm/yuv2rgb_neon.S
@@ -3851,6 +3859,7 @@ libswscale/rgb2rgb.h
 libswscale/rgb2rgb_template.c
 libswscale/riscv/Makefile
 libswscale/riscv/rgb2rgb.c
+libswscale/riscv/rgb2rgb_rvb.S
 libswscale/riscv/rgb2rgb_rvv.S
 libswscale/slice.c
 libswscale/swscale.c
@@ -3873,6 +3882,7 @@ libswscale/x86/scale.asm
 libswscale/x86/scale_avx2.asm
 libswscale/x86/swscale.c
 libswscale/x86/swscale_template.c
+libswscale/x86/w64xmmtest.c
 libswscale/x86/yuv2rgb.c
 libswscale/x86/yuv2rgb_template.c
 libswscale/x86/yuv2yuvX.asm

diff --git a/sources b/sources
index 932881f..f142d78 100644
--- a/sources
+++ b/sources
@@ -1,4 +1,4 @@
-SHA512 (ffmpeg-free-6.1.1.tar.xz) = 4fdecf8316bc038839a1d05116630f47e4d75d3b25fa6b3480f9e654d5677c7996c6a2a83f93f4520e175a79843da05a987aeda24c9a6e7495079a808309569b
+SHA512 (ffmpeg-free-6.1.1.tar.xz) = f7ca7901b7affa45fd6016b7ac2d7f843f89ad7f813c6f37228d184842aa55167429585e172d3da61ca1ef64818d563199faa7d06295eea1fd829696d28fa044
 SHA512 (ffmpeg-6.1.1.tar.xz.asc) = 0e10c1f560bab0812d759d286656593dea5940f02bb52d88d9ba7f10b12b9cc3d7aa2a41c5f7a45b319069e04dce22dc1286b3c1ba685b35cd6d04cd81c5a0f5
 SHA512 (ffmpeg-dlopen-headers.tar.xz) = 97e6986fc2bb9dfa4516135a76b04d27ceb52ff96f0af21a6169919aeefefb4d2e2e24a771959689cdbec385f5d71614ba661223c67c0e94089a6dd823a30099
 SHA512 (ffmpeg.keyring) = 9b36506835db36f776b7ddb53ad6fa9e915e6ca2f9c7cfebe8eb45513e1036a985283590a840ca313a111bf35dc3731f68885aaafb1fb7011ec433cc119e5165

                 reply	other threads:[~2026-07-20 17:31 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178456867555.1.12018660997443041139.rpms-ffmpeg-bea10e455bc9@fedoraproject.org \
    --to=ngompa@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox