]> git.decadent.org.uk Git - dak.git/blob - config/debian/cron.unchecked
Merge branch 'master' into security
[dak.git] / config / debian / cron.unchecked
1 #! /bin/sh
2
3 set -e
4 set -u
5 export SCRIPTVARS=/srv/ftp.debian.org/dak/config/debian/vars
6 . $SCRIPTVARS
7
8 LOCKDAILY=""
9 LOCKFILE="$lockdir/unchecked.lock"
10 NOTICE="$lockdir/daily.lock"
11
12 if [ -e $NOTICE ]; then exit 0; fi
13
14 STAMP=$(date "+%Y%m%d%H%M")
15
16 cleanup() {
17     rm -f "$LOCKFILE"
18     if [ ! -z "$LOCKDAILY" ]; then
19         rm -f "$NOTICE"
20     fi
21 }
22
23 # only run one cron.unchecked
24 if lockfile -r3 $LOCKFILE; then
25     trap cleanup 0
26     cd $unchecked
27
28     changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
29     report=$queuedir/REPORT
30     timestamp=$(date "+%Y-%m-%d %H:%M")
31
32     if [ ! -z "$changes" ]; then
33         echo "$timestamp": "$changes"  >> $report
34         dak process-unchecked -a $changes >> $report
35         echo "--" >> $report
36
37         # sync with debbugs
38         rsync -aq --remove-source-files  $queuedir/bts_version_track/ bugs-sync:/org/bugs.debian.org/versions/queue/ftp-master/
39
40         if lockfile -r3 $NOTICE; then
41             LOCKDAILY="YES"
42             psql projectb -A -t -q -c "SELECT filename FROM queue_build WHERE queue = 0 AND suite = 5 AND in_queue = true AND filename ~ 'd(sc|eb)$'" > $dbdir/dists/unstable_accepted.list
43             cd $overridedir
44             dak make-overrides &>/dev/null
45             rm -f override.sid.all3 override.sid.all3.src
46             for i in main contrib non-free main.debian-installer; do
47                 cat override.sid.$i >> override.sid.all3
48                 if [ "$i" != "main.debian-installer" ]; then
49                     cat override.sid.$i.src >> override.sid.all3.src
50                 fi
51             done
52             cd $configdir
53             apt-ftparchive -qq -o APT::FTPArchive::Contents=off generate apt.conf.buildd
54
55             cd  ${incoming}
56             rm -f buildd/Release*
57             apt-ftparchive -qq -o APT::FTPArchive::Release::Origin="Debian" -o APT::FTPArchive::Release::Label="Debian" -o APT::FTPArchive::Release::Description="buildd incoming" -o APT::FTPArchive::Release::Architectures="${archs}" release buildd > Release
58             gpg --secret-keyring /srv/ftp.debian.org/s3kr1t/dot-gnupg/secring.gpg --keyring /srv/ftp.debian.org/s3kr1t/dot-gnupg/pubring.gpg --no-options --batch --no-tty --armour --default-key 6070D3A1 --detach-sign -o Release.gpg Release 
59                 mv Release* buildd/.
60
61             cd ${incoming}
62             mkdir -p tree/${STAMP}
63             cp -al ${incoming}/buildd/. tree/${STAMP}/
64             ln -sfT tree/${STAMP} ${incoming}/builddweb
65             find ./tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
66
67             . $configdir/cron.buildd
68         fi
69     else
70                 echo "$timestamp": Nothing to do >> $report
71     fi
72 fi