All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables
@ 2023-02-22 16:05 Fabrice Fontaine
  2023-02-22 16:05 ` [Buildroot] [PATCH 2/5] package/gnuradio: disable examples Fabrice Fontaine
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Fabrice Fontaine @ 2023-02-22 16:05 UTC (permalink / raw)
  To: buildroot; +Cc: Gwenhael Goavec-Merou, Fabrice Fontaine

Volk submodule has been removed since version 3.9.0.0 and
https://github.com/gnuradio/gnuradio/commit/80c04479da962d048d41165081b026aafdaa0316

orc dependency can also be dropped as it was only used by volk submodule

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gnuradio/gnuradio.mk | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/package/gnuradio/gnuradio.mk b/package/gnuradio/gnuradio.mk
index cc41f1e12b..c2fcba9586 100644
--- a/package/gnuradio/gnuradio.mk
+++ b/package/gnuradio/gnuradio.mk
@@ -22,9 +22,7 @@ GNURADIO_DEPENDENCIES = \
 GNURADIO_CONF_OPTS = \
 	-DPYTHON_EXECUTABLE=$(HOST_DIR)/bin/python3 \
 	-DENABLE_DEFAULT=OFF \
-	-DENABLE_VOLK=ON \
 	-DENABLE_GNURADIO_RUNTIME=ON \
-	-DENABLE_INTERNAL_VOLK=OFF \
 	-DENABLE_TESTING=OFF \
 	-DXMLTO_EXECUTABLE=NOTFOUND
 
@@ -36,13 +34,6 @@ ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
 GNURADIO_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
 endif
 
-ifeq ($(BR2_PACKAGE_ORC),y)
-GNURADIO_DEPENDENCIES += orc
-GNURADIO_CONF_OPTS += -DENABLE_ORC=ON
-else
-GNURADIO_CONF_OPTS += -DENABLE_ORC=OFF
-endif
-
 ifeq ($(BR2_PACKAGE_GNURADIO_ANALOG),y)
 GNURADIO_CONF_OPTS += -DENABLE_GR_ANALOG=ON
 else
-- 
2.39.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 2/5] package/gnuradio: disable examples
  2023-02-22 16:05 [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Fabrice Fontaine
@ 2023-02-22 16:05 ` Fabrice Fontaine
  2023-02-22 16:19   ` Gwenhael Goavec-Merou
  2023-02-22 16:05 ` [Buildroot] [PATCH 3/5] package/gnuradio: add libsndfile optional dependency Fabrice Fontaine
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Fabrice Fontaine @ 2023-02-22 16:05 UTC (permalink / raw)
  To: buildroot; +Cc: Gwenhael Goavec-Merou, Fabrice Fontaine

Examples can be disabled since version 3.9.0.0 and
https://github.com/gnuradio/gnuradio/commit/530262c6df3fb9b87a80133dbde5650dbe948c4c

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gnuradio/gnuradio.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/gnuradio/gnuradio.mk b/package/gnuradio/gnuradio.mk
index c2fcba9586..c2e5ec5cad 100644
--- a/package/gnuradio/gnuradio.mk
+++ b/package/gnuradio/gnuradio.mk
@@ -22,6 +22,7 @@ GNURADIO_DEPENDENCIES = \
 GNURADIO_CONF_OPTS = \
 	-DPYTHON_EXECUTABLE=$(HOST_DIR)/bin/python3 \
 	-DENABLE_DEFAULT=OFF \
+	-DENABLE_EXAMPLES=OFF \
 	-DENABLE_GNURADIO_RUNTIME=ON \
 	-DENABLE_TESTING=OFF \
 	-DXMLTO_EXECUTABLE=NOTFOUND
