commit: 869990189bbcaf1bab795d6bcfdae74e7dbb53c5 Author: Marek Szuba <marecki <AT> gentoo <DOT> org> AuthorDate: Fri Jul 23 22:53:19 2021 +0000 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org> CommitDate: Tue Jul 27 14:22:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86999018
lua-utils.eclass: new eclass variable _LUA_HISTORICAL_IMPLS Similarly to _PYTHON_HISTORICAL_IMPLS, it will hold names of Lua implementations which used to be supported but no longer are. Signed-off-by: Marek Szuba <marecki <AT> gentoo.org> eclass/lua-utils.eclass | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/eclass/lua-utils.eclass b/eclass/lua-utils.eclass index 278bbca58a3..12067928002 100644 --- a/eclass/lua-utils.eclass +++ b/eclass/lua-utils.eclass @@ -40,6 +40,13 @@ _LUA_ALL_IMPLS=( ) readonly _LUA_ALL_IMPLS +# @ECLASS-VARIABLE: _LUA_HISTORICAL_IMPLS +# @INTERNAL +# @DESCRIPTION: +# All historical Lua implementations that are no longer supported. +_LUA_HISTORICAL_IMPLS=() +readonly _LUA_HISTORICAL_IMPLS + # @FUNCTION: _lua_set_impls # @INTERNAL # @DESCRIPTION:
