Skip to content

Commit

Permalink
chore(rockspec): Move repo rockspec to dev-1, archive published scm-3…
Browse files Browse the repository at this point in the history
… one
  • Loading branch information
alerque committed Sep 30, 2020
1 parent 4f124fd commit ba36a08
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 1 deletion.
2 changes: 1 addition & 1 deletion penlight-scm-4.rockspec → penlight-dev-1.rockspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rockspec_format = "3.0"
package = "penlight"
version = "scm-4"
version = "dev-1"

source = {
url = "git://github.com/lunarmodules/Penlight.git",
Expand Down
69 changes: 69 additions & 0 deletions rockspecs/penlight-scm-3.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
package = "penlight"
version = "scm-3"

source = {
url = "git://github.com/lunarmodules/Penlight.git",
branch = "master"
}

description = {
summary = "Lua utility libraries loosely based on the Python standard libraries",
homepage = "https://lunarmodules.github.io/Penlight",
license = "MIT/X11",
maintainer = "thijs@thijsschreijer.nl",
detailed = [[
Penlight is a set of pure Lua libraries for making it easier to work with common tasks like
iterating over directories, reading configuration files and the like. Provides functional operations
on tables and sequences.
]]
}

dependencies = {
"luafilesystem"
}

build = {
type = "builtin",
modules = {
["pl"] = "lua/pl/init.lua",
["pl.strict"] = "lua/pl/strict.lua",
["pl.dir"] = "lua/pl/dir.lua",
["pl.operator"] = "lua/pl/operator.lua",
["pl.input"] = "lua/pl/input.lua",
["pl.config"] = "lua/pl/config.lua",
["pl.seq"] = "lua/pl/seq.lua",
["pl.stringio"] = "lua/pl/stringio.lua",
["pl.text"] = "lua/pl/text.lua",
["pl.test"] = "lua/pl/test.lua",
["pl.tablex"] = "lua/pl/tablex.lua",
["pl.app"] = "lua/pl/app.lua",
["pl.stringx"] = "lua/pl/stringx.lua",
["pl.lexer"] = "lua/pl/lexer.lua",
["pl.utils"] = "lua/pl/utils.lua",
["pl.compat"] = "lua/pl/compat.lua",
["pl.sip"] = "lua/pl/sip.lua",
["pl.permute"] = "lua/pl/permute.lua",
["pl.pretty"] = "lua/pl/pretty.lua",
["pl.class"] = "lua/pl/class.lua",
["pl.List"] = "lua/pl/List.lua",
["pl.data"] = "lua/pl/data.lua",
["pl.Date"] = "lua/pl/Date.lua",
["pl.luabalanced"] = "lua/pl/luabalanced.lua",
["pl.comprehension"] = "lua/pl/comprehension.lua",
["pl.path"] = "lua/pl/path.lua",
["pl.array2d"] = "lua/pl/array2d.lua",
["pl.func"] = "lua/pl/func.lua",
["pl.lapp"] = "lua/pl/lapp.lua",
["pl.file"] = "lua/pl/file.lua",
['pl.template'] = "lua/pl/template.lua",
["pl.Map"] = "lua/pl/Map.lua",
["pl.MultiMap"] = "lua/pl/MultiMap.lua",
["pl.OrderedMap"] = "lua/pl/OrderedMap.lua",
["pl.Set"] = "lua/pl/Set.lua",
["pl.xml"] = "lua/pl/xml.lua",
["pl.url"] = "lua/pl/url.lua",
["pl.types"] = "lua/pl/types.lua",
["pl.import_into"] = "lua/pl/import_into.lua"
},
copy_directories = {"docs", "tests"}
}

0 comments on commit ba36a08

Please sign in to comment.