From 2a9b10c7cdc7902a9f44ce65d36a712cacfd288a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 14 Sep 2016 11:25:57 +0200 Subject: gnu: Add kiss-fft-for-extempore. * gnu/packages/algebra.scm (kiss-fft-for-extempore): New variable. --- gnu/packages/algebra.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages/algebra.scm') diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 4fb15c6471..83f03a074a 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -505,6 +505,30 @@ (define-public bc \"dc\", a reverse-polish calculator.") (license license:gpl2+))) +;; The original kiss-fft does not have a complete build system and does not +;; build any shared libraries. This is a fork used by Extempore. +(define-public kiss-fft-for-extempore + (package + (name "kiss-fft-for-extempore") + (version "1.3.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/extemporelang/kiss_fft/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0hkp9l6l4c92fb1l2sh6a6zv1hynpvb2s4d03vd8vxyvybc0l4pv")))) + (build-system cmake-build-system) + (arguments `(#:tests? #f)) ; no tests included + (home-page "https://github.com/extemporelang/kiss_fft") + (synopsis "Mixed-radix Fast Fourier Transform") + (description + "Kiss FFT attempts to be a reasonably efficient, moderately useful FFT +that can use fixed or floating data types and can easily be incorporated into +a C program.") + (license license:bsd-3))) + (define-public fftw (package (name "fftw") -- cgit v1.2.3 From 39162ee49b08ccbd032324dc057fbafe8809c8a8 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 21 Sep 2016 21:47:56 +0200 Subject: gnu: extempore: Only build on x86_64. * gnu/packages/algebra.scm (kiss-fft-for-extempore)[supported-systems]: Only build on x86_64. * gnu/packages/gl.scm (nanovg-for-extempore)[supported-systems]: Likewise. * gnu/packages/image.scm (stb-image-for-extempore)[supported-systems]: Likewise. * gnu/packages/llvm.scm (llvm-for-extempore)[supported-systems]: Likewise. * gnu/packages/music.scm (portmidi-for-extempore)[supported-systems]: Likewise. (extempore)[supported-systems]: Likewise. --- gnu/packages/algebra.scm | 2 ++ gnu/packages/gl.scm | 2 ++ gnu/packages/image.scm | 2 ++ gnu/packages/llvm.scm | 4 +++- gnu/packages/music.scm | 4 ++++ 5 files changed, 13 insertions(+), 1 deletion(-) (limited to 'gnu/packages/algebra.scm') diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 83f03a074a..a15daf4ef8 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -521,6 +521,8 @@ (define-public kiss-fft-for-extempore "0hkp9l6l4c92fb1l2sh6a6zv1hynpvb2s4d03vd8vxyvybc0l4pv")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no tests included + ;; Extempore refuses to build on architectures other than x86_64 + (supported-systems '("x86_64-linux")) (home-page "https://github.com/extemporelang/kiss_fft") (synopsis "Mixed-radix Fast Fourier Transform") (description diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 707e3d4d1d..a4ec3a3536 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -591,6 +591,8 @@ (define-public nanovg-for-extempore (arguments `(#:tests? #f)) ; no tests included (inputs `(("mesa" ,mesa))) + ;; Extempore refuses to build on architectures other than x86_64 + (supported-systems '("x86_64-linux")) (home-page "https://github.com/extemporelang/nanovg") (synopsis "2D vector drawing library on top of OpenGL") (description "NanoVG is small antialiased vector graphics rendering diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index e40fa9a47d..931cad1a6d 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -923,6 +923,8 @@ (define-public stb-image-for-extempore (file-name (string-append name "-" version "-checkout")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no tests included + ;; Extempore refuses to build on architectures other than x86_64 + (supported-systems '("x86_64-linux")) (home-page "https://github.com/extemporelang/stb") (synopsis "Image library for Extempore") (description diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm index b55a200bc5..1a1f7eef6c 100644 --- a/gnu/packages/llvm.scm +++ b/gnu/packages/llvm.scm @@ -274,4 +274,6 @@ (define-public llvm-for-extempore (source (origin (inherit (package-source llvm-3.7)) - (patches (list (search-patch "llvm-for-extempore.patch"))))))) + (patches (list (search-patch "llvm-for-extempore.patch"))))) + ;; Extempore refuses to build on architectures other than x86_64 + (supported-systems '("x86_64-linux")))) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index c512d533c2..a7715bce24 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -396,6 +396,8 @@ (define-public extempore (native-inputs `(("perl" ,perl) ("emacs" ,emacs-no-x))) + ;; Extempore refuses to build on architectures other than x86_64 + (supported-systems '("x86_64-linux")) (home-page "http://benswift.me/extempore-docs/index.html") (synopsis "Programming environment for live coding of multimedia") (description @@ -1243,6 +1245,8 @@ (define-public portmidi-for-extempore (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no tests (native-inputs '()) + ;; Extempore refuses to build on architectures other than x86_64 + (supported-systems '("x86_64-linux")) (home-page "https://github.com/extemporelang/portmidi/"))) (define-public python-pyportmidi -- cgit v1.2.3 From 236d522b808ec5288085d647c426fbbf5318f2e5 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 18 Sep 2016 22:40:44 +0200 Subject: gnu: giac-xcas: Update to 1.2.2-81. * gnu/packages/algebra.scm (giac-xcas): Update to 1.2.2-81. Signed-off-by: Leo Famulari --- gnu/packages/algebra.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/algebra.scm') diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index a15daf4ef8..4425514673 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -202,7 +202,7 @@ (define-public gp2c (define-public giac-xcas (package (name "giac-xcas") - (version "1.2.2-75") + (version "1.2.2-81") (source (origin (method url-fetch) ;; "~parisse/giac" is not used because the maintainer regularly @@ -214,7 +214,7 @@ (define-public giac-xcas "source/giac_" version ".tar.gz")) (sha256 (base32 - "0vs111fkd900wkm7yypaxmplc8i8j63d9shc3fbdhddn7cdj70b1")))) + "0jwlx8b97zkly9gcbdfbj4mzyn21dbg1kgpw7j7vqs380jryzgfs")))) (build-system gnu-build-system) (arguments `(#:phases -- cgit v1.2.3