GNU bug report logs -
#41991
[PATCH 2/2] gnu: Add webvfx.
Previous Next
Reported by: Vinicius Monego <monego <at> posteo.net>
Date: Sun, 21 Jun 2020 18:28:02 UTC
Severity: normal
Tags: patch
Done: Vinicius Monego <monego <at> posteo.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#41991: [PATCH 2/2] gnu: Add webvfx.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 41991 <at> debbugs.gnu.org.
--
41991: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=41991
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
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
[Message part 3 (message/rfc822, inline)]
* 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
This bug report was last modified 4 years and 340 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.