pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/ham gnuradio-*: update to 3.9.2.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c579ebc63b31
branches:  trunk
changeset: 455040:c579ebc63b31
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Sun Jun 27 08:08:59 2021 +0000

description:
gnuradio-*: update to 3.9.2.0

Changed
 SoapySDR support (gr-soapy)
GRC
  Parameter expressions and/or values can be displayed in blocks on the flowgraph. Previously, only values were displayed. Look for the "Show Parameter ..." toggles under the View menu.
  Deprecated blocks are shown in a distinct color (orange), and the optional deprecated property has been added to block yaml
  Dark theme works better, especially for parameter fields
  Vector length is now correctly applied to all input ports
  Validation has been improved. Raw types are validated. Port connections are checked by type rather than by item size.
  Variable names that cause name conflicts in Python code (e.g., with package names) are rejected
  Bus logic fixes
  Blocks can no longer be dragged off the screen and lost forever
gnuradio-runtime
  Remove pmt::pmt_* functions, which were not actually implemented. This is technically an API change, but any use of the API would have resulted in a link error.
  Remove Python bindings for internal buffer functions
gr-analog
  Added an example for PLL Frequency Detector
  Better names for parameters in PLL GRC blocks
gr-blocks
  Consistent naming for Vector Length parameter in GRC blocks
  count_bits uses VOLK popcnt for better performance (used for example in the Correlate Access Code block)
  Rotator block phase increment parameter is controllable via a message, and a tag can be added at the point where the increment is adjusted
gr-digital
  MPSK example updated to use a Linear Equalizer (replacing deprecated block)
gr-filter
  Filter Delay documentation improvement
  Interpolating FIR filter can generate C++ code
gr-dtv
  VL-SNR bugs fixed (incorrect constants).
gr-qtgui
  Improve autoscaling for vector sinks
  Fix floating-point resolution problems in several widgets, due to interpretation of PMT doubles as floats
gr-uhd
  Add policy enum to Python bindings for tune_request
  Additional time spec options on UHD blocks (PC Clock on Next PPS, GPS Time on Next PPS)
  Fix up code that was generating warnings
  Fix command handler logic to apply commands from messages to the correct channel
gr_filter_design
  "File/Save" is disabled until the taps have been computed, and the GUI is reset after a save, to make it clearer which data is being saved.
  Entries are hidden for parameters that do not apply to the selected filter type.
  Save window type as an integer instead of a Python enum name
gr_modtool
  Improve validation of module and block names
Build System and Infrastructure
  Improved messages related to dependencies MPIR and GMP. Only one of these packages is required, and the previous error messages were confusing.
  Cleaner builds for Windows and Conda. A number of general cmake improvements have resulted from this work.
  In-tree packaging files for DEB and RPM, used with Launchpad and COPR
  Added man pages for GNU Radio tools
  Test code generation for all in-tree GRC examples
  In GrPybind.cmake, PYBIND11_INCLUDE_DIR (incorrect) was changed to
  pybind11_INCLUDE_DIR

diffstat:

 ham/gnuradio-channels/Makefile    |    3 +-
 ham/gnuradio-channels/PLIST       |    4 +-
 ham/gnuradio-companion/Makefile   |    3 +-
 ham/gnuradio-core/Makefile        |    3 +-
 ham/gnuradio-core/Makefile.common |    3 +-
 ham/gnuradio-core/PLIST           |   17 +-
 ham/gnuradio-core/buildlink3.mk   |    6 +-
 ham/gnuradio-core/distinfo        |   10 +-
 ham/gnuradio-core/version.mk      |    4 +-
 ham/gnuradio-ctrlport/Makefile    |    3 +-
 ham/gnuradio-digital/Makefile     |    3 +-
 ham/gnuradio-digital/PLIST        |    4 +-
 ham/gnuradio-doxygen/Makefile     |    3 +-
 ham/gnuradio-doxygen/PLIST        |  256 ++++++++++++++++++++++++++++++-------
 ham/gnuradio-dtv/Makefile         |    3 +-
 ham/gnuradio-dtv/PLIST            |    4 +-
 ham/gnuradio-fec/Makefile         |    3 +-
 ham/gnuradio-fec/PLIST            |    4 +-
 ham/gnuradio-network/Makefile     |    3 +-
 ham/gnuradio-network/PLIST        |    4 +-
 ham/gnuradio-qtgui/Makefile       |    3 +-
 ham/gnuradio-qtgui/PLIST          |    4 +-
 ham/gnuradio-trellis/Makefile     |    3 +-
 ham/gnuradio-trellis/PLIST        |    4 +-
 ham/gnuradio-uhd/Makefile         |    3 +-
 ham/gnuradio-uhd/PLIST            |    4 +-
 ham/gnuradio-utils/Makefile       |    3 +-
 ham/gnuradio-video-sdl/Makefile   |    3 +-
 ham/gnuradio-video-sdl/PLIST      |    4 +-
 ham/gnuradio-vocoder/Makefile     |    3 +-
 ham/gnuradio-vocoder/PLIST        |    4 +-
 ham/gnuradio-wavelet/Makefile     |    3 +-
 ham/gnuradio-wavelet/PLIST        |    4 +-
 ham/gnuradio-zeromq/Makefile      |    3 +-
 ham/gnuradio-zeromq/PLIST         |    4 +-
 ham/gr-osmosdr/Makefile           |    4 +-
 36 files changed, 268 insertions(+), 131 deletions(-)

