Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/gqrx: Bump version to 2.14.4
@ 2021-07-01  5:01 Gwenhael Goavec-Merou
  2021-07-01  5:01 ` [Buildroot] [PATCH 2/2] package/gqrx: fix comment dependency Gwenhael Goavec-Merou
  2021-07-18 21:22 ` [Buildroot] [PATCH 1/2] package/gqrx: Bump version to 2.14.4 Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Gwenhael Goavec-Merou @ 2021-07-01  5:01 UTC (permalink / raw)
  To: buildroot

From: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>

Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
---
 package/gqrx/gqrx.hash | 2 +-
 package/gqrx/gqrx.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/gqrx/gqrx.hash b/package/gqrx/gqrx.hash
index bfa4411c2c..1991dfea82 100644
--- a/package/gqrx/gqrx.hash
+++ b/package/gqrx/gqrx.hash
@@ -1,4 +1,4 @@
 # Locally calculated:
-sha256  ff3a9e350f730823dec8edb38cddfd72f602c909cc4ac39082c445eb66f88d96  gqrx-2.13.2.tar.gz
+sha256  aec35c77ebde9c71a5f973c509eec3d6aa2f18a6e052b180fcd9029d88273e5b  gqrx-2.14.4.tar.gz
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  COPYING
 sha256  7cc22ce5ee61df62e427ec43b8130de149edee3cafb5af4f18d59b6dc3958faf  LICENSE-CTK
diff --git a/package/gqrx/gqrx.mk b/package/gqrx/gqrx.mk
index dd15db2890..4d464298ca 100644
--- a/package/gqrx/gqrx.mk
+++ b/package/gqrx/gqrx.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-GQRX_VERSION = 2.13.2
+GQRX_VERSION = 2.14.4
 GQRX_SITE = $(call github,csete,gqrx,v$(GQRX_VERSION))
 GQRX_LICENSE = GPL-3.0+, Apache-2.0
 GQRX_LICENSE_FILES = COPYING LICENSE-CTK
-- 
2.20.1

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

* [Buildroot] [PATCH 2/2] package/gqrx: fix comment dependency
  2021-07-01  5:01 [Buildroot] [PATCH 1/2] package/gqrx: Bump version to 2.14.4 Gwenhael Goavec-Merou
@ 2021-07-01  5:01 ` Gwenhael Goavec-Merou
  2021-08-04 12:29   ` Peter Korsgaard
  2021-07-18 21:22 ` [Buildroot] [PATCH 1/2] package/gqrx: Bump version to 2.14.4 Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Gwenhael Goavec-Merou @ 2021-07-01  5:01 UTC (permalink / raw)
  To: buildroot

From: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>

comment message for gqrx is always displayed. This is due to an invert
dependency: GQRX depends on !BR2_STATIC_LIBS so comment must depends on
BR2_STATIC_LIBS

Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
---
 package/gqrx/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/gqrx/Config.in b/package/gqrx/Config.in
index af4d69381e..60942c36c8 100644
--- a/package/gqrx/Config.in
+++ b/package/gqrx/Config.in
@@ -3,7 +3,7 @@ comment "gqrx needs a toolchain w/ C++, threads, wchar, dynamic library"
 	depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_ATOMIC
 	depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
 	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
-		!BR2_USE_WCHAR || !BR2_STATIC_LIBS
+		!BR2_USE_WCHAR || BR2_STATIC_LIBS
 
 comment "gqrx needs qt5"
 	depends on !BR2_PACKAGE_QT5
-- 
2.20.1

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

* [Buildroot] [PATCH 1/2] package/gqrx: Bump version to 2.14.4
  2021-07-01  5:01 [Buildroot] [PATCH 1/2] package/gqrx: Bump version to 2.14.4 Gwenhael Goavec-Merou
  2021-07-01  5:01 ` [Buildroot] [PATCH 2/2] package/gqrx: fix comment dependency Gwenhael Goavec-Merou
@ 2021-07-18 21:22 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2021-07-18 21:22 UTC (permalink / raw)
  To: buildroot

On Thu,  1 Jul 2021 07:01:00 +0200
Gwenhael Goavec-Merou <gwenj@trabucayre.com> wrote:

> From: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
> 
> Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
> ---
>  package/gqrx/gqrx.hash | 2 +-
>  package/gqrx/gqrx.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Both applied. I've applied PATCH 2/2 first, as it's a fix, which is in
fact needed before the bump.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [Buildroot] [PATCH 2/2] package/gqrx: fix comment dependency
  2021-07-01  5:01 ` [Buildroot] [PATCH 2/2] package/gqrx: fix comment dependency Gwenhael Goavec-Merou
@ 2021-08-04 12:29   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-08-04 12:29 UTC (permalink / raw)
  To: Gwenhael Goavec-Merou; +Cc: Gwenhael Goavec-Merou, buildroot

>>>>> "Gwenhael" == Gwenhael Goavec-Merou <gwenj@trabucayre.com> writes:

 > From: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
 > comment message for gqrx is always displayed. This is due to an invert
 > dependency: GQRX depends on !BR2_STATIC_LIBS so comment must depends on
 > BR2_STATIC_LIBS

 > Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>

Committed to 2021.02.x and 2021.05.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot

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

end of thread, other threads:[~2021-08-04 12:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-01  5:01 [Buildroot] [PATCH 1/2] package/gqrx: Bump version to 2.14.4 Gwenhael Goavec-Merou
2021-07-01  5:01 ` [Buildroot] [PATCH 2/2] package/gqrx: fix comment dependency Gwenhael Goavec-Merou
2021-08-04 12:29   ` Peter Korsgaard
2021-07-18 21:22 ` [Buildroot] [PATCH 1/2] package/gqrx: Bump version to 2.14.4 Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox