From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43032) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g3Q1C-0004jr-3s for guix-patches@gnu.org; Fri, 21 Sep 2018 14:19:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g3Q18-0002Av-Vi for guix-patches@gnu.org; Fri, 21 Sep 2018 14:19:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44185) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g3Q18-0002Ap-Q4 for guix-patches@gnu.org; Fri, 21 Sep 2018 14:19:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1g3Q18-0007ve-Gc for guix-patches@gnu.org; Fri, 21 Sep 2018 14:19:02 -0400 Subject: [bug#30770] Fwd: [PATCH] gnu: mlt: Prepare for kdenlive. Resent-Message-ID: MIME-Version: 1.0 References: <20180914210400.23981-1-boskovits@gmail.com> In-Reply-To: <20180914210400.23981-1-boskovits@gmail.com> From: =?UTF-8?Q?G=C3=A1bor?= Boskovits Date: Fri, 21 Sep 2018 20:18:02 +0200 Message-ID: Content-Type: multipart/alternative; boundary="000000000000a82f94057665a9d8" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30770@debbugs.gnu.org --000000000000a82f94057665a9d8 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable ---------- Forwarded message --------- From: G=C3=A1bor Boskovits Date: 2018. szept. 14., P, 23:04 Subject: [PATCH] gnu: mlt: Prepare for kdenlive. To: <30770@debbugs.gnu.org> Cc: G=C3=A1bor 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=3Dg++ -std=3Dgnu++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, 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=3Dgcc") + #:make-flags '("CC=3Dgcc" "CXX=3Dg++ -std=3Dgnu++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 --=20 2.18.0 --000000000000a82f94057665a9d8 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


------= ---- Forwarded message ---------
From: G=C3=A1bor Boskovits <boskovits@gmail.com>
Date:= 2018. szept. 14., P, 23:04
Subject: [PATCH] gnu: mlt: Prepare for kdenl= ive.
To: <30770@debbugs.gnu= .org>
Cc: G=C3=A1bor 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=3Dg++ -std=3Dgnu++11".
---
=C2=A0gnu/packages/video.scm | 11 ++++++++---
=C2=A01 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.")
=C2=A0(define-public mlt
=C2=A0 =C2=A0(package
=C2=A0 =C2=A0 =C2=A0(name "mlt")
-=C2=A0 =C2=A0 (version "6.4.1")
+=C2=A0 =C2=A0 (version "6.10.0")
=C2=A0 =C2=A0 =C2=A0(source (origin
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(method url-fetch) =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(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.")
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(file-name (string-a= ppend name "-" version ".tar.gz"))
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(sha256
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (base32
-=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "10m3ry0b2pvq= x3bk34qh5dq337nn8pkc2gzfyhsj4nv9abskln47"))
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "1zzdj1g3g24q= 6v8hd0v34lv0pkh37a13fhjpl44h1ffi00mz3577"))
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(modules '((guix= build utils)))
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(snippet '(begin=
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0;; 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.")
=C2=A0 =C2=A0 =C2=A0(build-system gnu-build-system)
=C2=A0 =C2=A0 =C2=A0(arguments
=C2=A0 =C2=A0 =C2=A0 `(#:tests? #f ; no tests
-=C2=A0 =C2=A0 =C2=A0 =C2=A0#:make-flags '("CC=3Dgcc")
+=C2=A0 =C2=A0 =C2=A0 =C2=A0#:make-flags '("CC=3Dgcc" "C= XX=3Dg++ -std=3Dgnu++11")
=C2=A0 =C2=A0 =C2=A0 =C2=A0 #:configure-flags
=C2=A0 =C2=A0 =C2=A0 =C2=A0 (list "--enable-gpl3"
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "--enable-gpl")<= br> @@ -1978,11 +1978,16 @@ from sites like Twitch.tv and pipes them into a vid= eo player of choice.")
=C2=A0 =C2=A0 =C2=A0 `(("alsa-lib" ,alsa-lib)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("ffmpeg" ,ffmpeg-3.4)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("fftw" ,fftw)
+=C2=A0 =C2=A0 =C2=A0 =C2=A0("frei0r-plugins" ,frei0r-plugins) +=C2=A0 =C2=A0 =C2=A0 =C2=A0("gdk-pixbuf" ,gdk-pixbuf)
+=C2=A0 =C2=A0 =C2=A0 =C2=A0("gtk+" ,gtk+-2)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("libxml2" ,libxml2)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("jack" ,jack-1)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("ladspa" ,ladspa)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("libsamplerate" ,libsamplerate)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("pulseaudio" ,pulseaudio)
+=C2=A0 =C2=A0 =C2=A0 =C2=A0("qtbase" ,qtbase)
+=C2=A0 =C2=A0 =C2=A0 =C2=A0("qtsvg" ,qtsvg)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("sdl" ,sdl)
=C2=A0 =C2=A0 =C2=A0 =C2=A0 ("sox" ,sox)))
=C2=A0 =C2=A0 =C2=A0(native-inputs
--
2.18.0

--000000000000a82f94057665a9d8--