-- 
2.39.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 3/5] package/gnuradio: add libsndfile optional dependency
  2023-02-22 16:05 [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Fabrice Fontaine
  2023-02-22 16:05 ` [Buildroot] [PATCH 2/5] package/gnuradio: disable examples Fabrice Fontaine
@ 2023-02-22 16:05 ` Fabrice Fontaine
  2023-02-22 16:31   ` Gwenhael Goavec-Merou
  2023-02-22 16:05 ` [Buildroot] [PATCH 4/5] package/gnuradio: add gr-network block support Fabrice Fontaine
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Fabrice Fontaine @ 2023-02-22 16:05 UTC (permalink / raw)
  To: buildroot; +Cc: Gwenhael Goavec-Merou, Fabrice Fontaine

libsndfile is an optional dependency since version 3.9.0.0 and
https://github.com/gnuradio/gnuradio/commit/18f64ba685cfc2533e2d7726aa43c524b007d97b

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gnuradio/gnuradio.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/gnuradio/gnuradio.mk b/package/gnuradio/gnuradio.mk
index c2e5ec5cad..59fb23d89d 100644
--- a/package/gnuradio/gnuradio.mk
+++ b/package/gnuradio/gnuradio.mk
@@ -55,6 +55,9 @@ endif
 
 ifeq ($(BR2_PACKAGE_GNURADIO_BLOCKS),y)
 GNURADIO_CONF_OPTS += -DENABLE_GR_BLOCKS=ON
+ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
+GNURADIO_DEPENDENCIES += libsndfile
+endif
 else
 GNURADIO_CONF_OPTS += -DENABLE_GR_BLOCKS=OFF
 endif
-- 
2.39.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 4/5] package/gnuradio: add gr-network block support
  2023-02-22 16:05 [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Fabrice Fontaine
  2023-02-22 16:05 ` [Buildroot] [PATCH 2/5] package/gnuradio: disable examples Fabrice Fontaine
  2023-02-22 16:05 ` [Buildroot] [PATCH 3/5] package/gnuradio: add libsndfile optional dependency Fabrice Fontaine
@ 2023-02-22 16:05 ` Fabrice Fontaine
  2023-02-22 16:26   ` Gwenhael Goavec-Merou
  2023-02-22 16:05 ` [Buildroot] [PATCH 5/5] package/gqrx: bump to version 2.15.9 Fabrice Fontaine
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Fabrice Fontaine @ 2023-02-22 16:05 UTC (permalink / raw)
  To: buildroot; +Cc: Gwenhael Goavec-Merou, Fabrice Fontaine

grnet networking block support is available since version version
3.9.0.0 and
https://github.com/gnuradio/gnuradio/commit/cc37c3e8cd5eabcb5c9d919e5fffc5d938690140

gr-network is a mandatory dependency of latest gqrx

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gnuradio/Config.in   | 6 ++++++
 package/gnuradio/gnuradio.mk | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/package/gnuradio/Config.in b/package/gnuradio/Config.in
index 1824589263..51237e62b9 100644
--- a/package/gnuradio/Config.in
+++ b/package/gnuradio/Config.in
@@ -134,6 +134,12 @@ config BR2_PACKAGE_GNURADIO_FILTER
 	help
 	  Filter signal processing blocks
 
+config BR2_PACKAGE_GNURADIO_NETWORK
+	bool "gr-network support"
+	select BR2_PACKAGE_GNURADIO_BLOCKS
+	help
+	  TCP and UDP source/sink blocks
+
 config BR2_PACKAGE_GNURADIO_QTGUI
 	bool "gr-qtgui"
 	depends on BR2_PACKAGE_GNURADIO_PYTHON
diff --git a/package/gnuradio/gnuradio.mk b/package/gnuradio/gnuradio.mk
index 59fb23d89d..d9218b533d 100644
--- a/package/gnuradio/gnuradio.mk
+++ b/package/gnuradio/gnuradio.mk
@@ -106,6 +106,12 @@ else
 GNURADIO_CONF_OPTS += -DENABLE_GR_FILTER=OFF
 endif
 
+ifeq ($(BR2_PACKAGE_GNURADIO_NETWORK),y)
+GNURADIO_CONF_OPTS += -DENABLE_GR_NETWORK=ON
+else
+GNURADIO_CONF_OPTS += -DENABLE_GR_NETWORK=OFF
+endif
+
 ifeq ($(BR2_PACKAGE_GNURADIO_PYTHON),y)
 GNURADIO_DEPENDENCIES += python3 python-pybind \
 	host-python-numpy host-python-packaging
-- 
2.39.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Buildroot] [PATCH 5/5] package/gqrx: bump to version 2.15.9
  2023-02-22 16:05 [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Fabrice Fontaine
                   ` (2 preceding siblings ...)
  2023-02-22 16:05 ` [Buildroot] [PATCH 4/5] package/gnuradio: add gr-network block support Fabrice Fontaine
@ 2023-02-22 16:05 ` Fabrice Fontaine
  2023-02-22 16:14 ` [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Gwenhael Goavec-Merou
  2023-02-22 20:58 ` Thomas Petazzoni via buildroot
  5 siblings, 0 replies; 10+ messages in thread
From: Fabrice Fontaine @ 2023-02-22 16:05 UTC (permalink / raw)
  To: buildroot; +Cc: Gwenhael Goavec-Merou, Fabrice Fontaine

This bump will fix the following build failure raised since bump pf
gnuradio to version 3.10.4.0 in commit
e37c110bead8b7b35cd97915673fa785ccb39f2d:

In file included from /home/buildroot/autobuild/instance-2/output-1/build/gqrx-2.14.4/src/applications/gqrx/receiver.cpp:32:
/home/buildroot/autobuild/instance-2/output-1/build/gqrx-2.14.4/src/applications/gqrx/receiver.h:34:10: fatal error: gnuradio/blocks/wavfile_sink.h: No such file or directory
   34 | #include <gnuradio/blocks/wavfile_sink.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

https://github.com/gqrx-sdr/gqrx/blob/v2.15.9/resources/news.txt

Fixes:
 - http://autobuild.buildroot.org/results/42b5ab2e555063273ea55fd1c09a9be6d8b620e2

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/gqrx/Config.in | 2 ++
 package/gqrx/gqrx.hash | 2 +-
 package/gqrx/gqrx.mk   | 4 ++--
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/package/gqrx/Config.in b/package/gqrx/Config.in
index 442b28e546..97f0b7de07 100644
--- a/package/gqrx/Config.in
+++ b/package/gqrx/Config.in
@@ -34,7 +34,9 @@ config BR2_PACKAGE_GQRX
 	select BR2_PACKAGE_GNURADIO_DIGITAL
 	select BR2_PACKAGE_GNURADIO_FFT
 	select BR2_PACKAGE_GNURADIO_FILTER
+	select BR2_PACKAGE_GNURADIO_NETWORK
 	select BR2_PACKAGE_GR_OSMOSDR
+	select BR2_PACKAGE_LIBSNDFILE
 	select BR2_PACKAGE_QT5BASE_GUI
 	select BR2_PACKAGE_QT5BASE_WIDGETS
 	select BR2_PACKAGE_QT5SVG
diff --git a/package/gqrx/gqrx.hash b/package/gqrx/gqrx.hash
index 1991dfea82..567ff947f9 100644
--- a/package/gqrx/gqrx.hash
+++ b/package/gqrx/gqrx.hash
@@ -1,4 +1,4 @@
 # Locally calculated:
-sha256  aec35c77ebde9c71a5f973c509eec3d6aa2f18a6e052b180fcd9029d88273e5b  gqrx-2.14.4.tar.gz
+sha256  4a826b468b2fb38a59cbe1f1b566e62c3114509186a7a25ba27dc92833f3eb44  gqrx-2.15.9.tar.gz
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  COPYING
 sha256  7cc22ce5ee61df62e427ec43b8130de149edee3cafb5af4f18d59b6dc3958faf  LICENSE-CTK
diff --git a/package/gqrx/gqrx.mk b/package/gqrx/gqrx.mk
index 4d464298ca..d2518213b8 100644
--- a/package/gqrx/gqrx.mk
+++ b/package/gqrx/gqrx.mk
@@ -4,11 +4,11 @@
 #
 ################################################################################
 
-GQRX_VERSION = 2.14.4
+GQRX_VERSION = 2.15.9
 GQRX_SITE = $(call github,csete,gqrx,v$(GQRX_VERSION))
 GQRX_LICENSE = GPL-3.0+, Apache-2.0
 GQRX_LICENSE_FILES = COPYING LICENSE-CTK
-GQRX_DEPENDENCIES = boost gnuradio gr-osmosdr qt5base qt5svg
+GQRX_DEPENDENCIES = boost gnuradio gr-osmosdr libsndfile qt5base qt5svg
 
 GQRX_CONF_OPTS = -DLINUX_AUDIO_BACKEND=Gr-audio
 
-- 
2.39.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables
  2023-02-22 16:05 [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Fabrice Fontaine
                   ` (3 preceding siblings ...)
  2023-02-22 16:05 ` [Buildroot] [PATCH 5/5] package/gqrx: bump to version 2.15.9 Fabrice Fontaine
@ 2023-02-22 16:14 ` Gwenhael Goavec-Merou
  2023-02-22 20:58 ` Thomas Petazzoni via buildroot
  5 siblings, 0 replies; 10+ messages in thread
From: Gwenhael Goavec-Merou @ 2023-02-22 16:14 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Wed, 22 Feb 2023 17:05:10 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Volk submodule has been removed since version 3.9.0.0 and
> https://github.com/gnuradio/gnuradio/commit/80c04479da962d048d41165081b026aafdaa0316
> 
> orc dependency can also be dropped as it was only used by volk submodule
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/gnuradio/gnuradio.mk | 9 ---------
>  1 file changed, 9 deletions(-)
> 
> diff --git a/package/gnuradio/gnuradio.mk b/package/gnuradio/gnuradio.mk
> index cc41f1e12b..c2fcba9586 100644
> --- a/package/gnuradio/gnuradio.mk
> +++ b/package/gnuradio/gnuradio.mk
> @@ -22,9 +22,7 @@ GNURADIO_DEPENDENCIES = \
>  GNURADIO_CONF_OPTS = \
>  	-DPYTHON_EXECUTABLE=$(HOST_DIR)/bin/python3 \
>  	-DENABLE_DEFAULT=OFF \
> -	-DENABLE_VOLK=ON \
>  	-DENABLE_GNURADIO_RUNTIME=ON \
> -	-DENABLE_INTERNAL_VOLK=OFF \
>  	-DENABLE_TESTING=OFF \
>  	-DXMLTO_EXECUTABLE=NOTFOUND
>  
> @@ -36,13 +34,6 @@ ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
>  GNURADIO_CONF_OPTS += -DCMAKE_EXE_LINKER_FLAGS=-latomic
>  endif
>  
> -ifeq ($(BR2_PACKAGE_ORC),y)
> -GNURADIO_DEPENDENCIES += orc
> -GNURADIO_CONF_OPTS += -DENABLE_ORC=ON
> -else
> -GNURADIO_CONF_OPTS += -DENABLE_ORC=OFF
> -endif
> -
>  ifeq ($(BR2_PACKAGE_GNURADIO_ANALOG),y)
>  GNURADIO_CONF_OPTS += -DENABLE_GR_ANALOG=ON
>  else
> -- 
> 2.39.0
> 
Acked-by: Gwenhael Goavec-merou <gwenhael.goavec-merou@trabucayre.com>

Regargs,
Gwen
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH 2/5] package/gnuradio: disable examples
  2023-02-22 16:05 ` [Buildroot] [PATCH 2/5] package/gnuradio: disable examples Fabrice Fontaine
@ 2023-02-22 16:19   ` Gwenhael Goavec-Merou
  0 siblings, 0 replies; 10+ messages in thread
From: Gwenhael Goavec-Merou @ 2023-02-22 16:19 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Wed, 22 Feb 2023 17:05:11 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Examples can be disabled since version 3.9.0.0 and
> https://github.com/gnuradio/gnuradio/commit/530262c6df3fb9b87a80133dbde5650dbe948c4c
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/gnuradio/gnuradio.mk | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/gnuradio/gnuradio.mk b/package/gnuradio/gnuradio.mk
> index c2fcba9586..c2e5ec5cad 100644
> --- a/package/gnuradio/gnuradio.mk
> +++ b/package/gnuradio/gnuradio.mk
> @@ -22,6 +22,7 @@ GNURADIO_DEPENDENCIES = \
>  GNURADIO_CONF_OPTS = \
>  	-DPYTHON_EXECUTABLE=$(HOST_DIR)/bin/python3 \
>  	-DENABLE_DEFAULT=OFF \
> +	-DENABLE_EXAMPLES=OFF \
>  	-DENABLE_GNURADIO_RUNTIME=ON \
>  	-DENABLE_TESTING=OFF \
>  	-DXMLTO_EXECUTABLE=NOTFOUND
> -- 
> 2.39.0
> 
Acked-by: Gwenhael Goavec-merou <gwenhael.goavec-merou@trabucayre.com>

Regargs,
Gwen
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH 4/5] package/gnuradio: add gr-network block support
  2023-02-22 16:05 ` [Buildroot] [PATCH 4/5] package/gnuradio: add gr-network block support Fabrice Fontaine
@ 2023-02-22 16:26   ` Gwenhael Goavec-Merou
  0 siblings, 0 replies; 10+ messages in thread
