|
| 1 | +package = "elasticsearch" |
| 2 | +version = "1.0.1-1" |
| 3 | +source = { |
| 4 | + url = "git://github.com/DhavalKapil/elasticsearch-lua", |
| 5 | + tag = "v1.0.1" |
| 6 | +} |
| 7 | +description = { |
| 8 | + summary = "Elasticsearch client for the Lua language", |
| 9 | + detailed = [[ |
| 10 | + This is an elasticsearch client written in Lua. In accordance with other official low level clients, the client accepts associative arrays in the form of lua table as parameters. |
| 11 | + ]], |
| 12 | + homepage = "https://github.com/DhavalKapil/elasticsearch-lua", |
| 13 | + license = "MIT" |
| 14 | +} |
| 15 | +dependencies = { |
| 16 | + "lua >= 5.1, < 5.4", |
| 17 | + "luasocket", |
| 18 | + "lua-cjson", |
| 19 | + "lunitx" |
| 20 | +} |
| 21 | +build = { |
| 22 | + type = "builtin", |
| 23 | + modules = { |
| 24 | + ["elasticsearch"] = "src/elasticsearch.lua", |
| 25 | + ["elasticsearch.Nodes"] = "src/elasticsearch/Nodes.lua", |
| 26 | + ["elasticsearch.Transport"] = "src/elasticsearch/Transport.lua", |
| 27 | + ["elasticsearch.Tasks"] = "src/elasticsearch/Tasks.lua", |
| 28 | + ["elasticsearch.Cluster"] = "src/elasticsearch/Cluster.lua", |
| 29 | + ["elasticsearch.Snapshot"] = "src/elasticsearch/Snapshot.lua", |
| 30 | + ["elasticsearch.Cat"] = "src/elasticsearch/Cat.lua", |
| 31 | + ["elasticsearch.helpers"] = "src/elasticsearch/helpers.lua", |
| 32 | + ["elasticsearch.Settings"] = "src/elasticsearch/Settings.lua", |
| 33 | + ["elasticsearch.Logger"] = "src/elasticsearch/Logger.lua", |
| 34 | + ["elasticsearch.parser"] = "src/elasticsearch/parser.lua", |
| 35 | + ["elasticsearch.Indices"] = "src/elasticsearch/Indices.lua", |
| 36 | + ["elasticsearch.Client"] = "src/elasticsearch/Client.lua", |
| 37 | + |
| 38 | + ["elasticsearch.connection.Connection"] = "src/elasticsearch/connection/Connection.lua", |
| 39 | + |
| 40 | + ["elasticsearch.selector.RoundRobinSelector"] = "src/elasticsearch/selector/RoundRobinSelector.lua", |
| 41 | + ["elasticsearch.selector.Selector"] = "src/elasticsearch/selector/Selector.lua", |
| 42 | + ["elasticsearch.selector.StickyRoundRobinSelector"] = "src/elasticsearch/selector/StickyRoundRobinSelector.lua", |
| 43 | + ["elasticsearch.selector.RandomSelector"] = "src/elasticsearch/selector/RandomSelector.lua", |
| 44 | + |
| 45 | + ["elasticsearch.connectionpool.ConnectionPool"] = "src/elasticsearch/connectionpool/ConnectionPool.lua", |
| 46 | + ["elasticsearch.connectionpool.StaticConnectionPool"] = "src/elasticsearch/connectionpool/StaticConnectionPool.lua", |
| 47 | + ["elasticsearch.connectionpool.SniffConnectionPool"] = "src/elasticsearch/connectionpool/SniffConnectionPool.lua", |
| 48 | + |
| 49 | + ["elasticsearch.endpoints.MSearch"] = "src/elasticsearch/endpoints/MSearch.lua", |
| 50 | + ["elasticsearch.endpoints.TermVectors"] = "src/elasticsearch/endpoints/TermVectors.lua", |
| 51 | + ["elasticsearch.endpoints.Suggest"] = "src/elasticsearch/endpoints/Suggest.lua", |
| 52 | + ["elasticsearch.endpoints.PutTemplate"] = "src/elasticsearch/endpoints/PutTemplate.lua", |
| 53 | + ["elasticsearch.endpoints.Search"] = "src/elasticsearch/endpoints/Search.lua", |
| 54 | + ["elasticsearch.endpoints.Bulk"] = "src/elasticsearch/endpoints/Bulk.lua", |
| 55 | + ["elasticsearch.endpoints.SearchExists"] = "src/elasticsearch/endpoints/SearchExists.lua", |
| 56 | + ["elasticsearch.endpoints.ReIndex"] = "src/elasticsearch/endpoints/ReIndex.lua", |
| 57 | + ["elasticsearch.endpoints.Index"] = "src/elasticsearch/endpoints/Index.lua", |
| 58 | + ["elasticsearch.endpoints.TemplateEndpoint"] = "src/elasticsearch/endpoints/TemplateEndpoint.lua", |
| 59 | + ["elasticsearch.endpoints.CountPercolate"] = "src/elasticsearch/endpoints/CountPercolate.lua", |
| 60 | + ["elasticsearch.endpoints.MPercolate"] = "src/elasticsearch/endpoints/MPercolate.lua", |
| 61 | + ["elasticsearch.endpoints.GetTemplate"] = "src/elasticsearch/endpoints/GetTemplate.lua", |
| 62 | + ["elasticsearch.endpoints.RenderSearchTemplate"] = "src/elasticsearch/endpoints/RenderSearchTemplate.lua", |
| 63 | + ["elasticsearch.endpoints.Percolate"] = "src/elasticsearch/endpoints/Percolate.lua", |
| 64 | + ["elasticsearch.endpoints.Info"] = "src/elasticsearch/endpoints/Info.lua", |
| 65 | + ["elasticsearch.endpoints.Delete"] = "src/elasticsearch/endpoints/Delete.lua", |
| 66 | + ["elasticsearch.endpoints.SearchShards"] = "src/elasticsearch/endpoints/SearchShards.lua", |
| 67 | + ["elasticsearch.endpoints.DeleteTemplate"] = "src/elasticsearch/endpoints/DeleteTemplate.lua", |
| 68 | + ["elasticsearch.endpoints.Update"] = "src/elasticsearch/endpoints/Update.lua", |
| 69 | + ["elasticsearch.endpoints.Get"] = "src/elasticsearch/endpoints/Get.lua", |
| 70 | + ["elasticsearch.endpoints.Scroll"] = "src/elasticsearch/endpoints/Scroll.lua", |
| 71 | + ["elasticsearch.endpoints.Explain"] = "src/elasticsearch/endpoints/Explain.lua", |
| 72 | + ["elasticsearch.endpoints.MTermVectors"] = "src/elasticsearch/endpoints/MTermVectors.lua", |
| 73 | + ["elasticsearch.endpoints.MGet"] = "src/elasticsearch/endpoints/MGet.lua", |
| 74 | + ["elasticsearch.endpoints.SearchTemplate"] = "src/elasticsearch/endpoints/SearchTemplate.lua", |
| 75 | + ["elasticsearch.endpoints.Count"] = "src/elasticsearch/endpoints/Count.lua", |
| 76 | + ["elasticsearch.endpoints.Ping"] = "src/elasticsearch/endpoints/Ping.lua", |
| 77 | + ["elasticsearch.endpoints.FieldStats"] = "src/elasticsearch/endpoints/FieldStats.lua", |
| 78 | + ["elasticsearch.endpoints.Endpoint"] = "src/elasticsearch/endpoints/Endpoint.lua", |
| 79 | + ["elasticsearch.endpoints.UpdateByQuery"] = "src/elasticsearch/endpoints/UpdateByQuery.lua", |
| 80 | + ["elasticsearch.endpoints.Mlt"] = "src/elasticsearch/endpoints/Mlt.lua", |
| 81 | + ["elasticsearch.endpoints.DeleteByQuery"] = "src/elasticsearch/endpoints/DeleteByQuery.lua", |
| 82 | + |
| 83 | + ["elasticsearch.endpoints.Cat.Aliases"] = "src/elasticsearch/endpoints/Cat/Aliases.lua", |
| 84 | + ["elasticsearch.endpoints.Cat.Health"] = "src/elasticsearch/endpoints/Cat/Health.lua", |
| 85 | + ["elasticsearch.endpoints.Cat.Nodes"] = "src/elasticsearch/endpoints/Cat/Nodes.lua", |
| 86 | + ["elasticsearch.endpoints.Cat.NodeAttrs"] = "src/elasticsearch/endpoints/Cat/NodeAttrs.lua", |
| 87 | + ["elasticsearch.endpoints.Cat.PendingTasks"] = "src/elasticsearch/endpoints/Cat/PendingTasks.lua", |
| 88 | + ["elasticsearch.endpoints.Cat.Allocation"] = "src/elasticsearch/endpoints/Cat/Allocation.lua", |
| 89 | + ["elasticsearch.endpoints.Cat.CatEndpoint"] = "src/elasticsearch/endpoints/Cat/CatEndpoint.lua", |
| 90 | + ["elasticsearch.endpoints.Cat.Recovery"] = "src/elasticsearch/endpoints/Cat/Recovery.lua", |
| 91 | + ["elasticsearch.endpoints.Cat.FieldData"] = "src/elasticsearch/endpoints/Cat/FieldData.lua", |
| 92 | + ["elasticsearch.endpoints.Cat.Snapshots"] = "src/elasticsearch/endpoints/Cat/Snapshots.lua", |
| 93 | + ["elasticsearch.endpoints.Cat.ThreadPool"] = "src/elasticsearch/endpoints/Cat/ThreadPool.lua", |
| 94 | + ["elasticsearch.endpoints.Cat.Segments"] = "src/elasticsearch/endpoints/Cat/Segments.lua", |
| 95 | + ["elasticsearch.endpoints.Cat.Repositories"] = "src/elasticsearch/endpoints/Cat/Repositories.lua", |
| 96 | + ["elasticsearch.endpoints.Cat.Count"] = "src/elasticsearch/endpoints/Cat/Count.lua", |
| 97 | + ["elasticsearch.endpoints.Cat.Master"] = "src/elasticsearch/endpoints/Cat/Master.lua", |
| 98 | + ["elasticsearch.endpoints.Cat.Indices"] = "src/elasticsearch/endpoints/Cat/Indices.lua", |
| 99 | + ["elasticsearch.endpoints.Cat.Shards"] = "src/elasticsearch/endpoints/Cat/Shards.lua", |
| 100 | + ["elasticsearch.endpoints.Cat.Plugins"] = "src/elasticsearch/endpoints/Cat/Plugins.lua", |
| 101 | + ["elasticsearch.endpoints.Cat.Help"] = "src/elasticsearch/endpoints/Cat/Help.lua", |
| 102 | + |
| 103 | + ["elasticsearch.endpoints.Cluster.Health"] = "src/elasticsearch/endpoints/Cluster/Health.lua", |
| 104 | + ["elasticsearch.endpoints.Cluster.PendingTasks"] = "src/elasticsearch/endpoints/Cluster/PendingTasks.lua", |
| 105 | + ["elasticsearch.endpoints.Cluster.Stats"] = "src/elasticsearch/endpoints/Cluster/Stats.lua", |
| 106 | + ["elasticsearch.endpoints.Cluster.Reroute"] = "src/elasticsearch/endpoints/Cluster/Reroute.lua", |
| 107 | + ["elasticsearch.endpoints.Cluster.State"] = "src/elasticsearch/endpoints/Cluster/State.lua", |
| 108 | + ["elasticsearch.endpoints.Cluster.GetSettings"] = "src/elasticsearch/endpoints/Cluster/GetSettings.lua", |
| 109 | + ["elasticsearch.endpoints.Cluster.PutSettings"] = "src/elasticsearch/endpoints/Cluster/PutSettings.lua", |
| 110 | + |
| 111 | + ["elasticsearch.endpoints.Indices.Open"] = "src/elasticsearch/endpoints/Indices/Open.lua", |
| 112 | + ["elasticsearch.endpoints.Indices.GetFieldMapping"] = "src/elasticsearch/endpoints/Indices/GetFieldMapping.lua", |
| 113 | + ["elasticsearch.endpoints.Indices.DeleteAlias"] = "src/elasticsearch/endpoints/Indices/DeleteAlias.lua", |
| 114 | + ["elasticsearch.endpoints.Indices.Status"] = "src/elasticsearch/endpoints/Indices/Status.lua", |
| 115 | + ["elasticsearch.endpoints.Indices.GetUpgrade"] = "src/elasticsearch/endpoints/Indices/GetUpgrade.lua", |
| 116 | + ["elasticsearch.endpoints.Indices.Refresh"] = "src/elasticsearch/endpoints/Indices/Refresh.lua", |
| 117 | + ["elasticsearch.endpoints.Indices.IndicesEndpoint"] = "src/elasticsearch/endpoints/Indices/IndicesEndpoint.lua", |
| 118 | + ["elasticsearch.endpoints.Indices.GetWarmer"] = "src/elasticsearch/endpoints/Indices/GetWarmer.lua", |
| 119 | + ["elasticsearch.endpoints.Indices.PutTemplate"] = "src/elasticsearch/endpoints/Indices/PutTemplate.lua", |
| 120 | + ["elasticsearch.endpoints.Indices.ExistsType"] = "src/elasticsearch/endpoints/Indices/ExistsType.lua", |
| 121 | + ["elasticsearch.endpoints.Indices.Close"] = "src/elasticsearch/endpoints/Indices/Close.lua", |
| 122 | + ["elasticsearch.endpoints.Indices.ExistsAlias"] = "src/elasticsearch/endpoints/Indices/ExistsAlias.lua", |
| 123 | + ["elasticsearch.endpoints.Indices.Create"] = "src/elasticsearch/endpoints/Indices/Create.lua", |
| 124 | + ["elasticsearch.endpoints.Indices.GetMapping"] = "src/elasticsearch/endpoints/Indices/GetMapping.lua", |
| 125 | + ["elasticsearch.endpoints.Indices.GetTemplate"] = "src/elasticsearch/endpoints/Indices/GetTemplate.lua", |
| 126 | + ["elasticsearch.endpoints.Indices.Stats"] = "src/elasticsearch/endpoints/Indices/Stats.lua", |
| 127 | + ["elasticsearch.endpoints.Indices.GetAliases"] = "src/elasticsearch/endpoints/Indices/GetAliases.lua", |
| 128 | + ["elasticsearch.endpoints.Indices.UpdateAliases"] = "src/elasticsearch/endpoints/Indices/UpdateAliases.lua", |
| 129 | + ["elasticsearch.endpoints.Indices.Recovery"] = "src/elasticsearch/endpoints/Indices/Recovery.lua", |
| 130 | + ["elasticsearch.endpoints.Indices.Delete"] = "src/elasticsearch/endpoints/Indices/Delete.lua", |
| 131 | + ["elasticsearch.endpoints.Indices.ValidateQuery"] = "src/elasticsearch/endpoints/Indices/ValidateQuery.lua", |
| 132 | + ["elasticsearch.endpoints.Indices.Exists"] = "src/elasticsearch/endpoints/Indices/Exists.lua", |
| 133 | + ["elasticsearch.endpoints.Indices.ClearCache"] = "src/elasticsearch/endpoints/Indices/ClearCache.lua", |
| 134 | + ["elasticsearch.endpoints.Indices.PostUpgrade"] = "src/elasticsearch/endpoints/Indices/PostUpgrade.lua", |
| 135 | + ["elasticsearch.endpoints.Indices.DeleteTemplate"] = "src/elasticsearch/endpoints/Indices/DeleteTemplate.lua", |
| 136 | + ["elasticsearch.endpoints.Indices.Segments"] = "src/elasticsearch/endpoints/Indices/Segments.lua", |
| 137 | + ["elasticsearch.endpoints.Indices.Get"] = "src/elasticsearch/endpoints/Indices/Get.lua", |
| 138 | + ["elasticsearch.endpoints.Indices.GetSettings"] = "src/elasticsearch/endpoints/Indices/GetSettings.lua", |
| 139 | + ["elasticsearch.endpoints.Indices.PutSettings"] = "src/elasticsearch/endpoints/Indices/PutSettings.lua", |
| 140 | + ["elasticsearch.endpoints.Indices.ExistsTemplate"] = "src/elasticsearch/endpoints/Indices/ExistsTemplate.lua", |
| 141 | + ["elasticsearch.endpoints.Indices.DeleteMapping"] = "src/elasticsearch/endpoints/Indices/DeleteMapping.lua", |
| 142 | + ["elasticsearch.endpoints.Indices.GetAlias"] = "src/elasticsearch/endpoints/Indices/GetAlias.lua", |
| 143 | + ["elasticsearch.endpoints.Indices.Analyze"] = "src/elasticsearch/endpoints/Indices/Analyze.lua", |
| 144 | + ["elasticsearch.endpoints.Indices.PutAlias"] = "src/elasticsearch/endpoints/Indices/PutAlias.lua", |
| 145 | + ["elasticsearch.endpoints.Indices.Optimize"] = "src/elasticsearch/endpoints/Indices/Optimize.lua", |
| 146 | + ["elasticsearch.endpoints.Indices.ShardStores"] = "src/elasticsearch/endpoints/Indices/ShardStores.lua", |
| 147 | + ["elasticsearch.endpoints.Indices.PutMapping"] = "src/elasticsearch/endpoints/Indices/PutMapping.lua", |
| 148 | + ["elasticsearch.endpoints.Indices.PutWarmer"] = "src/elasticsearch/endpoints/Indices/PutWarmer.lua", |
| 149 | + ["elasticsearch.endpoints.Indices.DeleteWarmer"] = "src/elasticsearch/endpoints/Indices/DeleteWarmer.lua", |
| 150 | + ["elasticsearch.endpoints.Indices.ForceMerge"] = "src/elasticsearch/endpoints/Indices/ForceMerge.lua", |
| 151 | + ["elasticsearch.endpoints.Indices.Flush"] = "src/elasticsearch/endpoints/Indices/Flush.lua", |
| 152 | + ["elasticsearch.endpoints.Indices.Seal"] = "src/elasticsearch/endpoints/Indices/Seal.lua", |
| 153 | + |
| 154 | + ["elasticsearch.endpoints.Nodes.Stats"] = "src/elasticsearch/endpoints/Nodes/Stats.lua", |
| 155 | + ["elasticsearch.endpoints.Nodes.Info"] = "src/elasticsearch/endpoints/Nodes/Info.lua", |
| 156 | + ["elasticsearch.endpoints.Nodes.HotThreads"] = "src/elasticsearch/endpoints/Nodes/HotThreads.lua", |
| 157 | + ["elasticsearch.endpoints.Nodes.Shutdown"] = "src/elasticsearch/endpoints/Nodes/Shutdown.lua", |
| 158 | + ["elasticsearch.endpoints.Nodes.NodesEndpoint"] = "src/elasticsearch/endpoints/Nodes/NodesEndpoint.lua", |
| 159 | + |
| 160 | + ["elasticsearch.endpoints.Snapshot.Status"] = "src/elasticsearch/endpoints/Snapshot/Status.lua", |
| 161 | + ["elasticsearch.endpoints.Snapshot.SnapshotEndpoint"] = "src/elasticsearch/endpoints/Snapshot/SnapshotEndpoint.lua", |
| 162 | + ["elasticsearch.endpoints.Snapshot.Create"] = "src/elasticsearch/endpoints/Snapshot/Create.lua", |
| 163 | + ["elasticsearch.endpoints.Snapshot.VerifyRepository"] = "src/elasticsearch/endpoints/Snapshot/VerifyRepository.lua", |
| 164 | + ["elasticsearch.endpoints.Snapshot.Restore"] = "src/elasticsearch/endpoints/Snapshot/Restore.lua", |
| 165 | + ["elasticsearch.endpoints.Snapshot.Delete"] = "src/elasticsearch/endpoints/Snapshot/Delete.lua", |
| 166 | + ["elasticsearch.endpoints.Snapshot.Get"] = "src/elasticsearch/endpoints/Snapshot/Get.lua", |
| 167 | + ["elasticsearch.endpoints.Snapshot.DeleteRepository"] = "src/elasticsearch/endpoints/Snapshot/DeleteRepository.lua", |
| 168 | + ["elasticsearch.endpoints.Snapshot.GetRepository"] = "src/elasticsearch/endpoints/Snapshot/GetRepository.lua", |
| 169 | + ["elasticsearch.endpoints.Snapshot.CreateRepository"] = "src/elasticsearch/endpoints/Snapshot/CreateRepository.lua", |
| 170 | + |
| 171 | + ["elasticsearch.endpoints.Tasks.Cancel"] = "src/elasticsearch/endpoints/Tasks/Cancel.lua", |
| 172 | + ["elasticsearch.endpoints.Tasks.Get"] = "src/elasticsearch/endpoints/Tasks/Get.lua", |
| 173 | + ["elasticsearch.endpoints.Tasks.TasksEndpoint"] = "src/elasticsearch/endpoints/Tasks/TasksEndpoint.lua" |
| 174 | + }, |
| 175 | + copy_directories = {"tests"} |
| 176 | +} |
0 commit comments