Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] readline: bump version to 8.2
@ 2023-01-03 13:56 Martin Hundebøll
  2023-01-03 13:56 ` [Buildroot] [PATCH 2/2] bash: bump version to 5.2.15 Martin Hundebøll
  2023-01-04 21:36 ` [Buildroot] [PATCH 1/2] readline: bump version to 8.2 Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Martin Hundebøll @ 2023-01-03 13:56 UTC (permalink / raw)
  To: buildroot; +Cc: Martin Hundebøll

Signed-off-by: Martin Hundebøll <martin@geanix.com>
---
 package/readline/readline.hash | 4 ++--
 package/readline/readline.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/readline/readline.hash b/package/readline/readline.hash
index b0530a2d72..627746d821 100644
--- a/package/readline/readline.hash
+++ b/package/readline/readline.hash
@@ -1,6 +1,6 @@
 # Locally calculated after checking pgp signature from
-# https://ftp.gnu.org/gnu/readline/readline-8.1.2.tar.gz.sig
-sha256  7589a2381a8419e68654a47623ce7dfcb756815c8fee726b98f90bf668af7bc6  readline-8.1.2.tar.gz
+# https://ftp.gnu.org/gnu/readline/readline-8.2.tar.gz.sig
+sha256  3feb7171f16a84ee82ca18a36d7b9be109a52c04f492a053331d7d1095007c35  readline-8.2.tar.gz
 
 # Hash for license file
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  COPYING
diff --git a/package/readline/readline.mk b/package/readline/readline.mk
index b1fd181b78..66812dee77 100644
--- a/package/readline/readline.mk
+++ b/package/readline/readline.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-READLINE_VERSION = 8.1.2
+READLINE_VERSION = 8.2
 READLINE_SITE = $(BR2_GNU_MIRROR)/readline
 READLINE_INSTALL_STAGING = YES
 READLINE_DEPENDENCIES = ncurses host-autoconf
-- 
2.39.0

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

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

* [Buildroot] [PATCH 2/2] bash: bump version to 5.2.15
  2023-01-03 13:56 [Buildroot] [PATCH 1/2] readline: bump version to 8.2 Martin Hundebøll
