Skip to content

Commit

Permalink
chore: Re-release 1.4.1 as rockrel3, fix tag scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Aug 27, 2022
1 parent 6ccc41d commit 45a3057
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions rockspecs/say-1.4.1-3.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package = "say"
local rock_version = "1.4.1"
local rock_release = "3"
local namespace = "lunarmodules"
local repository = package

version = ("%s-%s"):format(rock_version, rock_release)

source = {
url = ("git+https://github.com/%s/%s.git"):format(namespace, repository),
branch = rock_version == "scm" and "master" or nil,
tag = rock_version ~= "scm" and "v"..rock_version or nil,
}

description = {
summary = "Lua string hashing/indexing library",
detailed = [[
Useful for internationalization.
]],
license = "MIT",
homepage = ("https://%s.github.io/%s"):format(namespace, repository),
maintainer = "Caleb Maclennan <caleb@alerque.com>",
}

dependencies = {
"lua >= 5.1",
}
build = {
type = "builtin",
modules = {
say = "src/say/init.lua"
}
}
2 changes: 1 addition & 1 deletion say-scm-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = ("%s-%s"):format(rock_version, rock_release)
source = {
url = ("git+https://github.com/%s/%s.git"):format(namespace, repository),
branch = rock_version == "scm" and "master" or nil,
tag = rock_version ~= "scm" and rock_version or nil,
tag = rock_version ~= "scm" and "v"..rock_version or nil,
}

description = {
Expand Down

0 comments on commit 45a3057

Please sign in to comment.