diff options
author | tnn <tnn@pkgsrc.org> | 2021-06-27 08:08:59 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2021-06-27 08:08:59 +0000 |
commit | 132bc66960864087e462e5697382e3e2478e973a (patch) | |
tree | 133a1ed0bc365d6b14722b5402aab7f467f1765e /ham | |
parent | 4ac90695c2f5df35da6edb1c034d21bfdafde4a2 (diff) | |
download | pkgsrc-132bc66960864087e462e5697382e3e2478e973a.tar.gz |
gnuradio-*: update to 3.9.2.0
Changed
SoapySDR support (gr-soapy)
GRC
Parameter expressions and/or values can be displayed in blocks on the flowgraph. Previously, only values were displayed. Look for the "Show Parameter ..." toggles under the View menu.
Deprecated blocks are shown in a distinct color (orange), and the optional deprecated property has been added to block yaml
Dark theme works better, especially for parameter fields
Vector length is now correctly applied to all input ports
Validation has been improved. Raw types are validated. Port connections are checked by type rather than by item size.
Variable names that cause name conflicts in Python code (e.g., with package names) are rejected
Bus logic fixes
Blocks can no longer be dragged off the screen and lost forever
gnuradio-runtime
Remove pmt::pmt_* functions, which were not actually implemented. This is technically an API change, but any use of the API would have resulted in a link error.
Remove Python bindings for internal buffer functions
gr-analog
Added an example for PLL Frequency Detector
Better names for parameters in PLL GRC blocks
gr-blocks
Consistent naming for Vector Length parameter in GRC blocks
count_bits uses VOLK popcnt for better performance (used for example in the Correlate Access Code block)
Rotator block phase increment parameter is controllable via a message, and a tag can be added at the point where the increment is adjusted
gr-digital
MPSK example updated to use a Linear Equalizer (replacing deprecated block)
gr-filter
Filter Delay documentation improvement
Interpolating FIR filter can generate C++ code
gr-dtv
VL-SNR bugs fixed (incorrect constants).
gr-qtgui
Improve autoscaling for vector sinks
Fix floating-point resolution problems in several widgets, due to interpretation of PMT doubles as floats
gr-uhd
Add policy enum to Python bindings for tune_request
Additional time spec options on UHD blocks (PC Clock on Next PPS, GPS Time on Next PPS)
Fix up code that was generating warnings
Fix command handler logic to apply commands from messages to the correct channel
gr_filter_design
"File/Save" is disabled until the taps have been computed, and the GUI is reset after a save, to make it clearer which data is being saved.
Entries are hidden for parameters that do not apply to the selected filter type.
Save window type as an integer instead of a Python enum name
gr_modtool
Improve validation of module and block names
Build System and Infrastructure
Improved messages related to dependencies MPIR and GMP. Only one of these packages is required, and the previous error messages were confusing.
Cleaner builds for Windows and Conda. A number of general cmake improvements have resulted from this work.
In-tree packaging files for DEB and RPM, used with Launchpad and COPR
Added man pages for GNU Radio tools
Test code generation for all in-tree GRC examples
In GrPybind.cmake, PYBIND11_INCLUDE_DIR (incorrect) was changed to
pybind11_INCLUDE_DIR
Diffstat (limited to 'ham')
36 files changed, 268 insertions, 131 deletions
diff --git a/ham/gnuradio-channels/Makefile b/ham/gnuradio-channels/Makefile index 0e8686bce3b..f72be31b593 100644 --- a/ham/gnuradio-channels/Makefile +++ b/ham/gnuradio-channels/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.27 2021/06/01 09:12:24 wiz Exp $ +# $NetBSD: Makefile,v 1.28 2021/06/27 08:08:59 tnn Exp $ PKGNAME= gnuradio-channels-${VERSION} -PKGREVISION= 4 COMMENT= Signal processing blocks to simulate channel models of GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-channels/PLIST b/ham/gnuradio-channels/PLIST index d28d43afe9c..f96b55a8b54 100644 --- a/ham/gnuradio-channels/PLIST +++ b/ham/gnuradio-channels/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2021/04/07 16:14:07 tnn Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/06/27 08:08:59 tnn Exp $ include/gnuradio/channels/api.h include/gnuradio/channels/channel_model.h include/gnuradio/channels/channel_model2.h @@ -9,7 +9,7 @@ lib/cmake/gnuradio/gnuradio-channelsConfig.cmake lib/cmake/gnuradio/gnuradio-channelsTargets-release.cmake lib/cmake/gnuradio/gnuradio-channelsTargets.cmake lib/libgnuradio-channels.so -lib/libgnuradio-channels.so.3.9.1 +lib/libgnuradio-channels.so.3.9.2 lib/libgnuradio-channels.so.${PKGVERSION} lib/pkgconfig/gnuradio-channels.pc ${PYSITELIB}/gnuradio/channels/__init__.py diff --git a/ham/gnuradio-companion/Makefile b/ham/gnuradio-companion/Makefile index 8f1d9fa3cb8..4c483276dec 100644 --- a/ham/gnuradio-companion/Makefile +++ b/ham/gnuradio-companion/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.46 2021/06/01 09:12:24 wiz Exp $ +# $NetBSD: Makefile,v 1.47 2021/06/27 08:08:59 tnn Exp $ PKGNAME= gnuradio-companion-${VERSION} -PKGREVISION= 4 COMMENT= User interface entry of GNU Radio #CONF_FILES+= ${EGDIR}/grc.conf ${PKG_SYSCONFDIR}/grc.conf diff --git a/ham/gnuradio-core/Makefile b/ham/gnuradio-core/Makefile index 9d7ed20e708..b2b31ede4d0 100644 --- a/ham/gnuradio-core/Makefile +++ b/ham/gnuradio-core/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.83 2021/06/01 09:12:24 wiz Exp $ +# $NetBSD: Makefile,v 1.84 2021/06/27 08:08:59 tnn Exp $ PKGNAME= gnuradio-core-${VERSION} -PKGREVISION= 5 COMMENT= Core part of GNU Radio, all others need this PLIST_MINUS= # empty diff --git a/ham/gnuradio-core/Makefile.common b/ham/gnuradio-core/Makefile.common index dfa25cdce99..b31ac98813a 100644 --- a/ham/gnuradio-core/Makefile.common +++ b/ham/gnuradio-core/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.34 2021/05/15 10:09:06 nia Exp $ +# $NetBSD: Makefile.common,v 1.35 2021/06/27 08:08:59 tnn Exp $ # This Makefile fragment is included in the package Makefiles for # GNU Radio distributed packages (they all share common configure and build # settings). @@ -13,6 +13,7 @@ # used by ham/gnuradio-dtv/Makefile # used by ham/gnuradio-fec/Makefile # used by ham/gnuradio-qtgui/Makefile +# used by ham/gnuradio-soapy-sdr/Makefile # used by ham/gnuradio-trellis/Makefile # used by ham/gnuradio-uhd/Makefile # used by ham/gnuradio-utils/Makefile diff --git a/ham/gnuradio-core/PLIST b/ham/gnuradio-core/PLIST index fe8882f191f..39865a0b61c 100644 --- a/ham/gnuradio-core/PLIST +++ b/ham/gnuradio-core/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.31 2021/04/07 16:14:07 tnn Exp $ +@comment $NetBSD: PLIST,v 1.32 2021/06/27 08:08:59 tnn Exp $ bin/gnuradio-config-info bin/gr_filter_design include/gnuradio/analog/agc.h @@ -313,7 +313,6 @@ include/gnuradio/thread/thread_group.h include/gnuradio/top_block.h include/gnuradio/tpb_detail.h include/gnuradio/types.h -include/gnuradio/unittests.h include/pmt/api.h include/pmt/pmt.h include/pmt/pmt_pool.h @@ -375,25 +374,25 @@ lib/cmake/gnuradio/gnuradio-runtimeConfig.cmake lib/cmake/gnuradio/gnuradio-runtimeTargets-release.cmake lib/cmake/gnuradio/gnuradio-runtimeTargets.cmake lib/libgnuradio-analog.so -lib/libgnuradio-analog.so.3.9.1 +lib/libgnuradio-analog.so.3.9.2 lib/libgnuradio-analog.so.${PKGVERSION} lib/libgnuradio-audio.so -lib/libgnuradio-audio.so.3.9.1 +lib/libgnuradio-audio.so.3.9.2 lib/libgnuradio-audio.so.${PKGVERSION} lib/libgnuradio-blocks.so -lib/libgnuradio-blocks.so.3.9.1 +lib/libgnuradio-blocks.so.3.9.2 lib/libgnuradio-blocks.so.${PKGVERSION} lib/libgnuradio-fft.so -lib/libgnuradio-fft.so.3.9.1 +lib/libgnuradio-fft.so.3.9.2 lib/libgnuradio-fft.so.${PKGVERSION} lib/libgnuradio-filter.so -lib/libgnuradio-filter.so.3.9.1 +lib/libgnuradio-filter.so.3.9.2 lib/libgnuradio-filter.so.${PKGVERSION} lib/libgnuradio-pmt.so -lib/libgnuradio-pmt.so.3.9.1 +lib/libgnuradio-pmt.so.3.9.2 lib/libgnuradio-pmt.so.${PKGVERSION} lib/libgnuradio-runtime.so -lib/libgnuradio-runtime.so.3.9.1 +lib/libgnuradio-runtime.so.3.9.2 lib/libgnuradio-runtime.so.${PKGVERSION} lib/pkgconfig/gnuradio-analog.pc lib/pkgconfig/gnuradio-audio.pc diff --git a/ham/gnuradio-core/buildlink3.mk b/ham/gnuradio-core/buildlink3.mk index e24a7370fe7..1676d5788ec 100644 --- a/ham/gnuradio-core/buildlink3.mk +++ b/ham/gnuradio-core/buildlink3.mk @@ -1,12 +1,12 @@ -# $NetBSD: buildlink3.mk,v 1.31 2021/04/07 16:14:07 tnn Exp $ +# $NetBSD: buildlink3.mk,v 1.32 2021/06/27 08:08:59 tnn Exp $ BUILDLINK_TREE+= gnuradio-core .if !defined(GNURADIO_CORE_BUILDLINK3_MK) GNURADIO_CORE_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.gnuradio-core+= gnuradio-core>=3.9.1.0 -BUILDLINK_ABI_DEPENDS.gnuradio-core+= gnuradio-core>=3.9.1.0 +BUILDLINK_API_DEPENDS.gnuradio-core+= gnuradio-core>=3.9.2.0 +BUILDLINK_ABI_DEPENDS.gnuradio-core+= gnuradio-core>=3.9.2.0 BUILDLINK_PKGSRCDIR.gnuradio-core?= ../../ham/gnuradio-core .include "../../devel/gmp/buildlink3.mk" diff --git a/ham/gnuradio-core/distinfo b/ham/gnuradio-core/distinfo index f694ad78d71..fbbdad5c631 100644 --- a/ham/gnuradio-core/distinfo +++ b/ham/gnuradio-core/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.41 2021/04/07 16:14:07 tnn Exp $ +$NetBSD: distinfo,v 1.42 2021/06/27 08:08:59 tnn Exp $ -SHA1 (gnuradio-3.9.1.0.tar.gz) = 058f77b2ca3412003d56f8f6a6676bfd6e4d6332 -RMD160 (gnuradio-3.9.1.0.tar.gz) = f9f8cb138f0a62592f31b6af4ed378ac9a797163 -SHA512 (gnuradio-3.9.1.0.tar.gz) = 01baf79cb77e093f845d223c12f6ec1a70ada297022b6ed7d17485e1e3143ee8655ef93e62561d2b5daa38518e8f6a5bda98c53b613ceced0e3bbe5051279514 -Size (gnuradio-3.9.1.0.tar.gz) = 4127980 bytes +SHA1 (gnuradio-3.9.2.0.tar.gz) = 6cb92288d6d5f7e758010b259ebc230849cd4436 +RMD160 (gnuradio-3.9.2.0.tar.gz) = b42446a4459a2532acf60455d42610e37d9499b1 +SHA512 (gnuradio-3.9.2.0.tar.gz) = 4a2807d6713fff10906354553ef5810b81ef4116573fdf15b122e8fc18373c56e1685b8592a8f0f08c0524c4983f3d7d4774bdada98dff0990d028f71cbd7898 +Size (gnuradio-3.9.2.0.tar.gz) = 4219714 bytes SHA1 (patch-gnuradio-runtime_lib_constants.cc.in) = e3ca88db06eef0a38387ddbfbd9a4d3b6262b9a6 SHA1 (patch-gr-audio_lib_CMakeLists.txt) = 9adacb93a20b2be596a23985306cbfd5f93c80a8 SHA1 (patch-gr-audio_lib_alsa_alsa__impl_h) = cfa9b629e5cf21198cfd53cf27a908b5874866f4 diff --git a/ham/gnuradio-core/version.mk b/ham/gnuradio-core/version.mk index b1e2c0c08ac..e3ba484ea5e 100644 --- a/ham/gnuradio-core/version.mk +++ b/ham/gnuradio-core/version.mk @@ -1,3 +1,3 @@ -# $NetBSD: version.mk,v 1.2 2021/04/07 16:14:07 tnn Exp $ +# $NetBSD: version.mk,v 1.3 2021/06/27 08:08:59 tnn Exp $ -VERSION= 3.9.1.0 +VERSION= 3.9.2.0 diff --git a/ham/gnuradio-ctrlport/Makefile b/ham/gnuradio-ctrlport/Makefile index a6c9596c57c..c8535561108 100644 --- a/ham/gnuradio-ctrlport/Makefile +++ b/ham/gnuradio-ctrlport/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.28 2021/06/01 09:12:24 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2021/06/27 08:08:59 tnn Exp $ PKGNAME= gnuradio-ctrlport-${VERSION} -PKGREVISION= 4 COMMENT= New set of hooks into GNU Radio to allow a remote client to attach .include "../../ham/gnuradio-core/Makefile.common" .include "../../ham/gnuradio-core/Nocore.mk" diff --git a/ham/gnuradio-digital/Makefile b/ham/gnuradio-digital/Makefile index 9aaf251c840..a059b2df92f 100644 --- a/ham/gnuradio-digital/Makefile +++ b/ham/gnuradio-digital/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.28 2021/06/01 09:12:24 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2021/06/27 08:08:59 tnn Exp $ PKGNAME= gnuradio-digital-${VERSION} -PKGREVISION= 4 COMMENT= Digital related algorithms for GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-digital/PLIST b/ham/gnuradio-digital/PLIST index 25d7cffbee6..4cf5f6485d0 100644 --- a/ham/gnuradio-digital/PLIST +++ b/ham/gnuradio-digital/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2021/04/07 16:14:08 tnn Exp $ +@comment $NetBSD: PLIST,v 1.11 2021/06/27 08:08:59 tnn Exp $ include/gnuradio/digital/adaptive_algorithm.h include/gnuradio/digital/adaptive_algorithm_cma.h include/gnuradio/digital/adaptive_algorithm_lms.h @@ -90,7 +90,7 @@ lib/cmake/gnuradio/gnuradio-digitalConfig.cmake lib/cmake/gnuradio/gnuradio-digitalTargets-release.cmake lib/cmake/gnuradio/gnuradio-digitalTargets.cmake lib/libgnuradio-digital.so -lib/libgnuradio-digital.so.3.9.1 +lib/libgnuradio-digital.so.3.9.2 lib/libgnuradio-digital.so.${PKGVERSION} lib/pkgconfig/gnuradio-digital.pc ${PYSITELIB}/gnuradio/digital/__init__.py diff --git a/ham/gnuradio-doxygen/Makefile b/ham/gnuradio-doxygen/Makefile index e47e0259a8a..26256a79472 100644 --- a/ham/gnuradio-doxygen/Makefile +++ b/ham/gnuradio-doxygen/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.43 2021/06/01 09:12:24 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2021/06/27 08:09:00 tnn Exp $ PKGNAME= gnuradio-doxygen-${VERSION} -PKGREVISION= 4 COMMENT= Doxygen documentation of GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-doxygen/PLIST b/ham/gnuradio-doxygen/PLIST index 28660a4b6f1..c88d7f8796d 100644 --- a/ham/gnuradio-doxygen/PLIST +++ b/ham/gnuradio-doxygen/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.23 2021/04/07 16:14:08 tnn Exp $ +@comment $NetBSD: PLIST,v 1.24 2021/06/27 08:09:00 tnn Exp $ share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h.html share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.map share/doc/gnuradio-${PKGVERSION}/html/ConstellationDisplayPlot_8h__dep__incl.md5 @@ -706,15 +706,6 @@ share/doc/gnuradio-${PKGVERSION}/html/binary__slicer__fb__pydoc__template_8h__in share/doc/gnuradio-${PKGVERSION}/html/binary__slicer__fb__pydoc__template_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/binary__slicer__fb__pydoc__template_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/binary__slicer__fb__pydoc__template_8h_source.html -share/doc/gnuradio-${PKGVERSION}/html/block_8h.html -share/doc/gnuradio-${PKGVERSION}/html/block_8h.js -share/doc/gnuradio-${PKGVERSION}/html/block_8h__dep__incl.map -share/doc/gnuradio-${PKGVERSION}/html/block_8h__dep__incl.md5 -share/doc/gnuradio-${PKGVERSION}/html/block_8h__dep__incl.svg -share/doc/gnuradio-${PKGVERSION}/html/block_8h__incl.map -share/doc/gnuradio-${PKGVERSION}/html/block_8h__incl.md5 -share/doc/gnuradio-${PKGVERSION}/html/block_8h__incl.svg -share/doc/gnuradio-${PKGVERSION}/html/block_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/block__detail_8h.html share/doc/gnuradio-${PKGVERSION}/html/block__detail_8h.js share/doc/gnuradio-${PKGVERSION}/html/block__detail_8h__incl.map @@ -733,12 +724,15 @@ share/doc/gnuradio-${PKGVERSION}/html/block__gateway_8h__incl.map share/doc/gnuradio-${PKGVERSION}/html/block__gateway_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/block__gateway_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/block__gateway_8h_source.html -share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h.html -share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h.js -share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h__incl.map -share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h__incl.md5 -share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h__incl.svg -share/doc/gnuradio-${PKGVERSION}/html/block__pydoc__template_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h.html +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h.js +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__dep__incl.map +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__dep__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__dep__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/block__impl_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/block__registry_8h.html share/doc/gnuradio-${PKGVERSION}/html/block__registry_8h.js share/doc/gnuradio-${PKGVERSION}/html/block__registry_8h__dep__incl.map @@ -2783,6 +2777,24 @@ share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1qtgui_1_1waterfall__sink__f.js share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1random-members.html share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1random.html share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1random.js +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block-members.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block.js +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block__impl-members.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block__impl.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1block__impl.js +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink-members.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink.js +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink__impl-members.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink__impl.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1sink__impl.js +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source-members.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source.js +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source__impl-members.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source__impl.html +share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1soapy_1_1source__impl.js share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1sync__block-members.html share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1sync__block.html share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1sync__block.js @@ -4184,6 +4196,15 @@ share/doc/gnuradio-${PKGVERSION}/html/dir_000194.html share/doc/gnuradio-${PKGVERSION}/html/dir_000195.html share/doc/gnuradio-${PKGVERSION}/html/dir_000196.html share/doc/gnuradio-${PKGVERSION}/html/dir_000197.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000198.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000199.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000200.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000201.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000202.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000203.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000204.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000205.html +share/doc/gnuradio-${PKGVERSION}/html/dir_000206.html share/doc/gnuradio-${PKGVERSION}/html/display__qt_8h.html share/doc/gnuradio-${PKGVERSION}/html/display__qt_8h__incl.map share/doc/gnuradio-${PKGVERSION}/html/display__qt_8h__incl.md5 @@ -5713,6 +5734,15 @@ share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2api_8 share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2api_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2api_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2api_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h.js +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h__dep__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h__dep__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h__dep__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2gnuradio_2block_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2pmt_2api_8h.html share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2pmt_2api_8h.js share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2pmt_2api_8h__dep__incl.map @@ -5722,6 +5752,12 @@ share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2pmt_2api_8h__in share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2pmt_2api_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2pmt_2api_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2include_2pmt_2api_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2python_2gnuradio_2gr_2bindings_2docstrings_2block__pydoc__template_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2python_2gnuradio_2gr_2bindings_2docstrings_2block__pydoc__template_8h.js +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2python_2gnuradio_2gr_2bindings_2docstrings_2block__pydoc__template_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2python_2gnuradio_2gr_2bindings_2docstrings_2block__pydoc__template_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2python_2gnuradio_2gr_2bindings_2docstrings_2block__pydoc__template_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gnuradio-runtime_2python_2gnuradio_2gr_2bindings_2docstrings_2block__pydoc__template_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/gnuradio_logo_icon.png share/doc/gnuradio-${PKGVERSION}/html/goertzel_8h.html share/doc/gnuradio-${PKGVERSION}/html/goertzel_8h__incl.map @@ -5763,6 +5799,28 @@ share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2api_8h share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2api_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2api_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2api_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2sink_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2sink_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2sink_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2sink_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2sink_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2source_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2source_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2source_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2source_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2include_2gnuradio_2audio_2source_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2sink__pydoc__template_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2sink__pydoc__template_8h.js +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2sink__pydoc__template_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2sink__pydoc__template_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2sink__pydoc__template_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2sink__pydoc__template_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2source__pydoc__template_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2source__pydoc__template_8h.js +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2source__pydoc__template_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2source__pydoc__template_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2source__pydoc__template_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-audio_2python_2audio_2bindings_2docstrings_2source__pydoc__template_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/gr-blocks_2include_2gnuradio_2blocks_2api_8h.html share/doc/gnuradio-${PKGVERSION}/html/gr-blocks_2include_2gnuradio_2blocks_2api_8h.js share/doc/gnuradio-${PKGVERSION}/html/gr-blocks_2include_2gnuradio_2blocks_2api_8h__dep__incl.map @@ -5920,6 +5978,57 @@ share/doc/gnuradio-${PKGVERSION}/html/gr-qtgui_2include_2gnuradio_2qtgui_2api_8h share/doc/gnuradio-${PKGVERSION}/html/gr-qtgui_2include_2gnuradio_2qtgui_2api_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/gr-qtgui_2include_2gnuradio_2qtgui_2api_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/gr-qtgui_2include_2gnuradio_2qtgui_2api_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h.js +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h__dep__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h__dep__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h__dep__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2api_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2block_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2block_8h__dep__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2block_8h__dep__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2block_8h__dep__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2block_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2block_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2block_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2block_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2sink_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2sink_8h__dep__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2sink_8h__dep__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2sink_8h__dep__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2sink_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2sink_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2sink_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2sink_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2source_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2source_8h__dep__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2source_8h__dep__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2source_8h__dep__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2source_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2source_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2source_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2include_2gnuradio_2soapy_2source_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2block__pydoc__template_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2block__pydoc__template_8h.js +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2block__pydoc__template_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2block__pydoc__template_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2block__pydoc__template_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2block__pydoc__template_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2sink__pydoc__template_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2sink__pydoc__template_8h.js +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2sink__pydoc__template_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2sink__pydoc__template_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2sink__pydoc__template_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2sink__pydoc__template_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2source__pydoc__template_8h.html +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2source__pydoc__template_8h.js +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2source__pydoc__template_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2source__pydoc__template_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2source__pydoc__template_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/gr-soapy_2python_2soapy_2bindings_2docstrings_2source__pydoc__template_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/gr-trellis_2include_2gnuradio_2trellis_2api_8h.html share/doc/gnuradio-${PKGVERSION}/html/gr-trellis_2include_2gnuradio_2trellis_2api_8h.js share/doc/gnuradio-${PKGVERSION}/html/gr-trellis_2include_2gnuradio_2trellis_2api_8h__dep__incl.map @@ -6484,6 +6593,12 @@ share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_129.svg share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_13.map share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_13.md5 share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_13.svg +share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_130.map +share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_130.md5 +share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_130.svg +share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_131.map +share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_131.md5 +share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_131.svg share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.map share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.md5 share/doc/gnuradio-${PKGVERSION}/html/inherit_graph_14.svg @@ -7611,6 +7726,8 @@ share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1network.html share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1network.js share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1qtgui.html share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1qtgui.js +share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1soapy.html +share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1soapy.js share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1thread.html share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1thread.js share/doc/gnuradio-${PKGVERSION}/html/namespacegr_1_1trellis.html @@ -7675,6 +7792,7 @@ share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_func_w.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_g.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_h.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_i.html +share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_k.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_l.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_m.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_n.html @@ -7694,6 +7812,7 @@ share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_type_f.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_type_g.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_type_h.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_type_i.html +share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_type_k.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_type_l.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_type_m.html share/doc/gnuradio-${PKGVERSION}/html/namespacemembers_type_n.html @@ -7790,6 +7909,7 @@ share/doc/gnuradio-${PKGVERSION}/html/navtreeindex67.js share/doc/gnuradio-${PKGVERSION}/html/navtreeindex68.js share/doc/gnuradio-${PKGVERSION}/html/navtreeindex69.js share/doc/gnuradio-${PKGVERSION}/html/navtreeindex7.js +share/doc/gnuradio-${PKGVERSION}/html/navtreeindex70.js share/doc/gnuradio-${PKGVERSION}/html/navtreeindex8.js share/doc/gnuradio-${PKGVERSION}/html/navtreeindex9.js share/doc/gnuradio-${PKGVERSION}/html/nco_8h.html @@ -9865,6 +9985,8 @@ share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_14.html share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_14.js share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_15.html share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_15.js +share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_16.html +share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_16.js share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_2.html share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_2.js share/doc/gnuradio-${PKGVERSION}/html/search/typedefs_3.html @@ -10114,11 +10236,6 @@ share/doc/gnuradio-${PKGVERSION}/html/single__pole__iir__pydoc__template_8h__inc share/doc/gnuradio-${PKGVERSION}/html/single__pole__iir__pydoc__template_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/single__pole__iir__pydoc__template_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/single__pole__iir__pydoc__template_8h_source.html -share/doc/gnuradio-${PKGVERSION}/html/sink_8h.html -share/doc/gnuradio-${PKGVERSION}/html/sink_8h__incl.map -share/doc/gnuradio-${PKGVERSION}/html/sink_8h__incl.md5 -share/doc/gnuradio-${PKGVERSION}/html/sink_8h__incl.svg -share/doc/gnuradio-${PKGVERSION}/html/sink_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/sink__c_8h.html share/doc/gnuradio-${PKGVERSION}/html/sink__c_8h__incl.map share/doc/gnuradio-${PKGVERSION}/html/sink__c_8h__incl.md5 @@ -10141,12 +10258,11 @@ share/doc/gnuradio-${PKGVERSION}/html/sink__f__pydoc__template_8h__incl.map share/doc/gnuradio-${PKGVERSION}/html/sink__f__pydoc__template_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/sink__f__pydoc__template_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/sink__f__pydoc__template_8h_source.html -share/doc/gnuradio-${PKGVERSION}/html/sink__pydoc__template_8h.html -share/doc/gnuradio-${PKGVERSION}/html/sink__pydoc__template_8h.js -share/doc/gnuradio-${PKGVERSION}/html/sink__pydoc__template_8h__incl.map -share/doc/gnuradio-${PKGVERSION}/html/sink__pydoc__template_8h__incl.md5 -share/doc/gnuradio-${PKGVERSION}/html/sink__pydoc__template_8h__incl.svg -share/doc/gnuradio-${PKGVERSION}/html/sink__pydoc__template_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/sink__impl_8h.html +share/doc/gnuradio-${PKGVERSION}/html/sink__impl_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/sink__impl_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/sink__impl_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/sink__impl_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/sink__s_8h.html share/doc/gnuradio-${PKGVERSION}/html/sink__s_8h__incl.map share/doc/gnuradio-${PKGVERSION}/html/sink__s_8h__incl.md5 @@ -10214,6 +10330,21 @@ share/doc/gnuradio-${PKGVERSION}/html/skiphead__pydoc__template_8h__incl.map share/doc/gnuradio-${PKGVERSION}/html/skiphead__pydoc__template_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/skiphead__pydoc__template_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/skiphead__pydoc__template_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/soapy__common_8h.html +share/doc/gnuradio-${PKGVERSION}/html/soapy__common_8h.js +share/doc/gnuradio-${PKGVERSION}/html/soapy__common_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/soapy__common_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/soapy__common_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/soapy__common_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h.html +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h.js +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h__dep__incl.map +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h__dep__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h__dep__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/soapy__types_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/socket__pdu_8h.html share/doc/gnuradio-${PKGVERSION}/html/socket__pdu_8h__incl.map share/doc/gnuradio-${PKGVERSION}/html/socket__pdu_8h__incl.md5 @@ -10225,17 +10356,11 @@ share/doc/gnuradio-${PKGVERSION}/html/socket__pdu__pydoc__template_8h__incl.map share/doc/gnuradio-${PKGVERSION}/html/socket__pdu__pydoc__template_8h__incl.md5 share/doc/gnuradio-${PKGVERSION}/html/socket__pdu__pydoc__template_8h__incl.svg share/doc/gnuradio-${PKGVERSION}/html/socket__pdu__pydoc__template_8h_source.html -share/doc/gnuradio-${PKGVERSION}/html/source_8h.html -share/doc/gnuradio-${PKGVERSION}/html/source_8h__incl.map -share/doc/gnuradio-${PKGVERSION}/html/source_8h__incl.md5 -share/doc/gnuradio-${PKGVERSION}/html/source_8h__incl.svg -share/doc/gnuradio-${PKGVERSION}/html/source_8h_source.html -share/doc/gnuradio-${PKGVERSION}/html/source__pydoc__template_8h.html -share/doc/gnuradio-${PKGVERSION}/html/source__pydoc__template_8h.js -share/doc/gnuradio-${PKGVERSION}/html/source__pydoc__template_8h__incl.map -share/doc/gnuradio-${PKGVERSION}/html/source__pydoc__template_8h__incl.md5 -share/doc/gnuradio-${PKGVERSION}/html/source__pydoc__template_8h__incl.svg -share/doc/gnuradio-${PKGVERSION}/html/source__pydoc__template_8h_source.html +share/doc/gnuradio-${PKGVERSION}/html/source__impl_8h.html +share/doc/gnuradio-${PKGVERSION}/html/source__impl_8h__incl.map +share/doc/gnuradio-${PKGVERSION}/html/source__impl_8h__incl.md5 +share/doc/gnuradio-${PKGVERSION}/html/source__impl_8h__incl.svg +share/doc/gnuradio-${PKGVERSION}/html/source__impl_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/spectrumUpdateEvents_8h.html share/doc/gnuradio-${PKGVERSION}/html/spectrumUpdateEvents_8h.js share/doc/gnuradio-${PKGVERSION}/html/spectrumUpdateEvents_8h__dep__incl.map @@ -10436,6 +10561,9 @@ share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1fft_1_1fft__outbuf.js share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1fft_1_1fft__outbuf_3_01float_00_01true_01_4-members.html share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1fft_1_1fft__outbuf_3_01float_00_01true_01_4.html share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1fft_1_1fft__outbuf_3_01float_00_01true_01_4.js +share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1soapy_1_1device__deleter-members.html +share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1soapy_1_1device__deleter.html +share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1soapy_1_1device__deleter.js share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1tag__t-members.html share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1tag__t.html share/doc/gnuradio-${PKGVERSION}/html/structgr_1_1tag__t.js @@ -10502,6 +10630,9 @@ share/doc/gnuradio-${PKGVERSION}/html/structrpcpmtconverter_1_1to__pmt__short__f share/doc/gnuradio-${PKGVERSION}/html/structrpcpmtconverter_1_1to__pmt__string__f-members.html share/doc/gnuradio-${PKGVERSION}/html/structrpcpmtconverter_1_1to__pmt__string__f.html share/doc/gnuradio-${PKGVERSION}/html/structrpcpmtconverter_1_1to__pmt__string__f.js +share/doc/gnuradio-${PKGVERSION}/html/structsetting__info-members.html +share/doc/gnuradio-${PKGVERSION}/html/structsetting__info.html +share/doc/gnuradio-${PKGVERSION}/html/structsetting__info.js share/doc/gnuradio-${PKGVERSION}/html/structv-members.html share/doc/gnuradio-${PKGVERSION}/html/structv.html share/doc/gnuradio-${PKGVERSION}/html/structv.js @@ -11173,12 +11304,6 @@ share/doc/gnuradio-${PKGVERSION}/html/uniondecision__t.js share/doc/gnuradio-${PKGVERSION}/html/unionmetric__t-members.html share/doc/gnuradio-${PKGVERSION}/html/unionmetric__t.html share/doc/gnuradio-${PKGVERSION}/html/unionmetric__t.js -share/doc/gnuradio-${PKGVERSION}/html/unittests_8h.html -share/doc/gnuradio-${PKGVERSION}/html/unittests_8h.js -share/doc/gnuradio-${PKGVERSION}/html/unittests_8h__incl.map -share/doc/gnuradio-${PKGVERSION}/html/unittests_8h__incl.md5 -share/doc/gnuradio-${PKGVERSION}/html/unittests_8h__incl.svg -share/doc/gnuradio-${PKGVERSION}/html/unittests_8h_source.html share/doc/gnuradio-${PKGVERSION}/html/unpack__k__bits_8h.html share/doc/gnuradio-${PKGVERSION}/html/unpack__k__bits_8h__dep__incl.map share/doc/gnuradio-${PKGVERSION}/html/unpack__k__bits_8h__dep__incl.md5 @@ -11647,11 +11772,10 @@ share/doc/gnuradio-${PKGVERSION}/xml/ber__sink__b_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/ber__sink__b__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/binary__slicer__fb_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/binary__slicer__fb__pydoc__template_8h.xml -share/doc/gnuradio-${PKGVERSION}/xml/block_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/block__detail_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/block__detail__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/block__gateway_8h.xml -share/doc/gnuradio-${PKGVERSION}/xml/block__pydoc__template_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/block__impl_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/block__registry_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/blocks_8dox.xml share/doc/gnuradio-${PKGVERSION}/xml/buffer_8h.xml @@ -12296,6 +12420,12 @@ share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1qtgui_1_1vector__sink__f.xml share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1qtgui_1_1waterfall__sink__c.xml share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1qtgui_1_1waterfall__sink__f.xml share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1random.xml +share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1soapy_1_1block.xml +share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1soapy_1_1block__impl.xml +share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1soapy_1_1sink.xml +share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1soapy_1_1sink__impl.xml +share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1soapy_1_1source.xml +share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1soapy_1_1source__impl.xml share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1sync__block.xml share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1sync__decimator.xml share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1sync__interpolator.xml @@ -12774,6 +12904,15 @@ share/doc/gnuradio-${PKGVERSION}/xml/dir_000194.xml share/doc/gnuradio-${PKGVERSION}/xml/dir_000195.xml share/doc/gnuradio-${PKGVERSION}/xml/dir_000196.xml share/doc/gnuradio-${PKGVERSION}/xml/dir_000197.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000198.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000199.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000200.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000201.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000202.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000203.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000204.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000205.xml +share/doc/gnuradio-${PKGVERSION}/xml/dir_000206.xml share/doc/gnuradio-${PKGVERSION}/xml/display__qt_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/displayform_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/displayform__pydoc__template_8h.xml @@ -13002,13 +13141,19 @@ share/doc/gnuradio-${PKGVERSION}/xml/glfsr__source__f_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/glfsr__source__f__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gnuradio-logo.svg share/doc/gnuradio-${PKGVERSION}/xml/gnuradio-runtime_2include_2gnuradio_2api_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gnuradio-runtime_2include_2gnuradio_2block_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gnuradio-runtime_2include_2pmt_2api_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gnuradio-runtime_2python_2gnuradio_2gr_2bindings_2docstrings_2block__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/goertzel_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/goertzel__fc_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/goertzel__fc__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/goertzel__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-analog_2include_2gnuradio_2analog_2api_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-audio_2include_2gnuradio_2audio_2api_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-audio_2include_2gnuradio_2audio_2sink_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-audio_2include_2gnuradio_2audio_2source_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-audio_2python_2audio_2bindings_2docstrings_2sink__pydoc__template_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-audio_2python_2audio_2bindings_2docstrings_2source__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-blocks_2include_2gnuradio_2blocks_2api_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-blocks_2include_2gnuradio_2blocks_2udp__sink_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-blocks_2include_2gnuradio_2blocks_2udp__source_8h.xml @@ -13030,6 +13175,13 @@ share/doc/gnuradio-${PKGVERSION}/xml/gr-network_2include_2gnuradio_2network_2udp share/doc/gnuradio-${PKGVERSION}/xml/gr-network_2python_2network_2bindings_2docstrings_2udp__sink__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-network_2python_2network_2bindings_2docstrings_2udp__source__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-qtgui_2include_2gnuradio_2qtgui_2api_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-soapy_2include_2gnuradio_2soapy_2api_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-soapy_2include_2gnuradio_2soapy_2block_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-soapy_2include_2gnuradio_2soapy_2sink_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-soapy_2include_2gnuradio_2soapy_2source_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-soapy_2python_2soapy_2bindings_2docstrings_2block__pydoc__template_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-soapy_2python_2soapy_2bindings_2docstrings_2sink__pydoc__template_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/gr-soapy_2python_2soapy_2bindings_2docstrings_2source__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-trellis_2include_2gnuradio_2trellis_2api_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-trellis_2include_2gnuradio_2trellis_2encoder_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/gr-trellis_2include_2gnuradio_2trellis_2viterbi_8h.xml @@ -13296,6 +13448,7 @@ share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1filter_1_1kernel.xml share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1messages.xml share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1network.xml share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1qtgui.xml +share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1soapy.xml share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1thread.xml share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1trellis.xml share/doc/gnuradio-${PKGVERSION}/xml/namespacegr_1_1uhd.xml @@ -13630,12 +13783,11 @@ share/doc/gnuradio-${PKGVERSION}/xml/single__pole__iir__filter__cc__pydoc__templ share/doc/gnuradio-${PKGVERSION}/xml/single__pole__iir__filter__ff_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/single__pole__iir__filter__ff__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/single__pole__iir__pydoc__template_8h.xml -share/doc/gnuradio-${PKGVERSION}/xml/sink_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sink__c_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sink__c__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sink__f_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sink__f__pydoc__template_8h.xml -share/doc/gnuradio-${PKGVERSION}/xml/sink__pydoc__template_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/sink__impl_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sink__s_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sink__s__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sink__uc_8h.xml @@ -13648,10 +13800,11 @@ share/doc/gnuradio-${PKGVERSION}/xml/siso__type_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/siso__type__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/skiphead_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/skiphead__pydoc__template_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/soapy__common_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/soapy__types_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/socket__pdu_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/socket__pdu__pydoc__template_8h.xml -share/doc/gnuradio-${PKGVERSION}/xml/source_8h.xml -share/doc/gnuradio-${PKGVERSION}/xml/source__pydoc__template_8h.xml +share/doc/gnuradio-${PKGVERSION}/xml/source__impl_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/spectrumUpdateEvents_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/spectrumdisplayform_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sptr__magic_8h.xml @@ -13690,6 +13843,7 @@ share/doc/gnuradio-${PKGVERSION}/xml/structgr_1_1fft_1_1fft__inbuf.xml share/doc/gnuradio-${PKGVERSION}/xml/structgr_1_1fft_1_1fft__inbuf_3_01float_00_01false_01_4.xml share/doc/gnuradio-${PKGVERSION}/xml/structgr_1_1fft_1_1fft__outbuf.xml share/doc/gnuradio-${PKGVERSION}/xml/structgr_1_1fft_1_1fft__outbuf_3_01float_00_01true_01_4.xml +share/doc/gnuradio-${PKGVERSION}/xml/structgr_1_1soapy_1_1device__deleter.xml share/doc/gnuradio-${PKGVERSION}/xml/structgr_1_1tag__t.xml share/doc/gnuradio-${PKGVERSION}/xml/structgr_1_1tpb__detail.xml share/doc/gnuradio-${PKGVERSION}/xml/structpmt_1_1pmt__pool_1_1item.xml @@ -13724,6 +13878,7 @@ share/doc/gnuradio-${PKGVERSION}/xml/structrpcserver__thrift_1_1get__f.xml share/doc/gnuradio-${PKGVERSION}/xml/structrpcserver__thrift_1_1properties__all__f.xml share/doc/gnuradio-${PKGVERSION}/xml/structrpcserver__thrift_1_1properties__f.xml share/doc/gnuradio-${PKGVERSION}/xml/structrpcserver__thrift_1_1set__f.xml +share/doc/gnuradio-${PKGVERSION}/xml/structsetting__info.xml share/doc/gnuradio-${PKGVERSION}/xml/structv.xml share/doc/gnuradio-${PKGVERSION}/xml/sub_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/sub__msg__source_8h.xml @@ -13837,7 +13992,6 @@ share/doc/gnuradio-${PKGVERSION}/xml/ulaw__encode__sb_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/ulaw__encode__sb__pydoc__template_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/uniondecision__t.xml share/doc/gnuradio-${PKGVERSION}/xml/unionmetric__t.xml -share/doc/gnuradio-${PKGVERSION}/xml/unittests_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/unpack__k__bits_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/unpack__k__bits__bb_8h.xml share/doc/gnuradio-${PKGVERSION}/xml/unpack__k__bits__bb__pydoc__template_8h.xml diff --git a/ham/gnuradio-dtv/Makefile b/ham/gnuradio-dtv/Makefile index 6b8a9935766..0804b96a8ec 100644 --- a/ham/gnuradio-dtv/Makefile +++ b/ham/gnuradio-dtv/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2021/06/01 09:12:24 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2021/06/27 08:09:00 tnn Exp $ PKGNAME= gnuradio-dtv-${VERSION} -PKGREVISION= 4 COMMENT= Various digital television standards of GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-dtv/PLIST b/ham/gnuradio-dtv/PLIST index d44eaa99597..edcc7091eb2 100644 --- a/ham/gnuradio-dtv/PLIST +++ b/ham/gnuradio-dtv/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2021/04/07 16:14:08 tnn Exp $ +@comment $NetBSD: PLIST,v 1.10 2021/06/27 08:09:00 tnn Exp $ include/gnuradio/dtv/api.h include/gnuradio/dtv/atsc_consts.h include/gnuradio/dtv/atsc_deinterleaver.h @@ -62,7 +62,7 @@ lib/cmake/gnuradio/gnuradio-dtvConfig.cmake lib/cmake/gnuradio/gnuradio-dtvTargets-release.cmake lib/cmake/gnuradio/gnuradio-dtvTargets.cmake lib/libgnuradio-dtv.so -lib/libgnuradio-dtv.so.3.9.1 +lib/libgnuradio-dtv.so.3.9.2 lib/libgnuradio-dtv.so.${PKGVERSION} lib/pkgconfig/gnuradio-dtv.pc ${PYSITELIB}/gnuradio/dtv/__init__.py diff --git a/ham/gnuradio-fec/Makefile b/ham/gnuradio-fec/Makefile index f1641990492..838a7c967de 100644 --- a/ham/gnuradio-fec/Makefile +++ b/ham/gnuradio-fec/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.29 2021/06/01 09:12:24 wiz Exp $ +# $NetBSD: Makefile,v 1.30 2021/06/27 08:09:00 tnn Exp $ PKGNAME= gnuradio-fec-${VERSION} -PKGREVISION= 4 COMMENT= Forward Error Correction blocks, utilities, & examples of GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-fec/PLIST b/ham/gnuradio-fec/PLIST index ffc9a75ee84..cb713d84276 100644 --- a/ham/gnuradio-fec/PLIST +++ b/ham/gnuradio-fec/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2021/04/07 16:14:08 tnn Exp $ +@comment $NetBSD: PLIST,v 1.11 2021/06/27 08:09:00 tnn Exp $ bin/polar_channel_construction include/gnuradio/fec/alist.h include/gnuradio/fec/api.h @@ -54,7 +54,7 @@ lib/cmake/gnuradio/gnuradio-fecConfig.cmake lib/cmake/gnuradio/gnuradio-fecTargets-release.cmake lib/cmake/gnuradio/gnuradio-fecTargets.cmake lib/libgnuradio-fec.so -lib/libgnuradio-fec.so.3.9.1 +lib/libgnuradio-fec.so.3.9.2 lib/libgnuradio-fec.so.${PKGVERSION} lib/pkgconfig/gnuradio-fec.pc ${PYSITELIB}/gnuradio/fec/LDPC/Generate_LDPC_matrix.py diff --git a/ham/gnuradio-network/Makefile b/ham/gnuradio-network/Makefile index 6203a95a763..1aa5eb5cb24 100644 --- a/ham/gnuradio-network/Makefile +++ b/ham/gnuradio-network/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2021/06/27 08:09:00 tnn Exp $ PKGNAME= gnuradio-network-${VERSION} -PKGREVISION= 4 COMMENT= Network blocks for GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-network/PLIST b/ham/gnuradio-network/PLIST index fb5ceadf900..92066a07006 100644 --- a/ham/gnuradio-network/PLIST +++ b/ham/gnuradio-network/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2021/04/07 16:14:08 tnn Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/06/27 08:09:00 tnn Exp $ include/gnuradio/network/api.h include/gnuradio/network/packet_headers.h include/gnuradio/network/tcp_sink.h @@ -9,7 +9,7 @@ lib/cmake/gnuradio/gnuradio-networkConfig.cmake lib/cmake/gnuradio/gnuradio-networkTargets-release.cmake lib/cmake/gnuradio/gnuradio-networkTargets.cmake lib/libgnuradio-network.so -lib/libgnuradio-network.so.3.9.1 +lib/libgnuradio-network.so.3.9.2 lib/libgnuradio-network.so.${PKGVERSION} lib/pkgconfig/gnuradio-network.pc ${PYSITELIB}/gnuradio/network/__init__.py diff --git a/ham/gnuradio-qtgui/Makefile b/ham/gnuradio-qtgui/Makefile index 43141026bd2..30114daa52d 100644 --- a/ham/gnuradio-qtgui/Makefile +++ b/ham/gnuradio-qtgui/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.38 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2021/06/27 08:09:00 tnn Exp $ PKGNAME= gnuradio-qtgui-${VERSION} -PKGREVISION= 4 COMMENT= Qt GUI module of GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-qtgui/PLIST b/ham/gnuradio-qtgui/PLIST index c7e5df25d59..487b89f4e3e 100644 --- a/ham/gnuradio-qtgui/PLIST +++ b/ham/gnuradio-qtgui/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2021/04/07 16:14:08 tnn Exp $ +@comment $NetBSD: PLIST,v 1.12 2021/06/27 08:09:00 tnn Exp $ include/gnuradio/qtgui/ConstellationDisplayPlot.h include/gnuradio/qtgui/DisplayPlot.h include/gnuradio/qtgui/EyeDisplayPlot.h @@ -54,7 +54,7 @@ lib/cmake/gnuradio/gnuradio-qtguiConfig.cmake lib/cmake/gnuradio/gnuradio-qtguiTargets-release.cmake lib/cmake/gnuradio/gnuradio-qtguiTargets.cmake lib/libgnuradio-qtgui.so -lib/libgnuradio-qtgui.so.3.9.1 +lib/libgnuradio-qtgui.so.3.9.2 lib/libgnuradio-qtgui.so.${PKGVERSION} lib/pkgconfig/gnuradio-qtgui.pc ${PYSITELIB}/gnuradio/qtgui/__init__.py diff --git a/ham/gnuradio-trellis/Makefile b/ham/gnuradio-trellis/Makefile index 9819fbd2474..26c7aa278b2 100644 --- a/ham/gnuradio-trellis/Makefile +++ b/ham/gnuradio-trellis/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.46 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.47 2021/06/27 08:09:00 tnn Exp $ PKGNAME= gnuradio-trellis-${VERSION} -PKGREVISION= 4 COMMENT= Trellis-based encoding and decoding algorithms for GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-trellis/PLIST b/ham/gnuradio-trellis/PLIST index 1b969c5427a..9dc76693891 100644 --- a/ham/gnuradio-trellis/PLIST +++ b/ham/gnuradio-trellis/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2021/04/07 16:14:08 tnn Exp $ +@comment $NetBSD: PLIST,v 1.12 2021/06/27 08:09:00 tnn Exp $ include/gnuradio/trellis/api.h include/gnuradio/trellis/base.h include/gnuradio/trellis/calc_metric.h @@ -25,7 +25,7 @@ lib/cmake/gnuradio/gnuradio-trellisConfig.cmake lib/cmake/gnuradio/gnuradio-trellisTargets-release.cmake lib/cmake/gnuradio/gnuradio-trellisTargets.cmake lib/libgnuradio-trellis.so -lib/libgnuradio-trellis.so.3.9.1 +lib/libgnuradio-trellis.so.3.9.2 lib/libgnuradio-trellis.so.${PKGVERSION} lib/pkgconfig/gnuradio-trellis.pc ${PYSITELIB}/gnuradio/trellis/__init__.py diff --git a/ham/gnuradio-uhd/Makefile b/ham/gnuradio-uhd/Makefile index b6c4547489c..8b2c4b7da68 100644 --- a/ham/gnuradio-uhd/Makefile +++ b/ham/gnuradio-uhd/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.29 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.30 2021/06/27 08:09:00 tnn Exp $ PKGNAME= gnuradio-uhd-${VERSION} -PKGREVISION= 4 COMMENT= Uhd-based encoding and decoding algorithms for GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-uhd/PLIST b/ham/gnuradio-uhd/PLIST index b29a3e12a83..e090cbdf22f 100644 --- a/ham/gnuradio-uhd/PLIST +++ b/ham/gnuradio-uhd/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2021/04/07 16:14:09 tnn Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/06/27 08:09:00 tnn Exp $ bin/uhd_fft bin/uhd_rx_cfile bin/uhd_rx_nogui @@ -13,7 +13,7 @@ lib/cmake/gnuradio/gnuradio-uhdConfig.cmake lib/cmake/gnuradio/gnuradio-uhdTargets-release.cmake lib/cmake/gnuradio/gnuradio-uhdTargets.cmake lib/libgnuradio-uhd.so -lib/libgnuradio-uhd.so.3.9.1 +lib/libgnuradio-uhd.so.3.9.2 lib/libgnuradio-uhd.so.${PKGVERSION} lib/pkgconfig/gnuradio-uhd.pc ${PYSITELIB}/gnuradio/uhd/__init__.py diff --git a/ham/gnuradio-utils/Makefile b/ham/gnuradio-utils/Makefile index fc2edefdf4a..45de0380294 100644 --- a/ham/gnuradio-utils/Makefile +++ b/ham/gnuradio-utils/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2021/06/27 08:09:00 tnn Exp $ PKGNAME= gnuradio-utils-${VERSION} -PKGREVISION= 4 COMMENT= Utilities in GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-video-sdl/Makefile b/ham/gnuradio-video-sdl/Makefile index 2de6f655dc8..106089e9aa8 100644 --- a/ham/gnuradio-video-sdl/Makefile +++ b/ham/gnuradio-video-sdl/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.43 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2021/06/27 08:09:01 tnn Exp $ PKGNAME= gnuradio-video-sdl-${VERSION} -PKGREVISION= 4 COMMENT= SDL (Simple DirectMedia Layer) bindings for GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-video-sdl/PLIST b/ham/gnuradio-video-sdl/PLIST index b1e0d61a725..8ca92235edb 100644 --- a/ham/gnuradio-video-sdl/PLIST +++ b/ham/gnuradio-video-sdl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2021/04/07 16:14:09 tnn Exp $ +@comment $NetBSD: PLIST,v 1.10 2021/06/27 08:09:01 tnn Exp $ include/gnuradio/video_sdl/api.h include/gnuradio/video_sdl/sink_s.h include/gnuradio/video_sdl/sink_uc.h @@ -6,7 +6,7 @@ lib/cmake/gnuradio/gnuradio-video-sdlConfig.cmake lib/cmake/gnuradio/gnuradio-video-sdlTargets-release.cmake lib/cmake/gnuradio/gnuradio-video-sdlTargets.cmake lib/libgnuradio-video-sdl.so -lib/libgnuradio-video-sdl.so.3.9.1 +lib/libgnuradio-video-sdl.so.3.9.2 lib/libgnuradio-video-sdl.so.${PKGVERSION} lib/pkgconfig/gnuradio-video-sdl.pc ${PYSITELIB}/gnuradio/video_sdl/__init__.py diff --git a/ham/gnuradio-vocoder/Makefile b/ham/gnuradio-vocoder/Makefile index 1c3d168a962..5389ed2b2d6 100644 --- a/ham/gnuradio-vocoder/Makefile +++ b/ham/gnuradio-vocoder/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.28 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.29 2021/06/27 08:09:01 tnn Exp $ PKGNAME= gnuradio-vocoder-${VERSION} -PKGREVISION= 4 COMMENT= All available vocoders in GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-vocoder/PLIST b/ham/gnuradio-vocoder/PLIST index 54ee8a96329..8e11b0a8b29 100644 --- a/ham/gnuradio-vocoder/PLIST +++ b/ham/gnuradio-vocoder/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2021/04/07 16:14:09 tnn Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/06/27 08:09:01 tnn Exp $ include/gnuradio/vocoder/alaw_decode_bs.h include/gnuradio/vocoder/alaw_encode_sb.h include/gnuradio/vocoder/api.h @@ -24,7 +24,7 @@ lib/cmake/gnuradio/gnuradio-vocoderConfig.cmake lib/cmake/gnuradio/gnuradio-vocoderTargets-release.cmake lib/cmake/gnuradio/gnuradio-vocoderTargets.cmake lib/libgnuradio-vocoder.so -lib/libgnuradio-vocoder.so.3.9.1 +lib/libgnuradio-vocoder.so.3.9.2 lib/libgnuradio-vocoder.so.${PKGVERSION} lib/pkgconfig/gnuradio-vocoder.pc ${PYSITELIB}/gnuradio/vocoder/__init__.py diff --git a/ham/gnuradio-wavelet/Makefile b/ham/gnuradio-wavelet/Makefile index f8632870ffc..3525b922dfb 100644 --- a/ham/gnuradio-wavelet/Makefile +++ b/ham/gnuradio-wavelet/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.27 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.28 2021/06/27 08:09:01 tnn Exp $ PKGNAME= gnuradio-wavelet-${VERSION} -PKGREVISION= 4 COMMENT= Wavelet transform of GNU Radio .include "../../ham/gnuradio-core/Makefile.common" diff --git a/ham/gnuradio-wavelet/PLIST b/ham/gnuradio-wavelet/PLIST index 3785424f7f2..1b655583ac4 100644 --- a/ham/gnuradio-wavelet/PLIST +++ b/ham/gnuradio-wavelet/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.5 2021/04/07 16:14:09 tnn Exp $ +@comment $NetBSD: PLIST,v 1.6 2021/06/27 08:09:01 tnn Exp $ include/gnuradio/wavelet/api.h include/gnuradio/wavelet/squash_ff.h include/gnuradio/wavelet/wavelet_ff.h @@ -7,7 +7,7 @@ lib/cmake/gnuradio/gnuradio-waveletConfig.cmake lib/cmake/gnuradio/gnuradio-waveletTargets-release.cmake lib/cmake/gnuradio/gnuradio-waveletTargets.cmake lib/libgnuradio-wavelet.so -lib/libgnuradio-wavelet.so.3.9.1 +lib/libgnuradio-wavelet.so.3.9.2 lib/libgnuradio-wavelet.so.${PKGVERSION} lib/pkgconfig/gnuradio-wavelet.pc ${PYSITELIB}/gnuradio/wavelet/__init__.py diff --git a/ham/gnuradio-zeromq/Makefile b/ham/gnuradio-zeromq/Makefile index e3080e0c9fe..4f6b6f393b3 100644 --- a/ham/gnuradio-zeromq/Makefile +++ b/ham/gnuradio-zeromq/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2021/06/01 09:12:25 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2021/06/27 08:09:01 tnn Exp $ PKGNAME= gnuradio-zeromq-${VERSION} -PKGREVISION= 4 COMMENT= All of the zeromq blocks, utilities, and examples # zmq.hpp: No such file or directory diff --git a/ham/gnuradio-zeromq/PLIST b/ham/gnuradio-zeromq/PLIST index 8de496faaff..b6c1ce81fb6 100644 --- a/ham/gnuradio-zeromq/PLIST +++ b/ham/gnuradio-zeromq/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2021/04/07 16:14:09 tnn Exp $ +@comment $NetBSD: PLIST,v 1.7 2021/06/27 08:09:01 tnn Exp $ include/gnuradio/zeromq/api.h include/gnuradio/zeromq/pub_msg_sink.h include/gnuradio/zeromq/pub_sink.h @@ -16,7 +16,7 @@ lib/cmake/gnuradio/gnuradio-zeromqConfig.cmake lib/cmake/gnuradio/gnuradio-zeromqTargets-release.cmake lib/cmake/gnuradio/gnuradio-zeromqTargets.cmake lib/libgnuradio-zeromq.so -lib/libgnuradio-zeromq.so.3.9.1 +lib/libgnuradio-zeromq.so.3.9.2 lib/libgnuradio-zeromq.so.${PKGVERSION} lib/pkgconfig/gnuradio-zeromq.pc ${PYSITELIB}/gnuradio/zeromq/__init__.py diff --git a/ham/gr-osmosdr/Makefile b/ham/gr-osmosdr/Makefile index fa04c1debd6..3b99ceb0cea 100644 --- a/ham/gr-osmosdr/Makefile +++ b/ham/gr-osmosdr/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.33 2021/04/21 13:24:52 adam Exp $ +# $NetBSD: Makefile,v 1.34 2021/06/27 08:09:01 tnn Exp $ DISTNAME= gr-osmosdr-0.2.3.20210128 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= ham # main git repo doesn't allow snapshots to be downloaded #MASTER_SITES= https://git.osmocom.org/gr-osmosdr/snapshot/ |