forked from pool/gnuradio
Accepting request 970074 from hardware:sdr
OBS-URL: https://build.opensuse.org/request/show/970074 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnuradio?expand=0&rev=52
This commit is contained in:
commit
06a6c980dc
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1fa720cdb30db4edc513e7b40f3ce0e12844cc93015366cc4cab8707e02ed1fe
|
|
||||||
size 4318131
|
|
3
gnuradio-3.10.2.0.tar.gz
Normal file
3
gnuradio-3.10.2.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a8f6c1cc98bc3784aa70ab29d3039ad6922ec36f908ecfb2c904a597b32c0776
|
||||||
|
size 4323022
|
@ -1,3 +1,41 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 11 20:26:33 UTC 2022 - Mikhail Paulyshka <me@mixaill.net>
|
||||||
|
|
||||||
|
- Added python3-jsonschema to build and runtime dependencies
|
||||||
|
- Added python3-pyzmq to runtime dependencies
|
||||||
|
- Update to version 3.10.2.0
|
||||||
|
* gnuradio-runtime
|
||||||
|
+ Correct size/usage for single-mapped buffers (part of the new Custom Buffers feature).
|
||||||
|
* grc
|
||||||
|
+ Improve discovery of xterm and related programs.
|
||||||
|
+ Save generated hierarchical block code to the block library instead of the directory containing the current GRC flowgraph.
|
||||||
|
+ New JSON Config and YAML Config blocks that load configuration variables from files at runtime. Those variables may then be used in block parameters.
|
||||||
|
+ Store the GNU Radio version in flowgraph metadata when saving.
|
||||||
|
+ Minor change in Python evaluation code to allow affinity, minoutbuf and maxoutbuf to be adjusted via script parameters.
|
||||||
|
* Build system and packaging
|
||||||
|
+ Require C++-17 for gnuradio-runtime and code compiled against it (via cmake flags).
|
||||||
|
+ Add pythonschema to build- and run-time dependencies.
|
||||||
|
* gr-blocks
|
||||||
|
+ Add exponential distribution to Message Strobe Random block’s delay selection.
|
||||||
|
+ Quiet down debug messages in File Sink.
|
||||||
|
+ Skip alignment check in File Source when the input file is not seekable (e.g., it is a pipe).
|
||||||
|
* gr-filter
|
||||||
|
+ Fix crash in Rational Resampler logging
|
||||||
|
* gr-digital
|
||||||
|
+ Add generic CRC blocks: CRC Append and CRC Check.
|
||||||
|
* gr-qtgui
|
||||||
|
+ Improve text/background color on Range widget.
|
||||||
|
+ Digital Number Control emits message with new, instead of previous, value.
|
||||||
|
+ Message Edit Box sends message only when return is pressed, rather than whenever focus is lost.
|
||||||
|
+ Vector Sink allows legend to be disabled.
|
||||||
|
+ Type error fixes (Python 3.10 is stricter about int casting).
|
||||||
|
* gr-trellis
|
||||||
|
+ Provide Python bindings for PCCC Encoder and Viterbi Combo.
|
||||||
|
* gr-vocoder
|
||||||
|
+ Add C++ generation support to gr-vocoder
|
||||||
|
* Code generation tools
|
||||||
|
+ Support strongly-typed enums in Python bindings
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 26 18:03:17 UTC 2022 - Mikhail Paulyshka <me@mixaill.net>
|
Fri Mar 26 18:03:17 UTC 2022 - Mikhail Paulyshka <me@mixaill.net>
|
||||||
|
|
||||||
|
@ -16,14 +16,14 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define sover 3_10_1
|
%define sover 3_10_2
|
||||||
%ifarch %{arm}
|
%ifarch %{arm}
|
||||||
# boo#1182440
|
# boo#1182440
|
||||||
%define _lto_cflags %{nil}
|
%define _lto_cflags %{nil}
|
||||||
%endif
|
%endif
|
||||||
%bcond_without docs
|
%bcond_without docs
|
||||||
Name: gnuradio
|
Name: gnuradio
|
||||||
Version: 3.10.1.1
|
Version: 3.10.2.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: GNU software radio
|
Summary: GNU software radio
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
@ -66,6 +66,7 @@ BuildRequires: python3-click-plugins
|
|||||||
BuildRequires: python3-devel >= 3.6.5
|
BuildRequires: python3-devel >= 3.6.5
|
||||||
BuildRequires: python3-gobject
|
BuildRequires: python3-gobject
|
||||||
BuildRequires: python3-gobject-cairo
|
BuildRequires: python3-gobject-cairo
|
||||||
|
BuildRequires: python3-jsonschema
|
||||||
BuildRequires: python3-mako >= 1.0.7
|
BuildRequires: python3-mako >= 1.0.7
|
||||||
BuildRequires: python3-numpy-devel >= 1.17.4
|
BuildRequires: python3-numpy-devel >= 1.17.4
|
||||||
BuildRequires: python3-pyaml >= 3.11
|
BuildRequires: python3-pyaml >= 3.11
|
||||||
@ -87,6 +88,7 @@ BuildRequires: typelib(cairo) = 1.0
|
|||||||
# gnuradio-companion dependencies
|
# gnuradio-companion dependencies
|
||||||
Requires: python3-cairo
|
Requires: python3-cairo
|
||||||
Requires: python3-gobject-Gdk
|
Requires: python3-gobject-Gdk
|
||||||
|
Requires: python3-jsonschema
|
||||||
Requires: typelib(Gtk) = 3.0
|
Requires: typelib(Gtk) = 3.0
|
||||||
# gr_modtool dependencies
|
# gr_modtool dependencies
|
||||||
Requires: python3-click
|
Requires: python3-click
|
||||||
@ -98,6 +100,8 @@ Requires: python3-qt5
|
|||||||
# gr_filter dependencies
|
# gr_filter dependencies
|
||||||
Requires: python3-scipy
|
Requires: python3-scipy
|
||||||
Requires: python3-pyqtgraph
|
Requires: python3-pyqtgraph
|
||||||
|
# gr_network dependencies
|
||||||
|
Requires: python3-pyzmq
|
||||||
%if %{with docs}
|
%if %{with docs}
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
BuildRequires: mathjax
|
BuildRequires: mathjax
|
||||||
|
Loading…
x
Reference in New Issue
Block a user