mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 23:12:46 +03:00
Metadata: new Hacker's Keyboard version
This commit is contained in:
parent
00abc9527d
commit
ee268c64ec
3 changed files with 57 additions and 2 deletions
54
fdroid.py
Executable file
54
fdroid.py
Executable file
|
@ -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()
|
||||||
|
|
|
@ -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.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.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.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
|
Update Check Mode:Market
|
||||||
Current Version:v1.29
|
Current Version:v1.31
|
||||||
Current Version Code:1029
|
Current Version Code:1031
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue