From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39026) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDiYt-0006FW-3i for guix-patches@gnu.org; Tue, 01 May 2018 23:36:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDiYo-0002tT-4T for guix-patches@gnu.org; Tue, 01 May 2018 23:36:11 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38359) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fDiYn-0002tD-V3 for guix-patches@gnu.org; Tue, 01 May 2018 23:36:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fDiYn-0001Nn-FZ for guix-patches@gnu.org; Tue, 01 May 2018 23:36:05 -0400 Subject: [bug#31340] [PATCH] gnu: gnuplot: Update to 2.2.2 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38667) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDiXZ-00067I-4a for guix-patches@gnu.org; Tue, 01 May 2018 23:34:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDiXV-00024M-WC for guix-patches@gnu.org; Tue, 01 May 2018 23:34:49 -0400 Received: from mail-qt0-x22a.google.com ([2607:f8b0:400d:c0d::22a]:34665) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fDiXV-00024C-Pr for guix-patches@gnu.org; Tue, 01 May 2018 23:34:45 -0400 Received: by mail-qt0-x22a.google.com with SMTP id m5-v6so16771682qti.1 for ; Tue, 01 May 2018 20:34:45 -0700 (PDT) Received: from localhost (dyn-160-39-62-188.dyn.columbia.edu. [160.39.62.188]) by smtp.gmail.com with ESMTPSA id q23-v6sm5828774qta.20.2018.05.01.20.34.43 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 01 May 2018 20:34:43 -0700 (PDT) From: Adam Massmann Date: Tue, 01 May 2018 23:34:41 -0400 Message-ID: <87efiurar2.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 31340@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, Attached below is a patch to update gnuplot to the current stable version 2.2.2. Thanks a lot for all the work on Guix! Best, Adam --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-gnuplot-Update-to-2.2.2.patch >From d55155d8c5fae8d2396c68ccbc182a8dd565be56 Mon Sep 17 00:00:00 2001 From: Adam Massmann Date: Tue, 1 May 2018 23:25:43 -0400 Subject: [PATCH] gnu: gnuplot: Update to 2.2.2 --- gnu/packages/maths.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 00f35659e..5664b73c3 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -562,7 +562,7 @@ singular value problems.") (define-public gnuplot (package (name "gnuplot") - (version "5.0.6") + (version "5.2.2") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/gnuplot/gnuplot/" @@ -570,7 +570,7 @@ singular value problems.") version ".tar.gz")) (sha256 (base32 - "0q5lr6nala3ln6f3yp6g17ziymb9r9gx9zylnw1y3hjmwl9lggjv")))) + "18diyy7aib9mn098x07g25c7jij1x7wbfpicz0z8gwxx08px45m4")))) (build-system gnu-build-system) (inputs `(("readline" ,readline) ("cairo" ,cairo) @@ -580,6 +580,9 @@ singular value problems.") (native-inputs `(("pkg-config" ,pkg-config) ("texlive" ,texlive-tiny))) + (arguments `(#:configure-flags (list (string-append + "--with-texdir=" %output + "/texmf-local/tex/latex/gnuplot")))) (home-page "http://www.gnuplot.info") (synopsis "Command-line driven graphing utility") (description "Gnuplot is a portable command-line driven graphing -- 2.11.0 --=-=-=--