chiark / gitweb /
Metadata: new Hacker's Keyboard version
authorCiaran Gultnieks <ciaran@ciarang.com>
Sun, 26 Feb 2012 17:11:00 +0000 (17:11 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Sun, 26 Feb 2012 17:11:00 +0000 (17:11 +0000)
fdroid.py [new file with mode: 0755]
metadata/org.pocketworkstation.pckeyboard.txt
stats.py [moved from updatestats.py with 100% similarity]

diff --git a/fdroid.py b/fdroid.py
new file mode 100755 (executable)
index 0000000..6aea70f
--- /dev/null
+++ b/fdroid.py
@@ -0,0 +1,54 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# fdroid.py - part of the FDroid server tools
+# Copyright (C) 2010-12, Ciaran Gultnieks, ciaran@ciarang.com
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+
+commands = [
+        "build",
+        "update",
+        "checkupdates",
+        "import",
+        "rewritemeta",
+        "scanner",
+        "statsupdate"]
+
+def main():
+
+    if len(sys.argv) <= 1:
+        print "Specify a command. Valid commands are:"
+        for command in commands:
+            print "  " + command
+        sys.exit(0)
+
+    command = sys.argv[1]
+    if not command in commands:
+        print "Command '" + command + "' not recognised"
+        sys.exit(1)
+
+    # Trick optparse into displaying the right usage when --help is used.
+    sys.argv[0] += ' ' + command
+
+    del sys.argv[1]
+    mod = __import__(command)
+    mod.main()
+    sys.exit(0)
+
+if __name__ == "__main__":
+    main()
+
index 470193095b9f0dca9cdc0fd3b726e5cedab29d80..9a81ce4b304f4a914f1e0e81a1783a44d692a854 100644 (file)
@@ -17,8 +17,9 @@ Build Version:v1.18,1018,8298cd8728c2,subdir=java,target=android-11,buildjni=yes
 Build Version:v1.20,1020,e703fa82a4c3,subdir=java,target=android-11,buildjni=yes
 Build Version:v1.22,1022,154e21230e81,subdir=java,target=android-11,buildjni=yes
 Build Version:v1.29,1029,1.29,subdir=java,target=android-11,buildjni=yes,prebuild=./AutoVersion.sh
+Build Version:v1.31,1031,065ed34b811c,subdir=java,target=android-11,buildjni=yes,prebuild=sed -i "s/Hg-ident/hg ident/" AutoVersion.sh && ./AutoVersion.sh
 
 Update Check Mode:Market
-Current Version:v1.29
-Current Version Code:1029
+Current Version:v1.31
+Current Version Code:1031
 
similarity index 100%
rename from updatestats.py
rename to stats.py