Commit 50dfaef6 authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Thomas Petazzoni
Browse files

package/luainterpreter: rename the _HAS and _PROVIDES variables



The basic rule for a package is to have its options named
after the package name. There is no reason this should not
also be the case for virtual packages.

Besides, this will allow us to switch luainterpreter to use the
soon-to-be-introduced virtual-package infrastructure.

Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com>
Cc: Mike Zick <minimod@morethan.org>
Cc: Francois Perrad <fperrad@gmail.com>
Reviewed-by: default avatarSamuel Martin <s.martin49@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent db4b9774
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -371,7 +371,7 @@ source "package/jimtcl/Config.in"
source "package/lua/Config.in"
source "package/luainterpreter/Config.in"
source "package/luajit/Config.in"
if BR2_PACKAGE_HAS_LUA_INTERPRETER && !BR2_PREFER_STATIC_LIB
if BR2_PACKAGE_HAS_LUAINTERPRETER && !BR2_PREFER_STATIC_LIB
# lua modules are dynamically loaded, so not available on static builds
menu "Lua libraries/modules"
source "package/cgilua/Config.in"
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_LBASE64
	bool "lbase64"
	depends on BR2_PACKAGE_HAS_LUA_INTERPRETER
	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
	depends on !BR2_PACKAGE_LUA_5_2
	help
	  A base64 library for Lua
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_LPEG
	bool "lpeg"
	depends on BR2_PACKAGE_HAS_LUA_INTERPRETER
	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
	help
	  LPeg is a new pattern-matching library for Lua,
	  based on Parsing Expression Grammars (PEGs).
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_LPTY
	bool "lpty"
	depends on BR2_PACKAGE_HAS_LUA_INTERPRETER
	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
	help
	  A simple facility for lua to control other programs via
	  PTYs.
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_LRANDOM
	bool "lrandom"
	depends on BR2_PACKAGE_HAS_LUA_INTERPRETER
	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
	help
	  A library for generating random numbers
	  based on the Mersenne Twister
Loading