[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2020-12-12 Thread Felix Yan via arch-commits
Date: Saturday, December 12, 2020 @ 15:08:57
  Author: felixonmars
Revision: 773292

upgpkg: libuhd 3.15.0.0-5: boost 1.75.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-12 15:07:02 UTC (rev 773291)
+++ PKGBUILD2020-12-12 15:08:57 UTC (rev 773292)
@@ -3,7 +3,7 @@
 
 pkgname=libuhd
 pkgver=3.15.0.0
-pkgrel=4
+pkgrel=5
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="https://files.ettus.com/manual/;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2020-12-06 Thread Evangelos Foutras via arch-commits
Date: Sunday, December 6, 2020 @ 19:40:35
  Author: foutrelis
Revision: 771145

upgpkg: libuhd 3.15.0.0-4: boost 1.74.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-06 19:40:02 UTC (rev 771144)
+++ PKGBUILD2020-12-06 19:40:35 UTC (rev 771145)
@@ -3,7 +3,7 @@
 
 pkgname=libuhd
 pkgver=3.15.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="https://files.ettus.com/manual/;
@@ -49,4 +49,3 @@
   make DESTDIR="$pkgdir" install
   install -Dm644 "../utils/uhd-usrp.rules" 
"$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules"
 } 
-


[arch-commits] Commit in libuhd/trunk (PKGBUILD boost-1.73.patch)

2020-12-06 Thread Evangelos Foutras via arch-commits
Date: Sunday, December 6, 2020 @ 19:38:12
  Author: foutrelis
Revision: 771142

Fix build with boost 1.73

Added:
  libuhd/trunk/boost-1.73.patch
Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |   18 +
 boost-1.73.patch |  570 +
 2 files changed, 583 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-06 19:36:13 UTC (rev 771141)
+++ PKGBUILD2020-12-06 19:38:12 UTC (rev 771142)
@@ -13,14 +13,22 @@
 makedepends=('cmake' 'boost' 'python-mako')
 # gpsd?  dpdk?
 
-source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;)
-md5sums=('cf589d5130ebd8348e3dbf129a7c5c38')
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;
+boost-1.73.patch)
+sha256sums=('eed4a77d75faafff56be78985950039f8d9d1eb9fcbd58b8862e481dd49825cd'
+'10c2f221dee97418f92d10606f9b9fea1436e3bd0d7120e7b24fc90a95a07fc1')
 
