* [bug#31259] [PATCH] Add gnuradio
@ 2018-04-25 10:35 Charlie Ritter
2018-04-25 11:36 ` Danny Milosavljevic
2020-04-09 21:31 ` bug#31259: " Guillaume Le Vaillant
0 siblings, 2 replies; 5+ messages in thread
From: Charlie Ritter @ 2018-04-25 10:35 UTC (permalink / raw)
To: 31259
[-- Attachment #1.1: 0001-gnu-Add-gnuradio.patch --]
[-- Type: text/x-patch, Size: 2911 bytes --]
From 20242ed16e29c90cfbbbd0e6d735e9f94187a77d Mon Sep 17 00:00:00 2001
From: Charlie Ritter <chewzerita@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@systemreboot.net>
+;;; Copyright © 2018 Charlie Ritter <chewzerita@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
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#31259] [PATCH] Add gnuradio
2018-04-25 10:35 [bug#31259] [PATCH] Add gnuradio Charlie Ritter
@ 2018-04-25 11:36 ` Danny Milosavljevic
2018-05-25 12:03 ` Ludovic Courtès
2020-04-09 21:31 ` bug#31259: " Guillaume Le Vaillant
1 sibling, 1 reply; 5+ messages in thread
From: Danny Milosavljevic @ 2018-04-25 11:36 UTC (permalink / raw)
To: Charlie Ritter; +Cc: 31259
[-- Attachment #1: Type: text/plain, Size: 588 bytes --]
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?
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#31259] [PATCH] Add gnuradio
2018-04-25 11:36 ` Danny Milosavljevic
@ 2018-05-25 12:03 ` Ludovic Courtès
2018-05-25 15:04 ` Charlie Ritter
0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2018-05-25 12:03 UTC (permalink / raw)
To: Charlie Ritter; +Cc: 31259
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@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?
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#31259] [PATCH] Add gnuradio
2018-05-25 12:03 ` Ludovic Courtès
@ 2018-05-25 15:04 ` Charlie Ritter
0 siblings, 0 replies; 5+ messages in thread
From: Charlie Ritter @ 2018-05-25 15:04 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: Charlie Ritter, 31259
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@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.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#31259: [PATCH] Add gnuradio.
2018-04-25 10:35 [bug#31259] [PATCH] Add gnuradio Charlie Ritter
2018-04-25 11:36 ` Danny Milosavljevic
@ 2020-04-09 21:31 ` Guillaume Le Vaillant
1 sibling, 0 replies; 5+ messages in thread
From: Guillaume Le Vaillant @ 2020-04-09 21:31 UTC (permalink / raw)
To: 31259-done
[-- Attachment #1: Type: text/plain, Size: 82 bytes --]
Patch adding gnuradio 3.8.0.0 pushed as
d042caf6b73a3547a6b6ef4a0b90601303e066e6.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-04-09 21:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-25 10:35 [bug#31259] [PATCH] Add gnuradio Charlie Ritter
2018-04-25 11:36 ` Danny Milosavljevic
2018-05-25 12:03 ` Ludovic Courtès
2018-05-25 15:04 ` Charlie Ritter
2020-04-09 21:31 ` bug#31259: " Guillaume Le Vaillant
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).