1. Can every application in this dist be installed? select (solve package) from sid where package = select package from sid; 2. If I want to pull a source package X from sid, what other packages do I need? (all of the unsatisfied build-depends and the build-deps of the build-deps). select (unsatisfied Build-Depends) from sid where Package = "packageX"; -- circular build deps pullIn fromDist toDist packageX let package = (Package (Just ((==) packageX))) DDRelation (Dist fromDist) unsatis = satisfy (buildDeps packageX) (Dist toDist) distinct (map pullIn packageX) 3. Can all the applications in the ISO be installed from this dist? 4. What is the estimated install-size for package X and its dependencies? 5. What source/binary packages changed between dist a and dist b? 6. What order should this source packages be built in? 7. What additional packages are needed to install package X onto this system, and what order should they be installed in?