From 7affb2c1ac6213ffc126689f9ac0501b680ce2e6 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 25 Mar 2016 09:58:57 +0100 Subject: gnu: lilypond: Fix check for fontforge version. * gnu/packages/music.scm (lilypond)[arguments]: Patch configure script to find actual fontforge version. --- gnu/packages/music.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gnu/packages/music.scm') diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index ffee9d6245..672f55d2da 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -312,7 +312,10 @@ (define-public lilypond (add-before 'configure 'prepare-configuration (lambda _ (substitute* "configure" - (("SHELL=/bin/sh") "SHELL=sh")) + (("SHELL=/bin/sh") "SHELL=sh") + ;; When checking the fontforge version do not consider the + ;; version string that's part of the directory. + (("head -n") "tail -n")) (setenv "out" "www") (setenv "conf" "www") #t)) -- cgit v1.2.3 From d3e3468fb8f472f75b1f3966b0976fdf16433094 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 26 Mar 2016 17:23:18 -0400 Subject: gnu: python-pyechonest: Clean up description. * gnu/packages/music.scm (pyechonest)[description]: Remove "open source" from the description. --- gnu/packages/music.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gnu/packages/music.scm') diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 672f55d2da..89f49c6f4d 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1201,9 +1201,8 @@ (define-public python-pyechonest (build-system python-build-system) (home-page "https://github.com/echonest/pyechonest") (synopsis "Python interface to The Echo Nest APIs") - (description "Pyechonest is an open source Python library for the Echo Nest -API. With Pyechonest you have Python access to the entire set of API methods -including: + (description "Pyechonest is a Python library for the Echo Nest API. With +Pyechonest you have Python access to the entire set of API methods including: @enumerate @item artist - search for artists by name, description, or attribute, and get -- cgit v1.2.3 From 36c2c8c826336e2476d7cf218f457b39a27415b0 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 26 Mar 2016 17:53:59 -0400 Subject: gnu: beets: Run tests with python-nose. * gnu/packages/music.scm (nose)[native-inputs]: Add python-nose. [arguments]: Replace 'check' and use python-nose. --- gnu/packages/music.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gnu/packages/music.scm') diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 89f49c6f4d..48d6214e3a 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1274,13 +1274,16 @@ (define-public beets #:phases (modify-phases %standard-phases (add-after 'unpack 'set-HOME - (lambda _ (setenv "HOME" (string-append (getcwd) "/tmp"))))))) + (lambda _ (setenv "HOME" (string-append (getcwd) "/tmp")))) + (replace 'check + (lambda _ (zero? (system* "nosetests" "-v"))))))) (native-inputs `(("python2-beautifulsoup4" ,python2-beautifulsoup4) ("python2-flask" ,python2-flask) ("python2-setuptools" ,python2-setuptools) ("python2-mock" ,python2-mock) ("python2-mpd2" ,python2-mpd2) + ("python2-nose" ,python2-nose) ("python2-pathlib" ,python2-pathlib) ("python2-pyxdg" ,python2-pyxdg) ("python2-pyechonest" ,python2-pyechonest) -- cgit v1.2.3 From e0b90dbf65f9701051ab18cf02e1ff77f67dfbe9 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 28 Mar 2016 09:50:25 +0200 Subject: gnu: qtractor: Update to 0.7.5. * gnu/packages/music.scm (qtractor): Update to 0.7.5. --- gnu/packages/music.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/music.scm') diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 48d6214e3a..adda16afdc 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -1071,14 +1071,14 @@ (define-public cursynth (define-public qtractor (package (name "qtractor") - (version "0.7.3") + (version "0.7.5") (source (origin (method url-fetch) (uri (string-append "http://downloads.sourceforge.net/qtractor/" "qtractor-" version ".tar.gz")) (sha256 (base32 - "1vy4297myyqk0k58nzybgvgklckhngpdcnmp98k0rq98dirclbl7")))) + "0drqzp1rbqmqiwdzc9n3307y8rm882fha3awy5qlvir5ma2mwl80")))) (build-system gnu-build-system) (arguments `(#:tests? #f)) ; no "check" target (inputs -- cgit v1.2.3 From 21d1811301c4acc34dc124c832d21918c2d11a95 Mon Sep 17 00:00:00 2001 From: Kei Yamashita Date: Tue, 29 Mar 2016 22:17:21 -0400 Subject: gnu: Add MilkyTracker. * gnu/packages/music.scm (milkytracker): New variable. Signed-off-by: Alex Kost --- gnu/packages/music.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'gnu/packages/music.scm') diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index adda16afdc..1fa142120e 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2016 Al McElrath ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2016 Leo Famulari +;;; Copyright © 2016 Kei Yamashita ;;; ;;; This file is part of GNU Guix. ;;; @@ -78,6 +79,7 @@ (define-module (gnu packages music) #:use-module (gnu packages rdf) #:use-module (gnu packages readline) #:use-module (gnu packages rsync) + #:use-module (gnu packages sdl) #:use-module (gnu packages tcl) #:use-module (gnu packages texinfo) #:use-module (gnu packages texlive) @@ -1306,3 +1308,33 @@ (define-public beets metadata as it goes using the MusicBrainz database. Then it provides a variety of tools for manipulating and accessing your music.") (license license:expat))) + +(define-public milkytracker + (package + (name "milkytracker") + (version "0.90.86") + (source (origin + (method url-fetch) + (uri (string-append "http://milkytracker.org/files/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "1v9vp8vi24lkagfpr92c128whvakwgrm9pq2zf6ijpl5sh7014zb")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags '("CXXFLAGS=-lasound"))) + (inputs + `(("alsa-lib" ,alsa-lib) + ("jack" ,jack-1) + ("sdl" ,sdl) + ("zlib" ,zlib))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (synopsis "Music tracker for working with .MOD/.XM module files") + (description "MilkyTracker is a music application for creating .MOD and .XM +module files. It attempts to recreate the module replay and user experience of +the popular DOS program Fasttracker II, with special playback modes available +for improved Amiga ProTracker 2/3 compatibility.") + (home-page "http://milkytracker.org/") + ;; 'src/milkyplay' is under Modified BSD, the rest is under GPL3 or later. + (license (list license:bsd-3 license:gpl3+)))) -- cgit v1.2.3