release 7.1.0

Updates the dev rockspec to pin to a tag, such that new rockspecs
generated from it will not point to `master` but to the version
tag.
This commit is contained in:
Thijs Schreijer
2023-10-30 15:11:11 +01:00
parent 9eced53a8d
commit dbdd9d9ab8
3 changed files with 90 additions and 10 deletions

View File

@@ -1,22 +1,27 @@
-- Packs lua-iconv into a LuaRock
-- rockspec based uppon the file provided by DarkGod <darkgod at net-core.org>
local package_name = "lua-iconv"
local package_version = "dev"
local rockspec_revision = "1"
local github_account_name = "lunarmodules"
local github_repo_name = package_name
package = "lua-iconv"
version = "dev-1"
package = package_name
version = package_version.."-"..rockspec_revision
source = {
url = "git+https://github.com/lunarmodules/lua-iconv",
url = "git+https://github.com/"..github_account_name.."/"..github_repo_name..".git",
branch = (package_version == "dev") and "master" or nil,
tag = (package_version ~= "dev") and ("v" .. package_version) or nil,
}
description = {
summary = "Lua binding to the iconv",
detailed = [[
Lua binding to the POSIX 'iconv' library, which converts a sequence of
characters from one codeset into a sequence of corresponding characters
in another codeset.
]],
Lua binding to the POSIX 'iconv' library, which converts a sequence of
characters from one codeset into a sequence of corresponding characters
in another codeset.
]],
license = "MIT/X11",
homepage = "https://github.com/lunarmodules/lua-iconv/"
homepage = "https://github.com/"..github_account_name.."/"..github_repo_name,
}
dependencies = {