chiark / gitweb /
Add Dogecoin support, some None fixes
[fdroidserver.git] / fdroid
1 #!/usr/bin/env python2
2 # -*- coding: utf-8 -*-
3 #
4 # fdroid.py - part of the FDroid server tools
5 # Copyright (C) 2010-13, Ciaran Gultnieks, ciaran@ciarang.com
6 # Copyright (C) 2013 Daniel Martí <mvdan@mvdan.cc>
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU Affero General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU Affero General Public License for more details.
17 #
18 # You should have received a copy of the GNU Affero General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 import sys
22
23 commands = [
24         "build",
25         "init",
26         "install",
27         "update",
28         "publish",
29         "verify",
30         "checkupdates",
31         "import",
32         "rewritemeta",
33         "scanner",
34         "stats",
35         "server"]
36
37 def print_help():
38     print "Valid commands are:"
39     for command in commands:
40         print "  " + command
41     print "Use '%s <command> --help' for more info about that command."%sys.argv[0]
42
43 def main():
44
45     if len(sys.argv) <= 1:
46         print_help()
47         sys.exit(0)
48
49     command = sys.argv[1]
50     if not command in commands:
51         if command not in ('-h', '--help'):
52             print "Command '" + command + "' not recognised.\n"
53         print_help()
54         sys.exit(1)
55
56     # Trick optparse into displaying the right usage when --help is used.
57     sys.argv[0] += ' ' + command
58
59     del sys.argv[1]
60     mod = __import__('fdroidserver.' + command, None, None, [command])
61     mod.main()
62     sys.exit(0)
63
64 if __name__ == "__main__":
65     main()
66