[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_LUA_STD_NORMALIZE
bool "lua-std-normalize"
select BR2_PACKAGE_LUA_STD_DEBUG # runtime
help
This module can inject deterministic versions of core Lua
functions that do not behave identically across all
supported Lua implementations into your module's lexical
environment. Each function is as thin and fast a version as
is possible in each Lua implementation, evaluating to the
Lua C implementation with no overhead when semantics allow.
https://lua-stdlib.github.io/normalize

View File

@ -0,0 +1,3 @@
# computed by luarocks/buildroot
sha256 3a040b6ca43297367c527e12c1aab37acab86289f9415ffb130544c48b17f802 std.normalize-2.0.3-1.src.rock
sha256 9c9094f0cea86c2c62b893e59a78d5eaed69df0d7da24e122ef9753baeef0f04 normalize-2.0.3/LICENSE.md

View File

@ -0,0 +1,14 @@
################################################################################
#
# lua-std-normalize
#
################################################################################
LUA_STD_NORMALIZE_VERSION_UPSTREAM = 2.0.3
LUA_STD_NORMALIZE_VERSION = $(LUA_STD_NORMALIZE_VERSION_UPSTREAM)-1
LUA_STD_NORMALIZE_NAME_UPSTREAM = std.normalize
LUA_STD_NORMALIZE_SUBDIR = normalize-$(LUA_STD_NORMALIZE_VERSION_UPSTREAM)
LUA_STD_NORMALIZE_LICENSE = MIT
LUA_STD_NORMALIZE_LICENSE_FILES = $(LUA_STD_NORMALIZE_SUBDIR)/LICENSE.md
$(eval $(luarocks-package))