summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* * apt-pkg/contrib/error.{cc,h}:David Kalnischkies2010-07-103-7/+15
| | | | - remove constness of va_list parameter to fix build on amd64 and co Thanks Eric Valette! (Closes: #588610)
* releasing version 0.7.26~exp9Michael Vogt2010-07-091-1/+3
|
* * doc/apt.conf.5.xml:Michael Vogt2010-07-097-31/+65
|\ | | | | - add and document APT::Cache-{Start,Grow,Limit} options for mmap control
| * check the state of the FileFd before renaming as otherwise the renameDavid Kalnischkies2010-07-091-6/+8
| | | | | | | | | | 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.
| * switch from std::set to std::vector as it is way more simple, a bitDavid Kalnischkies2010-07-092-15/+13
| | | | | | | | faster and still provides everything we need for the Cache generator
| * * doc/apt.conf.5.xml:David Kalnischkies2010-07-096-11/+39
| | | | | | - add and document APT::Cache-{Start,Grow,Limit} options for mmap control
* | releasing version 0.7.26~exp8Michael Vogt2010-07-091-2/+2
| |
* | * apt-pkg/deb/dpkgpm.cc:Michael Vogt2010-07-092-1/+5
|\ \ | | | | | | - make the apt/term.log output unbuffered (thanks to Matt Zimmerman)
| * | * apt-pkg/deb/dpkgpm.cc:Michael Vogt2010-07-072-1/+4
| | | | | | | | | - make the apt/term.log output unbuffered (thanks to Matt Zimmerman)
* | | merged from donkultMichael Vogt2010-07-0938-1153/+2097
|\ \ \ | | |/ | |/|
| * | * apt-pkg/pkgcachegen.{cc,h}:David Kalnischkies2010-07-088-77/+226
| | | | | | | | | | | | - make the used MMap moveable (and therefore dynamic resizeable) by applying (some) mad pointer magic (Closes: #195018)
| * | use references instead of copies in the Cache generation methodsDavid Kalnischkies2010-07-084-25/+26
| | |
| * | wrap the mmap actions in the CacheGenerator in their own methods toDavid Kalnischkies2010-07-062-23/+42
| | | | | | | | | | | | be able to react on condition changes later then we can move mmap
| * | extends the ParseDepends testcase to have a look also at the WildcardsDavid Kalnischkies2010-07-051-0/+68
| | |
| * | merge with debian-experimental-maDavid Kalnischkies2010-07-058-22/+107
| |\ \ | |/ / |/| |
* | | Fix the atomic replace.Julian Andres Klode2010-06-291-1/+1
| | |
* | | * apt-pkg/contrib/fileutl.cc:Julian Andres Klode2010-06-293-6/+19
| | | | | | | | | - Make FileFd replace files atomically in WriteTemp mode (for cache, etc).
* | | debian/control: Set Standards-Version to 3.9.0Julian Andres Klode2010-06-292-1/+3
| | |
* | | Also free regular expressions.Julian Andres Klode2010-06-281-0/+1
| | |
* | | Use _error->Warning() instead of writing to std::cerr.Julian Andres Klode2010-06-281-1/+1
| | |
* | | Remove debugging stuff, this was not meant to be here.Julian Andres Klode2010-06-281-1/+0
| | |
* | | Also support regular expressions and glob() patterns in "Pin: version".Julian Andres Klode2010-06-281-0/+2
| | |
* | | * apt-pkg/versionmatch.cc:Julian Andres Klode2010-06-283-12/+52
| | | | | | | | | | | | | | | - Support matching pins by regular expressions or glob() like patterns, regular expressions have to be put between to slashes; for example, /.*/.
* | | deblistparser: Special-case *-armel, lpia and powerpcspe architectures.Julian Andres Klode2010-06-271-0/+6
| | |
* | | apt-pkg/deb/deblistparser.cc: Fix bug in architecture wildcard support.Julian Andres Klode2010-06-261-3/+10
| | | | | | | | | | | | | | | | | | 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 "-".
* | | debian/changelog: Fix a typoJulian Andres Klode2010-06-261-1/+1
| | |
* | | * apt-pkg/deb/deblistparser.cc:Julian Andres Klode2010-06-262-1/+11
| | | | | | | | | - Handle architecture wildcards (Closes: #547724).
* | | methods/ftp.h: Handle different logins are on the same server (Closes: #586904).Julian Andres Klode2010-06-242-1/+8
| | |
| * | fix typos and add a proper Closes tag after the unmerge in debbugsDavid Kalnischkies2010-07-051-3/+3
| | |
| * | Try to use NotEquals for the MultiArch Breaks dependencies instead ofDavid Kalnischkies2010-07-051-4/+1
| | | | | | | | | | | | Less and Greater -> half the dependencies :)
| * | make the specify order of packages irrelevant (half-close #196021)David Kalnischkies2010-07-052-5/+19
| | |
| * | clean deblistparser a bit by get the Architectures at one placeDavid Kalnischkies2010-07-042-14/+13
| | | | | | | | | | | | instead of distributed in a few methods
| * | * apt-pkg/policy.h:David Kalnischkies2010-07-047-30/+32
| | | | | | | | | | | | - add another round of const& madness as the previous round accidently NOT override the virtual GetCandidateVer() method (Closes: #587725)
| * | prefer the Policy if it is built instead of the DepCache andDavid Kalnischkies2010-07-042-3/+7
| | | | | | | | | | | | if DepCache is not available as fallback built the Policy
| * | reorder classes a bit and make TryToInstallBuildDep use themDavid Kalnischkies2010-07-031-360/+250
| | |
| * | Refactor TryToInstall to look a bit saner by splitting the RemoveDavid Kalnischkies2010-07-032-53/+177
| | | | | | | | | | | | | | | | | | and the Virtual packages part out of the loop. The function still exists unchanged as TryToInstallBuildDep through for the BuildDep installation method
| * | add a ConstructedBy member to the PackageSet which can be used by theDavid Kalnischkies2010-07-022-17/+51
| | | | | | | | | | | | | | | | | | 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
| * | if the package has no installed & candidate but is virtual see if onlyDavid Kalnischkies2010-06-293-37/+59
| | | | | | | | | | | | one package provides it - if it is only one use this package instead
| * | rename AddSelectedVersion() to a better public FromPackage()David Kalnischkies2010-06-292-10/+15
| | |
| * | for install, do all installs first and then the removes and vice versaDavid Kalnischkies2010-06-291-38/+54
| | |
| * | - factor out code to get a single package FromName()David Kalnischkies2010-06-283-54/+116
| | | | | | | | | - check in Grouped* first without modifier interpretation
| * | - only print errors if all tries to get a package by string failedDavid Kalnischkies2010-06-262-7/+15
| | | | | | | | | *
| * | always mark the all package if a pseudo package is marked for installDavid Kalnischkies2010-06-262-2/+6
| | |
| * | give the APT::Cache::Generate option her effect backDavid Kalnischkies2010-06-261-1/+3
| | |
| * | do not override the user set quiet setting even if the target is not a ttyDavid Kalnischkies2010-06-263-3/+3
| | |
| * | make the MMap Grow Error a fatal one as while in theory the code shouldDavid Kalnischkies2010-06-261-1/+1
| | | | | | | | | | | | never segfault it still tend to do it so better show it directly
| * | * apt-pkg/contrib/fileutl.cc:David Kalnischkies2010-06-264-1/+23
| | | | | | | | | | | | | | | - show notice about ignored file instead of being always silent - add a Dir::Ignore-Files-Silently list option to control the notice *
| * | - use the new MatchAgainstConfig for the DefaultRootSetFuncDavid Kalnischkies2010-06-265-66/+71
| | | | | | | | | | | | * apt-pkg/contrib/configuration.{cc,h}: - add a wrapper to match strings against configurable regex patterns
| * | * apt-pkg/aptconfiguration.cc:David Kalnischkies2010-06-262-1/+7
| | | | | | | | | - show a deprecation notice for APT::Acquire::Translation
| * | print all messages if the application is in an interactive runDavid Kalnischkies2010-06-253-21/+15
| | |