guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/08: gnu: fluidsynth: Update to 2.0.1.


From: Marius Bakke
Subject: 07/08: gnu: fluidsynth: Update to 2.0.1.
Date: Sun, 21 Oct 2018 12:00:59 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 9b6dc31b6d0fa56e005c928453a6bc72cff9ae73
Author: Marius Bakke <address@hidden>
Date:   Sun Oct 21 17:47:35 2018 +0200

    gnu: fluidsynth: Update to 2.0.1.
    
    * gnu/packages/audio.scm (fluidsynth): Update to 2.0.1.
    (fluidsynth-1): New public variable.
    * gnu/packages/games.scm (gzdoom)[inputs]: Change FLUIDSYNTH to 
FLUIDSYNTH-1.
    * gnu/packages/music.scm (lmms)[inputs]: Likewise.
---
 gnu/packages/audio.scm | 21 +++++++++++++++++++--
 gnu/packages/games.scm |  2 +-
 gnu/packages/music.scm |  2 +-
 3 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 5ec10b3..a1745bb 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -14,6 +14,7 @@
 ;;; Copyright © 2018 Maxim Cournoyer <address@hidden>
 ;;; Copyright © 2018 Clément Lassieur <address@hidden>
 ;;; Copyright © 2018 Brett Gilio <address@hidden>
+;;; Copyright © 2018 Marius Bakke <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1041,7 +1042,7 @@ follower.")
 (define-public fluidsynth
   (package
     (name "fluidsynth")
-    (version "1.1.11")
+    (version "2.0.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1050,7 +1051,7 @@ follower.")
               (file-name (string-append name "-" version "-checkout"))
               (sha256
                (base32
-                "0n75jq3xgq46hfmjkaaxz3gic77shs4fzajq40c8gk043i84xbdh"))))
+                "1mqyym5qkh8xd1rqj3yhfxbw5dxjcrljb6nkfqzvcarlv4h6rjn7"))))
     (build-system cmake-build-system)
     (arguments
      '(#:tests? #f                      ; no check target
@@ -1082,6 +1083,22 @@ device.  It is the software analogue of a MIDI 
synthesizer.  FluidSynth can
 also play midifiles using a Soundfont.")
     (license license:lgpl2.1+)))
 
+;; address@hidden and address@hidden requires this version.  Remove once no 
longer
+;; needed.
+(define-public fluidsynth-1
+  (package
+    (inherit fluidsynth)
+    (version "1.1.11")
+    (source (origin
+              (inherit (package-source fluidsynth))
+              (uri (git-reference
+                    (url "https://github.com/FluidSynth/fluidsynth";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name "fluidsynth" version))
+              (sha256
+               (base32
+                "0n75jq3xgq46hfmjkaaxz3gic77shs4fzajq40c8gk043i84xbdh"))))))
+
 (define-public faad2
   (package
     (name "faad2")
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index c3067c5..bb96bbe 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -5355,7 +5355,7 @@ You can save humanity and get programming skills!")
     (build-system cmake-build-system)
     (inputs `(("bzip2" ,bzip2)
               ("fluid-3" ,fluid-3)
-              ("fluidsynth" ,fluidsynth)
+              ("fluidsynth" ,fluidsynth-1)      ;XXX: try using 2.x when 
updating
               ("gtk+3" ,gtk+)
               ("libgme" ,libgme)
               ("libjpeg" ,libjpeg)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 13a6ecc..cdd0664 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -3567,7 +3567,7 @@ are a C compiler and glib.  Full API documentation and 
examples are included.")
        ("fltk" ,fltk)
        ("libogg" ,libogg)
        ("libsamplerate" ,libsamplerate)
-       ("fluidsynth" ,fluidsynth)
+       ("fluidsynth" ,fluidsynth-1)         ;XXX: try using 2.x when updating
        ("libvorbis" ,libvorbis)
        ("alsa-lib" ,alsa-lib)
        ("portaudio" ,portaudio)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]