From 990ec6ca3b097c7160fe925cfca4b8e57cfe5685 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 27 Jun 2025 01:45:56 -0300 Subject: Release 3.12.2 --- configure | 2 +- luarocks-3.12.1-1.rockspec | 38 -------------------------------------- luarocks-3.12.2-1.rockspec | 38 ++++++++++++++++++++++++++++++++++++++ src/luarocks/core/cfg.lua | 2 +- 4 files changed, 40 insertions(+), 40 deletions(-) delete mode 100644 luarocks-3.12.1-1.rockspec create mode 100644 luarocks-3.12.2-1.rockspec diff --git a/configure b/configure index cf4e6601..cc3e9dab 100755 --- a/configure +++ b/configure @@ -321,7 +321,7 @@ do done echo -BLUE "Configuring LuaRocks version 3.12.1..." +BLUE "Configuring LuaRocks version 3.12.2..." echo echo diff --git a/luarocks-3.12.1-1.rockspec b/luarocks-3.12.1-1.rockspec deleted file mode 100644 index 0994928c..00000000 --- a/luarocks-3.12.1-1.rockspec +++ /dev/null @@ -1,38 +0,0 @@ -rockspec_format = "3.0" -package = "luarocks" -version = "3.12.1-1" -source = { - url = "git+https://github.com/luarocks/luarocks", - tag = "v3.12.1" -} -description = { - summary = "A package manager for Lua modules.", - detailed = [[ - LuaRocks allows you to install Lua modules as self-contained - packages called "rocks", which also contain version dependency - information. This information is used both during installation, - so that when one rock is requested all rocks it depends on are - installed as well, and at run time, so that when a module is - required, the correct version is loaded. LuaRocks supports both - local and remote repositories, and multiple local rocks trees. - ]], - homepage = "http://www.luarocks.org", - issues_url = "https://github.com/luarocks/luarocks/issues", - maintainer = "Hisham Muhammad", - license = "MIT", -} -test_dependencies = { - "luacov", - "busted-htest", -} -test = { - type = "busted", - platforms = { - windows = { - flags = { "--exclude-tags=ssh,git,unix", "-Xhelper", "lua_dir=$(LUA_DIR)", "-Xhelper", "lua=$(LUA)" } - }, - unix = { - flags = { "--exclude-tags=ssh,git", "-Xhelper", "lua_dir=$(LUA_DIR)", "-Xhelper", "lua=$(LUA)" } - } - } -} diff --git a/luarocks-3.12.2-1.rockspec b/luarocks-3.12.2-1.rockspec new file mode 100644 index 00000000..728854cb --- /dev/null +++ b/luarocks-3.12.2-1.rockspec @@ -0,0 +1,38 @@ +rockspec_format = "3.0" +package = "luarocks" +version = "3.12.2-1" +source = { + url = "git+https://github.com/luarocks/luarocks", + tag = "v3.12.2", +} +description = { + summary = "A package manager for Lua modules.", + detailed = [[ + LuaRocks allows you to install Lua modules as self-contained + packages called "rocks", which also contain version dependency + information. This information is used both during installation, + so that when one rock is requested all rocks it depends on are + installed as well, and at run time, so that when a module is + required, the correct version is loaded. LuaRocks supports both + local and remote repositories, and multiple local rocks trees. + ]], + homepage = "http://www.luarocks.org", + issues_url = "https://github.com/luarocks/luarocks/issues", + maintainer = "Hisham Muhammad", + license = "MIT", +} +test_dependencies = { + "luacov", + "busted-htest", +} +test = { + type = "busted", + platforms = { + windows = { + flags = { "--exclude-tags=ssh,git,unix", "-Xhelper", "lua_dir=$(LUA_DIR)", "-Xhelper", "lua=$(LUA)" } + }, + unix = { + flags = { "--exclude-tags=ssh,git", "-Xhelper", "lua_dir=$(LUA_DIR)", "-Xhelper", "lua=$(LUA)" } + } + } +} diff --git a/src/luarocks/core/cfg.lua b/src/luarocks/core/cfg.lua index 6583a6c7..7e1294cd 100644 --- a/src/luarocks/core/cfg.lua +++ b/src/luarocks/core/cfg.lua @@ -21,7 +21,7 @@ local vers = require("luarocks.core.vers") -------------------------------------------------------------------------------- -local program_version = "3.12.1" +local program_version = "3.12.2" local is_windows = package.config:sub(1,1) == "\\" -- cgit v1.2.3-55-g6feb