mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Make the server tools an installable package (with distutils) - wip
This commit is contained in:
parent
7b2e202ff3
commit
f643b0498c
13 changed files with 72 additions and 57 deletions
58
fdroid
58
fdroid
|
@ -1,2 +1,56 @@
|
||||||
#!/bin/sh
|
#!/usr/bin/python
|
||||||
./fdroid.py $*
|
# -*- 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
|
||||||
|
import fdroidserver
|
||||||
|
|
||||||
|
commands = [
|
||||||
|
"build",
|
||||||
|
"update",
|
||||||
|
"publish",
|
||||||
|
"checkupdates",
|
||||||
|
"import",
|
||||||
|
"rewritemeta",
|
||||||
|
"scanner",
|
||||||
|
"stats"]
|
||||||
|
|
||||||
|
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__('fdroidserver.' + command, None, None, [command])
|
||||||
|
mod.main()
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
|
|
||||||
|
|
55
fdroid.py
55
fdroid.py
|
@ -1,55 +0,0 @@
|
||||||
#!/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",
|
|
||||||
"publish",
|
|
||||||
"checkupdates",
|
|
||||||
"import",
|
|
||||||
"rewritemeta",
|
|
||||||
"scanner",
|
|
||||||
"stats"]
|
|
||||||
|
|
||||||
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()
|
|
||||||
|
|
0
fdroidserver/__init__.py
Normal file
0
fdroidserver/__init__.py
Normal file
0
build.py → fdroidserver/build.py
Executable file → Normal file
0
build.py → fdroidserver/build.py
Executable file → Normal file
0
checkupdates.py → fdroidserver/checkupdates.py
Executable file → Normal file
0
checkupdates.py → fdroidserver/checkupdates.py
Executable file → Normal file
0
import.py → fdroidserver/import.py
Executable file → Normal file
0
import.py → fdroidserver/import.py
Executable file → Normal file
0
publish.py → fdroidserver/publish.py
Executable file → Normal file
0
publish.py → fdroidserver/publish.py
Executable file → Normal file
0
rewritemeta.py → fdroidserver/rewritemeta.py
Executable file → Normal file
0
rewritemeta.py → fdroidserver/rewritemeta.py
Executable file → Normal file
0
scanner.py → fdroidserver/scanner.py
Executable file → Normal file
0
scanner.py → fdroidserver/scanner.py
Executable file → Normal file
0
stats.py → fdroidserver/stats.py
Executable file → Normal file
0
stats.py → fdroidserver/stats.py
Executable file → Normal file
0
update.py → fdroidserver/update.py
Executable file → Normal file
0
update.py → fdroidserver/update.py
Executable file → Normal file
16
setup.py
Normal file
16
setup.py
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
setup(name='FDroidServer',
|
||||||
|
version='0.1',
|
||||||
|
description='F-Droid Server Tools',
|
||||||
|
author='The F-Droid Project',
|
||||||
|
author_email='admin@f-droid.org',
|
||||||
|
url='http://f-droid.org',
|
||||||
|
packages=['fdroidserver'],
|
||||||
|
scripts=['fdroid'],
|
||||||
|
data_files = [('', ['COPYING', 'config.sample.py']),
|
||||||
|
('docs', ['docs/*.texi'])
|
||||||
|
]
|
||||||
|
)
|
Loading…
Add table
Add a link
Reference in a new issue