From f813b22539c6cefd49471f7df3adc4b02ebcd76c Mon Sep 17 00:00:00 2001 From: Alex Vong Date: Sat, 6 Aug 2016 08:52:34 +0800 Subject: [PATCH] gnu: octave: Update to 4.0.3. * gnu/packages/maths.scm (octave): Update to 4.0.3. [source]: Change to '.tar.xz'. [inputs]: Remove dependencies on openssl and curl. --- gnu/packages/maths.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index fcea0bc..149c533 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -692,16 +692,19 @@ can solve two kinds of problems: (define-public octave (package (name "octave") - (version "4.0.2") + (version "4.0.3") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/octave/octave-" - version ".tar.gz")) + version ".tar.xz")) (sha256 (base32 - "1hdxap3j88rpqjimnfhinym6z73wdi5dfa6fv85c13r1dk9qzk9r")))) + "11day29k4yfvxh4101x5yf26ld992x5n6qvmhjjk6mzsd26fqayw")))) (build-system gnu-build-system) + ;; Ideally, curl should be in the list of inputs to enable ftp support. + ;; It isn't because it causes octave to link against openssl which isn't allowed + ;; as octave's license has no openssl exception at the moment. (inputs `(("lapack" ,lapack) ("readline" ,readline) @@ -709,7 +712,6 @@ can solve two kinds of problems: ("fftw" ,fftw) ("fftwf" ,fftwf) ("arpack" ,arpack-ng) - ("curl" ,curl) ("pcre" ,pcre) ("cyrus-sasl" ,cyrus-sasl) ("fltk" ,fltk) @@ -719,7 +721,6 @@ can solve two kinds of problems: ("libxft" ,libxft) ("mesa" ,mesa) ("glu" ,glu) - ("openssl" ,openssl) ("zlib" ,zlib))) (native-inputs `(("gfortran" ,gfortran) -- 2.9.2