GNU bug report logs - #31259
[PATCH] Add gnuradio

Previous Next

Package: guix-patches;

Reported by: Charlie Ritter <chewzerita <at> posteo.net>

Date: Wed, 25 Apr 2018 10:42:01 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

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 31259 in the body.
You can then email your comments to 31259 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#31259; Package guix-patches. (Wed, 25 Apr 2018 10:42:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Charlie Ritter <chewzerita <at> posteo.net>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 25 Apr 2018 10:42:02 GMT) Full text and rfc822 format available.

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

From: Charlie Ritter <chewzerita <at> posteo.net>
To: guix-patches <at> gnu.org
Subject: [PATCH] Add gnuradio
Date: Wed, 25 Apr 2018 06:35:47 -0400
[0001-gnu-Add-gnuradio.patch (text/x-patch, inline)]
From 20242ed16e29c90cfbbbd0e6d735e9f94187a77d Mon Sep 17 00:00:00 2001
From: Charlie Ritter <chewzerita <at> posteo.net>
Date: Wed, 25 Apr 2018 06:34:13 -0400
Subject: [PATCH] gnu: Add gnuradio.

* gnu/packages/ham-radio.scm (gnuradio): New variable.
---
 gnu/packages/ham-radio.scm | 45 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/ham-radio.scm b/gnu/packages/ham-radio.scm
index 0f96553c6..db38951e4 100644
--- a/gnu/packages/ham-radio.scm
+++ b/gnu/packages/ham-radio.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2017 Arun Isaac <arunisaac <at> systemreboot.net>
+;;; Copyright © 2018 Charlie Ritter <chewzerita <at> posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -20,10 +21,54 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (gnu packages algebra)
+  #:use-module (gnu packages boost)
+  #:use-module (gnu packages gtk)
   #:use-module (gnu packages libusb)
+  #:use-module (gnu packages maths)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages python)
+  #:use-module (gnu packages qt)
+  #:use-module (gnu packages swig)
   #:use-module (guix build-system cmake))
 
