All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/iproute2: bump to version 6.10
@ 2024-07-21  7:01 Fabrice Fontaine
  2024-07-21 16:25 ` Thomas Petazzoni via buildroot
  2024-08-29 16:03 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-07-21  7:01 UTC (permalink / raw)
  To: buildroot; +Cc: Petr Vorel, Fabrice Fontaine

This bump will fix the following build failure with gcc >= 14 thanks to
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=53a89bfd86fff1a00cc77cabb8457a03eaa3bc7d:

../include/json_print.h: In function 'print_tv':
../include/json_print.h:58:48: error: passing argument 5 of 'print_color_tv' from incompatible pointer type [-Wincompatible-pointer-types]
   58 |                                                value);                  \
      |                                                ^~~~~
      |                                                |
      |                                                const struct timeval *

Fixes:
 - http://autobuild.buildroot.org/results/c47c1e13659e4bfcccd98ebd22949e9dd278079e

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

diff --git a/package/iproute2/iproute2.hash b/package/iproute2/iproute2.hash
index a716bf75a1..0760183b9e 100644
--- a/package/iproute2/iproute2.hash
+++ b/package/iproute2/iproute2.hash
@@ -1,3 +1,3 @@
 # From https://kernel.org/pub/linux/utils/net/iproute2/sha256sums.asc
-sha256  2f643d09ea11a4a2a043c92e2b469b5f73228cbf241ae806760296ed0ec413d0  iproute2-6.9.0.tar.xz
+sha256  91a62f82737b44905a00fa803369c447d549e914e9a2a4018fdd75b1d54e8dce  iproute2-6.10.0.tar.xz
 sha256  e6d6a009505e345fe949e1310334fcb0747f28dae2856759de102ab66b722cb4  COPYING
diff --git a/package/iproute2/iproute2.mk b/package/iproute2/iproute2.mk
index 525101aff1..08b890b331 100644
--- a/package/iproute2/iproute2.mk
+++ b/package/iproute2/iproute2.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-IPROUTE2_VERSION = 6.9.0
+IPROUTE2_VERSION = 6.10.0
 IPROUTE2_SOURCE = iproute2-$(IPROUTE2_VERSION).tar.xz
 IPROUTE2_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/net/iproute2
 IPROUTE2_DEPENDENCIES = host-bison host-flex host-pkgconf \
-- 
2.43.0

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

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

* Re: [Buildroot] [PATCH 1/1] package/iproute2: bump to version 6.10
  2024-07-21  7:01 [Buildroot] [PATCH 1/1] package/iproute2: bump to version 6.10 Fabrice Fontaine
@ 2024-07-21 16:25 ` Thomas Petazzoni via buildroot
  2024-08-29 16:03 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-21 16:25 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Petr Vorel, buildroot

On Sun, 21 Jul 2024 09:01:47 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> This bump will fix the following build failure with gcc >= 14 thanks to
> https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=53a89bfd86fff1a00cc77cabb8457a03eaa3bc7d:
> 
> ../include/json_print.h: In function 'print_tv':
> ../include/json_print.h:58:48: error: passing argument 5 of 'print_color_tv' from incompatible pointer type [-Wincompatible-pointer-types]
>    58 |                                                value);                  \
>       |                                                ^~~~~
>       |                                                |
>       |                                                const struct timeval *
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/c47c1e13659e4bfcccd98ebd22949e9dd278079e
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/iproute2/iproute2.hash | 2 +-
>  package/iproute2/iproute2.mk   | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

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] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/iproute2: bump to version 6.10
  2024-07-21  7:01 [Buildroot] [PATCH 1/1] package/iproute2: bump to version 6.10 Fabrice Fontaine
  2024-07-21 16:25 ` Thomas Petazzoni via buildroot
@ 2024-08-29 16:03 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-08-29 16:03 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Petr Vorel, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > This bump will fix the following build failure with gcc >= 14 thanks to
 > https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=53a89bfd86fff1a00cc77cabb8457a03eaa3bc7d:

 > ../include/json_print.h: In function 'print_tv':
 > ../include/json_print.h:58:48: error: passing argument 5 of
 > 'print_color_tv' from incompatible pointer type
 > [-Wincompatible-pointer-types]
 >    58 |                                                value);                  \
 >       |                                                ^~~~~
 >       |                                                |
 >       |                                                const struct timeval *

 > Fixes:
 >  - http://autobuild.buildroot.org/results/c47c1e13659e4bfcccd98ebd22949e9dd278079e

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2024.05.x, thanks.

> ---
 >  package/iproute2/iproute2.hash | 2 +-
 >  package/iproute2/iproute2.mk   | 2 +-
 >  2 files changed, 2 insertions(+), 2 deletions(-)

 > diff --git a/package/iproute2/iproute2.hash b/package/iproute2/iproute2.hash
 > index a716bf75a1..0760183b9e 100644
 > --- a/package/iproute2/iproute2.hash
 > +++ b/package/iproute2/iproute2.hash
 > @@ -1,3 +1,3 @@
 >  # From https://kernel.org/pub/linux/utils/net/iproute2/sha256sums.asc
 > -sha256  2f643d09ea11a4a2a043c92e2b469b5f73228cbf241ae806760296ed0ec413d0  iproute2-6.9.0.tar.xz
 > +sha256  91a62f82737b44905a00fa803369c447d549e914e9a2a4018fdd75b1d54e8dce  iproute2-6.10.0.tar.xz
 >  sha256  e6d6a009505e345fe949e1310334fcb0747f28dae2856759de102ab66b722cb4  COPYING
 > diff --git a/package/iproute2/iproute2.mk b/package/iproute2/iproute2.mk
 > index 525101aff1..08b890b331 100644
 > --- a/package/iproute2/iproute2.mk
 > +++ b/package/iproute2/iproute2.mk
 > @@ -4,7 +4,7 @@
 >  #
 >  ################################################################################
 
 > -IPROUTE2_VERSION = 6.9.0
 > +IPROUTE2_VERSION = 6.10.0
 >  IPROUTE2_SOURCE = iproute2-$(IPROUTE2_VERSION).tar.xz
 >  IPROUTE2_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/net/iproute2
 >  IPROUTE2_DEPENDENCIES = host-bison host-flex host-pkgconf \
 > -- 

 > 2.43.0

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


-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-08-29 16:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-21  7:01 [Buildroot] [PATCH 1/1] package/iproute2: bump to version 6.10 Fabrice Fontaine
2024-07-21 16:25 ` Thomas Petazzoni via buildroot
2024-08-29 16:03 ` Peter Korsgaard

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.