1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Make comma-separated list parsing code common

This commit is contained in:
Daniel Martí 2015-05-15 16:51:58 +02:00
parent 76332e7c0e
commit ac004264f0
2 changed files with 9 additions and 4 deletions

View File

@ -1154,7 +1154,7 @@ def getsrclib(spec, srclib_dir, srclibpaths=[], subdir=None,
if srclib["Srclibs"]:
n = 1
for lib in srclib["Srclibs"].replace(';', ',').split(','):
for lib in metadata.split_list_values(srclib["Srclibs"]):
s_tuple = None
for t in srclibpaths:
if t[0] == lib:

View File

@ -552,6 +552,12 @@ def fill_build_defaults(build):
build['ndk_path'] = common.get_ndk_path(build['ndk'])
def split_list_values(s):
# Port legacy ';' separators
l = [v.strip() for v in s.replace(';', ',').split(',')]
return [v for v in l if v]
# Parse metadata for a single application.
#
# 'metafile' - the filename to read. The package id for the application comes
@ -597,8 +603,7 @@ def parse_metadata(metafile):
.format(p, linedesc))
t = flagtype(pk)
if t == 'list':
# Port legacy ';' separators
pv = [v.strip() for v in pv.replace(';', ',').split(',')]
pv = split_list_values(pv)
if pk == 'gradle':
if len(pv) == 1 and pv[0] in ['main', 'yes']:
pv = ['yes']
@ -727,7 +732,7 @@ def parse_metadata(metafile):
elif fieldtype == 'string':
thisinfo[field] = value
elif fieldtype == 'list':
thisinfo[field] = [v.strip() for v in value.replace(';', ',').split(',')]
thisinfo[field] = split_list_values(value)
elif fieldtype == 'build':
if value.endswith("\\"):
mode = 2