* [Buildroot] [PATCH] package/lua: bump to version 5.4.5
@ 2023-04-29 20:01 Francois Perrad
2023-05-01 7:32 ` Peter Korsgaard
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Francois Perrad @ 2023-04-29 20:01 UTC (permalink / raw)
To: buildroot
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/lua/5.4.4/lua.hash | 6 ------
package/lua/{5.4.4 => 5.4.5}/0001-root-path.patch | 2 +-
package/lua/{5.4.4 => 5.4.5}/0002-shared-libs-for-lua.patch | 2 +-
package/lua/{5.4.4 => 5.4.5}/0011-linenoise.patch | 2 +-
package/lua/5.4.5/lua.hash | 5 +++++
package/lua/lua.mk | 2 +-
6 files changed, 9 insertions(+), 10 deletions(-)
delete mode 100644 package/lua/5.4.4/lua.hash
rename package/lua/{5.4.4 => 5.4.5}/0001-root-path.patch (95%)
rename package/lua/{5.4.4 => 5.4.5}/0002-shared-libs-for-lua.patch (96%)
rename package/lua/{5.4.4 => 5.4.5}/0011-linenoise.patch (97%)
create mode 100644 package/lua/5.4.5/lua.hash
diff --git a/package/lua/5.4.4/lua.hash b/package/lua/5.4.4/lua.hash
deleted file mode 100644
index b55b17f25..000000000
--- a/package/lua/5.4.4/lua.hash
+++ /dev/null
@@ -1,6 +0,0 @@
-# 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/5.4.4/0001-root-path.patch b/package/lua/5.4.5/0001-root-path.patch
similarity index 95%
rename from package/lua/5.4.4/0001-root-path.patch
rename to package/lua/5.4.5/0001-root-path.patch
index c4f6e312e..5e3037b78 100644
--- a/package/lua/5.4.4/0001-root-path.patch
+++ b/package/lua/5.4.5/0001-root-path.patch
@@ -6,7 +6,7 @@ Index: b/src/luaconf.h
===================================================================
--- a/src/luaconf.h
+++ b/src/luaconf.h
-@@ -217,7 +217,7 @@
+@@ -223,7 +223,7 @@
#else /* }{ */
diff --git a/package/lua/5.4.4/0002-shared-libs-for-lua.patch b/package/lua/5.4.5/0002-shared-libs-for-lua.patch
similarity index 96%
rename from package/lua/5.4.4/0002-shared-libs-for-lua.patch
rename to package/lua/5.4.5/0002-shared-libs-for-lua.patch
index 4ff204429..388aa9966 100644
--- a/package/lua/5.4.4/0002-shared-libs-for-lua.patch
+++ b/package/lua/5.4.5/0002-shared-libs-for-lua.patch
@@ -31,7 +31,7 @@ Index: b/src/Makefile
--- a/src/Makefile
+++ b/src/Makefile
@@ -33,6 +33,7 @@
- PLATS= guess aix bsd c89 freebsd generic linux linux-readline macosx mingw posix solaris
+ PLATS= guess aix bsd c89 freebsd generic ios linux linux-readline macosx mingw posix solaris
LUA_A= liblua.a
+LUA_SO= liblua.so
diff --git a/package/lua/5.4.4/0011-linenoise.patch b/package/lua/5.4.5/0011-linenoise.patch
similarity index 97%
rename from package/lua/5.4.4/0011-linenoise.patch
rename to package/lua/5.4.5/0011-linenoise.patch
index 68316e108..5054ae19e 100644
--- a/package/lua/5.4.4/0011-linenoise.patch
+++ b/package/lua/5.4.5/0011-linenoise.patch
@@ -8,7 +8,7 @@ Index: b/src/lua.c
===================================================================
--- a/src/lua.c
+++ b/src/lua.c
-@@ -428,6 +428,14 @@
+@@ -438,6 +438,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.5/lua.hash b/package/lua/5.4.5/lua.hash
new file mode 100644
index 000000000..5526cd512
--- /dev/null
+++ b/package/lua/5.4.5/lua.hash
@@ -0,0 +1,5 @@
+# Hashes from: https://www.lua.org/ftp/
+sha256 59df426a3d50ea535a460a452315c4c0d4e1121ba72ff0bdde58c2ef31d6f444 lua-5.4.5.tar.gz
+
+# Locally computed
+sha256 0d4ee721cf740f9cd878ef82ef75f4f2724dcf0403e56cd0b5643ad88f9de337 doc/readme.html
diff --git a/package/lua/lua.mk b/package/lua/lua.mk
index 16086e7bf..ecb86c11e 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.4
+LUA_VERSION = 5.4.5
else ifeq ($(BR2_PACKAGE_LUA_5_3),y)
LUA_VERSION = 5.3.6
else
--
2.37.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [Buildroot] [PATCH] package/lua: bump to version 5.4.5
2023-04-29 20:01 [Buildroot] [PATCH] package/lua: bump to version 5.4.5 Francois Perrad
@ 2023-05-01 7:32 ` Peter Korsgaard
2023-05-16 18:44 ` François Perrad
2023-05-01 19:58 ` Yann E. MORIN
2023-05-02 12:07 ` Peter Korsgaard
2 siblings, 1 reply; 7+ messages in thread
From: Peter Korsgaard @ 2023-05-01 7:32 UTC (permalink / raw)
To: Francois Perrad; +Cc: buildroot
>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/lua: bump to version 5.4.5
2023-04-29 20:01 [Buildroot] [PATCH] package/lua: bump to version 5.4.5 Francois Perrad
2023-05-01 7:32 ` Peter Korsgaard
@ 2023-05-01 19:58 ` Yann E. MORIN
2023-05-02 6:29 ` Peter Korsgaard
2023-05-02 12:07 ` Peter Korsgaard
2 siblings, 1 reply; 7+ messages in thread
From: Yann E. MORIN @ 2023-05-01 19:58 UTC (permalink / raw)
To: Francois Perrad; +Cc: buildroot
François, All,
On 2023-04-29 22:01 +0200, Francois Perrad spake thusly:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
> ---
> package/lua/5.4.4/lua.hash | 6 ------
> package/lua/{5.4.4 => 5.4.5}/0001-root-path.patch | 2 +-
> package/lua/{5.4.4 => 5.4.5}/0002-shared-libs-for-lua.patch | 2 +-
> package/lua/{5.4.4 => 5.4.5}/0011-linenoise.patch | 2 +-
This causes check-package failures:
$ make check-package
package/lua/5.4.5/0001-root-path.patch:0: missing Upstream in the header (http://nightly.buildroot.org/#_additional_patch_documentation)
package/lua/5.4.5/0002-shared-libs-for-lua.patch:0: missing Upstream in the header (http://nightly.buildroot.org/#_additional_patch_documentation)
package/lua/5.4.5/0011-linenoise.patch:0: missing Upstream in the header (http://nightly.buildroot.org/#_additional_patch_documentation)
384140 lines processed
3 warnings generated
I've pushed a fix-up commit, 66d3e74d94f8 (.checkpackageignore:
regenerate list)
Regards,
Yann E. MORIN.
> package/lua/5.4.5/lua.hash | 5 +++++
> package/lua/lua.mk | 2 +-
> 6 files changed, 9 insertions(+), 10 deletions(-)
> delete mode 100644 package/lua/5.4.4/lua.hash
> rename package/lua/{5.4.4 => 5.4.5}/0001-root-path.patch (95%)
> rename package/lua/{5.4.4 => 5.4.5}/0002-shared-libs-for-lua.patch (96%)
> rename package/lua/{5.4.4 => 5.4.5}/0011-linenoise.patch (97%)
> create mode 100644 package/lua/5.4.5/lua.hash
>
> diff --git a/package/lua/5.4.4/lua.hash b/package/lua/5.4.4/lua.hash
> deleted file mode 100644
> index b55b17f25..000000000
> --- a/package/lua/5.4.4/lua.hash
> +++ /dev/null
> @@ -1,6 +0,0 @@
> -# 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/5.4.4/0001-root-path.patch b/package/lua/5.4.5/0001-root-path.patch
> similarity index 95%
> rename from package/lua/5.4.4/0001-root-path.patch
> rename to package/lua/5.4.5/0001-root-path.patch
> index c4f6e312e..5e3037b78 100644
> --- a/package/lua/5.4.4/0001-root-path.patch
> +++ b/package/lua/5.4.5/0001-root-path.patch
> @@ -6,7 +6,7 @@ Index: b/src/luaconf.h
> ===================================================================
> --- a/src/luaconf.h
> +++ b/src/luaconf.h
> -@@ -217,7 +217,7 @@
> +@@ -223,7 +223,7 @@
>
> #else /* }{ */
>
> diff --git a/package/lua/5.4.4/0002-shared-libs-for-lua.patch b/package/lua/5.4.5/0002-shared-libs-for-lua.patch
> similarity index 96%
> rename from package/lua/5.4.4/0002-shared-libs-for-lua.patch
> rename to package/lua/5.4.5/0002-shared-libs-for-lua.patch
> index 4ff204429..388aa9966 100644
> --- a/package/lua/5.4.4/0002-shared-libs-for-lua.patch
> +++ b/package/lua/5.4.5/0002-shared-libs-for-lua.patch
> @@ -31,7 +31,7 @@ Index: b/src/Makefile
> --- a/src/Makefile
> +++ b/src/Makefile
> @@ -33,6 +33,7 @@
> - PLATS= guess aix bsd c89 freebsd generic linux linux-readline macosx mingw posix solaris
> + PLATS= guess aix bsd c89 freebsd generic ios linux linux-readline macosx mingw posix solaris
>
> LUA_A= liblua.a
> +LUA_SO= liblua.so
> diff --git a/package/lua/5.4.4/0011-linenoise.patch b/package/lua/5.4.5/0011-linenoise.patch
> similarity index 97%
> rename from package/lua/5.4.4/0011-linenoise.patch
> rename to package/lua/5.4.5/0011-linenoise.patch
> index 68316e108..5054ae19e 100644
> --- a/package/lua/5.4.4/0011-linenoise.patch
> +++ b/package/lua/5.4.5/0011-linenoise.patch
> @@ -8,7 +8,7 @@ Index: b/src/lua.c
> ===================================================================
> --- a/src/lua.c
> +++ b/src/lua.c
> -@@ -428,6 +428,14 @@
> +@@ -438,6 +438,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.5/lua.hash b/package/lua/5.4.5/lua.hash
> new file mode 100644
> index 000000000..5526cd512
> --- /dev/null
> +++ b/package/lua/5.4.5/lua.hash
> @@ -0,0 +1,5 @@
> +# Hashes from: https://www.lua.org/ftp/
> +sha256 59df426a3d50ea535a460a452315c4c0d4e1121ba72ff0bdde58c2ef31d6f444 lua-5.4.5.tar.gz
> +
> +# Locally computed
> +sha256 0d4ee721cf740f9cd878ef82ef75f4f2724dcf0403e56cd0b5643ad88f9de337 doc/readme.html
> diff --git a/package/lua/lua.mk b/package/lua/lua.mk
> index 16086e7bf..ecb86c11e 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.4
> +LUA_VERSION = 5.4.5
> else ifeq ($(BR2_PACKAGE_LUA_5_3),y)
> LUA_VERSION = 5.3.6
> else
> --
> 2.37.2
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [Buildroot] [PATCH] package/lua: bump to version 5.4.5
2023-04-29 20:01 [Buildroot] [PATCH] package/lua: bump to version 5.4.5 Francois Perrad
2023-05-01 7:32 ` Peter Korsgaard
2023-05-01 19:58 ` Yann E. MORIN
@ 2023-05-02 12:07 ` Peter Korsgaard
2 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2023-05-02 12:07 UTC (permalink / raw)
To: Francois Perrad; +Cc: buildroot
>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Committed to 2023.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-05-16 19:05 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-29 20:01 [Buildroot] [PATCH] package/lua: bump to version 5.4.5 Francois Perrad
2023-05-01 7:32 ` Peter Korsgaard
2023-05-16 18:44 ` François Perrad
2023-05-16 19:05 ` Peter Korsgaard
2023-05-01 19:58 ` Yann E. MORIN
2023-05-02 6:29 ` Peter Korsgaard
2023-05-02 12:07 ` Peter Korsgaard
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.