* [bug#51898] [PATCH 0/3] Update mlt, kdenlive, shotcut.
@ 2021-11-16 19:09 Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 1/3] gnu: mlt: Update to 7.2.0 Vinicius Monego
2021-12-02 14:35 ` bug#51898: [PATCH 0/3] Update mlt, kdenlive, shotcut Mathieu Othacehe
0 siblings, 2 replies; 5+ messages in thread
From: Vinicius Monego @ 2021-11-16 19:09 UTC (permalink / raw)
To: 51898; +Cc: Vinicius Monego
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#51898] [PATCH 1/3] gnu: mlt: Update to 7.2.0.
2021-11-16 19:09 [bug#51898] [PATCH 0/3] Update mlt, kdenlive, shotcut Vinicius Monego
@ 2021-11-16 19:12 ` Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 2/3] gnu: kdenlive: Update to 21.08.3 Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 3/3] gnu: shotcut: Update to 21.10.31 Vinicius Monego
2021-12-02 14:35 ` bug#51898: [PATCH 0/3] Update mlt, kdenlive, shotcut Mathieu Othacehe
1 sibling, 2 replies; 5+ messages in thread
From: Vinicius Monego @ 2021-11-16 19:12 UTC (permalink / raw)
To: 51898; +Cc: Vinicius Monego
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#51898] [PATCH 2/3] gnu: kdenlive: Update to 21.08.3.
2021-11-16 19:12 ` [bug#51898] [PATCH 1/3] gnu: mlt: Update to 7.2.0 Vinicius Monego
@ 2021-11-16 19:12 ` Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 3/3] gnu: shotcut: Update to 21.10.31 Vinicius Monego
1 sibling, 0 replies; 5+ messages in thread
From: Vinicius Monego @ 2021-11-16 19:12 UTC (permalink / raw)
To: 51898; +Cc: Vinicius Monego
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#51898] [PATCH 3/3] gnu: shotcut: Update to 21.10.31.
2021-11-16 19:12 ` [bug#51898] [PATCH 1/3] gnu: mlt: Update to 7.2.0 Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 2/3] gnu: kdenlive: Update to 21.08.3 Vinicius Monego
@ 2021-11-16 19:12 ` Vinicius Monego
1 sibling, 0 replies; 5+ messages in thread
From: Vinicius Monego @ 2021-11-16 19:12 UTC (permalink / raw)
To: 51898; +Cc: Vinicius Monego
* 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
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#51898: [PATCH 0/3] Update mlt, kdenlive, shotcut.
2021-11-16 19:09 [bug#51898] [PATCH 0/3] Update mlt, kdenlive, shotcut Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 1/3] gnu: mlt: Update to 7.2.0 Vinicius Monego
@ 2021-12-02 14:35 ` Mathieu Othacehe
1 sibling, 0 replies; 5+ messages in thread
From: Mathieu Othacehe @ 2021-12-02 14:35 UTC (permalink / raw)
To: Vinicius Monego; +Cc: 51898-done
> 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
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-12-02 14:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-16 19:09 [bug#51898] [PATCH 0/3] Update mlt, kdenlive, shotcut Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 1/3] gnu: mlt: Update to 7.2.0 Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 2/3] gnu: kdenlive: Update to 21.08.3 Vinicius Monego
2021-11-16 19:12 ` [bug#51898] [PATCH 3/3] gnu: shotcut: Update to 21.10.31 Vinicius Monego
2021-12-02 14:35 ` bug#51898: [PATCH 0/3] Update mlt, kdenlive, shotcut Mathieu Othacehe
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.