diff options
author | Marek Szuba <marecki@gentoo.org> | 2021-07-23 23:53:19 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2021-07-27 15:22:01 +0100 |
commit | 869990189bbcaf1bab795d6bcfdae74e7dbb53c5 (patch) | |
tree | e6a200b2d9c40d3598dd7840294554382e1f777a /eclass/lua-utils.eclass | |
parent | media-gfx/darktable: propagate Bug #803053 fix to the live ebuild (diff) | |
download | gentoo-869990189bbcaf1bab795d6bcfdae74e7dbb53c5.tar.gz gentoo-869990189bbcaf1bab795d6bcfdae74e7dbb53c5.tar.bz2 gentoo-869990189bbcaf1bab795d6bcfdae74e7dbb53c5.zip |
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@gentoo.org>
Diffstat (limited to 'eclass/lua-utils.eclass')
-rw-r--r-- | eclass/lua-utils.eclass | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/eclass/lua-utils.eclass b/eclass/lua-utils.eclass index 278bbca58a39..12067928002b 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: |