X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdak.py;h=67314ff5bf54718d03141c28ef2bcc9071488ea9;hb=4c7eee9642e82b6286f807ad92a93e7ef30288e6;hp=e424836f750b1a1f683d027ade063de8359ea5f4;hpb=3c6fe9e939ef06d63e364990896472c322f88e02;p=dak.git diff --git a/dak/dak.py b/dak/dak.py index e424836f..67314ff5 100755 --- a/dak/dak.py +++ b/dak/dak.py @@ -33,6 +33,7 @@ G{importgraph} ################################################################################ +import os import sys import traceback import daklib.utils @@ -66,15 +67,19 @@ def init(): ("process-new", "Process NEW and BYHAND packages"), - ("process-unchecked", + ("process-upload", "Process packages in queue/unchecked"), - ("process-accepted", - "Install packages into the pool"), + ("process-policy", + "Process packages in policy queues from COMMENTS files"), + ("dominate", + "Remove obsolete source and binary associations from suites"), ("make-suite-file-list", - "Generate lists of packages per suite for apt-ftparchive"), + "OBSOLETE: replaced by dominate and generate-filelist"), ("make-pkg-file-mapping", "Generate package <-> file mapping"), + ("generate-filelist", + "Generate file lists for apt-ftparchive"), ("generate-releases", "Generate Release files"), ("contents", @@ -83,6 +88,8 @@ def init(): "Generate .diff/Index files"), ("clean-suites", "Clean unused/superseded packages from the archive"), + ("manage-build-queues", + "Clean and update metadata for build queues"), ("clean-queues", "Clean cruft from incoming"), ("clean-proposed-updates", @@ -221,4 +228,6 @@ def main(): ################################################################################ if __name__ == "__main__": + os.environ['LANG'] = 'C' + os.environ['LC_ALL'] = 'C' main()