unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41439] [PATCH] gnu: mediainfo: Update to 20.03.
@ 2020-05-21 18:30 Michael Rohleder
  2020-05-21 20:31 ` Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Rohleder @ 2020-05-21 18:30 UTC (permalink / raw)
  To: 41439


[-- Attachment #1.1: [PATCH] gnu: mediainfo: Update to 20.03. --]
[-- Type: text/x-patch, Size: 2652 bytes --]

From c2a6e1cdd59defc8fa30bce401281ed0e8a505ee Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike@rohleder.de>
Date: Thu, 21 May 2020 20:27:20 +0200
Subject: [PATCH] gnu: mediainfo: Update to 20.03.

* gnu/packages/video.scm (mediainfo): Update to 20.03.
---
 gnu/packages/video.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index bb465c64c9..2adf2c3024 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -41,6 +41,7 @@
 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
 ;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2020 Alex McGrath <amk@amk.ie>
+;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3019,15 +3020,15 @@ practically any type of media.")
 (define-public libmediainfo
   (package
     (name "libmediainfo")
-    (version "0.7.95")
+    (version "20.03")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://mediaarea.net/download/source/"
-                                  name "/" version"/"
-                                  name "_" version ".tar.bz2"))
+                                  name "/" version "/"
+                                  name "_" version ".tar.xz"))
               (sha256
                (base32
-                "1kchh6285b07z5nixv619hc9gml2ysdayicdiv30frrlqiyxqw4b"))))
+                "0wkzj5s34m8dvy7hif4h8f90q8ncrzd930gij1zzw3h5nw732j38"))))
     ;; TODO add a Big Buck Bunny webm for tests.
     (native-inputs
      `(("autoconf" ,autoconf)
@@ -3077,7 +3078,7 @@ MPEG-2, MPEG-4, DVD (VOB)...
 (define-public mediainfo
   (package
     (name "mediainfo")
-    (version "18.12")
+    (version "20.03")
     (source (origin
               (method url-fetch)
               ;; Warning: This source has proved unreliable 1 time at least.
@@ -3085,10 +3086,10 @@ MPEG-2, MPEG-4, DVD (VOB)...
               ;; happens again.
               (uri (string-append "https://mediaarea.net/download/source/"
                                   name "/" version "/"
-                                  name "_" version ".tar.bz2"))
+                                  name "_" version ".tar.xz"))
               (sha256
                (base32
-                "1ix95ilcjlawcq6phh25cgplm3riqa2ii7ql82g8yagqs4ldqp6a"))))
+                "1f1shnycf0f1fwka9k9s250l228xjkg0k4k73h8bpld8msighgnw"))))
     (native-inputs
      `(("autoconf" ,autoconf)
        ("automake" ,automake)
-- 
2.26.2


[-- Attachment #1.2: Type: text/plain, Size: 66 bytes --]


-- 
Why doesn't DOS ever say "EXCELLENT command or filename!"

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#41439] [PATCH] gnu: mediainfo: Update to 20.03.
  2020-05-21 18:30 [bug#41439] [PATCH] gnu: mediainfo: Update to 20.03 Michael Rohleder
@ 2020-05-21 20:31 ` Tobias Geerinckx-Rice via Guix-patches via
  2020-05-21 21:51   ` Michael Rohleder
  0 siblings, 1 reply; 4+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2020-05-21 20:31 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 41439

[-- Attachment #1: Type: text/plain, Size: 674 bytes --]

Michael,

Michael Rohleder 写道:
> Subject: [PATCH] gnu: mediainfo: Update to 20.03.

Thanks!

> * gnu/packages/video.scm (mediainfo): Update to 20.03.

When operating on multiple packages, you need to (list, both).

Are they required to be updated in lockstep?  Is there really no 
order in which we could update these as two separate commits?

If not, please add a comment noting that they need to be updated 
in tandem.  Or better yet: if you're reasonably sure that upstream 
is committed to their new versioning scheme, you can use

  (version (package-version libmediainfo))

in mediainfo to make that crystal clear.

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#41439] [PATCH] gnu: mediainfo: Update to 20.03.
  2020-05-21 20:31 ` Tobias Geerinckx-Rice via Guix-patches via
@ 2020-05-21 21:51   ` Michael Rohleder
  2020-05-23 14:23     ` bug#41439: " Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Rohleder @ 2020-05-21 21:51 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 41439


[-- Attachment #1.1: Type: text/plain, Size: 420 bytes --]

Tobias,

thank you for the review!

Tobias Geerinckx-Rice <me@tobias.gr> writes:
>> * gnu/packages/video.scm (mediainfo): Update to 20.03.
>
> When operating on multiple packages, you need to (list, both).
>
> Are they required to be updated in lockstep?  Is there really no order
> in which we could update these as two separate commits?

mediainfo@18.12 does indeed run with libmediainfo@20.03, so here are 2
patches


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: [PATCH] gnu: libmediainfo: Update to 20.03. --]
[-- Type: text/x-patch, Size: 1401 bytes --]

From 600052b628ccb82e5722e439659c7266c46168b8 Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike@rohleder.de>
Date: Thu, 21 May 2020 23:32:19 +0200
Subject: [PATCH] gnu: libmediainfo: Update to 20.03.

* gnu/packages/video.scm (libmediainfo): Update to 20.03.
---
 gnu/packages/video.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index bb465c64c9..30b4d3cd9e 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3019,15 +3019,15 @@ practically any type of media.")
 (define-public libmediainfo
   (package
     (name "libmediainfo")
-    (version "0.7.95")
+    (version "20.03")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://mediaarea.net/download/source/"
-                                  name "/" version"/"
-                                  name "_" version ".tar.bz2"))
+                                  name "/" version "/"
+                                  name "_" version ".tar.xz"))
               (sha256
                (base32
-                "1kchh6285b07z5nixv619hc9gml2ysdayicdiv30frrlqiyxqw4b"))))
+                "0wkzj5s34m8dvy7hif4h8f90q8ncrzd930gij1zzw3h5nw732j38"))))
     ;; TODO add a Big Buck Bunny webm for tests.
     (native-inputs
      `(("autoconf" ,autoconf)
-- 
2.26.2


[-- Attachment #1.3: [PATCH] gnu: mediainfo: Update to 20.03. --]
[-- Type: text/x-patch, Size: 1780 bytes --]

From fb12c84e2b19b5cad6044a7a336253ffbdb1cc56 Mon Sep 17 00:00:00 2001
From: Michael Rohleder <mike@rohleder.de>
Date: Thu, 21 May 2020 23:37:13 +0200
Subject: [PATCH] gnu: mediainfo: Update to 20.03.

* gnu/packages/video.scm (mediainfo): Update to 20.03.
---
 gnu/packages/video.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 30b4d3cd9e..2adf2c3024 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -41,6 +41,7 @@
 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
 ;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2020 Alex McGrath <amk@amk.ie>
+;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3077,7 +3078,7 @@ MPEG-2, MPEG-4, DVD (VOB)...
 (define-public mediainfo
   (package
     (name "mediainfo")
-    (version "18.12")
+    (version "20.03")
     (source (origin
               (method url-fetch)
               ;; Warning: This source has proved unreliable 1 time at least.
@@ -3085,10 +3086,10 @@ MPEG-2, MPEG-4, DVD (VOB)...
               ;; happens again.
               (uri (string-append "https://mediaarea.net/download/source/"
                                   name "/" version "/"
-                                  name "_" version ".tar.bz2"))
+                                  name "_" version ".tar.xz"))
               (sha256
                (base32
-                "1ix95ilcjlawcq6phh25cgplm3riqa2ii7ql82g8yagqs4ldqp6a"))))
+                "1f1shnycf0f1fwka9k9s250l228xjkg0k4k73h8bpld8msighgnw"))))
     (native-inputs
      `(("autoconf" ,autoconf)
        ("automake" ,automake)
-- 
2.26.2


[-- Attachment #1.4: Type: text/plain, Size: 14 bytes --]


Kind Regards

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#41439: [PATCH] gnu: mediainfo: Update to 20.03.
  2020-05-21 21:51   ` Michael Rohleder
@ 2020-05-23 14:23     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2020-05-23 14:23 UTC (permalink / raw)
  To: Michael Rohleder; +Cc: 41439-done, Tobias Geerinckx-Rice

Hi,

Michael Rohleder <mike@rohleder.de> skribis:

> From 600052b628ccb82e5722e439659c7266c46168b8 Mon Sep 17 00:00:00 2001
> From: Michael Rohleder <mike@rohleder.de>
> Date: Thu, 21 May 2020 23:32:19 +0200
> Subject: [PATCH] gnu: libmediainfo: Update to 20.03.
>
> * gnu/packages/video.scm (libmediainfo): Update to 20.03.

[...]

> From fb12c84e2b19b5cad6044a7a336253ffbdb1cc56 Mon Sep 17 00:00:00 2001
> From: Michael Rohleder <mike@rohleder.de>
> Date: Thu, 21 May 2020 23:37:13 +0200
> Subject: [PATCH] gnu: mediainfo: Update to 20.03.
>
> * gnu/packages/video.scm (mediainfo): Update to 20.03.

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-05-23 14:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-21 18:30 [bug#41439] [PATCH] gnu: mediainfo: Update to 20.03 Michael Rohleder
2020-05-21 20:31 ` Tobias Geerinckx-Rice via Guix-patches via
2020-05-21 21:51   ` Michael Rohleder
2020-05-23 14:23     ` bug#41439: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).