Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-27 | store source name and version in binary cache | David Kalnischkies | |
Accessing the package records to acquire this information is pretty costly, so that information wasn't used so far in many places. The most noticeable user by far is EDSP at the moment, but there are ideas to change that which this commit tries to enable. | |||
2014-06-18 | don't send pkg from an unknown architecture via EDSP | David Kalnischkies | |
APT's cache can include packages from architectures dpkg has no knowledge about and can therefore not be installed for e.g. to allow easy lookups. There is no point in telling external solvers about them though and some of them might even be really talkative about ignoring them if we do. | |||
2014-05-30 | support parsing EDSP requests Architecture{,s} stanza | David Kalnischkies | |
Adds also a small testcase for EDSP Git-Dch: Ignore | |||
2014-05-30 | check exit status of external solvers | David Kalnischkies | |
Solvers are supposed to exit successfully even if they haven't found a solution, but a solver which fails drastically (like e.g. segfaults) should be detected and dealt with accordingly instead of ignored. | |||
2014-05-04 | EDSP: add APT-Release field to Package stanzas | Stefano Zacchiroli | |
2014-05-04 | EDSP: add Source field to Package stanzas | Stefano Zacchiroli | |
2014-05-04 | EDSP: add Architecture(s) multi-arch fields to the Request stanza | Stefano Zacchiroli | |
2014-05-04 | EDSP: bump protocol version to 0.5 | Stefano Zacchiroli | |
2014-03-13 | cleanup headers and especially #includes everywhere | David Kalnischkies | |
Beside being a bit cleaner it hopefully also resolves oddball problems I have with high levels of parallel jobs. Git-Dch: Ignore Reported-By: iwyu (include-what-you-use) | |||
2014-03-13 | warning: unused parameter ‘foo’ [-Wunused-parameter] | David Kalnischkies | |
Reported-By: gcc -Wunused-parameter Git-Dch: Ignore | |||
2013-03-20 | apt-pkg/edsp.cc: do not use stderr in WriteSolution at all | Michael Vogt | |
2013-03-20 | apt-pkg/edsp.cc: do not spam stderr in WriteSolution | Michael Vogt | |
2012-10-13 | * apt-pkg/edsp.cc: | David Kalnischkies | |
- include reinstall requests and already installed (= protected) packages in the install-request for external resolvers (Closes: #689331) | |||
2012-06-11 | * apt-pkg/cacheiterators.h: | David Kalnischkies | |
- add an IsMultiArchImplicit() method for Dep- and PrvIterator | |||
2011-10-14 | merged lp:~donkult/apt/experimental | Michael Vogt | |
2011-09-19 | use forward declaration in headers if possible instead of includes | David Kalnischkies | |
2011-09-13 | reorder includes: add <config.h> if needed and include it at first | David Kalnischkies | |
2011-05-17 | * apt-pkg/pkgcache.h: | David Kalnischkies | |
- clean up mess with the "all" handling in MultiArch to fix LP: #733741 cleanly for everyone now | |||
2011-05-17 | rename option APT::Solver::Name to simply APT::Solver | David Kalnischkies | |
2011-05-10 | send the first line of the error message to the error list and fail a bit | David Kalnischkies | |
more nicely and in order | |||
2011-05-10 | fix SubProgress to accept a Percent parameter to update the Current | David Kalnischkies | |
with the text as otherwise the update will be ignored | |||
2011-05-09 | implement proper progress report with OpProgress | David Kalnischkies | |
2011-05-07 | implement correct error reporting | David Kalnischkies | |
2011-05-06 | undo the temporary progress reporting disabling which slipped into last commit | David Kalnischkies | |
2011-05-03 | fix arguments for MarkInstall so packages are really marked as automatic | David Kalnischkies | |
2011-05-03 | maybe Pre-Depends are checked if they write them as Pre-Depends and | David Kalnischkies | |
not as PreDepends (doh!) … | |||
2011-05-03 | tell the resolver a package is set on hold if it was set by the user | David Kalnischkies | |
to Keep which happens for example if a user decides to "remove" a not installed package to forbid that it's part of the solution | |||
2011-05-03 | implement external solver calling for upgrade and dist-upgrade, too | David Kalnischkies | |
2011-05-02 | doesn't execute autoremove marker setting if an external solver is called | David Kalnischkies | |
and instead rely on the Autoremove tagging to show us what could be done. (apt-internal-solver doesn't support this currently as it doesn't load the auto-information into the cache) | |||
2011-05-02 | refactor: move solver execution into his own EDSP method | David Kalnischkies | |
2011-05-02 | reduce the buffer size so we get a sort of realtime progress report | David Kalnischkies | |
and print the time of output at the front of the progress report so we can see the delay | |||
2011-05-02 | move the mapping generation to the top as the response reading is | David Kalnischkies | |
currently waiting for the solver to complete and not non-blocking so we can generate the map while waiting for the solver | |||
2011-05-02 | implement optional Progress report in EDSP | David Kalnischkies | |
2011-04-25 | reorganize WriteScenario to add a WriteLimitedScenario in which a scenario | David Kalnischkies | |
can be limited to a subset of packages with only relevant dependencies | |||
2011-04-19 | use the version id instead of the mmap offset as APT-ID | David Kalnischkies | |
This leads to a small performance decrease as we need to build this mapping now while interpreting the Response but a (buggy) solver can't point us to dangerous memory locations anymore this way and VersionCount remains useful for other mapping proposes | |||
2011-04-19 | Interpret Remove and Install lines in Responses correctly | David Kalnischkies | |
2011-04-02 | send the scenario through a pipe to the solver and get the solution back | David Kalnischkies | |
The solution is NOT interpreted so far. | |||
2011-04-01 | parse also the action flags Upgrade, Dist-Upgrade and alike from the request | David Kalnischkies | |
2011-04-01 | Read and apply install/remove requests correctly | David Kalnischkies | |
2011-03-31 | WriteRequest according to current EDSP draft | David Kalnischkies | |
2011-03-31 | rename edspwriter to straight edsp in toplevel as it does more than | David Kalnischkies | |
just writing stuff… it also reads and can work for both: - APT talking to an external solver - an external solver (understanding EDSP) talking to APT |