GNU bug report logs - #26114
[PATCH 1/7] gnu: Add itpp.

Previous Next

Package: guix-patches;

Reported by: John Darrington <jmd <at> gnu.org>

Date: Wed, 15 Mar 2017 20:07:05 UTC

Severity: normal

Tags: patch

Done: John Darrington <john <at> darrington.wattle.id.au>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 26114 in the body.
You can then email your comments to 26114 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#26114; Package guix-patches. (Wed, 15 Mar 2017 20:07:05 GMT) Full text and rfc822 format available.

Acknowledgement sent to John Darrington <jmd <at> gnu.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 15 Mar 2017 20:07:05 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: John Darrington <jmd <at> gnu.org>
To: guix-patches <at> gnu.org
Cc: John Darrington <jmd <at> gnu.org>
Subject: [PATCH 1/7] gnu: Add itpp.
Date: Wed, 15 Mar 2017 21:05:18 +0100
* 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 d274d50..8e7580c 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas <at> enge.fr>
 ;;; Copyright © 2013 Nikita Karetnikov <nikita <at> karetnikov.org>
-;;; Copyright © 2014, 2016 John Darrington <jmd <at> gnu.org>
+;;; Copyright © 2014, 2016, 2017 John Darrington <jmd <at> gnu.org>
 ;;; Copyright © 2014, 2015, 2016 Eric Bavier <bavier <at> member.fsf.org>
 ;;; Copyright © 2014 Federico Beffa <beffa <at> fbengineering.ch>
 ;;; Copyright © 2014 Mathieu Lirzin <mathieu.lirzin <at> openmailbox.org>
@@ -734,6 +734,34 @@ Swath).")
 HDF5 file is encoded according to the HDF File Format Specification.")
     (license (license:x11-style "file://COPYING"))))
 
+(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"))))
+    (build-system cmake-build-system)
+    (arguments `(#:tests? #f)) ; Tests require googletest *sources*
+    (inputs `(("lapack" ,lapack)
+              ("fftw" ,fftw)))
+    (native-inputs `(("texlive-minimal" ,texlive-minimal)
+                     ("doxygen" ,doxygen)))
+    (home-page "http://itpp.sourceforge.net")
+    (synopsis "C++ library of maths, signal processing and communication classes")
+    (description "IT++ is a C++ library of mathematical, signal processing and
+communication classes and functions.  Its main use is in simulation of
+communication systems and for performing research in the area of
+communications.  The kernel of the library consists of generic vector and
+matrix classes, and a set of accompanying routines.  Such a kernel makes IT++
+similar to MATLAB, GNU Octave or SciPy.")
+    (license license:gpl3+)))
+
 (define-public netcdf
   (package
     (name "netcdf")
-- 
2.1.4





Information forwarded to guix-patches <at> gnu.org:
bug#26114; Package guix-patches. (Fri, 17 Mar 2017 18:40:02 GMT) Full text and rfc822 format available.

Message #8 received at 26114 <at> debbugs.gnu.org (full text, mbox):

From: Kei Kebreau <kei <at> openmailbox.org>
To: John Darrington <jmd <at> gnu.org>
Cc: 26114 <at> debbugs.gnu.org
Subject: Re: bug#26114: [PATCH 1/7] gnu: Add itpp.
Date: Fri, 17 Mar 2017 14:39:37 -0400
[Message part 1 (text/plain, inline)]
John Darrington <jmd <at> gnu.org> writes:

> * 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 d274d50..8e7580c 100644
> --- a/gnu/packages/maths.scm
> +++ b/gnu/packages/maths.scm
> @@ -1,7 +1,7 @@
>  ;;; GNU Guix --- Functional package management for GNU
>  ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas <at> enge.fr>
>  ;;; Copyright © 2013 Nikita Karetnikov <nikita <at> karetnikov.org>
> -;;; Copyright © 2014, 2016 John Darrington <jmd <at> gnu.org>
> +;;; Copyright © 2014, 2016, 2017 John Darrington <jmd <at> gnu.org>
>  ;;; Copyright © 2014, 2015, 2016 Eric Bavier <bavier <at> member.fsf.org>
>  ;;; Copyright © 2014 Federico Beffa <beffa <at> fbengineering.ch>
>  ;;; Copyright © 2014 Mathieu Lirzin <mathieu.lirzin <at> openmailbox.org>
> @@ -734,6 +734,34 @@ Swath).")
>  HDF5 file is encoded according to the HDF File Format Specification.")
>      (license (license:x11-style "file://COPYING"))))
>  
> +(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"))))
> +    (build-system cmake-build-system)
> +    (arguments `(#:tests? #f)) ; Tests require googletest *sources*
> +    (inputs `(("lapack" ,lapack)
> +              ("fftw" ,fftw)))
> +    (native-inputs `(("texlive-minimal" ,texlive-minimal)
> +                     ("doxygen" ,doxygen)))
> +    (home-page "http://itpp.sourceforge.net")
> +    (synopsis "C++ library of maths, signal processing and communication classes")
> +    (description "IT++ is a C++ library of mathematical, signal processing and
> +communication classes and functions.  Its main use is in simulation of
> +communication systems and for performing research in the area of
> +communications.  The kernel of the library consists of generic vector and
> +matrix classes, and a set of accompanying routines.  Such a kernel makes IT++
> +similar to MATLAB, GNU Octave or SciPy.")
> +    (license license:gpl3+)))
> +
>  (define-public netcdf
>    (package
>      (name "netcdf")

LGTM.
[signature.asc (application/pgp-signature, inline)]

Reply sent to John Darrington <john <at> darrington.wattle.id.au>:
You have taken responsibility. (Sat, 18 Mar 2017 09:41:02 GMT) Full text and rfc822 format available.

Notification sent to John Darrington <jmd <at> gnu.org>:
bug acknowledged by developer. (Sat, 18 Mar 2017 09:41:03 GMT) Full text and rfc822 format available.

Message #13 received at 26114-done <at> debbugs.gnu.org (full text, mbox):

From: John Darrington <john <at> darrington.wattle.id.au>
To: 26114-done <at> debbugs.gnu.org
Subject: Done
Date: Sat, 18 Mar 2017 10:40:54 +0100
I pushed this.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 15 Apr 2017 11:24:03 GMT) Full text and rfc822 format available.

This bug report was last modified 8 years and 69 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.