all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#67296] [PATCH 1/2] gnu: libmatroska: Update to 1.7.1.
@ 2023-11-20 14:51 Antoine Côté
  2023-11-20 14:51 ` [bug#67297] [PATCH 2/2] gnu: mkvtoolnix: Update to 80.0 Antoine Côté
  0 siblings, 1 reply; 3+ messages in thread
From: Antoine Côté @ 2023-11-20 14:51 UTC (permalink / raw)
  To: 67296; +Cc: Antoine Côté

* gnu/packages/video.scm (libmatroska): Update to 1.7.1.

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

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 561268aabd..41bcb8c385 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1429,14 +1429,14 @@ (define-public libdv
 (define-public libmatroska
   (package
     (name "libmatroska")
-    (version "1.6.3")
+    (version "1.7.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://dl.matroska.org/downloads/"
                            "libmatroska/libmatroska-" version ".tar.xz"))
        (sha256
-        (base32 "06h81sxyz2riic0gpzik6ffcnq32wrqphi8c6k55glcdymiimyfs"))))
+        (base32 "1cqq61qgv6x3xjzjrw71dya7lbsbrsmi9raqm2k4hgfrp0rk0ajp"))))
     (build-system cmake-build-system)
     (inputs
      (list libebml))

base-commit: 71b92466430acb8c91841522dc0eb7d766af4388
-- 
2.41.0





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

* [bug#67297] [PATCH 2/2] gnu: mkvtoolnix: Update to 80.0.
  2023-11-20 14:51 [bug#67296] [PATCH 1/2] gnu: libmatroska: Update to 1.7.1 Antoine Côté
@ 2023-11-20 14:51 ` Antoine Côté
  2023-11-20 17:55   ` [bug#67297] Sharlatan Hellseher
  0 siblings, 1 reply; 3+ messages in thread
From: Antoine Côté @ 2023-11-20 14:51 UTC (permalink / raw)
  To: 67297; +Cc: Antoine Côté

* gnu/packages/video.scm (mkvtoolnix): Update to 80.0.

Change-Id: If01ce578c9f9ac50e1c99e96c110687e8872177c
---
 gnu/packages/video.scm | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 41bcb8c385..e057e53b24 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -971,14 +971,14 @@ (define-public libx264
 (define-public mkvtoolnix
   (package
     (name "mkvtoolnix")
-    (version "52.0.0")
+    (version "80.0")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://mkvtoolnix.download/sources/"
                            "mkvtoolnix-" version ".tar.xz"))
        (sha256
-        (base32 "15y7ahlifsclnkl70wn5w34dil8nwcwcjnw3k2ydqc6dz4vb0j5s"))
+        (base32 "1x9k9pmw7mzm2amvm251a45dlj9p9iqfank5p4w2fizxkapws25v"))
        (modules '((guix build utils)))
        (snippet '(begin
                    ;; Delete bundled libraries.
@@ -994,6 +994,7 @@ (define-public mkvtoolnix
     (outputs '("out" "gui")) ; "mkvtoolnix-gui" brings the closure size from ~300 MB to 1.5+ GB.
     (inputs
      (list boost
+           gmp
            bzip2
            cmark
            libebml
@@ -1007,8 +1008,9 @@ (define-public mkvtoolnix
            lzo
            pcre2
            pugixml
-           qtbase-5
-           qtmultimedia-5
+           qtbase
+           qtmultimedia
+           qtsvg
            utfcpp
            zlib))
     (native-inputs
@@ -1020,8 +1022,8 @@ (define-public mkvtoolnix
        ("perl" ,perl)
        ("pkg-config" ,pkg-config)
        ("po4a" ,po4a)
-       ("qttools-5" ,qttools-5)
-       ("ruby" ,ruby-2.7)))
+       ("qttools" ,qttools)
+       ("ruby" ,ruby-3.2)))
     (arguments
      `(#:configure-flags
        (list (string-append "--with-boost="
-- 
2.41.0





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

* [bug#67297]
  2023-11-20 14:51 ` [bug#67297] [PATCH 2/2] gnu: mkvtoolnix: Update to 80.0 Antoine Côté
@ 2023-11-20 17:55   ` Sharlatan Hellseher
  0 siblings, 0 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2023-11-20 17:55 UTC (permalink / raw)
  To: 67297

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

Hi,

Thank you for the patch.

It looks reasonable for me, one missing part is to add commit annotation
about changes in inputs and native inputs.

Thanks,
Oleg

[-- Attachment #2: Type: text/html, Size: 343 bytes --]

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

end of thread, other threads:[~2023-11-20 17:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-20 14:51 [bug#67296] [PATCH 1/2] gnu: libmatroska: Update to 1.7.1 Antoine Côté
2023-11-20 14:51 ` [bug#67297] [PATCH 2/2] gnu: mkvtoolnix: Update to 80.0 Antoine Côté
2023-11-20 17:55   ` [bug#67297] Sharlatan Hellseher

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.