From: Ansgar Burchardt Date: Sun, 12 Aug 2012 08:09:42 +0000 (+0200) Subject: Revert "config/*/common: do not touch incoming" X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=6a398d3580f3f6412b450e66da6df520fb3d5138 Revert "config/*/common: do not touch incoming" This reverts commit 58fc1503ab1484b42e66a93155441634eff6e604. --- diff --git a/config/backports/common b/config/backports/common index 5c488fff..dd9876a7 100644 --- a/config/backports/common +++ b/config/backports/common @@ -37,6 +37,15 @@ function wbtrigger() { # used by cron.dinstall *and* cron.unchecked. function make_buildd_dir () { dak manage-build-queues -a + + for dist in $(ls -1 ${incoming}/dists/); do + cd ${incoming}/dists/${dist} + mkdir -p tree/${STAMP} + cp -al ${incoming}/dists/${dist}/buildd/. tree/${STAMP}/ + ln -sfT tree/${STAMP} ${incoming}/dists/${dist}/current + find ./tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf + done + } # Do the unchecked processing, in case we have files. diff --git a/config/debian/common b/config/debian/common index 1d04fd23..4d7ad846 100644 --- a/config/debian/common +++ b/config/debian/common @@ -34,6 +34,17 @@ function wbtrigger() { # used by cron.dinstall *and* cron.unchecked. function make_buildd_dir () { dak manage-build-queues -a + + for dist in $(ls -1 ${incoming}/dists/); do + # Skip project trace directory + if [ "${dist}x" = "projectx" ]; then continue; fi + cd ${incoming}/dists/${dist} + mkdir -p tree/${STAMP} + cp -al ${incoming}/dists/${dist}/buildd/. tree/${STAMP}/ + ln -sfT tree/${STAMP} ${incoming}/dists/${dist}/current + find ./tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf + done + } # Process (oldstable)-proposed-updates "NEW" queue