Updated ham/gnuradio from 3.7.10.1 to 3.7.11

--------------------------------------------
ChangeLog v3.7.11

This is a feature release of the 3.7 API series, and incorporates all
the bug fixes implemented in the 3.7.10.2 maintenance release.

Contributors
    (omitted in this commit log, sorry)

Changes

The GNU Radio project tracks changes via Github pull requests. You can
get details on each of the below by going to:

https://github.com/gnuradio/gnuradio

Note: Please see the release notes for 3.7.10.2 for details on the bug
fixes included in this release.

gnuradio-runtime
    #1077 Support dynamically loaded gnuradio installs (Josh Blum)

gnuradio-companion
    #1118 Support vector types in embedded Python blocks (Clayton Smith)

gr-audio
    #1051 Re-implemented defunct Windows audio source (Geof Gnieboer)
    #1052 Implemented block in Windows audio sink (Geof Gnieboer)

gr-blocks
    #896 Added PDU block setters and GRC callbacks (Jacob Gilbert)
    #900 Exposed non-vector multiply const to GRC (Ron Economos)
    #903 Deprecated old-style message queue blocks (Johnathan Corgan)
    #1067 Deprecated blks2 namespace blocks (Johnathan Corgan)

gr-digital
    #910 Deprecated correlateandsync block 3.8 (Johnathan Corgan)
    #912 Deprecated modulation blocks for 3.8 (Sebastian Müller)
    #1069 Improved build memory usage with swig split (Michael Dickens)
    #1097 Deprecated mpskreceivercc block (Johnathan Corgan)
    #1099 Deprecated old-style OFDM receiver blocks (Martin Braun)

gr-dtv
    #875 Added ability to cross-compile gr-dtv (Ron Economos)
    #876 Improved ATSC transmitter performance (Ron Economos)
    #894 Refactored DVB-T RS decoder to use gr-fec (Ron Economos)
    #898 Improved error handling and logging (Ron Economos)
    #900 Improved DVB-T performance (Ron Economos)
    #907 Updated examples to use QT (Ron Economos)
    #1025 Refactor DVB-T2 interleaver (Ron Economos)

gr-filter
    #885 Added set parameter msg port to fractional resampler (Sebastian Müller)

gr-trellis
    #908 Updated examples to use QT (Martin Braun)

gr-uhd
    #872 Added relative phase plots to uhd_fft (Martin Braun)
    #1032 Replace zero-timeout double-recv() with one recv() (Martin Braun)
    #1053 UHD apps may now specify multiple subdevs (Martin Braun)
    #1101 Support TwinRX LO sharing parameters (Andrej Rode)
    #1139 Use UHD internal normalized gain methods (Martin Braun)

gr-utils
    #897 Improved python docstring generation in gr_modtool
This commit is contained in:
mef 2017-03-15 14:07:12 +00:00
parent 62ff365e7b
commit da7acdcae5
9 changed files with 66 additions and 22 deletions

View file

