rufus-lua-win 5.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +69 -0
- data/Rakefile +1 -0
- data/lib/rufus/lua/win.rb +18 -0
- data/lib/rufus/lua/win/version.rb +7 -0
- data/rufus-lua-win.gemspec +23 -0
- data/vendor/lua/bin/liblua.dll +0 -0
- data/vendor/lua/lib/lua/LuaXml.lua +119 -0
- data/vendor/lua/lib/lua/alien.lua +250 -0
- data/vendor/lua/lib/lua/alien/core.dll +0 -0
- data/vendor/lua/lib/lua/alien/struct.dll +0 -0
- data/vendor/lua/lib/lua/base.lua +536 -0
- data/vendor/lua/lib/lua/bin.lua +20 -0
- data/vendor/lua/lib/lua/bit.dll +0 -0
- data/vendor/lua/lib/lua/cdlua.dll +0 -0
- data/vendor/lua/lib/lua/cdluacontextplus.dll +0 -0
- data/vendor/lua/lib/lua/cdluagl.dll +0 -0
- data/vendor/lua/lib/lua/cdluaim.dll +0 -0
- data/vendor/lua/lib/lua/cdluapdf.dll +0 -0
- data/vendor/lua/lib/lua/copas.lua +543 -0
- data/vendor/lua/lib/lua/coxpcall.lua +57 -0
- data/vendor/lua/lib/lua/date.lua +745 -0
- data/vendor/lua/lib/lua/debug_ext.lua +84 -0
- data/vendor/lua/lib/lua/debug_init.lua +2 -0
- data/vendor/lua/lib/lua/des56.dll +0 -0
- data/vendor/lua/lib/lua/dist/config.lua +109 -0
- data/vendor/lua/lib/lua/dist/constraints.lua +271 -0
- data/vendor/lua/lib/lua/dist/depends.lua +601 -0
- data/vendor/lua/lib/lua/dist/git.lua +307 -0
- data/vendor/lua/lib/lua/dist/init.lua +278 -0
- data/vendor/lua/lib/lua/dist/manifest.lua +225 -0
- data/vendor/lua/lib/lua/dist/package.lua +583 -0
- data/vendor/lua/lib/lua/dist/sys.lua +367 -0
- data/vendor/lua/lib/lua/dist/utils.lua +130 -0
- data/vendor/lua/lib/lua/ex.dll +0 -0
- data/vendor/lua/lib/lua/fstable.lua +116 -0
- data/vendor/lua/lib/lua/getopt.lua +273 -0
- data/vendor/lua/lib/lua/git.lua +5 -0
- data/vendor/lua/lib/lua/git/core.dll +0 -0
- data/vendor/lua/lib/lua/git/objects.lua +121 -0
- data/vendor/lua/lib/lua/git/pack.lua +316 -0
- data/vendor/lua/lib/lua/git/protocol.lua +188 -0
- data/vendor/lua/lib/lua/git/repo.lua +283 -0
- data/vendor/lua/lib/lua/git/util.lua +233 -0
- data/vendor/lua/lib/lua/gzio.dll +0 -0
- data/vendor/lua/lib/lua/gzip.lua +81 -0
- data/vendor/lua/lib/lua/iconv.dll +0 -0
- data/vendor/lua/lib/lua/imlua.dll +0 -0
- data/vendor/lua/lib/lua/imlua_fftw.dll +0 -0
- data/vendor/lua/lib/lua/imlua_jp2.dll +0 -0
- data/vendor/lua/lib/lua/imlua_process.dll +0 -0
- data/vendor/lua/lib/lua/imlua_process_omp.dll +0 -0
- data/vendor/lua/lib/lua/io_ext.lua +115 -0
- data/vendor/lua/lib/lua/iuplua.dll +0 -0
- data/vendor/lua/lib/lua/iuplua_mglplot.dll +0 -0
- data/vendor/lua/lib/lua/iuplua_pplot.dll +0 -0
- data/vendor/lua/lib/lua/iupluacd.dll +0 -0
- data/vendor/lua/lib/lua/iupluacontrols.dll +0 -0
- data/vendor/lua/lib/lua/iupluagl.dll +0 -0
- data/vendor/lua/lib/lua/iupluaim.dll +0 -0
- data/vendor/lua/lib/lua/iupluaimglib.dll +0 -0
- data/vendor/lua/lib/lua/iupluatuio.dll +0 -0
- data/vendor/lua/lib/lua/lanes-keeper.lua +302 -0
- data/vendor/lua/lib/lua/lanes.lua +591 -0
- data/vendor/lua/lib/lua/lanes/core.dll +0 -0
- data/vendor/lua/lib/lua/lcs.lua +55 -0
- data/vendor/lua/lib/lua/lemock.lua +659 -0
- data/vendor/lua/lib/lua/lfs.dll +0 -0
- data/vendor/lua/lib/lua/list.lua +375 -0
- data/vendor/lua/lib/lua/logging.lua +189 -0
- data/vendor/lua/lib/lua/logging/console.lua +22 -0
- data/vendor/lua/lib/lua/logging/email.lua +44 -0
- data/vendor/lua/lib/lua/logging/file.lua +55 -0
- data/vendor/lua/lib/lua/logging/rolling_file.lua +81 -0
- data/vendor/lua/lib/lua/logging/socket.lua +35 -0
- data/vendor/lua/lib/lua/logging/sql.lua +64 -0
- data/vendor/lua/lib/lua/loop/base.lua +68 -0
- data/vendor/lua/lib/lua/loop/cached.lua +312 -0
- data/vendor/lua/lib/lua/loop/collection/MapWithArrayOfKeys.lua +64 -0
- data/vendor/lua/lib/lua/loop/collection/ObjectCache.lua +39 -0
- data/vendor/lua/lib/lua/loop/collection/OrderedSet.lua +164 -0
- data/vendor/lua/lib/lua/loop/collection/PriorityQueue.lua +86 -0
- data/vendor/lua/lib/lua/loop/collection/UnorderedArray.lua +32 -0
- data/vendor/lua/lib/lua/loop/collection/UnorderedArraySet.lua +56 -0
- data/vendor/lua/lib/lua/loop/compiler/Arguments.lua +108 -0
- data/vendor/lua/lib/lua/loop/compiler/Conditional.lua +50 -0
- data/vendor/lua/lib/lua/loop/compiler/Expression.lua +215 -0
- data/vendor/lua/lib/lua/loop/component/base.lua +221 -0
- data/vendor/lua/lib/lua/loop/component/contained.lua +71 -0
- data/vendor/lua/lib/lua/loop/component/dynamic.lua +223 -0
- data/vendor/lua/lib/lua/loop/component/intercepted.lua +354 -0
- data/vendor/lua/lib/lua/loop/component/wrapped.lua +195 -0
- data/vendor/lua/lib/lua/loop/debug/Inspector.lua +521 -0
- data/vendor/lua/lib/lua/loop/debug/Matcher.lua +192 -0
- data/vendor/lua/lib/lua/loop/debug/Verbose.lua +266 -0
- data/vendor/lua/lib/lua/loop/debug/Viewer.lua +200 -0
- data/vendor/lua/lib/lua/loop/multiple.lua +105 -0
- data/vendor/lua/lib/lua/loop/object/Exception.lua +57 -0
- data/vendor/lua/lib/lua/loop/object/Publisher.lua +43 -0
- data/vendor/lua/lib/lua/loop/object/Wrapper.lua +39 -0
- data/vendor/lua/lib/lua/loop/scoped.lua +585 -0
- data/vendor/lua/lib/lua/loop/serial/FileStream.lua +48 -0
- data/vendor/lua/lib/lua/loop/serial/Serializer.lua +291 -0
- data/vendor/lua/lib/lua/loop/serial/SocketStream.lua +51 -0
- data/vendor/lua/lib/lua/loop/serial/StringStream.lua +47 -0
- data/vendor/lua/lib/lua/loop/simple.lua +75 -0
- data/vendor/lua/lib/lua/loop/table.lua +71 -0
- data/vendor/lua/lib/lua/loop/thread/CoSocket.lua +416 -0
- data/vendor/lua/lib/lua/loop/thread/IOScheduler.lua +170 -0
- data/vendor/lua/lib/lua/loop/thread/Scheduler.lua +327 -0
- data/vendor/lua/lib/lua/loop/thread/SocketScheduler.lua +88 -0
- data/vendor/lua/lib/lua/loop/thread/Timer.lua +54 -0
- data/vendor/lua/lib/lua/lpeg.dll +0 -0
- data/vendor/lua/lib/lua/ltn12.lua +292 -0
- data/vendor/lua/lib/lua/luaXML_lib.dll +0 -0
- data/vendor/lua/lib/lua/luacurl.dll +0 -0
- data/vendor/lua/lib/lua/luadoc/config.lua +34 -0
- data/vendor/lua/lib/lua/luadoc/doclet/debug.lua +46 -0
- data/vendor/lua/lib/lua/luadoc/doclet/formatter.lua +84 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html.lua +289 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/file.lp +113 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/function.lp +64 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/index.lp +70 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/luadoc.css +286 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/menu.lp +55 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/module.lp +109 -0
- data/vendor/lua/lib/lua/luadoc/doclet/html/table.lp +15 -0
- data/vendor/lua/lib/lua/luadoc/doclet/raw.lua +12 -0
- data/vendor/lua/lib/lua/luadoc/init.lua +58 -0
- data/vendor/lua/lib/lua/luadoc/lp.lua +130 -0
- data/vendor/lua/lib/lua/luadoc/taglet/standard.lua +495 -0
- data/vendor/lua/lib/lua/luadoc/taglet/standard/tags.lua +171 -0
- data/vendor/lua/lib/lua/luadoc/util.lua +233 -0
- data/vendor/lua/lib/lua/luagl.dll +0 -0
- data/vendor/lua/lib/lua/luaglu.dll +0 -0
- data/vendor/lua/lib/lua/luaidl.lua +113 -0
- data/vendor/lua/lib/lua/luaidl/lex.lua +793 -0
- data/vendor/lua/lib/lua/luaidl/pre.lua +149 -0
- data/vendor/lua/lib/lua/luaidl/sin.lua +3631 -0
- data/vendor/lua/lib/lua/luarocks/add.lua +108 -0
- data/vendor/lua/lib/lua/luarocks/admin_remove.lua +87 -0
- data/vendor/lua/lib/lua/luarocks/build.lua +330 -0
- data/vendor/lua/lib/lua/luarocks/build/builtin.lua +253 -0
- data/vendor/lua/lib/lua/luarocks/build/cmake.lua +54 -0
- data/vendor/lua/lib/lua/luarocks/build/command.lua +32 -0
- data/vendor/lua/lib/lua/luarocks/build/make.lua +92 -0
- data/vendor/lua/lib/lua/luarocks/cache.lua +85 -0
- data/vendor/lua/lib/lua/luarocks/cfg.lua +449 -0
- data/vendor/lua/lib/lua/luarocks/command_line.lua +163 -0
- data/vendor/lua/lib/lua/luarocks/deps.lua +654 -0
- data/vendor/lua/lib/lua/luarocks/dir.lua +69 -0
- data/vendor/lua/lib/lua/luarocks/download.lua +90 -0
- data/vendor/lua/lib/lua/luarocks/fetch.lua +321 -0
- data/vendor/lua/lib/lua/luarocks/fetch/cvs.lua +44 -0
- data/vendor/lua/lib/lua/luarocks/fetch/git.lua +81 -0
- data/vendor/lua/lib/lua/luarocks/fetch/git_file.lua +17 -0
- data/vendor/lua/lib/lua/luarocks/fetch/hg.lua +54 -0
- data/vendor/lua/lib/lua/luarocks/fetch/sscm.lua +42 -0
- data/vendor/lua/lib/lua/luarocks/fetch/svn.lua +53 -0
- data/vendor/lua/lib/lua/luarocks/fs.lua +40 -0
- data/vendor/lua/lib/lua/luarocks/fs/lua.lua +676 -0
- data/vendor/lua/lib/lua/luarocks/fs/unix.lua +88 -0
- data/vendor/lua/lib/lua/luarocks/fs/unix/tools.lua +325 -0
- data/vendor/lua/lib/lua/luarocks/fs/win32.lua +107 -0
- data/vendor/lua/lib/lua/luarocks/fs/win32/tools.lua +334 -0
- data/vendor/lua/lib/lua/luarocks/help.lua +101 -0
- data/vendor/lua/lib/lua/luarocks/index.lua +172 -0
- data/vendor/lua/lib/lua/luarocks/install.lua +151 -0
- data/vendor/lua/lib/lua/luarocks/list.lua +35 -0
- data/vendor/lua/lib/lua/luarocks/loader.lua +228 -0
- data/vendor/lua/lib/lua/luarocks/make.lua +71 -0
- data/vendor/lua/lib/lua/luarocks/make_manifest.lua +34 -0
- data/vendor/lua/lib/lua/luarocks/manif.lua +360 -0
- data/vendor/lua/lib/lua/luarocks/manif_core.lua +75 -0
- data/vendor/lua/lib/lua/luarocks/new_version.lua +141 -0
- data/vendor/lua/lib/lua/luarocks/pack.lua +205 -0
- data/vendor/lua/lib/lua/luarocks/path.lua +315 -0
- data/vendor/lua/lib/lua/luarocks/persist.lua +173 -0
- data/vendor/lua/lib/lua/luarocks/refresh_cache.lua +30 -0
- data/vendor/lua/lib/lua/luarocks/remove.lua +135 -0
- data/vendor/lua/lib/lua/luarocks/rep.lua +313 -0
- data/vendor/lua/lib/lua/luarocks/require.lua +6 -0
- data/vendor/lua/lib/lua/luarocks/search.lua +399 -0
- data/vendor/lua/lib/lua/luarocks/show.lua +138 -0
- data/vendor/lua/lib/lua/luarocks/site_config.lua +23 -0
- data/vendor/lua/lib/lua/luarocks/tools/patch.lua +712 -0
- data/vendor/lua/lib/lua/luarocks/tools/tar.lua +144 -0
- data/vendor/lua/lib/lua/luarocks/tools/zip.lua +245 -0
- data/vendor/lua/lib/lua/luarocks/type_check.lua +267 -0
- data/vendor/lua/lib/lua/luarocks/unpack.lua +151 -0
- data/vendor/lua/lib/lua/luarocks/util.lua +420 -0
- data/vendor/lua/lib/lua/luarocks/validate.lua +164 -0
- data/vendor/lua/lib/lua/luars232.dll +0 -0
- data/vendor/lua/lib/lua/luasql/mysql.dll +0 -0
- data/vendor/lua/lib/lua/luasql/postgres.dll +0 -0
- data/vendor/lua/lib/lua/luasql/sqlite3.dll +0 -0
- data/vendor/lua/lib/lua/luaunit.lua +601 -0
- data/vendor/lua/lib/lua/lxp.dll +0 -0
- data/vendor/lua/lib/lua/lxp/lom.lua +60 -0
- data/vendor/lua/lib/lua/math_ext.lua +27 -0
- data/vendor/lua/lib/lua/mbox.lua +53 -0
- data/vendor/lua/lib/lua/md5.lua +19 -0
- data/vendor/lua/lib/lua/md5/core.dll +0 -0
- data/vendor/lua/lib/lua/metalua.lua +0 -0
- data/vendor/lua/lib/lua/metalua/ast_to_string.mlua +553 -0
- data/vendor/lua/lib/lua/metalua/base.lua +104 -0
- data/vendor/lua/lib/lua/metalua/bytecode.lua +0 -0
- data/vendor/lua/lib/lua/metalua/clopts.mlua +204 -0
- data/vendor/lua/lib/lua/metalua/compiler.lua +3 -0
- data/vendor/lua/lib/lua/metalua/dollar.mlua +24 -0
- data/vendor/lua/lib/lua/metalua/extension/H-runtime.mlua +216 -0
- data/vendor/lua/lib/lua/metalua/extension/H.mlua +22 -0
- data/vendor/lua/lib/lua/metalua/extension/anaphoric.mlua +54 -0
- data/vendor/lua/lib/lua/metalua/extension/clist.mlua +149 -0
- data/vendor/lua/lib/lua/metalua/extension/continue.mlua +53 -0
- data/vendor/lua/lib/lua/metalua/extension/localin.mlua +2 -0
- data/vendor/lua/lib/lua/metalua/extension/log.mlua +39 -0
- data/vendor/lua/lib/lua/metalua/extension/match.mlua +374 -0
- data/vendor/lua/lib/lua/metalua/extension/ternary.mlua +10 -0
- data/vendor/lua/lib/lua/metalua/extension/trycatch.mlua +189 -0
- data/vendor/lua/lib/lua/metalua/extension/types-runtime.mlua +159 -0
- data/vendor/lua/lib/lua/metalua/extension/types.mlua +352 -0
- data/vendor/lua/lib/lua/metalua/extension/withdo.mlua +30 -0
- data/vendor/lua/lib/lua/metalua/extension/xglobal-runtime.lua +41 -0
- data/vendor/lua/lib/lua/metalua/extension/xglobal.mlua +20 -0
- data/vendor/lua/lib/lua/metalua/extension/xloop.mlua +100 -0
- data/vendor/lua/lib/lua/metalua/extension/xmatch.mlua +216 -0
- data/vendor/lua/lib/lua/metalua/metaloop.mlua +76 -0
- data/vendor/lua/lib/lua/metalua/mlc.lua +0 -0
- data/vendor/lua/lib/lua/metalua/mlc_xcall.lua +119 -0
- data/vendor/lua/lib/lua/metalua/mlp.lua +0 -0
- data/vendor/lua/lib/lua/metalua/package2.lua +101 -0
- data/vendor/lua/lib/lua/metalua/runtime.lua +3 -0
- data/vendor/lua/lib/lua/metalua/string2.lua +44 -0
- data/vendor/lua/lib/lua/metalua/table2.lua +372 -0
- data/vendor/lua/lib/lua/metalua/walk.mlua +304 -0
- data/vendor/lua/lib/lua/metalua/walk/bindings.mlua +41 -0
- data/vendor/lua/lib/lua/metalua/walk/id.mlua +186 -0
- data/vendor/lua/lib/lua/metalua/walk/scope.lua +54 -0
- data/vendor/lua/lib/lua/mime.lua +87 -0
- data/vendor/lua/lib/lua/mime/core.dll +0 -0
- data/vendor/lua/lib/lua/mobdebug.lua +1484 -0
- data/vendor/lua/lib/lua/modules.lua +16 -0
- data/vendor/lua/lib/lua/object.lua +56 -0
- data/vendor/lua/lib/lua/oil/Exception.lua +26 -0
- data/vendor/lua/lib/lua/oil/arch.lua +27 -0
- data/vendor/lua/lib/lua/oil/arch/basic/client.lua +29 -0
- data/vendor/lua/lib/lua/oil/arch/basic/common.lua +13 -0
- data/vendor/lua/lib/lua/oil/arch/basic/server.lua +27 -0
- data/vendor/lua/lib/lua/oil/arch/cooperative/common.lua +10 -0
- data/vendor/lua/lib/lua/oil/arch/cooperative/server.lua +16 -0
- data/vendor/lua/lib/lua/oil/arch/corba/client.lua +39 -0
- data/vendor/lua/lib/lua/oil/arch/corba/common.lua +58 -0
- data/vendor/lua/lib/lua/oil/arch/corba/intercepted/client.lua +9 -0
- data/vendor/lua/lib/lua/oil/arch/corba/intercepted/server.lua +9 -0
- data/vendor/lua/lib/lua/oil/arch/corba/server.lua +35 -0
- data/vendor/lua/lib/lua/oil/arch/ludo/byref.lua +18 -0
- data/vendor/lua/lib/lua/oil/arch/ludo/client.lua +19 -0
- data/vendor/lua/lib/lua/oil/arch/ludo/common.lua +18 -0
- data/vendor/lua/lib/lua/oil/arch/ludo/server.lua +19 -0
- data/vendor/lua/lib/lua/oil/arch/typed/client.lua +27 -0
- data/vendor/lua/lib/lua/oil/arch/typed/common.lua +9 -0
- data/vendor/lua/lib/lua/oil/arch/typed/server.lua +18 -0
- data/vendor/lua/lib/lua/oil/assert.lua +87 -0
- data/vendor/lua/lib/lua/oil/builder.lua +45 -0
- data/vendor/lua/lib/lua/oil/builder/basic/client.lua +31 -0
- data/vendor/lua/lib/lua/oil/builder/basic/common.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/basic/server.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/cooperative/common.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/cooperative/server.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/corba/client.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/corba/common.lua +24 -0
- data/vendor/lua/lib/lua/oil/builder/corba/gencode.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/corba/intercepted/client.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/corba/intercepted/server.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/corba/server.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/lua/client.lua +11 -0
- data/vendor/lua/lib/lua/oil/builder/lua/server.lua +12 -0
- data/vendor/lua/lib/lua/oil/builder/ludo/byref.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/ludo/client.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/ludo/common.lua +14 -0
- data/vendor/lua/lib/lua/oil/builder/ludo/server.lua +13 -0
- data/vendor/lua/lib/lua/oil/builder/typed/client.lua +16 -0
- data/vendor/lua/lib/lua/oil/builder/typed/server.lua +12 -0
- data/vendor/lua/lib/lua/oil/compat.lua +846 -0
- data/vendor/lua/lib/lua/oil/component.lua +1 -0
- data/vendor/lua/lib/lua/oil/corba/giop.lua +301 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Codec.lua +1568 -0
- data/vendor/lua/lib/lua/oil/corba/giop/CodecGen.lua +589 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Exception.lua +25 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Indexer.lua +63 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Listener.lua +343 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Messenger.lua +228 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Referrer.lua +180 -0
- data/vendor/lua/lib/lua/oil/corba/giop/Requester.lua +462 -0
- data/vendor/lua/lib/lua/oil/corba/idl.lua +597 -0
- data/vendor/lua/lib/lua/oil/corba/idl/Compiler.lua +133 -0
- data/vendor/lua/lib/lua/oil/corba/idl/Importer.lua +235 -0
- data/vendor/lua/lib/lua/oil/corba/idl/Indexer.lua +95 -0
- data/vendor/lua/lib/lua/oil/corba/idl/Registry.lua +1821 -0
- data/vendor/lua/lib/lua/oil/corba/idl/ir.lua +847 -0
- data/vendor/lua/lib/lua/oil/corba/idl/sysex.lua +21 -0
- data/vendor/lua/lib/lua/oil/corba/iiop/Profiler.lua +200 -0
- data/vendor/lua/lib/lua/oil/corba/intercepted/Listener.lua +158 -0
- data/vendor/lua/lib/lua/oil/corba/intercepted/Requester.lua +181 -0
- data/vendor/lua/lib/lua/oil/corba/services/event.lua +126 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/ConsumerAdmin.lua +50 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/EventFactory.lua +15 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/EventQueue.lua +37 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/ProxyPushConsumer.lua +75 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/ProxyPushSupplier.lua +62 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/SingleDeferredDispatcher.lua +60 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/SingleSynchronousDispatcher.lua +39 -0
- data/vendor/lua/lib/lua/oil/corba/services/event/SupplierAdmin.lua +50 -0
- data/vendor/lua/lib/lua/oil/corba/services/naming.lua +436 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Acceptor.lua +268 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Channels.lua +121 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Connector.lua +147 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Dispatcher.lua +99 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies.lua +86 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies/asynchronous.lua +56 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies/protected.lua +17 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies/synchronous.lua +17 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Proxies/utils.lua +29 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Receiver.lua +110 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Servants.lua +207 -0
- data/vendor/lua/lib/lua/oil/kernel/base/Sockets.lua +44 -0
- data/vendor/lua/lib/lua/oil/kernel/cooperative/Receiver.lua +139 -0
- data/vendor/lua/lib/lua/oil/kernel/intercepted/Listener.lua +47 -0
- data/vendor/lua/lib/lua/oil/kernel/intercepted/Requester.lua +58 -0
- data/vendor/lua/lib/lua/oil/kernel/lua/Dispatcher.lua +76 -0
- data/vendor/lua/lib/lua/oil/kernel/lua/Proxies.lua +69 -0
- data/vendor/lua/lib/lua/oil/kernel/typed/Dispatcher.lua +91 -0
- data/vendor/lua/lib/lua/oil/kernel/typed/Proxies.lua +153 -0
- data/vendor/lua/lib/lua/oil/kernel/typed/Servants.lua +137 -0
- data/vendor/lua/lib/lua/oil/ludo/Codec.lua +66 -0
- data/vendor/lua/lib/lua/oil/ludo/CodecByRef.lua +103 -0
- data/vendor/lua/lib/lua/oil/ludo/Listener.lua +151 -0
- data/vendor/lua/lib/lua/oil/ludo/Referrer.lua +72 -0
- data/vendor/lua/lib/lua/oil/ludo/Requester.lua +107 -0
- data/vendor/lua/lib/lua/oil/oo.lua +1 -0
- data/vendor/lua/lib/lua/oil/port.lua +1 -0
- data/vendor/lua/lib/lua/oil/properties.lua +57 -0
- data/vendor/lua/lib/lua/oil/verbose.lua +133 -0
- data/vendor/lua/lib/lua/package_ext.lua +15 -0
- data/vendor/lua/lib/lua/parser.lua +268 -0
- data/vendor/lua/lib/lua/pl/Date.lua +555 -0
- data/vendor/lua/lib/lua/pl/List.lua +613 -0
- data/vendor/lua/lib/lua/pl/Map.lua +113 -0
- data/vendor/lua/lib/lua/pl/MultiMap.lua +62 -0
- data/vendor/lua/lib/lua/pl/OrderedMap.lua +151 -0
- data/vendor/lua/lib/lua/pl/Set.lua +153 -0
- data/vendor/lua/lib/lua/pl/app.lua +165 -0
- data/vendor/lua/lib/lua/pl/array2d.lua +501 -0
- data/vendor/lua/lib/lua/pl/class.lua +180 -0
- data/vendor/lua/lib/lua/pl/comprehension.lua +286 -0
- data/vendor/lua/lib/lua/pl/config.lua +176 -0
- data/vendor/lua/lib/lua/pl/data.lua +606 -0
- data/vendor/lua/lib/lua/pl/dir.lua +475 -0
- data/vendor/lua/lib/lua/pl/file.lua +70 -0
- data/vendor/lua/lib/lua/pl/func.lua +376 -0
- data/vendor/lua/lib/lua/pl/init.lua +68 -0
- data/vendor/lua/lib/lua/pl/input.lua +173 -0
- data/vendor/lua/lib/lua/pl/lapp.lua +407 -0
- data/vendor/lua/lib/lua/pl/lexer.lua +456 -0
- data/vendor/lua/lib/lua/pl/luabalanced.lua +264 -0
- data/vendor/lua/lib/lua/pl/operator.lua +201 -0
- data/vendor/lua/lib/lua/pl/path.lua +398 -0
- data/vendor/lua/lib/lua/pl/permute.lua +63 -0
- data/vendor/lua/lib/lua/pl/platf/luajava.lua +101 -0
- data/vendor/lua/lib/lua/pl/pretty.lua +285 -0
- data/vendor/lua/lib/lua/pl/seq.lua +551 -0
- data/vendor/lua/lib/lua/pl/sip.lua +344 -0
- data/vendor/lua/lib/lua/pl/strict.lua +70 -0
- data/vendor/lua/lib/lua/pl/stringio.lua +158 -0
- data/vendor/lua/lib/lua/pl/stringx.lua +440 -0
- data/vendor/lua/lib/lua/pl/tablex.lua +817 -0
- data/vendor/lua/lib/lua/pl/template.lua +103 -0
- data/vendor/lua/lib/lua/pl/test.lua +135 -0
- data/vendor/lua/lib/lua/pl/text.lua +243 -0
- data/vendor/lua/lib/lua/pl/utils.lua +550 -0
- data/vendor/lua/lib/lua/pl/xml.lua +689 -0
- data/vendor/lua/lib/lua/profiler.dll +0 -0
- data/vendor/lua/lib/lua/re.lua +248 -0
- data/vendor/lua/lib/lua/rex_onig.dll +0 -0
- data/vendor/lua/lib/lua/rex_pcre.dll +0 -0
- data/vendor/lua/lib/lua/rex_posix.dll +0 -0
- data/vendor/lua/lib/lua/rings.dll +0 -0
- data/vendor/lua/lib/lua/serialize.lua +193 -0
- data/vendor/lua/lib/lua/set.lua +149 -0
- data/vendor/lua/lib/lua/socket.lua +133 -0
- data/vendor/lua/lib/lua/socket/core.dll +0 -0
- data/vendor/lua/lib/lua/socket/ftp.lua +281 -0
- data/vendor/lua/lib/lua/socket/http.lua +350 -0
- data/vendor/lua/lib/lua/socket/smtp.lua +251 -0
- data/vendor/lua/lib/lua/socket/tp.lua +123 -0
- data/vendor/lua/lib/lua/socket/url.lua +297 -0
- data/vendor/lua/lib/lua/ssl.dll +0 -0
- data/vendor/lua/lib/lua/ssl.lua +93 -0
- data/vendor/lua/lib/lua/ssl/https.lua +138 -0
- data/vendor/lua/lib/lua/stable.lua +28 -0
- data/vendor/lua/lib/lua/std.lua +16 -0
- data/vendor/lua/lib/lua/strbuf.lua +32 -0
- data/vendor/lua/lib/lua/strict.lua +45 -0
- data/vendor/lua/lib/lua/string_ext.lua +274 -0
- data/vendor/lua/lib/lua/table_ext.lua +117 -0
- data/vendor/lua/lib/lua/tar.lua +262 -0
- data/vendor/lua/lib/lua/task.dll +0 -0
- data/vendor/lua/lib/lua/tree.lua +81 -0
- data/vendor/lua/lib/lua/unicode.dll +0 -0
- data/vendor/lua/lib/lua/verbose_require.lua +11 -0
- data/vendor/lua/lib/lua/vstruct.lua +86 -0
- data/vendor/lua/lib/lua/vstruct/ast.lua +192 -0
- data/vendor/lua/lib/lua/vstruct/ast/Bitpack.lua +33 -0
- data/vendor/lua/lib/lua/vstruct/ast/Generator.lua +174 -0
- data/vendor/lua/lib/lua/vstruct/ast/IO.lua +45 -0
- data/vendor/lua/lib/lua/vstruct/ast/List.lua +56 -0
- data/vendor/lua/lib/lua/vstruct/ast/Name.lua +20 -0
- data/vendor/lua/lib/lua/vstruct/ast/Repeat.lua +23 -0
- data/vendor/lua/lib/lua/vstruct/ast/Root.lua +19 -0
- data/vendor/lua/lib/lua/vstruct/ast/Table.lua +65 -0
- data/vendor/lua/lib/lua/vstruct/cursor.lua +81 -0
- data/vendor/lua/lib/lua/vstruct/io.lua +45 -0
- data/vendor/lua/lib/lua/vstruct/io/a.lua +24 -0
- data/vendor/lua/lib/lua/vstruct/io/b.lua +28 -0
- data/vendor/lua/lib/lua/vstruct/io/bigendian.lua +21 -0
- data/vendor/lua/lib/lua/vstruct/io/c.lua +25 -0
- data/vendor/lua/lib/lua/vstruct/io/defaults.lua +24 -0
- data/vendor/lua/lib/lua/vstruct/io/endianness.lua +41 -0
- data/vendor/lua/lib/lua/vstruct/io/f.lua +129 -0
- data/vendor/lua/lib/lua/vstruct/io/hostendian.lua +21 -0
- data/vendor/lua/lib/lua/vstruct/io/i.lua +42 -0
- data/vendor/lua/lib/lua/vstruct/io/littleendian.lua +21 -0
- data/vendor/lua/lib/lua/vstruct/io/m.lua +62 -0
- data/vendor/lua/lib/lua/vstruct/io/p.lua +23 -0
- data/vendor/lua/lib/lua/vstruct/io/s.lua +27 -0
- data/vendor/lua/lib/lua/vstruct/io/seekb.lua +18 -0
- data/vendor/lua/lib/lua/vstruct/io/seekf.lua +18 -0
- data/vendor/lua/lib/lua/vstruct/io/seekto.lua +18 -0
- data/vendor/lua/lib/lua/vstruct/io/u.lua +54 -0
- data/vendor/lua/lib/lua/vstruct/io/x.lua +34 -0
- data/vendor/lua/lib/lua/vstruct/io/z.lua +63 -0
- data/vendor/lua/lib/lua/vstruct/lexer.lua +100 -0
- data/vendor/lua/lib/lua/vstruct/pack.lua +142 -0
- data/vendor/lua/lib/lua/vstruct/test.lua +47 -0
- data/vendor/lua/lib/lua/vstruct/test/basic.lua +73 -0
- data/vendor/lua/lib/lua/vstruct/test/common.lua +100 -0
- data/vendor/lua/lib/lua/vstruct/test/fp-bigendian.lua +56 -0
- data/vendor/lua/lib/lua/vstruct/test/fp-littleendian.lua +56 -0
- data/vendor/lua/lib/lua/vstruct/test/struct-test-gen.lua +1230 -0
- data/vendor/lua/lib/lua/vstruct/unpack.lua +126 -0
- data/vendor/lua/lib/lua/wx.dll +0 -0
- data/vendor/lua/lib/lua/xml.lua +75 -0
- data/vendor/lua/lib/lua/zip.dll +0 -0
- data/vendor/lua/lib/lua/zlib.dll +0 -0
- metadata +529 -0
@@ -0,0 +1,449 @@
|
|
1
|
+
--- Configuration for LuaRocks.
|
2
|
+
-- Tries to load the user's configuration file and
|
3
|
+
-- defines defaults for unset values. See the
|
4
|
+
-- <a href="http://luarocks.org/en/Config_file_format">config
|
5
|
+
-- file format documentation</a> for details.
|
6
|
+
--
|
7
|
+
-- End-users shouldn't edit this file. They can override any defaults
|
8
|
+
-- set in this file using their system-wide $LUAROCKS_SYSCONFIG file
|
9
|
+
-- (see luarocks.site_config) or their user-specific configuration file
|
10
|
+
-- (~/.luarocks/config.lua on Unix or %APPDATA%/luarocks/config.lua on
|
11
|
+
-- Windows).
|
12
|
+
|
13
|
+
local rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, type, assert, _VERSION =
|
14
|
+
rawset, next, table, pairs, require, io, os, setmetatable, pcall, ipairs, package, type, assert, _VERSION
|
15
|
+
|
16
|
+
module("luarocks.cfg")
|
17
|
+
|
18
|
+
-- Load site-local global configurations
|
19
|
+
local ok, site_config = pcall(require, "luarocks.site_config")
|
20
|
+
if not ok then
|
21
|
+
io.stderr:write("Site-local luarocks/site_config.lua file not found. Incomplete installation?\n")
|
22
|
+
site_config = {}
|
23
|
+
end
|
24
|
+
|
25
|
+
_M.site_config = site_config
|
26
|
+
|
27
|
+
lua_version = _VERSION:sub(5)
|
28
|
+
program_version = "2.0.10"
|
29
|
+
user_agent = "LuaRocks/"..program_version
|
30
|
+
|
31
|
+
local persist = require("luarocks.persist")
|
32
|
+
|
33
|
+
local popen_ok, popen_result = pcall(io.popen, "")
|
34
|
+
if popen_ok then
|
35
|
+
if popen_result then
|
36
|
+
popen_result:close()
|
37
|
+
end
|
38
|
+
else
|
39
|
+
io.stderr:write("Your version of Lua does not support io.popen,\n")
|
40
|
+
io.stderr:write("which is required by LuaRocks. Please check your Lua installation.\n")
|
41
|
+
os.exit(1)
|
42
|
+
end
|
43
|
+
|
44
|
+
-- System detection:
|
45
|
+
|
46
|
+
local detected = {}
|
47
|
+
local system,proc
|
48
|
+
|
49
|
+
-- A proper installation of LuaRocks will hardcode the system
|
50
|
+
-- and proc values with site_config.LUAROCKS_UNAME_S and site_config.LUAROCKS_UNAME_M,
|
51
|
+
-- so that this detection does not run every time. When it is
|
52
|
+
-- performed, we use the Unix way to identify the system,
|
53
|
+
-- even on Windows (assuming UnxUtils or Cygwin).
|
54
|
+
system = site_config.LUAROCKS_UNAME_S or io.popen("uname -s"):read("*l")
|
55
|
+
proc = site_config.LUAROCKS_UNAME_M or io.popen("uname -m"):read("*l")
|
56
|
+
if proc:match("i[%d]86") then
|
57
|
+
proc = "x86"
|
58
|
+
elseif proc:match("amd64") or proc:match("x86_64") then
|
59
|
+
proc = "x86_64"
|
60
|
+
elseif proc:match("Power Macintosh") then
|
61
|
+
proc = "powerpc"
|
62
|
+
end
|
63
|
+
|
64
|
+
if system == "FreeBSD" then
|
65
|
+
detected.unix = true
|
66
|
+
detected.freebsd = true
|
67
|
+
detected.bsd = true
|
68
|
+
elseif system == "OpenBSD" then
|
69
|
+
detected.unix = true
|
70
|
+
detected.openbsd = true
|
71
|
+
detected.bsd = true
|
72
|
+
elseif system == "Darwin" then
|
73
|
+
detected.unix = true
|
74
|
+
detected.macosx = true
|
75
|
+
detected.bsd = true
|
76
|
+
elseif system == "Linux" then
|
77
|
+
detected.unix = true
|
78
|
+
detected.linux = true
|
79
|
+
elseif system == "SunOS" then
|
80
|
+
detected.unix = true
|
81
|
+
detected.solaris = true
|
82
|
+
elseif system and system:match("^CYGWIN") then
|
83
|
+
detected.unix = true
|
84
|
+
detected.cygwin = true
|
85
|
+
elseif system and system:match("^Windows") then
|
86
|
+
detected.windows = true
|
87
|
+
elseif system and system:match("^MINGW") then
|
88
|
+
detected.mingw32 = true
|
89
|
+
else
|
90
|
+
detected.unix = true
|
91
|
+
-- Fall back to Unix in unknown systems.
|
92
|
+
end
|
93
|
+
|
94
|
+
-- Path configuration:
|
95
|
+
|
96
|
+
local sys_config_file, home_config_file
|
97
|
+
local sys_config_ok, home_config_ok = false, false
|
98
|
+
if detected.windows or detected.mingw32 then
|
99
|
+
home = os.getenv("APPDATA") or "c:"
|
100
|
+
sys_config_file = site_config.LUAROCKS_SYSCONFIG or "c:/luarocks/config.lua"
|
101
|
+
home_config_file = home.."/luarocks/config.lua"
|
102
|
+
home_tree = home.."/luarocks/"
|
103
|
+
else
|
104
|
+
home = os.getenv("HOME") or ""
|
105
|
+
sys_config_file = site_config.LUAROCKS_SYSCONFIG or "/etc/luarocks/config.lua"
|
106
|
+
home_config_file = home.."/.luarocks/config.lua"
|
107
|
+
home_tree = home.."/.luarocks/"
|
108
|
+
end
|
109
|
+
|
110
|
+
variables = {}
|
111
|
+
rocks_trees = {}
|
112
|
+
|
113
|
+
local ok, err = persist.load_into_table(sys_config_file, _M)
|
114
|
+
if ok then
|
115
|
+
sys_config_ok = true
|
116
|
+
else -- nil or false
|
117
|
+
sys_config_ok = ok
|
118
|
+
if err and ok == nil then
|
119
|
+
io.stderr:write(err.."\n")
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
if not site_config.LUAROCKS_FORCE_CONFIG then
|
124
|
+
home_config_file = os.getenv("LUAROCKS_CONFIG") or home_config_file
|
125
|
+
local home_overrides, err = persist.load_into_table(home_config_file, { home = home })
|
126
|
+
if home_overrides then
|
127
|
+
home_config_ok = true
|
128
|
+
local util = require("luarocks.util")
|
129
|
+
if home_overrides.rocks_trees then
|
130
|
+
_M.rocks_trees = nil
|
131
|
+
end
|
132
|
+
if home_overrides.rocks_servers then
|
133
|
+
_M.rocks_servers = nil
|
134
|
+
end
|
135
|
+
util.deep_merge(_M, home_overrides)
|
136
|
+
else -- nil or false
|
137
|
+
home_config_ok = home_overrides
|
138
|
+
if err and home_config_ok == nil then
|
139
|
+
io.stderr:write(err.."\n")
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
if not next(rocks_trees) then
|
145
|
+
if home_tree then
|
146
|
+
table.insert(rocks_trees, home_tree)
|
147
|
+
end
|
148
|
+
if site_config.LUAROCKS_ROCKS_TREE then
|
149
|
+
table.insert(rocks_trees, site_config.LUAROCKS_ROCKS_TREE)
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
-- Configure defaults:
|
154
|
+
|
155
|
+
local root = rocks_trees[#rocks_trees]
|
156
|
+
local defaults = {
|
157
|
+
|
158
|
+
local_by_default = false,
|
159
|
+
use_extensions = false,
|
160
|
+
accept_unknown_fields = false,
|
161
|
+
|
162
|
+
lua_modules_path = "/share/lua/"..lua_version,
|
163
|
+
lib_modules_path = "/lib/lua/"..lua_version,
|
164
|
+
|
165
|
+
arch = "unknown",
|
166
|
+
lib_extension = "unknown",
|
167
|
+
obj_extension = "unknown",
|
168
|
+
|
169
|
+
rocks_servers = {
|
170
|
+
"http://www.luarocks.org/repositories/rocks"
|
171
|
+
},
|
172
|
+
|
173
|
+
lua_extension = "lua",
|
174
|
+
lua_library = site_config.LUA_LIB or "lua",
|
175
|
+
lua_interpreter = site_config.LUA_BIN or "lua",
|
176
|
+
downloader = site_config.LUAROCKS_DOWNLOADER or "wget",
|
177
|
+
md5checker = site_config.LUAROCKS_MD5CHECKER or "md5sum",
|
178
|
+
|
179
|
+
variables = {
|
180
|
+
MAKE = "make",
|
181
|
+
CC = "cc",
|
182
|
+
LD = "ld",
|
183
|
+
|
184
|
+
CVS = "cvs",
|
185
|
+
GIT = "git",
|
186
|
+
SSCM = "sscm",
|
187
|
+
SVN = "svn",
|
188
|
+
HG = "hg",
|
189
|
+
|
190
|
+
RSYNC = "rsync",
|
191
|
+
WGET = "wget",
|
192
|
+
SCP = "scp",
|
193
|
+
CURL = "curl",
|
194
|
+
|
195
|
+
PWD = "pwd",
|
196
|
+
MKDIR = "mkdir",
|
197
|
+
RMDIR = "rmdir",
|
198
|
+
CP = "cp",
|
199
|
+
LS = "ls",
|
200
|
+
RM = "rm",
|
201
|
+
FIND = "find",
|
202
|
+
TEST = "test",
|
203
|
+
CHMOD = "chmod",
|
204
|
+
PATCH = "patch",
|
205
|
+
|
206
|
+
ZIP = "zip",
|
207
|
+
UNZIP = "unzip",
|
208
|
+
GUNZIP = "gunzip",
|
209
|
+
BUNZIP2 = "bunzip2",
|
210
|
+
TAR = "tar",
|
211
|
+
|
212
|
+
MD5SUM = "md5sum",
|
213
|
+
OPENSSL = "openssl",
|
214
|
+
MD5 = "md5",
|
215
|
+
STAT = "stat",
|
216
|
+
|
217
|
+
CMAKE = "cmake",
|
218
|
+
SEVENZ = "7z",
|
219
|
+
|
220
|
+
STATFLAG = "-c '%a'",
|
221
|
+
},
|
222
|
+
|
223
|
+
external_deps_subdirs = {
|
224
|
+
bin = "bin",
|
225
|
+
lib = "lib",
|
226
|
+
include = "include"
|
227
|
+
},
|
228
|
+
runtime_external_deps_subdirs = {
|
229
|
+
bin = "bin",
|
230
|
+
lib = "lib",
|
231
|
+
include = "include"
|
232
|
+
},
|
233
|
+
}
|
234
|
+
|
235
|
+
if detected.windows then
|
236
|
+
home_config_file = home_config_file:gsub("\\","/")
|
237
|
+
defaults.arch = "win32-"..proc
|
238
|
+
defaults.platforms = {"win32", "windows" }
|
239
|
+
defaults.lib_extension = "dll"
|
240
|
+
defaults.external_lib_extension = "dll"
|
241
|
+
defaults.obj_extension = "obj"
|
242
|
+
defaults.external_deps_dirs = { "c:/external/" }
|
243
|
+
defaults.variables.LUA_BINDIR = site_config.LUA_BINDIR and site_config.LUA_BINDIR:gsub("\\", "/") or "c:/lua"..lua_version.."/bin"
|
244
|
+
defaults.variables.LUA_INCDIR = site_config.LUA_INCDIR and site_config.LUA_INCDIR:gsub("\\", "/") or "c:/lua"..lua_version.."/include"
|
245
|
+
defaults.variables.LUA_LIBDIR = site_config.LUA_LIBDIR and site_config.LUA_LIBDIR:gsub("\\", "/") or "c:/lua"..lua_version.."/lib"
|
246
|
+
defaults.cmake_generator = "MinGW Makefiles"
|
247
|
+
defaults.makefile = "Makefile.win"
|
248
|
+
defaults.variables.MAKE = "nmake" -- TODO: Split Windows flavors between mingw and msvc
|
249
|
+
defaults.variables.CC = "cl"
|
250
|
+
defaults.variables.RC = "rc"
|
251
|
+
defaults.variables.WRAPPER = site_config.LUAROCKS_PREFIX .. "\\2.0\\rclauncher.obj"
|
252
|
+
defaults.variables.LD = "link"
|
253
|
+
defaults.variables.MT = "mt"
|
254
|
+
defaults.variables.CFLAGS = "/MD /O2"
|
255
|
+
defaults.variables.LIBFLAG = "/dll"
|
256
|
+
defaults.variables.LUALIB = defaults.lua_library or "lua"..lua_version..".lib"
|
257
|
+
defaults.external_deps_patterns = {
|
258
|
+
bin = { "?.exe", "?.bat" },
|
259
|
+
lib = { "?.lib", "?.dll", "lib?.dll" },
|
260
|
+
include = { "?.h" }
|
261
|
+
}
|
262
|
+
defaults.runtime_external_deps_patterns = {
|
263
|
+
bin = { "?.exe", "?.bat" },
|
264
|
+
lib = { "?.dll", "lib?.dll" },
|
265
|
+
include = { "?.h" }
|
266
|
+
}
|
267
|
+
defaults.export_lua_path = "SET LUA_PATH=%s"
|
268
|
+
defaults.export_lua_cpath = "SET LUA_CPATH=%s"
|
269
|
+
defaults.local_cache = home.."/cache/luarocks"
|
270
|
+
end
|
271
|
+
|
272
|
+
if detected.mingw32 then
|
273
|
+
home_config_file = home_config_file:gsub("\\","/")
|
274
|
+
defaults.arch = "win32-"..proc
|
275
|
+
defaults.platforms = { "win32", "mingw32" }
|
276
|
+
defaults.lib_extension = "dll"
|
277
|
+
defaults.external_lib_extension = "dll"
|
278
|
+
defaults.obj_extension = "o"
|
279
|
+
defaults.external_deps_dirs = { "c:/external/" }
|
280
|
+
defaults.variables.LUA_BINDIR = site_config.LUA_BINDIR and site_config.LUA_BINDIR:gsub("\\", "/") or "c:/lua"..lua_version.."/bin"
|
281
|
+
defaults.variables.LUA_INCDIR = site_config.LUA_INCDIR and site_config.LUA_INCDIR:gsub("\\", "/") or "c:/lua"..lua_version.."/include"
|
282
|
+
defaults.variables.LUA_LIBDIR = site_config.LUA_LIBDIR and site_config.LUA_LIBDIR:gsub("\\", "/") or "c:/lua"..lua_version.."/lib"
|
283
|
+
defaults.cmake_generator = "MinGW Makefiles"
|
284
|
+
defaults.make = "mingw32-make" -- TODO: Split Windows flavors between mingw and msvc
|
285
|
+
defaults.makefile = "Makefile.win"
|
286
|
+
defaults.variables.CC = "mingw32-gcc"
|
287
|
+
defaults.variables.RC = "windres"
|
288
|
+
defaults.variables.WRAPPER = site_config.LUAROCKS_PREFIX .. "\\2.0\\rclauncher.o"
|
289
|
+
defaults.variables.LD = "mingw32-gcc"
|
290
|
+
defaults.variables.CFLAGS = "-O2"
|
291
|
+
defaults.variables.LIBFLAG = "-shared"
|
292
|
+
defaults.external_deps_patterns = {
|
293
|
+
bin = { "?.exe", "?.bat" },
|
294
|
+
lib = { "?.lib", "?.dll", "lib?.dll" },
|
295
|
+
include = { "?.h" }
|
296
|
+
}
|
297
|
+
defaults.runtime_external_deps_patterns = {
|
298
|
+
bin = { "?.exe", "?.bat" },
|
299
|
+
lib = { "?.dll", "lib?.dll" },
|
300
|
+
include = { "?.h" }
|
301
|
+
}
|
302
|
+
defaults.export_lua_path = "SET LUA_PATH=%s"
|
303
|
+
defaults.export_lua_cpath = "SET LUA_CPATH=%s"
|
304
|
+
defaults.local_cache = home.."/cache/luarocks"
|
305
|
+
end
|
306
|
+
|
307
|
+
if detected.unix then
|
308
|
+
defaults.lib_extension = "so"
|
309
|
+
defaults.external_lib_extension = "so"
|
310
|
+
defaults.obj_extension = "o"
|
311
|
+
defaults.external_deps_dirs = { "/usr/local", "/usr" }
|
312
|
+
defaults.variables.LUA_BINDIR = site_config.LUA_BINDIR or "/usr/local/bin"
|
313
|
+
defaults.variables.LUA_INCDIR = site_config.LUA_INCDIR or "/usr/local/include"
|
314
|
+
defaults.variables.LUA_LIBDIR = site_config.LUA_LIBDIR or "/usr/local/lib"
|
315
|
+
defaults.variables.CFLAGS = "-O2"
|
316
|
+
defaults.cmake_generator = "Unix Makefiles"
|
317
|
+
defaults.platforms = { "unix" }
|
318
|
+
defaults.variables.LIBFLAG = "-shared"
|
319
|
+
defaults.external_deps_patterns = {
|
320
|
+
bin = { "?" },
|
321
|
+
lib = { "lib?.a", "lib?.so", "lib?.so.*" },
|
322
|
+
include = { "?.h" }
|
323
|
+
}
|
324
|
+
defaults.runtime_external_deps_patterns = {
|
325
|
+
bin = { "?" },
|
326
|
+
lib = { "lib?.so", "lib?.so.*" },
|
327
|
+
include = { "?.h" }
|
328
|
+
}
|
329
|
+
defaults.export_lua_path = "export LUA_PATH='%s'"
|
330
|
+
defaults.export_lua_cpath = "export LUA_CPATH='%s'"
|
331
|
+
defaults.local_cache = home.."/.cache/luarocks"
|
332
|
+
if not defaults.variables.CFLAGS:match("-fPIC") then
|
333
|
+
defaults.variables.CFLAGS = defaults.variables.CFLAGS.." -fPIC"
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
337
|
+
if detected.cygwin then
|
338
|
+
defaults.lib_extension = "so" -- can be overridden in the config file for mingw builds
|
339
|
+
defaults.arch = "cygwin-"..proc
|
340
|
+
defaults.platforms = {"unix", "cygwin"}
|
341
|
+
defaults.cmake_generator = "Unix Makefiles"
|
342
|
+
defaults.variables.CC = "echo -llua | xargs gcc"
|
343
|
+
defaults.variables.LD = "echo -llua | xargs gcc"
|
344
|
+
defaults.variables.LIBFLAG = "-shared"
|
345
|
+
end
|
346
|
+
|
347
|
+
if detected.bsd then
|
348
|
+
defaults.variables.STATFLAG = "-f '%Op'"
|
349
|
+
end
|
350
|
+
|
351
|
+
if detected.macosx then
|
352
|
+
defaults.external_lib_extension = "dylib"
|
353
|
+
defaults.arch = "macosx-"..proc
|
354
|
+
defaults.platforms = {"unix", "bsd", "macosx"}
|
355
|
+
defaults.variables.CC = "export MACOSX_DEPLOYMENT_TARGET=10.3; gcc"
|
356
|
+
defaults.variables.LD = "export MACOSX_DEPLOYMENT_TARGET=10.3; gcc"
|
357
|
+
defaults.variables.LIBFLAG = "-bundle -undefined dynamic_lookup -all_load"
|
358
|
+
defaults.variables.STATFLAG = "-f '%A'"
|
359
|
+
end
|
360
|
+
|
361
|
+
if detected.linux then
|
362
|
+
defaults.arch = "linux-"..proc
|
363
|
+
defaults.platforms = {"unix", "linux"}
|
364
|
+
defaults.variables.CC = "gcc"
|
365
|
+
defaults.variables.LD = "gcc"
|
366
|
+
defaults.variables.LIBFLAG = "-shared"
|
367
|
+
end
|
368
|
+
|
369
|
+
if detected.freebsd then
|
370
|
+
defaults.arch = "freebsd-"..proc
|
371
|
+
defaults.platforms = {"unix", "bsd", "freebsd"}
|
372
|
+
defaults.variables.MAKE = "gmake"
|
373
|
+
defaults.variables.CC = "gcc"
|
374
|
+
defaults.variables.LD = "gcc"
|
375
|
+
defaults.variables.LIBFLAG = "-shared"
|
376
|
+
end
|
377
|
+
|
378
|
+
if detected.openbsd then
|
379
|
+
defaults.arch = "openbsd-"..proc
|
380
|
+
defaults.platforms = {"unix", "bsd", "openbsd"}
|
381
|
+
end
|
382
|
+
|
383
|
+
if detected.solaris then
|
384
|
+
defaults.arch = "solaris-"..proc
|
385
|
+
defaults.platforms = {"unix", "solaris"}
|
386
|
+
defaults.variables.MAKE = "gmake"
|
387
|
+
defaults.variables.CC = "gcc"
|
388
|
+
defaults.variables.LD = "gcc"
|
389
|
+
end
|
390
|
+
|
391
|
+
-- Expose some more values detected by LuaRocks for use by rockspec authors.
|
392
|
+
defaults.variables.LUA = site_config.LUA_DIR_SET and (defaults.variables.LUA_BINDIR.."/"..defaults.lua_interpreter) or defaults.lua_interpreter
|
393
|
+
defaults.variables.LUA_LIB = defaults.lua_library
|
394
|
+
defaults.variables.LIB_EXTENSION = defaults.lib_extension
|
395
|
+
defaults.variables.OBJ_EXTENSION = defaults.obj_extension
|
396
|
+
defaults.variables.LUAROCKS_PREFIX = site_config.LUAROCKS_PREFIX
|
397
|
+
|
398
|
+
-- Use defaults:
|
399
|
+
|
400
|
+
-- Populate values from 'defaults.variables' in 'variables' if they were not
|
401
|
+
-- already set by user.
|
402
|
+
if not _M.variables then
|
403
|
+
_M.variables = {}
|
404
|
+
end
|
405
|
+
for k,v in pairs(defaults.variables) do
|
406
|
+
if not _M.variables[k] then
|
407
|
+
_M.variables[k] = v
|
408
|
+
end
|
409
|
+
end
|
410
|
+
|
411
|
+
-- For values not set in the config file, use values from the 'defaults' table.
|
412
|
+
local cfg_mt = {
|
413
|
+
__index = function(t, k)
|
414
|
+
local default = defaults[k]
|
415
|
+
if default then
|
416
|
+
rawset(t, k, default)
|
417
|
+
end
|
418
|
+
return default
|
419
|
+
end
|
420
|
+
}
|
421
|
+
setmetatable(_M, cfg_mt)
|
422
|
+
|
423
|
+
for _,tree in ipairs(rocks_trees) do
|
424
|
+
if type(tree) == "string" then
|
425
|
+
package.path = tree..lua_modules_path.."/?.lua;"..tree..lua_modules_path.."/?/init.lua;"..package.path
|
426
|
+
package.cpath = tree..lib_modules_path.."/?."..lib_extension..";"..package.cpath
|
427
|
+
else
|
428
|
+
package.path = (tree.lua_dir or tree.root..lua_modules_path).."/?.lua;"..
|
429
|
+
(tree.lua_dir or tree.root..lua_modules_path).."/?/init.lua;"..package.path
|
430
|
+
package.cpath = (tree.lib_dir or tree.root..lib_modules_path).."/?."..lib_extension..";"..package.cpath
|
431
|
+
end
|
432
|
+
end
|
433
|
+
|
434
|
+
function which_config()
|
435
|
+
return sys_config_file, sys_config_ok, home_config_file, home_config_ok
|
436
|
+
end
|
437
|
+
|
438
|
+
--- Check if platform was detected
|
439
|
+
-- @param query string: The platform name to check.
|
440
|
+
-- @return boolean: true if LuaRocks is currently running on queried platform.
|
441
|
+
function is_platform(query)
|
442
|
+
assert(type(query) == "string")
|
443
|
+
|
444
|
+
for _, platform in ipairs(platforms) do
|
445
|
+
if platform == query then
|
446
|
+
return true
|
447
|
+
end
|
448
|
+
end
|
449
|
+
end
|
@@ -0,0 +1,163 @@
|
|
1
|
+
|
2
|
+
--- Functions for command-line scripts.
|
3
|
+
module("luarocks.command_line", package.seeall)
|
4
|
+
|
5
|
+
local util = require("luarocks.util")
|
6
|
+
local cfg = require("luarocks.cfg")
|
7
|
+
local fs = require("luarocks.fs")
|
8
|
+
local path = require("luarocks.path")
|
9
|
+
local dir = require("luarocks.dir")
|
10
|
+
|
11
|
+
--- Display an error message and exit.
|
12
|
+
-- @param message string: The error message.
|
13
|
+
local function die(message)
|
14
|
+
assert(type(message) == "string")
|
15
|
+
|
16
|
+
local ok, err = pcall(util.run_scheduled_functions)
|
17
|
+
if not ok then
|
18
|
+
util.printerr("\nLuaRocks "..cfg.program_version.." internal bug (please report at luarocks-developers@lists.sourceforge.net):\n"..err)
|
19
|
+
end
|
20
|
+
util.printerr("\nError: "..message)
|
21
|
+
os.exit(1)
|
22
|
+
end
|
23
|
+
|
24
|
+
local function is_writable(tree)
|
25
|
+
if type(tree) == "string" then
|
26
|
+
return fs.make_dir(tree) and fs.is_writable(tree)
|
27
|
+
else
|
28
|
+
writable = true
|
29
|
+
for k, v in pairs(tree) do
|
30
|
+
writable = writable and fs.make_dir(v) and fs.is_writable(v)
|
31
|
+
end
|
32
|
+
return writable
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
--- Main command-line processor.
|
37
|
+
-- Parses input arguments and calls the appropriate driver function
|
38
|
+
-- to execute the action requested on the command-line, forwarding
|
39
|
+
-- to it any additional arguments passed by the user.
|
40
|
+
-- Uses the global table "commands", which contains
|
41
|
+
-- the loaded modules representing commands.
|
42
|
+
-- @param ... string: Arguments given on the command-line.
|
43
|
+
function run_command(...)
|
44
|
+
local args = {...}
|
45
|
+
local cmdline_vars = {}
|
46
|
+
for i = #args, 1, -1 do
|
47
|
+
local arg = args[i]
|
48
|
+
if arg:match("^[^-][^=]*=") then
|
49
|
+
local var, val = arg:match("^([A-Z_][A-Z0-9_]*)=(.*)")
|
50
|
+
if val then
|
51
|
+
cmdline_vars[var] = val
|
52
|
+
table.remove(args, i)
|
53
|
+
else
|
54
|
+
die("Invalid assignment: "..arg)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
local nonflags = { util.parse_flags(unpack(args)) }
|
59
|
+
local flags = table.remove(nonflags, 1)
|
60
|
+
|
61
|
+
if flags["from"] then flags["server"] = flags["from"] end
|
62
|
+
if flags["only-from"] then flags["only-server"] = flags["only-from"] end
|
63
|
+
if flags["only-sources-from"] then flags["only-sources"] = flags["only-sources-from"] end
|
64
|
+
if flags["to"] then flags["tree"] = flags["to"] end
|
65
|
+
|
66
|
+
cfg.flags = flags
|
67
|
+
|
68
|
+
local command
|
69
|
+
|
70
|
+
if flags["version"] then
|
71
|
+
util.printout(program_name.." "..cfg.program_version)
|
72
|
+
util.printout(program_description)
|
73
|
+
util.printout()
|
74
|
+
os.exit(0)
|
75
|
+
elseif flags["help"] or #nonflags == 0 then
|
76
|
+
command = "help"
|
77
|
+
args = nonflags
|
78
|
+
else
|
79
|
+
command = nonflags[1]
|
80
|
+
for i, arg in ipairs(args) do
|
81
|
+
if arg == command then
|
82
|
+
table.remove(args, i)
|
83
|
+
break
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
command = command:gsub("-", "_")
|
88
|
+
|
89
|
+
if flags["extensions"] then
|
90
|
+
cfg.use_extensions = true
|
91
|
+
local type_check = require("luarocks.type_check")
|
92
|
+
type_check.load_extensions()
|
93
|
+
end
|
94
|
+
|
95
|
+
if cfg.local_by_default then
|
96
|
+
flags["local"] = true
|
97
|
+
end
|
98
|
+
|
99
|
+
if flags["tree"] then
|
100
|
+
if flags["tree"] == true then
|
101
|
+
die("Argument error: use --tree=<path>")
|
102
|
+
end
|
103
|
+
local root_dir = fs.absolute_name(flags["tree"])
|
104
|
+
path.use_tree(root_dir)
|
105
|
+
elseif flags["local"] then
|
106
|
+
path.use_tree(cfg.home_tree)
|
107
|
+
else
|
108
|
+
local trees = cfg.rocks_trees
|
109
|
+
path.use_tree(trees[#trees])
|
110
|
+
end
|
111
|
+
|
112
|
+
if type(cfg.root_dir) == "string" then
|
113
|
+
cfg.root_dir = cfg.root_dir:gsub("/+$", "")
|
114
|
+
else
|
115
|
+
cfg.root_dir.root = cfg.root_dir.root:gsub("/+$", "")
|
116
|
+
end
|
117
|
+
cfg.rocks_dir = cfg.rocks_dir:gsub("/+$", "")
|
118
|
+
cfg.deploy_bin_dir = cfg.deploy_bin_dir:gsub("/+$", "")
|
119
|
+
cfg.deploy_lua_dir = cfg.deploy_lua_dir:gsub("/+$", "")
|
120
|
+
cfg.deploy_lib_dir = cfg.deploy_lib_dir:gsub("/+$", "")
|
121
|
+
|
122
|
+
cfg.variables.ROCKS_TREE = cfg.rocks_dir
|
123
|
+
cfg.variables.SCRIPTS_DIR = cfg.deploy_bin_dir
|
124
|
+
|
125
|
+
if flags["server"] then
|
126
|
+
if flags["server"] == true then
|
127
|
+
die("Argument error: use --server=<url>")
|
128
|
+
end
|
129
|
+
local protocol, path = dir.split_url(flags["server"])
|
130
|
+
table.insert(cfg.rocks_servers, 1, protocol.."://"..path)
|
131
|
+
end
|
132
|
+
|
133
|
+
if flags["only-server"] then
|
134
|
+
if flags["only-server"] == true then
|
135
|
+
die("Argument error: use --only-server=<url>")
|
136
|
+
end
|
137
|
+
cfg.rocks_servers = { flags["only-server"] }
|
138
|
+
end
|
139
|
+
|
140
|
+
if flags["only-sources"] then
|
141
|
+
cfg.only_sources_from = flags["only-sources"]
|
142
|
+
end
|
143
|
+
|
144
|
+
if command ~= "help" then
|
145
|
+
for k, v in pairs(cmdline_vars) do
|
146
|
+
cfg.variables[k] = v
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
if commands[command] then
|
151
|
+
local xp, ok, err = xpcall(function() return commands[command].run(unpack(args)) end, function(err)
|
152
|
+
die(debug.traceback("LuaRocks "..cfg.program_version
|
153
|
+
.." bug (please report at luarocks-developers@lists.sourceforge.net).\n"
|
154
|
+
..err, 2))
|
155
|
+
end)
|
156
|
+
if xp and (not ok) then
|
157
|
+
die(err)
|
158
|
+
end
|
159
|
+
else
|
160
|
+
die("Unknown command: "..command)
|
161
|
+
end
|
162
|
+
util.run_scheduled_functions()
|
163
|
+
end
|