From: Gwenhael Goavec-Merou @ 2023-02-22 16:26 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Wed, 22 Feb 2023 17:05:13 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> grnet networking block support is available since version version
> 3.9.0.0 and
> https://github.com/gnuradio/gnuradio/commit/cc37c3e8cd5eabcb5c9d919e5fffc5d938690140
> 
> gr-network is a mandatory dependency of latest gqrx
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/gnuradio/Config.in   | 6 ++++++
>  package/gnuradio/gnuradio.mk | 6 ++++++
>  2 files changed, 12 insertions(+)
> 
> diff --git a/package/gnuradio/Config.in b/package/gnuradio/Config.in
> index 1824589263..51237e62b9 100644
> --- a/package/gnuradio/Config.in
> +++ b/package/gnuradio/Config.in
> @@ -134,6 +134,12 @@ config BR2_PACKAGE_GNURADIO_FILTER
>  	help
>  	  Filter signal processing blocks
>  
> +config BR2_PACKAGE_GNURADIO_NETWORK
> +	bool "gr-network support"
> +	select BR2_PACKAGE_GNURADIO_BLOCKS
> +	help
> +	  TCP and UDP source/sink blocks
> +
>  config BR2_PACKAGE_GNURADIO_QTGUI
>  	bool "gr-qtgui"
>  	depends on BR2_PACKAGE_GNURADIO_PYTHON
> diff --git a/package/gnuradio/gnuradio.mk b/package/gnuradio/gnuradio.mk
> index 59fb23d89d..d9218b533d 100644
> --- a/package/gnuradio/gnuradio.mk
> +++ b/package/gnuradio/gnuradio.mk
> @@ -106,6 +106,12 @@ else
>  GNURADIO_CONF_OPTS += -DENABLE_GR_FILTER=OFF
>  endif
>  
> +ifeq ($(BR2_PACKAGE_GNURADIO_NETWORK),y)
> +GNURADIO_CONF_OPTS += -DENABLE_GR_NETWORK=ON
> +else
> +GNURADIO_CONF_OPTS += -DENABLE_GR_NETWORK=OFF
> +endif
> +
>  ifeq ($(BR2_PACKAGE_GNURADIO_PYTHON),y)
>  GNURADIO_DEPENDENCIES += python3 python-pybind \
>  	host-python-numpy host-python-packaging
> -- 
> 2.39.0
> 
Acked-by: Gwenhael Goavec-merou <gwenhael.goavec-merou@trabucayre.com>

