package/lua-stdlib: new package

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Reviewed-by: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Marcin Niestroj 2017-06-26 17:19:41 +02:00 committed by Thomas Petazzoni
parent 4a6168db97
commit 0111ced770
5 changed files with 27 additions and 0 deletions

View file

@ -1085,6 +1085,7 @@ F: package/argparse/
F: package/dt-utils/
F: package/easydbus/
F: package/lua-flu/
F: package/lua-stdlib/
F: package/luaossl/
F: package/rs485conf/
F: package/turbolua/

View file

@ -574,6 +574,7 @@ menu "Lua libraries/modules"
source "package/lua-msgpack-native/Config.in"
source "package/lua-periphery/Config.in"
source "package/lua-sdl2/Config.in"
source "package/lua-stdlib/Config.in"
source "package/lua-testmore/Config.in"
source "package/luabitop/Config.in"
source "package/luacrypto/Config.in"

View file

@ -0,0 +1,9 @@
config BR2_PACKAGE_LUA_STDLIB
bool "lua-stdlib"
help
lua-stdlib is a library of modules for common programming
tasks, including list, table and functional operations,
objects, pickling, pretty-printing and command-line option
parsing.
https://github.com/lua-stdlib/lua-stdlib/

View file

@ -0,0 +1,2 @@
# Locally calculated
sha256 5eff1af3a16470297fa5a92c9525ae593644ae9dc0e6215158298711f5d829ee stdlib-41.2.0-1.src.rock

View file

@ -0,0 +1,14 @@
################################################################################
#
# lua-stdlib
#
################################################################################
LUA_STDLIB_VERSION_UPSTREAM = 41.2.0
LUA_STDLIB_VERSION = $(LUA_STDLIB_VERSION_UPSTREAM)-1
LUA_STDLIB_NAME_UPSTREAM = stdlib
LUA_STDLIB_SUBDIR = lua-stdlib-release-v$(LUA_STDLIB_VERSION_UPSTREAM)
LUA_STDLIB_LICENSE = MIT
LUA_STDLIB_LICENSE_FILES = $(LUA_STDLIB_SUBDIR)/COPYING
$(eval $(luarocks-package))