aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md3
-rw-r--r--src/luarocks/cmd/upload.lua2
-rw-r--r--src/luarocks/upload/api.lua2
-rw-r--r--src/luarocks/util.lua1
4 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0bd8c0c0..971d220d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,9 @@ What's new in LuaRocks 3.0
9 For example, if you have `/some/dir/lua/5.1/` in your `$LUA_PATH` and 9 For example, if you have `/some/dir/lua/5.1/` in your `$LUA_PATH` and
10 you are running Lua 5.2, `luarocks.loader` and the `luarocks` command-line 10 you are running Lua 5.2, `luarocks.loader` and the `luarocks` command-line
11 tool will convert it to `/some/dir/lua/5.2/`. 11 tool will convert it to `/some/dir/lua/5.2/`.
12* New flag `--temp-key` for `luarocks upload`, allowing you to easily
13 upload rocks into an alternate account without disrupting the
14 stored configuration of your main account.
12* New flag `--dev`, for enabling development-branch sub-repositories. 15* New flag `--dev`, for enabling development-branch sub-repositories.
13 This adds support for easily requesting `dev` modules from LuaRocks.org, as in: 16 This adds support for easily requesting `dev` modules from LuaRocks.org, as in:
14 `luarocks install --dev luafilesystem`. The list of URLs configured 17 `luarocks install --dev luafilesystem`. The list of URLs configured
diff --git a/src/luarocks/cmd/upload.lua b/src/luarocks/cmd/upload.lua
index a0b69447..ffcb1a0a 100644
--- a/src/luarocks/cmd/upload.lua
+++ b/src/luarocks/cmd/upload.lua
@@ -14,6 +14,8 @@ upload.help = [[
14 upload rockspec and source rock to server. 14 upload rockspec and source rock to server.
15--skip-pack Do not pack and send source rock. 15--skip-pack Do not pack and send source rock.
16--api-key=<key> Give it an API key. It will be stored for subsequent uses. 16--api-key=<key> Give it an API key. It will be stored for subsequent uses.
17--temp-key=<key> Use the given a temporary API key in this invocation only.
18 It will not be stored.
17--force Replace existing rockspec if the same revision of 19--force Replace existing rockspec if the same revision of
18 a module already exists. This should be used only 20 a module already exists. This should be used only
19 in case of upload mistakes: when updating a rockspec, 21 in case of upload mistakes: when updating a rockspec,
diff --git a/src/luarocks/upload/api.lua b/src/luarocks/upload/api.lua
index ff00850e..a9afd1af 100644
--- a/src/luarocks/upload/api.lua
+++ b/src/luarocks/upload/api.lua
@@ -272,7 +272,7 @@ function api.new(flags)
272 self.config = self:load_config() or {} 272 self.config = self:load_config() or {}
273 self.config.server = flags["server"] or self.config.server or cfg.upload.server 273 self.config.server = flags["server"] or self.config.server or cfg.upload.server
274 self.config.version = self.config.version or cfg.upload.version 274 self.config.version = self.config.version or cfg.upload.version
275 self.config.key = flags["api-key"] or self.config.key 275 self.config.key = flags["temp-key"] or flags["api-key"] or self.config.key
276 self.debug = flags["debug"] 276 self.debug = flags["debug"]
277 if not self.config.key then 277 if not self.config.key then
278 return nil, "You need an API key to upload rocks.\n" .. 278 return nil, "You need an API key to upload rocks.\n" ..
diff --git a/src/luarocks/util.lua b/src/luarocks/util.lua
index 1bc24be7..bc8fc049 100644
--- a/src/luarocks/util.lua
+++ b/src/luarocks/util.lua
@@ -137,6 +137,7 @@ local supported_flags = {
137 ["summary"] = "\"<text>\"", 137 ["summary"] = "\"<text>\"",
138 ["system-config"] = true, 138 ["system-config"] = true,
139 ["tag"] = "<tag>", 139 ["tag"] = "<tag>",
140 ["temp-key"] = "<key>",
140 ["timeout"] = "<seconds>", 141 ["timeout"] = "<seconds>",
141 ["to"] = "<path>", 142 ["to"] = "<path>",
142 ["tree"] = "<path>", 143 ["tree"] = "<path>",