diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-11-22 17:45:12 -0600 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-11-22 17:45:12 -0600 |
commit | 85e0617095154fac6558eceeef94fb3b7d60432c (patch) | |
tree | 6778122b9876ecc1c0849dc11126ea1d785b1a38 | |
parent | edf05590e666ca35a3a512aa49e26e9eae153ece (diff) | |
download | lua-compat-53-packaging-85e0617095154fac6558eceeef94fb3b7d60432c.tar.gz lua-compat-53-packaging-85e0617095154fac6558eceeef94fb3b7d60432c.tar.bz2 lua-compat-53-packaging-85e0617095154fac6558eceeef94fb3b7d60432c.zip |
Include package name for compat but not for bit32
-rw-r--r-- | meta.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} | |||
26 | local builds = {} | 26 | local builds = {} |
27 | for version, _, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do | 27 | for version, _, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do |
28 | for package_version,_ in pairs(compat_versions) do | 28 | for package_version,_ in pairs(compat_versions) do |
29 | local buildname = "lua-compat-53-" .. version .. "-" .. name .. "-" .. rel .. "-" .. image | 29 | local buildname = "lua-compat-53-" .. package_version .. "-" .. version .. "-" .. name .. "-" .. rel .. "-" .. image |
30 | builds[buildname] = { | 30 | builds[buildname] = { |
31 | image = "image-luarocks-" .. version.. "-" .. image, | 31 | image = "image-luarocks-" .. version.. "-" .. image, |
32 | requires = { | 32 | requires = { |