Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcalm/calm.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/calm/calm.py b/calm/calm.py
index b6e7e6e..54d0155 100755
--- a/calm/calm.py
+++ b/calm/calm.py
@@ -121,7 +121,11 @@ def process_relarea(args, state):
# packages can be stale due to changes made directly in the release
# area, so first check here if there are any stale packages to vault
if args.stale:
- stale_to_vault = remove_stale_packages(args, packages, state)
+ fresh_packages = {}
+ for arch in common_constants.ARCHES:
+ fresh_packages[arch] = package.merge(packages[arch])
+
+ stale_to_vault = remove_stale_packages(args, fresh_packages, state)
if stale_to_vault:
for arch in common_constants.ARCHES + ['noarch', 'src']:
logging.info("vaulting %d old package(s) for arch %s" % (len(stale_to_vault[arch]), arch))
@@ -130,6 +134,8 @@ def process_relarea(args, state):
logging.error("error while evaluating stale packages")
return None
+ packages = fresh_packages
+
# clean up any empty directories
if not args.dryrun:
utils.rmemptysubdirs(args.rel_area)