1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Add wiki category for failing builds

This commit is contained in:
Ciaran Gultnieks 2013-10-09 09:57:00 +01:00
parent 69b7f68301
commit 87f6bf2392

View File

@ -77,6 +77,7 @@ def update_wiki(apps, apks, verbose=False):
apklist = []
gotcurrentver = False
cantupdate = False
buildfails = False
for apk in apks:
if apk['id'] == app['id']:
if str(apk['versioncode']) == app['Current Version Code']:
@ -100,6 +101,7 @@ def update_wiki(apps, apks, verbose=False):
builtit = True
break
if not builtit:
buildfails = True
apklist.append({
'versioncode': int(thisbuild['vercode']),
'version': thisbuild['version'],
@ -144,6 +146,8 @@ def update_wiki(apps, apks, verbose=False):
wikidata += '\n[[Category:Apps with no packages]]\n'
elif cantupdate and not app['Disabled']:
wikidata += "\n[[Category:Apps we can't update]]\n"
elif cantupdate and not app['Disabled']:
wikidata += "\n[[Category:Apps with failing builds]]\n"
elif not gotcurrentver and not app['Disabled']:
wikidata += '\n[[Category:Apps to Update]]\n'
if app['Update Check Mode'] == 'None':