public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/ffmpeg] epel9-next: Properly enable caca, flite, gme, iec61883
@ 2026-07-14 21:59 Yaakov Selkowitz
0 siblings, 0 replies; only message in thread
From: Yaakov Selkowitz @ 2026-07-14 21:59 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/ffmpeg
Branch : epel9-next
Commit : 5ca5b0d9445c27aac6e531f7dc7dfd8b8380d3bd
Author : Yaakov Selkowitz <yselkowi@redhat.com>
Date : 2023-02-03T12:29:57-05:00
Stats : +15/-2 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/ffmpeg/c/5ca5b0d9445c27aac6e531f7dc7dfd8b8380d3bd?branch=epel9-next
Log:
Properly enable caca, flite, gme, iec61883
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 0e281d7..ebc0b67 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -91,7 +91,7 @@ Name: ffmpeg
%global pkg_name %{name}%{?pkg_suffix}
Version: 5.1.2
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: A complete solution to record, convert and stream audio and video
License: GPLv3+
URL: https://ffmpeg.org/
@@ -577,6 +577,7 @@ cp -a doc/examples/{*.c,Makefile,README} _doc/examples/
--enable-libass \
--enable-libbluray \
--enable-libbs2b \
+ --enable-libcaca \
--enable-libcdio \
--enable-libcodec2 \
--enable-libdav1d \
@@ -585,10 +586,15 @@ cp -a doc/examples/{*.c,Makefile,README} _doc/examples/
%endif
--enable-libdrm \
--enable-libfdk-aac \
+ --enable-libflite \
--enable-libfontconfig \
--enable-libfreetype \
--enable-libfribidi \
+ --enable-libgme \
--enable-libgsm \
+%if %{with dc1394}
+ --enable-libiec61883 \
+%endif
--enable-libilbc \
--enable-libjack \
--enable-libjxl \
@@ -827,6 +833,9 @@ rm -rf %{buildroot}%{_datadir}/%{name}/examples
%{_mandir}/man3/libswscale.3*
%changelog
+* Fri Feb 03 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 5.1.2-7
+- Properly enable caca, flite, gme, iec61883
+
* Mon Jan 30 2023 Neal Gompa <ngompa@fedoraproject.org> - 5.1.2-6
- Enable more approved codecs
diff --git a/ffmpeg_free_sources b/ffmpeg_free_sources
index 07f24d9..6099d26 100644
--- a/ffmpeg_free_sources
+++ b/ffmpeg_free_sources
@@ -1989,6 +1989,7 @@ libavdevice/alsa_dec.c
libavdevice/alsa_enc.c
libavdevice/avdevice.c
libavdevice/avdevice.h
+libavdevice/caca.c
libavdevice/decklink_common.h
libavdevice/decklink_common_c.h
libavdevice/decklink_dec.h
@@ -1998,6 +1999,7 @@ libavdevice/fbdev_common.c
libavdevice/fbdev_common.h
libavdevice/fbdev_dec.c
libavdevice/fbdev_enc.c
+libavdevice/iec61883.c
libavdevice/internal.h
libavdevice/jack.c
libavdevice/kmsgrab.c
@@ -2135,6 +2137,7 @@ libavfilter/asink_anullsink.c
libavfilter/asrc_afirsrc.c
libavfilter/asrc_anoisesrc.c
libavfilter/asrc_anullsrc.c
+libavfilter/asrc_flite.c
libavfilter/asrc_hilbert.c
libavfilter/asrc_sinc.c
libavfilter/asrc_sine.c
@@ -2951,6 +2954,7 @@ libavformat/jvdec.c
libavformat/kvag.c
libavformat/latmenc.c
libavformat/libavformat.v
+libavformat/libgme.c
libavformat/libmodplug.c
libavformat/libopenmpt.c
libavformat/libsmbclient.c
diff --git a/sources b/sources
index 2f4763a..d90e459 100644
--- a/sources
+++ b/sources
@@ -1,4 +1,4 @@
-SHA512 (ffmpeg-free-5.1.2.tar.xz) = 91c4d86801cbd5dc69cb12b795bf36ff9a5e3d5d78a65e3d3efb65f24491587ec0605d4c54e326ef389945fc904da9073ad8406ef6937408b8d0f816792df678
+SHA512 (ffmpeg-free-5.1.2.tar.xz) = ae6b4bc90268ac1a4e0ce3839641ce3fa4d3e355afd734a2c4aad257118241eea8671db917b9533ca3d783b8191fda76c96c278aba7c8c434969fa2f35e92da3
SHA512 (ffmpeg-5.1.2.tar.xz.asc) = 6afc898e3898a7d34e21f0f0bd0553765a46257332c6ece6226e3e043b842275a8d885b9ccca34bc90a2f008ae5fa14515276d23f921a518a63a47f6504af115
SHA512 (ffmpeg-dlopen-headers.tar.xz) = 97e6986fc2bb9dfa4516135a76b04d27ceb52ff96f0af21a6169919aeefefb4d2e2e24a771959689cdbec385f5d71614ba661223c67c0e94089a6dd823a30099
SHA512 (ffmpeg.keyring) = 9b36506835db36f776b7ddb53ad6fa9e915e6ca2f9c7cfebe8eb45513e1036a985283590a840ca313a111bf35dc3731f68885aaafb1fb7011ec433cc119e5165
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-14 21:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-14 21:59 [rpms/ffmpeg] epel9-next: Properly enable caca, flite, gme, iec61883 Yaakov Selkowitz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox