GNU bug report logs -
#72876
[PATCH] gnu: Add ffmpeg-7.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 72876 in the body.
You can then email your comments to 72876 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#72876
; Package
guix-patches
.
(Thu, 29 Aug 2024 15:28:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 29 Aug 2024 15:28:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* 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
Reply sent
to
Z572 <zhengjunjie <at> iscas.ac.cn>
:
You have taken responsibility.
(Sat, 07 Sep 2024 16:11:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Zheng Junjie <zhengjunjie <at> iscas.ac.cn>
:
bug acknowledged by developer.
(Sat, 07 Sep 2024 16:11:03 GMT)
Full text and
rfc822 format available.
Message #10 received at 72876-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (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)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 06 Oct 2024 11:24:11 GMT)
Full text and
rfc822 format available.
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.