-build() {
+prepare() {
   cd "$srcdir/uhd-$pkgver/host"
+  mkdir build
 
-  mkdir -p build
-  cd build
+  # https://github.com/EttusResearch/uhd/issues/347
+  patch -Np2 -i ../../boost-1.73.patch
+}
+
+build() {
+  cd "$srcdir/uhd-$pkgver/host/build"
+
   cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
-DENABLE_EXAMPLES=OFF \

Added: boost-1.73.patch
===
--- boost-1.73.patch(rev 0)
+++ boost-1.73.patch2020-12-06 19:38:12 UTC (rev 771142)
@@ -0,0 +1,570 @@
+From bf2ac9ec81f27393796598fe233e6c3780868452 Mon Sep 17 00:00:00 2001
+From: Martin Braun 
+Date: Thu, 16 Jul 2020 13:07:34 +0200
+Subject: [PATCH] boost: Include bind.hpp where used, add
+ BOOST_BIND_GLOBAL_PLACEHOLDERS
+
+Consists of two changes:
+- Grepped for files that use boost::bind, but don't include
+  boost/bind.hpp. Changed all of those to include bind.hpp
+- Add BOOST_BIND_GLOBAL_PLACEHOLDERS so that Boost doesn't complain
+  about using bind placeholders in the global namespace.
+
+Background: boost/bind.hpp is a convenience header that pulls the Boost
+bind placeholders into the global namespace, but that's deprecated
+behaviour. For UHD 3.15, we'll keep the deprecated behaviour (modern UHD
+no longer uses Boost.Bind), so this fixes build failures with modern
+Boost, and related warnings.
+
+(cherry picked from commit 13caaf001061db3c01082c4574a5e326c4969ab6)
+---
+ host/cmake/Modules/UHDBoost.cmake  | 3 +++
+ host/examples/network_relay.cpp| 1 +
+ host/examples/rfnoc_rx_to_file.cpp | 1 +
+ host/examples/test_clock_synch.cpp | 1 +
+ host/examples/txrx_loopback_to_file.cpp| 1 +
+ host/lib/rfnoc/dma_fifo_block_ctrl_impl.cpp| 1 +
+ host/lib/rfnoc/legacy_compat.cpp   | 1 +
+ host/lib/transport/xport_benchmarker.cpp   | 1 +
+ host/lib/usrp/b100/b100_impl.cpp   | 1 +
+ host/lib/usrp/b200/b200_iface.cpp  | 1 +
+ host/lib/usrp/b200/b200_impl.cpp   | 1 +
+ host/lib/usrp/cores/rx_dsp_core_3000.cpp   | 1 +
+ host/lib/usrp/cores/tx_dsp_core_3000.cpp   | 1 +
+ host/lib/usrp/dboard/db_cbx.cpp| 1 +
+ host/lib/usrp/dboard/db_dbsrx.cpp  | 1 +
+ host/lib/usrp/dboard/db_dbsrx2.cpp | 1 +
+ host/lib/usrp/dboard/db_sbx_common.cpp | 1 +
+ host/lib/usrp/dboard/db_sbx_version3.cpp   | 1 +
+ host/lib/usrp/dboard/db_sbx_version4.cpp   | 1 +
+ host/lib/usrp/dboard/db_tvrx.cpp   | 1 +
+ host/lib/usrp/dboard/db_tvrx2.cpp  | 1 +
+ host/lib/usrp/dboard/db_twinrx.cpp | 1 +
+ host/lib/usrp/dboard/db_ubx.cpp| 1 +
+ host/lib/usrp/dboard/db_wbx_common.cpp | 1 +
+ host/lib/usrp/dboard/db_wbx_simple.cpp | 1 +
+ host/lib/usrp/dboard/db_wbx_version2.cpp   | 1 +
+ host/lib/usrp/dboard/db_wbx_version3.cpp   | 1 +
+ host/lib/usrp/dboard/db_wbx_version4.cpp   | 1 +
+ host/lib/usrp/dboard/db_xcvr2450.cpp   | 1 +
+ host/lib/usrp/dboard/eiscat/eiscat_radio_ctrl_impl.cpp | 1 +
+ host/lib/usrp/multi_usrp.cpp   | 1 +
+ host/lib/usrp/n230/n230_resource_manager.cpp   | 1 +
+ host/lib/usrp/n230/n230_uart.cpp   | 1 +
+ host/lib/usrp/usrp1/soft_time_ctrl.cpp | 1 +
+ host/lib/usrp/usrp1/usrp1_impl.cpp | 1 +
+ host/lib/usrp/x300/x300_radio_ctrl_impl.cpp| 1 +
+ host/lib/usrp_clock/octoclock/octoclock_impl.cpp   | 1 +
+ host/lib/utils/ihex.cpp| 1 +
+ host/lib/utils/tasks.cpp 

[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2020-05-28 Thread Kyle Keen via arch-commits
Date: Friday, May 29, 2020 @ 04:43:05
  Author: kkeen
Revision: 636951

upgpkg: libuhd 3.15.0.0-3

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-29 04:38:28 UTC (rev 636950)
+++ PKGBUILD2020-05-29 04:43:05 UTC (rev 636951)
@@ -3,10 +3,10 @@
 
 pkgname=libuhd
 pkgver=3.15.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
-url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
+url="https://files.ettus.com/manual/;
 license=('GPL')
 depends=('boost-libs' 'orc' 'libusb')
 optdepends=('python: usrp utils')


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2020-01-27 Thread Evangelos Foutras via arch-commits
Date: Tuesday, January 28, 2020 @ 01:35:26
  Author: foutrelis
Revision: 556921

boost 1.72.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-28 01:35:24 UTC (rev 556920)
+++ PKGBUILD2020-01-28 01:35:26 UTC (rev 556921)
@@ -3,7 +3,7 @@
 
 pkgname=libuhd
 pkgver=3.15.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2020-01-15 Thread Kyle Keen via arch-commits
Date: Wednesday, January 15, 2020 @ 19:17:11
  Author: kkeen
Revision: 552675

upgpkg: libuhd 3.15.0.0-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |   18 ++
 1 file changed, 6 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-15 19:01:27 UTC (rev 552674)
+++ PKGBUILD2020-01-15 19:17:11 UTC (rev 552675)
@@ -2,26 +2,20 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.14.1.0
-pkgrel=2
+pkgver=3.15.0.0
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
 license=('GPL')
 depends=('boost-libs' 'orc' 'libusb')
-optdepends=('python2: usrp utils')
-makedepends=('cmake' 'boost' 'python2-mako')
+optdepends=('python: usrp utils')
+makedepends=('cmake' 'boost' 'python-mako')
 # gpsd?  dpdk?
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;)
-md5sums=('2eaad9beeff8c6d9716c93d580fb7b1c')
+md5sums=('cf589d5130ebd8348e3dbf129a7c5c38')
 
-prepare() {
-  cd "$srcdir/uhd-$pkgver"
-  # fix for py2
-  find -name "*.py" -or -name '*.py.in' | xargs sed -i "s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|"
-}
-
 build() {
   cd "$srcdir/uhd-$pkgver/host"
 
@@ -28,7 +22,7 @@
   mkdir -p build
   cd build
   cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \
-   -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+   -DPYTHON_EXECUTABLE=/usr/bin/python3 \
-DENABLE_EXAMPLES=OFF \
-DENABLE_UTILS=ON \
-DENABLE_TESTS=OFF \


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2019-09-12 Thread Evangelos Foutras via arch-commits
Date: Friday, September 13, 2019 @ 05:58:28
  Author: foutrelis
Revision: 510064

boost 1.71.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-13 05:58:07 UTC (rev 510063)
+++ PKGBUILD2019-09-13 05:58:28 UTC (rev 510064)
@@ -3,7 +3,7 @@
 
 pkgname=libuhd
 pkgver=3.14.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2019-08-15 Thread Kyle Keen via arch-commits
Date: Friday, August 16, 2019 @ 05:26:33
  Author: kkeen
Revision: 499696

upgpkg: libuhd 3.14.1.0-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-16 05:07:34 UTC (rev 499695)
+++ PKGBUILD2019-08-16 05:26:33 UTC (rev 499696)
@@ -2,7 +2,7 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.14.0.0
+pkgver=3.14.1.0
 pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
@@ -14,7 +14,7 @@
 # gpsd?  dpdk?
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;)
-md5sums=('bc195e12bbdf95eaf88ce20be453020d')
+md5sums=('2eaad9beeff8c6d9716c93d580fb7b1c')
 
 prepare() {
   cd "$srcdir/uhd-$pkgver"


[arch-commits] Commit in libuhd/trunk (PKGBUILD boost-1.67.patch boost-1.69.patch)

2019-04-28 Thread Kyle Keen via arch-commits
Date: Monday, April 29, 2019 @ 03:23:25
  Author: kkeen
Revision: 455222

upgpkg: libuhd 3.14.0.0-1

Modified:
  libuhd/trunk/PKGBUILD
Deleted:
  libuhd/trunk/boost-1.67.patch
  libuhd/trunk/boost-1.69.patch

--+
 PKGBUILD |   19 +++
 boost-1.67.patch |   12 
 boost-1.69.patch |   24 
 3 files changed, 7 insertions(+), 48 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-29 00:29:46 UTC (rev 455221)
+++ PKGBUILD2019-04-29 03:23:25 UTC (rev 455222)
@@ -2,8 +2,8 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.13.0.1
-pkgrel=3
+pkgver=3.14.0.0
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -11,24 +11,19 @@
 depends=('boost-libs' 'orc' 'libusb')
 optdepends=('python2: usrp utils')
 makedepends=('cmake' 'boost' 'python2-mako')
+# gpsd?  dpdk?
 
-source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;
-'boost-1.67.patch'
-'boost-1.69.patch')
-md5sums=('e7c38546d9dadac41657ee5e53c3f342'
- '45fcc6feb0ea9b4ae09e4ba7b010864f'
- 'ae53a647b13a9187a3c8b965bfbde2c1')
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;)
+md5sums=('bc195e12bbdf95eaf88ce20be453020d')
 
 prepare() {
   cd "$srcdir/uhd-$pkgver"
-  patch -Np1 -i ../boost-1.67.patch
-  patch -Np1 -i ../boost-1.69.patch
+  # fix for py2
+  find -name "*.py" -or -name '*.py.in' | xargs sed -i "s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|"
 }
 
 build() {
   cd "$srcdir/uhd-$pkgver/host"
-  # fix for py2
-  find -name "*.py" -or -name '*.py.in' | xargs sed -i "s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|"
 
   mkdir -p build
   cd build

Deleted: boost-1.67.patch
===
--- boost-1.67.patch2019-04-29 00:29:46 UTC (rev 455221)
+++ boost-1.67.patch2019-04-29 03:23:25 UTC (rev 455222)
@@ -1,12 +0,0 @@
-diff -upr uhd-3.11.1.0.orig/host/lib/usrp/e300/e300_fifo_config.cpp 
uhd-3.11.1.0/host/lib/usrp/e300/e300_fifo_config.cpp
 uhd-3.11.1.0.orig/host/lib/usrp/e300/e300_fifo_config.cpp  2018-05-16 
22:25:48.0 +0300
-+++ uhd-3.11.1.0/host/lib/usrp/e300/e300_fifo_config.cpp   2018-06-03 
00:16:53.119018076 +0300
-@@ -107,7 +107,7 @@ struct e300_fifo_poll_waiter
- boost::mutex::scoped_lock l(_mutex);
- if (_poll_claimed)
- {
--_cond.timed_wait(l, 
boost::posix_time::microseconds(timeout*100));
-+_cond.timed_wait(l, 
boost::posix_time::microseconds(long(timeout*100)));
- }
- else
- {

Deleted: boost-1.69.patch
===
--- boost-1.69.patch2019-04-29 00:29:46 UTC (rev 455221)
+++ boost-1.69.patch2019-04-29 03:23:25 UTC (rev 455222)
@@ -1,24 +0,0 @@
-From 5c012cad7858cadcaa85ec295080f3c8b21fdee0 Mon Sep 17 00:00:00 2001
-From: Martin Braun 
-Date: Wed, 9 Jan 2019 09:17:07 -0800
-Subject: [PATCH] lib: experts: Add potentially missing but sometimes inferred
- include
-
-This adds an include for boost/core/noncopyable.hpp. Without it, builds
-would potentially fail on Boost 1.69++.

- host/lib/include/uhdlib/experts/expert_nodes.hpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/host/lib/include/uhdlib/experts/expert_nodes.hpp 
b/host/lib/include/uhdlib/experts/expert_nodes.hpp
-index 697ca19c3..8fa183835 100644
 a/host/lib/include/uhdlib/experts/expert_nodes.hpp
-+++ b/host/lib/include/uhdlib/experts/expert_nodes.hpp
-@@ -12,6 +12,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2019-01-14 Thread Felix Yan via arch-commits
Date: Tuesday, January 15, 2019 @ 07:42:24
  Author: felixonmars
Revision: 423165

boost 1.69.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-15 07:39:33 UTC (rev 423164)
+++ PKGBUILD2019-01-15 07:42:24 UTC (rev 423165)
@@ -3,7 +3,7 @@
 
 pkgname=libuhd
 pkgver=3.13.0.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD boost-1.69.patch)

2019-01-14 Thread Evangelos Foutras via arch-commits
Date: Tuesday, January 15, 2019 @ 07:39:33
  Author: foutrelis
Revision: 423164

Fix build with boost 1.69

Added:
  libuhd/trunk/boost-1.69.patch
Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |7 +--
 boost-1.69.patch |   24 
 2 files changed, 29 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-15 07:37:36 UTC (rev 423163)
+++ PKGBUILD2019-01-15 07:39:33 UTC (rev 423164)
@@ -13,13 +13,16 @@
 makedepends=('cmake' 'boost' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;
-'boost-1.67.patch')
+'boost-1.67.patch'
+'boost-1.69.patch')
 md5sums=('e7c38546d9dadac41657ee5e53c3f342'
- '45fcc6feb0ea9b4ae09e4ba7b010864f')
+ '45fcc6feb0ea9b4ae09e4ba7b010864f'
+ 'ae53a647b13a9187a3c8b965bfbde2c1')
 
 prepare() {
   cd "$srcdir/uhd-$pkgver"
   patch -Np1 -i ../boost-1.67.patch
+  patch -Np1 -i ../boost-1.69.patch
 }
 
 build() {

Added: boost-1.69.patch
===
--- boost-1.69.patch(rev 0)
+++ boost-1.69.patch2019-01-15 07:39:33 UTC (rev 423164)
@@ -0,0 +1,24 @@
+From 5c012cad7858cadcaa85ec295080f3c8b21fdee0 Mon Sep 17 00:00:00 2001
+From: Martin Braun 
+Date: Wed, 9 Jan 2019 09:17:07 -0800
+Subject: [PATCH] lib: experts: Add potentially missing but sometimes inferred
+ include
+
+This adds an include for boost/core/noncopyable.hpp. Without it, builds
+would potentially fail on Boost 1.69++.
+---
+ host/lib/include/uhdlib/experts/expert_nodes.hpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/host/lib/include/uhdlib/experts/expert_nodes.hpp 
b/host/lib/include/uhdlib/experts/expert_nodes.hpp
+index 697ca19c3..8fa183835 100644
+--- a/host/lib/include/uhdlib/experts/expert_nodes.hpp
 b/host/lib/include/uhdlib/experts/expert_nodes.hpp
+@@ -12,6 +12,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2018-09-17 Thread Evangelos Foutras via arch-commits
Date: Tuesday, September 18, 2018 @ 00:15:02
  Author: foutrelis
Revision: 382824

boost 1.68.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-18 00:12:49 UTC (rev 382823)
+++ PKGBUILD2018-09-18 00:15:02 UTC (rev 382824)
@@ -3,7 +3,7 @@
 
 pkgname=libuhd
 pkgver=3.13.0.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2018-08-14 Thread Kyle Keen via arch-commits
Date: Wednesday, August 15, 2018 @ 05:03:10
  Author: kkeen
Revision: 371672

upgpkg: libuhd 3.13.0.1-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-15 04:50:14 UTC (rev 371671)
+++ PKGBUILD2018-08-15 05:03:10 UTC (rev 371672)
@@ -3,7 +3,7 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.11.1.0
+pkgver=3.13.0.1
 pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
@@ -11,11 +11,11 @@
 license=('GPL')
 depends=('boost-libs' 'orc' 'libusb')
 optdepends=('python2: usrp utils')
-makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
+makedepends=('cmake' 'boost' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;
 'boost-1.67.patch')
-md5sums=('fb3c6972af55130f34ec9133caf6c9e4'
+md5sums=('e7c38546d9dadac41657ee5e53c3f342'
  '45fcc6feb0ea9b4ae09e4ba7b010864f')
 
 prepare() {


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2018-06-02 Thread Evangelos Foutras via arch-commits
Date: Saturday, June 2, 2018 @ 21:40:24
  Author: foutrelis
Revision: 338483

boost 1.67.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-02 21:35:03 UTC (rev 338482)
+++ PKGBUILD2018-06-02 21:40:24 UTC (rev 338483)
@@ -4,7 +4,7 @@
 
 pkgname=libuhd
 pkgver=3.11.1.0
-pkgrel=0
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD boost-1.67.patch)

2018-06-02 Thread Evangelos Foutras via arch-commits
Date: Saturday, June 2, 2018 @ 21:34:56
  Author: foutrelis
Revision: 338480

Prepare bump to 3.11.1.0 for boost 1.67

Added:
  libuhd/trunk/boost-1.67.patch
Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |   24 +++-
 boost-1.67.patch |   12 
 2 files changed, 23 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-02 21:34:54 UTC (rev 338479)
+++ PKGBUILD2018-06-02 21:34:56 UTC (rev 338480)
@@ -3,9 +3,8 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.10.2.0
-_verstring='003_010_002_000'
-pkgrel=3
+pkgver=3.11.1.0
+pkgrel=0
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -14,19 +13,18 @@
 optdepends=('python2: usrp utils')
 makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 
-source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('f1e1977cd6c146daf800df681cb22944')
+source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/v$pkgver.tar.gz;
+'boost-1.67.patch')
+md5sums=('fb3c6972af55130f34ec9133caf6c9e4'
+ '45fcc6feb0ea9b4ae09e4ba7b010864f')
 
 prepare() {
-  cd "$srcdir/uhd-release_$_verstring/host"
-  # from commit d9d9d0a8a2e6, remove on 3.10.2.1
-  sed -i 's|socket->native()|socket->native_handle()|' 
examples/network_relay.cpp
-  sed -i 's|socket->native()|socket->native_handle()|' 
lib/transport/{tcp_zero_copy,udp_simple,udp_zero_copy}.cpp
-  sed -i 's|recver->native()|recver->native_handle()|' 
lib/usrp/e300/e300_network.cpp
+  cd "$srcdir/uhd-$pkgver"
+  patch -Np1 -i ../boost-1.67.patch
 }
 
 build() {
-  cd "$srcdir/uhd-release_$_verstring/host"
+  cd "$srcdir/uhd-$pkgver/host"
   # fix for py2
   find -name "*.py" -or -name '*.py.in' | xargs sed -i "s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|"
 
@@ -43,12 +41,12 @@
 }
 
 check() {
-  cd "$srcdir/uhd-release_$_verstring/host/build"
+  cd "$srcdir/uhd-$pkgver/host/build"
   make test
 }
 
 package() {
-  cd "$srcdir/uhd-release_$_verstring/host/build"
+  cd "$srcdir/uhd-$pkgver/host/build"
   make DESTDIR="$pkgdir" install
   install -Dm644 "../utils/uhd-usrp.rules" 
"$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules"
 } 

Added: boost-1.67.patch
===
--- boost-1.67.patch(rev 0)
+++ boost-1.67.patch2018-06-02 21:34:56 UTC (rev 338480)
@@ -0,0 +1,12 @@
+diff -upr uhd-3.11.1.0.orig/host/lib/usrp/e300/e300_fifo_config.cpp 
uhd-3.11.1.0/host/lib/usrp/e300/e300_fifo_config.cpp
+--- uhd-3.11.1.0.orig/host/lib/usrp/e300/e300_fifo_config.cpp  2018-05-16 
22:25:48.0 +0300
 uhd-3.11.1.0/host/lib/usrp/e300/e300_fifo_config.cpp   2018-06-03 
00:16:53.119018076 +0300
+@@ -107,7 +107,7 @@ struct e300_fifo_poll_waiter
+ boost::mutex::scoped_lock l(_mutex);
+ if (_poll_claimed)
+ {
+-_cond.timed_wait(l, 
boost::posix_time::microseconds(timeout*100));
++_cond.timed_wait(l, 
boost::posix_time::microseconds(long(timeout*100)));
+ }
+ else
+ {


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2017-12-31 Thread Kyle Keen via arch-commits
Date: Monday, January 1, 2018 @ 00:48:37
  Author: kkeen
Revision: 277619

boost 1.66.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-31 20:38:41 UTC (rev 277618)
+++ PKGBUILD2018-01-01 00:48:37 UTC (rev 277619)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.10.2.0
 _verstring='003_010_002_000'
-pkgrel=2
+pkgrel=3
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -17,6 +17,14 @@
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
 md5sums=('f1e1977cd6c146daf800df681cb22944')
 
+prepare() {
+  cd "$srcdir/uhd-release_$_verstring/host"
+  # from commit d9d9d0a8a2e6, remove on 3.10.2.1
+  sed -i 's|socket->native()|socket->native_handle()|' 
examples/network_relay.cpp
+  sed -i 's|socket->native()|socket->native_handle()|' 
lib/transport/{tcp_zero_copy,udp_simple,udp_zero_copy}.cpp
+  sed -i 's|recver->native()|recver->native_handle()|' 
lib/usrp/e300/e300_network.cpp
+}
+
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"
   # fix for py2


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2017-09-10 Thread Kyle Keen
Date: Monday, September 11, 2017 @ 00:46:16
  Author: kkeen
Revision: 256859

boost 1.65.1 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 00:14:47 UTC (rev 256858)
+++ PKGBUILD2017-09-11 00:46:16 UTC (rev 256859)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.10.2.0
 _verstring='003_010_002_000'
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2017-09-10 Thread Kyle Keen
Date: Sunday, September 10, 2017 @ 23:57:48
  Author: kkeen
Revision: 256855

upgpkg: libuhd 3.10.2.0-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-10 23:34:08 UTC (rev 256854)
+++ PKGBUILD2017-09-10 23:57:48 UTC (rev 256855)
@@ -3,9 +3,9 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.10.1.1
-_verstring='003_010_001_001'
-pkgrel=2
+pkgver=3.10.2.0
+_verstring='003_010_002_000'
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('e1bd3c4988c0646bf29d807f0d4c040e')
+md5sums=('f1e1977cd6c146daf800df681cb22944')
 
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2017-05-22 Thread Bartłomiej Piotrowski
Date: Monday, May 22, 2017 @ 07:14:33
  Author: bpiotrowski
Revision: 228956

upgpkg: libuhd 3.10.1.1-2

rebuild against boost 1.64

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-22 06:57:28 UTC (rev 228955)
+++ PKGBUILD2017-05-22 07:14:33 UTC (rev 228956)
@@ -5,12 +5,12 @@
 pkgname=libuhd
 pkgver=3.10.1.1
 _verstring='003_010_001_001'
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
 license=('GPL')
-depends=('boost-libs' 'orc' 'libusbx')
+depends=('boost-libs' 'orc' 'libusb')
 optdepends=('python2: usrp utils')
 makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2017-04-04 Thread Kyle Keen
Date: Wednesday, April 5, 2017 @ 02:02:10
  Author: kkeen
Revision: 220511

upgpkg: libuhd 3.10.1.1-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-04 22:12:50 UTC (rev 220510)
+++ PKGBUILD2017-04-05 02:02:10 UTC (rev 220511)
@@ -3,9 +3,9 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.9.5
-_verstring='003_009_005'
-pkgrel=3
+pkgver=3.10.1.1
+_verstring='003_010_001_001'
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('d143e946543dadda670a163242ea0ad0')
+md5sums=('e1bd3c4988c0646bf29d807f0d4c040e')
 
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2017-01-02 Thread Bartłomiej Piotrowski
Date: Monday, January 2, 2017 @ 12:15:24
  Author: bpiotrowski
Revision: 204290

upgpkg: libuhd 3.9.5-3

rebuild against boost 1.63.0

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-02 12:10:11 UTC (rev 204289)
+++ PKGBUILD2017-01-02 12:15:24 UTC (rev 204290)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.9.5
 _verstring='003_009_005'
-pkgrel=2
+pkgrel=3
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2016-10-08 Thread Kyle Keen
Date: Saturday, October 8, 2016 @ 23:30:59
  Author: kkeen
Revision: 191670

upgpkg: libuhd 3.9.5-2 boost rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-08 23:30:02 UTC (rev 191669)
+++ PKGBUILD2016-10-08 23:30:59 UTC (rev 191670)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.9.5
 _verstring='003_009_005'
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2016-09-16 Thread Kyle Keen
Date: Friday, September 16, 2016 @ 10:18:37
  Author: kkeen
Revision: 189594

upgpkg: libuhd 3.9.5-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-09-16 10:10:22 UTC (rev 189593)
+++ PKGBUILD2016-09-16 10:18:37 UTC (rev 189594)
@@ -3,9 +3,9 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.9.4
-_verstring='003_009_004'
-pkgrel=2
+pkgver=3.9.5
+_verstring='003_009_005'
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('0d6451b50afc000d1d13a1f6fb33ba6c')
+md5sums=('d143e946543dadda670a163242ea0ad0')
 
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2016-08-20 Thread Kyle Keen
Date: Saturday, August 20, 2016 @ 18:09:46
  Author: kkeen
Revision: 187199

upgpkg: libuhd 3.9.4-2 boost rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-20 16:17:08 UTC (rev 187198)
+++ PKGBUILD2016-08-20 18:09:46 UTC (rev 187199)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.9.4
 _verstring='003_009_004'
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2016-06-02 Thread Kyle Keen
Date: Friday, June 3, 2016 @ 03:12:38
  Author: kkeen
Revision: 177780

upgpkg: libuhd 3.9.4-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-06-03 00:50:30 UTC (rev 19)
+++ PKGBUILD2016-06-03 01:12:38 UTC (rev 177780)
@@ -3,9 +3,9 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.9.3
-_verstring='003_009_003'
-pkgrel=2
+pkgver=3.9.4
+_verstring='003_009_004'
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('c9c1dbc571422fe6678611381765a41f')
+md5sums=('0d6451b50afc000d1d13a1f6fb33ba6c')
 
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2016-05-12 Thread Bartłomiej Piotrowski
Date: Thursday, May 12, 2016 @ 12:53:46
  Author: bpiotrowski
Revision: 174930

boost 1.60.0-5 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-05-12 10:49:17 UTC (rev 174929)
+++ PKGBUILD2016-05-12 10:53:46 UTC (rev 174930)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.9.3
 _verstring='003_009_003'
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2016-04-25 Thread Kyle Keen
Date: Monday, April 25, 2016 @ 12:25:24
  Author: kkeen
Revision: 171774

upgpkg: libuhd 3.9.3-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-25 10:21:14 UTC (rev 171773)
+++ PKGBUILD2016-04-25 10:25:24 UTC (rev 171774)
@@ -3,8 +3,8 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.9.2
-_verstring='003_009_002'
+pkgver=3.9.3
+_verstring='003_009_003'
 pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('d402bc374938118cdc66e8b74aab2cd0')
+md5sums=('c9c1dbc571422fe6678611381765a41f')
 
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2016-01-13 Thread Kyle Keen
Date: Wednesday, January 13, 2016 @ 18:21:41
  Author: kkeen
Revision: 156311

upgpkg: libuhd 3.9.2-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-13 17:05:05 UTC (rev 156310)
+++ PKGBUILD2016-01-13 17:21:41 UTC (rev 156311)
@@ -3,9 +3,9 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.9.1
-_verstring='003_009_001'
-pkgrel=3
+pkgver=3.9.2
+_verstring='003_009_002'
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('9732fe05d562ea8038f120c29410ce02')
+md5sums=('d402bc374938118cdc66e8b74aab2cd0')
 
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-12-21 Thread Evangelos Foutras
Date: Monday, December 21, 2015 @ 18:47:49
  Author: foutrelis
Revision: 153983

boost 1.60.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-21 17:45:05 UTC (rev 153982)
+++ PKGBUILD2015-12-21 17:47:49 UTC (rev 153983)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.9.1
 _verstring='003_009_001'
-pkgrel=2
+pkgrel=3
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-12-06 Thread Antonio Rojas
Date: Sunday, December 6, 2015 @ 17:51:20
  Author: arojas
Revision: 148909

C++11 ABI rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 16:51:08 UTC (rev 148908)
+++ PKGBUILD2015-12-06 16:51:20 UTC (rev 148909)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.9.1
 _verstring='003_009_001'
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-11-03 Thread Kyle Keen
Date: Tuesday, November 3, 2015 @ 16:11:32
  Author: kkeen
Revision: 145807

upgpkg: libuhd 3.9.1-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-03 15:04:35 UTC (rev 145806)
+++ PKGBUILD2015-11-03 15:11:32 UTC (rev 145807)
@@ -3,19 +3,19 @@
 # Contributor: Dominik Heidler 
 
 pkgname=libuhd
-pkgver=3.8.5
-_verstring='003_008_005'
-pkgrel=3
+pkgver=3.9.1
+_verstring='003_009_001'
+pkgrel=1
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
-url="http://code.ettus.com/redmine/ettus/projects/uhd/wiki;
+url="http://www.ettus.com/kb/category/software-documentation/uhd-manual;
 license=('GPL')
 depends=('boost-libs' 'orc' 'libusbx')
 optdepends=('python2: usrp utils')
-makedepends=('cmake' 'boost' 'python2-cheetah')
+makedepends=('cmake' 'boost' 'python2-cheetah' 'python2-mako')
 
 
source=("libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('d827d63de03c9087d0d011e44bff5dd1')
+md5sums=('9732fe05d562ea8038f120c29410ce02')
 
 build() {
   cd "$srcdir/uhd-release_$_verstring/host"


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-10-15 Thread Evangelos Foutras
Date: Thursday, October 15, 2015 @ 14:52:08
  Author: foutrelis
Revision: 144156

boost 1.59.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-15 12:41:50 UTC (rev 144155)
+++ PKGBUILD2015-10-15 12:52:08 UTC (rev 144156)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.8.5
 _verstring='003_008_005'
-pkgrel=2
+pkgrel=3
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://code.ettus.com/redmine/ettus/projects/uhd/wiki;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-09-10 Thread Evangelos Foutras
Date: Thursday, September 10, 2015 @ 08:22:55
  Author: foutrelis
Revision: 139775

ncurses 6.0 rebuild.

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-10 06:17:21 UTC (rev 139774)
+++ PKGBUILD2015-09-10 06:22:55 UTC (rev 139775)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.8.5
 _verstring='003_008_005'
-pkgrel=1
+pkgrel=2
 pkgdesc="Universal Software Radio Peripheral (USRP) userspace driver"
 arch=('x86_64' 'i686')
 url="http://code.ettus.com/redmine/ettus/projects/uhd/wiki;


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-08-07 Thread Kyle Keen
Date: Saturday, August 8, 2015 @ 03:54:50
  Author: kkeen
Revision: 138077

upgpkg: libuhd 3.8.5-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-08-08 01:44:42 UTC (rev 138076)
+++ PKGBUILD2015-08-08 01:54:50 UTC (rev 138077)
@@ -3,8 +3,8 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.8.4
-_verstring='003_008_004'
+pkgver=3.8.5
+_verstring='003_008_005'
 pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('95da1745c2286870b8b55856f5f43380')
+md5sums=('d827d63de03c9087d0d011e44bff5dd1')
 
 build() {
   cd $srcdir/uhd-release_$_verstring/host


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-05-30 Thread Kyle Keen
Date: Saturday, May 30, 2015 @ 15:08:36
  Author: kkeen
Revision: 134354

upgpkg: libuhd 3.8.4-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-05-30 12:37:05 UTC (rev 134353)
+++ PKGBUILD2015-05-30 13:08:36 UTC (rev 134354)
@@ -3,8 +3,8 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.8.3
-_verstring='003_008_003-1'  # hopefully -X is temporary
+pkgver=3.8.4
+_verstring='003_008_004'
 pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('7780250fec465db5081a387f1216c128')
+md5sums=('95da1745c2286870b8b55856f5f43380')
 
 build() {
   cd $srcdir/uhd-release_$_verstring/host
@@ -22,9 +22,6 @@
   # fix for py2
   find -name *.py -or -name '*.py.in' | xargs sed -i s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|
 
-  # fix for boost 1.58, already in git
-  sed -i 's|return NULL;|return uhd::msg_task::msg_type_t(0, 
uhd::msg_task::msg_payload_t());|' lib/usrp/b200/b200_io_impl.cpp
-  
   mkdir -p build
   cd build
   cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-04-22 Thread Kyle Keen
Date: Wednesday, April 22, 2015 @ 10:30:50
  Author: kkeen
Revision: 131900

upgpkg: libuhd 3.8.3-1  and boost 1.58 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |   12 
 1 file changed, 8 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 08:29:30 UTC (rev 131899)
+++ PKGBUILD2015-04-22 08:30:50 UTC (rev 131900)
@@ -3,8 +3,8 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.8.1
-_verstring=003_008_001
+pkgver=3.8.3
+_verstring='003_008_003-1'  # hopefully -X is temporary
 pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
@@ -15,12 +15,15 @@
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('efdea7f94472aa1f44ebb3e00fe55360')
+md5sums=('7780250fec465db5081a387f1216c128')
 
 build() {
   cd $srcdir/uhd-release_$_verstring/host
   # fix for py2
   find -name *.py -or -name '*.py.in' | xargs sed -i s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|
+
+  # fix for boost 1.58, already in git
+  sed -i 's|return NULL;|return uhd::msg_task::msg_type_t(0, 
uhd::msg_task::msg_payload_t());|' lib/usrp/b200/b200_io_impl.cpp
   
   mkdir -p build
   cd build
@@ -29,7 +32,8 @@
-DENABLE_EXAMPLES=OFF \
-DENABLE_UTILS=ON \
-DENABLE_TESTS=OFF \
-   -DENABLE_E100=ON
+   -DENABLE_E100=ON \
+   -DENABLE_E300=ON
   make
 }
 


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2015-01-29 Thread Kyle Keen
Date: Thursday, January 29, 2015 @ 22:39:09
  Author: kkeen
Revision: 126761

upgpkg: libuhd 3.8.1-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-01-29 21:10:00 UTC (rev 126760)
+++ PKGBUILD2015-01-29 21:39:09 UTC (rev 126761)
@@ -3,9 +3,9 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.8.0
-_verstring=003_008_000
-pkgrel=2
+pkgver=3.8.1
+_verstring=003_008_001
+pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('3e4b3bccc42256e5d4a039286a4fe252')
+md5sums=('efdea7f94472aa1f44ebb3e00fe55360')
 
 build() {
   cd $srcdir/uhd-release_$_verstring/host


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-11-04 Thread Kyle Keen
Date: Tuesday, November 4, 2014 @ 17:06:40
  Author: kkeen
Revision: 121836

upgpkg: libuhd 3.8.0-2 boost rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-04 15:46:52 UTC (rev 121835)
+++ PKGBUILD2014-11-04 16:06:40 UTC (rev 121836)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.8.0
 _verstring=003_008_000
-pkgrel=1
+pkgrel=2
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;
@@ -17,9 +17,6 @@
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
 md5sums=('3e4b3bccc42256e5d4a039286a4fe252')
 
-# consider making a firmware package
-# http://files.ettus.com/binaries/master_images/archive/
-
 build() {
   cd $srcdir/uhd-release_$_verstring/host
   # fix for py2


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-10-29 Thread Kyle Keen
Date: Wednesday, October 29, 2014 @ 13:16:21
  Author: kkeen
Revision: 121549

upgpkg: libuhd 3.8.0-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-29 11:49:31 UTC (rev 121548)
+++ PKGBUILD2014-10-29 12:16:21 UTC (rev 121549)
@@ -3,8 +3,8 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.7.3
-_verstring=003_007_003
+pkgver=3.8.0
+_verstring=003_008_000
 pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('53e6c0d9afaaf84b56825e5f60f6c4ad')
+md5sums=('3e4b3bccc42256e5d4a039286a4fe252')
 
 # consider making a firmware package
 # http://files.ettus.com/binaries/master_images/archive/


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-10-08 Thread Kyle Keen
Date: Thursday, October 9, 2014 @ 06:51:46
  Author: kkeen
Revision: 120424

upgpkg: libuhd 3.7.3-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-10-09 04:44:30 UTC (rev 120423)
+++ PKGBUILD2014-10-09 04:51:46 UTC (rev 120424)
@@ -3,9 +3,9 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.7.2
-_verstring=003_007_002
-pkgrel=3
+pkgver=3.7.3
+_verstring=003_007_003
+pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('515387ad594a1ca1e4447e97d4f78aa7')
+md5sums=('53e6c0d9afaaf84b56825e5f60f6c4ad')
 
 # consider making a firmware package
 # http://files.ettus.com/binaries/master_images/archive/


[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-09-04 Thread Kyle Keen
Date: Thursday, September 4, 2014 @ 23:50:56
  Author: kkeen
Revision: 118287

upgpkg: libuhd 3.7.2-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 21:07:27 UTC (rev 118286)
+++ PKGBUILD2014-09-04 21:50:56 UTC (rev 118287)
@@ -3,9 +3,9 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.7.1
-_verstring=003_007_001
-pkgrel=2
+pkgver=3.7.2
+_verstring=003_007_002
+pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('0f53757cc5452ceb53baab88471a6043')
+md5sums=('515387ad594a1ca1e4447e97d4f78aa7')
 
 # consider making a firmware package
 # http://files.ettus.com/binaries/master_images/archive/



[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-09-04 Thread Kyle Keen
Date: Friday, September 5, 2014 @ 01:31:26
  Author: kkeen
Revision: 118310

upgpkg: libuhd 3.7.2-2 boost rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 23:22:23 UTC (rev 118309)
+++ PKGBUILD2014-09-04 23:31:26 UTC (rev 118310)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.7.2
 _verstring=003_007_002
-pkgrel=1
+pkgrel=2
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;



[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-09-04 Thread Kyle Keen
Date: Friday, September 5, 2014 @ 02:07:25
  Author: kkeen
Revision: 118311

upgpkg: libuhd 3.7.2-3 boost rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-04 23:31:26 UTC (rev 118310)
+++ PKGBUILD2014-09-05 00:07:25 UTC (rev 118311)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.7.2
 _verstring=003_007_002
-pkgrel=2
+pkgrel=3
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;



[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-08-12 Thread Kyle Keen
Date: Tuesday, August 12, 2014 @ 12:00:41
  Author: kkeen
Revision: 117266

upgpkg: libuhd 3.7.1-2 boost rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-12 10:00:38 UTC (rev 117265)
+++ PKGBUILD2014-08-12 10:00:41 UTC (rev 117266)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.7.1
 _verstring=003_007_001
-pkgrel=1
+pkgrel=2
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;



[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-07-15 Thread Kyle Keen
Date: Wednesday, July 16, 2014 @ 05:55:41
  Author: kkeen
Revision: 115757

upgpkg: libuhd 3.7.1-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-16 03:28:37 UTC (rev 115756)
+++ PKGBUILD2014-07-16 03:55:41 UTC (rev 115757)
@@ -3,8 +3,8 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.6.2
-_verstring=003_006_002
+pkgver=3.7.1
+_verstring=003_007_001
 pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
@@ -15,7 +15,7 @@
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
 
source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
-md5sums=('50a25b95dc08dd3946988c5da98814a9')
+md5sums=('0f53757cc5452ceb53baab88471a6043')
 
 build() {
   cd $srcdir/uhd-release_$_verstring/host
@@ -30,8 +30,6 @@
-DENABLE_UTILS=ON \
-DENABLE_TESTS=OFF \
-DENABLE_E100=ON
-  # e100 is disabled by default for now, check that on future releases
-
   make
 }
 
@@ -45,3 +43,4 @@
   make DESTDIR=$pkgdir install
   install -Dm644 ../utils/uhd-usrp.rules 
$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules
 } 
+



[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2014-02-10 Thread Kyle Keen
Date: Monday, February 10, 2014 @ 17:14:55
  Author: kkeen
Revision: 105584

upgpkg: libuhd 3.6.2-1

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |   17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-10 14:29:16 UTC (rev 105583)
+++ PKGBUILD2014-02-10 16:14:55 UTC (rev 105584)
@@ -3,23 +3,25 @@
 # Contributor: Dominik Heidler dheid...@gmail.com
 
 pkgname=libuhd
-pkgver=3.5.4
-_verstring=003_005_004
-pkgrel=4
+pkgver=3.6.2
+_verstring=003_006_002
+pkgrel=1
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;
 license=('GPL')
 depends=('boost-libs' 'orc' 'libusbx')
+optdepends=('python2: usrp utils')
 makedepends=('cmake' 'boost' 'python2-cheetah')
 
-source=(libuhd-$pkgver.tar.gz::https://codeload.github.com/EttusResearch/uhd/tar.gz/release_$_verstring;)
-md5sums=('e90c95483a52b75cacc85f4fb0ef63ed')
+source=(libuhd-$pkgver.tar.gz::https://github.com/EttusResearch/uhd/archive/release_${_verstring}.tar.gz;)
+md5sums=('50a25b95dc08dd3946988c5da98814a9')
 
 build() {
   cd $srcdir/uhd-release_$_verstring/host
   # fix for py2
-  find -name *.py | xargs sed -i s|#!/usr/bin/env python$|#!/usr/bin/env 
python2|
+  find -name *.py -or -name '*.py.in' | xargs sed -i s|#!/usr/bin/env 
python$|#!/usr/bin/env python2|
+  
   mkdir -p build
   cd build
   cmake .. -DCMAKE_INSTALL_PREFIX=/usr/ \
@@ -29,6 +31,7 @@
-DENABLE_TESTS=OFF \
-DENABLE_E100=ON
   # e100 is disabled by default for now, check that on future releases
+
   make
 }
 
@@ -40,5 +43,5 @@
 package() {
   cd $srcdir/uhd-release_$_verstring/host/build
   make DESTDIR=$pkgdir install
-  install -Dm644 $pkgdir/usr/share/uhd/utils/uhd-usrp.rules 
$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules
+  install -Dm644 ../utils/uhd-usrp.rules 
$pkgdir/usr/lib/udev/rules.d/10-uhd-usrp.rules
 } 



[arch-commits] Commit in libuhd/trunk (PKGBUILD)

2013-11-29 Thread Jelle van der Waa
Date: Friday, November 29, 2013 @ 15:09:39
  Author: jelle
Revision: 101622

upgpkg: libuhd 3.5.4-4

boost 1.55.0 rebuild

Modified:
  libuhd/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-29 12:58:54 UTC (rev 101621)
+++ PKGBUILD2013-11-29 14:09:39 UTC (rev 101622)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.5.4
 _verstring=003_005_004
-pkgrel=3
+pkgrel=4
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;



[arch-commits] Commit in libuhd/trunk (PKGBUILD libuhd.install)

2013-11-10 Thread Kyle Keen
Date: Sunday, November 10, 2013 @ 16:31:32
  Author: kkeen
Revision: 100770

upgpkg: libuhd 3.5.4-3

Modified:
  libuhd/trunk/PKGBUILD
Deleted:
  libuhd/trunk/libuhd.install

+
 PKGBUILD   |3 +--
 libuhd.install |7 ---
 2 files changed, 1 insertion(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-10 13:31:47 UTC (rev 100769)
+++ PKGBUILD2013-11-10 15:31:32 UTC (rev 100770)
@@ -5,7 +5,7 @@
 pkgname=libuhd
 pkgver=3.5.4
 _verstring=003_005_004
-pkgrel=2
+pkgrel=3
 pkgdesc=Universal Software Radio Peripheral (USRP) userspace driver
 arch=('x86_64' 'i686')
 url=http://code.ettus.com/redmine/ettus/projects/uhd/wiki;
@@ -12,7 +12,6 @@
 license=('GPL')
 depends=('boost-libs' 'orc' 'libusbx')
 makedepends=('cmake' 'boost' 'python2-cheetah')
-install='libuhd.install'
 
 
source=(libuhd-$pkgver.tar.gz::https://codeload.github.com/EttusResearch/uhd/tar.gz/release_$_verstring;)
 md5sums=('e90c95483a52b75cacc85f4fb0ef63ed')

Deleted: libuhd.install
===
--- libuhd.install  2013-11-10 13:31:47 UTC (rev 100769)
+++ libuhd.install  2013-11-10 15:31:32 UTC (rev 100770)
@@ -1,7 +0,0 @@
-post_install() {
-   ldconfig
-}
-
-post_upgrade() {
-   ldconfig
-}