From 6fbe63e14cd58bb5cb9e27c42540dcf820c5a495 Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Fri, 4 Sep 2026 20:59:09 +0200 Subject: [PATCH] package/lua: bump to version 5.4.9 For differences with 5.4.8, see: https://www.lua.org/work/diffs-lua-5.4.8-lua-5.4.9.html Signed-off-by: Francois Perrad a [Julien: add link to diff with previous version] Signed-off-by: Julien Olivain --- package/lua/5.4.8/lua.hash | 5 ----- package/lua/{5.4.8 => 5.4.9}/0001-root-path.patch | 0 package/lua/{5.4.8 => 5.4.9}/0002-shared-libs-for-lua.patch | 0 package/lua/{5.4.8 => 5.4.9}/0003-linenoise.patch | 2 +- package/lua/5.4.9/lua.hash | 5 +++++ package/lua/Config.in | 2 +- package/lua/lua.mk | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 package/lua/5.4.8/lua.hash rename package/lua/{5.4.8 => 5.4.9}/0001-root-path.patch (100%) rename package/lua/{5.4.8 => 5.4.9}/0002-shared-libs-for-lua.patch (100%) rename package/lua/{5.4.8 => 5.4.9}/0003-linenoise.patch (97%) create mode 100644 package/lua/5.4.9/lua.hash diff --git a/package/lua/5.4.8/lua.hash b/package/lua/5.4.8/lua.hash deleted file mode 100644 index 8494511529..0000000000 --- a/package/lua/5.4.8/lua.hash +++ /dev/null @@ -1,5 +0,0 @@ -# Hashes from: https://www.lua.org/ftp/ -sha256 4f18ddae154e793e46eeab727c59ef1c0c0c2b744e7b94219710d76f530629ae lua-5.4.8.tar.gz - -# Locally computed -sha256 3773a4900f3539c56aea9d6cd48d71c8751d495c4abc28472706bb9553d1493c doc/readme.html diff --git a/package/lua/5.4.8/0001-root-path.patch b/package/lua/5.4.9/0001-root-path.patch similarity index 100% rename from package/lua/5.4.8/0001-root-path.patch rename to package/lua/5.4.9/0001-root-path.patch diff --git a/package/lua/5.4.8/0002-shared-libs-for-lua.patch b/package/lua/5.4.9/0002-shared-libs-for-lua.patch similarity index 100% rename from package/lua/5.4.8/0002-shared-libs-for-lua.patch rename to package/lua/5.4.9/0002-shared-libs-for-lua.patch diff --git a/package/lua/5.4.8/0003-linenoise.patch b/package/lua/5.4.9/0003-linenoise.patch similarity index 97% rename from package/lua/5.4.8/0003-linenoise.patch rename to package/lua/5.4.9/0003-linenoise.patch index a82c8801ad..57019f4c1b 100644 --- a/package/lua/5.4.8/0003-linenoise.patch +++ b/package/lua/5.4.9/0003-linenoise.patch @@ -7,7 +7,7 @@ Index: b/src/lua.c =================================================================== --- a/src/lua.c +++ b/src/lua.c -@@ -447,6 +447,14 @@ +@@ -448,6 +448,14 @@ #define lua_saveline(L,line) ((void)L, add_history(line)) #define lua_freeline(L,b) ((void)L, free(b)) diff --git a/package/lua/5.4.9/lua.hash b/package/lua/5.4.9/lua.hash new file mode 100644 index 0000000000..5b8508f1c5 --- /dev/null +++ b/package/lua/5.4.9/lua.hash @@ -0,0 +1,5 @@ +# Hashes from: https://www.lua.org/ftp/ +sha256 2335b6c582a52654f94612bf10d2f4672805d05329aa6568b1d8cd9e5c6fb8e6 lua-5.4.9.tar.gz + +# Locally computed +sha256 760d00c8b494ec2f170bcdd969e36b038027b0288232c60e15ffa6b0d784e9c7 doc/readme.html diff --git a/package/lua/Config.in b/package/lua/Config.in index 888c34b21d..7417670d4d 100644 --- a/package/lua/Config.in +++ b/package/lua/Config.in @@ -5,7 +5,7 @@ config BR2_PACKAGE_LUA Lua is a powerful, fast, light-weight, embeddable scripting language. - http://www.lua.org/ + https://www.lua.org/ if BR2_PACKAGE_LUA diff --git a/package/lua/lua.mk b/package/lua/lua.mk index 269eafe4bb..6dbdc95002 100644 --- a/package/lua/lua.mk +++ b/package/lua/lua.mk @@ -5,7 +5,7 @@ ################################################################################ ifeq ($(BR2_PACKAGE_LUA_5_4),y) -LUA_VERSION = 5.4.8 +LUA_VERSION = 5.4.9 else ifeq ($(BR2_PACKAGE_LUA_5_3),y) LUA_VERSION = 5.3.6 else