From 0e3f817f57ef6280d8e35a9954befaf05bdab61b Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Fri, 1 Jul 2022 15:56:35 -0300 Subject: Release 3.9.1 --- appveyor.yml | 4 ++-- configure | 2 +- install.bat | 2 +- luarocks-3.9.1-1.rockspec | 38 ++++++++++++++++++++++++++++++++++++++ luarocks-dev-1.rockspec | 37 ------------------------------------- src/luarocks/core/cfg.lua | 2 +- 6 files changed, 43 insertions(+), 42 deletions(-) create mode 100644 luarocks-3.9.1-1.rockspec delete mode 100644 luarocks-dev-1.rockspec diff --git a/appveyor.yml b/appveyor.yml index b084cff5..bb9ae4fd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.0.0.{build}-test +version: 3.9.1.{build}-test shallow_clone: true @@ -6,7 +6,7 @@ matrix: fast_finish: true environment: - LUAROCKS_VER: 3.0.0 + LUAROCKS_VER: 3.9.1 matrix: # Lua 5.4 tests diff --git a/configure b/configure index 4a5542b9..fde01e5d 100755 --- a/configure +++ b/configure @@ -320,7 +320,7 @@ do done echo -BLUE "Configuring LuaRocks version dev..." +BLUE "Configuring LuaRocks version 3.9.1..." echo echo diff --git a/install.bat b/install.bat index 7a5df9cd..de8cb70b 100644 --- a/install.bat +++ b/install.bat @@ -6,7 +6,7 @@ local vars = {} vars.PREFIX = nil -vars.VERSION = "3.0" +vars.VERSION = "3.9" vars.SYSCONFDIR = nil vars.CONFBACKUPDIR = nil vars.SYSCONFFILENAME = nil diff --git a/luarocks-3.9.1-1.rockspec b/luarocks-3.9.1-1.rockspec new file mode 100644 index 00000000..372cb2d8 --- /dev/null +++ b/luarocks-3.9.1-1.rockspec @@ -0,0 +1,38 @@ +rockspec_format = "3.0" +package = "luarocks" +version = "3.9.1-1" +source = { + url = "git+https://github.com/luarocks/luarocks", + tag = "v3.9.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_interpreter=$(LUA)" } + }, + unix = { + flags = { "--exclude-tags=ssh,git", "-Xhelper", "lua_dir=$(LUA_DIR)", "-Xhelper", "lua_interpreter=$(LUA)" } + } + } +} diff --git a/luarocks-dev-1.rockspec b/luarocks-dev-1.rockspec deleted file mode 100644 index 718ce338..00000000 --- a/luarocks-dev-1.rockspec +++ /dev/null @@ -1,37 +0,0 @@ -rockspec_format = "3.0" -package = "luarocks" -version = "dev-1" -source = { - url = "git+https://github.com/luarocks/luarocks", -} -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_interpreter=$(LUA)" } - }, - unix = { - flags = { "--exclude-tags=ssh,git", "-Xhelper", "lua_dir=$(LUA_DIR)", "-Xhelper", "lua_interpreter=$(LUA)" } - } - } -} diff --git a/src/luarocks/core/cfg.lua b/src/luarocks/core/cfg.lua index 5b406121..62316782 100644 --- a/src/luarocks/core/cfg.lua +++ b/src/luarocks/core/cfg.lua @@ -20,7 +20,7 @@ local vers = require("luarocks.core.vers") -------------------------------------------------------------------------------- -local program_version = "dev" +local program_version = "3.9.1" local is_windows = package.config:sub(1,1) == "\\" -- cgit v1.2.3-55-g6feb