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