From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dN3Tt-0003Jo-Ii for guix-patches@gnu.org; Mon, 19 Jun 2017 16:41:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dN3Tq-00029H-Er for guix-patches@gnu.org; Mon, 19 Jun 2017 16:41:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53941) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dN3Tq-00029D-B4 for guix-patches@gnu.org; Mon, 19 Jun 2017 16:41:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dN3Tp-0003kd-S7 for guix-patches@gnu.org; Mon, 19 Jun 2017 16:41:02 -0400 Subject: [bug#27428] [PATCH] gnu: gsl: Update to 2.4. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44922) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <1a1bdf27.AEAALq4UWmUAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABZSDbL@bnc3.mailjet.com>) id 1dN3Te-0003JV-3E for guix-patches@gnu.org; Mon, 19 Jun 2017 16:40:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <1a1bdf27.AEAALq4UWmUAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABZSDbL@bnc3.mailjet.com>) id 1dN3Tb-0001yR-0L for guix-patches@gnu.org; Mon, 19 Jun 2017 16:40:50 -0400 Received: from o174.p8.mailjet.com ([87.253.233.174]:42802) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from <1a1bdf27.AEAALq4UWmUAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABZSDbL@bnc3.mailjet.com>) id 1dN3Ta-0001vT-In for guix-patches@gnu.org; Mon, 19 Jun 2017 16:40:46 -0400 Message-Id: <1a1bdf27.AEAALq4UWmUAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABZSDbL@mailjet.com> From: Arun Isaac Date: Tue, 20 Jun 2017 02:10:24 +0530 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27428@debbugs.gnu.org * gnu/packages/maths.scm (gsl): Update to 2.4. --- gnu/packages/maths.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 37e92b3cf..c742047aa 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -259,24 +259,23 @@ semiconductors.") (define-public gsl (package (name "gsl") - (version "2.3") + (version "2.4") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gsl/gsl-" version ".tar.gz")) (sha256 (base32 - "1yxdzqjwmi2aid650fa9zyr8llw069x7lm489wx9nnfdi6vh09an")) + "16yfs5n444s03np1naj6yp1fsysd42kdscxzkg0k2yvfjixx0ijd")) (patches (search-patches "gsl-test-i686.patch")))) (build-system gnu-build-system) (arguments - `(#:parallel-tests? #f - ;; Currently there are numerous tests that fail on "exotic" + `(;; Currently there are numerous tests that fail on "exotic" ;; architectures such as aarch64 and ppc64le. ,@(if (string-prefix? "aarch64-linux" (or (%current-target-system) (%current-system= ))) - '(#:tests? #f) - '()))) + '(#:tests? #f) + '()))) (home-page "https://www.gnu.org/software/gsl/") (synopsis "Numerical library for C and C++") (description --=20 2.12.2 =