All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/lua: bump to version 5.4.4
@ 2022-01-26 14:55 Francois Perrad
  2022-01-26 14:55 ` [Buildroot] [PATCH 2/2] package/lua: use Lua 5.4 as default Francois Perrad
  2022-02-05 22:47 ` [Buildroot] [PATCH 1/2] package/lua: bump to version 5.4.4 Arnout Vandecappelle
  0 siblings, 2 replies; 3+ messages in thread
From: Francois Perrad @ 2022-01-26 14:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/lua/5.4.3/lua.hash                                  | 6 ------
 package/lua/{5.4.3 => 5.4.4}/0001-root-path.patch           | 0
 package/lua/{5.4.3 => 5.4.4}/0002-shared-libs-for-lua.patch | 0
 package/lua/{5.4.3 => 5.4.4}/0011-linenoise.patch           | 2 +-
 package/lua/5.4.4/lua.hash                                  | 6 ++++++
 package/lua/lua.mk                                          | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)
 delete mode 100644 package/lua/5.4.3/lua.hash
 rename package/lua/{5.4.3 => 5.4.4}/0001-root-path.patch (100%)
 rename package/lua/{5.4.3 => 5.4.4}/0002-shared-libs-for-lua.patch (100%)
 rename package/lua/{5.4.3 => 5.4.4}/0011-linenoise.patch (97%)
 create mode 100644 package/lua/5.4.4/lua.hash

diff --git a/package/lua/5.4.3/lua.hash b/package/lua/5.4.3/lua.hash
deleted file mode 100644
index be3604837..000000000
--- a/package/lua/5.4.3/lua.hash
+++ /dev/null
@@ -1,6 +0,0 @@
-# Hashes from: https://www.lua.org/ftp/
-md5  ef63ed2ecfb713646a7fcc583cf5f352  lua-5.4.3.tar.gz
-sha1  1dda2ef23a9828492b4595c0197766de6e784bc7  lua-5.4.3.tar.gz
-
-# Locally computed
-sha256  d205bfea131113bcdd64d4ebe4a50ce34063b42bad24b93e44b4b0d853ae4d49  doc/readme.html
diff --git a/package/lua/5.4.3/0001-root-path.patch b/package/lua/5.4.4/0001-root-path.patch
similarity index 100%
rename from package/lua/5.4.3/0001-root-path.patch
rename to package/lua/5.4.4/0001-root-path.patch
diff --git a/package/lua/5.4.3/0002-shared-libs-for-lua.patch b/package/lua/5.4.4/0002-shared-libs-for-lua.patch
similarity index 100%
rename from package/lua/5.4.3/0002-shared-libs-for-lua.patch
rename to package/lua/5.4.4/0002-shared-libs-for-lua.patch
diff --git a/package/lua/5.4.3/0011-linenoise.patch b/package/lua/5.4.4/0011-linenoise.patch
similarity index 97%
rename from package/lua/5.4.3/0011-linenoise.patch
rename to package/lua/5.4.4/0011-linenoise.patch
index 7b9d6d76f..68316e108 100644
--- a/package/lua/5.4.3/0011-linenoise.patch
+++ b/package/lua/5.4.4/0011-linenoise.patch
@@ -8,7 +8,7 @@ Index: b/src/lua.c
 ===================================================================
 --- a/src/lua.c
 +++ b/src/lua.c
-@@ -421,6 +421,14 @@
+@@ -428,6 +428,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.4/lua.hash b/package/lua/5.4.4/lua.hash
new file mode 100644
index 000000000..b55b17f25
--- /dev/null
+++ b/package/lua/5.4.4/lua.hash
@@ -0,0 +1,6 @@
+# Hashes from: https://www.lua.org/ftp/
+md5  bd8ce7069ff99a400efd14cf339a727b  lua-5.4.4.tar.gz
+sha1  03c27684b9d5d9783fb79a7c836ba1cdc5f309cd  lua-5.4.4.tar.gz
+
+# Locally computed
+sha256  2556ac7198243f9f83130b9c81016e1904f7b30351481f1c28e02475dbd237fb  doc/readme.html
diff --git a/package/lua/lua.mk b/package/lua/lua.mk
index 844e165df..09e7b34f7 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.3
+LUA_VERSION = 5.4.4
 else ifeq ($(BR2_PACKAGE_LUA_5_3),y)
 LUA_VERSION = 5.3.6
 else
