From 2a78c2280e1f41523c6649acf41bb39fddf07890 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Tue, 27 Feb 2024 15:17:11 -0300 Subject: Release 3.10.0 --- luarocks-3.10.0-1.rockspec | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 luarocks-3.10.0-1.rockspec (limited to 'luarocks-3.10.0-1.rockspec') diff --git a/luarocks-3.10.0-1.rockspec b/luarocks-3.10.0-1.rockspec new file mode 100644 index 00000000..a5673d1d --- /dev/null +++ b/luarocks-3.10.0-1.rockspec @@ -0,0 +1,38 @@ +rockspec_format = "3.0" +package = "luarocks" +version = "3.10.0-1" +source = { + url = "git+https://github.com/luarocks/luarocks", + tag = "v3.10.0" +} +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)" } + } + } +} -- cgit v1.2.3-55-g6feb