[aur-dev] [PATCH 4/5] git-serve: Add support for setting co-maintainers

Lukas Fleischer lfleischer at archlinux.org
Sun Sep 18 12:05:40 UTC 2016


Add support for changing co-maintainers from the SSH interface. The
syntax is `set-comaintainers <pkgbase> <user1> <user2>...`.

Signed-off-by: Lukas Fleischer <lfleischer at archlinux.org>
---
 git-interface/git-serve.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/git-interface/git-serve.py b/git-interface/git-serve.py
index 9959934..47e7df9 100755
--- a/git-interface/git-serve.py
+++ b/git-interface/git-serve.py
@@ -374,6 +374,13 @@ elif action == 'disown':
 
     pkgbase = cmdargv[1]
     pkgbase_disown(pkgbase)
+elif action == 'set-comaintainers':
+    if len(cmdargv) < 2:
+        die_with_help("{:s}: missing repository name".format(action))
+
+    pkgbase = cmdargv[1]
+    userlist = cmdargv[2:]
+    pkgbase_set_comaintainers(pkgbase, userlist)
 elif action == 'help':
     cmds = {
         "adopt <name>": "Adopt a package base.",
@@ -381,6 +388,7 @@ elif action == 'help':
         "help": "Show this help message and exit.",
         "list-repos": "List all your repositories.",
         "restore <name>": "Restore a deleted package base.",
+        "set-comaintainers <name> [...]": "Set package base co-maintainers.",
         "set-keywords <name> [...]": "Change package base keywords.",
         "setup-repo <name>": "Create a repository (deprecated).",
         "git-receive-pack": "Internal command used with Git.",
-- 
2.9.3


More information about the aur-dev mailing list