Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stevedonovan/Penlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2022-03-18 15:16:00 +0300
committerThijs Schreijer <thijs@thijsschreijer.nl>2022-03-18 15:19:02 +0300
commit128f015da7670349301a96d9fd1f70a7167ba534 (patch)
treea9a1e24e467253e67919a399aea206d43af6aecd
parent9542a55de75d30bcbccdb095fd8bf2dd43227ea0 (diff)
chore(rockspecs) new revisions fro deprecated protocol
-rw-r--r--rockspecs/penlight-1.10.0-2.rockspec78
-rw-r--r--rockspecs/penlight-1.11.0-2.rockspec78
-rw-r--r--rockspecs/penlight-1.12.0-2.rockspec78
-rw-r--r--rockspecs/penlight-1.6.0-2.rockspec70
-rw-r--r--rockspecs/penlight-1.7.0-2.rockspec70
-rw-r--r--rockspecs/penlight-1.8.0-2.rockspec70
-rw-r--r--rockspecs/penlight-1.8.1-2.rockspec70
-rw-r--r--rockspecs/penlight-1.9.1-2.rockspec70
-rw-r--r--rockspecs/penlight-1.9.2-2.rockspec70
9 files changed, 654 insertions, 0 deletions
diff --git a/rockspecs/penlight-1.10.0-2.rockspec b/rockspecs/penlight-1.10.0-2.rockspec
new file mode 100644
index 0000000..622a219
--- /dev/null
+++ b/rockspecs/penlight-1.10.0-2.rockspec
@@ -0,0 +1,78 @@
+local package_name = "penlight"
+local package_version = "1.10.0"
+local rockspec_revision = "2"
+local github_account_name = "lunarmodules"
+local github_repo_name = package_name
+local git_checkout = package_version == "dev" and "master" or package_version
+
+
+package = package_name
+version = package_version .. "-" .. rockspec_revision
+
+source = {
+ url = "git+https://github.com/"..github_account_name.."/"..github_repo_name..".git",
+ branch = git_checkout
+}
+
+description = {
+ summary = "Lua utility libraries loosely based on the Python standard libraries",
+ homepage = "https://"..github_account_name..".github.io/"..github_repo_name,
+ 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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+
diff --git a/rockspecs/penlight-1.11.0-2.rockspec b/rockspecs/penlight-1.11.0-2.rockspec
new file mode 100644
index 0000000..23a6a11
--- /dev/null
+++ b/rockspecs/penlight-1.11.0-2.rockspec
@@ -0,0 +1,78 @@
+local package_name = "penlight"
+local package_version = "1.11.0"
+local rockspec_revision = "2"
+local github_account_name = "lunarmodules"
+local github_repo_name = package_name
+local git_checkout = package_version == "dev" and "master" or package_version
+
+
+package = package_name
+version = package_version .. "-" .. rockspec_revision
+
+source = {
+ url = "git+https://github.com/"..github_account_name.."/"..github_repo_name..".git",
+ branch = git_checkout
+}
+
+description = {
+ summary = "Lua utility libraries loosely based on the Python standard libraries",
+ homepage = "https://"..github_account_name..".github.io/"..github_repo_name,
+ 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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+
diff --git a/rockspecs/penlight-1.12.0-2.rockspec b/rockspecs/penlight-1.12.0-2.rockspec
new file mode 100644
index 0000000..39ddf10
--- /dev/null
+++ b/rockspecs/penlight-1.12.0-2.rockspec
@@ -0,0 +1,78 @@
+local package_name = "penlight"
+local package_version = "1.12.0"
+local rockspec_revision = "2"
+local github_account_name = "lunarmodules"
+local github_repo_name = package_name
+local git_checkout = package_version == "dev" and "master" or package_version
+
+
+package = package_name
+version = package_version .. "-" .. rockspec_revision
+
+source = {
+ url = "git+https://github.com/"..github_account_name.."/"..github_repo_name..".git",
+ branch = git_checkout
+}
+
+description = {
+ summary = "Lua utility libraries loosely based on the Python standard libraries",
+ homepage = "https://"..github_account_name..".github.io/"..github_repo_name,
+ 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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+
diff --git a/rockspecs/penlight-1.6.0-2.rockspec b/rockspecs/penlight-1.6.0-2.rockspec
new file mode 100644
index 0000000..b8fbfa7
--- /dev/null
+++ b/rockspecs/penlight-1.6.0-2.rockspec
@@ -0,0 +1,70 @@
+package = "penlight"
+version = "1.6.0-2"
+
+source = {
+ url = "git+https://github.com/Tieske/Penlight.git",
+ branch = "1.6.0"
+}
+
+description = {
+ summary = "Lua utility libraries loosely based on the Python standard libraries",
+ homepage = "http://tieske.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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+
diff --git a/rockspecs/penlight-1.7.0-2.rockspec b/rockspecs/penlight-1.7.0-2.rockspec
new file mode 100644
index 0000000..5013503
--- /dev/null
+++ b/rockspecs/penlight-1.7.0-2.rockspec
@@ -0,0 +1,70 @@
+package = "penlight"
+version = "1.7.0-2"
+
+source = {
+ url = "git+https://github.com/Tieske/Penlight.git",
+ branch = "1.7.0"
+}
+
+description = {
+ summary = "Lua utility libraries loosely based on the Python standard libraries",
+ homepage = "http://tieske.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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+
diff --git a/rockspecs/penlight-1.8.0-2.rockspec b/rockspecs/penlight-1.8.0-2.rockspec
new file mode 100644
index 0000000..d48571e
--- /dev/null
+++ b/rockspecs/penlight-1.8.0-2.rockspec
@@ -0,0 +1,70 @@
+package = "penlight"
+version = "1.8.0-2"
+
+source = {
+ url = "git+https://github.com/Tieske/Penlight.git",
+ branch = "1.8.0"
+}
+
+description = {
+ summary = "Lua utility libraries loosely based on the Python standard libraries",
+ homepage = "http://tieske.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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+
diff --git a/rockspecs/penlight-1.8.1-2.rockspec b/rockspecs/penlight-1.8.1-2.rockspec
new file mode 100644
index 0000000..7f05877
--- /dev/null
+++ b/rockspecs/penlight-1.8.1-2.rockspec
@@ -0,0 +1,70 @@
+package = "penlight"
+version = "1.8.1-2"
+
+source = {
+ url = "git+https://github.com/lunarmodules/Penlight.git",
+ tag = "1.8.1"
+}
+
+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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+
diff --git a/rockspecs/penlight-1.9.1-2.rockspec b/rockspecs/penlight-1.9.1-2.rockspec
new file mode 100644
index 0000000..f0704ff
--- /dev/null
+++ b/rockspecs/penlight-1.9.1-2.rockspec
@@ -0,0 +1,70 @@
+package = "penlight"
+version = "1.9.1-2"
+
+source = {
+ url = "git+https://github.com/lunarmodules/Penlight.git",
+ tag = "1.9.1"
+}
+
+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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+
diff --git a/rockspecs/penlight-1.9.2-2.rockspec b/rockspecs/penlight-1.9.2-2.rockspec
new file mode 100644
index 0000000..0caf00e
--- /dev/null
+++ b/rockspecs/penlight-1.9.2-2.rockspec
@@ -0,0 +1,70 @@
+package = "penlight"
+version = "1.9.2-2"
+
+source = {
+ url = "git+https://github.com/lunarmodules/Penlight.git",
+ tag = "1.9.2"
+}
+
+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.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.compat"] = "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.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.init"] = "lua/pl/init.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.import_into"] = "lua/pl/import_into.lua",
+ ["pl.types"] = "lua/pl/types.lua",
+ },
+ copy_directories = {"docs", "tests"}
+}
+