unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add GNU Radio.
@ 2016-08-16 11:28 Manolis Ragkousis
  2016-08-16 12:59 ` Ricardo Wurmus
  0 siblings, 1 reply; 5+ messages in thread
From: Manolis Ragkousis @ 2016-08-16 11:28 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 83 bytes --]

Hello,

I noticed that we didn't have GNU Radio packaged, so here you go.

Manolis

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-GNU-Radio.patch --]
[-- Type: text/x-patch; name="0001-gnu-Add-GNU-Radio.patch", Size: 3203 bytes --]

From 7456142768bcdbd0782f475cd55c928f92c18472 Mon Sep 17 00:00:00 2001
From: Manolis Ragkousis <manolis837@gmail.com>
Date: Tue, 16 Aug 2016 14:23:17 +0300
Subject: [PATCH] gnu: Add GNU Radio.

* gnu/packages/gnuradio.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
---
 gnu/local.mk              |  1 +
 gnu/packages/gnuradio.scm | 53 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)
 create mode 100644 gnu/packages/gnuradio.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index 7416850..f298e69 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -149,6 +149,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/gnucash.scm			\
   %D%/packages/gnunet.scm			\
   %D%/packages/gnupg.scm			\
+  %D%/packages/gnuradio.scm			\
   %D%/packages/gnustep.scm			\
   %D%/packages/gnuzilla.scm			\
   %D%/packages/gnu-pw-mgr.scm			\
diff --git a/gnu/packages/gnuradio.scm b/gnu/packages/gnuradio.scm
new file mode 100644
index 0000000..9479b47
--- /dev/null
+++ b/gnu/packages/gnuradio.scm
@@ -0,0 +1,53 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages gnuradio)
+  #:use-module (guix licenses)
+  #:use-module (guix download)
+  #:use-module (guix packages)
+  #:use-module (gnu packages)
+  #:use-module (guix utils)
+  #:use-module (guix build-system cmake)
+  #:use-module (gnu packages python)
+  #:use-module (gnu packages boost))
+
+(define-public gnuradio
+  (package
+    (name "gnuradio")
+    (version "3.7.10")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://gnuradio.org/releases/gnuradio/gnuradio-"
+                           version ".tar.gz"))
+       (sha256
+        (base32
+         "0j8vyd66ci89d0jzvg8wiyranmrz1r5a51hmg21cd78spr8qij54"))))
+    (build-system cmake-build-system)
+    (native-inputs `(("boost" ,boost)
+                     ("python" ,python-2)
+                     ("python2-cheetah" ,python2-cheetah)))
+    (home-page "http://gnuradio.org/")
+    (synopsis "GNU Radio")
+    (description
+     "GNU Radio is a toolkit for implementing software radios.  Its signal
+processing blocks can be combined with low-cost external RF hardware to
+create software-defined radios.  Without hardware, it can be used for
+simulation.  Radio applications are primarily written in Python, with C++
+support for performance-critical processing tasks.")
+    (license gpl3+)))
-- 
2.9.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add GNU Radio.
  2016-08-16 11:28 [PATCH] gnu: Add GNU Radio Manolis Ragkousis
