From 023e7910b5e5e3cacbe22f8401b0c0f8782763ce Mon Sep 17 00:00:00 2001 From: "Vadim A. Misbakh-Soloviov" Date: Fri, 14 Jul 2017 13:26:57 +0700 Subject: [PATCH] return of old rockspecs (just in case) --- rockspecs/htmlparser-0.1-1.rockspec | 26 +++++++++++++++++++++++++ rockspecs/htmlparser-0.1.1-1.rockspec | 28 +++++++++++++++++++++++++++ rockspecs/htmlparser-0.2-1.rockspec | 28 +++++++++++++++++++++++++++ rockspecs/htmlparser-0.3-1.rockspec | 28 +++++++++++++++++++++++++++ rockspecs/htmlparser-0.3.1-1.rockspec | 28 +++++++++++++++++++++++++++ rockspecs/htmlparser-0.3.2-1.rockspec | 28 +++++++++++++++++++++++++++ rockspecs/htmlparser-0.3.2-2.rockspec | 28 +++++++++++++++++++++++++++ 7 files changed, 194 insertions(+) create mode 100644 rockspecs/htmlparser-0.1-1.rockspec create mode 100644 rockspecs/htmlparser-0.1.1-1.rockspec create mode 100644 rockspecs/htmlparser-0.2-1.rockspec create mode 100644 rockspecs/htmlparser-0.3-1.rockspec create mode 100644 rockspecs/htmlparser-0.3.1-1.rockspec create mode 100644 rockspecs/htmlparser-0.3.2-1.rockspec create mode 100644 rockspecs/htmlparser-0.3.2-2.rockspec diff --git a/rockspecs/htmlparser-0.1-1.rockspec b/rockspecs/htmlparser-0.1-1.rockspec new file mode 100644 index 0000000..4238859 --- /dev/null +++ b/rockspecs/htmlparser-0.1-1.rockspec @@ -0,0 +1,26 @@ +package = "htmlparser" +version = "0.1-1" +source = { + url = "git://github.com/wscherphof/lua-htmlparser.git", + branch = "v0.1" +} +description = { + summary = "Parse HTML text into a tree of elements with selectors", + detailed = [[ + Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand. + ]], + homepage = "http://wscherphof.github.com/lua-htmlparser/", + license = "MIT" +} +dependencies = { + "lua >= 5.2", + "set >= 0.1" +} +build = { + type = "builtin", + modules = { + htmlparser = "src/htmlparser.lua", + ["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua", + ["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua" + } +} \ No newline at end of file diff --git a/rockspecs/htmlparser-0.1.1-1.rockspec b/rockspecs/htmlparser-0.1.1-1.rockspec new file mode 100644 index 0000000..816f07d --- /dev/null +++ b/rockspecs/htmlparser-0.1.1-1.rockspec @@ -0,0 +1,28 @@ +package = "htmlparser" +version = "0.1.1-1" +source = { + url = "git://github.com/wscherphof/lua-htmlparser.git", + branch = "v0.1.1" +} +description = { + summary = "Parse HTML text into a tree of elements with selectors", + detailed = [[ + Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand. + ]], + homepage = "http://wscherphof.github.io/lua-htmlparser/", + license = "MIT" +} +dependencies = { + "lua >= 5.2", + "set >= 0.1", + "lunitx >= 0.6" +} +build = { + type = "builtin", + copy_directories = {"doc", "tst"}, + modules = { + htmlparser = "src/htmlparser.lua", + ["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua", + ["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua" + } +} \ No newline at end of file diff --git a/rockspecs/htmlparser-0.2-1.rockspec b/rockspecs/htmlparser-0.2-1.rockspec new file mode 100644 index 0000000..39da275 --- /dev/null +++ b/rockspecs/htmlparser-0.2-1.rockspec @@ -0,0 +1,28 @@ +package = "htmlparser" +version = "0.2-1" +source = { + url = "git://github.com/wscherphof/lua-htmlparser.git", + branch = "v0.2" +} +description = { + summary = "Parse HTML text into a tree of elements with selectors", + detailed = [[ + Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand. + ]], + homepage = "http://wscherphof.github.io/lua-htmlparser/", + license = "LGPL+" +} +dependencies = { + "lua >= 5.2", + "set >= 0.2", + "lunitx >= 0.6" +} +build = { + type = "builtin", + copy_directories = {"doc", "tst"}, + modules = { + htmlparser = "src/htmlparser.lua", + ["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua", + ["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua" + } +} diff --git a/rockspecs/htmlparser-0.3-1.rockspec b/rockspecs/htmlparser-0.3-1.rockspec new file mode 100644 index 0000000..e33d116 --- /dev/null +++ b/rockspecs/htmlparser-0.3-1.rockspec @@ -0,0 +1,28 @@ +package = "htmlparser" +version = "0.3-1" +source = { + url = "git://github.com/wscherphof/lua-htmlparser.git", + branch = "v0.3" +} +description = { + summary = "Parse HTML text into a tree of elements with selectors", + detailed = [[ + Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand. + ]], + homepage = "http://wscherphof.github.io/lua-htmlparser/", + license = "LGPL+" +} +dependencies = { + "lua >= 5.2", + "set >= 0.2", + "lunitx >= 0.6" +} +build = { + type = "builtin", + copy_directories = {"doc", "tst"}, + modules = { + htmlparser = "src/htmlparser.lua", + ["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua", + ["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua" + } +} diff --git a/rockspecs/htmlparser-0.3.1-1.rockspec b/rockspecs/htmlparser-0.3.1-1.rockspec new file mode 100644 index 0000000..9eccd9e --- /dev/null +++ b/rockspecs/htmlparser-0.3.1-1.rockspec @@ -0,0 +1,28 @@ +package = "htmlparser" +version = "0.3.1-1" +source = { + url = "git://github.com/wscherphof/lua-htmlparser.git", + branch = "v0.3.1" +} +description = { + summary = "Parse HTML text into a tree of elements with selectors", + detailed = [[ + Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand. + ]], + homepage = "http://wscherphof.github.io/lua-htmlparser/", + license = "LGPL+" +} +dependencies = { + "lua >= 5.2", + "set >= 0.2", + "lunitx >= 0.6" +} +build = { + type = "builtin", + copy_directories = {"doc", "tst"}, + modules = { + htmlparser = "src/htmlparser.lua", + ["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua", + ["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua" + } +} diff --git a/rockspecs/htmlparser-0.3.2-1.rockspec b/rockspecs/htmlparser-0.3.2-1.rockspec new file mode 100644 index 0000000..e6563ad --- /dev/null +++ b/rockspecs/htmlparser-0.3.2-1.rockspec @@ -0,0 +1,28 @@ +package = "htmlparser" +version = "0.3.2-1" +source = { + url = "git://github.com/wscherphof/lua-htmlparser.git", + branch = "v0.3.2" +} +description = { + summary = "Parse HTML text into a tree of elements with selectors", + detailed = [[ + Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand. + ]], + homepage = "http://wscherphof.github.io/lua-htmlparser/", + license = "LGPL+" +} +dependencies = { + "lua >= 5.2", + "set >= 0.2", + "lunitx >= 0.6" +} +build = { + type = "builtin", + copy_directories = {"doc", "tst"}, + modules = { + htmlparser = "src/htmlparser.lua", + ["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua", + ["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua" + } +} diff --git a/rockspecs/htmlparser-0.3.2-2.rockspec b/rockspecs/htmlparser-0.3.2-2.rockspec new file mode 100644 index 0000000..07d15d4 --- /dev/null +++ b/rockspecs/htmlparser-0.3.2-2.rockspec @@ -0,0 +1,28 @@ +package = "htmlparser" +version = "0.3.2-2" +source = { + url = "https://github.com/msva/lua-htmlparser", + branch = "v0.3.2" +} +description = { + summary = "Parse HTML text into a tree of elements with selectors", + detailed = [[ + Call parse() to build up a tree of element nodes. Each node in the tree, including the root node that is returned by parse(), supports a basic set of jQuery-like selectors. Or you could walk the tree by hand. + ]], + homepage = "http://msva.github.io/lua-htmlparser/", + license = "LGPL+" +} +dependencies = { + "lua >= 5.1", + "set >= 0.2.1-2", + "lunitx >= 0.6" +} +build = { + type = "builtin", + copy_directories = {"doc", "tst"}, + modules = { + htmlparser = "src/htmlparser.lua", + ["htmlparser.ElementNode"] = "src/htmlparser/ElementNode.lua", + ["htmlparser.voidelements"] = "src/htmlparser/voidelements.lua" + } +}