提交 81594833 编写于 作者: M Mark Hymers

order files so that Packages/Sources files make sense and can be rsync'd sanely

Signed-off-by: NMark Hymers <mhy@debian.org>
上级 3de44a25
......@@ -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,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册