* [Buildroot] [PATCH 1/1] package/augeas: bump to version 1.14.1
@ 2024-07-20 20:22 Fabrice Fontaine
2024-07-20 21:02 ` Thomas Petazzoni via buildroot
2024-08-29 6:14 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-07-20 20:22 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
This bump will fix the following build failure with gcc >= 14 thanks to
https://github.com/hercules-team/augeas/commit/792fb220a31a42043de6962fac6a1f6c030d67c5:
internal.c: In function 'xstrerror':
internal.c:436:12: error: returning 'int' from a function with return type 'const char *' makes pointer from integer without a cast [-Wint-conversion]
436 | return strerror_r(errnum, buf, len);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
https://github.com/hercules-team/augeas/blob/release-1.14.1/NEWS
Fixes:
- http://autobuild.buildroot.org/results/65014642966721115ae4050c23b083a7f39e1300
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/augeas/augeas.hash | 5 ++---
package/augeas/augeas.mk | 4 ++--
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/package/augeas/augeas.hash b/package/augeas/augeas.hash
index 03b71349ac..b3b2a2427c 100644
--- a/package/augeas/augeas.hash
+++ b/package/augeas/augeas.hash
@@ -1,4 +1,3 @@
-# Locally calculated after checking pgp signature from
-# http://download.augeas.net/augeas-1.12.0.tar.gz.sig
-sha256 321942c9cc32185e2e9cb72d0a70eea106635b50269075aca6714e3ec282cb87 augeas-1.12.0.tar.gz
+# Locally calculated
+sha256 368bfdd782e4b9c7163baadd621359c82b162734864b667051ff6bcb57b9edff augeas-1.14.1.tar.gz
sha256 ca0061fc1381a3ab242310e4b3f56389f28e3d460eb2fd822ed7a21c6f030532 COPYING
diff --git a/package/augeas/augeas.mk b/package/augeas/augeas.mk
index a0bc294565..ac4bc7d0be 100644
--- a/package/augeas/augeas.mk
+++ b/package/augeas/augeas.mk
@@ -4,8 +4,8 @@
#
################################################################################
-AUGEAS_VERSION = 1.12.0
-AUGEAS_SITE = http://download.augeas.net
+AUGEAS_VERSION = 1.14.1
+AUGEAS_SITE = https://github.com/hercules-team/augeas/releases/download/release-$(AUGEAS_VERSION)
AUGEAS_INSTALL_STAGING = YES
AUGEAS_LICENSE = LGPL-2.1+
AUGEAS_LICENSE_FILES = COPYING
--
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/augeas: bump to version 1.14.1
2024-07-20 20:22 [Buildroot] [PATCH 1/1] package/augeas: bump to version 1.14.1 Fabrice Fontaine
@ 2024-07-20 21:02 ` Thomas Petazzoni via buildroot
2024-08-29 6:14 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-20 21:02 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
On Sat, 20 Jul 2024 22:22:31 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
> This bump will fix the following build failure with gcc >= 14 thanks to
> https://github.com/hercules-team/augeas/commit/792fb220a31a42043de6962fac6a1f6c030d67c5:
>
> internal.c: In function 'xstrerror':
> internal.c:436:12: error: returning 'int' from a function with return type 'const char *' makes pointer from integer without a cast [-Wint-conversion]
> 436 | return strerror_r(errnum, buf, len);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> https://github.com/hercules-team/augeas/blob/release-1.14.1/NEWS
>
> Fixes:
> - http://autobuild.buildroot.org/results/65014642966721115ae4050c23b083a7f39e1300
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> package/augeas/augeas.hash | 5 ++---
> package/augeas/augeas.mk | 4 ++--
> 2 files changed, 4 insertions(+), 5 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/augeas: bump to version 1.14.1
2024-07-20 20:22 [Buildroot] [PATCH 1/1] package/augeas: bump to version 1.14.1 Fabrice Fontaine
2024-07-20 21:02 ` Thomas Petazzoni via buildroot
@ 2024-08-29 6:14 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-08-29 6:14 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> This bump will fix the following build failure with gcc >= 14 thanks to
> https://github.com/hercules-team/augeas/commit/792fb220a31a42043de6962fac6a1f6c030d67c5:
> internal.c: In function 'xstrerror':
> internal.c:436:12: error: returning 'int' from a function with return type 'const char *' makes pointer from integer without a cast [-Wint-conversion]
> 436 | return strerror_r(errnum, buf, len);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
> https://github.com/hercules-team/augeas/blob/release-1.14.1/NEWS
> Fixes:
> - http://autobuild.buildroot.org/results/65014642966721115ae4050c23b083a7f39e1300
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2024.05.x, thanks.
--
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 6:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-20 20:22 [Buildroot] [PATCH 1/1] package/augeas: bump to version 1.14.1 Fabrice Fontaine
2024-07-20 21:02 ` Thomas Petazzoni via buildroot
2024-08-29 6:14 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox