2015-08-06 00:55:16 +02:00
|
|
|
# workaround the syntax error from: import fdroidserver.import
|
|
|
|
|
|
|
|
import inspect
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
localmodule = os.path.realpath(
|
|
|
|
os.path.join(os.path.dirname(inspect.getfile(inspect.currentframe())), '..'))
|
|
|
|
print('localmodule: ' + localmodule)
|
|
|
|
if localmodule not in sys.path:
|
|
|
|
sys.path.insert(0, localmodule)
|
|
|
|
|
|
|
|
class Options:
|
|
|
|
def __init__(self):
|
|
|
|
self.rev = None
|
|
|
|
self.subdir = None
|
|
|
|
|
|
|
|
module = __import__('fdroidserver.import')
|
|
|
|
for name, obj in inspect.getmembers(module):
|
|
|
|
if name == 'import':
|
2020-02-03 12:39:41 +01:00
|
|
|
clone_to_tmp_dir = obj.clone_to_tmp_dir
|
2015-08-06 00:55:16 +02:00
|
|
|
obj.options = Options()
|
|
|
|
options = obj.options
|
|
|
|
break
|
|
|
|
|
|
|
|
globals().update(vars(module))
|