unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0.
@ 2020-06-21 18:25 Vinicius Monego
  2020-06-21 18:25 ` [bug#41991] [PATCH 2/2] gnu: Add webvfx Vinicius Monego
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Vinicius Monego @ 2020-06-21 18:25 UTC (permalink / raw)
  To: 41990; +Cc: Vinicius Monego

* gnu/packages/video.scm (mlt): Update to 6.20.0.
---
 gnu/packages/video.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 4bd2dca909..e51729138c 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -42,6 +42,7 @@
 ;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2020 Alex McGrath <amk@amk.ie>
 ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
+;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2333,7 +2334,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
 (define-public mlt
   (package
     (name "mlt")
-    (version "6.18.0")
+    (version "6.20.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -2342,7 +2343,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0iiqym15n8kbnjzj0asmm86gs23yykz0va5b475cc4v2vv5admgx"))))
+                "14kayzas2wisyw0z27qkcm4qnxbdb7bqa0hg7gaj5kbm3nvsnafk"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f                      ; no tests
-- 
2.20.1





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

* [bug#41991] [PATCH 2/2] gnu: Add webvfx.
  2020-06-21 18:25 [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0 Vinicius Monego
@ 2020-06-21 18:25 ` Vinicius Monego
  2020-06-22 21:36   ` Marius Bakke
  2020-06-22 21:30 ` [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0 Marius Bakke
  2020-07-02 23:10 ` bug#41990: Done: #41990 Jakub Kądziołka
  2 siblings, 1 reply; 8+ messages in thread
From: Vinicius Monego @ 2020-06-21 18:25 UTC (permalink / raw)
  To: 41991; +Cc: Vinicius Monego

* gnu/packages/video.scm (webvfx): New variable.
---
 gnu/packages/video.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index e51729138c..a0b454c403 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2390,6 +2390,44 @@ functionality of the system is provided via an assortment of ready to use
 tools, XML authoring components, and an extensible plug-in based API.")
     (license license:gpl3)))
 
+(define-public webvfx
+  (package
+    (name "webvfx")
+    (version "1.2.0")
+    (source
+     (origin
+      (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mltframework/webvfx")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0brpnf2yllx3510dlm1p7bq5p5havnvr1bglhsbl2f07281m7nl1"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda _
+             (let ((out (assoc-ref %outputs "out")))
+               (invoke "qmake"
+                       (string-append "PREFIX=" out)
+                       "all.pro")))))))
+    (native-inputs
+     `(("qmake" ,qttools)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtwebkit" ,qtwebkit)))
+    (propagated-inputs
+     `(("mlt" ,mlt)))
+    (home-page "https://github.com/mltframework/webvfx")
+    (synopsis "Video effects engine based on web technologies")
+    (description "WebVfx is a video effects library that allows effects to
+be implemented using WebKit HTML or Qt QML.")
+    (license license:bsd-3)))
+
 (define-public v4l-utils
   (package
     (name "v4l-utils")
-- 
2.20.1





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

* [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0.
  2020-06-21 18:25 [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0 Vinicius Monego
  2020-06-21 18:25 ` [bug#41991] [PATCH 2/2] gnu: Add webvfx Vinicius Monego
@ 2020-06-22 21:30 ` Marius Bakke
  2020-07-02 23:10 ` bug#41990: Done: #41990 Jakub Kądziołka
  2 siblings, 0 replies; 8+ messages in thread
From: Marius Bakke @ 2020-06-22 21:30 UTC (permalink / raw)
  To: Vinicius Monego, 41990; +Cc: Vinicius Monego

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

Vinicius Monego <monego@posteo.net> writes:

> * gnu/packages/video.scm (mlt): Update to 6.20.0.

Applied, thanks!

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

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

* [bug#41991] [PATCH 2/2] gnu: Add webvfx.
  2020-06-21 18:25 ` [bug#41991] [PATCH 2/2] gnu: Add webvfx Vinicius Monego
@ 2020-06-22 21:36   ` Marius Bakke
  2020-09-02 15:10     ` Ludovic Courtès
  0 siblings, 1 reply; 8+ messages in thread
From: Marius Bakke @ 2020-06-22 21:36 UTC (permalink / raw)
  To: Vinicius Monego, 41991; +Cc: Vinicius Monego

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

Vinicius Monego <monego@posteo.net> writes:

> * gnu/packages/video.scm (webvfx): New variable.

This fails to install like so:

make[2]: Entering directory '/tmp/guix-build-webvfx-1.2.0.drv-0/source/mlt'
/gnu/store/59dq1n4wj3maa3kcar6hspj2zd82as7q-qtbase-5.14.2/bin/qmake -install qinstall -exe ../build/release/libmltwebvfx.so /gnu/store/fqf6g8smi81vix825x78z9py5b5qgshh-mlt-6.20.0/lib/mlt/libmltwebvfx.so
Error copying ../build/release/libmltwebvfx.so to /gnu/store/fqf6g8smi81vix825x78z9py5b5qgshh-mlt-6.20.0/lib/mlt/libmltwebvfx.so: Cannot create /gnu/store/fqf6g8smi81vix825x78z9py5b5qgshh-mlt-6.20.0/lib/mlt/libmltwebvfx.so for output

It seems it attempts to write the the mlt store directory.  Can you look
into it?

TIA,
Marius

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

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

* bug#41990: Done: #41990
  2020-06-21 18:25 [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0 Vinicius Monego
  2020-06-21 18:25 ` [bug#41991] [PATCH 2/2] gnu: Add webvfx Vinicius Monego
  2020-06-22 21:30 ` [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0 Marius Bakke
@ 2020-07-02 23:10 ` Jakub Kądziołka
  2 siblings, 0 replies; 8+ messages in thread
From: Jakub Kądziołka @ 2020-07-02 23:10 UTC (permalink / raw)
  To: 41990-done; +Cc: marius

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

Closing as the patch got applied in commit
d6817e0086d0cdf0f19e1c9f228e07cc01096775.

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

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

* [bug#41991] [PATCH 2/2] gnu: Add webvfx.
  2020-06-22 21:36   ` Marius Bakke
@ 2020-09-02 15:10     ` Ludovic Courtès
  2020-09-02 16:59       ` bug#41991: " Vinicius Monego
  0 siblings, 1 reply; 8+ messages in thread
From: Ludovic Courtès @ 2020-09-02 15:10 UTC (permalink / raw)
  To: Marius Bakke; +Cc: Vinicius Monego, 41991

Hi Vinicius,

Friendly ping!  :-)

Marius Bakke <marius@gnu.org> skribis:

> Vinicius Monego <monego@posteo.net> writes:
>
>> * gnu/packages/video.scm (webvfx): New variable.
>
> This fails to install like so:
>
> make[2]: Entering directory '/tmp/guix-build-webvfx-1.2.0.drv-0/source/mlt'
> /gnu/store/59dq1n4wj3maa3kcar6hspj2zd82as7q-qtbase-5.14.2/bin/qmake -install qinstall -exe ../build/release/libmltwebvfx.so /gnu/store/fqf6g8smi81vix825x78z9py5b5qgshh-mlt-6.20.0/lib/mlt/libmltwebvfx.so
> Error copying ../build/release/libmltwebvfx.so to /gnu/store/fqf6g8smi81vix825x78z9py5b5qgshh-mlt-6.20.0/lib/mlt/libmltwebvfx.so: Cannot create /gnu/store/fqf6g8smi81vix825x78z9py5b5qgshh-mlt-6.20.0/lib/mlt/libmltwebvfx.so for output
>
> It seems it attempts to write the the mlt store directory.  Can you look
> into it?
>
> TIA,
> Marius




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

* bug#41991: [PATCH 2/2] gnu: Add webvfx.
  2020-09-02 15:10     ` Ludovic Courtès
@ 2020-09-02 16:59       ` Vinicius Monego
  2020-09-02 20:19         ` [bug#41991] " Ludovic Courtès
  0 siblings, 1 reply; 8+ messages in thread
From: Vinicius Monego @ 2020-09-02 16:59 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 41991-done, Marius Bakke


Ludovic Courtès writes:

> Hi Vinicius,
>
> Friendly ping!  :-)
>

Hello Ludo, Marius.

Apologies for the delay. An easy solution to this is to disable 
the MLT
services by removing MLT from the inputs. I intended to have them
enabled because I was packaging webvfx as optional dependency for 
the
Shotcut video editor, which uses MLT.

However, I checked the webvfx repository right now and it was 
deprecated
in the meantime and is no longer maintained. For this reason I am
closing the issue.

Vinicius





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

* [bug#41991] [PATCH 2/2] gnu: Add webvfx.
  2020-09-02 16:59       ` bug#41991: " Vinicius Monego
@ 2020-09-02 20:19         ` Ludovic Courtès
  0 siblings, 0 replies; 8+ messages in thread
From: Ludovic Courtès @ 2020-09-02 20:19 UTC (permalink / raw)
  To: Vinicius Monego; +Cc: 41991-done, Marius Bakke

Hi,

Vinicius Monego <monego@posteo.net> skribis:

> Apologies for the delay. An easy solution to this is to disable the
> MLT
> services by removing MLT from the inputs. I intended to have them
> enabled because I was packaging webvfx as optional dependency for the
> Shotcut video editor, which uses MLT.
>
> However, I checked the webvfx repository right now and it was
> deprecated
> in the meantime and is no longer maintained. For this reason I am
> closing the issue.

OK, thank you for the quick reply!

Ludo’.




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

end of thread, other threads:[~2020-09-02 20:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-21 18:25 [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0 Vinicius Monego
2020-06-21 18:25 ` [bug#41991] [PATCH 2/2] gnu: Add webvfx Vinicius Monego
2020-06-22 21:36   ` Marius Bakke
2020-09-02 15:10     ` Ludovic Courtès
2020-09-02 16:59       ` bug#41991: " Vinicius Monego
2020-09-02 20:19         ` [bug#41991] " Ludovic Courtès
2020-06-22 21:30 ` [bug#41990] [PATCH 1/2] gnu: mlt: Update to 6.20.0 Marius Bakke
2020-07-02 23:10 ` bug#41990: Done: #41990 Jakub Kądziołka

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).