GNU bug report logs -
#42460
[PATCH 0/2] gnu: vlc: add support for MIDI and chiptunes
Previous Next
To reply to this bug, email your comments to 42460 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#42460
; Package
guix-patches
.
(Tue, 21 Jul 2020 06:27:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Jesse Gibbons <jgibbons2357 <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 21 Jul 2020 06:27:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
The following patch series adds support for MIDI (with FluidSynth) and
chiptunes (with gme) in VLC.
-Jesse
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42460
; Package
guix-patches
.
(Tue, 21 Jul 2020 06:29:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 42460 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/video.scm (vlc): add MIDI support with FluidSynth
[inputs]: Add FluidSynth.
[arguments]: Pass "--enable-fluidsynth" to configure
---
gnu/packages/video.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 4120174484..a4e097e9a2 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1249,6 +1249,7 @@ videoformats depend on the configuration flags of
ffmpeg.")
("dbus" ,dbus)
("eudev" ,eudev)
("flac" ,flac)
+ ("fluidsynth" ,fluidsynth)
("ffmpeg" ,ffmpeg)
("fontconfig" ,fontconfig)
("freetype" ,freetype)
@@ -1319,6 +1320,7 @@ videoformats depend on the configuration flags of
ffmpeg.")
(arguments
`(#:configure-flags
`("BUILDCC=gcc"
+ "--enable-fluidsynth"
,(string-append "LDFLAGS=-Wl,-rpath -Wl,"
(assoc-ref %build-inputs "ffmpeg")
"/lib")) ;needed for the tests
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42460
; Package
guix-patches
.
(Tue, 21 Jul 2020 06:30:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 42460 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/video.scm: vlc (inputs): Add libgme.
---
gnu/packages/video.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index a4e097e9a2..6b57d384e1 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -44,6 +44,7 @@
;;; Copyright © 2020 Michael Rohleder <mike <at> rohleder.de>
;;; Copyright © 2020 Vinicius Monego <monego <at> posteo.net>
;;; Copyright © 2020 Brett Gilio <brettg <at> gnu.org>
+;;; Copyright © 2020 Jesse Gibbons <jgibbons2357+guix <at> gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -131,6 +132,7 @@
#:use-module (gnu packages markup)
#:use-module (gnu packages maths)
#:use-module (gnu packages mp3)
+ #:use-module (gnu packages music)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages networking)
#:use-module (gnu packages ocr)
@@ -1268,6 +1270,7 @@ videoformats depend on the configuration flags of
ffmpeg.")
("libdvdread" ,libdvdread)
("libebml" ,libebml)
("libgcrypt" ,libgcrypt)
+ ("libgme" ,libgme)
("libidn" ,libidn)
("libkate" ,libkate)
("libmad" ,libmad)
@@ -1321,6 +1324,7 @@ videoformats depend on the configuration flags of
ffmpeg.")
`(#:configure-flags
`("BUILDCC=gcc"
"--enable-fluidsynth"
+ "--enable-gme"
,(string-append "LDFLAGS=-Wl,-rpath -Wl,"
(assoc-ref %build-inputs "ffmpeg")
"/lib")) ;needed for the tests
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42460
; Package
guix-patches
.
(Sat, 25 Jul 2020 15:32:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 42460 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Jesse Gibbons <jgibbons2357 <at> gmail.com> writes:
> The following patch series adds support for MIDI (with FluidSynth) and
> chiptunes (with gme) in VLC.
These patches are also ill-formatted.
And note that the libgme GCC issue should be fixed before adding it as a
dependency to packages.
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42460
; Package
guix-patches
.
(Tue, 28 Jul 2020 01:59:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 42460 <at> debbugs.gnu.org (full text, mbox):
I'll look into this and combine with #42455 when libgme doesn't have gcc
as a transitive package.
On 7/25/20 9:31 AM, Marius Bakke wrote:
> Jesse Gibbons <jgibbons2357 <at> gmail.com> writes:
>
>> The following patch series adds support for MIDI (with FluidSynth) and
>> chiptunes (with gme) in VLC.
> These patches are also ill-formatted.
>
> And note that the libgme GCC issue should be fixed before adding it as a
> dependency to packages.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42460
; Package
guix-patches
.
(Wed, 29 Jul 2020 01:24:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 42460 <at> debbugs.gnu.org (full text, mbox):
Is there a bug corresponding to the libgme GCC issue?
On 7/25/20 9:31 AM, Marius Bakke wrote:
> Jesse Gibbons <jgibbons2357 <at> gmail.com> writes:
>
>> The following patch series adds support for MIDI (with FluidSynth) and
>> chiptunes (with gme) in VLC.
> These patches are also ill-formatted.
>
> And note that the libgme GCC issue should be fixed before adding it as a
> dependency to packages.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#42460
; Package
guix-patches
.
(Fri, 22 Sep 2023 15:20:01 GMT)
Full text and
rfc822 format available.
Message #23 received at 42460 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi,
Any update on this patch?
It looks like libgme GCC is fixed: https://git.savannah.gnu.org/cgit/guix.git/commit/?id=5c4b76ce372899db9d6e85dbadfb168436e0123f
Thanks,
Clément
[Message part 2 (text/html, inline)]
This bug report was last modified 1 year and 58 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.