[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Accepted gnuradio 3.7.0-1 (source amd64 all)



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

Format: 1.8
Date: Wed, 03 Jul 2013 17:00:23 -0400
Source: gnuradio
Binary: gnuradio gnuradio-doc gnuradio-dev libgnuradio-analog3.7.0 libgnuradio-atsc3.7.0 libgnuradio-audio3.7.0 libgnuradio-comedi3.7.0 libgnuradio-blocks3.7.0 libgnuradio-channels3.7.0 libgnuradio-digital3.7.0 libgnuradio-fec3.7.0 libgnuradio-fcd3.7.0 libgnuradio-filter3.7.0 libgnuradio-fft3.7.0 libgnuradio-noaa3.7.0 libgnuradio-pager3.7.0 libgnuradio-pmt3.7.0 libgnuradio-qtgui3.7.0 libgnuradio-runtime3.7.0 libgnuradio-trellis3.7.0 libgnuradio-uhd3.7.0 libgnuradio-video-sdl3.7.0 libgnuradio-vocoder3.7.0 libgnuradio-wavelet3.7.0 libgnuradio-wxgui3.7.0 libvolk0.0.0
Architecture: source amd64 all
Version: 3.7.0-1
Distribution: experimental
Urgency: low
Maintainer: A. Maitland Bottoms <bottoms@debian.org>
Changed-By: A. Maitland Bottoms <bottoms@debian.org.org>
Description: 
 gnuradio   - GNU Radio Software Radio Toolkit
 gnuradio-dev - GNU Software Defined Radio toolkit development
 gnuradio-doc - GNU Software Defined Radio toolkit documentation
 libgnuradio-analog3.7.0 - gnuradio analog functions
 libgnuradio-atsc3.7.0 - gnuradio atsc functions
 libgnuradio-audio3.7.0 - gnuradio audio functions
 libgnuradio-blocks3.7.0 - gnuradio blocks functions
 libgnuradio-channels3.7.0 - gnuradio channels functions
 libgnuradio-comedi3.7.0 - gnuradio comedi instrument control functions
 libgnuradio-digital3.7.0 - gnuradio digital communications functions
 libgnuradio-fcd3.7.0 - gnuradio FunCube Dongle support
 libgnuradio-fec3.7.0 - gnuradio forward error correction support
 libgnuradio-fft3.7.0 - gnuradio fast Fourier transform functions
 libgnuradio-filter3.7.0 - gnuradio filter functions
 libgnuradio-noaa3.7.0 - gnuradio noaa satellite signals functions
 libgnuradio-pager3.7.0 - gnuradio pager radio functions
 libgnuradio-pmt3.7.0 - gnuradio pmt container library
 libgnuradio-qtgui3.7.0 - gnuradio Qt graphical user interface functions
 libgnuradio-runtime3.7.0 - gnuradio core runtime
 libgnuradio-trellis3.7.0 - gnuradio trellis modulation functions
 libgnuradio-uhd3.7.0 - gnuradio universal hardware driver functions
 libgnuradio-video-sdl3.7.0 - gnuradio video functions
 libgnuradio-vocoder3.7.0 - gnuradio vocoder functions
 libgnuradio-wavelet3.7.0 - gnuradio wavelet functions
 libgnuradio-wxgui3.7.0 - gnuradio wxgui functions
 libvolk0.0.0 - gnuradio vector optimized functions
Changes: 
 gnuradio (3.7.0-1) experimental; urgency=low
 .
   * New upstream release
   * In experimental until zeroc-ice 3.5 is available in unstable.
   * Code Structure Changes (Johnathan Corgan, Tom Rondeau)
 .
     The GNU Radio source code was restructured and flattened. All top-level
     components now use the same structure for consistency and ease of
     use. All blocks were moved out of gnuradio-core, which has been
     renamed to gnuradio-runtime. The blocks are now in their appropriate
     top-level components and reimplemented with the new 3.7 API style. The
     new API makes use of C++ namespaces and the virtual private
     implementation class pattern to better hide GNU Radio internals from
     user code.
 .
     Details about this can be found here:
     http://gnuradio.org/redmine/projects/gnuradio/wiki/Move_3-6_to_3-7
 .
     A Google doc showing all items that were moved from one place to another
     in the new style is here: http://ow.ly/mDpey
 .
     Blocks not listed were already in their own components. Many blocks were
     removed. All columns marked with ‘-----’ means that column is not
     applicable to that block or class. Any column (except those marked as
     Remove) that are blank means that we might be able to improve upon it,
     which normally indicates using VOLK or improving documentation.
 .
     A Google doc showing the new component and Doxygen categories for all
     components is here: http://ow.ly/mDplO
 .
   * Important new features:
   * ControlPort (Tom Rondeau, Tim O’Shea)
 .
     ControlPort is a new interface for standardizing remote procedure
     calls in GNU Radio:
 .
       Remote control and visualization.
       Use of ControlPort to enable debugging without requiring extra debug
       streams.
       Abstracted interface, but currently using ICE (www.zeroc.com).
       No additional CPU usage while no monitoring is occurring.
       Can connect multiple remotes to same GNU Radio application.
       Can also have single ControlPort app control multiple GR apps.
 .
     Each block creates interfaces to control data members, by defining
     ‘get’ and ‘set’ interface to query and update values of block
     variables. Preference files control the state of ControlPort in
     section [ControlPort] of gnuradio-runtime.conf.
 .
     ControlPort comes with a generic utility to allow you to see all
     interfaces of a flowgraph:
 .
       gr-ctrlport-monitor <ip address> -p <port>
 .
     Within a flowgraph, one can also use ControlPort probes to pass
     vectors of data to a ControlPort client, including complex IQ
     data. One useful probe calculates the power spectral density of a
     block output for remote display.
 .
   See the ControlPort page in the GNU Radio manual for more information:
 .
   http://gnuradio.org/doc/doxygen/page_ctrlport.html
 .
   * Performance Measurement Tools
 .
     Performance Counters were first built into GNU Radio in 3.6.5, but could
     only be accessed locally. Now, all Performance Counters can be
     exported over ControlPort.
 .
     Performance Counters must be compiled into GNU Radio using
     -DENABLE_PERFORMANCE_COUNTERS=True. They can be toggled on/off at
     runtime using the [PerfCounters] section in gnuradio-runtime.conf. Use
     option ‘export’ to export Performance Counters over ControlPort.
 .
     We now include a new tool to visualize the Performance Counters over
     ControlPort. This is installed as gr-perf-monitorx and requires the
     Python modules Scipy, NetworkX, and Matplotlib. Nodes of the flowgraph
     are represented as blue squares. The size of the square is
     proportional to the amount of time spent in the work function (either
     thread time or monotonic (wall clock) time). The size and depth of the
     shade of red of the edges is proportional to how full the block’s
     output buffer is.
 .
   * QTGUI Enhancements (Tom Rondeau, Nick Foster, Ben Reynwar)
 .
     The QTGUI widgets defined in gr-qtgui have had a major overhaul in
     3.7. All plots are now split out into individual components,
     including:
 .
       Time plots (amplitude versus time)
       FFT plots (or PSD) (log magnitude versus frequency)
       Waterfall plots (or spectrograms) (time versus frequency with
       magnitude as the color intensity)
       Constellation plots (imaginary (quadrature) versus real (inphase))
       Time raster plots (time vs. time)
 .
     Each plot can accept multiple connections that will overlay the
     signals on them. Zooming and unzooming are the same using the left and
     right mouse buttons. The center mouse button will pull up a context
     menu to allow manipulations of all kinds of properties of the display,
     such as line and marker styles, the size of the FFT, averaging, line
     transparency, etc. Significant work has gone into improving the
     performance, including the use of VOLK and more intelligent ways of
     handling the display to reduce the computational load.
 .
     QT defined QT Style Sheets (QSS) that allow us to specify looks, colors,
     and other properties of a display. Support for the use of QSS has been
     added to gr-qtgui to make establishing your preferences easier.
 .
     gr-qtgui/examples contains a number of examples showing how to use each
     type of plot and the QSS definition and interface.
 .
   * Uninstalled imports (Ben Reynwar)
 .
     The GNU Radio source tree was updated to allow us to directly import
     all GNU Radio components in-tree before install but using the same
     syntax. This change greatly reduces problems and complexity of writing
     Python code for use in both normal installations and QA code. This
     change will also allow us to automatically build the Sphinx Python
     manual during make.
 .
     * Updated gr_filter_design (Sreeraj Rajendran)
 .
     Overhauled the current gr_filter_design to add better visualization
     and interactive tools. Installed as part of the gr-filter component
     now, the gr_filter_design tool adds many new features for visualizing
     filters as well as support for IIR filter tap design. The new tool
     also includes a programmatic API that allows a user to launch the
     filter design tool inline in a program, design the new filter, and
     pass back an object containing the filter taps and parameters. Passing
     a callback function allows the designer to run in a separate thread
     and every time a new filter is designed, the callback function can be
     triggered to update a filter.
 .
     Examples of using the programmatic access to gr_filter_design can be
     found in gr-filter/examples/gr_filtdes_*.
 .
   * Other New Components and Features
     New blocks added
 .
     gr::analog::fast_noise_source - pre-generates a table of random
     samples from the selected PDF and randomly samples from them. This has
     somewhat less entropy than the normal noise_source block but is
     significantly faster.
 .
     gr::analog::agc3_*: Performs an initial linear gain ramp to quickly
     converge on a signal during startup and then falls back to an
     iterative loop similar to agc2.
 .
     The agc, agc2, and agc3 blocks have been made to use a unified
     interface that now includes a default maximum gain value (set to 2^16
     so that it can scale up even the LSB of a USRP’s device).
 .
   * New gr-fec component
 .
     This new top-level component mainly functions as a placeholder for new
     FEC block implementations. Currently contains only a couple of
     purpose-built FEC blocks.
 .
   * New gr-channels component (Tim O'Shea)
 .
     This new top-level component holds current and future channel model
     blocks. The standard AWGN channel_model has moved here. In addition,
     there are two new channel models:
 .
     fading_model - Uses configurable max Doppler shift, Rician power
     factor, and lists of the delays (in samples) and magnitudes of a power
     delay profile.
 .
     selective_fading model - Basic fading model that can have a number
     of sinusoids, max Doppler shift, and Rician power factor defined for
     it.
 .
   * GnuradioConfig.cmake (Tom Rondeau, Tim O’Shea)
 .
     New GnuradioConfig.cmake and GnuradioConfigVersion.cmake cmake files are
     installed into the system under $prefix/lib/cmake/gnuradio. These
     files can be used by any other project to easily test if any GNU Radio
     components are installed and the minimum API-compatible version
     required.
 .
     Set GR_REQUIRED_MODULES to any of the top-level components in GNU Radio
     in all caps. Then use find_package(Gnuradio) to search for them. The
     second optional argument is the API compatible version is was built
     against. For example, to test if gnuradio-runtime, gnuradio-blocks,
     and gnuradio-filter are installed, we would use:
 .
     set(GR_REQUIRED_MODULES RUNTIME BLOCKS FILTER)
     find_package(Gnuradio 3.7.0)
 .
   * Additional Fixes (Ben Reynwar, Tom Rondeau, Josh Blum, Nicholas Corgan)
 .
       Added symbol output stream from constellation_receiver so we can see
       the locked constellation as well as the output bits.
 .
       Introduced a new pfb_arb_resampler kernel class that can be used by
       other blocks. We have used this to significantly simplify the
       pfb_arb_resampler_ccf/fff blocks.
 .
       All PFB code has new QA and fixed a few minor bugs in the
       calculation of some of the filters.
 .
       Added more QAM support with Gray coding.
 .
       Reworked VOLK. All kernels are now in volk/kernels/volk, made all
       kernels consistent in use of num_points, and redid any kernels that
       used num_bytes.
 .
       Removed assumptions that were Linux-only to continue to support
       native MSVC builds.
 .
   * Obsoleted and/or removed functionality
 .
     The following items have been removed or redone:
 .
       gr-shd (removed)
       gruel (removed; all functionality now in gnuradio-runtime)
       gr-howto-write-a-block (functionality replaced by gr_modtool)
 .
     For more removed components, see: http://ow.ly/mDpey
 .
   * Deprecated functionality
 .
     These are items that are currently part of GNU Radio, but are planned
     to be removed in the next API release (3.8).
 .
     gr-noaa  - will be reimplemented as a stand-alone, out-of-tree
                project and supported with PyBOMBS
     gr-pager - will be reimplemented as a stand-alone, out-of-tree
                project and supported with PyBOMBS
Checksums-Sha1: 
 adf5767e980321f31f8c5e3cf8bc767813772f4c 3555 gnuradio_3.7.0-1.dsc
 8fec59a0dac49484bc98ecc82ecf0c3bd0c82168 2990545 gnuradio_3.7.0.orig.tar.gz
 725a9f7a3943f3495188c0fb5b726e3d300ce296 39409 gnuradio_3.7.0-1.debian.tar.gz
 0dcdc36747f509f58ded0ae25257c3c0d6d6a5d1 9121902 gnuradio_3.7.0-1_amd64.deb
 82072ac6bede32688497c323be7b1ed1e18ed254 14807332 gnuradio-doc_3.7.0-1_all.deb
 8fce0882d004f1341ec6f43ed6730d7ed78fc717 567696 gnuradio-dev_3.7.0-1_amd64.deb
 e4a51d017f30ca4ee304746b45ece7e64908aac8 137122 libgnuradio-analog3.7.0_3.7.0-1_amd64.deb
 7881d99e48ac6b569d98ded0a4bbcb58e4469be0 103316 libgnuradio-atsc3.7.0_3.7.0-1_amd64.deb
 75406cc79320a375857245fa3cbe6fbefcfbbf56 80630 libgnuradio-audio3.7.0_3.7.0-1_amd64.deb
 14b39d13ee33e17e578b958f172f3e2f1502b8ad 38770 libgnuradio-comedi3.7.0_3.7.0-1_amd64.deb
 84a6a5006557101077bc13f3165c4fad68bfecda 549390 libgnuradio-blocks3.7.0_3.7.0-1_amd64.deb
 fbee0347fbe21c97344a506b88d59be6edb7a478 69972 libgnuradio-channels3.7.0_3.7.0-1_amd64.deb
 391278ea6674a08623d3e206ee460029b28e5121 263780 libgnuradio-digital3.7.0_3.7.0-1_amd64.deb
 b7ef3e35e5fecad49478c545379af373e229e2b2 48426 libgnuradio-fec3.7.0_3.7.0-1_amd64.deb
 1e9c97147c365d1801282f8f81a1781b7317e685 48782 libgnuradio-fcd3.7.0_3.7.0-1_amd64.deb
 6f877db5e10430491dbe26eab5db3e7f20eae9c4 217186 libgnuradio-filter3.7.0_3.7.0-1_amd64.deb
 d23f6f2bf796fb42932c8ffa1b37e73f9d23f251 63546 libgnuradio-fft3.7.0_3.7.0-1_amd64.deb
 98c4d4508ac6aec229acb754c51c49236b45874a 39416 libgnuradio-noaa3.7.0_3.7.0-1_amd64.deb
 81d4b47936199ebe90627b6b691fb12c356ca820 44602 libgnuradio-pager3.7.0_3.7.0-1_amd64.deb
 6b0444cc725b689fd0ed9448d7aa102c91894da4 99502 libgnuradio-pmt3.7.0_3.7.0-1_amd64.deb
 5aaeedd374b879af8dc8189abbb7649fb7b3b2f2 220920 libgnuradio-qtgui3.7.0_3.7.0-1_amd64.deb
 5e5ebed1a82279d19a8f2fc285bcc9c3697caa01 525412 libgnuradio-runtime3.7.0_3.7.0-1_amd64.deb
 b23705ea8d0a0d7ec390c6f5275330185dcd7307 170060 libgnuradio-trellis3.7.0_3.7.0-1_amd64.deb
 e664525eab1203c0da6a78b616dfbd2d60fe2476 95344 libgnuradio-uhd3.7.0_3.7.0-1_amd64.deb
 7cd989efd0dfae474c492f118e23dfb05e367f5c 40522 libgnuradio-video-sdl3.7.0_3.7.0-1_amd64.deb
 1ac0c2b6a663cdd8ede540e389c10948cbd17305 78026 libgnuradio-vocoder3.7.0_3.7.0-1_amd64.deb
 7f977d8112b26a9c53f7bf1324f75e0a982a2b04 39646 libgnuradio-wavelet3.7.0_3.7.0-1_amd64.deb
 f065dab7ab34dce1459541349ef0431ff1f3bb69 66124 libgnuradio-wxgui3.7.0_3.7.0-1_amd64.deb
 0a315186816215c1653d115dac09ee165f042ed7 255212 libvolk0.0.0_3.7.0-1_amd64.deb
Checksums-Sha256: 
 5d35ef004c97b76c5adf5ba60b0317133785486cfb267a4ba153a3a93af3a768 3555 gnuradio_3.7.0-1.dsc
 c18e12f119df5ea49ea2ed8ccde3b13043d9c4adfbbb28ac3f15122c91e646a5 2990545 gnuradio_3.7.0.orig.tar.gz
 af25c94a43f51b5e73e9b0cf7610ace23b8871812bde5bb6f02714e9fd9b199a 39409 gnuradio_3.7.0-1.debian.tar.gz
 0dcb782b71086a2e531e8dea07160446d97900b29b236dc58194e19a5347f13e 9121902 gnuradio_3.7.0-1_amd64.deb
 498b5f9ee89a7b77310a2e599cf3f21f4383dba343e635f48f3e22d55909a815 14807332 gnuradio-doc_3.7.0-1_all.deb
 caab71ff80af051315e76f16cba57cfe70111b7b07354655a836a96d8602a47d 567696 gnuradio-dev_3.7.0-1_amd64.deb
 00d776dc62d310fd9ca3fa999c09d9c4038b5a2bca67a11cbd4107c3684dc95a 137122 libgnuradio-analog3.7.0_3.7.0-1_amd64.deb
 489d3602b8b6c44c110a3bf474a06890355edf3b681189d2ca0fbc9a1190bc30 103316 libgnuradio-atsc3.7.0_3.7.0-1_amd64.deb
 f2a83197fd93b7e2de7b8b469bf4708f1c0de597bd742f320a7dc642a103031a 80630 libgnuradio-audio3.7.0_3.7.0-1_amd64.deb
 2a2b5e922742a1e80b6b0f0c19e2d7af9a9183be258e4c15992dcbcb0f861da2 38770 libgnuradio-comedi3.7.0_3.7.0-1_amd64.deb
 77dd44a93480f240b9077c36b41c8197a47cd667f6929a7151ff7ca3418b7a20 549390 libgnuradio-blocks3.7.0_3.7.0-1_amd64.deb
 bc8f3ee2f366a5dcb93b63fd0e76ddc6c600a68e7a61c48c913da4f627c8e35a 69972 libgnuradio-channels3.7.0_3.7.0-1_amd64.deb
 b2278f15e8e0b3e8441626a151647dba82dbddd2f97e53451210638f849bedd7 263780 libgnuradio-digital3.7.0_3.7.0-1_amd64.deb
 f0d7f51022d521403c14f3fbb8837afee4cdb32ea9fdc890e01d983a00d11d52 48426 libgnuradio-fec3.7.0_3.7.0-1_amd64.deb
 92051ceac28d0157ad75de8038a1a3736cf879571eab27117b288708eb44bbcc 48782 libgnuradio-fcd3.7.0_3.7.0-1_amd64.deb
 b7491677049c08214ea9a90f02917729ed9190bb950c81c45197a09a29523472 217186 libgnuradio-filter3.7.0_3.7.0-1_amd64.deb
 8aba501b733659dc1628c0ee1583d4124d256c555791bf67b584f804b94d7bca 63546 libgnuradio-fft3.7.0_3.7.0-1_amd64.deb
 79e9bbe23be7224c06b536446cb59c0f2ed144efe753aa12fa8d1b2cfc821b3d 39416 libgnuradio-noaa3.7.0_3.7.0-1_amd64.deb
 19710b543965697dd95b5ddce1609c7bcee79904d81d7528e7665bce45018f7f 44602 libgnuradio-pager3.7.0_3.7.0-1_amd64.deb
 9995d09fb606eb31c29537bfc834feeb6a4917feab9c7e47cefb8d1e8716d488 99502 libgnuradio-pmt3.7.0_3.7.0-1_amd64.deb
 86e827f5feab4b2c34285db48d3ed3e7864c55cb80efed07d0114568d63fbf55 220920 libgnuradio-qtgui3.7.0_3.7.0-1_amd64.deb
 31647d1958be2fc3f92c59fefd91d67d581a6f3b04cdc3684bb2cca7db5675a7 525412 libgnuradio-runtime3.7.0_3.7.0-1_amd64.deb
 e6ef4f008ffbb4ffbf017d22d46c39c5eb85769e26873c9babc5613efb2ce105 170060 libgnuradio-trellis3.7.0_3.7.0-1_amd64.deb
 f36b4c4982ec0d132839cf882d140df5d89e0f965b1a7b94e689ba158537ef34 95344 libgnuradio-uhd3.7.0_3.7.0-1_amd64.deb
 2df414c279cb12eaa75853fb902c1dec88852410915a9bf888405786d1ba8e01 40522 libgnuradio-video-sdl3.7.0_3.7.0-1_amd64.deb
 6aec47a3ab9ab1e3961d68928616fde16e75f007d29391851e6c9346f76874e7 78026 libgnuradio-vocoder3.7.0_3.7.0-1_amd64.deb
 47075ca8ba29bce165ee17b80443b7edf024f7ed0049c36bb358fd57399b04d3 39646 libgnuradio-wavelet3.7.0_3.7.0-1_amd64.deb
 4b1374ece4302c8152374846be9be3494f32e854fe347d95fdd3b02ebaed9c38 66124 libgnuradio-wxgui3.7.0_3.7.0-1_amd64.deb
 2f358aaea3b7233381bb4e8935ef80140401b537b23a53deb132d3ce2374c586 255212 libvolk0.0.0_3.7.0-1_amd64.deb
Files: 
 404fe736cf3108bdf1872295dc551c0e 3555 comm optional gnuradio_3.7.0-1.dsc
 c2856ee14b415a64abf5dc9af0f5374c 2990545 comm optional gnuradio_3.7.0.orig.tar.gz
 d9d5e303bf528917f4e731f2f6c4a0a6 39409 comm optional gnuradio_3.7.0-1.debian.tar.gz
 5febeebf1f8a09de288d5f806db306d9 9121902 comm optional gnuradio_3.7.0-1_amd64.deb
 9b0180c3d2f74a00d9157c289d1dd590 14807332 doc optional gnuradio-doc_3.7.0-1_all.deb
 821dc095ab977a9e0d7af3760acbc2ef 567696 libdevel optional gnuradio-dev_3.7.0-1_amd64.deb
 224f5e49ea1cbf5fb9afa3c97fec4740 137122 libs optional libgnuradio-analog3.7.0_3.7.0-1_amd64.deb
 b97eafa4452046da2174547dc869caf3 103316 libs optional libgnuradio-atsc3.7.0_3.7.0-1_amd64.deb
 0df36c85e2ca84b84a5bafd3e3ab192d 80630 libs optional libgnuradio-audio3.7.0_3.7.0-1_amd64.deb
 6142c7358f4edbab313d88145dccbe7e 38770 libs optional libgnuradio-comedi3.7.0_3.7.0-1_amd64.deb
 ffdcb2bd87ee012c35dd9a397b2070f9 549390 libs optional libgnuradio-blocks3.7.0_3.7.0-1_amd64.deb
 1a8dea2fcba28d509172719d79ff8355 69972 libs optional libgnuradio-channels3.7.0_3.7.0-1_amd64.deb
 991189b90b3a274c976235a5106d9531 263780 libs optional libgnuradio-digital3.7.0_3.7.0-1_amd64.deb
 abe33e835d6d186aec8894ddaef772d2 48426 libs optional libgnuradio-fec3.7.0_3.7.0-1_amd64.deb
 7d8992961e5d425a8743b91a43dfa840 48782 libs optional libgnuradio-fcd3.7.0_3.7.0-1_amd64.deb
 75e41ec14406f03cee5cd196f15d705a 217186 libs optional libgnuradio-filter3.7.0_3.7.0-1_amd64.deb
 30d506ad07579d62faf24c270eb6f973 63546 libs optional libgnuradio-fft3.7.0_3.7.0-1_amd64.deb
 190d669eb73dcaff0b8379bc86b2286c 39416 libs optional libgnuradio-noaa3.7.0_3.7.0-1_amd64.deb
 b49b2a281281d6d507d8a48d4fec586e 44602 libs optional libgnuradio-pager3.7.0_3.7.0-1_amd64.deb
 139ea994f4738ef1cf58f05d305aeed5 99502 libs optional libgnuradio-pmt3.7.0_3.7.0-1_amd64.deb
 0b76f3e285b3e3455ebbf12afd2667dd 220920 libs optional libgnuradio-qtgui3.7.0_3.7.0-1_amd64.deb
 265066a318f0a9ab97afb2fb4a76a492 525412 libs optional libgnuradio-runtime3.7.0_3.7.0-1_amd64.deb
 728cd82ccd829ddcfb06ab15b11989dc 170060 libs optional libgnuradio-trellis3.7.0_3.7.0-1_amd64.deb
 97a7d5d93d57f9e59f8395601aefa361 95344 libs optional libgnuradio-uhd3.7.0_3.7.0-1_amd64.deb
 d2862ce03c8d4cce1689e1885fd60abe 40522 libs optional libgnuradio-video-sdl3.7.0_3.7.0-1_amd64.deb
 9d529297a6bd05c708bc10d538e472ef 78026 libs optional libgnuradio-vocoder3.7.0_3.7.0-1_amd64.deb
 504f20487a5c16f8e2f0c1e7f17e9eb5 39646 libs optional libgnuradio-wavelet3.7.0_3.7.0-1_amd64.deb
 76667e3acffbf568d163ffce5d1b115b 66124 libs optional libgnuradio-wxgui3.7.0_3.7.0-1_amd64.deb
 35fad218d016bcb2b8b70208912405d3 255212 libs optional libvolk0.0.0_3.7.0-1_amd64.deb

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

iEYEARECAAYFAlHU014ACgkQkwbJvNrxBUyvZgCeLuQXQlcB4czdeXWKjIt3Jn/B
RkEAn0XRwjg8ndplN7S5IbWooFO8XoBK
=F/uQ
-----END PGP SIGNATURE-----


Reply to: