guix_mirror_bot pushed a commit to branch world-rebuild in repository guix.
commit ca2470fc0a9f11f17ace25ec43260f5787f94fbc Author: Nguyễn Gia Phong <[email protected]> AuthorDate: Thu Jul 23 11:51:09 2026 +0900 gnu: ffmpeg-6: Ungraft. * gnu/packages/video.scm (ffmpeg-6)[replacement]: Remove. (ffmpeg-6.1.6): Delete variable. Merges: https://codeberg.org/guix/guix/pulls/10122 References: ff0ac71c7eb9 ("gnu: ffmpeg-6: Graft to 6.1.6.") --- gnu/packages/video.scm | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index b80d0c1b1e..278cb1dbdb 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2003,15 +2003,14 @@ audio/video codec library.") (define-public ffmpeg-6 (package (inherit ffmpeg) - (version "6.1.5") - (replacement ffmpeg-6.1.6) + (version "6.1.6") (source (origin (method url-fetch) (uri (string-append "https://ffmpeg.org/releases/ffmpeg-" version ".tar.xz")) (sha256 - (base32 "04ll214qrdbjy7j945l9ca0v0jwxva8vzndibdha6ljl3zdykyq5")) + (base32 "02ip0zsghyz09p0jv8ayqxrnkb3awirarh4jbppbxlwd09jb3z6l")) (patches (search-patches "ffmpeg-add-av_stream_get_first_dts-for-chromium.patch")))) (arguments @@ -2027,20 +2026,6 @@ audio/video codec library.") " -Wno-error=int-conversion"))))))) (package-arguments ffmpeg))))) -(define-public ffmpeg-6.1.6 - (package - (inherit ffmpeg-6) - (version "6.1.6") - (source - (origin - (method url-fetch) - (uri (string-append "https://ffmpeg.org/releases/ffmpeg-" version - ".tar.xz")) - (sha256 - (base32 "02ip0zsghyz09p0jv8ayqxrnkb3awirarh4jbppbxlwd09jb3z6l")) - (patches (search-patches - "ffmpeg-add-av_stream_get_first_dts-for-chromium.patch")))))) - (define-public ffmpeg-5 (package (inherit ffmpeg-6)
