From 5f736e1410d0dfd8af698157ba14942911c7eb7c Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Thu, 9 Jan 2014 12:33:48 +0000 Subject: [PATCH] Transfer apk info when archiving Just dropping this apk entry temporarily caused an old version of the app to appear on the wiki as a failing build. (only for one cycle after the archiving happened). Moving it to the archived apks list ought to resolve that problem. --- fdroidserver/update.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fdroidserver/update.py b/fdroidserver/update.py index ce976e72..e204b638 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -828,7 +828,7 @@ def make_index(apps, apks, repodir, archive, categories): -def archive_old_apks(apps, apks, repodir, archivedir, defaultkeepversions): +def archive_old_apks(apps, apks, archapks, repodir, archivedir, defaultkeepversions): for app in apps: @@ -854,6 +854,7 @@ def archive_old_apks(apps, apks, repodir, archivedir, defaultkeepversions): if 'srcname' in apk: shutil.move(os.path.join(repodir, apk['srcname']), os.path.join(archivedir, apk['srcname'])) + archapks.append(apk) apks.remove(apk) @@ -1013,7 +1014,7 @@ def main(): print " " + apk['name'] + " - " + apk['version'] if len(repodirs) > 1: - archive_old_apks(apps, apks, repodirs[0], repodirs[1], config['archive_older']) + archive_old_apks(apps, apks, archapks, repodirs[0], repodirs[1], config['archive_older']) # Make the index for the main repo... make_index(apps, apks, repodirs[0], False, categories) -- 2.30.2