diff --git a/gnuradio-3.7.13.3.tar.gz b/gnuradio-3.7.13.3.tar.gz deleted file mode 100644 index 7b691f6..0000000 --- a/gnuradio-3.7.13.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:03fc4d63960e1ab1edb881f792f896a47b16e51a04b81abf00db0bd4e5bdb5c1 -size 4430594 diff --git a/gnuradio-3.7.13.4.tar.gz b/gnuradio-3.7.13.4.tar.gz new file mode 100644 index 0000000..2b78015 --- /dev/null +++ b/gnuradio-3.7.13.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c536c268b1e9c24f1206bbc881a5819ac46e662f4e8beaded6f3f441d3502f0d +size 4546663 diff --git a/gnuradio.changes b/gnuradio.changes index bfe26d3..fc7125b 100644 --- a/gnuradio.changes +++ b/gnuradio.changes @@ -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 diff --git a/gnuradio.spec b/gnuradio.spec index 02fa537..ac63a77 100644 --- a/gnuradio.spec +++ b/gnuradio.spec @@ -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 diff --git a/missing_library.patch b/missing_library.patch index cb8a996..4b6f3eb 100644 --- a/missing_library.patch +++ b/missing_library.patch @@ -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