changeset 1311:8483375b51c2

<GreyKnight> mv *.rock *.rockspec luabuild/rockfiles
author HackBot
date Wed, 09 Jan 2013 08:36:05 +0000
parents 5d58825150ae
children 8fc3d4c03ffc
files luabuild/rockfiles/luafilesystem-1.6.2-1.rockspec luabuild/rockfiles/luafilesystem-1.6.2-1.src.rock luabuild/rockfiles/penlight-1.0.0-1.rockspec luabuild/rockfiles/penlight-1.0.0-1.src.rock luafilesystem-1.6.2-1.rockspec luafilesystem-1.6.2-1.src.rock penlight-1.0.0-1.rockspec penlight-1.0.0-1.src.rock
diffstat 8 files changed, 94 insertions(+), 94 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/luabuild/rockfiles/luafilesystem-1.6.2-1.rockspec	Wed Jan 09 08:36:05 2013 +0000
@@ -0,0 +1,27 @@
+package = "LuaFileSystem"
+
+version = "1.6.2-1"
+
+source = {
+   url = "https://github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.6.2.tar.gz",
+}
+
+description = {
+   summary = "File System Library for the Lua Programming Language",
+   detailed = [[
+      LuaFileSystem is a Lua library developed to complement the set of
+      functions related to file systems offered by the standard Lua
+      distribution. LuaFileSystem offers a portable way to access the
+      underlying directory structure and file attributes.
+   ]]
+}
+
+dependencies = {
+   "lua >= 5.1"
+}
+
+build = {
+   type = "builtin",
+   modules = { lfs = "src/lfs.c" },
+   copy_directories = { "doc", "tests" }
+}
Binary file luabuild/rockfiles/luafilesystem-1.6.2-1.src.rock has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/luabuild/rockfiles/penlight-1.0.0-1.rockspec	Wed Jan 09 08:36:05 2013 +0000
@@ -0,0 +1,67 @@
+package = "penlight"
+version = "1.0.0-1"
+
+source = {
+  dir = "penlight-1.0.0",
+  url = "http://stevedonovan.github.com/files/penlight-1.0.0-core.zip",
+}
+
+description = {
+  summary = "Lua utility libraries loosely based on the Python standard libraries",
+  homepage = "http://stevedonovan.github.com/Penlight",
+  license = "MIT/X11",
+  maintainer = "steve.j.donovan@gmail.com",
+  homepage = "http://stevedonovan.github.com/Penlight/api/index.html",
+  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.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.platf.luajava"] = "lua/pl/platf/luajava.lua"
+  },
+}
+
Binary file luabuild/rockfiles/penlight-1.0.0-1.src.rock has changed
--- a/luafilesystem-1.6.2-1.rockspec	Wed Jan 09 08:29:32 2013 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-package = "LuaFileSystem"
-
-version = "1.6.2-1"
-
-source = {
-   url = "https://github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.6.2.tar.gz",
-}
-
-description = {
-   summary = "File System Library for the Lua Programming Language",
-   detailed = [[
-      LuaFileSystem is a Lua library developed to complement the set of
-      functions related to file systems offered by the standard Lua
-      distribution. LuaFileSystem offers a portable way to access the
-      underlying directory structure and file attributes.
-   ]]
-}
-
-dependencies = {
-   "lua >= 5.1"
-}
-
-build = {
-   type = "builtin",
-   modules = { lfs = "src/lfs.c" },
-   copy_directories = { "doc", "tests" }
-}
Binary file luafilesystem-1.6.2-1.src.rock has changed
--- a/penlight-1.0.0-1.rockspec	Wed Jan 09 08:29:32 2013 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,67 +0,0 @@
-package = "penlight"
-version = "1.0.0-1"
-
-source = {
-  dir = "penlight-1.0.0",
-  url = "http://stevedonovan.github.com/files/penlight-1.0.0-core.zip",
-}
-
-description = {
-  summary = "Lua utility libraries loosely based on the Python standard libraries",
-  homepage = "http://stevedonovan.github.com/Penlight",
-  license = "MIT/X11",
-  maintainer = "steve.j.donovan@gmail.com",
-  homepage = "http://stevedonovan.github.com/Penlight/api/index.html",
-  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.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.platf.luajava"] = "lua/pl/platf/luajava.lua"
-  },
-}
-
Binary file penlight-1.0.0-1.src.rock has changed