diffs (truncated from 1049 to 300 lines):

diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-channels/Makefile
--- a/ham/gnuradio-channels/Makefile    Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-channels/Makefile    Sun Jun 27 08:08:59 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.27 2021/06/01 09:12:24 wiz Exp $
+# $NetBSD: Makefile,v 1.28 2021/06/27 08:08:59 tnn Exp $
 
 PKGNAME=       gnuradio-channels-${VERSION}
-PKGREVISION=   4
 COMMENT=       Signal processing blocks to simulate channel models of GNU Radio
 
 .include       "../../ham/gnuradio-core/Makefile.common"
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-channels/PLIST
--- a/ham/gnuradio-channels/PLIST       Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-channels/PLIST       Sun Jun 27 08:08:59 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2021/04/07 16:14:07 tnn Exp $
+@comment $NetBSD: PLIST,v 1.6 2021/06/27 08:08:59 tnn Exp $
 include/gnuradio/channels/api.h
 include/gnuradio/channels/channel_model.h
 include/gnuradio/channels/channel_model2.h
@@ -9,7 +9,7 @@
 lib/cmake/gnuradio/gnuradio-channelsTargets-release.cmake
 lib/cmake/gnuradio/gnuradio-channelsTargets.cmake
 lib/libgnuradio-channels.so
-lib/libgnuradio-channels.so.3.9.1
+lib/libgnuradio-channels.so.3.9.2
 lib/libgnuradio-channels.so.${PKGVERSION}
 lib/pkgconfig/gnuradio-channels.pc
 ${PYSITELIB}/gnuradio/channels/__init__.py
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-companion/Makefile
--- a/ham/gnuradio-companion/Makefile   Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-companion/Makefile   Sun Jun 27 08:08:59 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.46 2021/06/01 09:12:24 wiz Exp $
+# $NetBSD: Makefile,v 1.47 2021/06/27 08:08:59 tnn Exp $
 
 PKGNAME=       gnuradio-companion-${VERSION}
-PKGREVISION=   4
 COMMENT=       User interface entry of GNU Radio
 
 #CONF_FILES+=  ${EGDIR}/grc.conf       ${PKG_SYSCONFDIR}/grc.conf
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-core/Makefile
--- a/ham/gnuradio-core/Makefile        Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-core/Makefile        Sun Jun 27 08:08:59 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.83 2021/06/01 09:12:24 wiz Exp $
+# $NetBSD: Makefile,v 1.84 2021/06/27 08:08:59 tnn Exp $
 
 PKGNAME=       gnuradio-core-${VERSION}
-PKGREVISION=   5
 COMMENT=       Core part of GNU Radio, all others need this
 
 PLIST_MINUS=   # empty
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-core/Makefile.common
--- a/ham/gnuradio-core/Makefile.common Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-core/Makefile.common Sun Jun 27 08:08:59 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.34 2021/05/15 10:09:06 nia Exp $
+# $NetBSD: Makefile.common,v 1.35 2021/06/27 08:08:59 tnn Exp $
 # This Makefile fragment is included in the package Makefiles for
 # GNU Radio distributed packages (they all share common configure and build
 # settings).
@@ -13,6 +13,7 @@
 # used by ham/gnuradio-dtv/Makefile
 # used by ham/gnuradio-fec/Makefile
 # used by ham/gnuradio-qtgui/Makefile
+# used by ham/gnuradio-soapy-sdr/Makefile
 # used by ham/gnuradio-trellis/Makefile
 # used by ham/gnuradio-uhd/Makefile
 # used by ham/gnuradio-utils/Makefile
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-core/PLIST
--- a/ham/gnuradio-core/PLIST   Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-core/PLIST   Sun Jun 27 08:08:59 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.31 2021/04/07 16:14:07 tnn Exp $
+@comment $NetBSD: PLIST,v 1.32 2021/06/27 08:08:59 tnn Exp $
 bin/gnuradio-config-info
 bin/gr_filter_design
 include/gnuradio/analog/agc.h
@@ -313,7 +313,6 @@
 include/gnuradio/top_block.h
 include/gnuradio/tpb_detail.h
 include/gnuradio/types.h
-include/gnuradio/unittests.h
 include/pmt/api.h
 include/pmt/pmt.h
 include/pmt/pmt_pool.h
@@ -375,25 +374,25 @@
 lib/cmake/gnuradio/gnuradio-runtimeTargets-release.cmake
 lib/cmake/gnuradio/gnuradio-runtimeTargets.cmake
 lib/libgnuradio-analog.so
-lib/libgnuradio-analog.so.3.9.1
+lib/libgnuradio-analog.so.3.9.2
 lib/libgnuradio-analog.so.${PKGVERSION}
 lib/libgnuradio-audio.so
-lib/libgnuradio-audio.so.3.9.1
+lib/libgnuradio-audio.so.3.9.2
 lib/libgnuradio-audio.so.${PKGVERSION}
 lib/libgnuradio-blocks.so
-lib/libgnuradio-blocks.so.3.9.1
+lib/libgnuradio-blocks.so.3.9.2
 lib/libgnuradio-blocks.so.${PKGVERSION}
 lib/libgnuradio-fft.so
-lib/libgnuradio-fft.so.3.9.1
+lib/libgnuradio-fft.so.3.9.2
 lib/libgnuradio-fft.so.${PKGVERSION}
 lib/libgnuradio-filter.so
-lib/libgnuradio-filter.so.3.9.1
+lib/libgnuradio-filter.so.3.9.2
 lib/libgnuradio-filter.so.${PKGVERSION}
 lib/libgnuradio-pmt.so
-lib/libgnuradio-pmt.so.3.9.1
+lib/libgnuradio-pmt.so.3.9.2
 lib/libgnuradio-pmt.so.${PKGVERSION}
 lib/libgnuradio-runtime.so
-lib/libgnuradio-runtime.so.3.9.1
+lib/libgnuradio-runtime.so.3.9.2
 lib/libgnuradio-runtime.so.${PKGVERSION}
 lib/pkgconfig/gnuradio-analog.pc
 lib/pkgconfig/gnuradio-audio.pc
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-core/buildlink3.mk
--- a/ham/gnuradio-core/buildlink3.mk   Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-core/buildlink3.mk   Sun Jun 27 08:08:59 2021 +0000
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.31 2021/04/07 16:14:07 tnn Exp $
+# $NetBSD: buildlink3.mk,v 1.32 2021/06/27 08:08:59 tnn Exp $
 
 BUILDLINK_TREE+=       gnuradio-core
 
 .if !defined(GNURADIO_CORE_BUILDLINK3_MK)
 GNURADIO_CORE_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.gnuradio-core+=  gnuradio-core>=3.9.1.0
-BUILDLINK_ABI_DEPENDS.gnuradio-core+=  gnuradio-core>=3.9.1.0
+BUILDLINK_API_DEPENDS.gnuradio-core+=  gnuradio-core>=3.9.2.0
+BUILDLINK_ABI_DEPENDS.gnuradio-core+=  gnuradio-core>=3.9.2.0
 BUILDLINK_PKGSRCDIR.gnuradio-core?=    ../../ham/gnuradio-core
 
 .include "../../devel/gmp/buildlink3.mk"
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-core/distinfo
--- a/ham/gnuradio-core/distinfo        Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-core/distinfo        Sun Jun 27 08:08:59 2021 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.41 2021/04/07 16:14:07 tnn Exp $
+$NetBSD: distinfo,v 1.42 2021/06/27 08:08:59 tnn Exp $
 
-SHA1 (gnuradio-3.9.1.0.tar.gz) = 058f77b2ca3412003d56f8f6a6676bfd6e4d6332
-RMD160 (gnuradio-3.9.1.0.tar.gz) = f9f8cb138f0a62592f31b6af4ed378ac9a797163
-SHA512 (gnuradio-3.9.1.0.tar.gz) = 01baf79cb77e093f845d223c12f6ec1a70ada297022b6ed7d17485e1e3143ee8655ef93e62561d2b5daa38518e8f6a5bda98c53b613ceced0e3bbe5051279514
-Size (gnuradio-3.9.1.0.tar.gz) = 4127980 bytes
+SHA1 (gnuradio-3.9.2.0.tar.gz) = 6cb92288d6d5f7e758010b259ebc230849cd4436
+RMD160 (gnuradio-3.9.2.0.tar.gz) = b42446a4459a2532acf60455d42610e37d9499b1
+SHA512 (gnuradio-3.9.2.0.tar.gz) = 4a2807d6713fff10906354553ef5810b81ef4116573fdf15b122e8fc18373c56e1685b8592a8f0f08c0524c4983f3d7d4774bdada98dff0990d028f71cbd7898
+Size (gnuradio-3.9.2.0.tar.gz) = 4219714 bytes
 SHA1 (patch-gnuradio-runtime_lib_constants.cc.in) = e3ca88db06eef0a38387ddbfbd9a4d3b6262b9a6
 SHA1 (patch-gr-audio_lib_CMakeLists.txt) = 9adacb93a20b2be596a23985306cbfd5f93c80a8
 SHA1 (patch-gr-audio_lib_alsa_alsa__impl_h) = cfa9b629e5cf21198cfd53cf27a908b5874866f4
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-core/version.mk
--- a/ham/gnuradio-core/version.mk      Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-core/version.mk      Sun Jun 27 08:08:59 2021 +0000
@@ -1,3 +1,3 @@
-# $NetBSD: version.mk,v 1.2 2021/04/07 16:14:07 tnn Exp $
+# $NetBSD: version.mk,v 1.3 2021/06/27 08:08:59 tnn Exp $
 
-VERSION=       3.9.1.0
+VERSION=       3.9.2.0
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-ctrlport/Makefile
--- a/ham/gnuradio-ctrlport/Makefile    Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-ctrlport/Makefile    Sun Jun 27 08:08:59 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2021/06/01 09:12:24 wiz Exp $
+# $NetBSD: Makefile,v 1.29 2021/06/27 08:08:59 tnn Exp $
 
 PKGNAME=       gnuradio-ctrlport-${VERSION}
-PKGREVISION=   4
 COMMENT=       New set of hooks into GNU Radio to allow a remote client to attach
 .include       "../../ham/gnuradio-core/Makefile.common"
 .include       "../../ham/gnuradio-core/Nocore.mk"
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-digital/Makefile
--- a/ham/gnuradio-digital/Makefile     Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-digital/Makefile     Sun Jun 27 08:08:59 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2021/06/01 09:12:24 wiz Exp $
+# $NetBSD: Makefile,v 1.29 2021/06/27 08:08:59 tnn Exp $
 
 PKGNAME=       gnuradio-digital-${VERSION}
-PKGREVISION=   4
 COMMENT=       Digital related algorithms for GNU Radio
 
 .include       "../../ham/gnuradio-core/Makefile.common"
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-digital/PLIST
--- a/ham/gnuradio-digital/PLIST        Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-digital/PLIST        Sun Jun 27 08:08:59 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2021/04/07 16:14:08 tnn Exp $
+@comment $NetBSD: PLIST,v 1.11 2021/06/27 08:08:59 tnn Exp $
 include/gnuradio/digital/adaptive_algorithm.h
 include/gnuradio/digital/adaptive_algorithm_cma.h
 include/gnuradio/digital/adaptive_algorithm_lms.h
@@ -90,7 +90,7 @@
 lib/cmake/gnuradio/gnuradio-digitalTargets-release.cmake
 lib/cmake/gnuradio/gnuradio-digitalTargets.cmake
 lib/libgnuradio-digital.so
-lib/libgnuradio-digital.so.3.9.1
+lib/libgnuradio-digital.so.3.9.2
 lib/libgnuradio-digital.so.${PKGVERSION}
 lib/pkgconfig/gnuradio-digital.pc
 ${PYSITELIB}/gnuradio/digital/__init__.py
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-doxygen/Makefile
--- a/ham/gnuradio-doxygen/Makefile     Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-doxygen/Makefile     Sun Jun 27 08:08:59 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.43 2021/06/01 09:12:24 wiz Exp $
+# $NetBSD: Makefile,v 1.44 2021/06/27 08:09:00 tnn Exp $
 
 PKGNAME=       gnuradio-doxygen-${VERSION}
-PKGREVISION=   4
 COMMENT=       Doxygen documentation of GNU Radio
 
 .include       "../../ham/gnuradio-core/Makefile.common"
diff -r 4c78c8790e6d -r c579ebc63b31 ham/gnuradio-doxygen/PLIST
--- a/ham/gnuradio-doxygen/PLIST        Sun Jun 27 07:53:43 2021 +0000
+++ b/ham/gnuradio-doxygen/PLIST        Sun Jun 27 08:08:59 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.23 2021/04/07 16:14:08 tnn Exp $
+@comment $NetBSD: PLIST,v 1.24 2021/06/27 08:09:00 tnn Exp $
 share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h.html
 share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.map
 share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.md5
@@ -706,15 +706,6 @@
 share/doc/gnuradio-${PKGVERSION}/html/binary__slicer__fb__pydoc__template_8h__incl.md5
 share/doc/gnuradio-${PKGVERSION}/html/binary__slicer__fb__pydoc__template_8h__incl.svg
 share/doc/gnuradio-${PKGVERSION}/html/binary__slicer__fb__pydoc__template_8h_source.html
-share/doc/gnuradio-${PKGVERSION}/html/block_8h.html
-share/doc/gnuradio-${PKGVERSION}/html/block_8h.js
-share/doc/gnuradio-${PKGVERSION}/html/block_8h__dep__incl.map
-share/doc/gnuradio-${PKGVERSION}/html/block_8h__dep__incl.md5
-share/doc/gnuradio-${PKGVERSION}/html/block_8h__dep__incl.svg
-share/doc/gnuradio-${PKGVERSION}/html/block_8h__incl.map
-share/doc/gnuradio-${PKGVERSION}/html/block_8h__incl.md5
-share/doc/gnuradio-${PKGVERSION}/html/block_8h__incl.svg
-share/doc/gnuradio-${PKGVERSION}/html/block_8h_source.html
 share/doc/gnuradio-${PKGVERSION}/html/block__detail_8h.html
 share/doc/gnuradio-${PKGVERSION}/html/block__detail_8h.js
 share/doc/gnuradio-${PKGVERSION}/html/block__detail_8h__incl.map
@@ -733,12 +724,15 @@
 share/doc/gnuradio-${PKGVERSION}/html/block__gateway_8h__incl.md5
 share/doc/gnuradio-${PKGVERSION}/html/block__gateway_8h__incl.svg
 share/doc/gnuradio-${PKGVERSION}/html/block__gateway_8h_source.html
-share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h.html
-share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h.js
-share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h__incl.map
-share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h__incl.md5
-share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h__incl.svg
-share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h_source.html
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h.html
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h.js
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__dep__incl.map
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__dep__incl.md5
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__dep__incl.svg
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__incl.map
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__incl.md5
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__incl.svg
+share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h_source.html
 share/doc/gnuradio-${PKGVERSION}/html/block__registry_8h.html
 share/doc/gnuradio-${PKGVERSION}/html/block__registry_8h.js
 share/doc/gnuradio-${PKGVERSION}/html/block__registry_8h__dep__incl.map
@@ -2783,6 +2777,24 @@
 share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1random-members.html
 share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1random.html
 share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1random.js
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block-members.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block.js
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block__impl-members.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block__impl.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block__impl.js
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink-members.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink.js
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink__impl-members.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink__impl.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink__impl.js
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source-members.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source.js
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source__impl-members.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source__impl.html
+share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source__impl.js
 share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1sync__block-members.html
 share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1sync__block.html
 share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1sync__block.js
@@ -4184,6 +4196,15 @@
 share/doc/gnuradio-${PKGVERSION}/html/dir_000195.html
 share/doc/gnuradio-${PKGVERSION}/html/dir_000196.html
 share/doc/gnuradio-${PKGVERSION}/html/dir_000197.html
+share/doc/gnuradio-${PKGVERSION}/html/dir_000198.html
+share/doc/gnuradio-${PKGVERSION}/html/dir_000199.html
+share/doc/gnuradio-${PKGVERSION}/html/dir_000200.html



Home | Main Index | Thread Index | Old Index