Your message dated Sat, 03 Mar 2012 17:47:52 +0000
with message-id <[email protected]>
and subject line Bug#559640: fixed in gnuradio 3.5.1-1
has caused the Debian Bug report #559640,
regarding gnuradio-companion: fails to start, preferences parser problem 
('NoneType' object has no attribute 'get_flow_graph'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
559640: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=559640
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: gnuradio-companion
Version: 3.2.2.dfsg-1+b1
Severity: serious
Tags: patch
Justification: 2


When starting grc, an exeption is raised:
(just last lines)
line 281, in get_flow_graph
    return self.get_page().get_flow_graph()
AttributeError: 'NoneType' object has no attribute 'get_flow_graph'

The problem was reported on the GNU Radio mailing list on 2009-07-06 
and was reported to be fixed by Jonathan Corgan the next day.
The relating messages are 
Report:
http://lists.gnu.org/archive/html/discuss-gnuradio/2009-07/msg00060.html
Workaround:
http://lists.gnu.org/archive/html/discuss-gnuradio/2009-07/msg00063.html
Fix Report:
http://lists.gnu.org/archive/html/discuss-gnuradio/2009-07/msg00069.html

It's a problem with the preferences parser. 

Attached is the diff of the tag release 3.2.2 to release 3.2.1 of the debian 
directory.
I was able to fix the problem in doing the 'install' command from the rules 
file with 
the prefs.py file.

Regards
Patrick

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.31-1-686 (SMP w/1 CPU core)
Locale: LANG=de_AT.UTF-8, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnuradio-companion depends on:
ii  gnuradio                    3.2.2.dfsg-1 The GNU Software Radio Toolkit
ii  gnuradio-doc                3.2.2.dfsg-1 Software Defined Radio
ii  python                      2.5.4-2      An interactive high-level object-o
ii  python-central              0.6.14+nmu2  register and build utility for Pyt
ii  python-cheetah              2.0.1-2      text-based template engine and Pyt
ii  python-gtk2                 2.16.0-1     Python bindings for the GTK+ widge
ii  python-lxml                 2.2.2-2      pythonic binding for the libxml2 a
ii  usrp-doc                    3.2.2.dfsg-1 Software Defined Radio

gnuradio-companion recommends no packages.

gnuradio-companion suggests no packages.

-- no debconf information
Index: prefs.py
===================================================================
--- prefs.py	(.../tags/releases/3.2.2/debian)	(Arbeitskopie)
+++ prefs.py	(.../branches/releases/3.2/debian)	(Revision 11371)
@@ -1,126 +0,0 @@
-#
-# Copyright 2006,2009 Free Software Foundation, Inc.
-# 
-# This file is part of GNU Radio
-# 
-# GNU Radio 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, or (at your option)
-# any later version.
-# 
-# GNU Radio 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 Radio; see the file COPYING.  If not, write to
-# the Free Software Foundation, Inc., 51 Franklin Street,
-# Boston, MA 02110-1301, USA.
-# 
-
-import gnuradio_swig_python as gsp
-_prefs_base = gsp.gr_prefs
-
-
-import ConfigParser
-import os
-import os.path
-import sys
-
-
-def _user_prefs_filename():
-    return os.path.expanduser('~/.gnuradio/config.conf')
-        
-def _sys_prefs_dirname():
-    return '/etc/gnuradio/conf.d'
-
-def _bool(x):
-    """
-    Try to coerce obj to a True or False
-    """
-    if isinstance(x, bool):
-        return x
-    if isinstance(x, (float, int)):
-        return bool(x)
-    raise TypeError, x
-        
-
-class _prefs(_prefs_base):
-    """
-    Derive our 'real class' from the stubbed out base class that has support
-    for SWIG directors.  This allows C++ code to magically and transparently
-    invoke the methods in this python class.
-    """
-    def __init__(self):
-	_prefs_base.__init__(self)
-	self.cp = ConfigParser.RawConfigParser()
-	self.__getattr__ = lambda self, name: getattr(self.cp, name)
-
-    def _sys_prefs_filenames(self):
-        dir = _sys_prefs_dirname()
-        try:
-            fnames = os.listdir(dir)
-        except (IOError, OSError):
-            return []
-        fnames.sort()
-        return [os.path.join(dir, f) for f in fnames]
-
-    def _read_files(self):
-        filenames = self._sys_prefs_filenames()
-        filenames.append(_user_prefs_filename())
-        #print "filenames: ", filenames
-        self.cp.read(filenames)
-
-    # ----------------------------------------------------------------
-    # These methods override the C++ virtual methods of the same name
-    # ----------------------------------------------------------------
-    def has_section(self, section):
-        return self.cp.has_section(section)
-
-    def has_option(self, section, option):
-        return self.cp.has_option(section, option)
-
-    def get_string(self, section, option, default_val):
-        try:
-            return self.cp.get(section, option)
-        except:
-            return default_val
-
-    def get_bool(self, section, option, default_val):
-        try:
-            return self.cp.getboolean(section, option)
-        except:
-            return default_val
-
-    def get_long(self, section, option, default_val):
-        try:
-            return self.cp.getint(section, option)
-        except:
-            return default_val
-        
-    def get_double(self, section, option, default_val):
-        try:
-            return self.cp.getfloat(section, option)
-        except:
-            return default_val
-    # ----------------------------------------------------------------
-    #              End override of C++ virtual methods
-    # ----------------------------------------------------------------
-
-
-_prefs_db = _prefs()
-
-# if GR_DONT_LOAD_PREFS is set, don't load them.
-# (make check uses this to avoid interactions.)
-if os.getenv("GR_DONT_LOAD_PREFS", None) is None:
-    _prefs_db._read_files()
-    
-
-_prefs_base.set_singleton(_prefs_db)    # tell C++ what instance to use
-
-def prefs():
-    """
-    Return the global preference data base
-    """
-    return _prefs_db
Index: gen-install-files.sh
===================================================================
--- gen-install-files.sh	(.../tags/releases/3.2.2/debian)	(Arbeitskopie)
+++ gen-install-files.sh	(.../branches/releases/3.2/debian)	(Revision 11371)
@@ -335,7 +335,7 @@
 NAME=debian/gnuradio-radar-mono.install
 rm -f $NAME
 touch $NAME
-$EXTRACT gr-radar-mono/src/python/Makefile radar_mono_python_PYTHON >>$NAME
+$EXTRACT gr-radar-mono/src/python/Makefile dist_ourpython_PYTHON >>$NAME
 $EXTRACT gr-radar-mono/src/python/Makefile dist_bin_SCRIPTS >>$NAME
 echo usr/share/usrp/rev2/usrp_radar_mono.rbf >>$NAME
 echo usr/share/usrp/rev4/usrp_radar_mono.rbf >>$NAME
Index: changelog
===================================================================
--- changelog	(.../tags/releases/3.2.2/debian)	(Arbeitskopie)
+++ changelog	(.../branches/releases/3.2/debian)	(Revision 11371)
@@ -1,24 +1,11 @@
-gnuradio (3.2.2-1) stable; urgency=low
+gnuradio (3.2.1) unstable; urgency=low
 
-  * New upstream release 3.2.2
-  * See http://gnuradio.org/trac
-
- -- Johnathan Corgan <[email protected]>  Sat,  14 Jul 2009 16:00:00 -0800
-
-gnuradio (3.2.1-1) stable; urgency=low
-
-  * Fix broken prefs.py when installed using --prefix=/usr
-
- -- Johnathan Corgan <[email protected]>  Sat,  06 Jul 2009 16:00:00 -0800
-
-gnuradio (3.2.1) stable; urgency=low
-
   * New upstream release 3.2.1
   * See http://gnuradio.org/trac
 
- -- Johnathan Corgan <[email protected]>  Sat,  05 Jul 2009 18:00:00 -0800
+ -- Johnathan Corgan <[email protected]>  Sat,  23 May 2009 18:00:00 -0800
 
-gnuradio (3.2) stable; urgency=low
+gnuradio (3.2) unstable; urgency=low
 
   * New upstream release 3.2
   * See http://gnuradio.org/trac
Index: rules
===================================================================
--- rules	(.../tags/releases/3.2.2/debian)	(Arbeitskopie)
+++ rules	(.../branches/releases/3.2/debian)	(Revision 11371)
@@ -90,15 +90,10 @@
 	install -m 0644 -D debian/grc.conf \
 		debian/tmp/etc/gnuradio/conf.d/grc.conf
 
-	: # Install custom prefs.py FIXME
-	install -m 0644 -D debian/prefs.py \
-		debian/tmp/usr/lib/python2.6/dist-packages/gnuradio/gr/prefs.py
-
 	dh_install --sourcedir=debian/tmp
 	touch $@
 
 
-
 # Must not depend on anything. This is to be called by
 # binary-arch/binary-indep
 # in another 'make' thread.

--- End Message ---
--- Begin Message ---
Source: gnuradio
Source-Version: 3.5.1-1

We believe that the bug you reported is fixed in the latest version of
gnuradio, which is due to be installed in the Debian FTP archive:

gnuradio-dev_3.5.1-1_all.deb
  to main/g/gnuradio/gnuradio-dev_3.5.1-1_all.deb
gnuradio-doc_3.5.1-1_all.deb
  to main/g/gnuradio/gnuradio-doc_3.5.1-1_all.deb
gnuradio_3.5.1-1.debian.tar.gz
  to main/g/gnuradio/gnuradio_3.5.1-1.debian.tar.gz
gnuradio_3.5.1-1.dsc
  to main/g/gnuradio/gnuradio_3.5.1-1.dsc
gnuradio_3.5.1-1_amd64.deb
  to main/g/gnuradio/gnuradio_3.5.1-1_amd64.deb
gnuradio_3.5.1.orig.tar.gz
  to main/g/gnuradio/gnuradio_3.5.1.orig.tar.gz
libgnuradio-atsc3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-atsc3.5.1_3.5.1-1_amd64.deb
libgnuradio-audio3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-audio3.5.1_3.5.1-1_amd64.deb
libgnuradio-comedi3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-comedi3.5.1_3.5.1-1_amd64.deb
libgnuradio-core3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-core3.5.1_3.5.1-1_amd64.deb
libgnuradio-digital3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-digital3.5.1_3.5.1-1_amd64.deb
libgnuradio-noaa3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-noaa3.5.1_3.5.1-1_amd64.deb
libgnuradio-pager3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-pager3.5.1_3.5.1-1_amd64.deb
libgnuradio-qtgui3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-qtgui3.5.1_3.5.1-1_amd64.deb
libgnuradio-trellis3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-trellis3.5.1_3.5.1-1_amd64.deb
libgnuradio-uhd3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-uhd3.5.1_3.5.1-1_amd64.deb
libgnuradio-video-sdl3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-video-sdl3.5.1_3.5.1-1_amd64.deb
libgnuradio-vocoder3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgnuradio-vocoder3.5.1_3.5.1-1_amd64.deb
libgnuradio_3.5.1-1_all.deb
  to main/g/gnuradio/libgnuradio_3.5.1-1_all.deb
libgruel3.5.1_3.5.1-1_amd64.deb
  to main/g/gnuradio/libgruel3.5.1_3.5.1-1_amd64.deb
libvolk0.0.0_3.5.1-1_amd64.deb
  to main/g/gnuradio/libvolk0.0.0_3.5.1-1_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
A. Maitland Bottoms <[email protected]> (supplier of updated gnuradio package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sun, 26 Feb 2012 21:26:16 -0500
Source: gnuradio
Binary: gnuradio gnuradio-doc gnuradio-dev libgnuradio libgnuradio-atsc3.5.1 
libgnuradio-audio3.5.1 libgnuradio-comedi3.5.1 libgnuradio-core3.5.1 
libgnuradio-digital3.5.1 libgnuradio-noaa3.5.1 libgnuradio-pager3.5.1 
libgnuradio-qtgui3.5.1 libgnuradio-trellis3.5.1 libgnuradio-uhd3.5.1 
libgnuradio-video-sdl3.5.1 libgnuradio-vocoder3.5.1 libgruel3.5.1 libvolk0.0.0
Architecture: source amd64 all
Version: 3.5.1-1
Distribution: unstable
Urgency: low
Maintainer: A. Maitland Bottoms <[email protected]>
Changed-By: A. Maitland Bottoms <[email protected]>
Description: 
 gnuradio   - GNU Radio Software Radio Toolkit
 gnuradio-dev - GNU Software Defined Radio toolkit development
 gnuradio-doc - GNU Software Defined Radio toolkit documentation
 libgnuradio - Dummy package for gnuradio libraries
 libgnuradio-atsc3.5.1 - gnuradio atsc functions
 libgnuradio-audio3.5.1 - gnuradio audio functions
 libgnuradio-comedi3.5.1 - gnuradio comedi instrument control functions
 libgnuradio-core3.5.1 - gnuradio core functions
 libgnuradio-digital3.5.1 - gnuradio digital communications functions
 libgnuradio-noaa3.5.1 - gnuradio noaa satellite signals functions
 libgnuradio-pager3.5.1 - gnuradio pager radio functions
 libgnuradio-qtgui3.5.1 - gnuradio Qt graphical user interface functions
 libgnuradio-trellis3.5.1 - gnuradio trellis modulation functions
 libgnuradio-uhd3.5.1 - gnuradio universal hardware driver functions
 libgnuradio-video-sdl3.5.1 - gnuradio video functions
 libgnuradio-vocoder3.5.1 - gnuradio vocoder functions
 libgruel3.5.1 - gnuradio utilities etcetera functions
 libvolk0.0.0 - gnuradio vector optimized functions
Closes: 394849 557050 559640 590048 616832 631863 642580 642716 645332 647018
Changes: 
 gnuradio (3.5.1-1) unstable; urgency=low
 .
   * new upstream version, re-packaged from scratch with modern tools
            closes: #642716, #645332, #394849, #616832, #590048, #642580,
            #647018, #557050, #559640, #631863
   * CMake build
Checksums-Sha1: 
 39e57e36568b6c668f1cb18ba4f8cc20b67aea0d 2793 gnuradio_3.5.1-1.dsc
 a5ddbb45e52f8e9ce8f2838948e382c04ac3adb8 2566286 gnuradio_3.5.1.orig.tar.gz
 6a60bca85b235e83023bb7b68ad858a992f5f58e 51339 gnuradio_3.5.1-1.debian.tar.gz
 cb4fb7c4e866167fdafbbe7aef15be1ca74b9d90 3581792 gnuradio_3.5.1-1_amd64.deb
 94057190c3ebf1fa5cc9afb9c3bc741b72b2d37b 7644038 gnuradio-doc_3.5.1-1_all.deb
 a38ef22fc509f046b1006776a20532bd17f2652b 537138 gnuradio-dev_3.5.1-1_all.deb
 564a8f1b3aa1609abca935e3358191a5485d0815 7840 libgnuradio_3.5.1-1_all.deb
 1d60bed4122d832b5e99aa5766c9ee6be3bbfae8 86656 
libgnuradio-atsc3.5.1_3.5.1-1_amd64.deb
 b521dab01b160fe298a877cf89c986feb070979c 61668 
libgnuradio-audio3.5.1_3.5.1-1_amd64.deb
 c2dccfbaa8808c03eb8bf9518a04220e487b691b 16382 
libgnuradio-comedi3.5.1_3.5.1-1_amd64.deb
 59dd05ffe4a6e2f4018b4cadf90d3bc091426129 637208 
libgnuradio-core3.5.1_3.5.1-1_amd64.deb
 7beca5444d9b9f4b69ef1be28b003220da16a02e 81242 
libgnuradio-digital3.5.1_3.5.1-1_amd64.deb
 876f064250445644e8bc027b0d17ca2415e13f40 16710 
libgnuradio-noaa3.5.1_3.5.1-1_amd64.deb
 da92d1d7b8f43a2d8d4409241ca029abeb7e5d4b 22460 
libgnuradio-pager3.5.1_3.5.1-1_amd64.deb
 7920e3f5e6198c0939ef6ab3d4658dd57e8078b8 102922 
libgnuradio-qtgui3.5.1_3.5.1-1_amd64.deb
 8a8099a02949a4743d30c9bc1c33a5b3c0fc89c4 112040 
libgnuradio-trellis3.5.1_3.5.1-1_amd64.deb
 1ef8d6b8cb867c2bbe63a22386e5a134653ac718 61798 
libgnuradio-uhd3.5.1_3.5.1-1_amd64.deb
 6501f1c0a8696669b3c275f7ec78f9bd0c2104b1 18564 
libgnuradio-video-sdl3.5.1_3.5.1-1_amd64.deb
 a86d8484ae3f1ad7050de12243df8e1fb4e34159 75676 
libgnuradio-vocoder3.5.1_3.5.1-1_amd64.deb
 7772d21853bc16712f27ff622b61cde1f926a2c1 95116 libgruel3.5.1_3.5.1-1_amd64.deb
 6ca77f0072b8bd13bc8addfd66293baef0171047 242182 libvolk0.0.0_3.5.1-1_amd64.deb
Checksums-Sha256: 
 59612a63a152c7ac2a7ef83755af8035dd0c86bfefa7563679558a2b8ee4d414 2793 
gnuradio_3.5.1-1.dsc
 27aa571e605ce2bd1b89553d7ab7052d51a5d8939dd7fdfe2fbae1e5971e98f1 2566286 
gnuradio_3.5.1.orig.tar.gz
 e17c7092bf5d7c05a42b7eba288ad42eb1ccac79b77df3c38ae68fffd0efa4f4 51339 
gnuradio_3.5.1-1.debian.tar.gz
 247567d26d18cb77cf5727a6aa61095380903f4dd2cb51ee0992cb41e3b96cfb 3581792 
gnuradio_3.5.1-1_amd64.deb
 da069ce096b4b68b60545e84e16e7826f391ae9e62f2dfeaca30afdcbb3e8b4f 7644038 
gnuradio-doc_3.5.1-1_all.deb
 1ef9a147cf793d4c95782563e1d101dbe9bf6871c95c8bd7e071c6c924e5ffa4 537138 
gnuradio-dev_3.5.1-1_all.deb
 a185119e963ae58b3b01c1505d8b6a7b6eb70117fa0d63c73795ea8f670267e8 7840 
libgnuradio_3.5.1-1_all.deb
 6a3bfa3d70c197ce1bf2c4f85d86ff9fecf76c397c02d81fab99fbf082eb8b57 86656 
libgnuradio-atsc3.5.1_3.5.1-1_amd64.deb
 e02a70ca80d37a9025f1d077abbf09050a355a560cd9115f004da49c377b10c8 61668 
libgnuradio-audio3.5.1_3.5.1-1_amd64.deb
 11ace607d512f423f1e6a850c163334ba9d9a6de4b39705d62bfaa2dbe4820f8 16382 
libgnuradio-comedi3.5.1_3.5.1-1_amd64.deb
 21e8fea3f93137285d343da0bc1550535aeb5936b89c318e448515f393eba68e 637208 
libgnuradio-core3.5.1_3.5.1-1_amd64.deb
 e3e0b9dde8c799452350a4aaf6b947103944493aaf8dfc5f6802c22966e97387 81242 
libgnuradio-digital3.5.1_3.5.1-1_amd64.deb
 74b415856d3b647185ac66d0623955e2267d349379847e20bc3844d6c54d1fc0 16710 
libgnuradio-noaa3.5.1_3.5.1-1_amd64.deb
 733c78f0819973d6f2f50d920c36c5d12b05af4932831fc0a190b037818d13aa 22460 
libgnuradio-pager3.5.1_3.5.1-1_amd64.deb
 27686e3e7fd94a87d687889e63231a93a3ef69eb772f6c0e4d6b0f8983a6c3a2 102922 
libgnuradio-qtgui3.5.1_3.5.1-1_amd64.deb
 a658425d12485049057184489ded39cc5ba198fdd3362f5f1ca6ff17dc1aeed3 112040 
libgnuradio-trellis3.5.1_3.5.1-1_amd64.deb
 03e34491a9ce09f33813e5d67ddfaf20eba9dfe356223a58ac495a69b74f28a9 61798 
libgnuradio-uhd3.5.1_3.5.1-1_amd64.deb
 1d753528301218af3f3ab49e4f86966eaabc37ba434bb2ba0718ee253a74b6cd 18564 
libgnuradio-video-sdl3.5.1_3.5.1-1_amd64.deb
 cf8f206426fe166d9a811a5d20de9259459531020648d28bbadad9b36fab9b9f 75676 
libgnuradio-vocoder3.5.1_3.5.1-1_amd64.deb
 bb35207c4ee0b7547280f48e6a5bfdb873a55b86bb880d1bf521b0b12e96e569 95116 
libgruel3.5.1_3.5.1-1_amd64.deb
 788dc217a57820c9106cd0163aa3044bc169756bed024b7ba7de2181b02d720a 242182 
libvolk0.0.0_3.5.1-1_amd64.deb
Files: 
 dbf56e5023f120929f7102becf5b8414 2793 comm optional gnuradio_3.5.1-1.dsc
 6f87a8540cf26d727c962cf4dc521d26 2566286 comm optional 
gnuradio_3.5.1.orig.tar.gz
 5e8b434ad1eb900c12b6f66d158e4686 51339 comm optional 
gnuradio_3.5.1-1.debian.tar.gz
 743d3cf47a5e6a766ba24900805bc73b 3581792 comm optional 
gnuradio_3.5.1-1_amd64.deb
 98ea4480ea89ae53f6a9bc2a0b524f3b 7644038 doc optional 
gnuradio-doc_3.5.1-1_all.deb
 7407635d980bc6c8b1c2ce80cba88658 537138 libdevel optional 
gnuradio-dev_3.5.1-1_all.deb
 253f6efb0648d40231045d7ae73dfccb 7840 libs optional libgnuradio_3.5.1-1_all.deb
 474add763049a65682e0569789ded776 86656 libs optional 
libgnuradio-atsc3.5.1_3.5.1-1_amd64.deb
 4590f628de361345c0df833cf8836cbe 61668 libs optional 
libgnuradio-audio3.5.1_3.5.1-1_amd64.deb
 3b2ec0e8e3977664099a8d05be90f00e 16382 libs optional 
libgnuradio-comedi3.5.1_3.5.1-1_amd64.deb
 f6008ab2b9ab09e24e4cb24b741af265 637208 libs optional 
libgnuradio-core3.5.1_3.5.1-1_amd64.deb
 2ce74ae977f800686c67325ce2bfcbb5 81242 libs optional 
libgnuradio-digital3.5.1_3.5.1-1_amd64.deb
 08264a8a61a8609b4c4220828e91e313 16710 libs optional 
libgnuradio-noaa3.5.1_3.5.1-1_amd64.deb
 6e067aeef40d5e4d2c3fb4bc12a03d8e 22460 libs optional 
libgnuradio-pager3.5.1_3.5.1-1_amd64.deb
 319b3a576892d05a378066e3c965ee3d 102922 libs optional 
libgnuradio-qtgui3.5.1_3.5.1-1_amd64.deb
 fd19b88d6f7b5859b0be36fe154e3cc2 112040 libs optional 
libgnuradio-trellis3.5.1_3.5.1-1_amd64.deb
 b4e09c619aae2ac731de14ee493f6481 61798 libs optional 
libgnuradio-uhd3.5.1_3.5.1-1_amd64.deb
 cd68c204959530f2619bec36c294a20e 18564 libs optional 
libgnuradio-video-sdl3.5.1_3.5.1-1_amd64.deb
 eead50e0de589ef738409975c87aae67 75676 libs optional 
libgnuradio-vocoder3.5.1_3.5.1-1_amd64.deb
 9e2767df49e21c661021e576efc85bbf 95116 libs optional 
libgruel3.5.1_3.5.1-1_amd64.deb
 b5b3b3ea33e058bed9db1eb5fd06e912 242182 libs optional 
libvolk0.0.0_3.5.1-1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk9MZGcACgkQkwbJvNrxBUxkOQCfYtOBg9473aK/4QVvDqTwdHDT
a+oAn2uFkHQuJpRFn0hqukqeZieL//eF
=y+Hd
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to