-- 
2.32.0

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

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

* [Buildroot] [PATCH 2/2] package/lua: use Lua 5.4 as default
  2022-01-26 14:55 [Buildroot] [PATCH 1/2] package/lua: bump to version 5.4.4 Francois Perrad
@ 2022-01-26 14:55 ` Francois Perrad
  2022-02-05 22:47 ` [Buildroot] [PATCH 1/2] package/lua: bump to version 5.4.4 Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Francois Perrad @ 2022-01-26 14:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/lua/Config.in                          | 2 +-
 support/testing/tests/package/test_lua.py      | 4 ++--
 support/testing/tests/package/test_lua_sdl2.py | 1 +
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/package/lua/Config.in b/package/lua/Config.in
index 5d4cee5d5..309dd6eec 100644
--- a/package/lua/Config.in
+++ b/package/lua/Config.in
@@ -14,7 +14,7 @@ config BR2_PACKAGE_PROVIDES_LUAINTERPRETER
 
 choice
 	prompt "Lua Version"
-	default BR2_PACKAGE_LUA_5_3
+	default BR2_PACKAGE_LUA_5_4
 	help
 	  Select the version of Lua API/ABI you wish to use.
 
diff --git a/support/testing/tests/package/test_lua.py b/support/testing/tests/package/test_lua.py
index 573ae0100..9703dffbd 100644
--- a/support/testing/tests/package/test_lua.py
+++ b/support/testing/tests/package/test_lua.py
@@ -42,8 +42,8 @@ class TestLua(TestLuaBase):
 
     def test_run(self):
         self.login()
-        self.version_test('Lua 5.3')
-        self.g_version_test('Lua 5.3')
+        self.version_test('Lua 5.4')
+        self.g_version_test('Lua 5.4')
 
 
 class TestLuajit(TestLuaBase):
