Skip to content
Snippets Groups Projects
Commit 04848c48 authored by Simon McVittie's avatar Simon McVittie
Browse files

build: Add a list of included packages to relocatable builds

parent 41fd4d94
No related branches found
No related tags found
No related merge requests found
...@@ -336,6 +336,7 @@ def main(): ...@@ -336,6 +336,7 @@ def main():
) )
source_to_download = set() # type: typing.Set[str] source_to_download = set() # type: typing.Set[str]
binaries = set() # type: typing.Set[str]
for package, source in ( for package, source in (
list(DEPENDENCIES.items()) + list(PRIMARY_ARCH_DEPENDENCIES.items()) list(DEPENDENCIES.items()) + list(PRIMARY_ARCH_DEPENDENCIES.items())
...@@ -343,6 +344,8 @@ def main(): ...@@ -343,6 +344,8 @@ def main():
if not args.relocatabledir and source == 'libcapsule': if not args.relocatabledir and source == 'libcapsule':
continue continue
binaries.add(package)
if os.path.exists('/usr/share/doc/{}/copyright'.format(package)): if os.path.exists('/usr/share/doc/{}/copyright'.format(package)):
install( install(
'/usr/share/doc/{}/copyright'.format(package), '/usr/share/doc/{}/copyright'.format(package),
...@@ -373,6 +376,19 @@ def main(): ...@@ -373,6 +376,19 @@ def main():
) )
source_to_download.add(source) source_to_download.add(source)
with open(
os.path.join(destdir_prefix, 'metadata', 'packages.txt'), 'w'
) as writer:
writer.write(
'#Package[:Architecture]\t#Version\t#Source\t#Installed-Size\n'
)
v_check_call([
'dpkg-query',
'-W',
'-f',
r'${binary:Package}\t${Version}\t${Source}\t${Installed-Size}\n',
] + sorted(binaries), stdout=writer)
with open( with open(
os.path.join(destdir_prefix, 'metadata', 'VERSION.txt'), os.path.join(destdir_prefix, 'metadata', 'VERSION.txt'),
'w', 'w',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment