Mon Jan 23 19:26:22 2023 UTC ()
gnuradio: updated to 3.10.5.0

3.10.5.0

Runtime

Python block have access to the block logger, as in C++
Default log level changed to INFO (from OFF)
Memory-based logger gr.dictionary_logger_backend() added for log debugging
API Note: The Python block gateway is now completely implemented in the PyBind11 wrapper, in order to clean up Python dependencies. This is technically an API change, but should not have any external effect.
PMT serialization of Complex32 vectors is now REAL | IMAG on all platforms
Python IO signature replication (multiple ports specified by one signature) fixed

GRC

Continue processing block connections after a connection error occurs
Drawing/scaling fixes that improve user experience on HiDPI and Windows machines

Build system and packaging

Many deprecation warnings fixed
Make target link libraries PRIVATE wherever possible, removing unnecessary downstream dependencies
Add Fedora 37 and drop Fedora 35 CI targets
Conda re-rendered with more recent packages - thanks to Ryan Volz for making Conda an easy-to-use, cross-platform method of installing GNU Radio
Debian and Fedora packaging specs are no longer included in the code base, since they were out of date, and are maintained by downstreams

Testing

Code formatting rules for clang format updated to v14
Removed all compiler warning suppression
Enable Python block testing for Conda on macOS
Many other improvements that make maintenance easier - thanks again to Clayton Smith. In the process of fixing tests, a number of latent bugs were fixed throughout the code.

gr-analog

AGC3 performance and bug fixes
Python has access to control_loop parent class in PLL blocks
CTCSS detection of standard tones improved by fixing floating point comparison

gr-blocks

Probe Signal cross platform reliability improved by better thread synchronization

gr-digital

CRC32 and CRC16 blocks use little-endian order regardless of host order. This is a wire format change. The options were to have different endian machines unable to communicate, or older and newer versions unable to communicate. Note that there is a more general set of blocks (CRC Append and CRC Check) that are recommended for use wherever possible.
Packet headers use consistent bit order across machines
Floating point/rounding fix in constellation lookup table

gr-fec

LDPC G matrix n and k can be access from Python
LDPC matrix output size calculation corrected
CCSDS/Viterbi path metrics overflow fix

gr-network

Improve UDP Source/Sink efficiency by removing a layer of buffering and using the GR circular buffer instead of the Boost equivalent

gr-qtgui

Fixed Python code generation for Msg CheckBox, Digital Number Control, Toggle Button, Toggle Switch

gr-soapy

Sources will generate rx_time, rx_freq and rx_rate tags, as in UHD sources, where supported by the underlying Soapy driver

gr-uhd

Re-enable uhd.find_devices(), in addition to uhd.find()
RFNoC: generate correct Python code when using clock/time source
RFNoC: allow specification of adapter IDs for streamers
RFNoC: enable setting of vlen and types for streamers
RFNoC: streamers pay attention to stream args
RFNoC: sync block controller with gr-ettus OOT
RFNoC:set_property() and get_property() added to the C++ and Python APIs
RFNoC: Python binds added for rfnoc_block_generic

gr-zeromq

Sinks will optionally block on full queue, providing backpressure. Previously, overflow data was dropped.


(adam)
diff -r1.43 -r1.44 pkgsrc/ham/gnuradio-channels/Makefile
diff -r1.62 -r1.63 pkgsrc/ham/gnuradio-companion/Makefile
diff -r1.104 -r1.105 pkgsrc/ham/gnuradio-core/Makefile
diff -r1.38 -r1.39 pkgsrc/ham/gnuradio-core/PLIST
diff -r1.49 -r1.50 pkgsrc/ham/gnuradio-core/distinfo
diff -r1.8 -r1.9 pkgsrc/ham/gnuradio-core/version.mk
diff -r1.3 -r1.4 pkgsrc/ham/gnuradio-core/patches/patch-gr-audio_lib_CMakeLists.txt
diff -r1.1 -r0 pkgsrc/ham/gnuradio-core/patches/patch-gr-blocks_include_gnuradio_blocks_blockinterleaving.h
diff -r1.44 -r1.45 pkgsrc/ham/gnuradio-ctrlport/Makefile
diff -r1.44 -r1.45 pkgsrc/ham/gnuradio-digital/Makefile
diff -r1.63 -r1.64 pkgsrc/ham/gnuradio-doxygen/Makefile
diff -r1.33 -r1.34 pkgsrc/ham/gnuradio-doxygen/PLIST
diff -r1.46 -r1.47 pkgsrc/ham/gnuradio-dtv/Makefile
diff -r1.45 -r1.46 pkgsrc/ham/gnuradio-fec/Makefile
diff -r1.21 -r1.22 pkgsrc/ham/gnuradio-network/Makefile
diff -r1.55 -r1.56 pkgsrc/ham/gnuradio-qtgui/Makefile
diff -r1.16 -r1.17 pkgsrc/ham/gnuradio-soapy-sdr/Makefile
diff -r1.62 -r1.63 pkgsrc/ham/gnuradio-trellis/Makefile
diff -r1.45 -r1.46 pkgsrc/ham/gnuradio-uhd/Makefile
diff -r1.12 -r1.13 pkgsrc/ham/gnuradio-uhd/PLIST
diff -r1.48 -r1.49 pkgsrc/ham/gnuradio-utils/Makefile
diff -r1.59 -r1.60 pkgsrc/ham/gnuradio-video-sdl/Makefile
diff -r1.44 -r1.45 pkgsrc/ham/gnuradio-vocoder/Makefile
diff -r1.43 -r1.44 pkgsrc/ham/gnuradio-wavelet/Makefile
diff -r1.46 -r1.47 pkgsrc/ham/gnuradio-zeromq/Makefile

cvs diff -r1.43 -r1.44 pkgsrc/ham/gnuradio-channels/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-channels/Makefile 2023/01/22 16:28:29 1.43
+++ pkgsrc/ham/gnuradio-channels/Makefile 2023/01/23 19:26:20 1.44
@@ -1,16 +1,15 @@ @@ -1,16 +1,15 @@
1# $NetBSD: Makefile,v 1.43 2023/01/22 16:28:29 ryoon Exp $ 1# $NetBSD: Makefile,v 1.44 2023/01/23 19:26:20 adam Exp $
2 2
3PKGNAME= gnuradio-channels-${VERSION} 3PKGNAME= gnuradio-channels-${VERSION}
4PKGREVISION= 3 
5COMMENT= Signal processing blocks to simulate channel models of GNU Radio 4COMMENT= Signal processing blocks to simulate channel models of GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_CHANNELS=ON 10CMAKE_ARGS+= -DENABLE_GR_CHANNELS=ON
12CMAKE_ARGS+= -DENABLE_GRC=ON 11CMAKE_ARGS+= -DENABLE_GRC=ON
13 12
14PLIST_MINUS+= companion 13PLIST_MINUS+= companion
15 14
16.include "../../mk/bsd.pkg.mk" 15.include "../../mk/bsd.pkg.mk"

cvs diff -r1.62 -r1.63 pkgsrc/ham/gnuradio-companion/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-companion/Makefile 2023/01/22 16:28:29 1.62
+++ pkgsrc/ham/gnuradio-companion/Makefile 2023/01/23 19:26:20 1.63
@@ -1,35 +1,21 @@ @@ -1,35 +1,21 @@
1# $NetBSD: Makefile,v 1.62 2023/01/22 16:28:29 ryoon Exp $ 1# $NetBSD: Makefile,v 1.63 2023/01/23 19:26:20 adam Exp $
2 2
3PKGNAME= gnuradio-companion-${VERSION} 3PKGNAME= gnuradio-companion-${VERSION}
4PKGREVISION= 3 
5COMMENT= User interface entry of GNU Radio 4COMMENT= User interface entry of GNU Radio
6 5
7#CONF_FILES+= ${EGDIR}/grc.conf ${PKG_SYSCONFDIR}/grc.conf 
8 
9DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml 6DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml
10DEPENDS+= xdg-utils-[0-9]*:../../misc/xdg-utils 7DEPENDS+= xdg-utils-[0-9]*:../../misc/xdg-utils
11 8
12REPLACE_BASH= grc/scripts/freedesktop/grc_setup_freedesktop.in 9REPLACE_BASH= grc/scripts/freedesktop/grc_setup_freedesktop.in
13 10
14.include "../../ham/gnuradio-core/Makefile.common" 11.include "../../ham/gnuradio-core/Makefile.common"
15.include "../../ham/gnuradio-core/Nocore.mk" 12.include "../../ham/gnuradio-core/Nocore.mk"
16 13
17# gnuradio-companion 14# gnuradio-companion
18CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 15CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
19CMAKE_ARGS+= -DENABLE_GRC=ON 16CMAKE_ARGS+= -DENABLE_GRC=ON
20 17
21ICON_THEMES= yes 18ICON_THEMES= yes
22.include "../../graphics/hicolor-icon-theme/buildlink3.mk" 19.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
23.include "../../graphics/gnome-icon-theme/buildlink3.mk" 20.include "../../graphics/gnome-icon-theme/buildlink3.mk"
24.include "../../mk/bsd.pkg.mk" 21.include "../../mk/bsd.pkg.mk"
25 
26# -- Configuring gnuradio-companion support... 
27# -- Dependency ENABLE_GNURADIO_RUNTIME = ON 
28# -- Dependency ENABLE_PYTHON = ON 
29# -- Dependency PYTHON_MIN_VER_FOUND = TRUE 
30# -- Dependency CHEETAH_FOUND = TRUE 
31# -- Dependency LXML_FOUND = TRUE 
32# -- Dependency PYGTK_FOUND = TRUE 
33# -- Dependency NUMPY_FOUND = TRUE 
34# -- Enabling gnuradio-companion support. 
35# -- Override with -DENABLE_GRC=ON/OFF 

cvs diff -r1.104 -r1.105 pkgsrc/ham/gnuradio-core/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-core/Makefile 2023/01/22 16:28:29 1.104
+++ pkgsrc/ham/gnuradio-core/Makefile 2023/01/23 19:26:20 1.105
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.104 2023/01/22 16:28:29 ryoon Exp $ 1# $NetBSD: Makefile,v 1.105 2023/01/23 19:26:20 adam Exp $
2 2
3PKGNAME= gnuradio-core-${VERSION} 3PKGNAME= gnuradio-core-${VERSION}
4PKGREVISION= 4 
5COMMENT= Core part of GNU Radio, all others need this 4COMMENT= Core part of GNU Radio, all others need this
6 5
7PLIST_MINUS= # empty 6PLIST_MINUS= # empty
8.include "Makefile.common" 7.include "Makefile.common"
9 8
10#CONF_FILES+= ${EGDIR}/gnuradio-runtime.conf ${PKG_SYSCONFDIR}/gnuradio-runtime.conf 9#CONF_FILES+= ${EGDIR}/gnuradio-runtime.conf ${PKG_SYSCONFDIR}/gnuradio-runtime.conf
11#CONF_FILES+= ${EGDIR}/gr-audio-jack.conf ${PKG_SYSCONFDIR}/gr-audio-jack.conf 10#CONF_FILES+= ${EGDIR}/gr-audio-jack.conf ${PKG_SYSCONFDIR}/gr-audio-jack.conf
12#CONF_FILES+= ${EGDIR}/gr-audio-portaudio.conf ${PKG_SYSCONFDIR}/gr-audio-portaudio.conf 11#CONF_FILES+= ${EGDIR}/gr-audio-portaudio.conf ${PKG_SYSCONFDIR}/gr-audio-portaudio.conf
13#CONF_FILES+= ${EGDIR}/gr-audio.conf ${PKG_SYSCONFDIR}/gr-audio.conf 12#CONF_FILES+= ${EGDIR}/gr-audio.conf ${PKG_SYSCONFDIR}/gr-audio.conf
14 13
15.include "../../mk/oss.buildlink3.mk" 14.include "../../mk/oss.buildlink3.mk"
16.if ${OSS_TYPE} != "none" 15.if ${OSS_TYPE} != "none"
17#CONF_FILES+= ${EGDIR}/gr-audio-oss.conf ${PKG_SYSCONFDIR}/gr-audio-oss.conf 16#CONF_FILES+= ${EGDIR}/gr-audio-oss.conf ${PKG_SYSCONFDIR}/gr-audio-oss.conf

cvs diff -r1.38 -r1.39 pkgsrc/ham/gnuradio-core/PLIST (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-core/PLIST 2022/10/09 07:56:09 1.38
+++ pkgsrc/ham/gnuradio-core/PLIST 2023/01/23 19:26:20 1.39
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.38 2022/10/09 07:56:09 adam Exp $ 1@comment $NetBSD: PLIST,v 1.39 2023/01/23 19:26:20 adam Exp $
2bin/gnuradio-config-info 2bin/gnuradio-config-info
3bin/gr_filter_design 3bin/gr_filter_design
4include/gnuradio/analog/agc.h 4include/gnuradio/analog/agc.h
5include/gnuradio/analog/agc2.h 5include/gnuradio/analog/agc2.h
6include/gnuradio/analog/agc2_cc.h 6include/gnuradio/analog/agc2_cc.h
7include/gnuradio/analog/agc2_ff.h 7include/gnuradio/analog/agc2_ff.h
8include/gnuradio/analog/agc3_cc.h 8include/gnuradio/analog/agc3_cc.h
9include/gnuradio/analog/agc_cc.h 9include/gnuradio/analog/agc_cc.h
10include/gnuradio/analog/agc_ff.h 10include/gnuradio/analog/agc_ff.h
11include/gnuradio/analog/api.h 11include/gnuradio/analog/api.h
12include/gnuradio/analog/cpfsk_bc.h 12include/gnuradio/analog/cpfsk_bc.h
13include/gnuradio/analog/cpm.h 13include/gnuradio/analog/cpm.h
14include/gnuradio/analog/ctcss_squelch_ff.h 14include/gnuradio/analog/ctcss_squelch_ff.h
@@ -34,27 +34,26 @@ include/gnuradio/analog/random_uniform_s @@ -34,27 +34,26 @@ include/gnuradio/analog/random_uniform_s
34include/gnuradio/analog/sig_source.h 34include/gnuradio/analog/sig_source.h
35include/gnuradio/analog/sig_source_waveform.h 35include/gnuradio/analog/sig_source_waveform.h
36include/gnuradio/analog/simple_squelch_cc.h 36include/gnuradio/analog/simple_squelch_cc.h
37include/gnuradio/analog/squelch_base_cc.h 37include/gnuradio/analog/squelch_base_cc.h
38include/gnuradio/analog/squelch_base_ff.h 38include/gnuradio/analog/squelch_base_ff.h
39include/gnuradio/api.h 39include/gnuradio/api.h
40include/gnuradio/attributes.h 40include/gnuradio/attributes.h
41include/gnuradio/audio/api.h 41include/gnuradio/audio/api.h
42include/gnuradio/audio/sink.h 42include/gnuradio/audio/sink.h
43include/gnuradio/audio/source.h 43include/gnuradio/audio/source.h
44include/gnuradio/basic_block.h 44include/gnuradio/basic_block.h
45include/gnuradio/block.h 45include/gnuradio/block.h
46include/gnuradio/block_detail.h 46include/gnuradio/block_detail.h
47include/gnuradio/block_gateway.h 
48include/gnuradio/block_registry.h 47include/gnuradio/block_registry.h
49include/gnuradio/blocks/abs_blk.h 48include/gnuradio/blocks/abs_blk.h
50include/gnuradio/blocks/add_blk.h 49include/gnuradio/blocks/add_blk.h
51include/gnuradio/blocks/add_const_bb.h 50include/gnuradio/blocks/add_const_bb.h
52include/gnuradio/blocks/add_const_cc.h 51include/gnuradio/blocks/add_const_cc.h
53include/gnuradio/blocks/add_const_ff.h 52include/gnuradio/blocks/add_const_ff.h
54include/gnuradio/blocks/add_const_ii.h 53include/gnuradio/blocks/add_const_ii.h
55include/gnuradio/blocks/add_const_ss.h 54include/gnuradio/blocks/add_const_ss.h
56include/gnuradio/blocks/add_const_v.h 55include/gnuradio/blocks/add_const_v.h
57include/gnuradio/blocks/and_blk.h 56include/gnuradio/blocks/and_blk.h
58include/gnuradio/blocks/and_const.h 57include/gnuradio/blocks/and_const.h
59include/gnuradio/blocks/annotator_1to1.h 58include/gnuradio/blocks/annotator_1to1.h
60include/gnuradio/blocks/annotator_alltoall.h 59include/gnuradio/blocks/annotator_alltoall.h
@@ -193,26 +192,27 @@ include/gnuradio/blocks/vector_to_stream @@ -193,26 +192,27 @@ include/gnuradio/blocks/vector_to_stream
193include/gnuradio/blocks/wavfile.h 192include/gnuradio/blocks/wavfile.h
194include/gnuradio/blocks/wavfile_sink.h 193include/gnuradio/blocks/wavfile_sink.h
195include/gnuradio/blocks/wavfile_source.h 194include/gnuradio/blocks/wavfile_source.h
196include/gnuradio/blocks/xor_blk.h 195include/gnuradio/blocks/xor_blk.h
197include/gnuradio/buffer.h 196include/gnuradio/buffer.h
198include/gnuradio/buffer_double_mapped.h 197include/gnuradio/buffer_double_mapped.h
199include/gnuradio/buffer_reader.h 198include/gnuradio/buffer_reader.h
200include/gnuradio/buffer_reader_sm.h 199include/gnuradio/buffer_reader_sm.h
201include/gnuradio/buffer_single_mapped.h 200include/gnuradio/buffer_single_mapped.h
202include/gnuradio/buffer_type.h 201include/gnuradio/buffer_type.h
203include/gnuradio/config.h 202include/gnuradio/config.h
204include/gnuradio/constants.h 203include/gnuradio/constants.h
205include/gnuradio/custom_lock.h 204include/gnuradio/custom_lock.h
 205include/gnuradio/dictionary_logger_backend.h
206include/gnuradio/endianness.h 206include/gnuradio/endianness.h
207include/gnuradio/expj.h 207include/gnuradio/expj.h
208include/gnuradio/fft/api.h 208include/gnuradio/fft/api.h
209include/gnuradio/fft/fft.h 209include/gnuradio/fft/fft.h
210include/gnuradio/fft/fft_shift.h 210include/gnuradio/fft/fft_shift.h
211include/gnuradio/fft/fft_v.h 211include/gnuradio/fft/fft_v.h
212include/gnuradio/fft/goertzel.h 212include/gnuradio/fft/goertzel.h
213include/gnuradio/fft/goertzel_fc.h 213include/gnuradio/fft/goertzel_fc.h
214include/gnuradio/fft/window.h 214include/gnuradio/fft/window.h
215include/gnuradio/filter/api.h 215include/gnuradio/filter/api.h
216include/gnuradio/filter/dc_blocker_cc.h 216include/gnuradio/filter/dc_blocker_cc.h
217include/gnuradio/filter/dc_blocker_ff.h 217include/gnuradio/filter/dc_blocker_ff.h
218include/gnuradio/filter/fft_filter.h 218include/gnuradio/filter/fft_filter.h

cvs diff -r1.49 -r1.50 pkgsrc/ham/gnuradio-core/distinfo (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-core/distinfo 2022/10/09 07:56:09 1.49
+++ pkgsrc/ham/gnuradio-core/distinfo 2023/01/23 19:26:20 1.50
@@ -1,13 +1,12 @@ @@ -1,13 +1,12 @@
1$NetBSD: distinfo,v 1.49 2022/10/09 07:56:09 adam Exp $ 1$NetBSD: distinfo,v 1.50 2023/01/23 19:26:20 adam Exp $
2 2
3BLAKE2s (gnuradio-3.10.4.0.tar.gz) = 72065d24922d7ab4c97e89bd99a95ad76088e7ff9d13fd395b13a7075558bd6a 3BLAKE2s (gnuradio-3.10.5.0.tar.gz) = a7530bd7c4a3bb3ddfd548a5f057e4f19964507955e788f35f3b140e24581423
4SHA512 (gnuradio-3.10.4.0.tar.gz) = a8690016513df3928cb2f63eef190c7306bc3cc452dfeafab2e47b43aa1dd3f61515df49832e99530535f94deabfb614388a27212b09e1c816782f3fdd4915eb 4SHA512 (gnuradio-3.10.5.0.tar.gz) = 82f3028cbcb0175f9f354b19613ee59b052881b894c6d668d04235acda2e3be0ca2713642141a917264e70039f23795c647c47364af9ffad63f108da517d77c5
5Size (gnuradio-3.10.4.0.tar.gz) = 4392284 bytes 5Size (gnuradio-3.10.5.0.tar.gz) = 4368231 bytes
6SHA1 (patch-cmake_Modules_GrPybind.cmake) = b585fc9bddad66f98d9e70db3d9335c937698df9 6SHA1 (patch-cmake_Modules_GrPybind.cmake) = b585fc9bddad66f98d9e70db3d9335c937698df9
7SHA1 (patch-gnuradio-runtime_CMakeLists.txt) = 3e4ae78cd722aa54a9626ca458cfe90ab11619a5 7SHA1 (patch-gnuradio-runtime_CMakeLists.txt) = 3e4ae78cd722aa54a9626ca458cfe90ab11619a5
8SHA1 (patch-gnuradio-runtime_lib_CMakeLists.txt) = 8f29121bcff204fd4533c113cd05440a7d39477d 8SHA1 (patch-gnuradio-runtime_lib_CMakeLists.txt) = 8f29121bcff204fd4533c113cd05440a7d39477d
9SHA1 (patch-gnuradio-runtime_lib_constants.cc.in) = fef80a546c713c565c3851ee7289b4fa3a49e45b 9SHA1 (patch-gnuradio-runtime_lib_constants.cc.in) = fef80a546c713c565c3851ee7289b4fa3a49e45b
10SHA1 (patch-gnuradio-runtime_lib_thread_thread__group.cc) = 868809d5253b6465595dcade7f094844ff79f21c 10SHA1 (patch-gnuradio-runtime_lib_thread_thread__group.cc) = 868809d5253b6465595dcade7f094844ff79f21c
11SHA1 (patch-gr-audio_lib_CMakeLists.txt) = 9adacb93a20b2be596a23985306cbfd5f93c80a8 11SHA1 (patch-gr-audio_lib_CMakeLists.txt) = d5acab47fdb007c50bb544af436102f0d38317aa
12SHA1 (patch-gr-audio_lib_alsa_alsa__impl_h) = cfa9b629e5cf21198cfd53cf27a908b5874866f4 12SHA1 (patch-gr-audio_lib_alsa_alsa__impl_h) = cfa9b629e5cf21198cfd53cf27a908b5874866f4
13SHA1 (patch-gr-blocks_include_gnuradio_blocks_blockinterleaving.h) = a73a5820e613159b9032faacc6ca98a2a6dfaf48 

cvs diff -r1.8 -r1.9 pkgsrc/ham/gnuradio-core/version.mk (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-core/version.mk 2022/10/09 07:56:09 1.8
+++ pkgsrc/ham/gnuradio-core/version.mk 2023/01/23 19:26:20 1.9
@@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
1# $NetBSD: version.mk,v 1.8 2022/10/09 07:56:09 adam Exp $ 1# $NetBSD: version.mk,v 1.9 2023/01/23 19:26:20 adam Exp $
2 2
3VERSION= 3.10.4.0 3VERSION= 3.10.5.0

cvs diff -r1.3 -r1.4 pkgsrc/ham/gnuradio-core/patches/patch-gr-audio_lib_CMakeLists.txt (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-core/patches/patch-gr-audio_lib_CMakeLists.txt 2020/08/30 20:43:46 1.3
+++ pkgsrc/ham/gnuradio-core/patches/patch-gr-audio_lib_CMakeLists.txt 2023/01/23 19:26:20 1.4
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1$NetBSD: patch-gr-audio_lib_CMakeLists.txt,v 1.3 2020/08/30 20:43:46 tnn Exp $ 1$NetBSD: patch-gr-audio_lib_CMakeLists.txt,v 1.4 2023/01/23 19:26:20 adam Exp $
2 2
3If alsa is present on the system but the PKG_OPTION disabled we 3If alsa is present on the system but the PKG_OPTION disabled we
4should not use it. 4should not use it.
5 5
6--- gr-audio/lib/CMakeLists.txt.orig 2019-08-09 21:40:34.000000000 +0000 6--- gr-audio/lib/CMakeLists.txt.orig 2022-12-19 14:34:48.000000000 +0000
7+++ gr-audio/lib/CMakeLists.txt 7+++ gr-audio/lib/CMakeLists.txt
8@@ -35,7 +35,7 @@ list(APPEND gr_audio_confs ${CMAKE_CURRE 8@@ -21,7 +21,7 @@ list(APPEND gr_audio_confs ${CMAKE_CURRE
9 ######################################################################## 9 ########################################################################
10 ## ALSA Support 10 ## ALSA Support
11 ######################################################################## 11 ########################################################################
12-find_package(ALSA) 12-find_package(ALSA)
13+@@ALSA@@find_package(ALSA) 13+@@ALSA@@find_package(ALSA)
14  14
15 set(audio_deps "") 15 if((ALSA_FOUND)
16  16 AND NOT (CMAKE_SYSTEM_NAME STREQUAL "kFreeBSD")

File Deleted: pkgsrc/ham/gnuradio-core/patches/Attic/patch-gr-blocks_include_gnuradio_blocks_blockinterleaving.h

cvs diff -r1.44 -r1.45 pkgsrc/ham/gnuradio-ctrlport/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-ctrlport/Makefile 2023/01/22 16:28:29 1.44
+++ pkgsrc/ham/gnuradio-ctrlport/Makefile 2023/01/23 19:26:20 1.45
@@ -1,13 +1,12 @@ @@ -1,13 +1,12 @@
1# $NetBSD: Makefile,v 1.44 2023/01/22 16:28:29 ryoon Exp $ 1# $NetBSD: Makefile,v 1.45 2023/01/23 19:26:20 adam Exp $
2 2
3PKGNAME= gnuradio-ctrlport-${VERSION} 3PKGNAME= gnuradio-ctrlport-${VERSION}
4PKGREVISION= 3 
5COMMENT= New set of hooks into GNU Radio to allow a remote client to attach 4COMMENT= New set of hooks into GNU Radio to allow a remote client to attach
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_CTRLPORT=ON 10CMAKE_ARGS+= -DENABLE_GR_CTRLPORT=ON
12 11
13.include "../../mk/bsd.pkg.mk" 12.include "../../mk/bsd.pkg.mk"

cvs diff -r1.44 -r1.45 pkgsrc/ham/gnuradio-digital/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-digital/Makefile 2023/01/22 16:28:29 1.44
+++ pkgsrc/ham/gnuradio-digital/Makefile 2023/01/23 19:26:20 1.45
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.44 2023/01/22 16:28:29 ryoon Exp $ 1# $NetBSD: Makefile,v 1.45 2023/01/23 19:26:20 adam Exp $
2 2
3PKGNAME= gnuradio-digital-${VERSION} 3PKGNAME= gnuradio-digital-${VERSION}
4PKGREVISION= 3 
5COMMENT= Digital related algorithms for GNU Radio 4COMMENT= Digital related algorithms for GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9# link to libgnuradio-fft.so.${PKGVERSON_NOREV} 8# link to libgnuradio-fft.so.${PKGVERSON_NOREV}
10.include "../../ham/gnuradio-core/buildlink3.mk" 9.include "../../ham/gnuradio-core/buildlink3.mk"
11 10
12CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 11CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
13CMAKE_ARGS+= -DENABLE_GR_DIGITAL=ON 12CMAKE_ARGS+= -DENABLE_GR_DIGITAL=ON
14CMAKE_ARGS+= -DENABLE_GRC=ON 13CMAKE_ARGS+= -DENABLE_GRC=ON
15 14
16PLIST_MINUS+= companion 15PLIST_MINUS+= companion
17 16

cvs diff -r1.63 -r1.64 pkgsrc/ham/gnuradio-doxygen/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-doxygen/Makefile 2023/01/22 16:28:29 1.63
+++ pkgsrc/ham/gnuradio-doxygen/Makefile 2023/01/23 19:26:20 1.64
@@ -1,23 +1,20 @@ @@ -1,23 +1,20 @@
1# $NetBSD: Makefile,v 1.63 2023/01/22 16:28:29 ryoon Exp $ 1# $NetBSD: Makefile,v 1.64 2023/01/23 19:26:20 adam Exp $
2 2
3PKGNAME= gnuradio-doxygen-${VERSION} 3PKGNAME= gnuradio-doxygen-${VERSION}
4PKGREVISION= 4 
5COMMENT= Doxygen documentation of GNU Radio 4COMMENT= Doxygen documentation of GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10BUILD_DEPENDS+= doxygen>=1.9.5:../../devel/doxygen 9BUILD_DEPENDS+= doxygen>=1.9.5:../../devel/doxygen
11BUILD_DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz 10BUILD_DEPENDS+= graphviz-[0-9]*:../../graphics/graphviz
12 11
13DEPENDS+= web2c-[0-9]*:../../print/web2c 12DEPENDS+= web2c-[0-9]*:../../print/web2c
14# in case those packages are already installed by other requirement.. 13# in case those packages are already installed by other requirement..
15DEPENDS+= texlive-collection-latex-[0-9]*:../../meta-pkgs/texlive-collection-latex 14DEPENDS+= texlive-collection-latex-[0-9]*:../../meta-pkgs/texlive-collection-latex
16DEPENDS+= tex-newunicodechar-[0-9]*:../../print/tex-newunicodechar 15DEPENDS+= tex-newunicodechar-[0-9]*:../../print/tex-newunicodechar
17 16
18CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 17CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
19CMAKE_ARGS+= -DENABLE_DOXYGEN=ON 18CMAKE_ARGS+= -DENABLE_DOXYGEN=ON
20 19
21#MAKE_JOBS_SAFE= no 
22 
23.include "../../mk/bsd.pkg.mk" 20.include "../../mk/bsd.pkg.mk"

cvs diff -r1.33 -r1.34 pkgsrc/ham/gnuradio-doxygen/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-doxygen/Attic/PLIST 2023/01/13 23:02:51 1.33
+++ pkgsrc/ham/gnuradio-doxygen/Attic/PLIST 2023/01/23 19:26:20 1.34
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.33 2023/01/13 23:02:51 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.34 2023/01/23 19:26:20 adam Exp $
2share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h.html 2share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h.html
3share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.map 3share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.map
4share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.md5 4share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.md5
5share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.svg 5share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.svg
6share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__incl.map 6share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__incl.map
7share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__incl.md5 7share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__incl.md5
8share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__incl.svg 8share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__incl.svg
9share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h_source.html 9share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h_source.html
10share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h.html 10share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h.html
11share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h.js 11share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h.js
12share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h__dep__incl.map 12share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h__dep__incl.map
13share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h__dep__incl.md5 13share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h__dep__incl.md5
14share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h__dep__incl.svg 14share/doc/gnuradio-${PKGVERSION}/html/DisplayPlot_8h__dep__incl.svg
@@ -71,27 +71,26 @@ share/doc/gnuradio-${PKGVERSION}/html/Ve @@ -71,27 +71,26 @@ share/doc/gnuradio-${PKGVERSION}/html/Ve
71share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h__dep__incl.svg 71share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h__dep__incl.svg
72share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h__incl.map 72share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h__incl.map
73share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h__incl.md5 73share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h__incl.md5
74share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h__incl.svg 74share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h__incl.svg
75share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h_source.html 75share/doc/gnuradio-${PKGVERSION}/html/VectorDisplayPlot_8h_source.html
76share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h.html 76share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h.html
77share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__dep__incl.map 77share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__dep__incl.map
78share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__dep__incl.md5 78share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__dep__incl.md5
79share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__dep__incl.svg 79share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__dep__incl.svg
80share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__incl.map 80share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__incl.map
81share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__incl.md5 81share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__incl.md5
82share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__incl.svg 82share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h__incl.svg
83share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h_source.html 83share/doc/gnuradio-${PKGVERSION}/html/WaterfallDisplayPlot_8h_source.html
84share/doc/gnuradio-${PKGVERSION}/html/_formulas.log 
85share/doc/gnuradio-${PKGVERSION}/html/_formulas.tex 84share/doc/gnuradio-${PKGVERSION}/html/_formulas.tex
86share/doc/gnuradio-${PKGVERSION}/html/_formulas_dark.log 85share/doc/gnuradio-${PKGVERSION}/html/_formulas_dark.log
87share/doc/gnuradio-${PKGVERSION}/html/_formulas_dark.tex 86share/doc/gnuradio-${PKGVERSION}/html/_formulas_dark.tex
88share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h.html 87share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h.html
89share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h.js 88share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h.js
90share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h__incl.map 89share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h__incl.map
91share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h__incl.md5 90share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h__incl.md5
92share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h__incl.svg 91share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h__incl.svg
93share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h_source.html 92share/doc/gnuradio-${PKGVERSION}/html/abs__blk_8h_source.html
94share/doc/gnuradio-${PKGVERSION}/html/abs__blk__pydoc__template_8h.html 93share/doc/gnuradio-${PKGVERSION}/html/abs__blk__pydoc__template_8h.html
95share/doc/gnuradio-${PKGVERSION}/html/abs__blk__pydoc__template_8h.js 94share/doc/gnuradio-${PKGVERSION}/html/abs__blk__pydoc__template_8h.js
96share/doc/gnuradio-${PKGVERSION}/html/abs__blk__pydoc__template_8h__incl.map 95share/doc/gnuradio-${PKGVERSION}/html/abs__blk__pydoc__template_8h__incl.map
97share/doc/gnuradio-${PKGVERSION}/html/abs__blk__pydoc__template_8h__incl.md5 96share/doc/gnuradio-${PKGVERSION}/html/abs__blk__pydoc__template_8h__incl.md5
@@ -1377,26 +1376,29 @@ share/doc/gnuradio-${PKGVERSION}/html/cl @@ -1377,26 +1376,29 @@ share/doc/gnuradio-${PKGVERSION}/html/cl
1377share/doc/gnuradio-${PKGVERSION}/html/classWaterfallDisplayPlot.js 1376share/doc/gnuradio-${PKGVERSION}/html/classWaterfallDisplayPlot.js
1378share/doc/gnuradio-${PKGVERSION}/html/classWaterfallUpdateEvent-members.html 1377share/doc/gnuradio-${PKGVERSION}/html/classWaterfallUpdateEvent-members.html
1379share/doc/gnuradio-${PKGVERSION}/html/classWaterfallUpdateEvent.html 1378share/doc/gnuradio-${PKGVERSION}/html/classWaterfallUpdateEvent.html
1380share/doc/gnuradio-${PKGVERSION}/html/classWaterfallUpdateEvent.js 1379share/doc/gnuradio-${PKGVERSION}/html/classWaterfallUpdateEvent.js
1381share/doc/gnuradio-${PKGVERSION}/html/classalist-members.html 1380share/doc/gnuradio-${PKGVERSION}/html/classalist-members.html
1382share/doc/gnuradio-${PKGVERSION}/html/classalist.html 1381share/doc/gnuradio-${PKGVERSION}/html/classalist.html
1383share/doc/gnuradio-${PKGVERSION}/html/classalist.js 1382share/doc/gnuradio-${PKGVERSION}/html/classalist.js
1384share/doc/gnuradio-${PKGVERSION}/html/classata__header-members.html 1383share/doc/gnuradio-${PKGVERSION}/html/classata__header-members.html
1385share/doc/gnuradio-${PKGVERSION}/html/classata__header.html 1384share/doc/gnuradio-${PKGVERSION}/html/classata__header.html
1386share/doc/gnuradio-${PKGVERSION}/html/classata__header.js 1385share/doc/gnuradio-${PKGVERSION}/html/classata__header.js
1387share/doc/gnuradio-${PKGVERSION}/html/classawgn__bp-members.html 1386share/doc/gnuradio-${PKGVERSION}/html/classawgn__bp-members.html
1388share/doc/gnuradio-${PKGVERSION}/html/classawgn__bp.html 1387share/doc/gnuradio-${PKGVERSION}/html/classawgn__bp.html
1389share/doc/gnuradio-${PKGVERSION}/html/classawgn__bp.js 1388share/doc/gnuradio-${PKGVERSION}/html/classawgn__bp.js
 1389share/doc/gnuradio-${PKGVERSION}/html/classblock__gateway-members.html
 1390share/doc/gnuradio-${PKGVERSION}/html/classblock__gateway.html
 1391share/doc/gnuradio-${PKGVERSION}/html/classblock__gateway.js
1390share/doc/gnuradio-${PKGVERSION}/html/classcallbackregister__base_1_1callback__t-members.html 1392share/doc/gnuradio-${PKGVERSION}/html/classcallbackregister__base_1_1callback__t-members.html
1391share/doc/gnuradio-${PKGVERSION}/html/classcallbackregister__base_1_1callback__t.html 1393share/doc/gnuradio-${PKGVERSION}/html/classcallbackregister__base_1_1callback__t.html
1392share/doc/gnuradio-${PKGVERSION}/html/classcallbackregister__base_1_1callback__t.js 1394share/doc/gnuradio-${PKGVERSION}/html/classcallbackregister__base_1_1callback__t.js
1393share/doc/gnuradio-${PKGVERSION}/html/classcldpc-members.html 1395share/doc/gnuradio-${PKGVERSION}/html/classcldpc-members.html
1394share/doc/gnuradio-${PKGVERSION}/html/classcldpc.html 1396share/doc/gnuradio-${PKGVERSION}/html/classcldpc.html
1395share/doc/gnuradio-${PKGVERSION}/html/classcldpc.js 1397share/doc/gnuradio-${PKGVERSION}/html/classcldpc.js
1396share/doc/gnuradio-${PKGVERSION}/html/classes.html 1398share/doc/gnuradio-${PKGVERSION}/html/classes.html
1397share/doc/gnuradio-${PKGVERSION}/html/classgnuradio_1_1detail_1_1sptr__magic.html 1399share/doc/gnuradio-${PKGVERSION}/html/classgnuradio_1_1detail_1_1sptr__magic.html
1398share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__cc-members.html 1400share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__cc-members.html
1399share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__cc.html 1401share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__cc.html
1400share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__cc.js 1402share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__cc.js
1401share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__ff-members.html 1403share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__ff-members.html
1402share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__ff.html 1404share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1analog_1_1agc2__ff.html
@@ -1502,29 +1504,26 @@ share/doc/gnuradio-${PKGVERSION}/html/cl @@ -1502,29 +1504,26 @@ share/doc/gnuradio-${PKGVERSION}/html/cl
1502share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1audio_1_1sink.js 1504share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1audio_1_1sink.js
1503share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1audio_1_1source-members.html 1505share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1audio_1_1source-members.html
1504share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1audio_1_1source.html 1506share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1audio_1_1source.html
1505share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1audio_1_1source.js 1507share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1audio_1_1source.js
1506share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1basic__block-members.html 1508share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1basic__block-members.html
1507share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1basic__block.html 1509share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1basic__block.html
1508share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1basic__block.js 1510share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1basic__block.js
1509share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block-members.html 1511share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block-members.html
1510share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block.html 1512share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block.html
1511share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block.js 1513share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block.js
1512share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__detail-members.html 1514share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__detail-members.html
1513share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__detail.html 1515share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__detail.html
1514share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__detail.js 1516share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__detail.js
1515share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__gateway-members.html 
1516share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__gateway.html 
1517share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__gateway.js 
1518share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__registry-members.html 1517share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__registry-members.html
1519share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__registry.html 1518share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__registry.html
1520share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__registry.js 1519share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1block__registry.js
1521share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1abs__blk-members.html 1520share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1abs__blk-members.html
1522share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1abs__blk.html 1521share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1abs__blk.html
1523share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1abs__blk.js 1522share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1abs__blk.js
1524share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__blk-members.html 1523share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__blk-members.html
1525share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__blk.html 1524share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__blk.html
1526share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__blk.js 1525share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__blk.js
1527share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__const__bb-members.html 1526share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__const__bb-members.html
1528share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__const__bb.html 1527share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__const__bb.html
1529share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__const__bb.js 1528share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__const__bb.js
1530share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__const__cc-members.html 1529share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1add__const__cc-members.html
@@ -2009,26 +2008,29 @@ share/doc/gnuradio-${PKGVERSION}/html/cl @@ -2009,26 +2008,29 @@ share/doc/gnuradio-${PKGVERSION}/html/cl
2009share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1selective__fading__model.js 2008share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1selective__fading__model.js
2010share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1selective__fading__model2-members.html 2009share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1selective__fading__model2-members.html
2011share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1selective__fading__model2.html 2010share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1selective__fading__model2.html
2012share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1selective__fading__model2.js 2011share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1selective__fading__model2.js
2013share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1sro__model-members.html 2012share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1sro__model-members.html
2014share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1sro__model.html 2013share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1sro__model.html
2015share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1sro__model.js 2014share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1channels_1_1sro__model.js
2016share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock-members.html 2015share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock-members.html
2017share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock.html 2016share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock.html
2018share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock.js 2017share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock.js
2019share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock__if-members.html 2018share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock__if-members.html
2020share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock__if.html 2019share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock__if.html
2021share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock__if.js 2020share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1custom__lock__if.js
 2021share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1dictionary__logger__backend-members.html
 2022share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1dictionary__logger__backend.html
 2023share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1dictionary__logger__backend.js
2022share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm-members.html 2024share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm-members.html
2023share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm.html 2025share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm.html
2024share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm.js 2026share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm.js
2025share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__cma-members.html 2027share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__cma-members.html
2026share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__cma.html 2028share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__cma.html
2027share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__cma.js 2029share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__cma.js
2028share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__lms-members.html 2030share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__lms-members.html
2029share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__lms.html 2031share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__lms.html
2030share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__lms.js 2032share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__lms.js
2031share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__nlms-members.html 2033share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__nlms-members.html
2032share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__nlms.html 2034share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__nlms.html
2033share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__nlms.js 2035share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1adaptive__algorithm__nlms.js
2034share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1additive__scrambler__bb-members.html 2036share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1digital_1_1additive__scrambler__bb-members.html
@@ -3062,41 +3064,50 @@ share/doc/gnuradio-${PKGVERSION}/html/cl @@ -3062,41 +3064,50 @@ share/doc/gnuradio-${PKGVERSION}/html/cl
3062share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1amsg__source.js 3064share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1amsg__source.js
3063share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block-members.html 3065share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block-members.html
3064share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block.html 3066share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block.html
3065share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block.js 3067share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block.js
3066share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block__generic-members.html 3068share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block__generic-members.html
3067share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block__generic.html 3069share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block__generic.html
3068share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block__generic.js 3070share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__block__generic.js
3069share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__ddc-members.html 3071share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__ddc-members.html
3070share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__ddc.html 3072share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__ddc.html
3071share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__ddc.js 3073share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__ddc.js
3072share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__duc-members.html 3074share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__duc-members.html
3073share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__duc.html 3075share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__duc.html
3074share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__duc.js 3076share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__duc.js
 3077share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__fir__filter-members.html
 3078share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__fir__filter.html
 3079share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__fir__filter.js
3075share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__graph-members.html 3080share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__graph-members.html
3076share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__graph.html 3081share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__graph.html
3077share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__graph.js 3082share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__graph.js
3078share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__radio-members.html 3083share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__radio-members.html
3079share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__radio.html 3084share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__radio.html
3080share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__radio.js 3085share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__radio.js
3081share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__streamer-members.html 3086share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__streamer-members.html
3082share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__streamer.html 3087share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__streamer.html
3083share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__streamer.js 3088share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__rx__streamer.js
 3089share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__siggen-members.html
 3090share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__siggen.html
 3091share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__siggen.js
3084share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__radio-members.html 3092share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__radio-members.html
3085share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__radio.html 3093share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__radio.html
3086share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__radio.js 3094share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__radio.js
3087share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__streamer-members.html 3095share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__streamer-members.html
3088share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__streamer.html 3096share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__streamer.html
3089share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__streamer.js 3097share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__tx__streamer.js
 3098share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__window-members.html
 3099share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__window.html
 3100share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1rfnoc__window.js
3090share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1stream__args__t-members.html 3101share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1stream__args__t-members.html
3091share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1stream__args__t.html 3102share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1stream__args__t.html
3092share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1stream__args__t.js 3103share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1stream__args__t.js
3093share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__block-members.html 3104share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__block-members.html
3094share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__block.html 3105share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__block.html
3095share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__block.js 3106share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__block.js
3096share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__sink-members.html 3107share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__sink-members.html
3097share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__sink.html 3108share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__sink.html
3098share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__sink.js 3109share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__sink.js
3099share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__source-members.html 3110share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__source-members.html
3100share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__source.html 3111share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__source.html
3101share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__source.js 3112share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1uhd_1_1usrp__source.js
3102share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1video__sdl_1_1sink__s-members.html 3113share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1video__sdl_1_1sink__s-members.html
@@ -4229,26 +4240,38 @@ share/doc/gnuradio-${PKGVERSION}/html/de @@ -4229,26 +4240,38 @@ share/doc/gnuradio-${PKGVERSION}/html/de
4229share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__dep__incl.map 4240share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__dep__incl.map
4230share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__dep__incl.md5 4241share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__dep__incl.md5
4231share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__dep__incl.svg 4242share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__dep__incl.svg
4232share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__incl.map 4243share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__incl.map
4233share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__incl.md5 4244share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__incl.md5
4234share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__incl.svg 4245share/doc/gnuradio-${PKGVERSION}/html/device__source_8h__incl.svg
4235share/doc/gnuradio-${PKGVERSION}/html/device__source_8h_source.html 4246share/doc/gnuradio-${PKGVERSION}/html/device__source_8h_source.html
4236share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h.html 4247share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h.html
4237share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h.js 4248share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h.js
4238share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h__incl.map 4249share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h__incl.map
4239share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h__incl.md5 4250share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h__incl.md5
4240share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h__incl.svg 4251share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h__incl.svg
4241share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h_source.html 4252share/doc/gnuradio-${PKGVERSION}/html/device__source__pydoc__template_8h_source.html
 4253share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend_8h.html
 4254share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend_8h.js
 4255share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend_8h__incl.map
 4256share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend_8h__incl.md5
 4257share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend_8h__incl.svg
 4258share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend_8h_source.html
 4259share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend__pydoc__template_8h.html
 4260share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend__pydoc__template_8h.js
 4261share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend__pydoc__template_8h__incl.map
 4262share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend__pydoc__template_8h__incl.md5
 4263share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend__pydoc__template_8h__incl.svg
 4264share/doc/gnuradio-${PKGVERSION}/html/dictionary__logger__backend__pydoc__template_8h_source.html
4242share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h.html 4265share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h.html
4243share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h.js 4266share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h.js
4244share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h__dep__incl.map 4267share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h__dep__incl.map
4245share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h__dep__incl.md5 4268share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h__dep__incl.md5
4246share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h__dep__incl.svg 4269share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h__dep__incl.svg
4247share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h_source.html 4270share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type_8h_source.html
4248share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h.html 4271share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h.html
4249share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h.js 4272share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h.js
4250share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h__incl.map 4273share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h__incl.map
4251share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h__incl.md5 4274share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h__incl.md5
4252share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h__incl.svg 4275share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h__incl.svg
4253share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h_source.html 4276share/doc/gnuradio-${PKGVERSION}/html/diff__coding__type__pydoc__template_8h_source.html
4254share/doc/gnuradio-${PKGVERSION}/html/diff__decoder__bb_8h.html 4277share/doc/gnuradio-${PKGVERSION}/html/diff__decoder__bb_8h.html
@@ -5982,26 +6005,27 @@ share/doc/gnuradio-${PKGVERSION}/html/fu @@ -5982,26 +6005,27 @@ share/doc/gnuradio-${PKGVERSION}/html/fu
5982share/doc/gnuradio-${PKGVERSION}/html/functions_n.html 6005share/doc/gnuradio-${PKGVERSION}/html/functions_n.html
5983share/doc/gnuradio-${PKGVERSION}/html/functions_o.html 6006share/doc/gnuradio-${PKGVERSION}/html/functions_o.html
5984share/doc/gnuradio-${PKGVERSION}/html/functions_p.html 6007share/doc/gnuradio-${PKGVERSION}/html/functions_p.html
5985share/doc/gnuradio-${PKGVERSION}/html/functions_prop.html 6008share/doc/gnuradio-${PKGVERSION}/html/functions_prop.html
5986share/doc/gnuradio-${PKGVERSION}/html/functions_q.html 6009share/doc/gnuradio-${PKGVERSION}/html/functions_q.html
5987share/doc/gnuradio-${PKGVERSION}/html/functions_r.html 6010share/doc/gnuradio-${PKGVERSION}/html/functions_r.html
5988share/doc/gnuradio-${PKGVERSION}/html/functions_rela.html 6011share/doc/gnuradio-${PKGVERSION}/html/functions_rela.html
5989share/doc/gnuradio-${PKGVERSION}/html/functions_s.html 6012share/doc/gnuradio-${PKGVERSION}/html/functions_s.html
5990share/doc/gnuradio-${PKGVERSION}/html/functions_t.html 6013share/doc/gnuradio-${PKGVERSION}/html/functions_t.html
5991share/doc/gnuradio-${PKGVERSION}/html/functions_type.html 6014share/doc/gnuradio-${PKGVERSION}/html/functions_type.html
5992share/doc/gnuradio-${PKGVERSION}/html/functions_type.js 6015share/doc/gnuradio-${PKGVERSION}/html/functions_type.js
5993share/doc/gnuradio-${PKGVERSION}/html/functions_type_f.html 6016share/doc/gnuradio-${PKGVERSION}/html/functions_type_f.html
5994share/doc/gnuradio-${PKGVERSION}/html/functions_type_h.html 6017share/doc/gnuradio-${PKGVERSION}/html/functions_type_h.html
 6018share/doc/gnuradio-${PKGVERSION}/html/functions_type_l.html
5995share/doc/gnuradio-${PKGVERSION}/html/functions_type_o.html 6019share/doc/gnuradio-${PKGVERSION}/html/functions_type_o.html
5996share/doc/gnuradio-${PKGVERSION}/html/functions_type_q.html 6020share/doc/gnuradio-${PKGVERSION}/html/functions_type_q.html
5997share/doc/gnuradio-${PKGVERSION}/html/functions_type_r.html 6021share/doc/gnuradio-${PKGVERSION}/html/functions_type_r.html
5998share/doc/gnuradio-${PKGVERSION}/html/functions_type_s.html 6022share/doc/gnuradio-${PKGVERSION}/html/functions_type_s.html
5999share/doc/gnuradio-${PKGVERSION}/html/functions_type_t.html 6023share/doc/gnuradio-${PKGVERSION}/html/functions_type_t.html
6000share/doc/gnuradio-${PKGVERSION}/html/functions_u.html 6024share/doc/gnuradio-${PKGVERSION}/html/functions_u.html
6001share/doc/gnuradio-${PKGVERSION}/html/functions_v.html 6025share/doc/gnuradio-${PKGVERSION}/html/functions_v.html
6002share/doc/gnuradio-${PKGVERSION}/html/functions_vars.html 6026share/doc/gnuradio-${PKGVERSION}/html/functions_vars.html
6003share/doc/gnuradio-${PKGVERSION}/html/functions_vars.js 6027share/doc/gnuradio-${PKGVERSION}/html/functions_vars.js
6004share/doc/gnuradio-${PKGVERSION}/html/functions_vars_a.html 6028share/doc/gnuradio-${PKGVERSION}/html/functions_vars_a.html
6005share/doc/gnuradio-${PKGVERSION}/html/functions_vars_b.html 6029share/doc/gnuradio-${PKGVERSION}/html/functions_vars_b.html
6006share/doc/gnuradio-${PKGVERSION}/html/functions_vars_c.html 6030share/doc/gnuradio-${PKGVERSION}/html/functions_vars_c.html
6007share/doc/gnuradio-${PKGVERSION}/html/functions_vars_d.html 6031share/doc/gnuradio-${PKGVERSION}/html/functions_vars_d.html
@@ -7108,26 +7132,29 @@ share/doc/gnuradio-${PKGVERSION}/html/in @@ -7108,26 +7132,29 @@ share/doc/gnuradio-${PKGVERSION}/html/in
7108share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_134.svg 7132share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_134.svg
7109share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_135.map 7133share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_135.map
7110share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_135.md5 7134share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_135.md5
7111share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_135.svg 7135share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_135.svg
7112share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_136.map 7136share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_136.map
7113share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_136.md5 7137share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_136.md5
7114share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_136.svg 7138share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_136.svg
7115share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_137.map 7139share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_137.map
7116share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_137.md5 7140share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_137.md5
7117share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_137.svg 7141share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_137.svg
7118share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_138.map 7142share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_138.map
7119share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_138.md5 7143share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_138.md5
7120share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_138.svg 7144share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_138.svg
 7145share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_139.map
 7146share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_139.md5
 7147share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_139.svg
7121share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.map 7148share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.map
7122share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.md5 7149share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.md5
7123share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.svg 7150share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.svg
7124share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_15.map 7151share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_15.map
7125share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_15.md5 7152share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_15.md5
7126share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_15.svg 7153share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_15.svg
7127share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_16.map 7154share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_16.map
7128share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_16.md5 7155share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_16.md5
7129share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_16.svg 7156share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_16.svg
7130share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_17.map 7157share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_17.map
7131share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_17.md5 7158share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_17.md5
7132share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_17.svg 7159share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_17.svg
7133share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_18.map 7160share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_18.map
@@ -9782,26 +9809,32 @@ share/doc/gnuradio-${PKGVERSION}/html/rf @@ -9782,26 +9809,32 @@ share/doc/gnuradio-${PKGVERSION}/html/rf
9782share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h.js 9809share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h.js
9783share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__dep__incl.map 9810share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__dep__incl.map
9784share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__dep__incl.md5 9811share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__dep__incl.md5
9785share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__dep__incl.svg 9812share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__dep__incl.svg
9786share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__incl.map 9813share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__incl.map
9787share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__incl.md5 9814share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__incl.md5
9788share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__incl.svg 9815share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h__incl.svg
9789share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h_source.html 9816share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block_8h_source.html
9790share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h.html 9817share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h.html
9791share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h__incl.map 9818share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h__incl.map
9792share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h__incl.md5 9819share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h__incl.md5
9793share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h__incl.svg 9820share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h__incl.svg
9794share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h_source.html 9821share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic_8h_source.html
 9822share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic__pydoc__template_8h.html
 9823share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic__pydoc__template_8h.js
 9824share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic__pydoc__template_8h__incl.map
 9825share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic__pydoc__template_8h__incl.md5
 9826share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic__pydoc__template_8h__incl.svg
 9827share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__generic__pydoc__template_8h_source.html
9795share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h.html 9828share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h.html
9796share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h.js 9829share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h.js
9797share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h__incl.map 9830share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h__incl.map
9798share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h__incl.md5 9831share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h__incl.md5
9799share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h__incl.svg 9832share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h__incl.svg
9800share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h_source.html 9833share/doc/gnuradio-${PKGVERSION}/html/rfnoc__block__pydoc__template_8h_source.html
9801share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h.html 9834share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h.html
9802share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h__incl.map 9835share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h__incl.map
9803share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h__incl.md5 9836share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h__incl.md5
9804share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h__incl.svg 9837share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h__incl.svg
9805share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h_source.html 9838share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc_8h_source.html
9806share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc__pydoc__template_8h.html 9839share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc__pydoc__template_8h.html
9807share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc__pydoc__template_8h.js 9840share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc__pydoc__template_8h.js
@@ -9810,26 +9843,37 @@ share/doc/gnuradio-${PKGVERSION}/html/rf @@ -9810,26 +9843,37 @@ share/doc/gnuradio-${PKGVERSION}/html/rf
9810share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc__pydoc__template_8h__incl.svg 9843share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc__pydoc__template_8h__incl.svg
9811share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc__pydoc__template_8h_source.html 9844share/doc/gnuradio-${PKGVERSION}/html/rfnoc__ddc__pydoc__template_8h_source.html
9812share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h.html 9845share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h.html
9813share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h__incl.map 9846share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h__incl.map
9814share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h__incl.md5 9847share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h__incl.md5
9815share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h__incl.svg 9848share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h__incl.svg
9816share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h_source.html 9849share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc_8h_source.html
9817share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h.html 9850share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h.html
9818share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h.js 9851share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h.js
9819share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h__incl.map 9852share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h__incl.map
9820share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h__incl.md5 9853share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h__incl.md5
9821share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h__incl.svg 9854share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h__incl.svg
9822share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h_source.html 9855share/doc/gnuradio-${PKGVERSION}/html/rfnoc__duc__pydoc__template_8h_source.html
 9856share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter_8h.html
 9857share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter_8h__incl.map
 9858share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter_8h__incl.md5
 9859share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter_8h__incl.svg
 9860share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter_8h_source.html
 9861share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter__pydoc__template_8h.html
 9862share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter__pydoc__template_8h.js
 9863share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter__pydoc__template_8h__incl.map
 9864share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter__pydoc__template_8h__incl.md5
 9865share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter__pydoc__template_8h__incl.svg
 9866share/doc/gnuradio-${PKGVERSION}/html/rfnoc__fir__filter__pydoc__template_8h_source.html
9823share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h.html 9867share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h.html
9824share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h.js 9868share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h.js
9825share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__dep__incl.map 9869share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__dep__incl.map
9826share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__dep__incl.md5 9870share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__dep__incl.md5
9827share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__dep__incl.svg 9871share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__dep__incl.svg
9828share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__incl.map 9872share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__incl.map
9829share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__incl.md5 9873share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__incl.md5
9830share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__incl.svg 9874share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h__incl.svg
9831share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h_source.html 9875share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph_8h_source.html
9832share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph__pydoc__template_8h.html 9876share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph__pydoc__template_8h.html
9833share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph__pydoc__template_8h.js 9877share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph__pydoc__template_8h.js
9834share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph__pydoc__template_8h__incl.map 9878share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph__pydoc__template_8h__incl.map
9835share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph__pydoc__template_8h__incl.md5 9879share/doc/gnuradio-${PKGVERSION}/html/rfnoc__graph__pydoc__template_8h__incl.md5
@@ -9847,49 +9891,71 @@ share/doc/gnuradio-${PKGVERSION}/html/rf @@ -9847,49 +9891,71 @@ share/doc/gnuradio-${PKGVERSION}/html/rf
9847share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__radio__pydoc__template_8h__incl.svg 9891share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__radio__pydoc__template_8h__incl.svg
9848share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__radio__pydoc__template_8h_source.html 9892share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__radio__pydoc__template_8h_source.html
9849share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h.html 9893share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h.html
9850share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h__incl.map 9894share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h__incl.map
9851share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h__incl.md5 9895share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h__incl.md5
9852share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h__incl.svg 9896share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h__incl.svg
9853share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h_source.html 9897share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer_8h_source.html
9854share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h.html 9898share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h.html
9855share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h.js 9899share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h.js
9856share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h__incl.map 9900share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h__incl.map
9857share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h__incl.md5 9901share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h__incl.md5
9858share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h__incl.svg 9902share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h__incl.svg
9859share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h_source.html 9903share/doc/gnuradio-${PKGVERSION}/html/rfnoc__rx__streamer__pydoc__template_8h_source.html
 9904share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen_8h.html
 9905share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen_8h__incl.map
 9906share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen_8h__incl.md5
 9907share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen_8h__incl.svg
 9908share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen_8h_source.html
 9909share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen__pydoc__template_8h.html
 9910share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen__pydoc__template_8h.js
 9911share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen__pydoc__template_8h__incl.map
 9912share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen__pydoc__template_8h__incl.md5
 9913share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen__pydoc__template_8h__incl.svg
 9914share/doc/gnuradio-${PKGVERSION}/html/rfnoc__siggen__pydoc__template_8h_source.html
9860share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h.html 9915share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h.html
9861share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h__incl.map 9916share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h__incl.map
9862share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h__incl.md5 9917share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h__incl.md5
9863share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h__incl.svg 9918share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h__incl.svg
9864share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h_source.html 9919share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio_8h_source.html
9865share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h.html 9920share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h.html
9866share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h.js 9921share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h.js
9867share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h__incl.map 9922share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h__incl.map
9868share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h__incl.md5 9923share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h__incl.md5
9869share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h__incl.svg 9924share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h__incl.svg
9870share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h_source.html 9925share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__radio__pydoc__template_8h_source.html
9871share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h.html 9926share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h.html
9872share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h.js 9927share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h.js
9873share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h__incl.map 9928share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h__incl.map
9874share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h__incl.md5 9929share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h__incl.md5
9875share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h__incl.svg 9930share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h__incl.svg
9876share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h_source.html 9931share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer_8h_source.html
9877share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h.html 9932share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h.html
9878share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h.js 9933share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h.js
9879share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h__incl.map 9934share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h__incl.map
9880share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h__incl.md5 9935share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h__incl.md5
9881share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h__incl.svg 9936share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h__incl.svg
9882share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h_source.html 9937share/doc/gnuradio-${PKGVERSION}/html/rfnoc__tx__streamer__pydoc__template_8h_source.html
 9938share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window_8h.html
 9939share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window_8h__incl.map
 9940share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window_8h__incl.md5
 9941share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window_8h__incl.svg
 9942share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window_8h_source.html
 9943share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window__pydoc__template_8h.html
 9944share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window__pydoc__template_8h.js
 9945share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window__pydoc__template_8h__incl.map
 9946share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window__pydoc__template_8h__incl.md5
 9947share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window__pydoc__template_8h__incl.svg
 9948share/doc/gnuradio-${PKGVERSION}/html/rfnoc__window__pydoc__template_8h_source.html
9883share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h.html 9949share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h.html
9884share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h__incl.map 9950share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h__incl.map
9885share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h__incl.md5 9951share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h__incl.md5
9886share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h__incl.svg 9952share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h__incl.svg
9887share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h_source.html 9953share/doc/gnuradio-${PKGVERSION}/html/rms__cf_8h_source.html
9888share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h.html 9954share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h.html
9889share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h.js 9955share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h.js
9890share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h__incl.map 9956share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h__incl.map
9891share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h__incl.md5 9957share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h__incl.md5
9892share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h__incl.svg 9958share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h__incl.svg
9893share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h_source.html 9959share/doc/gnuradio-${PKGVERSION}/html/rms__cf__pydoc__template_8h_source.html
9894share/doc/gnuradio-${PKGVERSION}/html/rms__ff_8h.html 9960share/doc/gnuradio-${PKGVERSION}/html/rms__ff_8h.html
9895share/doc/gnuradio-${PKGVERSION}/html/rms__ff_8h__incl.map 9961share/doc/gnuradio-${PKGVERSION}/html/rms__ff_8h__incl.map
@@ -12287,26 +12353,27 @@ share/doc/gnuradio-${PKGVERSION}/xml/cla @@ -12287,26 +12353,27 @@ share/doc/gnuradio-${PKGVERSION}/xml/cla
12287share/doc/gnuradio-${PKGVERSION}/xml/classTimeUpdateEvent.xml 12353share/doc/gnuradio-${PKGVERSION}/xml/classTimeUpdateEvent.xml
12288share/doc/gnuradio-${PKGVERSION}/xml/classTriggerChannelMenu.xml 12354share/doc/gnuradio-${PKGVERSION}/xml/classTriggerChannelMenu.xml
12289share/doc/gnuradio-${PKGVERSION}/xml/classTriggerModeMenu.xml 12355share/doc/gnuradio-${PKGVERSION}/xml/classTriggerModeMenu.xml
12290share/doc/gnuradio-${PKGVERSION}/xml/classTriggerSlopeMenu.xml 12356share/doc/gnuradio-${PKGVERSION}/xml/classTriggerSlopeMenu.xml
12291share/doc/gnuradio-${PKGVERSION}/xml/classVectorDisplayForm.xml 12357share/doc/gnuradio-${PKGVERSION}/xml/classVectorDisplayForm.xml
12292share/doc/gnuradio-${PKGVERSION}/xml/classVectorDisplayPlot.xml 12358share/doc/gnuradio-${PKGVERSION}/xml/classVectorDisplayPlot.xml
12293share/doc/gnuradio-${PKGVERSION}/xml/classWaterfallData.xml 12359share/doc/gnuradio-${PKGVERSION}/xml/classWaterfallData.xml
12294share/doc/gnuradio-${PKGVERSION}/xml/classWaterfallDisplayForm.xml 12360share/doc/gnuradio-${PKGVERSION}/xml/classWaterfallDisplayForm.xml
12295share/doc/gnuradio-${PKGVERSION}/xml/classWaterfallDisplayPlot.xml 12361share/doc/gnuradio-${PKGVERSION}/xml/classWaterfallDisplayPlot.xml
12296share/doc/gnuradio-${PKGVERSION}/xml/classWaterfallUpdateEvent.xml 12362share/doc/gnuradio-${PKGVERSION}/xml/classWaterfallUpdateEvent.xml
12297share/doc/gnuradio-${PKGVERSION}/xml/classalist.xml 12363share/doc/gnuradio-${PKGVERSION}/xml/classalist.xml
12298share/doc/gnuradio-${PKGVERSION}/xml/classata__header.xml 12364share/doc/gnuradio-${PKGVERSION}/xml/classata__header.xml
12299share/doc/gnuradio-${PKGVERSION}/xml/classawgn__bp.xml 12365share/doc/gnuradio-${PKGVERSION}/xml/classawgn__bp.xml
 12366share/doc/gnuradio-${PKGVERSION}/xml/classblock__gateway.xml
12300share/doc/gnuradio-${PKGVERSION}/xml/classcallbackregister__base_1_1callback__t.xml 12367share/doc/gnuradio-${PKGVERSION}/xml/classcallbackregister__base_1_1callback__t.xml
12301share/doc/gnuradio-${PKGVERSION}/xml/classcldpc.xml 12368share/doc/gnuradio-${PKGVERSION}/xml/classcldpc.xml
12302share/doc/gnuradio-${PKGVERSION}/xml/classgnuradio_1_1detail_1_1sptr__magic.xml 12369share/doc/gnuradio-${PKGVERSION}/xml/classgnuradio_1_1detail_1_1sptr__magic.xml
12303share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc2__cc.xml 12370share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc2__cc.xml
12304share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc2__ff.xml 12371share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc2__ff.xml
12305share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc3__cc.xml 12372share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc3__cc.xml
12306share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc__cc.xml 12373share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc__cc.xml
12307share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc__ff.xml 12374share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1agc__ff.xml
12308share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1cpfsk__bc.xml 12375share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1cpfsk__bc.xml
12309share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1cpm.xml 12376share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1cpm.xml
12310share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1ctcss__squelch__ff.xml 12377share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1ctcss__squelch__ff.xml
12311share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1dpll__bb.xml 12378share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1dpll__bb.xml
12312share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1fastnoise__source.xml 12379share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1fastnoise__source.xml
@@ -12329,27 +12396,26 @@ share/doc/gnuradio-${PKGVERSION}/xml/cla @@ -12329,27 +12396,26 @@ share/doc/gnuradio-${PKGVERSION}/xml/cla
12329share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1pwr__squelch__ff.xml 12396share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1pwr__squelch__ff.xml
12330share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1quadrature__demod__cf.xml 12397share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1quadrature__demod__cf.xml
12331share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1rail__ff.xml 12398share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1rail__ff.xml
12332share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1random__uniform__source.xml 12399share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1random__uniform__source.xml
12333share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1sig__source.xml 12400share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1sig__source.xml
12334share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1simple__squelch__cc.xml 12401share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1simple__squelch__cc.xml
12335share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1squelch__base__cc.xml 12402share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1squelch__base__cc.xml
12336share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1squelch__base__ff.xml 12403share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1analog_1_1squelch__base__ff.xml
12337share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1audio_1_1sink.xml 12404share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1audio_1_1sink.xml
12338share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1audio_1_1source.xml 12405share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1audio_1_1source.xml
12339share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1basic__block.xml 12406share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1basic__block.xml
12340share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1block.xml 12407share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1block.xml
12341share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1block__detail.xml 12408share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1block__detail.xml
12342share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1block__gateway.xml 
12343share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1block__registry.xml 12409share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1block__registry.xml
12344share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1abs__blk.xml 12410share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1abs__blk.xml
12345share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__blk.xml 12411share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__blk.xml
12346share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__bb.xml 12412share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__bb.xml
12347share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__cc.xml 12413share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__cc.xml
12348share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__ff.xml 12414share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__ff.xml
12349share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__ii.xml 12415share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__ii.xml
12350share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__ss.xml 12416share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__ss.xml
12351share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__v.xml 12417share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1add__const__v.xml
12352share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1and__blk.xml 12418share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1and__blk.xml
12353share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1and__const.xml 12419share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1and__const.xml
12354share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1annotator__1to1.xml 12420share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1annotator__1to1.xml
12355share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1annotator__alltoall.xml 12421share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1annotator__alltoall.xml
@@ -12498,26 +12564,27 @@ share/doc/gnuradio-${PKGVERSION}/xml/cla @@ -12498,26 +12564,27 @@ share/doc/gnuradio-${PKGVERSION}/xml/cla
12498share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1buffer__reader__sm.xml 12564share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1buffer__reader__sm.xml
12499share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1buffer__single__mapped.xml 12565share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1buffer__single__mapped.xml
12500share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1buffer__type__base.xml 12566share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1buffer__type__base.xml
12501share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1cfo__model.xml 12567share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1cfo__model.xml
12502share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1channel__model.xml 12568share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1channel__model.xml
12503share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1channel__model2.xml 12569share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1channel__model2.xml
12504share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1dynamic__channel__model.xml 12570share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1dynamic__channel__model.xml
12505share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1fading__model.xml 12571share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1fading__model.xml
12506share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1selective__fading__model.xml 12572share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1selective__fading__model.xml
12507share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1selective__fading__model2.xml 12573share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1selective__fading__model2.xml
12508share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1sro__model.xml 12574share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1channels_1_1sro__model.xml
12509share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1custom__lock.xml 12575share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1custom__lock.xml
12510share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1custom__lock__if.xml 12576share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1custom__lock__if.xml
 12577share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1dictionary__logger__backend.xml
12511share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1adaptive__algorithm.xml 12578share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1adaptive__algorithm.xml
12512share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1adaptive__algorithm__cma.xml 12579share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1adaptive__algorithm__cma.xml
12513share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1adaptive__algorithm__lms.xml 12580share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1adaptive__algorithm__lms.xml
12514share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1adaptive__algorithm__nlms.xml 12581share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1adaptive__algorithm__nlms.xml
12515share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1additive__scrambler__bb.xml 12582share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1additive__scrambler__bb.xml
12516share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1binary__slicer__fb.xml 12583share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1binary__slicer__fb.xml
12517share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1burst__shaper.xml 12584share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1burst__shaper.xml
12518share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1chunks__to__symbols.xml 12585share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1chunks__to__symbols.xml
12519share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1clock__recovery__mm__cc.xml 12586share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1clock__recovery__mm__cc.xml
12520share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1clock__recovery__mm__ff.xml 12587share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1clock__recovery__mm__ff.xml
12521share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1constellation.xml 12588share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1constellation.xml
12522share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1constellation__16qam.xml 12589share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1constellation__16qam.xml
12523share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1constellation__8psk.xml 12590share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1digital_1_1constellation__8psk.xml
@@ -12849,31 +12916,34 @@ share/doc/gnuradio-${PKGVERSION}/xml/cla @@ -12849,31 +12916,34 @@ share/doc/gnuradio-${PKGVERSION}/xml/cla
12849share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1permutation.xml 12916share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1permutation.xml
12850share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1sccc__decoder__blk.xml 12917share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1sccc__decoder__blk.xml
12851share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1sccc__decoder__combined__blk.xml 12918share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1sccc__decoder__combined__blk.xml
12852share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1sccc__encoder.xml 12919share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1sccc__encoder.xml
12853share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1siso__combined__f.xml 12920share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1siso__combined__f.xml
12854share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1siso__f.xml 12921share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1siso__f.xml
12855share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1viterbi.xml 12922share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1viterbi.xml
12856share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1viterbi__combined.xml 12923share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1trellis_1_1viterbi__combined.xml
12857share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1amsg__source.xml 12924share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1amsg__source.xml
12858share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__block.xml 12925share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__block.xml
12859share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__block__generic.xml 12926share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__block__generic.xml
12860share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__ddc.xml 12927share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__ddc.xml
12861share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__duc.xml 12928share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__duc.xml
 12929share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__fir__filter.xml
12862share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__graph.xml 12930share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__graph.xml
12863share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__rx__radio.xml 12931share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__rx__radio.xml
12864share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__rx__streamer.xml 12932share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__rx__streamer.xml
 12933share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__siggen.xml
12865share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__tx__radio.xml 12934share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__tx__radio.xml
12866share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__tx__streamer.xml 12935share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__tx__streamer.xml
 12936share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1rfnoc__window.xml
12867share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1stream__args__t.xml 12937share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1stream__args__t.xml
12868share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1usrp__block.xml 12938share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1usrp__block.xml
12869share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1usrp__sink.xml 12939share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1usrp__sink.xml
12870share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1usrp__source.xml 12940share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1uhd_1_1usrp__source.xml
12871share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1video__sdl_1_1sink__s.xml 12941share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1video__sdl_1_1sink__s.xml
12872share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1video__sdl_1_1sink__uc.xml 12942share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1video__sdl_1_1sink__uc.xml
12873share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1alaw__decode__bs.xml 12943share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1alaw__decode__bs.xml
12874share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1alaw__encode__sb.xml 12944share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1alaw__encode__sb.xml
12875share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1codec2.xml 12945share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1codec2.xml
12876share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1codec2__decode__ps.xml 12946share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1codec2__decode__ps.xml
12877share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1codec2__encode__sp.xml 12947share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1codec2__encode__sp.xml
12878share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1cvsd__decode__bs.xml 12948share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1cvsd__decode__bs.xml
12879share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1cvsd__encode__sb.xml 12949share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1vocoder_1_1cvsd__encode__sb.xml
@@ -13104,26 +13174,28 @@ share/doc/gnuradio-${PKGVERSION}/xml/dec @@ -13104,26 +13174,28 @@ share/doc/gnuradio-${PKGVERSION}/xml/dec
13104share/doc/gnuradio-${PKGVERSION}/xml/decoder__pydoc__template_8h.xml 13174share/doc/gnuradio-${PKGVERSION}/xml/decoder__pydoc__template_8h.xml
13105share/doc/gnuradio-${PKGVERSION}/xml/deinterleave_8h.xml 13175share/doc/gnuradio-${PKGVERSION}/xml/deinterleave_8h.xml
13106share/doc/gnuradio-${PKGVERSION}/xml/deinterleave__pydoc__template_8h.xml 13176share/doc/gnuradio-${PKGVERSION}/xml/deinterleave__pydoc__template_8h.xml
13107share/doc/gnuradio-${PKGVERSION}/xml/delay_8h.xml 13177share/doc/gnuradio-${PKGVERSION}/xml/delay_8h.xml
13108share/doc/gnuradio-${PKGVERSION}/xml/delay__pydoc__template_8h.xml 13178share/doc/gnuradio-${PKGVERSION}/xml/delay__pydoc__template_8h.xml
13109share/doc/gnuradio-${PKGVERSION}/xml/depuncture__bb_8h.xml 13179share/doc/gnuradio-${PKGVERSION}/xml/depuncture__bb_8h.xml
13110share/doc/gnuradio-${PKGVERSION}/xml/depuncture__bb__pydoc__template_8h.xml 13180share/doc/gnuradio-${PKGVERSION}/xml/depuncture__bb__pydoc__template_8h.xml
13111share/doc/gnuradio-${PKGVERSION}/xml/descrambler__bb_8h.xml 13181share/doc/gnuradio-${PKGVERSION}/xml/descrambler__bb_8h.xml
13112share/doc/gnuradio-${PKGVERSION}/xml/descrambler__bb__pydoc__template_8h.xml 13182share/doc/gnuradio-${PKGVERSION}/xml/descrambler__bb__pydoc__template_8h.xml
13113share/doc/gnuradio-${PKGVERSION}/xml/device__sink_8h.xml 13183share/doc/gnuradio-${PKGVERSION}/xml/device__sink_8h.xml
13114share/doc/gnuradio-${PKGVERSION}/xml/device__sink__pydoc__template_8h.xml 13184share/doc/gnuradio-${PKGVERSION}/xml/device__sink__pydoc__template_8h.xml
13115share/doc/gnuradio-${PKGVERSION}/xml/device__source_8h.xml 13185share/doc/gnuradio-${PKGVERSION}/xml/device__source_8h.xml
13116share/doc/gnuradio-${PKGVERSION}/xml/device__source__pydoc__template_8h.xml 13186share/doc/gnuradio-${PKGVERSION}/xml/device__source__pydoc__template_8h.xml
 13187share/doc/gnuradio-${PKGVERSION}/xml/dictionary__logger__backend_8h.xml
 13188share/doc/gnuradio-${PKGVERSION}/xml/dictionary__logger__backend__pydoc__template_8h.xml
13117share/doc/gnuradio-${PKGVERSION}/xml/diff__coding__type_8h.xml 13189share/doc/gnuradio-${PKGVERSION}/xml/diff__coding__type_8h.xml
13118share/doc/gnuradio-${PKGVERSION}/xml/diff__coding__type__pydoc__template_8h.xml 13190share/doc/gnuradio-${PKGVERSION}/xml/diff__coding__type__pydoc__template_8h.xml
13119share/doc/gnuradio-${PKGVERSION}/xml/diff__decoder__bb_8h.xml 13191share/doc/gnuradio-${PKGVERSION}/xml/diff__decoder__bb_8h.xml
13120share/doc/gnuradio-${PKGVERSION}/xml/diff__decoder__bb__pydoc__template_8h.xml 13192share/doc/gnuradio-${PKGVERSION}/xml/diff__decoder__bb__pydoc__template_8h.xml
13121share/doc/gnuradio-${PKGVERSION}/xml/diff__encoder__bb_8h.xml 13193share/doc/gnuradio-${PKGVERSION}/xml/diff__encoder__bb_8h.xml
13122share/doc/gnuradio-${PKGVERSION}/xml/diff__encoder__bb__pydoc__template_8h.xml 13194share/doc/gnuradio-${PKGVERSION}/xml/diff__encoder__bb__pydoc__template_8h.xml
13123share/doc/gnuradio-${PKGVERSION}/xml/diff__phasor__cc_8h.xml 13195share/doc/gnuradio-${PKGVERSION}/xml/diff__phasor__cc_8h.xml
13124share/doc/gnuradio-${PKGVERSION}/xml/diff__phasor__cc__pydoc__template_8h.xml 13196share/doc/gnuradio-${PKGVERSION}/xml/diff__phasor__cc__pydoc__template_8h.xml
13125share/doc/gnuradio-${PKGVERSION}/xml/digital_8dox.xml 13197share/doc/gnuradio-${PKGVERSION}/xml/digital_8dox.xml
13126share/doc/gnuradio-${PKGVERSION}/xml/dir_000000.xml 13198share/doc/gnuradio-${PKGVERSION}/xml/dir_000000.xml
13127share/doc/gnuradio-${PKGVERSION}/xml/dir_000001.xml 13199share/doc/gnuradio-${PKGVERSION}/xml/dir_000001.xml
13128share/doc/gnuradio-${PKGVERSION}/xml/dir_000002.xml 13200share/doc/gnuradio-${PKGVERSION}/xml/dir_000002.xml
13129share/doc/gnuradio-${PKGVERSION}/xml/dir_000003.xml 13201share/doc/gnuradio-${PKGVERSION}/xml/dir_000003.xml
@@ -13875,26 +13947,28 @@ share/doc/gnuradio-${PKGVERSION}/xml/nam @@ -13875,26 +13947,28 @@ share/doc/gnuradio-${PKGVERSION}/xml/nam
13875share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1pdu.xml 13947share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1pdu.xml
13876share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1qtgui.xml 13948share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1qtgui.xml
13877share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1soapy.xml 13949share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1soapy.xml
13878share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1thread.xml 13950share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1thread.xml
13879share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1trellis.xml 13951share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1trellis.xml
13880share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1types.xml 13952share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1types.xml
13881share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1uhd.xml 13953share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1uhd.xml
13882share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1video__sdl.xml 13954share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1video__sdl.xml
13883share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1vocoder.xml 13955share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1vocoder.xml
13884share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1wavelet.xml 13956share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1wavelet.xml
13885share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1zeromq.xml 13957share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1zeromq.xml
13886share/doc/gnuradio-${PKGVERSION}/xml/namespacepmt.xml 13958share/doc/gnuradio-${PKGVERSION}/xml/namespacepmt.xml
13887share/doc/gnuradio-${PKGVERSION}/xml/namespacerpcpmtconverter.xml 13959share/doc/gnuradio-${PKGVERSION}/xml/namespacerpcpmtconverter.xml
 13960share/doc/gnuradio-${PKGVERSION}/xml/namespacespdlog.xml
 13961share/doc/gnuradio-${PKGVERSION}/xml/namespacespdlog_1_1sinks.xml
13888share/doc/gnuradio-${PKGVERSION}/xml/namespacestd.xml 13962share/doc/gnuradio-${PKGVERSION}/xml/namespacestd.xml
13889share/doc/gnuradio-${PKGVERSION}/xml/namespacethrift.xml 13963share/doc/gnuradio-${PKGVERSION}/xml/namespacethrift.xml
13890share/doc/gnuradio-${PKGVERSION}/xml/namespacethrift_1_1transport.xml 13964share/doc/gnuradio-${PKGVERSION}/xml/namespacethrift_1_1transport.xml
13891share/doc/gnuradio-${PKGVERSION}/xml/namespaceuhd.xml 13965share/doc/gnuradio-${PKGVERSION}/xml/namespaceuhd.xml
13892share/doc/gnuradio-${PKGVERSION}/xml/nco_8h.xml 13966share/doc/gnuradio-${PKGVERSION}/xml/nco_8h.xml
13893share/doc/gnuradio-${PKGVERSION}/xml/nco__pydoc__template_8h.xml 13967share/doc/gnuradio-${PKGVERSION}/xml/nco__pydoc__template_8h.xml
13894share/doc/gnuradio-${PKGVERSION}/xml/nlog10__ff_8h.xml 13968share/doc/gnuradio-${PKGVERSION}/xml/nlog10__ff_8h.xml
13895share/doc/gnuradio-${PKGVERSION}/xml/nlog10__ff__pydoc__template_8h.xml 13969share/doc/gnuradio-${PKGVERSION}/xml/nlog10__ff__pydoc__template_8h.xml
13896share/doc/gnuradio-${PKGVERSION}/xml/noise__source_8h.xml 13970share/doc/gnuradio-${PKGVERSION}/xml/noise__source_8h.xml
13897share/doc/gnuradio-${PKGVERSION}/xml/noise__source__pydoc__template_8h.xml 13971share/doc/gnuradio-${PKGVERSION}/xml/noise__source__pydoc__template_8h.xml
13898share/doc/gnuradio-${PKGVERSION}/xml/noise__type_8h.xml 13972share/doc/gnuradio-${PKGVERSION}/xml/noise__type_8h.xml
13899share/doc/gnuradio-${PKGVERSION}/xml/noise__type__pydoc__template_8h.xml 13973share/doc/gnuradio-${PKGVERSION}/xml/noise__type__pydoc__template_8h.xml
13900share/doc/gnuradio-${PKGVERSION}/xml/nop_8h.xml 13974share/doc/gnuradio-${PKGVERSION}/xml/nop_8h.xml
@@ -14132,41 +14206,48 @@ share/doc/gnuradio-${PKGVERSION}/xml/rep @@ -14132,41 +14206,48 @@ share/doc/gnuradio-${PKGVERSION}/xml/rep
14132share/doc/gnuradio-${PKGVERSION}/xml/repack__bits__bb__pydoc__template_8h.xml 14206share/doc/gnuradio-${PKGVERSION}/xml/repack__bits__bb__pydoc__template_8h.xml
14133share/doc/gnuradio-${PKGVERSION}/xml/repeat_8h.xml 14207share/doc/gnuradio-${PKGVERSION}/xml/repeat_8h.xml
14134share/doc/gnuradio-${PKGVERSION}/xml/repeat__pydoc__template_8h.xml 14208share/doc/gnuradio-${PKGVERSION}/xml/repeat__pydoc__template_8h.xml
14135share/doc/gnuradio-${PKGVERSION}/xml/repetition__decoder_8h.xml 14209share/doc/gnuradio-${PKGVERSION}/xml/repetition__decoder_8h.xml
14136share/doc/gnuradio-${PKGVERSION}/xml/repetition__decoder__pydoc__template_8h.xml 14210share/doc/gnuradio-${PKGVERSION}/xml/repetition__decoder__pydoc__template_8h.xml
14137share/doc/gnuradio-${PKGVERSION}/xml/repetition__encoder_8h.xml 14211share/doc/gnuradio-${PKGVERSION}/xml/repetition__encoder_8h.xml
14138share/doc/gnuradio-${PKGVERSION}/xml/repetition__encoder__pydoc__template_8h.xml 14212share/doc/gnuradio-${PKGVERSION}/xml/repetition__encoder__pydoc__template_8h.xml
14139share/doc/gnuradio-${PKGVERSION}/xml/req__msg__source_8h.xml 14213share/doc/gnuradio-${PKGVERSION}/xml/req__msg__source_8h.xml
14140share/doc/gnuradio-${PKGVERSION}/xml/req__msg__source__pydoc__template_8h.xml 14214share/doc/gnuradio-${PKGVERSION}/xml/req__msg__source__pydoc__template_8h.xml
14141share/doc/gnuradio-${PKGVERSION}/xml/req__source_8h.xml 14215share/doc/gnuradio-${PKGVERSION}/xml/req__source_8h.xml
14142share/doc/gnuradio-${PKGVERSION}/xml/req__source__pydoc__template_8h.xml 14216share/doc/gnuradio-${PKGVERSION}/xml/req__source__pydoc__template_8h.xml
14143share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__block_8h.xml 14217share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__block_8h.xml
14144share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__block__generic_8h.xml 14218share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__block__generic_8h.xml
 14219share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__block__generic__pydoc__template_8h.xml
14145share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__block__pydoc__template_8h.xml 14220share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__block__pydoc__template_8h.xml
14146share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__ddc_8h.xml 14221share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__ddc_8h.xml
14147share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__ddc__pydoc__template_8h.xml 14222share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__ddc__pydoc__template_8h.xml
14148share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__duc_8h.xml 14223share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__duc_8h.xml
14149share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__duc__pydoc__template_8h.xml 14224share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__duc__pydoc__template_8h.xml
 14225share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__fir__filter_8h.xml
 14226share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__fir__filter__pydoc__template_8h.xml
14150share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__graph_8h.xml 14227share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__graph_8h.xml
14151share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__graph__pydoc__template_8h.xml 14228share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__graph__pydoc__template_8h.xml
14152share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__rx__radio_8h.xml 14229share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__rx__radio_8h.xml
14153share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__rx__radio__pydoc__template_8h.xml 14230share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__rx__radio__pydoc__template_8h.xml
14154share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__rx__streamer_8h.xml 14231share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__rx__streamer_8h.xml
14155share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__rx__streamer__pydoc__template_8h.xml 14232share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__rx__streamer__pydoc__template_8h.xml
 14233share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__siggen_8h.xml
 14234share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__siggen__pydoc__template_8h.xml
14156share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__tx__radio_8h.xml 14235share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__tx__radio_8h.xml
14157share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__tx__radio__pydoc__template_8h.xml 14236share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__tx__radio__pydoc__template_8h.xml
14158share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__tx__streamer_8h.xml 14237share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__tx__streamer_8h.xml
14159share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__tx__streamer__pydoc__template_8h.xml 14238share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__tx__streamer__pydoc__template_8h.xml
 14239share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__window_8h.xml
 14240share/doc/gnuradio-${PKGVERSION}/xml/rfnoc__window__pydoc__template_8h.xml
14160share/doc/gnuradio-${PKGVERSION}/xml/rms__cf_8h.xml 14241share/doc/gnuradio-${PKGVERSION}/xml/rms__cf_8h.xml
14161share/doc/gnuradio-${PKGVERSION}/xml/rms__cf__pydoc__template_8h.xml 14242share/doc/gnuradio-${PKGVERSION}/xml/rms__cf__pydoc__template_8h.xml
14162share/doc/gnuradio-${PKGVERSION}/xml/rms__ff_8h.xml 14243share/doc/gnuradio-${PKGVERSION}/xml/rms__ff_8h.xml
14163share/doc/gnuradio-${PKGVERSION}/xml/rms__ff__pydoc__template_8h.xml 14244share/doc/gnuradio-${PKGVERSION}/xml/rms__ff__pydoc__template_8h.xml
14164share/doc/gnuradio-${PKGVERSION}/xml/rotator_8h.xml 14245share/doc/gnuradio-${PKGVERSION}/xml/rotator_8h.xml
14165share/doc/gnuradio-${PKGVERSION}/xml/rotator__cc_8h.xml 14246share/doc/gnuradio-${PKGVERSION}/xml/rotator__cc_8h.xml
14166share/doc/gnuradio-${PKGVERSION}/xml/rotator__cc__pydoc__template_8h.xml 14247share/doc/gnuradio-${PKGVERSION}/xml/rotator__cc__pydoc__template_8h.xml
14167share/doc/gnuradio-${PKGVERSION}/xml/rotator__pydoc__template_8h.xml 14248share/doc/gnuradio-${PKGVERSION}/xml/rotator__pydoc__template_8h.xml
14168share/doc/gnuradio-${PKGVERSION}/xml/rpcbufferedget_8h.xml 14249share/doc/gnuradio-${PKGVERSION}/xml/rpcbufferedget_8h.xml
14169share/doc/gnuradio-${PKGVERSION}/xml/rpccallbackregister__base_8h.xml 14250share/doc/gnuradio-${PKGVERSION}/xml/rpccallbackregister__base_8h.xml
14170share/doc/gnuradio-${PKGVERSION}/xml/rpccallbackregister__base__pydoc__template_8h.xml 14251share/doc/gnuradio-${PKGVERSION}/xml/rpccallbackregister__base__pydoc__template_8h.xml
14171share/doc/gnuradio-${PKGVERSION}/xml/rpcmanager_8h.xml 14252share/doc/gnuradio-${PKGVERSION}/xml/rpcmanager_8h.xml
14172share/doc/gnuradio-${PKGVERSION}/xml/rpcmanager__base_8h.xml 14253share/doc/gnuradio-${PKGVERSION}/xml/rpcmanager__base_8h.xml

cvs diff -r1.46 -r1.47 pkgsrc/ham/gnuradio-dtv/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-dtv/Makefile 2023/01/22 16:28:29 1.46
+++ pkgsrc/ham/gnuradio-dtv/Makefile 2023/01/23 19:26:21 1.47
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.46 2023/01/22 16:28:29 ryoon Exp $ 1# $NetBSD: Makefile,v 1.47 2023/01/23 19:26:21 adam Exp $
2 2
3PKGNAME= gnuradio-dtv-${VERSION} 3PKGNAME= gnuradio-dtv-${VERSION}
4PKGREVISION= 3 
5COMMENT= Various digital television standards of GNU Radio 4COMMENT= Various digital television standards of GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_DTV=ON 10CMAKE_ARGS+= -DENABLE_GR_DTV=ON
12CMAKE_ARGS+= -DENABLE_GR_FEC=ON 11CMAKE_ARGS+= -DENABLE_GR_FEC=ON
13CMAKE_ARGS+= -DENABLE_GRC=ON 12CMAKE_ARGS+= -DENABLE_GRC=ON
14 13
15PLIST_MINUS+= fec companion 14PLIST_MINUS+= fec companion
16 15
17.include "../../ham/gnuradio-fec/buildlink3.mk" 16.include "../../ham/gnuradio-fec/buildlink3.mk"

cvs diff -r1.45 -r1.46 pkgsrc/ham/gnuradio-fec/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-fec/Makefile 2023/01/22 16:28:30 1.45
+++ pkgsrc/ham/gnuradio-fec/Makefile 2023/01/23 19:26:21 1.46
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.45 2023/01/22 16:28:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.46 2023/01/23 19:26:21 adam Exp $
2 2
3PKGNAME= gnuradio-fec-${VERSION} 3PKGNAME= gnuradio-fec-${VERSION}
4PKGREVISION= 3 
5COMMENT= Forward Error Correction blocks, utilities, & examples of GNU Radio 4COMMENT= Forward Error Correction blocks, utilities, & examples of GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_FEC=ON 10CMAKE_ARGS+= -DENABLE_GR_FEC=ON
12CMAKE_ARGS+= -DENABLE_GRC=ON 11CMAKE_ARGS+= -DENABLE_GRC=ON
13 12
14PLIST_MINUS+= companion 13PLIST_MINUS+= companion
15 14
16.include "../../math/gsl/buildlink3.mk" 15.include "../../math/gsl/buildlink3.mk"
17.include "../../mk/bsd.pkg.mk" 16.include "../../mk/bsd.pkg.mk"

cvs diff -r1.21 -r1.22 pkgsrc/ham/gnuradio-network/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-network/Makefile 2023/01/22 16:28:30 1.21
+++ pkgsrc/ham/gnuradio-network/Makefile 2023/01/23 19:26:21 1.22
@@ -1,16 +1,15 @@ @@ -1,16 +1,15 @@
1# $NetBSD: Makefile,v 1.21 2023/01/22 16:28:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.22 2023/01/23 19:26:21 adam Exp $
2 2
3PKGNAME= gnuradio-network-${VERSION} 3PKGNAME= gnuradio-network-${VERSION}
4PKGREVISION= 3 
5COMMENT= Network blocks for GNU Radio 4COMMENT= Network blocks for GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_NETWORK=ON 10CMAKE_ARGS+= -DENABLE_GR_NETWORK=ON
12CMAKE_ARGS+= -DENABLE_GRC=ON 11CMAKE_ARGS+= -DENABLE_GRC=ON
13 12
14PLIST_MINUS+= companion 13PLIST_MINUS+= companion
15 14
16.include "../../mk/bsd.pkg.mk" 15.include "../../mk/bsd.pkg.mk"

cvs diff -r1.55 -r1.56 pkgsrc/ham/gnuradio-qtgui/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-qtgui/Makefile 2023/01/22 16:28:30 1.55
+++ pkgsrc/ham/gnuradio-qtgui/Makefile 2023/01/23 19:26:21 1.56
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.55 2023/01/22 16:28:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.56 2023/01/23 19:26:21 adam Exp $
2 2
3PKGNAME= gnuradio-qtgui-${VERSION} 3PKGNAME= gnuradio-qtgui-${VERSION}
4PKGREVISION= 3 
5COMMENT= Qt GUI module of GNU Radio 4COMMENT= Qt GUI module of GNU Radio
6 5
7DEPENDS+= ${PYPKGPREFIX}-qt5-[0-9]*:../../x11/py-qt5 6DEPENDS+= ${PYPKGPREFIX}-qt5-[0-9]*:../../x11/py-qt5
8 7
9.include "../../ham/gnuradio-core/Makefile.common" 8.include "../../ham/gnuradio-core/Makefile.common"
10.include "../../ham/gnuradio-core/Nocore.mk" 9.include "../../ham/gnuradio-core/Nocore.mk"
11 10
12#CONF_FILES+= ${EGDIR}/gr-qtgui.conf ${PKG_SYSCONFDIR}/gr-qtgui.conf 11#CONF_FILES+= ${EGDIR}/gr-qtgui.conf ${PKG_SYSCONFDIR}/gr-qtgui.conf
13 12
14CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 13CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
15CMAKE_ARGS+= -DENABLE_GR_QTGUI=ON 14CMAKE_ARGS+= -DENABLE_GR_QTGUI=ON
16CMAKE_ARGS+= -DENABLE_GRC=ON 15CMAKE_ARGS+= -DENABLE_GRC=ON
17 16

cvs diff -r1.16 -r1.17 pkgsrc/ham/gnuradio-soapy-sdr/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-soapy-sdr/Makefile 2023/01/22 16:28:30 1.16
+++ pkgsrc/ham/gnuradio-soapy-sdr/Makefile 2023/01/23 19:26:21 1.17
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.16 2023/01/22 16:28:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.17 2023/01/23 19:26:21 adam Exp $
2 2
3PKGNAME= gnuradio-soapy-sdr-${VERSION} 3PKGNAME= gnuradio-soapy-sdr-${VERSION}
4PKGREVISION= 3 
5COMMENT= GNU Radio bindings for SoapySDR 4COMMENT= GNU Radio bindings for SoapySDR
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_SOAPY=ON 10CMAKE_ARGS+= -DENABLE_GR_SOAPY=ON
12CMAKE_ARGS+= -DENABLE_GRC=ON 11CMAKE_ARGS+= -DENABLE_GRC=ON
13 12
14PLIST_MINUS+= companion 13PLIST_MINUS+= companion
15 14
16.include "../../ham/soapy-sdr/buildlink3.mk" 15.include "../../ham/soapy-sdr/buildlink3.mk"
17.include "../../mk/bsd.pkg.mk" 16.include "../../mk/bsd.pkg.mk"

cvs diff -r1.62 -r1.63 pkgsrc/ham/gnuradio-trellis/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-trellis/Makefile 2023/01/22 16:28:30 1.62
+++ pkgsrc/ham/gnuradio-trellis/Makefile 2023/01/23 19:26:21 1.63
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.62 2023/01/22 16:28:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.63 2023/01/23 19:26:21 adam Exp $
2 2
3PKGNAME= gnuradio-trellis-${VERSION} 3PKGNAME= gnuradio-trellis-${VERSION}
4PKGREVISION= 3 
5COMMENT= Trellis-based encoding and decoding algorithms for GNU Radio 4COMMENT= Trellis-based encoding and decoding algorithms for GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_TRELLIS=ON 10CMAKE_ARGS+= -DENABLE_GR_TRELLIS=ON
12CMAKE_ARGS+= -DENABLE_GR_DIGITAL=ON 11CMAKE_ARGS+= -DENABLE_GR_DIGITAL=ON
13CMAKE_ARGS+= -DENABLE_GRC=ON 12CMAKE_ARGS+= -DENABLE_GRC=ON
14 13
15DEPENDS+= gnuradio-digital-[0-9]*:../../ham/gnuradio-digital 14DEPENDS+= gnuradio-digital-[0-9]*:../../ham/gnuradio-digital
16DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto 15DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
17 16

cvs diff -r1.45 -r1.46 pkgsrc/ham/gnuradio-uhd/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-uhd/Makefile 2023/01/22 16:28:30 1.45
+++ pkgsrc/ham/gnuradio-uhd/Makefile 2023/01/23 19:26:21 1.46
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.45 2023/01/22 16:28:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.46 2023/01/23 19:26:21 adam Exp $
2 2
3PKGNAME= gnuradio-uhd-${VERSION} 3PKGNAME= gnuradio-uhd-${VERSION}
4PKGREVISION= 3 
5COMMENT= Uhd-based encoding and decoding algorithms for GNU Radio 4COMMENT= Uhd-based encoding and decoding algorithms for GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_UHD=ON 10CMAKE_ARGS+= -DENABLE_GR_UHD=ON
12CMAKE_ARGS+= -DENABLE_PYTHON=ON 11CMAKE_ARGS+= -DENABLE_PYTHON=ON
13CMAKE_ARGS+= -DENABLE_GRC=ON 12CMAKE_ARGS+= -DENABLE_GRC=ON
14 13
15PLIST_MINUS+= companion 14PLIST_MINUS+= companion
16 15
17.if ${OPSYS} != "Darwin" 16.if ${OPSYS} != "Darwin"

cvs diff -r1.12 -r1.13 pkgsrc/ham/gnuradio-uhd/PLIST (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-uhd/PLIST 2022/05/26 15:20:10 1.12
+++ pkgsrc/ham/gnuradio-uhd/PLIST 2023/01/23 19:26:21 1.13
@@ -1,44 +1,52 @@ @@ -1,44 +1,52 @@
1@comment $NetBSD: PLIST,v 1.12 2022/05/26 15:20:10 mef Exp $ 1@comment $NetBSD: PLIST,v 1.13 2023/01/23 19:26:21 adam Exp $
2bin/uhd_fft 2bin/uhd_fft
3bin/uhd_rx_cfile 3bin/uhd_rx_cfile
4bin/uhd_rx_nogui 4bin/uhd_rx_nogui
5bin/uhd_siggen 5bin/uhd_siggen
6bin/uhd_siggen_gui 6bin/uhd_siggen_gui
7include/gnuradio/uhd/amsg_source.h 7include/gnuradio/uhd/amsg_source.h
8include/gnuradio/uhd/api.h 8include/gnuradio/uhd/api.h
9include/gnuradio/uhd/usrp_block.h 9include/gnuradio/uhd/usrp_block.h
10include/gnuradio/uhd/usrp_sink.h 10include/gnuradio/uhd/usrp_sink.h
11include/gnuradio/uhd/usrp_source.h 11include/gnuradio/uhd/usrp_source.h
12lib/cmake/gnuradio/gnuradio-uhdConfig.cmake 12lib/cmake/gnuradio/gnuradio-uhdConfig.cmake
13lib/cmake/gnuradio/gnuradio-uhdTargets-release.cmake 13lib/cmake/gnuradio/gnuradio-uhdTargets-release.cmake
14lib/cmake/gnuradio/gnuradio-uhdTargets.cmake 14lib/cmake/gnuradio/gnuradio-uhdTargets.cmake
15lib/libgnuradio-uhd.so 15lib/libgnuradio-uhd.so
16lib/libgnuradio-uhd.so.${PKGVER_MICRO} 
17lib/libgnuradio-uhd.so.${PKGVERSION} 16lib/libgnuradio-uhd.so.${PKGVERSION}
 17lib/libgnuradio-uhd.so.${PKGVER_MICRO}
18lib/pkgconfig/gnuradio-uhd.pc 18lib/pkgconfig/gnuradio-uhd.pc
19${PYSITELIB}/gnuradio/uhd/__init__.py 19${PYSITELIB}/gnuradio/uhd/__init__.py
20${PYSITELIB}/gnuradio/uhd/__init__.pyc 20${PYSITELIB}/gnuradio/uhd/__init__.pyc
21${PYSITELIB}/gnuradio/uhd/__init__.pyo 21${PYSITELIB}/gnuradio/uhd/__init__.pyo
22${PYSITELIB}/gnuradio/uhd/msgq_runner.py 22${PYSITELIB}/gnuradio/uhd/msgq_runner.py
23${PYSITELIB}/gnuradio/uhd/msgq_runner.pyc 23${PYSITELIB}/gnuradio/uhd/msgq_runner.pyc
24${PYSITELIB}/gnuradio/uhd/msgq_runner.pyo 24${PYSITELIB}/gnuradio/uhd/msgq_runner.pyo
25${PYSITELIB}/gnuradio/uhd/uhd_app.py 25${PYSITELIB}/gnuradio/uhd/uhd_app.py
26${PYSITELIB}/gnuradio/uhd/uhd_app.pyc 26${PYSITELIB}/gnuradio/uhd/uhd_app.pyc
27${PYSITELIB}/gnuradio/uhd/uhd_app.pyo 27${PYSITELIB}/gnuradio/uhd/uhd_app.pyo
28${PYSITELIB}/gnuradio/uhd/uhd_python.so 28${PYSITELIB}/gnuradio/uhd/uhd_python.so
29${PYSITELIB}/gnuradio/uhd/uhd_siggen_base.py 29${PYSITELIB}/gnuradio/uhd/uhd_siggen_base.py
30${PYSITELIB}/gnuradio/uhd/uhd_siggen_base.pyc 30${PYSITELIB}/gnuradio/uhd/uhd_siggen_base.pyc
31${PYSITELIB}/gnuradio/uhd/uhd_siggen_base.pyo 31${PYSITELIB}/gnuradio/uhd/uhd_siggen_base.pyo
32share/doc/gnuradio-${PKGVERSION}/README.uhd 32share/doc/gnuradio-${PKGVERSION}/README.uhd
 33share/gnuradio/examples/uhd/rfnoc_fir_filter.grc
 34share/gnuradio/examples/uhd/rfnoc_keep1.grc
 35share/gnuradio/examples/uhd/rfnoc_radio_ddc.grc
 36share/gnuradio/examples/uhd/rfnoc_siggen.grc
 37share/gnuradio/examples/uhd/rfnoc_window.grc
33share/gnuradio/examples/uhd/tags_demo 38share/gnuradio/examples/uhd/tags_demo
34share/gnuradio/examples/uhd/uhd_const_wave.grc 39share/gnuradio/examples/uhd/uhd_const_wave.grc
35share/gnuradio/examples/uhd/uhd_fft.grc 40share/gnuradio/examples/uhd/uhd_fft.grc
36share/gnuradio/examples/uhd/uhd_msg_tune.grc 41share/gnuradio/examples/uhd/uhd_msg_tune.grc
37share/gnuradio/examples/uhd/uhd_normalized_gain.grc 42share/gnuradio/examples/uhd/uhd_normalized_gain.grc
38share/gnuradio/examples/uhd/uhd_siggen_gui.grc 43share/gnuradio/examples/uhd/uhd_siggen_gui.grc
39share/gnuradio/examples/uhd/uhd_two_tone_loopback.grc 44share/gnuradio/examples/uhd/uhd_two_tone_loopback.grc
40share/gnuradio/examples/uhd/uhd_wbfm_receive.grc 45share/gnuradio/examples/uhd/uhd_wbfm_receive.grc
41share/gnuradio/grc/blocks/uhd.tree.yml 46share/gnuradio/grc/blocks/uhd.tree.yml
42share/gnuradio/grc/blocks/uhd_amsg_source.block.yml 47share/gnuradio/grc/blocks/uhd_amsg_source.block.yml
 48share/gnuradio/grc/blocks/uhd_rfnoc_fir_filter.block.yml
 49share/gnuradio/grc/blocks/uhd_rfnoc_siggen.block.yml
 50share/gnuradio/grc/blocks/uhd_rfnoc_window.block.yml
43share/gnuradio/grc/blocks/uhd_usrp_sink.block.yml 51share/gnuradio/grc/blocks/uhd_usrp_sink.block.yml
44share/gnuradio/grc/blocks/uhd_usrp_source.block.yml 52share/gnuradio/grc/blocks/uhd_usrp_source.block.yml

cvs diff -r1.48 -r1.49 pkgsrc/ham/gnuradio-utils/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-utils/Makefile 2023/01/22 16:28:30 1.48
+++ pkgsrc/ham/gnuradio-utils/Makefile 2023/01/23 19:26:21 1.49
@@ -1,26 +1,23 @@ @@ -1,26 +1,23 @@
1# $NetBSD: Makefile,v 1.48 2023/01/22 16:28:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.49 2023/01/23 19:26:21 adam Exp $
2 2
3PKGNAME= gnuradio-utils-${VERSION} 3PKGNAME= gnuradio-utils-${VERSION}
4PKGREVISION= 3 
5COMMENT= Utilities in GNU Radio 4COMMENT= Utilities in GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10DEPENDS+= ${PYPKGPREFIX}-qwt-qt5-[0-9]*:../../x11/py-qwt-qt5 9DEPENDS+= ${PYPKGPREFIX}-click-[0-9]*:../../devel/py-click
11DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib 10DEPENDS+= ${PYPKGPREFIX}-click-plugins-[0-9]*:../../devel/py-click-plugins
12DEPENDS+= ${PYPKGPREFIX}-mako-[0-9]*:../../devel/py-mako 11DEPENDS+= ${PYPKGPREFIX}-mako-[0-9]*:../../devel/py-mako
 12DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib
 13DEPENDS+= ${PYPKGPREFIX}-qwt-qt5-[0-9]*:../../x11/py-qwt-qt5
13DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml 14DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml
14DEPENDS+= ${PYPKGPREFIX}-click-plugins-[0-9]*:../../devel/py-click-plugins 
15 
16PYTHON_VERSIONED_DEPENDENCIES+= click 
17 15
18#CONF_FILES+= ${EGDIR}/modtool.conf ${PKG_SYSCONFDIR}/modtool.conf 16#CONF_FILES+= ${EGDIR}/modtool.conf ${PKG_SYSCONFDIR}/modtool.conf
19 17
20CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 18CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
21CMAKE_ARGS+= -DENABLE_GR_BLOCKTOOL=ON 19CMAKE_ARGS+= -DENABLE_GR_BLOCKTOOL=ON
22CMAKE_ARGS+= -DENABLE_GR_MODTOOL=ON 20CMAKE_ARGS+= -DENABLE_GR_MODTOOL=ON
23CMAKE_ARGS+= -DENABLE_GR_UTILS=ON 21CMAKE_ARGS+= -DENABLE_GR_UTILS=ON
24 22
25.include "../../lang/python/versioned_dependencies.mk" 
26.include "../../mk/bsd.pkg.mk" 23.include "../../mk/bsd.pkg.mk"

cvs diff -r1.59 -r1.60 pkgsrc/ham/gnuradio-video-sdl/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-video-sdl/Makefile 2023/01/22 16:28:30 1.59
+++ pkgsrc/ham/gnuradio-video-sdl/Makefile 2023/01/23 19:26:22 1.60
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.59 2023/01/22 16:28:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.60 2023/01/23 19:26:22 adam Exp $
2 2
3PKGNAME= gnuradio-video-sdl-${VERSION} 3PKGNAME= gnuradio-video-sdl-${VERSION}
4PKGREVISION= 3 
5COMMENT= SDL (Simple DirectMedia Layer) bindings for GNU Radio 4COMMENT= SDL (Simple DirectMedia Layer) bindings for GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_VIDEO_SDL=ON 10CMAKE_ARGS+= -DENABLE_GR_VIDEO_SDL=ON
12CMAKE_ARGS+= -DSDL_INCLUDE_DIR=${PREFIX}/include/SDL 11CMAKE_ARGS+= -DSDL_INCLUDE_DIR=${PREFIX}/include/SDL
13CMAKE_ARGS+= -DENABLE_GRC=ON 12CMAKE_ARGS+= -DENABLE_GRC=ON
14 13
15PLIST_MINUS+= companion 14PLIST_MINUS+= companion
16 15
17.include "../../devel/SDL/buildlink3.mk" 16.include "../../devel/SDL/buildlink3.mk"

cvs diff -r1.44 -r1.45 pkgsrc/ham/gnuradio-vocoder/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-vocoder/Makefile 2023/01/22 16:28:31 1.44
+++ pkgsrc/ham/gnuradio-vocoder/Makefile 2023/01/23 19:26:22 1.45
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.44 2023/01/22 16:28:31 ryoon Exp $ 1# $NetBSD: Makefile,v 1.45 2023/01/23 19:26:22 adam Exp $
2 2
3PKGNAME= gnuradio-vocoder-${VERSION} 3PKGNAME= gnuradio-vocoder-${VERSION}
4PKGREVISION= 3 
5COMMENT= All available vocoders in GNU Radio 4COMMENT= All available vocoders in GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_VOCODER=ON 10CMAKE_ARGS+= -DENABLE_GR_VOCODER=ON
12CMAKE_ARGS+= -DENABLE_GRC=ON 11CMAKE_ARGS+= -DENABLE_GRC=ON
13 12
14PLIST_MINUS+= companion 13PLIST_MINUS+= companion
15 14
16.include "../../devel/libusb1/buildlink3.mk" 15.include "../../devel/libusb1/buildlink3.mk"
17.include "../../ham/codec2/buildlink3.mk" 16.include "../../ham/codec2/buildlink3.mk"

cvs diff -r1.43 -r1.44 pkgsrc/ham/gnuradio-wavelet/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-wavelet/Makefile 2023/01/22 16:28:31 1.43
+++ pkgsrc/ham/gnuradio-wavelet/Makefile 2023/01/23 19:26:22 1.44
@@ -1,14 +1,13 @@ @@ -1,14 +1,13 @@
1# $NetBSD: Makefile,v 1.43 2023/01/22 16:28:31 ryoon Exp $ 1# $NetBSD: Makefile,v 1.44 2023/01/23 19:26:22 adam Exp $
2 2
3PKGNAME= gnuradio-wavelet-${VERSION} 3PKGNAME= gnuradio-wavelet-${VERSION}
4PKGREVISION= 3 
5COMMENT= Wavelet transform of GNU Radio 4COMMENT= Wavelet transform of GNU Radio
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_WAVELET=ON 10CMAKE_ARGS+= -DENABLE_GR_WAVELET=ON
12 11
13.include "../../math/gsl/buildlink3.mk" 12.include "../../math/gsl/buildlink3.mk"
14.include "../../mk/bsd.pkg.mk" 13.include "../../mk/bsd.pkg.mk"

cvs diff -r1.46 -r1.47 pkgsrc/ham/gnuradio-zeromq/Makefile (expand / switch to unified diff)

--- pkgsrc/ham/gnuradio-zeromq/Makefile 2023/01/22 16:28:31 1.46
+++ pkgsrc/ham/gnuradio-zeromq/Makefile 2023/01/23 19:26:22 1.47
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.46 2023/01/22 16:28:31 ryoon Exp $ 1# $NetBSD: Makefile,v 1.47 2023/01/23 19:26:22 adam Exp $
2 2
3PKGNAME= gnuradio-zeromq-${VERSION} 3PKGNAME= gnuradio-zeromq-${VERSION}
4PKGREVISION= 3 
5COMMENT= All of the zeromq blocks, utilities, and examples 4COMMENT= All of the zeromq blocks, utilities, and examples
6 5
7.include "../../ham/gnuradio-core/Makefile.common" 6.include "../../ham/gnuradio-core/Makefile.common"
8.include "../../ham/gnuradio-core/Nocore.mk" 7.include "../../ham/gnuradio-core/Nocore.mk"
9 8
10CMAKE_ARGS+= -DENABLE_DEFAULT=OFF 9CMAKE_ARGS+= -DENABLE_DEFAULT=OFF
11CMAKE_ARGS+= -DENABLE_GR_ZEROMQ=ON 10CMAKE_ARGS+= -DENABLE_GR_ZEROMQ=ON
12CMAKE_ARGS+= -DZEROMQ_INCLUDE_DIRS=${PREFIX}/include 11CMAKE_ARGS+= -DZEROMQ_INCLUDE_DIRS=${PREFIX}/include
13CMAKE_ARGS+= -DENABLE_GRC=ON 12CMAKE_ARGS+= -DENABLE_GRC=ON
14 13
15PLIST_MINUS+= companion 14PLIST_MINUS+= companion
16 15
17.include "../../net/cppzmq/buildlink3.mk" 16.include "../../net/cppzmq/buildlink3.mk"