From: Mark Hymers Date: Wed, 4 Nov 2009 10:33:41 +0000 (+0000) Subject: order files so that Packages/Sources files make sense and can be rsync'd sanely X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=8159483306fe6a7665913c8eb3c35e65ba62aecb;hp=3de44a25dd27d850bdc33eb7e2e90aa1a84651c3;p=dak.git order files so that Packages/Sources files make sense and can be rsync'd sanely Signed-off-by: Mark Hymers --- diff --git a/dak/generate_filelist.py b/dak/generate_filelist.py index 02f5f185..d0a64596 100755 --- a/dak/generate_filelist.py +++ b/dak/generate_filelist.py @@ -36,6 +36,7 @@ def getSources(suite, component, session): SELECT path, filename FROM srcfiles_suite_component WHERE suite = :suite AND component = :component + ORDER BY filename """ args = { 'suite': suite.suite_id, 'component': component.component_id } @@ -47,6 +48,7 @@ def getBinaries(suite, component, architecture, type, session): FROM binfiles_suite_component_arch WHERE suite = :suite AND component = :component AND type = :type AND (architecture = :architecture OR architecture = 2) + ORDER BY filename """ args = { 'suite': suite.suite_id, 'component': component.component_id,