@ 2016-08-16 12:59 ` Ricardo Wurmus
       [not found]   ` <CAFtzXzPaEPS62w9P7-0RvdgCUEi+qoB97XUtweG3K3xF65602w@mail.gmail.com>
  2016-09-26 12:48   ` Ricardo Wurmus
  0 siblings, 2 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2016-08-16 12:59 UTC (permalink / raw)
  To: Manolis Ragkousis; +Cc: guix-devel


Manolis Ragkousis <manolis837@gmail.com> writes:

> I noticed that we didn't have GNU Radio packaged, so here you go.

Interesting.  I have a gnuradio branch here because it looked a lot more
complicated to get it to build.

Here’s my attempt:

+
+(define-public gnuradio
+  (package
+    (name "gnuradio")
+    (version "3.7.5")
+    (source  (origin
+               (method url-fetch)
+               (uri (string-append "http://gnuradio.org/releases/gnuradio/"
+                                   "gnuradio-" version ".tar.gz"))
+               (sha256
+                (base32
+                 "0hv2nyz2hp1mjinin2q7jimh9mr81rjqvghqmaglz8w70qcn4zs6"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "-DENABLE_VOLK=OFF")))
+    (inputs
+     `(("boost" ,boost)
+       ("python" ,python-2)
+       ("fftwf" ,fftwf)
+       ("gsl" ,gsl)
+       ("libusb" ,libusb)
+       ("alsa-lib" ,alsa-lib)
+       ("jack" ,jack-1)
+       ("graphviz" ,graphviz)
+       ("guile" ,guile-2.0)))
+    (native-inputs
+     `(("cppunit" ,cppunit)
+       ("doxygen" ,doxygen)
+       ("which" ,which)
+       ("pkg-config" ,pkg-config)
+       ("swig" ,swig)))
+    (synopsis "Software radio implementations")
+    (description
+     "GNU Radio is a toolkit for implementing software radios.  Its signal
+processing blocks can be combined with low-cost external RF hardware
+to create software-defined radios.  Without hardware, it can be used
+for simulation.  Radio applications are primarily written in Python,
+with C++ support for performance-critical processing tasks.")
+    (home-page "http://gnuradio.org/redmine/projects/gnuradio/wiki")
+    (license license:gpl3+)))

Shouldn’t there be more inputs?

(My patch was originally based on the last release that was published on
GNU ftp, so some of the inputs may no longer be used.)

~~ Ricardo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add GNU Radio.
       [not found]   ` <CAFtzXzPaEPS62w9P7-0RvdgCUEi+qoB97XUtweG3K3xF65602w@mail.gmail.com>
@ 2016-08-16 13:38     ` Manolis Ragkousis
  0 siblings, 0 replies; 5+ messages in thread
From: Manolis Ragkousis @ 2016-08-16 13:38 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

I am resending my response because I forgot to cc the list.

On 08/16/16 16:02, Manolis Ragkousis wrote:
> Hey Ricardo,
> 
> Maybe I should check again the output of my gnuradio package. I will
> report back.
> 
> Manolis
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add GNU Radio.
  2016-08-16 12:59 ` Ricardo Wurmus
       [not found]   ` <CAFtzXzPaEPS62w9P7-0RvdgCUEi+qoB97XUtweG3K3xF65602w@mail.gmail.com>
@ 2016-09-26 12:48   ` Ricardo Wurmus
  2016-09-26 12:53     ` Manolis Ragkousis
  1 sibling, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2016-09-26 12:48 UTC (permalink / raw)
  To: Manolis Ragkousis; +Cc: guix-devel


Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> writes:

> Manolis Ragkousis <manolis837@gmail.com> writes:
>
>> I noticed that we didn't have GNU Radio packaged, so here you go.
>
> Interesting.  I have a gnuradio branch here because it looked a lot more
> complicated to get it to build.

Hi Manolis,

I didn’t mean to block this patch.  If your GNU Radio package works,
please go ahead and push it!

~~ Ricardo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gnu: Add GNU Radio.
  2016-09-26 12:48   ` Ricardo Wurmus
@ 2016-09-26 12:53     ` Manolis Ragkousis
  0 siblings, 0 replies; 5+ messages in thread
From: Manolis Ragkousis @ 2016-09-26 12:53 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Hello Ricardo,

Because I was afk for 2 weeks, thanks to some personal matters, I didn't
have time to work on Guix at all.

I am slowly catching up and will push it when it's ready. Your concerns
were right, it doesn't work as expected.

Manolis

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-09-26 12:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-16 11:28 [PATCH] gnu: Add GNU Radio Manolis Ragkousis
2016-08-16 12:59 ` Ricardo Wurmus
     [not found]   ` <CAFtzXzPaEPS62w9P7-0RvdgCUEi+qoB97XUtweG3K3xF65602w@mail.gmail.com>
2016-08-16 13:38     ` Manolis Ragkousis
2016-09-26 12:48   ` Ricardo Wurmus
2016-09-26 12:53     ` Manolis Ragkousis

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).