Do not mark direct dependencies of ubiquity as auto installed

This caused cryptsetup to remain auto on the installed system

LP: #1801629
snap-tool-base-none
Julian Andres Klode 6 years ago
parent e8f064324b
commit b2db5bf365

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (2.566) UNRELEASED; urgency=medium
* Do not mark direct dependencies of ubiquity as auto installed. This caused
cryptsetup to remain auto on the installed system (LP: #1801629)
-- Julian Andres Klode <juliank@ubuntu.com> Fri, 22 Feb 2019 10:58:48 +0100
livecd-rootfs (2.565) disco; urgency=medium livecd-rootfs (2.565) disco; urgency=medium
* Also drop dependency on python. * Also drop dependency on python.

@ -23,6 +23,7 @@ def main():
roots = set(pkg for pkg in cache if is_root(pkg)) roots = set(pkg for pkg in cache if is_root(pkg))
workset = set(roots) workset = set(roots)
seen = set() seen = set()
ubiquity_depends = set()
with cache.actiongroup(): with cache.actiongroup():
while True: while True:
@ -33,7 +34,7 @@ def main():
for pkg in sorted(to_proc): for pkg in sorted(to_proc):
print(" Visiting", pkg, file=sys.stderr) print(" Visiting", pkg, file=sys.stderr)
if pkg not in roots: if pkg not in roots and pkg not in ubiquity_depends:
pkg.mark_auto() pkg.mark_auto()
for dep in (pkg.installed.dependencies + for dep in (pkg.installed.dependencies +
@ -41,6 +42,16 @@ def main():
for bdep in dep.or_dependencies: for bdep in dep.or_dependencies:
for ver in bdep.target_versions: for ver in bdep.target_versions:
if ver.package.is_installed: if ver.package.is_installed:
if pkg.name == "ubiquity":
ubiquity_depends.add(ver.package)
if pkg.name != "ubiquity":
# Reprocess this package again, as we did not mark it when we visited it from ubiquity
try:
ubiquity_depends.remove(ver.package)
# This will raise the KeyError here if ubiquity did not depend on it
seen.remove(ver.package)
except KeyError:
continue
workset.add(ver.package) workset.add(ver.package)
seen.add(pkg) seen.add(pkg)

Loading…
Cancel
Save