Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-09 | releasing version 0.7.26~exp9 | Michael Vogt | |
2010-07-09 | * doc/apt.conf.5.xml: | Michael Vogt | |
- add and document APT::Cache-{Start,Grow,Limit} options for mmap control | |||
2010-07-09 | check the state of the FileFd before renaming as otherwise the rename | David Kalnischkies | |
will be tried twice e.g. in an "apt-get update" run and every other piece of code closing the FileFd manual before the destructor will do it again. | |||
2010-07-09 | releasing version 0.7.26~exp8 | Michael Vogt | |
2010-07-09 | switch from std::set to std::vector as it is way more simple, a bit | David Kalnischkies | |
faster and still provides everything we need for the Cache generator | |||
2010-07-09 | * apt-pkg/deb/dpkgpm.cc: | Michael Vogt | |
- make the apt/term.log output unbuffered (thanks to Matt Zimmerman) | |||
2010-07-09 | merged from donkult | Michael Vogt | |
2010-07-09 | * doc/apt.conf.5.xml: | David Kalnischkies | |
- add and document APT::Cache-{Start,Grow,Limit} options for mmap control | |||
2010-07-08 | * apt-pkg/pkgcachegen.{cc,h}: | David Kalnischkies | |
- make the used MMap moveable (and therefore dynamic resizeable) by applying (some) mad pointer magic (Closes: #195018) | |||
2010-07-08 | use references instead of copies in the Cache generation methods | David Kalnischkies | |
2010-07-07 | * apt-pkg/deb/dpkgpm.cc: | Michael Vogt | |
- make the apt/term.log output unbuffered (thanks to Matt Zimmerman) | |||
2010-07-06 | wrap the mmap actions in the CacheGenerator in their own methods to | David Kalnischkies | |
be able to react on condition changes later then we can move mmap | |||
2010-07-05 | extends the ParseDepends testcase to have a look also at the Wildcards | David Kalnischkies | |
2010-07-05 | merge with debian-experimental-ma | David Kalnischkies | |
2010-07-05 | fix typos and add a proper Closes tag after the unmerge in debbugs | David Kalnischkies | |
2010-07-05 | Try to use NotEquals for the MultiArch Breaks dependencies instead of | David Kalnischkies | |
Less and Greater -> half the dependencies :) | |||
2010-07-05 | make the specify order of packages irrelevant (half-close #196021) | David Kalnischkies | |
2010-07-04 | clean deblistparser a bit by get the Architectures at one place | David Kalnischkies | |
instead of distributed in a few methods | |||
2010-07-04 | * apt-pkg/policy.h: | David Kalnischkies | |
- add another round of const& madness as the previous round accidently NOT override the virtual GetCandidateVer() method (Closes: #587725) | |||
2010-07-04 | prefer the Policy if it is built instead of the DepCache and | David Kalnischkies | |
if DepCache is not available as fallback built the Policy | |||
2010-07-03 | reorder classes a bit and make TryToInstallBuildDep use them | David Kalnischkies | |
2010-07-03 | Refactor TryToInstall to look a bit saner by splitting the Remove | David Kalnischkies | |
and the Virtual packages part out of the loop. The function still exists unchanged as TryToInstallBuildDep through for the BuildDep installation method | |||
2010-07-02 | add a ConstructedBy member to the PackageSet which can be used by the | David Kalnischkies | |
e.g. FromString to tell the caller if the string was an exact match or found by regex or task. The two later ones can match packages for which we want to ignore failures in the VersionSet | |||
2010-06-29 | if the package has no installed & candidate but is virtual see if only | David Kalnischkies | |
one package provides it - if it is only one use this package instead | |||
2010-06-29 | rename AddSelectedVersion() to a better public FromPackage() | David Kalnischkies | |
2010-06-29 | Fix the atomic replace. | Julian Andres Klode | |
2010-06-29 | * apt-pkg/contrib/fileutl.cc: | Julian Andres Klode | |
- Make FileFd replace files atomically in WriteTemp mode (for cache, etc). | |||
2010-06-29 | for install, do all installs first and then the removes and vice versa | David Kalnischkies | |
2010-06-29 | debian/control: Set Standards-Version to 3.9.0 | Julian Andres Klode | |
2010-06-28 | - factor out code to get a single package FromName() | David Kalnischkies | |
- check in Grouped* first without modifier interpretation | |||
2010-06-28 | Also free regular expressions. | Julian Andres Klode | |
2010-06-28 | Use _error->Warning() instead of writing to std::cerr. | Julian Andres Klode | |
2010-06-28 | Remove debugging stuff, this was not meant to be here. | Julian Andres Klode | |
2010-06-28 | Also support regular expressions and glob() patterns in "Pin: version". | Julian Andres Klode | |
2010-06-28 | * apt-pkg/versionmatch.cc: | Julian Andres Klode | |
- Support matching pins by regular expressions or glob() like patterns, regular expressions have to be put between to slashes; for example, /.*/. | |||
2010-06-27 | deblistparser: Special-case *-armel, lpia and powerpcspe architectures. | Julian Andres Klode | |
2010-06-26 | apt-pkg/deb/deblistparser.cc: Fix bug in architecture wildcard support. | Julian Andres Klode | |
Previously, linux-any was always matched, because the code simply appended linux- to the APT::Architecture value. Now, it does this only if the APT::Architecture value does not contain "-". | |||
2010-06-26 | - only print errors if all tries to get a package by string failed | David Kalnischkies | |
* | |||
2010-06-26 | debian/changelog: Fix a typo | Julian Andres Klode | |
2010-06-26 | * apt-pkg/deb/deblistparser.cc: | Julian Andres Klode | |
- Handle architecture wildcards (Closes: #547724). | |||
2010-06-26 | always mark the all package if a pseudo package is marked for install | David Kalnischkies | |
2010-06-26 | give the APT::Cache::Generate option her effect back | David Kalnischkies | |
2010-06-26 | do not override the user set quiet setting even if the target is not a tty | David Kalnischkies | |
2010-06-26 | make the MMap Grow Error a fatal one as while in theory the code should | David Kalnischkies | |
never segfault it still tend to do it so better show it directly | |||
2010-06-26 | * apt-pkg/contrib/fileutl.cc: | David Kalnischkies | |
- show notice about ignored file instead of being always silent - add a Dir::Ignore-Files-Silently list option to control the notice * | |||
2010-06-26 | - use the new MatchAgainstConfig for the DefaultRootSetFunc | David Kalnischkies | |
* apt-pkg/contrib/configuration.{cc,h}: - add a wrapper to match strings against configurable regex patterns | |||
2010-06-26 | * apt-pkg/aptconfiguration.cc: | David Kalnischkies | |
- show a deprecation notice for APT::Acquire::Translation | |||
2010-06-25 | print all messages if the application is in an interactive run | David Kalnischkies | |
2010-06-25 | add a simple stack handling to be able to delay error handling | David Kalnischkies | |
2010-06-25 | * apt-pkg/contrib/error.{cc,h}: | David Kalnischkies | |
- complete rewrite but use the same API - add NOTICE and DEBUG as new types of a message |