From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: 01/02: gnu: Add itpp. Date: Sun, 19 Mar 2017 16:46:07 -0400 Message-ID: <878to1571s.fsf@netris.org> References: <20170318093207.31474.12254@vcs0.savannah.gnu.org> <20170318093208.C125820945@vcs0.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49871) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cphiZ-0007Wt-Ug for guix-devel@gnu.org; Sun, 19 Mar 2017 16:46:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cphiW-0004vq-RR for guix-devel@gnu.org; Sun, 19 Mar 2017 16:46:24 -0400 In-Reply-To: <20170318093208.C125820945@vcs0.savannah.gnu.org> (John Darrington's message of "Sat, 18 Mar 2017 05:32:08 -0400 (EDT)") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: John Darrington Cc: guix-devel@gnu.org john@darrington.wattle.id.au (John Darrington) writes: > jmd pushed a commit to branch master > in repository guix. > > commit a53d6719bc6b6b4afdc58e257ac712df316c8858 > Author: John Darrington > Date: Tue Mar 7 07:51:51 2017 +0100 > > gnu: Add itpp. >=20=20=20=20=20 > * gnu/packages/maths.scm (itpp): New variable. > --- > gnu/packages/maths.scm | 30 +++++++++++++++++++++++++++++- > 1 file changed, 29 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm > index adc8156..fe85983 100644 > --- a/gnu/packages/maths.scm > +++ b/gnu/packages/maths.scm > @@ -1,7 +1,7 @@ > ;;; GNU Guix --- Functional package management for GNU > ;;; Copyright =C2=A9 2013, 2014, 2015, 2016 Andreas Enge > ;;; Copyright =C2=A9 2013 Nikita Karetnikov > -;;; Copyright =C2=A9 2014, 2016 John Darrington > +;;; Copyright =C2=A9 2014, 2016, 2017 John Darrington > ;;; Copyright =C2=A9 2014, 2015, 2016 Eric Bavier > ;;; Copyright =C2=A9 2014 Federico Beffa > ;;; Copyright =C2=A9 2014 Mathieu Lirzin > @@ -761,6 +761,34 @@ Swath).") > HDF5 file is encoded according to the HDF File Format Specification.") > (license (license:x11-style "file://COPYING")))) >=20=20 > +(define-public itpp > + (package > + (name "itpp") > + (version "4.3.1") > + (source (origin > + (method url-fetch) > + (uri (string-append "mirror://sourceforge/itpp/itpp/" > + version "/itpp-" > + version ".tar.gz")) > + (sha256 > + (base32 > + "14ddy2xnb6sgp4hiax9v5sv4pr4l4dd4ps76nfha3nrpr1ikhcqm")))) Please be more careful with the indentation above. Mark