diff --git a/support/testing/tests/package/test_lua_sdl2.py b/support/testing/tests/package/test_lua_sdl2.py
index 22c4087f5..b9aad15f4 100644
--- a/support/testing/tests/package/test_lua_sdl2.py
+++ b/support/testing/tests/package/test_lua_sdl2.py
@@ -5,6 +5,7 @@ class TestLuaLuaSDL2(TestLuaBase):
     config = TestLuaBase.config + \
         """
         BR2_PACKAGE_LUA=y
+        BR2_PACKAGE_LUA_5_3=y
         BR2_PACKAGE_LUA_SDL2=y
         BR2_PACKAGE_SDL2_IMAGE=y
         BR2_PACKAGE_SDL2_MIXER=y
-- 
2.32.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/2] package/lua: bump to version 5.4.4
  2022-01-26 14:55 [Buildroot] [PATCH 1/2] package/lua: bump to version 5.4.4 Francois Perrad
  2022-01-26 14:55 ` [Buildroot] [PATCH 2/2] package/lua: use Lua 5.4 as default Francois Perrad
@ 2022-02-05 22:47 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2022-02-05 22:47 UTC (permalink / raw)
  To: Francois Perrad, buildroot



On 26/01/2022 15:55, Francois Perrad wrote:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

  Both applied to master. However, François, when the license hash changes, 
please explain in the commit message why it changed.

  Regards,
  Arnout

> ---
>   package/lua/5.4.3/lua.hash                                  | 6 ------
>   package/lua/{5.4.3 => 5.4.4}/0001-root-path.patch           | 0
>   package/lua/{5.4.3 => 5.4.4}/0002-shared-libs-for-lua.patch | 0
>   package/lua/{5.4.3 => 5.4.4}/0011-linenoise.patch           | 2 +-
>   package/lua/5.4.4/lua.hash                                  | 6 ++++++
>   package/lua/lua.mk                                          | 2 +-
>   6 files changed, 8 insertions(+), 8 deletions(-)
>   delete mode 100644 package/lua/5.4.3/lua.hash
>   rename package/lua/{5.4.3 => 5.4.4}/0001-root-path.patch (100%)
>   rename package/lua/{5.4.3 => 5.4.4}/0002-shared-libs-for-lua.patch (100%)
>   rename package/lua/{5.4.3 => 5.4.4}/0011-linenoise.patch (97%)
>   create mode 100644 package/lua/5.4.4/lua.hash
> 
> diff --git a/package/lua/5.4.3/lua.hash b/package/lua/5.4.3/lua.hash
> deleted file mode 100644
> index be3604837..000000000
> --- a/package/lua/5.4.3/lua.hash
> +++ /dev/null
> @@ -1,6 +0,0 @@
> -# Hashes from: https://www.lua.org/ftp/
> -md5  ef63ed2ecfb713646a7fcc583cf5f352  lua-5.4.3.tar.gz
> -sha1  1dda2ef23a9828492b4595c0197766de6e784bc7  lua-5.4.3.tar.gz
> -
> -# Locally computed
> -sha256  d205bfea131113bcdd64d4ebe4a50ce34063b42bad24b93e44b4b0d853ae4d49  doc/readme.html
> diff --git a/package/lua/5.4.3/0001-root-path.patch b/package/lua/5.4.4/0001-root-path.patch
> similarity index 100%
> rename from package/lua/5.4.3/0001-root-path.patch
> rename to package/lua/5.4.4/0001-root-path.patch
> diff --git a/package/lua/5.4.3/0002-shared-libs-for-lua.patch b/package/lua/5.4.4/0002-shared-libs-for-lua.patch
> similarity index 100%
> rename from package/lua/5.4.3/0002-shared-libs-for-lua.patch
> rename to package/lua/5.4.4/0002-shared-libs-for-lua.patch
> diff --git a/package/lua/5.4.3/0011-linenoise.patch b/package/lua/5.4.4/0011-linenoise.patch
> similarity index 97%
> rename from package/lua/5.4.3/0011-linenoise.patch
> rename to package/lua/5.4.4/0011-linenoise.patch
> index 7b9d6d76f..68316e108 100644
> --- a/package/lua/5.4.3/0011-linenoise.patch
> +++ b/package/lua/5.4.4/0011-linenoise.patch
> @@ -8,7 +8,7 @@ Index: b/src/lua.c
>   ===================================================================
>   --- a/src/lua.c
>   +++ b/src/lua.c
> -@@ -421,6 +421,14 @@
> +@@ -428,6 +428,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.4/lua.hash b/package/lua/5.4.4/lua.hash
> new file mode 100644
> index 000000000..b55b17f25
> --- /dev/null
> +++ b/package/lua/5.4.4/lua.hash
> @@ -0,0 +1,6 @@
> +# Hashes from: https://www.lua.org/ftp/
> +md5  bd8ce7069ff99a400efd14cf339a727b  lua-5.4.4.tar.gz
> +sha1  03c27684b9d5d9783fb79a7c836ba1cdc5f309cd  lua-5.4.4.tar.gz
> +
> +# Locally computed
> +sha256  2556ac7198243f9f83130b9c81016e1904f7b30351481f1c28e02475dbd237fb  doc/readme.html
> diff --git a/package/lua/lua.mk b/package/lua/lua.mk
> index 844e165df..09e7b34f7 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.3
> +LUA_VERSION = 5.4.4
>   else ifeq ($(BR2_PACKAGE_LUA_5_3),y)
>   LUA_VERSION = 5.3.6
>   else
_______________________________________________
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:[~2022-02-05 22:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-26 14:55 [Buildroot] [PATCH 1/2] package/lua: bump to version 5.4.4 Francois Perrad
2022-01-26 14:55 ` [Buildroot] [PATCH 2/2] package/lua: use Lua 5.4 as default Francois Perrad
2022-02-05 22:47 ` [Buildroot] [PATCH 1/2] package/lua: bump to version 5.4.4 Arnout Vandecappelle

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.