all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#30770] Prepare mlt for kdenlive
@ 2018-03-11 18:42 Mark Meyer
  2018-03-11 21:21 ` [bug#30770] Melt does not pick up frei0r Mark Meyer
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Mark Meyer @ 2018-03-11 18:42 UTC (permalink / raw)
  To: 30770

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

Moin,
the attached patch prepares MLT to support kdenlive.

Cheers, Mark
-- 
  Mark Meyer
  mark@ofosos.org

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-mlt-Prepare-for-kdenlive.patch --]
[-- Type: text/x-patch; name="0001-gnu-mlt-Prepare-for-kdenlive.patch", Size: 1842 bytes --]

From be8f3a71faa942dba2ffc64fd9da0628e5903b96 Mon Sep 17 00:00:00 2001
From: Mark Meyer <mark@ofosos.org>
Date: Sun, 11 Mar 2018 19:41:02 +0100
Subject: [PATCH] gnu: mlt: Prepare for kdenlive.

* gnu/packages/video.scm (mlt): Update to 6.6.0.
* gnu/packages/video.scm [inputs](mlt): Add qtbase, qtsvg, gdk-pixbuf, gtk+-2,
  frei0r-plugins.
---
 gnu/packages/video.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index dfd94f9d3..900f6e9fc 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1785,7 +1785,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
 (define-public mlt
   (package
     (name "mlt")
-    (version "6.4.1")
+    (version "6.6.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://github.com/mltframework/mlt/"
@@ -1793,7 +1793,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "10m3ry0b2pvqx3bk34qh5dq337nn8pkc2gzfyhsj4nv9abskln47"))
+                "1p9c9d29s2amq0nqixb2bwpkfmc0gjf80n2aca6j5vvj9ybwbjr8"))
               (modules '((guix build utils)))
               (snippet
                ;; As of glibc 2.26, <xlocale.h> no longer is.
@@ -1827,6 +1827,11 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
        ("libsamplerate" ,libsamplerate)
        ("pulseaudio" ,pulseaudio)
        ("sdl" ,sdl)
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)
+       ("gdk-pixbuf" ,gdk-pixbuf)
+       ("gtk+" ,gtk+-2)
+       ("frei0r-plugins" ,frei0r-plugins)
        ("sox" ,sox)))
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.16.2


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

* [bug#30770] Melt does not pick up frei0r
  2018-03-11 18:42 [bug#30770] Prepare mlt for kdenlive Mark Meyer
@ 2018-03-11 21:21 ` Mark Meyer
  2018-05-21 20:24   ` Ricardo Wurmus
  2018-09-14 21:04 ` [bug#30770] [PATCH] gnu: mlt: Prepare for kdenlive Gábor Boskovits
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Mark Meyer @ 2018-03-11 21:21 UTC (permalink / raw)
  To: 30770

This is still a little bit broken, since melt does not pick up frei0r. I lean towards removing frei0r again or to implement a wrapper for melt, as in #30771. Looking into this tomorrow.

-- 
  Mark Meyer
  mark@ofosos.org

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

* [bug#30770] Melt does not pick up frei0r
  2018-03-11 21:21 ` [bug#30770] Melt does not pick up frei0r Mark Meyer
@ 2018-05-21 20:24   ` Ricardo Wurmus
  0 siblings, 0 replies; 8+ messages in thread
From: Ricardo Wurmus @ 2018-05-21 20:24 UTC (permalink / raw)
  To: Mark Meyer; +Cc: 30770


Hi Mark,

> This is still a little bit broken, since melt does not pick up
> frei0r. I lean towards removing frei0r again or to implement a wrapper
> for melt, as in #30771. Looking into this tomorrow.

Thanks for the patch.  Have you been able to fix this yet or is this
something that you would need help with?

--
Ricardo

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

* [bug#30770] [PATCH] gnu: mlt: Prepare for kdenlive.
  2018-03-11 18:42 [bug#30770] Prepare mlt for kdenlive Mark Meyer
  2018-03-11 21:21 ` [bug#30770] Melt does not pick up frei0r Mark Meyer
@ 2018-09-14 21:04 ` Gábor Boskovits
  2018-09-21 18:18   ` [bug#30770] Fwd: " Gábor Boskovits
  2018-09-14 21:07 ` [bug#30770] New patch to prepare mlt " Gábor Boskovits
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Gábor Boskovits @ 2018-09-14 21:04 UTC (permalink / raw)
  To: 30770; +Cc: Gábor Boskovits

* gnu/packages/video.scm (mlt): Update to 6.10.0.
[inputs]: Add frei0r-plugins, gdk-pixbuf, gtk+-2, qtbase,qtsvg.
[make-flags]: Add "CXX=g++ -std=gnu++11".
---
 gnu/packages/video.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 4882f0476..a3d248976 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1941,7 +1941,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
 (define-public mlt
   (package
     (name "mlt")
-    (version "6.4.1")
+    (version "6.10.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://github.com/mltframework/mlt/"
@@ -1949,7 +1949,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "10m3ry0b2pvqx3bk34qh5dq337nn8pkc2gzfyhsj4nv9abskln47"))
+                "1zzdj1g3g24q6v8hd0v34lv0pkh37a13fhjpl44h1ffi00mz3577"))
               (modules '((guix build utils)))
               (snippet '(begin
                           ;; As of glibc 2.26, <xlocale.h> no longer is.
@@ -1959,7 +1959,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no tests
-       #:make-flags '("CC=gcc")
+       #:make-flags '("CC=gcc" "CXX=g++ -std=gnu++11")
        #:configure-flags
        (list "--enable-gpl3"
              "--enable-gpl")
@@ -1978,11 +1978,16 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
      `(("alsa-lib" ,alsa-lib)
        ("ffmpeg" ,ffmpeg-3.4)
        ("fftw" ,fftw)
+       ("frei0r-plugins" ,frei0r-plugins)
+       ("gdk-pixbuf" ,gdk-pixbuf)
+       ("gtk+" ,gtk+-2)
        ("libxml2" ,libxml2)
        ("jack" ,jack-1)
        ("ladspa" ,ladspa)
        ("libsamplerate" ,libsamplerate)
        ("pulseaudio" ,pulseaudio)
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)
        ("sdl" ,sdl)
        ("sox" ,sox)))
     (native-inputs
-- 
2.18.0

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

* [bug#30770] New patch to prepare mlt for kdenlive
  2018-03-11 18:42 [bug#30770] Prepare mlt for kdenlive Mark Meyer
  2018-03-11 21:21 ` [bug#30770] Melt does not pick up frei0r Mark Meyer
  2018-09-14 21:04 ` [bug#30770] [PATCH] gnu: mlt: Prepare for kdenlive Gábor Boskovits
@ 2018-09-14 21:07 ` Gábor Boskovits
  2018-09-22 20:00 ` [bug#30770] [PATCH] gnu: mlt: Prepare " Gábor Boskovits
  2019-02-13  0:03 ` bug#30770: Prepare mlt " Leo Famulari
  4 siblings, 0 replies; 8+ messages in thread
From: Gábor Boskovits @ 2018-09-14 21:07 UTC (permalink / raw)
  To: mark, 30770

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

I believe this version of the patch solves the frei0r issue. Could you have
a look, do modifications if you see fit. This is very much based on your
patch. WDYT?

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

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

* [bug#30770] Fwd: [PATCH] gnu: mlt: Prepare for kdenlive.
  2018-09-14 21:04 ` [bug#30770] [PATCH] gnu: mlt: Prepare for kdenlive Gábor Boskovits
@ 2018-09-21 18:18   ` Gábor Boskovits
  0 siblings, 0 replies; 8+ messages in thread
From: Gábor Boskovits @ 2018-09-21 18:18 UTC (permalink / raw)
  To: 30770

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

---------- Forwarded message ---------
From: Gábor Boskovits <boskovits@gmail.com>
Date: 2018. szept. 14., P, 23:04
Subject: [PATCH] gnu: mlt: Prepare for kdenlive.
To: <30770@debbugs.gnu.org>
Cc: Gábor Boskovits <boskovits@gmail.com>


* gnu/packages/video.scm (mlt): Update to 6.10.0.
[inputs]: Add frei0r-plugins, gdk-pixbuf, gtk+-2, qtbase,qtsvg.
[make-flags]: Add "CXX=g++ -std=gnu++11".
---
 gnu/packages/video.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 4882f0476..a3d248976 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1941,7 +1941,7 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
 (define-public mlt
   (package
     (name "mlt")
-    (version "6.4.1")
+    (version "6.10.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://github.com/mltframework/mlt/"
@@ -1949,7 +1949,7 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "10m3ry0b2pvqx3bk34qh5dq337nn8pkc2gzfyhsj4nv9abskln47"))
+                "1zzdj1g3g24q6v8hd0v34lv0pkh37a13fhjpl44h1ffi00mz3577"))
               (modules '((guix build utils)))
               (snippet '(begin
                           ;; As of glibc 2.26, <xlocale.h> no longer is.
@@ -1959,7 +1959,7 @@ from sites like Twitch.tv and pipes them into a video
player of choice.")
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no tests
-       #:make-flags '("CC=gcc")
+       #:make-flags '("CC=gcc" "CXX=g++ -std=gnu++11")
        #:configure-flags
        (list "--enable-gpl3"
              "--enable-gpl")
@@ -1978,11 +1978,16 @@ from sites like Twitch.tv and pipes them into a
video player of choice.")
      `(("alsa-lib" ,alsa-lib)
        ("ffmpeg" ,ffmpeg-3.4)
        ("fftw" ,fftw)
+       ("frei0r-plugins" ,frei0r-plugins)
+       ("gdk-pixbuf" ,gdk-pixbuf)
+       ("gtk+" ,gtk+-2)
        ("libxml2" ,libxml2)
        ("jack" ,jack-1)
        ("ladspa" ,ladspa)
        ("libsamplerate" ,libsamplerate)
        ("pulseaudio" ,pulseaudio)
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)
        ("sdl" ,sdl)
        ("sox" ,sox)))
     (native-inputs
-- 
2.18.0

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

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

* [bug#30770] [PATCH] gnu: mlt: Prepare for kdenlive.
  2018-03-11 18:42 [bug#30770] Prepare mlt for kdenlive Mark Meyer
                   ` (2 preceding siblings ...)
  2018-09-14 21:07 ` [bug#30770] New patch to prepare mlt " Gábor Boskovits
@ 2018-09-22 20:00 ` Gábor Boskovits
  2019-02-13  0:03 ` bug#30770: Prepare mlt " Leo Famulari
  4 siblings, 0 replies; 8+ messages in thread
From: Gábor Boskovits @ 2018-09-22 20:00 UTC (permalink / raw)
  To: 30770; +Cc: Mark Meyer, Gábor Boskovits

From: Mark Meyer <mark@ofosos.org>

* gnu/packages/video.scm (mlt): Update to 6.10.0.
[inputs]: Add frei0r-plugins, gdk-pixbuf, gtk+-2, qtbase,qtsvg.
[make-flags]: Add "CXX=g++ -std=gnu++11".

Co-authored-by: Gábor Boskovits <boskovits@gmail.com>
Signed-off-by: Gábor Boskovits <boskovits@gmail.com>
---
 gnu/packages/video.scm | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 448773e0d..63b10f5db 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -29,6 +29,8 @@
 ;;; Copyright © 2018 Brendan Tildesley <brendan.tildesley@openmailbox.org>
 ;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2018 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
+;;; Copyright © 2018 Mark Meyer <mark@ofosos.org>
+;;; Copyright © 2018 Gábor Boskovit <boskovits@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1942,7 +1944,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
 (define-public mlt
   (package
     (name "mlt")
-    (version "6.4.1")
+    (version "6.10.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://github.com/mltframework/mlt/"
@@ -1950,7 +1952,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
               (file-name (string-append name "-" version ".tar.gz"))
               (sha256
                (base32
-                "10m3ry0b2pvqx3bk34qh5dq337nn8pkc2gzfyhsj4nv9abskln47"))
+                "1zzdj1g3g24q6v8hd0v34lv0pkh37a13fhjpl44h1ffi00mz3577"))
               (modules '((guix build utils)))
               (snippet '(begin
                           ;; As of glibc 2.26, <xlocale.h> no longer is.
@@ -1960,7 +1962,7 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no tests
-       #:make-flags '("CC=gcc")
+       #:make-flags '("CC=gcc" "CXX=g++ -std=gnu++11")
        #:configure-flags
        (list "--enable-gpl3"
              "--enable-gpl")
@@ -1979,11 +1981,16 @@ from sites like Twitch.tv and pipes them into a video player of choice.")
      `(("alsa-lib" ,alsa-lib)
        ("ffmpeg" ,ffmpeg-3.4)
        ("fftw" ,fftw)
+       ("frei0r-plugins" ,frei0r-plugins)
+       ("gdk-pixbuf" ,gdk-pixbuf)
+       ("gtk+" ,gtk+-2)
        ("libxml2" ,libxml2)
        ("jack" ,jack-1)
        ("ladspa" ,ladspa)
        ("libsamplerate" ,libsamplerate)
        ("pulseaudio" ,pulseaudio)
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)
        ("sdl" ,sdl)
        ("sox" ,sox)))
     (native-inputs
-- 
2.18.0

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

* bug#30770: Prepare mlt for kdenlive
  2018-03-11 18:42 [bug#30770] Prepare mlt for kdenlive Mark Meyer
                   ` (3 preceding siblings ...)
  2018-09-22 20:00 ` [bug#30770] [PATCH] gnu: mlt: Prepare " Gábor Boskovits
@ 2019-02-13  0:03 ` Leo Famulari
  4 siblings, 0 replies; 8+ messages in thread
From: Leo Famulari @ 2019-02-13  0:03 UTC (permalink / raw)
  To: Mark Meyer; +Cc: 30770-done

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

This was pushed as commit e7cdd311ae2696713da59a4f27614a246ca0f58a.

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

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

end of thread, other threads:[~2019-02-13  0:07 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-11 18:42 [bug#30770] Prepare mlt for kdenlive Mark Meyer
2018-03-11 21:21 ` [bug#30770] Melt does not pick up frei0r Mark Meyer
2018-05-21 20:24   ` Ricardo Wurmus
2018-09-14 21:04 ` [bug#30770] [PATCH] gnu: mlt: Prepare for kdenlive Gábor Boskovits
2018-09-21 18:18   ` [bug#30770] Fwd: " Gábor Boskovits
2018-09-14 21:07 ` [bug#30770] New patch to prepare mlt " Gábor Boskovits
2018-09-22 20:00 ` [bug#30770] [PATCH] gnu: mlt: Prepare " Gábor Boskovits
2019-02-13  0:03 ` bug#30770: Prepare mlt " Leo Famulari

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.