]> git.decadent.org.uk Git - dak.git/blob - config/debian/common
s/team@backports.d.o/backports-team@d.o/
[dak.git] / config / debian / common
1 # -*- mode:sh -*-
2 # log something (basically echo it together with a timestamp)
3 #
4 # Set $PROGRAM to a string to have it added to the output.
5 function log () {
6         local prefix=${PROGRAM:-}
7         echo "$(date +"%b %d %H:%M:%S") $(hostname -s) ${prefix}[$$]: $@"
8 }
9
10 # log the message using log() but then also send a mail
11 # to the address configured in MAILTO (if non-empty)
12 function log_error () {
13         log "$@"
14         if [ -z "${MAILTO}" ]; then
15                 echo "$@" | mail -a "X-Debian: DAK" -e -s "[$PROGRAM@$(hostname -s)] ERROR [$$]" ${MAILTO}  -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
16         fi
17 }
18
19 # debug log, only output when DEBUG=1
20 function debug () {
21     if [ $DEBUG -eq 1 ]; then
22         log "$*"
23     fi
24 }
25
26 function wbtrigger() {
27     SSHOPT="-o BatchMode=yes -o ConnectTimeout=30 -o SetupTimeout=240"
28     if lockfile -r 3 -l 3600 "${LOCK_BUILDD}"; then
29         ssh -q -q ${SSHOPT} wbadm@buildd /org/wanna-build/trigger.often
30     fi
31     rm -f "${LOCK_BUILDD}"
32 }
33
34 # used by cron.dinstall *and* cron.unchecked.
35 function make_buildd_dir () {
36     local overridesuite
37     local suite
38
39     dak manage-build-queues -a
40     dak generate-packages-sources2 -a build-queues
41     dak generate-releases -a build-queues >/dev/null
42     ${scriptsdir}/update-buildd-archive ${base}/build-queues ${incoming}/debian-buildd
43
44     for suite in unstable experimental squeeze-backports; do
45         rm -rf "$incoming/dists/$suite/buildd"
46         mkdir -p "$incoming/dists/$suite/buildd"
47         dak export-suite -s "buildd-$suite" -d "$incoming/dists/$suite/buildd"
48     done
49     rm -f ${incoming}/public/*
50     dak export-suite -s "accepted" -d "$incoming/public"
51
52     # export to old build queue directories
53     # XXX: Remove once the buildds use the version generated above.
54     for suite in $(ls -1 $incoming/dists/); do
55         # Skip project trace directory
56         if [ "${suite}x" = "projectx" ]; then continue; fi
57         cd ${incoming}/dists/${suite}/buildd
58
59         overridesuite=sid
60         if [ "${suite}" = "squeeze-backports" ]; then
61             overridesuite="${suite}"
62         fi
63
64         apt-ftparchive packages . $overridedir/override.${overridesuite}.all3 >Packages
65         gzip -9c --rsyncable <Packages >Packages.gz
66         apt-ftparchive sources . $overridedir/override.${overridesuite}.all3 >Sources
67         gzip -9c --rsyncable <Sources >Sources.gz
68
69         rm -f buildd/Release
70         cd ..
71         apt-ftparchive -qq -o APT::FTPArchive::Release::Origin="Debian" -o APT::FTPArchive::Release::Label="Debian" -o APT::FTPArchive::Release::Description="buildd $suite incoming" -o APT::FTPArchive::Release::Architectures="$archs" release buildd >Release
72         if [ "$suite" = "experimental" -o "${suite}" = "squeeze-backports" ]; then
73             echo "NotAutomatic: yes" >>Release
74         fi
75
76         gpg --secret-keyring /srv/ftp-master.debian.org/s3kr1t/dot-gnupg/secring.gpg --keyring /srv/ftp-master.debian.org/s3kr1t/dot-gnupg/pubring.gpg --no-options --batch --no-tty --armour --default-key 473041FA --detach-sign -o Release.gpg Release
77
78         mv Release Release.gpg buildd/
79     done
80
81     STAMP=${STAMP:-$(date "+%Y%m%d%H%M")}
82
83     for dist in $(ls -1 ${incoming}/dists/); do
84         # Skip project trace directory
85         if [ "${dist}x" = "projectx" ]; then continue; fi
86         cd ${incoming}/dists/${dist}
87         mkdir -p tree/${STAMP}
88         cp -al ${incoming}/dists/${dist}/buildd/. tree/${STAMP}/
89         ln -sfT tree/${STAMP} ${incoming}/dists/${dist}/current
90         find ./tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
91     done
92 }
93
94 # Process (oldstable)-proposed-updates "NEW" queue
95 function punew_do() {
96     local queue="$1"
97     local qdir="$2"
98     date -u -R >> REPORT
99     dak process-policy "${queue}" | tee -a REPORT | mail -a "X-Debian: DAK" -e -s "NEW changes in ${queue}" debian-release@lists.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
100     echo >> REPORT
101
102     dak generate-packages-sources2 -s "${queue}"
103
104     STAMP=${STAMP:-$(date "+%Y%m%d%H%M")}
105
106     local exportdir="${queuedir}${qdir}/tree/${STAMP}"
107     local targetdir="${queuedir}${qdir}/export"
108     dak export -q "${queue}" -d "${exportdir}" --all
109     ln -sfT ${exportdir} ${targetdir}
110     find ${queuedir}${qdir}/tree -mindepth 1 -maxdepth 1 -not -name "${STAMP}" -type d -print0 | xargs --no-run-if-empty -0 rm -rf
111 }
112
113 # These versions used in dinstall
114 function punew() {
115     if [ "${PROGRAM}" = "dinstall" ]; then
116         log "Doing automated p-u-new processing"
117     fi
118     cd "${queuedir}/p-u-new"
119     punew_do "$1" "p-u-new"
120 }
121
122 function opunew() {
123     if [ "${PROGRAM}" = "dinstall" ]; then
124         log "Doing automated o-p-u-new processing"
125     fi
126     cd "${queuedir}/o-p-u-new"
127     punew_do "$1" "o-p-u-new"
128 }
129
130 # Do the unchecked processing, in case we have files.
131 function do_unchecked () {
132     cd $unchecked
133
134     changes=$(find . -maxdepth 1 -mindepth 1 -type f -name \*.changes | sed -e "s,./,," | xargs)
135     report=$queuedir/REPORT
136     timestamp=$(date "+%Y-%m-%d %H:%M")
137     UNCHECKED_WITHOUT_LOCK=${UNCHECKED_WITHOUT_LOCK:-""}
138
139     echo "$timestamp": ${changes:-"Nothing to do"}  >> $report
140     dak process-upload -a ${UNCHECKED_WITHOUT_LOCK} -d "$unchecked" >> $report
141     dak process-commands -d "$unchecked" >> $report
142 }
143
144 # process NEW policy queue
145 function do_new () {
146     if [ "${PROGRAM}" = "dinstall" ]; then
147         log "Doing NEW processing"
148     fi
149     (dak process-policy new; dak process-policy byhand) | mail -a "X-Debian: DAK" -e -s "NEW and BYHAND processing" ftpmaster@ftp-master.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
150
151     dak process-policy backports-new | mail -a "X-Debian: DAK" -e -s "NEW processing for backports-new" backports-team@debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
152
153     dak clean-suites -a new,backports-new
154 }
155
156 function sync_debbugs () {
157     # sync with debbugs
158     echo "--" >> $report
159     timestamp=$(date "+%Y-%m-%d-%H:%M")
160     mkdir -p $queuedir/bts_version_track_archive/${timestamp}
161     rsync -aq $queuedir/bts_version_track/ $queuedir/bts_version_track_archive/${timestamp}
162     rmdir --ignore-fail-on-non-empty $queuedir/bts_version_track_archive/${timestamp} # remove if empty.
163     rsync -aq -e "ssh -o Batchmode=yes -o ConnectTimeout=30 -o SetupTimeout=30" --remove-source-files  $queuedir/bts_version_track/ bugs-sync:/org/bugs.debian.org/versions/queue/ftp-master/ 2>/dev/null && touch $lockdir/synced_bts_version || true
164     NOW=$(date +%s)
165     TSTAMP=$(stat -c %Y $lockdir/synced_bts_version)
166     DIFF=$(( NOW - TSTAMP ))
167     if [ $DIFF -ge 259200 ]; then
168         log "Kids, you tried your best and you failed miserably. The lesson is, never try. (Homer Simpson)"
169     fi
170 }
171
172 function clean_debbugs () {
173     # Delete files older than 60 days
174     find $queuedir/bts_version_track_archive/ -mtime +60 -type f -delete
175     # Delete empty directories
176     find $queuedir/bts_version_track_archive/ -empty -type d -delete
177 }
178
179 function reports() {
180     # Send a report on NEW/BYHAND packages
181     log "Nagging ftpteam about NEW/BYHAND packages"
182     dak queue-report | mail -a "X-Debian: DAK" -e -s "NEW and BYHAND on $(date +%D)" ftpmaster@ftp-master.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
183     # and one on crufty packages
184     log "Sending information about crufty packages"
185     dak cruft-report -R > $webdir/cruft-report-daily.txt
186     dak cruft-report -R -s experimental >> $webdir/cruft-report-daily.txt
187     cat $webdir/cruft-report-daily.txt | mail -a "X-Debian: DAK" -e -s "Debian archive cruft report for $(date +%D)" ftpmaster@ftp-master.debian.org -- -F "Debian FTP Masters" -f ftpmaster@ftp-master.debian.org
188 }
189
190 function pg_timestamp() {
191     tsname=${1:-"unknown"}
192     log "Saving postgres transaction id for ${tsname}"
193     psql -tAc 'select txid_current();' > $base/backup/txid_${tsname}_$(date +%Y.%m.%d-%H:%M:%S)
194 }
195
196 function get_archiveroot() {
197     local archivename="$1"
198     local query="SELECT path FROM archive WHERE name='${archivename}'"
199     local archiveroot="$(psql -tAc "${query}")"
200     if [ -z "${archiveroot}" ]; then
201         echo "get_archiveroot: couldn't get archiveroot for '${archivename}'" >&2
202         return 1
203     fi
204     echo "${archiveroot}"
205 }