Mike O'Connor [Wed, 14 Jan 2009 07:27:08 +0000 (02:27 -0500)]
a script that categorizes bugs against ftp.debian.org
This script uses python-btsutils to look for bugs filed against ftp.debian.org which have not yet been classified with usertags. Any unclassified bugs are matched against regular expression and possibly being classified. Currently the script only classifies bugs with RM: as their subject and moves them into the "Removal Requested" class. Currently the script just outputs a list of commands suitable for emailing to control@debian.org
Mike O'Connor [Fri, 2 Jan 2009 23:53:02 +0000 (18:53 -0500)]
update dinstall.html for 4 daily dinstall runs
dinstall.html contains a javascript countdown timer used to estimate when the
next dinstall run will occur. It was hardcoded for 2 daily dinstall runs.
This patch hard codes it to 4 daily runs.
There previously was a link to the announcement of the switch to 2 daily
dinstall runs. I was not able to locate a similar announcement to the switch
to 4 daily runs, so I simply removed the link to the announcement.
Joerg Jaspert [Fri, 2 Jan 2009 22:23:27 +0000 (23:23 +0100)]
Merge commit 'ncomm/dm_upload_allowed' into merge
* commit 'ncomm/dm_upload_allowed':
Fixed to handle multiple DD/DM keyrings, and ldap to handle new DM status
Modified dm status to be a keyring specific switch, modified update1
Fixed it so the fingerprint table is properly referenced vs the uid
fix typo
Fixed and made changes for Joerg.
Actually use the sleep call ...
Updated update_db.py to use a lockfile properly and to properly wait.
fixed update_db not to have a braindead mistake. Don't write code at 1 in the
Added update system for the database, and the first update script
Changed process_unchecked.py to handle DM's (slightly) more sanely.
Modified dak to use non-braindead DM schema, and use an actual column for
Corrected a bug with the handling of DM-Upload-Allowed and experimental suites of the archive
Added dm-upload-allowed flag to exist, and added support for all
Mike O'Connor [Fri, 2 Jan 2009 22:21:46 +0000 (17:21 -0500)]
fix removals rss feed when there are fewer than 16 removals
tools/removals.pl was making the assumption that at least 16 removals exist in
removals.txt. If there are not, it creates and rss feed with with bogus empty
removals to pad the output to 16 entries. This patch removes this false
assumption.
Modified dm status to be a keyring specific switch, modified update1
to handle the dm: format change, added support for changing the keyring
switch in dak.conf
Signed-off-by: Michael Casadevall <sonicmctails@gmail.com>
Joerg Jaspert [Wed, 31 Dec 2008 10:45:41 +0000 (11:45 +0100)]
Remove ChangeLog, add README.coding
Removed the ChangeLog, from now on we go with the git commit messages. One source
less for merge conflicts.
Also added a README.coding, mostly a copy from dakV2. I very much love to get code
from others, so to not annoy new committers too much, lets go and write the basic
rules I try to apply down here. Better than nagging after I got a patch to merge.
Changed process_unchecked.py to handle DM's (slightly) more sanely.
Previously, process_unchecked only checked unstable to determine DM upload rights.
This caused issues with experimental since a package could have DM-Allowed-Upload in experimental
but not in stable causing a REJECT.
The applied code change causes dak to find the highest version of a package, and use its uploaders/DM-Allowed-Uploader
flag to determine upload rights to that package. This also resolves a corner case usage where a package only exists
in testing/stable/oldstable, and upload rights to {t-|o-}p-u.
Note: In addition to the previous ALTER TABLE statememnt, the following SQL query is necessary to
finish the schema updates. This does not apply to installations not using DMs.
UPDATE source SET dm_upload_allowed = 't' WHERE id = (SELECT source FROM src_uploaders);
Signed-off-by: Michael Casadevall <sonicmctails@gmail.com>
Joerg Jaspert [Fri, 19 Dec 2008 22:00:45 +0000 (23:00 +0100)]
html fun
* daklib/utils.py: move the html escape stuff here.
* dak/examine_package.py: Remove the html escape stuff.
* dak/queue_report.py: lotsa html changes to get more info on the
page and to get Tinchos css foo working.
* web/style.css: Added new stuff from Tincho
Philipp Kern [Thu, 18 Dec 2008 18:58:38 +0000 (18:58 +0000)]
simplify wanna-build update by calling a trigger script
2008-12-18 Philipp Kern <pkern@debian.org>
* config/debian-security/cron.buildd: simplify wanna-build update
by calling a trigger script on the wanna-build host
* config/debian-security/cron.daily: no need to refresh
packages-arch-specific anymore
Joerg Jaspert [Tue, 9 Dec 2008 22:50:20 +0000 (23:50 +0100)]
Merge commit 'godog/master' into merge
* commit 'godog/master':
drop email.Parser import
move to tools/
use different pubDate if going in or out
use python-debian for .changes parsing
again, trailing whitespaces removed
catch and output file write errors
print help on non-existant dirs
insert new items on top of feeds and purge them from the bottom
add datadir option
trailing whitespaces corrected
first import
Philipp Kern [Tue, 9 Dec 2008 00:40:21 +0000 (00:40 +0000)]
do not reject binary-only uploads that fail the "must be newer than" criterion
2008-12-09 Philipp Kern <pkern@debian.org>
* daklib/queue.py (cross_suite_version_check): add an additional
parameter to specify if an upload is sourceful or not; do not reject
uploads that do not satisfy the "must be newer than" criteria and
are binary-only
* daklib/queue.py (check_source_against_db, check_binary_against_db):
invoke cross_suite_version_check as above