GNU bug report logs - #72876
[PATCH] gnu: Add ffmpeg-7.

Previous Next

Package: guix-patches;

Reported by: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>

Date: Thu, 29 Aug 2024 15:28:01 UTC

Severity: normal

Tags: patch

Done: Z572 <zhengjunjie <at> iscas.ac.cn>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
Subject: bug#72876: closed (Re: [bug#72876] [PATCH] gnu: Add ffmpeg-7.)
Date: Sat, 07 Sep 2024 16:11:03 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#72876: [PATCH] gnu: Add ffmpeg-7.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 72876 <at> debbugs.gnu.org.

-- 
72876: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=72876
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Z572 <zhengjunjie <at> iscas.ac.cn>
To: 72876-done <at> debbugs.gnu.org
Subject: Re: [bug#72876] [PATCH] gnu: Add ffmpeg-7.
Date: Sun, 08 Sep 2024 00:10:13 +0800
[Message part 3 (text/plain, inline)]
Zheng Junjie <zhengjunjie <at> iscas.ac.cn> writes:

> * gnu/packages/video.scm (ffmpeg-7): New variable.
> (ffmpeg): Inherit above.
>
> Change-Id: I39fdec3e380c8cf7feed74d5caa960fb33f0ffae
> ---
>  gnu/packages/video.scm | 20 ++++++++++++++++----
>  1 file changed, 16 insertions(+), 4 deletions(-)
>
> diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
> index 84be73a433..b7f0854880 100644
> --- a/gnu/packages/video.scm
> +++ b/gnu/packages/video.scm
> @@ -67,7 +67,7 @@
>  ;;; Copyright © 2023 Dominik Delgado Steuter <dds <at> disroot.org>
>  ;;; Copyright © 2023 Saku Laesvuori <saku <at> laesvuori.fi>
>  ;;; Copyright © 2023 Jaeme Sifat <jaeme <at> runbox.com>
> -;;; Copyright © 2023 Zheng Junjie <873216071 <at> qq.com>
> +;;; Copyright © 2023, 2024 Zheng Junjie <873216071 <at> qq.com>
>  ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
> @@ -1667,17 +1667,17 @@ (define-public libva-utils
>  operate properly.")
>      (license license:expat)))
>  
> -(define-public ffmpeg
> +(define-public ffmpeg-7
>    (package
>      (name "ffmpeg")
> -    (version "6.1.1")
> +    (version "7.0.2")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
>                                    version ".tar.xz"))
>                (sha256
>                 (base32
> -                "0s7r2qv8gh2a3w568n9xxgcz0q8j5ww1jdsci1hm9f4l1yqg9146"))))
> +                "12dkv17mrsdqrm70c30azjw7qi1lfxca7xisw81x6flacddm2il6"))))
>      (outputs '("out" "debug"))
>      (build-system gnu-build-system)
>      (inputs
> @@ -1869,6 +1869,18 @@ (define-public ffmpeg
>  audio/video codec library.")
>      (license license:gpl2+)))
>  
> +(define-public ffmpeg
> +  (package
> +    (inherit ffmpeg-7)
> +    (version "6.1.1")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
> +                                  version ".tar.xz"))
> +              (sha256
> +               (base32
> +                "0s7r2qv8gh2a3w568n9xxgcz0q8j5ww1jdsci1hm9f4l1yqg9146"))))))
> +
>  (define-public ffmpeg-5
>    (package
>      (inherit ffmpeg)
>
> base-commit: d5312370b46ace47e138d84e1bb28e5651cee94b

push, close.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
From: Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add ffmpeg-7.
Date: Thu, 29 Aug 2024 23:25:41 +0800
* gnu/packages/video.scm (ffmpeg-7): New variable.
(ffmpeg): Inherit above.

Change-Id: I39fdec3e380c8cf7feed74d5caa960fb33f0ffae
---
 gnu/packages/video.scm | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 84be73a433..b7f0854880 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -67,7 +67,7 @@
 ;;; Copyright © 2023 Dominik Delgado Steuter <dds <at> disroot.org>
 ;;; Copyright © 2023 Saku Laesvuori <saku <at> laesvuori.fi>
 ;;; Copyright © 2023 Jaeme Sifat <jaeme <at> runbox.com>
-;;; Copyright © 2023 Zheng Junjie <873216071 <at> qq.com>
+;;; Copyright © 2023, 2024 Zheng Junjie <873216071 <at> qq.com>
 ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -1667,17 +1667,17 @@ (define-public libva-utils
 operate properly.")
     (license license:expat)))
 
-(define-public ffmpeg
+(define-public ffmpeg-7
   (package
     (name "ffmpeg")
-    (version "6.1.1")
+    (version "7.0.2")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
                                   version ".tar.xz"))
               (sha256
                (base32
-                "0s7r2qv8gh2a3w568n9xxgcz0q8j5ww1jdsci1hm9f4l1yqg9146"))))
+                "12dkv17mrsdqrm70c30azjw7qi1lfxca7xisw81x6flacddm2il6"))))
     (outputs '("out" "debug"))
     (build-system gnu-build-system)
     (inputs
@@ -1869,6 +1869,18 @@ (define-public ffmpeg
 audio/video codec library.")
     (license license:gpl2+)))
 
+(define-public ffmpeg
+  (package
+    (inherit ffmpeg-7)
+    (version "6.1.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
+                                  version ".tar.xz"))
+              (sha256
+               (base32
+                "0s7r2qv8gh2a3w568n9xxgcz0q8j5ww1jdsci1hm9f4l1yqg9146"))))))
+
 (define-public ffmpeg-5
   (package
     (inherit ffmpeg)

base-commit: d5312370b46ace47e138d84e1bb28e5651cee94b
-- 
2.45.2




This bug report was last modified 258 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.