GNU bug report logs - #51898
[PATCH 0/3] Update mlt, kdenlive, shotcut.

Previous Next

Package: guix-patches;

Reported by: Vinicius Monego <monego <at> posteo.net>

Date: Tue, 16 Nov 2021 19:11:02 UTC

Severity: normal

Tags: patch

Done: Mathieu Othacehe <othacehe <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 51898 in the body.
You can then email your comments to 51898 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#51898; Package guix-patches. (Tue, 16 Nov 2021 19:11:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Vinicius Monego <monego <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 16 Nov 2021 19:11:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Vinicius Monego <monego <at> posteo.net>
To: guix-patches <at> gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 0/3] Update mlt, kdenlive, shotcut.
Date: Tue, 16 Nov 2021 19:09:52 +0000
Vinicius Monego (3):
  gnu: mlt: Update to 7.2.0.
  gnu: kdenlive: Update to 21.08.3.
  gnu: shotcut: Update to 21.10.31.

 gnu/packages/kde.scm   | 7 ++++---
 gnu/packages/video.scm | 8 ++++----
 2 files changed, 8 insertions(+), 7 deletions(-)


base-commit: 193d7b5b450d2004c26720e488a9cce930542e9e
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#51898; Package guix-patches. (Tue, 16 Nov 2021 19:13:02 GMT) Full text and rfc822 format available.

Message #8 received at 51898 <at> debbugs.gnu.org (full text, mbox):

From: Vinicius Monego <monego <at> posteo.net>
To: 51898 <at> debbugs.gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 1/3] gnu: mlt: Update to 7.2.0.
Date: Tue, 16 Nov 2021 19:12:02 +0000
* gnu/packages/video.scm (mlt): Update to 7.2.0.
---
 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 3bfdde7184..09c2dbe8ad 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3123,7 +3123,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
 (define-public mlt
   (package
     (name "mlt")
-    (version "7.0.1")
+    (version "7.2.0")
     (source
      (origin
        (method git-fetch)
@@ -3132,7 +3132,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "13c5miph9jjbz69dhy0zvbkk5zbb05dr3vraaci0d5fdbrlhyscf"))))
+        (base32 "17d4gs46ca3n0qg6z69hl6mmllnqj2id8ccrv8fyz8c5zm55ghqm"))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f ;requires "Kwalify"
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#51898; Package guix-patches. (Tue, 16 Nov 2021 19:13:03 GMT) Full text and rfc822 format available.

Message #11 received at 51898 <at> debbugs.gnu.org (full text, mbox):

From: Vinicius Monego <monego <at> posteo.net>
To: 51898 <at> debbugs.gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 2/3] gnu: kdenlive: Update to 21.08.3.
Date: Tue, 16 Nov 2021 19:12:03 +0000
* gnu/packages/kde.scm (kdenlive): Update to 21.08.3.
[arguments]: Pass "-DBUILD_TESTING=off" to #:configure-flags as tests are
currently disabled.
---
 gnu/packages/kde.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm
index c6f5227e8b..bf0cfd44e0 100644
--- a/gnu/packages/kde.scm
+++ b/gnu/packages/kde.scm
@@ -219,7 +219,7 @@ browser for easy news reading.")
     (license license:gpl2+)))
 
 (define-public kdenlive
-  (let ((version "21.08.2"))
+  (let ((version "21.08.3"))
     (package
       (name "kdenlive")
       (version version)
@@ -231,7 +231,7 @@ browser for easy news reading.")
                (commit (string-append "v" version))))
          (file-name (string-append name "-" version "-checkout"))
          (sha256
-          (base32 "1l78xjdf1bmj3s8kysaqqgh67mb3vrc96rsdnp0i4awlyfsh89d7"))))
+          (base32 "0lpspak5djkbn2xbmmbxls258310g45n3a08sghkjl08bx6ilvc9"))))
       (build-system qt-build-system)
       (native-inputs
        `(("extra-cmake-modules" ,extra-cmake-modules)
@@ -272,7 +272,8 @@ browser for easy news reading.")
        ;; XXX: there is a single test that spawns other tests and
        ;; 1/3 tests failed and 1/327 assertions failed.  It seems
        ;; that individual tests can't be skipped.
-       `(#:tests? #f
+       `(#:configure-flags (list "-DBUILD_TESTING=off")
+         #:tests? #f
          #:phases
          (modify-phases %standard-phases
            (add-after 'install 'wrap-executable
-- 
2.30.2





Information forwarded to guix-patches <at> gnu.org:
bug#51898; Package guix-patches. (Tue, 16 Nov 2021 19:13:03 GMT) Full text and rfc822 format available.

Message #14 received at 51898 <at> debbugs.gnu.org (full text, mbox):

From: Vinicius Monego <monego <at> posteo.net>
To: 51898 <at> debbugs.gnu.org
Cc: Vinicius Monego <monego <at> posteo.net>
Subject: [PATCH 3/3] gnu: shotcut: Update to 21.10.31.
Date: Tue, 16 Nov 2021 19:12:04 +0000
* gnu/packages/video.scm (shotcut): Update to 21.10.31.
---
 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 09c2dbe8ad..7145af58f1 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4784,7 +4784,7 @@ transitions, and effects and then export your film to many common formats.")
 (define-public shotcut
   (package
     (name "shotcut")
-    (version "21.09.20")
+    (version "21.10.31")
     (source
      (origin
        (method git-fetch)
@@ -4793,7 +4793,7 @@ transitions, and effects and then export your film to many common formats.")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1y46n5gmlayfl46l0vhg5g5dbbc0sg909mxb68sia0clkaas8xrh"))))
+        (base32 "0jgv6wl65gf6c4nmfica8k9vbgn3w3594d1phx1mb7zjvyy9y97k"))))
     (build-system qt-build-system)
     (arguments
      `(#:tests? #f ;there are no tests
-- 
2.30.2





Reply sent to Mathieu Othacehe <othacehe <at> gnu.org>:
You have taken responsibility. (Thu, 02 Dec 2021 14:36:01 GMT) Full text and rfc822 format available.

Notification sent to Vinicius Monego <monego <at> posteo.net>:
bug acknowledged by developer. (Thu, 02 Dec 2021 14:36:01 GMT) Full text and rfc822 format available.

Message #19 received at 51898-done <at> debbugs.gnu.org (full text, mbox):

From: Mathieu Othacehe <othacehe <at> gnu.org>
To: Vinicius Monego <monego <at> posteo.net>
Cc: 51898-done <at> debbugs.gnu.org
Subject: Re: bug#51898: [PATCH 0/3] Update mlt, kdenlive, shotcut.
Date: Thu, 02 Dec 2021 15:35:35 +0100
> Vinicius Monego (3):
>   gnu: mlt: Update to 7.2.0.
>   gnu: kdenlive: Update to 21.08.3.
>   gnu: shotcut: Update to 21.10.31.

Pushed, thanks!

Mathieu




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 31 Dec 2021 12:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 78 days ago.

Previous Next


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