From 8159483306fe6a7665913c8eb3c35e65ba62aecb Mon Sep 17 00:00:00 2001 From: Mark Hymers Date: Wed, 4 Nov 2009 10:33:41 +0000 Subject: [PATCH] order files so that Packages/Sources files make sense and can be rsync'd sanely Signed-off-by: Mark Hymers --- dak/generate_filelist.py | 2 ++ 1 file changed, 2 insertions(+) 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, -- 2.39.2