[arch-commits] Commit in gnuradio/trunk (PKGBUILD gnuradio-bind-placeholders.patch)

Kyle Keen kkeen at archlinux.org
Thu Dec 31 07:46:59 UTC 2020


    Date: Thursday, December 31, 2020 @ 07:46:59
  Author: kkeen
Revision: 800353

upgpkg: gnuradio 3.8.2.0-1

Modified:
  gnuradio/trunk/PKGBUILD
  gnuradio/trunk/gnuradio-bind-placeholders.patch

----------------------------------+
 PKGBUILD                         |   17 +++++++----------
 gnuradio-bind-placeholders.patch |    8 ++++----
 2 files changed, 11 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-12-31 07:11:00 UTC (rev 800352)
+++ PKGBUILD	2020-12-31 07:46:59 UTC (rev 800353)
@@ -4,17 +4,17 @@
 # Contributor:	Jonatan Sastre <jsastreh [ at ] hotmail.com>
 pkgbase=gnuradio
 pkgname=(gnuradio gnuradio-companion)
-pkgver=3.8.1.0
-pkgrel=8
+pkgver=3.8.2.0
+pkgrel=1
 pkgdesc="General purpose DSP and SDR toolkit.  With drivers for usrp and fcd."
 arch=('x86_64')
 url="https://gnuradio.org"
 license=('GPL')
 depends=('python-numpy' 'gsl' 'blas' 'libuhd' 'libvolk' 'log4cpp' 'python-yaml'
-'gmp' 'gsm' 'codec2' 'python-mako' 'python-click-plugins')
+    'gmp' 'gsm' 'codec2' 'python-mako' 'python-click-plugins')
 makedepends=('alsa-lib' 'boost' 'cmake' 'fftw' 'glu' 'gtk3' 'jack' 'pango'
-'portaudio' 'python-gobject' 'python-lxml' 'python-pyqt5' 'python-cairo' 'qwt'
-'swig' 'zeromq')
+    'portaudio' 'python-gobject' 'python-lxml' 'python-pyqt5' 'python-cairo'
+    'qwt' 'swig' 'zeromq')
 
 # todo
 # split the gui components?
@@ -40,12 +40,9 @@
         "21-fcd.rules")
 validpgpkeys=('B90DDFAC56989BF62262EB812987C77CBB8ED9B2'  # GNU Radio Project
               'D74F9F146E7F755783583158B343B2BA293E5174') # Marcus Müller
-sha512sums=('d1ada5b36c32aefd5915e4aa33beafd06aaaa00654f5a9f126bc9068f9e607580660bd5c57177503c3c29c23e9f3f4bc0f9c6c394a6f4bb003f6ffdf520eb2e0'
-            'fd80942ee541f6acf096f547b19d2c33471cb14e0d9562ce4a2bfabcc476b8b0178f65dc20e1def4144c21220599466e66232c106f1e825340db39996283c637'
+sha512sums=('28ac794f3016ebf598467fda2ca90500f6479b773bb7d3c1c7e21fc1fdcac83f9e1973ef5ad9132f17333f786cf0f4a1d17c2b9256e4fa216c8e5bb7550d2474'
+            'f4e52e6e9ef6054f358d3ee00cbcb70bab65c36dfac8975c3182f6514c547905f36801a049f0918d69c9ffd98ce801891a3bfc4e4faeb8fb33582d84140a70b7'
             '6f02dc8e20a7a1cd11099c851a7c8427fcd21e9652e6cddd0a72ca747b0e93cd4fd1b7b7b7e426b6231348bcc34fb2417716a2f03c92ec141889edc65031c3a0')
-b2sums=('8a56d55e2880277ca32332df01b046ebbe79d2559e568bd4c957a64df64799fc58d367e8d55f03d1ffffa180942b1c5b48a0e11877a114372c3ea8ed403169f5'
-        'aeaaeb7a5fe7fdbaa5914818e0861a0fb1fb9004a9be92ec46fcec7bab35842faff01a932d220236af3202faa29f97696f9a8e37ae5338c3c006d9beedc1a6c3'
-        '83657a141a7a4fc52ae62e19b480fd7b7e651efffc2186d3eb96e8612beffbbe71b434a2323ae37c74465ff6a959a4ca1f9c9db5ed02ab641f1784e704ab5f4d')
 
 prepare() {
   cd "$srcdir/$pkgbase-$pkgver"

Modified: gnuradio-bind-placeholders.patch
===================================================================
--- gnuradio-bind-placeholders.patch	2020-12-31 07:11:00 UTC (rev 800352)
+++ gnuradio-bind-placeholders.patch	2020-12-31 07:46:59 UTC (rev 800353)
@@ -138,9 +138,9 @@
  
 +using namespace boost::placeholders;
 +
- push_msg_sink::sptr push_msg_sink::make(char* address, int timeout)
+ push_msg_sink::sptr push_msg_sink::make(char* address, int timeout, bool bind)
  {
-     return gnuradio::get_initial_sptr(new push_msg_sink_impl(address, timeout));
+     return gnuradio::get_initial_sptr(new push_msg_sink_impl(address, timeout, bind));
 --- gnuradio-3.8.1.0/gr-blocks/lib/socket_pdu_impl.cc~	2020-06-03 17:20:39.245825015 +0100
 +++ gnuradio-3.8.1.0/gr-blocks/lib/socket_pdu_impl.cc	2020-06-03 17:20:52.819828566 +0100
 @@ -32,6 +32,8 @@
@@ -160,9 +160,9 @@
  
 +using namespace boost::placeholders;
 +
- pub_msg_sink::sptr pub_msg_sink::make(char* address, int timeout)
+ pub_msg_sink::sptr pub_msg_sink::make(char* address, int timeout, bool bind)
  {
-     return gnuradio::get_initial_sptr(new pub_msg_sink_impl(address, timeout));
+     return gnuradio::get_initial_sptr(new pub_msg_sink_impl(address, timeout, bool));
 --- gnuradio-3.8.1.0/gr-blocks/lib/tagged_stream_multiply_length_impl.cc~	2020-06-03 17:35:50.436093636 +0100
 +++ gnuradio-3.8.1.0/gr-blocks/lib/tagged_stream_multiply_length_impl.cc	2020-06-03 17:36:01.704097517 +0100
 @@ -30,6 +30,8 @@



More information about the arch-commits mailing list