From 9285f8bbae9d71139873430c71b7ca7634bda31b Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Sun, 12 Aug 2018 19:02:34 -0400 Subject: gnu: coda: Update to 2.19. * gnu/packages/maths.scm (coda): Update to 2.19. --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index f07c83dc0d..2608756da7 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -167,14 +167,14 @@ interactive dialogs to guide them.") (define-public coda (package (name "coda") - (version "2.18.3") + (version "2.19") (source (origin (method url-fetch) (uri (string-append "https://github.com/stcorp/coda/releases/download/" version "/coda-" version ".tar.gz")) (sha256 - (base32 "1zlzgcvwmmjm8mw8w4rg2rqy0pjilz7kyyxm0y4p8cbljbbjxxz0")) + (base32 "1fbxd2afm7dshd92p10yy8dwbr9gc1h1fmnnnmr7d0c5lnw80245")) (patches (search-patches "coda-use-system-libs.patch")) (modules '((guix build utils))) (snippet -- cgit v1.2.3 From df1bc82b696f8d87a2336ae33b64aa2bdeaa79a6 Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Wed, 15 Aug 2018 08:08:59 -0400 Subject: gnu: ocaml-gsl: Update to 1.22.0. * gnu/packages/maths.scm (ocaml-gsl): Update to 1.22.0. --- gnu/packages/maths.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 2608756da7..18d26ab716 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -355,17 +355,17 @@ numbers.") (define-public ocaml-gsl (package (name "ocaml-gsl") - (version "1.19.3") + (version "1.22.0") (source (origin (method url-fetch) (uri (string-append - "https://github.com/mmottl/gsl-ocaml/releases/download/v" - version"/gsl-ocaml-" version ".tar.gz")) + "https://github.com/mmottl/gsl-ocaml/releases/download/" + version "/gsl-" version ".tbz")) (sha256 (base32 - "0nzp43hp8pbjqkrxnwp5lgjrabxayf61h18fjaydi0s5faq6f3xh")))) + "17vcswipliq1b2idbzx1z95kskn1a4q4s5v04igilg0f7lnkaarb")))) (build-system ocaml-build-system) (inputs `(("gsl" ,gsl))) -- cgit v1.2.3 From e405c0bcd92067449825e98db5afc0dafec8d81d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 16 Aug 2018 02:01:03 +0200 Subject: gnu: armadillo: Update to 9.100.4. * gnu/packages/maths.scm (armadillo): Update to 9.100.4. --- gnu/packages/maths.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 18d26ab716..506f0fb8ff 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2769,16 +2769,16 @@ full text searching.") (define-public armadillo (package (name "armadillo") - (version "7.800.2") + (version "9.100.4") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/arma/armadillo-" version ".tar.xz")) (sha256 (base32 - "1qqzy7dp891j9v7062mv1599hdwr97vqzrd3j2fl8c3gmc00dmzg")))) + "1pzvarfj4mf6xmhs6r8dxlgq6h994ajr8hsp09r4w0dw99za2r08")))) (build-system cmake-build-system) - (arguments `(#:tests? #f)) ;no test target + (arguments `(#:tests? #f)) ; no test target (inputs `(("openblas" ,openblas) ("lapack" ,lapack) -- cgit v1.2.3 From f133e244818fc2007b0a107b59304f705279e62e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 17 Aug 2018 00:31:31 +0200 Subject: gnu: armadillo: Update to 9.100.5. * gnu/packages/maths.scm (armadillo): Update to 9.100.5. --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 506f0fb8ff..39668c7dbf 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2769,14 +2769,14 @@ full text searching.") (define-public armadillo (package (name "armadillo") - (version "9.100.4") + (version "9.100.5") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/arma/armadillo-" version ".tar.xz")) (sha256 (base32 - "1pzvarfj4mf6xmhs6r8dxlgq6h994ajr8hsp09r4w0dw99za2r08")))) + "1ka1vd9fcmvp12qkcm4888dkfqwnalvv00x04wy29f3nx3qwczby")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ; no test target (inputs -- cgit v1.2.3 From b66741edc954f0a17f1ef567e8d612cac87c7b6a Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Wed, 15 Aug 2018 22:56:59 -0400 Subject: gnu: octave: Update to 4.4.1. * gnu/packages/maths.scm (octave): Update to 4.4.1. (qtoctave)[source]: Remove obsolete patch. * gnu/packages/patches/qtoctave-qt-5.11-fix.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it. --- gnu/local.mk | 1 - gnu/packages/maths.scm | 11 ++++------- gnu/packages/patches/qtoctave-qt-5.11-fix.patch | 26 ------------------------- 3 files changed, 4 insertions(+), 34 deletions(-) delete mode 100644 gnu/packages/patches/qtoctave-qt-5.11-fix.patch (limited to 'gnu/packages/maths.scm') diff --git a/gnu/local.mk b/gnu/local.mk index fc674ffff7..aa5188faba 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1097,7 +1097,6 @@ dist_patch_DATA = \ %D%/packages/patches/qemu-glibc-2.27.patch \ %D%/packages/patches/qt4-ldflags.patch \ %D%/packages/patches/qtbase-use-TZDIR.patch \ - %D%/packages/patches/qtoctave-qt-5.11-fix.patch \ %D%/packages/patches/qtscript-disable-tests.patch \ %D%/packages/patches/quagga-reproducible-build.patch \ %D%/packages/patches/quickswitch-fix-dmenu-check.patch \ diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 39668c7dbf..d4529e45b5 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1350,12 +1350,12 @@ can solve two kinds of problems: @end enumerate\n") (license license:bsd-3))) -;; For a fully featured Octave, users are strongly recommended also to install +;; For a fully featured Octave, users are strongly recommended also to install ;; the following packages: less, ghostscript, gnuplot. (define-public octave (package (name "octave") - (version "4.4.0") + (version "4.4.1") (source (origin (method url-fetch) @@ -1363,7 +1363,7 @@ can solve two kinds of problems: version ".tar.lz")) (sha256 (base32 - "0nm766737gbkq9wqry54a026k3dg7rb1065kngfpwgjz8b544xbp")))) + "0jsdgizlv02an2ppfjwk5qf209zpwi3317yb7jvlsjzxnir3lvhy")))) (build-system gnu-build-system) (inputs `(("lapack" ,lapack) @@ -1433,10 +1433,7 @@ script files.") (package (inherit octave) (name "qtoctave") (source (origin - (inherit (package-source octave)) - (patches (append (origin-patches (package-source octave)) - (search-patches - "qtoctave-qt-5.11-fix.patch"))))) + (inherit (package-source octave)))) (inputs `(("qscintilla" ,qscintilla) ("qt" ,qtbase) diff --git a/gnu/packages/patches/qtoctave-qt-5.11-fix.patch b/gnu/packages/patches/qtoctave-qt-5.11-fix.patch deleted file mode 100644 index 67317d1b36..0000000000 --- a/gnu/packages/patches/qtoctave-qt-5.11-fix.patch +++ /dev/null @@ -1,26 +0,0 @@ -This patch comes from upstream: -https://hg.savannah.gnu.org/hgweb/octave/rev/cdaa884568b1. - -# HG changeset patch -# User Mike Miller -# Date 1527214835 25200 -# Node ID cdaa884568b159549bd373f04386ff62417f6df9 -# Parent 9e39a53b4e007d3f79f88b711ab9fa5f2f24fbc9 -add Qt include needed to build against Qt 5.11 (bug #53978) - -* settings-dialog.cc: Add missing include for to fix build -failure with Qt 5.11. - -diff --git a/libgui/src/settings-dialog.cc b/libgui/src/settings-dialog.cc ---- a/libgui/src/settings-dialog.cc -+++ b/libgui/src/settings-dialog.cc -@@ -34,6 +34,8 @@ - #include "workspace-model.h" - #include "settings-dialog.h" - #include "ui-settings-dialog.h" -+ -+#include - #include - #include - #include - -- cgit v1.2.3 From 7fe491fbc80d4e7f036cca03638cd0bce7823822 Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Fri, 17 Aug 2018 19:38:35 -0400 Subject: gnu: cddlib: Update to 0.94i. * gnu/packages/maths.scm (cddlib): Update to 0.94i. --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index d4529e45b5..8f6ad81125 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -436,7 +436,7 @@ integer programming problems and computes Markov bases for statistics.") (define-public cddlib (package (name "cddlib") - (version "0.94h") + (version "0.94i") (source (origin (method url-fetch) @@ -444,7 +444,7 @@ integer programming problems and computes Markov bases for statistics.") (string-delete #\. version) ".tar.gz")) (sha256 (base32 - "1dasasscwfg793q8fwzgwf64xwj7w62yfvszpr8x8g38jka08vgy")))) + "00zdgiqb91vx6gd2103h3ijij0llspsxc6zz3iw2bll39fvkl4xq")))) (build-system gnu-build-system) (inputs `(("gmp" ,gmp))) -- cgit v1.2.3 From b13ba3f1baffdee1ef0900cf7d3d1d51ed4ea772 Mon Sep 17 00:00:00 2001 From: Kei Kebreau Date: Sat, 18 Aug 2018 21:21:52 -0400 Subject: gnu: gnuplot: Update to 5.2.4. * gnu/packages/maths.scm (gnuplot): Update to 5.2.4. --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 8f6ad81125..35a3b588c5 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -597,7 +597,7 @@ singular value problems.") (define-public gnuplot (package (name "gnuplot") - (version "5.2.2") + (version "5.2.4") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/gnuplot/gnuplot/" @@ -605,7 +605,7 @@ singular value problems.") version ".tar.gz")) (sha256 (base32 - "18diyy7aib9mn098x07g25c7jij1x7wbfpicz0z8gwxx08px45m4")))) + "1jvh8xmd2cvrhlsg88kxwh55wkwx31sg50v1n59slfippl0g058m")))) (build-system gnu-build-system) (inputs `(("readline" ,readline) ("cairo" ,cairo) -- cgit v1.2.3