@ 2023-01-03 13:56 ` Martin Hundebøll
  2023-01-04 22:12   ` Peter Korsgaard
  2023-01-04 21:36 ` [Buildroot] [PATCH 1/2] readline: bump version to 8.2 Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Martin Hundebøll @ 2023-01-03 13:56 UTC (permalink / raw)
  To: buildroot; +Cc: Martin Hundebøll

Signed-off-by: Martin Hundebøll <martin@geanix.com>
---
 ...local_shiftstates-vs.-locale_shiftst.patch | 72 -------------------
 ...quote_pathname-vs.-udequote_pathname.patch | 40 -----------
 package/bash/bash.hash                        |  4 +-
 package/bash/bash.mk                          |  2 +-
 4 files changed, 3 insertions(+), 115 deletions(-)
 delete mode 100644 package/bash/0002-locale-fix-typo-local_shiftstates-vs.-locale_shiftst.patch
 delete mode 100644 package/bash/0003-glob-fix-dequote_pathname-vs.-udequote_pathname.patch

diff --git a/package/bash/0002-locale-fix-typo-local_shiftstates-vs.-locale_shiftst.patch b/package/bash/0002-locale-fix-typo-local_shiftstates-vs.-locale_shiftst.patch
deleted file mode 100644
index 1636c18036..0000000000
--- a/package/bash/0002-locale-fix-typo-local_shiftstates-vs.-locale_shiftst.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-From 3d6b9e18506ad9daf4ec7b7d406b38d58ec88009 Mon Sep 17 00:00:00 2001
-From: Peter Seiderer <ps.report@gmx.net>
-Date: Thu, 11 Mar 2021 20:48:36 +0100
-Subject: [PATCH] locale: fix typo local_shiftstates vs. locale_shiftstates
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Fixes:
-
-  locale.c:94:3: error: ‘local_shiftstates’ undeclared (first use in this function); did you mean ‘locale_shiftstates’?
-     94 |   local_shiftstates = 0;
-        |   ^~~~~~~~~~~~~~~~~
-        |   locale_shiftstates
-
-Signed-off-by: Peter Seiderer <ps.report@gmx.net>
----
- locale.c | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/locale.c b/locale.c
-index 17ccc58..d6dd95a 100644
---- a/locale.c
-+++ b/locale.c
-@@ -91,7 +91,7 @@ set_default_locale ()
- #if defined (HANDLE_MULTIBYTE)
-   locale_shiftstates = mblen ((char *)NULL, 0);
- #else
--  local_shiftstates = 0;
-+  locale_shiftstates = 0;
- #endif
- }
- 
-@@ -117,7 +117,7 @@ set_default_locale_vars ()
- #    if defined (HANDLE_MULTIBYTE)
-       locale_shiftstates = mblen ((char *)NULL, 0);
- #    else
--      local_shiftstates = 0;
-+      locale_shiftstates = 0;
- #    endif
- 
-       u32reset ();
-@@ -226,7 +226,7 @@ set_locale_var (var, value)
- #  if defined (HANDLE_MULTIBYTE)
-       locale_shiftstates = mblen ((char *)NULL, 0);
- #  else
--      local_shiftstates = 0;
-+      locale_shiftstates = 0;
- #  endif
-       u32reset ();
-       return r;
-@@ -250,7 +250,7 @@ set_locale_var (var, value)
- #if defined (HANDLE_MULTIBYTE)
- 	  locale_shiftstates = mblen ((char *)NULL, 0);
- #else
--	  local_shiftstates = 0;
-+	  locale_shiftstates = 0;
- #endif
- 	  u32reset ();
- 	}
-@@ -391,7 +391,7 @@ reset_locale_vars ()
- #  if defined (HANDLE_MULTIBYTE)
-   locale_shiftstates = mblen ((char *)NULL, 0);
- #  else
--  local_shiftstates = 0;
-+  locale_shiftstates = 0;
- #  endif
-   u32reset ();
- #endif
--- 
-2.30.1
-
diff --git a/package/bash/0003-glob-fix-dequote_pathname-vs.-udequote_pathname.patch b/package/bash/0003-glob-fix-dequote_pathname-vs.-udequote_pathname.patch
deleted file mode 100644
index a801f68236..0000000000
--- a/package/bash/0003-glob-fix-dequote_pathname-vs.-udequote_pathname.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From a60ab1e5e88863acf9b0e9bcaa7919bbf093da05 Mon Sep 17 00:00:00 2001
-From: Peter Seiderer <ps.report@gmx.net>
-Date: Thu, 11 Mar 2021 20:55:52 +0100
-Subject: [PATCH] glob: fix dequote_pathname vs. udequote_pathname
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Fixes:
-
-  glob.c:123:28: error: static declaration of ‘udequote_pathname’ follows non-static declaration
-    123 | #  define dequote_pathname udequote_pathname
-        |                            ^~~~~~~~~~~~~~~~~
-  glob.c:125:13: note: in expansion of macro ‘dequote_pathname’
-    125 | static void dequote_pathname PARAMS((char *));
-        |             ^~~~~~~~~~~~~~~~
-  glob.c:118:6: note: previous declaration of ‘udequote_pathname’ was here
-    118 | void udequote_pathname PARAMS((char *));
-        |      ^~~~~~~~~~~~~~~~~
-
-Signed-off-by: Peter Seiderer <ps.report@gmx.net>
----
- lib/glob/glob.c | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/lib/glob/glob.c b/lib/glob/glob.c
-index eb6277f..c903b15 100644
---- a/lib/glob/glob.c
-+++ b/lib/glob/glob.c
-@@ -117,6 +117,5 @@ static int mbskipname PARAMS((char *, char *, int));
- #else
- #  define dequote_pathname udequote_pathname
- #endif
--static void dequote_pathname PARAMS((char *));
- static int glob_testdir PARAMS((char *, int));
- static char **glob_dir_to_array PARAMS((char *, char **, int));
- 
--- 
-2.30.1
-
diff --git a/package/bash/bash.hash b/package/bash/bash.hash
index 4660e9d38a..e0a1ebac91 100644
--- a/package/bash/bash.hash
+++ b/package/bash/bash.hash
@@ -1,4 +1,4 @@
 # Locally calculated after checking pgp signature from
-# https://ftp.gnu.org/gnu/bash/bash-5.1.16.tar.gz.sig
-sha256  5bac17218d3911834520dad13cd1f85ab944e1c09ae1aba55906be1f8192f558  bash-5.1.16.tar.gz
+# https://ftp.gnu.org/gnu/bash/bash-5.2.15.tar.gz.sig
+sha256  13720965b5f4fc3a0d4b61dd37e7565c741da9a5be24edc2ae00182fc1b3588c  bash-5.2.15.tar.gz
 sha256  8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  COPYING
diff --git a/package/bash/bash.mk b/package/bash/bash.mk
index 3aca22898e..ec5e2d722f 100644
--- a/package/bash/bash.mk
+++ b/package/bash/bash.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-BASH_VERSION = 5.1.16
+BASH_VERSION = 5.2.15
 BASH_SITE = $(BR2_GNU_MIRROR)/bash
 BASH_DEPENDENCIES = ncurses readline host-bison
 BASH_LICENSE = GPL-3.0+
-- 
2.39.0

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

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

* Re: [Buildroot] [PATCH 1/2] readline: bump version to 8.2
  2023-01-03 13:56 [Buildroot] [PATCH 1/2] readline: bump version to 8.2 Martin Hundebøll
  2023-01-03 13:56 ` [Buildroot] [PATCH 2/2] bash: bump version to 5.2.15 Martin Hundebøll
@ 2023-01-04 21:36 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2023-01-04 21:36 UTC (permalink / raw)
  To: Martin Hundebøll; +Cc: buildroot

>>>>> "Martin" == Martin Hundebøll <martin@geanix.com> writes:

 > Signed-off-by: Martin Hundebøll <martin@geanix.com>

FYI, I've instead applied Fabrice's patch sent earlier for the same:

https://gitlab.com/buildroot.org/buildroot/-/commit/f1f5e9f15063443bae1b80af072c7a5b0ab91d24

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

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

* Re: [Buildroot] [PATCH 2/2] bash: bump version to 5.2.15
  2023-01-03 13:56 ` [Buildroot] [PATCH 2/2] bash: bump version to 5.2.15 Martin Hundebøll
@ 2023-01-04 22:12   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2023-01-04 22:12 UTC (permalink / raw)
  To: Martin Hundebøll; +Cc: buildroot

>>>>> "Martin" == Martin Hundebøll <martin@geanix.com> writes:

 > Signed-off-by: Martin Hundebøll <martin@geanix.com>

Committed, thanks.

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

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

end of thread, other threads:[~2023-01-04 22:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-03 13:56 [Buildroot] [PATCH 1/2] readline: bump version to 8.2 Martin Hundebøll
2023-01-03 13:56 ` [Buildroot] [PATCH 2/2] bash: bump version to 5.2.15 Martin Hundebøll
2023-01-04 22:12   ` Peter Korsgaard
2023-01-04 21:36 ` [Buildroot] [PATCH 1/2] readline: bump version to 8.2 Peter Korsgaard

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