SHA256
1
0
forked from pool/gnuradio

Accepting request 623468 from home:wkazubski:test:science

- Update to version 3.7.13.4
  * Fix Boost 1.67 linking issue
  * Logging - fixed issues where messages weren't properly written
    to stdout/stderr due to incorrect strings
  * gr-analog - `fmdet_cf`'s derivative coefficients were wrong.
  * gr-blocks - `skiphead` used to incorrectly handle tags, 
    now properly shifts
  * gr-digital - `qa_packet_format`: Unit test used to potentially
    lock up due to incorrect conditionals
    - `clock_recovery_cc`, `crc32_bb`: Accessing the `[0]` element
      of an empty vector is UB, even if you don't use the result
      afterwards.
  * gr-fec - `polar_encoder`/`_common`: Fixed multiple out-of-bound
    accesses due to insufficient vector length checks
  * gr-filter - `fft_filter`, `filter_delay`: Accessing the `[0]` 
    element of an empty vector is UB, even if you don't use the
    result afterwards.
- Patch missing_libraries.patch modified

OBS-URL: https://build.opensuse.org/request/show/623468
OBS-URL: https://build.opensuse.org/package/show/hardware:sdr/gnuradio?expand=0&rev=20
This commit is contained in:
Martin Pluskal 2018-07-18 06:36:00 +00:00 committed by Git OBS Bridge
parent 892fcfc115
commit 53a91f1671
5 changed files with 27 additions and 11 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:03fc4d63960e1ab1edb881f792f896a47b16e51a04b81abf00db0bd4e5bdb5c1
size 4430594

3
gnuradio-3.7.13.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c536c268b1e9c24f1206bbc881a5819ac46e662f4e8beaded6f3f441d3502f0d
size 4546663

View File

@ -1,3 +1,25 @@
-------------------------------------------------------------------
Tue Jul 17 07:41:57 UTC 2018 - wk@ire.pw.edu.pl
- Update to version 3.7.13.4
* Fix Boost 1.67 linking issue
* Logging - fixed issues where messages weren't properly written
to stdout/stderr due to incorrect strings
* gr-analog - `fmdet_cf`'s derivative coefficients were wrong.
* gr-blocks - `skiphead` used to incorrectly handle tags,
now properly shifts
* gr-digital - `qa_packet_format`: Unit test used to potentially
lock up due to incorrect conditionals
- `clock_recovery_cc`, `crc32_bb`: Accessing the `[0]` element
of an empty vector is UB, even if you don't use the result
afterwards.
* gr-fec - `polar_encoder`/`_common`: Fixed multiple out-of-bound
accesses due to insufficient vector length checks
* gr-filter - `fft_filter`, `filter_delay`: Accessing the `[0]`
element of an empty vector is UB, even if you don't use the
result afterwards.
- Patch missing_libraries.patch modified
-------------------------------------------------------------------
Fri Jun 15 08:50:15 UTC 2018 - mardnh@gmx.de

View File

@ -20,7 +20,7 @@
%define sover_volk 1_4
%define volk_version 1.4
Name: gnuradio
Version: 3.7.13.3
Version: 3.7.13.4
Release: 0
Summary: GNU software radio
License: GPL-3.0-or-later

View File

@ -13,7 +13,7 @@ Index: gnuradio-3.7.12.0/gr-uhd/examples/c++/CMakeLists.txt
===================================================================
--- gnuradio-3.7.12.0.orig/gr-uhd/examples/c++/CMakeLists.txt
+++ gnuradio-3.7.12.0/gr-uhd/examples/c++/CMakeLists.txt
@@ -31,11 +31,14 @@ include_directories(
@@ -31,6 +31,9 @@ include_directories(
link_directories(${UHD_LIBRARY_DIRS})
link_directories(${Boost_LIBRARY_DIRS})
@ -23,12 +23,6 @@ Index: gnuradio-3.7.12.0/gr-uhd/examples/c++/CMakeLists.txt
########################################################################
# Build executable
########################################################################
add_executable(tags_demo tags_demo.cc)
-target_link_libraries(tags_demo gnuradio-uhd)
+target_link_libraries(tags_demo gnuradio-uhd Threads::Threads)
INSTALL(TARGETS
tags_demo
Index: gnuradio-3.7.12.0/volk/lib/CMakeLists.txt
===================================================================
--- gnuradio-3.7.12.0.orig/volk/lib/CMakeLists.txt