From: wangmy@fujitsu.com
To: openembedded-core@lists.openembedded.org
Cc: Wang Mingyu <wangmy@fujitsu.com>
Subject: [OE-core] [PATCH 03/15] gawk: upgrade 5.3.1 -> 5.3.2
Date: Tue, 8 Apr 2025 08:51:30 +0800 [thread overview]
Message-ID: <1744073502-27695-3-git-send-email-wangmy@fujitsu.com> (raw)
In-Reply-To: <1744073502-27695-1-git-send-email-wangmy@fujitsu.com>
From: Wang Mingyu <wangmy@fujitsu.com>
0001-Add-parameter-signatures-for-getenv-and-getopt.patch
removed since it's included in 5.3.2
0001-configure.ac-re-enable-disabled-printf-features.patch
refreshed for 5.3.2`
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
...ter-signatures-for-getenv-and-getopt.patch | 54 -------------------
...c-re-enable-disabled-printf-features.patch | 8 +--
.../gawk/{gawk_5.3.1.bb => gawk_5.3.2.bb} | 3 +-
3 files changed, 5 insertions(+), 60 deletions(-)
delete mode 100644 meta/recipes-extended/gawk/gawk/0001-Add-parameter-signatures-for-getenv-and-getopt.patch
rename meta/recipes-extended/gawk/{gawk_5.3.1.bb => gawk_5.3.2.bb} (94%)
diff --git a/meta/recipes-extended/gawk/gawk/0001-Add-parameter-signatures-for-getenv-and-getopt.patch b/meta/recipes-extended/gawk/gawk/0001-Add-parameter-signatures-for-getenv-and-getopt.patch
deleted file mode 100644
index 7ed615a881..0000000000
--- a/meta/recipes-extended/gawk/gawk/0001-Add-parameter-signatures-for-getenv-and-getopt.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 4a8352eeaa99bbea3461696855c973447e87abdd Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Sat, 22 Mar 2025 15:14:16 -0700
-Subject: [PATCH] Add parameter signatures for getenv() and getopt()
-
-GCC-15 complains about it when building for musl C library
-
-Upstream-Status: Submitted [https://lists.gnu.org/archive/html/bug-gawk/2025-03/msg00027.html]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- missing_d/fnmatch.c | 2 +-
- support/getopt.c | 2 +-
- support/getopt.h | 2 +-
- 3 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/missing_d/fnmatch.c b/missing_d/fnmatch.c
-index ccb7e34..7f97fbf 100644
---- a/missing_d/fnmatch.c
-+++ b/missing_d/fnmatch.c
-@@ -121,7 +121,7 @@ USA. */
- whose names are inconsistent. */
-
- # if !defined _LIBC && !defined getenv
--extern char *getenv ();
-+extern char *getenv (const char*);
- # endif
-
- # ifndef errno
-diff --git a/support/getopt.c b/support/getopt.c
-index eeb71ba..e7ebd19 100644
---- a/support/getopt.c
-+++ b/support/getopt.c
-@@ -152,7 +152,7 @@ static struct _getopt_data getopt_data;
- whose names are inconsistent. */
-
- #ifndef getenv
--extern char *getenv ();
-+extern char *getenv (const char*);
- #endif
-
- #endif /* not __GNU_LIBRARY__ */
-diff --git a/support/getopt.h b/support/getopt.h
-index 8393569..06482cf 100644
---- a/support/getopt.h
-+++ b/support/getopt.h
-@@ -181,7 +181,7 @@ extern int __posix_getopt (int ___argc, char *const *___argv,
- # endif
- # endif
- #else /* not __GNU_LIBRARY__ */
--extern int getopt ();
-+extern int getopt (int, char * const*, const char *);
- #endif /* __GNU_LIBRARY__ */
-
- #ifndef __need_getopt
diff --git a/meta/recipes-extended/gawk/gawk/0001-configure.ac-re-enable-disabled-printf-features.patch b/meta/recipes-extended/gawk/gawk/0001-configure.ac-re-enable-disabled-printf-features.patch
index 4fe60c7cb8..bcbc569531 100644
--- a/meta/recipes-extended/gawk/gawk/0001-configure.ac-re-enable-disabled-printf-features.patch
+++ b/meta/recipes-extended/gawk/gawk/0001-configure.ac-re-enable-disabled-printf-features.patch
@@ -1,4 +1,4 @@
-From 879fb11c7c006a8533a092fb75b38d84cc570d83 Mon Sep 17 00:00:00 2001
+From 9ce3184188e3fa275fde0258a165f4446a6e80f7 Mon Sep 17 00:00:00 2001
From: Alexander Kanavin <alex@linutronix.de>
Date: Fri, 22 Nov 2024 12:13:58 +0100
Subject: [PATCH] configure.ac: re-enable disabled printf features
@@ -12,10 +12,10 @@ Signed-off-by: Alexander Kanavin <alex@linutronix.de>
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
-index cb99ffe..5fe792f 100644
+index 0ccd460..7df7e5b 100644
--- a/configure.ac
+++ b/configure.ac
-@@ -398,7 +398,7 @@ int main()
+@@ -400,7 +400,7 @@ int main()
])],
has_f_format=yes,
has_f_format=no,
@@ -24,7 +24,7 @@ index cb99ffe..5fe792f 100644
)
if test "$has_f_format" = yes
then
-@@ -427,7 +427,7 @@ int main()
+@@ -429,7 +429,7 @@ int main()
])],
has_a_format=yes,
has_a_format=no,
diff --git a/meta/recipes-extended/gawk/gawk_5.3.1.bb b/meta/recipes-extended/gawk/gawk_5.3.2.bb
similarity index 94%
rename from meta/recipes-extended/gawk/gawk_5.3.1.bb
rename to meta/recipes-extended/gawk/gawk_5.3.2.bb
index 1fe2f2b2a7..833fe78bf9 100644
--- a/meta/recipes-extended/gawk/gawk_5.3.1.bb
+++ b/meta/recipes-extended/gawk/gawk_5.3.2.bb
@@ -18,10 +18,9 @@ PACKAGECONFIG[mpfr] = "--with-mpfr,--without-mpfr, mpfr"
SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz \
file://run-ptest \
file://0001-configure.ac-re-enable-disabled-printf-features.patch \
- file://0001-Add-parameter-signatures-for-getenv-and-getopt.patch \
"
-SRC_URI[sha256sum] = "fa41b3a85413af87fb5e3a7d9c8fa8d4a20728c67651185bb49c38a7f9382b1e"
+SRC_URI[sha256sum] = "8639a1a88fb411a1be02663739d03e902a6d313b5c6fe024d0bfeb3341a19a11"
inherit autotools gettext texinfo update-alternatives
--
2.43.0
next prev parent reply other threads:[~2025-04-08 0:52 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-08 0:51 [OE-core] [PATCH 01/15] curl: upgrade 8.12.1 -> 8.13.0 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 02/15] ell: upgrade 0.75 -> 0.76 wangmy
2025-04-08 0:51 ` wangmy [this message]
2025-04-08 0:51 ` [OE-core] [PATCH 04/15] harfbuzz: upgrade 11.0.0 -> 11.0.1 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 05/15] hwdata: upgrade 0.393 -> 0.394 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 06/15] libsolv: upgrade 0.7.31 -> 0.7.32 wangmy
2025-04-08 8:08 ` Alexander Kanavin
2025-04-08 0:51 ` [OE-core] [PATCH 07/15] lighttpd: upgrade 1.4.78 -> 1.4.79 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 08/15] llvm: upgrade 20.1.1 -> 20.1.2 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 09/15] meson: upgrade 1.7.1 -> 1.7.2 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 10/15] python3-calver: upgrade 2025.04.01 -> 2025.04.02 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 11/15] python3-flit-core: upgrade 3.11.0 -> 3.12.0 wangmy
2025-05-19 2:37 ` Clayton Casciato
2025-05-19 2:49 ` Clayton Casciato
2025-05-27 13:48 ` Clayton Casciato
2025-05-27 16:00 ` [OE-core] " Gyorgy Sarvari
2025-05-27 18:57 ` Clayton Casciato
2025-04-08 0:51 ` [OE-core] [PATCH 12/15] python3-lxml: upgrade 5.3.1 -> 5.3.2 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 13/15] python3-typing-extensions: upgrade 4.13.0 -> 4.13.1 wangmy
2025-04-08 0:51 ` [OE-core] [PATCH 14/15] sbc: upgrade 2.0 -> 2.1 wangmy
2025-04-08 10:21 ` Gyorgy Sarvari
2025-04-08 0:51 ` [OE-core] [PATCH 15/15] systemd: upgrade 257.4 -> 257.5 wangmy
2025-04-08 11:17 ` [OE-core] [PATCH 01/15] curl: upgrade 8.12.1 -> 8.13.0 Mathieu Dubois-Briand
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1744073502-27695-3-git-send-email-wangmy@fujitsu.com \
--to=wangmy@fujitsu.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.