Regargs,
Gwen
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH 3/5] package/gnuradio: add libsndfile optional dependency
  2023-02-22 16:05 ` [Buildroot] [PATCH 3/5] package/gnuradio: add libsndfile optional dependency Fabrice Fontaine
@ 2023-02-22 16:31   ` Gwenhael Goavec-Merou
  0 siblings, 0 replies; 10+ messages in thread
From: Gwenhael Goavec-Merou @ 2023-02-22 16:31 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Wed, 22 Feb 2023 17:05:12 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> libsndfile is an optional dependency since version 3.9.0.0 and
> https://github.com/gnuradio/gnuradio/commit/18f64ba685cfc2533e2d7726aa43c524b007d97b
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/gnuradio/gnuradio.mk | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/package/gnuradio/gnuradio.mk b/package/gnuradio/gnuradio.mk
> index c2e5ec5cad..59fb23d89d 100644
> --- a/package/gnuradio/gnuradio.mk
> +++ b/package/gnuradio/gnuradio.mk
> @@ -55,6 +55,9 @@ endif
>  
>  ifeq ($(BR2_PACKAGE_GNURADIO_BLOCKS),y)
>  GNURADIO_CONF_OPTS += -DENABLE_GR_BLOCKS=ON
> +ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
> +GNURADIO_DEPENDENCIES += libsndfile
> +endif
>  else
>  GNURADIO_CONF_OPTS += -DENABLE_GR_BLOCKS=OFF
>  endif
> -- 
> 2.39.0
> 
Acked-by: Gwenhael Goavec-merou <gwenhael.goavec-merou@trabucayre.com>