+(define-public gnuradio
+  (package
+    (name "gnuradio")
+    (version "3.7.9.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://gnuradio.org/releases/gnuradio/gnuradio-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "1fpvfslfffgvpszzmlzkjgm93cm16fqanbgllykm5qjas1201d10"))))
+    (build-system cmake-build-system)
+    (inputs
+     `(("boost" ,boost)
+       ("fftw" ,fftw)
+       ("gsl" ,gsl)
+       ("qt" ,qt-4)
+       ("qwt" ,qwt)))
+    (propagated-inputs
+     `(("python" ,python-2)
+       ("python2-pygtk" ,python2-pygtk)
+       ("python2-pyqt" ,python2-pyqt)
+       ("python2-lxml" ,python2-lxml)
+       ("python2-cheetah" ,python2-cheetah)
+       ("python2-numpy" ,python2-numpy)
+       ("swig" ,swig)))
+    (home-page "https://gnuradio.org/")
+    (synopsis "GNU Radio is a free and open-source toolkit for software radio")
+    (description "GNU Radio is a free & open-source software development
+toolkit that provides signal processing blocks to implement software radios.
+It can be used with readily-available low-cost external RF hardware to create
+software-defined radios, or without hardware in a simulation-like environment.
+It is widely used in hobbyist, academic and commercial environments to support
+both wireless communications research and real-world radio systems.")
+    (license license:gpl3+)))
+
 (define-public rtl-sdr
   (package
     (name "rtl-sdr")
-- 
2.17.0

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

Information forwarded to guix-patches <at> gnu.org:
bug#31259; Package guix-patches. (Wed, 25 Apr 2018 11:37:01 GMT) Full text and rfc822 format available.

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

From: Danny Milosavljevic <dannym <at> scratchpost.org>
To: Charlie Ritter <chewzerita <at> posteo.net>
Cc: 31259 <at> debbugs.gnu.org
Subject: Re: [bug#31259] [PATCH] Add gnuradio
Date: Wed, 25 Apr 2018 13:36:27 +0200
[Message part 1 (text/plain, inline)]
Hi!

Thanks for the patch.

I have the following suggestions:

* Please unbundle volk.
* Please build the documentation (that needs doxygen, ghostscript and texlive-tiny).  After that, remove docs/doxygen/html/_formulas.log because it contains timestamps.
* Please add dependency to alsa-lib.
* Please add dependency to libusb.
* Why not fftwf?
* We should investigate whether grc actually needs the inputs to be propagated (later).
* Please add dependency to cppunit.
* Please add dependency to orc.
* Swig probably is not needed at runtime - isn't a native-input enough?
[Message part 2 (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#31259; Package guix-patches. (Fri, 25 May 2018 12:04:02 GMT) Full text and rfc822 format available.

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

From: ludo <at> gnu.org (Ludovic Courtès)
To: Charlie Ritter <chewzerita <at> posteo.net>
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>, 31259 <at> debbugs.gnu.org
Subject: Re: [bug#31259] [PATCH] Add gnuradio
Date: Fri, 25 May 2018 14:03:46 +0200
Hello Charlie,

Did you have a chance to look at implementing Danny’s suggestions?

Looks like we’re almost there so it would be sad to let the patch
bitrot!

Thanks,
Ludo’.

Danny Milosavljevic <dannym <at> scratchpost.org> skribis:

> Hi!
>
> Thanks for the patch.
>
> I have the following suggestions:
>
> * Please unbundle volk.
> * Please build the documentation (that needs doxygen, ghostscript and texlive-tiny).  After that, remove docs/doxygen/html/_formulas.log because it contains timestamps.
> * Please add dependency to alsa-lib.
> * Please add dependency to libusb.
> * Why not fftwf?
> * We should investigate whether grc actually needs the inputs to be propagated (later).
> * Please add dependency to cppunit.
> * Please add dependency to orc.
> * Swig probably is not needed at runtime - isn't a native-input enough?




Information forwarded to guix-patches <at> gnu.org:
bug#31259; Package guix-patches. (Fri, 25 May 2018 15:05:02 GMT) Full text and rfc822 format available.

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

From: Charlie Ritter <chewzerita <at> posteo.net>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: Danny Milosavljevic <dannym <at> scratchpost.org>,
 Charlie Ritter <chewzerita <at> posteo.net>, 31259 <at> debbugs.gnu.org
Subject: Re: [bug#31259] [PATCH] Add gnuradio
Date: Fri, 25 May 2018 11:04:21 -0400
Ludovic Courtès writes:

> Hello Charlie,
>
> Did you have a chance to look at implementing Danny’s suggestions?
>
> Looks like we’re almost there so it would be sad to let the patch
> bitrot!
>
> Thanks,
> Ludo’.
>
> Danny Milosavljevic <dannym <at> scratchpost.org> skribis:
>
>> Hi!
>>
>> Thanks for the patch.
>>
>> I have the following suggestions:
>>
>> * Please unbundle volk.
>> * Please build the documentation (that needs doxygen, ghostscript and texlive-tiny).  After that, remove docs/doxygen/html/_formulas.log because it contains timestamps.
>> * Please add dependency to alsa-lib.
>> * Please add dependency to libusb.
>> * Why not fftwf?
>> * We should investigate whether grc actually needs the inputs to be propagated (later).
>> * Please add dependency to cppunit.
>> * Please add dependency to orc.
>> * Swig probably is not needed at runtime - isn't a native-input enough?

I have been busy with other things in my life at the moment and I cannot
contribute to free software as much as I would like to.  If someone else
wants to take on the challenge, they can.  Once I finish this school
year, I can pick back up the habit of contributing.

Charlie

I'm glad we don't have to play in the shade.
                -- Golfer Bobby Jones on being told that it was 105 degrees
                   in the shade.




Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Thu, 09 Apr 2020 21:32:02 GMT) Full text and rfc822 format available.

Notification sent to Charlie Ritter <chewzerita <at> posteo.net>:
bug acknowledged by developer. (Thu, 09 Apr 2020 21:32:02 GMT) Full text and rfc822 format available.

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

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: 31259-done <at> debbugs.gnu.org
Subject: Re: [bug#31259] [PATCH] Add gnuradio.
Date: Thu, 09 Apr 2020 23:31:26 +0200
[Message part 1 (text/plain, inline)]
Patch adding gnuradio 3.8.0.0 pushed as
d042caf6b73a3547a6b6ef4a0b90601303e066e6.
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 08 May 2020 11:24:06 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 325 days ago.

Previous Next


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