Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix url for current rockspec #3

Merged
merged 2 commits into from
Oct 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions rockspecs/mimetypes-1.0.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package = "mimetypes"
version = "1.0.0-1"
source = {
url = "https://bitbucket.org/leafstorm/lua-mimetypes/get/v1.0.0.tar.gz",
dir = "lua-mimetypes"
}

description = {
summary = "A simple library for looking up the MIME types of files.",
detailed = [[
This is a simple library for guessing a file's MIME type. It includes
a (hopefully) comprehensive database of MIME types, but it allows you
to create your own should you have specific requirements. It can
guess types both by extension and by the complete filename.
]],
homepage = "https://bitbucket.org/leafstorm/lua-mimetypes/",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
mimetypes = "mimetypes.lua"
}
}
29 changes: 29 additions & 0 deletions rockspecs/mimetypes-1.0.0-2.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package = "mimetypes"
version = "1.0.0-2"
source = {
url = "https://bitbucket.org/leafstorm/lua-mimetypes/get/v1.0.0.tar.gz",
dir = "leafstorm-lua-mimetypes-02100ff1171e"
}

description = {
summary = "A simple library for looking up the MIME types of files.",
detailed = [[
This is a simple library for guessing a file's MIME type. It includes
a (hopefully) comprehensive database of MIME types, but it allows you
to create your own should you have specific requirements. It can
guess types both by extension and by the complete filename.
]],
homepage = "https://bitbucket.org/leafstorm/lua-mimetypes/",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
mimetypes = "mimetypes.lua"
}
}
28 changes: 28 additions & 0 deletions rockspecs/mimetypes-1.0.0-3.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package = "mimetypes"
version = "1.0.0-3"
source = {
url = "https://github.com/lunarmodules/lua-mimetypes/archive/refs/tags/v1.0.0.tar.gz"
}

description = {
summary = "A simple library for looking up the MIME types of files.",
detailed = [[
This is a simple library for guessing a file's MIME type. It includes
a (hopefully) comprehensive database of MIME types, but it allows you
to create your own should you have specific requirements. It can
guess types both by extension and by the complete filename.
]],
homepage = "https://github/lunarmodules/lua-mimetypes/",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
mimetypes = "mimetypes.lua"
}
}
Loading