Regargs,
Gwen
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables
  2023-02-22 16:05 [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Fabrice Fontaine
                   ` (4 preceding siblings ...)
  2023-02-22 16:14 ` [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Gwenhael Goavec-Merou
@ 2023-02-22 20:58 ` Thomas Petazzoni via buildroot
  5 siblings, 0 replies; 10+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-02-22 20:58 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Gwenhael Goavec-Merou, buildroot

On Wed, 22 Feb 2023 17:05:10 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Volk submodule has been removed since version 3.9.0.0 and
> https://github.com/gnuradio/gnuradio/commit/80c04479da962d048d41165081b026aafdaa0316
> 
> orc dependency can also be dropped as it was only used by volk submodule
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/gnuradio/gnuradio.mk | 9 ---------
>  1 file changed, 9 deletions(-)

Series applied to master. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2023-02-22 20:59 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-22 16:05 [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Fabrice Fontaine
2023-02-22 16:05 ` [Buildroot] [PATCH 2/5] package/gnuradio: disable examples Fabrice Fontaine
2023-02-22 16:19   ` Gwenhael Goavec-Merou
2023-02-22 16:05 ` [Buildroot] [PATCH 3/5] package/gnuradio: add libsndfile optional dependency Fabrice Fontaine
2023-02-22 16:31   ` Gwenhael Goavec-Merou
2023-02-22 16:05 ` [Buildroot] [PATCH 4/5] package/gnuradio: add gr-network block support Fabrice Fontaine
2023-02-22 16:26   ` Gwenhael Goavec-Merou
2023-02-22 16:05 ` [Buildroot] [PATCH 5/5] package/gqrx: bump to version 2.15.9 Fabrice Fontaine
2023-02-22 16:14 ` [Buildroot] [PATCH 1/5] package/gnuradio: drop unrecognized volk variables Gwenhael Goavec-Merou
2023-02-22 20:58 ` Thomas Petazzoni via buildroot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.