From 29ee45885b97d60c3b98ca11f511be33b5b9ce8b Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Mon, 27 Nov 2017 12:11:11 +0100 Subject: bin/common-functions: broken packages (which thus cannot be marked as tested) won't block other packages after $max_package_age_broken_testing days --- bin/common-functions | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bin') diff --git a/bin/common-functions b/bin/common-functions index b133373..394720b 100755 --- a/bin/common-functions +++ b/bin/common-functions @@ -1142,6 +1142,12 @@ print_list_of_archaic_packages() { find "${work_dir}/package-states" -mindepth 1 -maxdepth 1 -name '*.testing' -mtime "+${max_package_age_testing}" \ -exec head -n1 {} \; | \ "${base_dir}/bin/modify-package-state" -n --tested /dev/stdin + # packages remaining longer than $max_package_age_broken_testing days in testing (w/o being tested!) will be considered outdated + # and no longer block other packages from being moved + find "${work_dir}/package-states" -mindepth 1 -maxdepth 1 -name '*.testing' -mtime "+${max_package_age_broken_testing}" -printf '%f\n' \ + sed ' + s|\.testing$|| + ' ;; 'build-list') while read -r pkg rev mod_rev repo; do -- cgit v1.2.3-54-g00ecf