@ -1,3 +1,3 @@
# $NetBSD: Makefile.version,v 1.9 2017/01/13 22:03:35 mef Exp $
# $NetBSD: Makefile.version,v 1.10 2017/03/15 14:07:12 mef Exp $
VERSION= 3.7.10.1
VERSION= 3.7.11

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.25 2016/09/14 20:43:55 wiedi Exp $
@comment $NetBSD: PLIST,v 1.26 2017/03/15 14:07:12 mef Exp $
bin/gnuradio-config-info
bin/gr_filter_design
bin/volk-config-info
@ -250,6 +250,7 @@ include/gnuradio/blocks/tagged_stream_multiply_length.h
include/gnuradio/blocks/tagged_stream_mux.h
include/gnuradio/blocks/tagged_stream_to_pdu.h
include/gnuradio/blocks/tags_strobe.h
include/gnuradio/blocks/tcp_server_sink.h
include/gnuradio/blocks/test_tag_variable_rate_ff.h
include/gnuradio/blocks/threshold_ff.h
include/gnuradio/blocks/throttle.h
@ -1108,6 +1109,7 @@ share/gnuradio/grc/blocks/blocks_moving_average_xx.xml
share/gnuradio/grc/blocks/blocks_multiply_by_tag_value_cc.xml
share/gnuradio/grc/blocks/blocks_multiply_conjugate_cc.xml
share/gnuradio/grc/blocks/blocks_multiply_const_vxx.xml
share/gnuradio/grc/blocks/blocks_multiply_const_xx.xml
share/gnuradio/grc/blocks/blocks_multiply_matrix_xx.xml
share/gnuradio/grc/blocks/blocks_multiply_xx.xml
share/gnuradio/grc/blocks/blocks_mute_xx.xml
@ -1159,6 +1161,7 @@ share/gnuradio/grc/blocks/blocks_tagged_stream_multiply_length.xml
share/gnuradio/grc/blocks/blocks_tagged_stream_mux.xml
share/gnuradio/grc/blocks/blocks_tagged_stream_to_pdu.xml
share/gnuradio/grc/blocks/blocks_tags_strobe.xml
share/gnuradio/grc/blocks/blocks_tcp_server_sink.xml
share/gnuradio/grc/blocks/blocks_test_tag_variable_rate_ff.xml
share/gnuradio/grc/blocks/blocks_threshold_ff.xml
share/gnuradio/grc/blocks/blocks_throttle.xml

View file

@ -1,12 +1,12 @@
# $NetBSD: buildlink3.mk,v 1.28 2014/10/17 09:51:56 mef Exp $
# $NetBSD: buildlink3.mk,v 1.29 2017/03/15 14:07:12 mef Exp $
BUILDLINK_TREE+= gnuradio-core
.if !defined(GNURADIO_CORE_BUILDLINK3_MK)
GNURADIO_CORE_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.gnuradio-core+= gnuradio-core>=3.7.5
BUILDLINK_ABI_DEPENDS.gnuradio-core+= gnuradio-core>=3.7.5
BUILDLINK_API_DEPENDS.gnuradio-core+= gnuradio-core>=3.7.11
BUILDLINK_ABI_DEPENDS.gnuradio-core+= gnuradio-core>=3.7.11
BUILDLINK_PKGSRCDIR.gnuradio-core?= ../../ham/gnuradio-core
.endif # GNURADIO_CORE_BUILDLINK3_MK

View file

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.26 2017/01/13 22:03:35 mef Exp $
$NetBSD: distinfo,v 1.27 2017/03/15 14:07:12 mef Exp $
SHA1 (gnuradio-3.7.10.1.tar.gz) = 5505ea02a1bef4aee2ef5b56ac0da79875d83419
RMD160 (gnuradio-3.7.10.1.tar.gz) = 5d5cbca0b64b6c522c1d2ef65070b7443804d7ed
SHA512 (gnuradio-3.7.10.1.tar.gz) = 101ea704e25d8ddc1b124c3be23b5020f3f504cab7b2762ba41172d8d07822018e583179e8d15d2b4c224fb8fad68ea4b5e135bcb40126aa6317ee51c47883f6
Size (gnuradio-3.7.10.1.tar.gz) = 4272430 bytes
SHA1 (gnuradio-3.7.11.tar.gz) = 574df5079b02cfcd80f03930d90a20b2fa9cfcb8
RMD160 (gnuradio-3.7.11.tar.gz) = 72207c6c048f256cbd93a679c09345a5ca45f307
SHA512 (gnuradio-3.7.11.tar.gz) = a3b44e04e63056ad5238ddbda7967ebaf5802d2ed7e24649190bde67a533b50780ec1260dc7710c5388c966b71e153d3d21468bbfee4529c62ac5b89b589dd14
Size (gnuradio-3.7.11.tar.gz) = 4357123 bytes
SHA1 (patch-cmake_Modules_FindSphinx.cmake) = 1e42ad000962f4766810fbd322c80dad1f0b1c3c
SHA1 (patch-gnuradio_runtime_include_gnuradio_high__res__timer__h) = 59ad8192e7ac76b2ce35cda68c378bc2abad20a5
SHA1 (patch-gnuradio_runtime_lib_thread_thread_cc) = c05628aa88ac968928f9eabd8c56d4527e258767

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.6 2016/07/12 11:36:47 mef Exp $
@comment $NetBSD: PLIST,v 1.7 2017/03/15 14:07:12 mef Exp $
include/gnuradio/digital/additive_scrambler_bb.h
include/gnuradio/digital/api.h
include/gnuradio/digital/binary_slicer_fb.h
@ -88,8 +88,12 @@ include/gnuradio/digital/simple_correlator.h
include/gnuradio/digital/simple_framer.h
include/gnuradio/digital/simple_framer_sync.h
include/gnuradio/swig/constellation.i
include/gnuradio/swig/digital_swig.i
include/gnuradio/swig/digital_swig_doc.i
include/gnuradio/swig/digital_swig0.i
include/gnuradio/swig/digital_swig0_doc.i
include/gnuradio/swig/digital_swig1.i
include/gnuradio/swig/digital_swig1_doc.i
include/gnuradio/swig/digital_swig2.i
include/gnuradio/swig/digital_swig2_doc.i
include/gnuradio/swig/ofdm_equalizer.i
include/gnuradio/swig/packet_header.i
lib/libgnuradio-digital.so
@ -98,7 +102,9 @@ lib/pkgconfig/gnuradio-digital.pc
${PYSITELIB}/gnuradio/digital/__init__.py
${PYSITELIB}/gnuradio/digital/__init__.pyc
${PYSITELIB}/gnuradio/digital/__init__.pyo
${PYSITELIB}/gnuradio/digital/_digital_swig.so
${PYSITELIB}/gnuradio/digital/_digital_swig0.so
${PYSITELIB}/gnuradio/digital/_digital_swig1.so
${PYSITELIB}/gnuradio/digital/_digital_swig2.so
${PYSITELIB}/gnuradio/digital/bpsk.py
${PYSITELIB}/gnuradio/digital/bpsk.pyc
${PYSITELIB}/gnuradio/digital/bpsk.pyo
@ -114,6 +120,15 @@ ${PYSITELIB}/gnuradio/digital/crc.pyo
${PYSITELIB}/gnuradio/digital/digital_swig.py
${PYSITELIB}/gnuradio/digital/digital_swig.pyc
${PYSITELIB}/gnuradio/digital/digital_swig.pyo
${PYSITELIB}/gnuradio/digital/digital_swig0.py
${PYSITELIB}/gnuradio/digital/digital_swig0.pyc
${PYSITELIB}/gnuradio/digital/digital_swig0.pyo
${PYSITELIB}/gnuradio/digital/digital_swig1.py
${PYSITELIB}/gnuradio/digital/digital_swig1.pyc
${PYSITELIB}/gnuradio/digital/digital_swig1.pyo
${PYSITELIB}/gnuradio/digital/digital_swig2.py
${PYSITELIB}/gnuradio/digital/digital_swig2.pyc
${PYSITELIB}/gnuradio/digital/digital_swig2.pyo
${PYSITELIB}/gnuradio/digital/generic_mod_demod.py
${PYSITELIB}/gnuradio/digital/generic_mod_demod.pyc
${PYSITELIB}/gnuradio/digital/generic_mod_demod.pyo

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.12 2016/11/24 13:43:35 mef Exp $
@comment $NetBSD: PLIST,v 1.13 2017/03/15 14:07:12 mef Exp $
share/doc/gnuradio-${PKGVERSION}/dial_tone.py
share/doc/gnuradio-${PKGVERSION}/fm_demod.py
share/doc/gnuradio-${PKGVERSION}/fm_rx.grc
@ -1701,6 +1701,9 @@ share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1tagged__stream__to__p
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1tags__strobe-members.html
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1tags__strobe.html
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1tags__strobe.js
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1tcp__server__sink-members.html
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1tcp__server__sink.html
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1tcp__server__sink.js
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1test__tag__variable__rate__ff-members.html
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1test__tag__variable__rate__ff.html
share/doc/gnuradio-${PKGVERSION}/html/classgr_1_1blocks_1_1test__tag__variable__rate__ff.js
@ -8530,6 +8533,11 @@ share/doc/gnuradio-${PKGVERSION}/html/tags__strobe_8h__incl.map
share/doc/gnuradio-${PKGVERSION}/html/tags__strobe_8h__incl.md5
share/doc/gnuradio-${PKGVERSION}/html/tags__strobe_8h__incl.png
share/doc/gnuradio-${PKGVERSION}/html/tags__strobe_8h_source.html
share/doc/gnuradio-${PKGVERSION}/html/tcp__server__sink_8h.html
share/doc/gnuradio-${PKGVERSION}/html/tcp__server__sink_8h__incl.map
share/doc/gnuradio-${PKGVERSION}/html/tcp__server__sink_8h__incl.md5
share/doc/gnuradio-${PKGVERSION}/html/tcp__server__sink_8h__incl.png
share/doc/gnuradio-${PKGVERSION}/html/tcp__server__sink_8h_source.html
share/doc/gnuradio-${PKGVERSION}/html/test__tag__variable__rate__ff_8h.html
share/doc/gnuradio-${PKGVERSION}/html/test__tag__variable__rate__ff_8h__incl.map
share/doc/gnuradio-${PKGVERSION}/html/test__tag__variable__rate__ff_8h__incl.md5
@ -9491,6 +9499,7 @@ share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1tagged__stream__multip
share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1tagged__stream__mux.xml
share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1tagged__stream__to__pdu.xml
share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1tags__strobe.xml
share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1tcp__server__sink.xml
share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1test__tag__variable__rate__ff.xml
share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1threshold__ff.xml
share/doc/gnuradio-${PKGVERSION}/xml/classgr_1_1blocks_1_1throttle.xml
@ -10935,6 +10944,7 @@ share/doc/gnuradio-${PKGVERSION}/xml/tagged__stream__mux_8h.xml
share/doc/gnuradio-${PKGVERSION}/xml/tagged__stream__to__pdu_8h.xml
share/doc/gnuradio-${PKGVERSION}/xml/tags_8h.xml
share/doc/gnuradio-${PKGVERSION}/xml/tags__strobe_8h.xml
share/doc/gnuradio-${PKGVERSION}/xml/tcp__server__sink_8h.xml
share/doc/gnuradio-${PKGVERSION}/xml/test__tag__variable__rate__ff_8h.xml
share/doc/gnuradio-${PKGVERSION}/xml/thread_8h.xml
share/doc/gnuradio-${PKGVERSION}/xml/thread__affinity_8dox.xml

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.7 2016/07/12 11:36:47 mef Exp $
@comment $NetBSD: PLIST,v 1.8 2017/03/15 14:07:12 mef Exp $
bin/polar_channel_construction
include/gnuradio/fec/alist.h
include/gnuradio/fec/api.h
@ -31,6 +31,7 @@ include/gnuradio/fec/ldpc_decoder.h
include/gnuradio/fec/ldpc_encoder.h
include/gnuradio/fec/ldpc_gen_mtrx_encoder.h
include/gnuradio/fec/ldpc_par_mtrx_encoder.h
include/gnuradio/fec/maxstar.h
include/gnuradio/fec/polar_common.h
include/gnuradio/fec/polar_decoder_common.h
include/gnuradio/fec/polar_decoder_sc.h
@ -45,6 +46,9 @@ include/gnuradio/fec/repetition_encoder.h
include/gnuradio/fec/rs.h
include/gnuradio/fec/tagged_decoder.h
include/gnuradio/fec/tagged_encoder.h
include/gnuradio/fec/tpc_common.h
include/gnuradio/fec/tpc_decoder.h
include/gnuradio/fec/tpc_encoder.h
include/gnuradio/fec/viterbi.h
include/gnuradio/swig/fec_swig.i
include/gnuradio/swig/fec_swig_doc.i

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.8 2016/07/12 11:36:47 mef Exp $
@comment $NetBSD: PLIST,v 1.9 2017/03/15 14:07:12 mef Exp $
bin/gr_constellation_plot
bin/gr_psd_plot_b
bin/gr_psd_plot_c
@ -112,6 +112,9 @@ ${PYSITELIB}/gnuradio/qtgui/qtgui_swig.pyo
${PYSITELIB}/gnuradio/qtgui/range.py
${PYSITELIB}/gnuradio/qtgui/range.pyc
${PYSITELIB}/gnuradio/qtgui/range.pyo
${PYSITELIB}/gnuradio/qtgui/util.py
${PYSITELIB}/gnuradio/qtgui/util.pyc
${PYSITELIB}/gnuradio/qtgui/util.pyo
share/doc/gnuradio-${PKGVERSION}/README.qtgui
share/gnuradio/examples/gr-qtgui.conf
share/gnuradio/examples/qt-gui/display_qt

View file

@ -1,6 +1,8 @@
@comment $NetBSD: PLIST,v 1.8 2015/03/07 05:10:45 mef Exp $
include/gnuradio/swig/trellis_swig.i
include/gnuradio/swig/trellis_swig_doc.i
@comment $NetBSD: PLIST,v 1.9 2017/03/15 14:07:12 mef Exp $
include/gnuradio/swig/trellis_swig0.i
include/gnuradio/swig/trellis_swig0_doc.i
include/gnuradio/swig/trellis_swig1.i
include/gnuradio/swig/trellis_swig1_doc.i
include/gnuradio/trellis/api.h
include/gnuradio/trellis/base.h
include/gnuradio/trellis/calc_metric.h
@ -74,13 +76,20 @@ lib/pkgconfig/gnuradio-trellis.pc
${PYSITELIB}/gnuradio/trellis/__init__.py
${PYSITELIB}/gnuradio/trellis/__init__.pyc
${PYSITELIB}/gnuradio/trellis/__init__.pyo
${PYSITELIB}/gnuradio/trellis/_trellis_swig.so
${PYSITELIB}/gnuradio/trellis/_trellis_swig0.so
${PYSITELIB}/gnuradio/trellis/_trellis_swig1.so
${PYSITELIB}/gnuradio/trellis/fsm_utils.py
${PYSITELIB}/gnuradio/trellis/fsm_utils.pyc
${PYSITELIB}/gnuradio/trellis/fsm_utils.pyo
${PYSITELIB}/gnuradio/trellis/trellis_swig.py
${PYSITELIB}/gnuradio/trellis/trellis_swig.pyc
${PYSITELIB}/gnuradio/trellis/trellis_swig.pyo
${PYSITELIB}/gnuradio/trellis/trellis_swig0.py
${PYSITELIB}/gnuradio/trellis/trellis_swig0.pyc
${PYSITELIB}/gnuradio/trellis/trellis_swig0.pyo
${PYSITELIB}/gnuradio/trellis/trellis_swig1.py
${PYSITELIB}/gnuradio/trellis/trellis_swig1.pyc
${PYSITELIB}/gnuradio/trellis/trellis_swig1.pyo
share/doc/gnuradio-${PKGVERSION}/html/gr-trellis.html
share/doc/gnuradio-${PKGVERSION}/xml/test_tcm.py.xml
share/doc/gnuradio-${PKGVERSION}/xml/test_viterbi_equalization1.py.xml