summaryrefslogtreecommitdiff
path: root/apt-pkg
Commit message (Collapse)AuthorAgeFilesLines
* use just one line for the debug output (thanks to donkult for the review)Michael Vogt2013-06-271-4/+2
|
* when doing MarkInstall() packages may also get removed, so show them in the ↵Michael Vogt2013-06-271-3/+10
| | | | debug output of Debug::pkgDepCache::AutoInstall=true
* show broken count when starting the resolverMichael Vogt2013-06-271-2/+6
|
* fix double free (closes: #711045)Michael Vogt2013-06-061-2/+5
|
* non-inline RunGPGV methods to restore ABI compatibility with previous ↵David Kalnischkies2013-05-162-8/+14
| | | | | | | | versions to fix partial upgrades (Closes: #707771) The rename in 0.9.7.9~exp2 moved the method body to the class definition which means it became inline, which isn't ABI compatibile. The reverse of moving inline to non-inline is safe though.
* merged patch from Daniel Hartwig to fix URI and proxy releated issuesMichael Vogt2013-05-081-4/+5
|
* merged from the debian-wheezy branchMichael Vogt2013-05-082-4/+14
|\
| * * apt-pkg/algorithms.cc:Michael Vogt2013-05-081-1/+4
| | | | | | | | | | | | - Do not propagate negative scores from rdepends. Propagating the absolute value of a negative score may boost obsolete packages and keep them installed instead of installing their successors. (Closes: #699759)
| * properly handle if-modfied-since with libcurl/https Michael Vogt2013-05-081-3/+10
| | | | | | | | (closes: #705648)
* | Fix English spelling error in a message ('A error'). Unfuzzybubulle@debian.org2013-04-101-1/+1
| | | | | | translations. Closes: #705087
* | merged bundle from davidMichael Vogt2013-04-0820-159/+225
|\ \
| * | share version strings between same versions (of different architectures)David Kalnischkies2013-04-033-15/+40
| | | | | | | | | to save some space and allow quick comparisions later on
| * | * apt-pkg/cacheiterators.h:David Kalnischkies2013-04-033-19/+24
| | | | | | | | | - provide DepIterator::IsSatisfied as a nicer shorthand for DepCheck
| * | - sort group and package names in the hashtable on insertDavid Kalnischkies2013-04-032-16/+31
| | | | | | | | | | | | * apt-pkg/pkgcache.cc: - assume sorted hashtable entries for groups/packages
| * | micro-optimize and enhance readability of ListParser::VersionHashDavid Kalnischkies2013-04-011-7/+7
| | |
| * | equal comparisions are used mostly in same-source relations,David Kalnischkies2013-04-011-6/+14
| | | | | | | | | so use this to try to reuse some version strings
| * | * apt-pkg/deb/debversion.cc:David Kalnischkies2013-04-011-3/+12
| | | | | | | | | - add a string-equal shortcut for equal version comparisions
| * | factor version string creation out of NewDepends, so we can easily reuseDavid Kalnischkies2013-03-132-26/+34
| | | | | | | | | version strings e.g. for implicit multi-arch dependencies
| * | handle language tags for descriptions are unique strings to be sharedDavid Kalnischkies2013-03-121-1/+1
| | |
| * | * apt-pkg/pkgcachegen.cc:David Kalnischkies2013-03-121-29/+32
| | | | | | | | | | | | - do not store the MD5Sum for every description language variant as it will be the same for all so it can be shared to save cache space
| * | various simple changes to fix cppcheck warningsDavid Kalnischkies2013-03-1014-52/+45
| | |
* | | * apt-pkg/sourcelist.cc:Michael Vogt2013-04-041-1/+5
| | | | | | | | | | | | - fix segfault when a hostname contains a [, thanks to Tzafrir Cohen (closes: #704653)
* | | apt-pkg/contrib/gpgv.cc: fix InRelease checkMichael Vogt2013-04-031-2/+2
| | |
* | | merged lp:~mvo/apt/fix-inrelease5Michael Vogt2013-04-0212-168/+544
|\ \ \
| * | | support dash-escaped text in clearsigned files as implementations areDavid Kalnischkies2013-03-192-14/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | free to escape all lines (we have no lines in our files which need to be escaped as these would be invalid fieldnames) and while ExecGPGV would detect dash-escaped text as invalid (as its not expected in messages with detached signatures) it would be possible to "comment" lines in (signed) dsc files which are only parsed but not verified
| * | | use FileFd instead of int fds to tidy up the interface a bitDavid Kalnischkies2013-03-192-62/+53
| | | |
| * | | * apt-pkg/deb/debindexfile.cc,David Kalnischkies2013-03-185-69/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | apt-pkg/deb/deblistparser.cc: - use OpenMaybeClearSignedFile to be free from detecting and skipping clearsigning metadata in dsc and Release files We can't write a "clean" file to disk as not all acquire methods copy Release files before checking them (e.g. cdrom), so this reverts recombining, but uses the method we use for dsc files also in the two places we deal with Release files
| * | | - add method to open (maybe) clearsigned files transparentlyDavid Kalnischkies2013-03-182-1/+76
| | | | | | | | | | | | | | | | | | | | * ftparchive/writer.cc: - use OpenMaybeClearSignedFile to be free from detecting and skipping clearsigning metadata in dsc files
| * | | ensure that we fclose/unlink/free in the new gpg-code as soon as possibleDavid Kalnischkies2013-03-161-5/+22
| | | |
| * | | - if ExecGPGV deals with a clear-signed file it will split this fileDavid Kalnischkies2013-03-153-55/+319
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into data and signatures, pass it to gpgv for verification and recombines it after that in a known-good way without unsigned blocks and whitespaces resulting usually in more or less the same file as before, but later code can be sure about the format * apt-pkg/deb/debmetaindex.cc: - reenable InRelease by default
| * | | split out a method to strip whitespaces only on the right sideMichael Vogt2013-03-152-1/+8
| | | |
| * | | * apt-pkg/acquire-item.cc:David Kalnischkies2013-03-151-10/+16
| | | | | | | | | | | | | | | | - keep the last good InRelease file around just as we do it with Release.gpg in case the new one we download isn't good for us
| * | | don't close stdout/stderr if it is also the statusfdDavid Kalnischkies2013-03-151-10/+11
| | | |
| * | | * apt-pkg/contrib/gpgv.cc:David Kalnischkies2013-03-153-14/+40
| | | | | | | | | | | | | | | | - ExecGPGV is a method which should never return, so mark it as such and fix the inconsistency of returning in error cases
| * | | * apt-pkg/indexcopy.cc:David Kalnischkies2013-03-155-134/+179
| | |/ | |/| | | | - rename RunGPGV to ExecGPGV and move it to apt-pkg/contrib/gpgv.cc
* | | merged lp:~mvo/apt/fix-tagfile-hashMichael Vogt2013-03-222-3/+10
|\ \ \
| * | | fix pkgTagSection::Exists() and add testMichael Vogt2013-03-182-3/+10
| |/ /
* | | merged the debian-wheezy branchMichael Vogt2013-03-221-7/+14
|\| |
| * | * SECURITY UPDATE: InRelease verification bypassMichael Vogt2013-03-141-7/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | - CVE-2013-1051 * apt-pkg/deb/debmetaindex.cc, test/integration/test-bug-595691-empty-and-broken-archive-files, test/integration/test-releasefile-verification: - disable InRelease downloading until the verification issue is fixed, thanks to Ansgar Burchardt for finding the flaw
* | | apt-pkg/edsp.cc: do not use stderr in WriteSolution at allMichael Vogt2013-03-201-3/+0
| | |
* | | apt-pkg/edsp.cc: do not spam stderr in WriteSolutionMichael Vogt2013-03-201-0/+2
| |/ |/|
* | merged lp:~mvo/apt/hash-orderMichael Vogt2013-03-011-1/+1
|\ \
| * | ensure sha512 is really used when available (thanks to Tyler Hicks )Michael Vogt2013-01-141-1/+1
| | |
* | | include two missing patches to really fix bug #696225, thanks toMichael Vogt2013-03-011-1/+1
| | | | | | | | | Guillem Jover
* | | * apt-pkg/depcache.cc:David Kalnischkies2013-02-241-0/+31
| | | | | | | | | | | | - prefer to install packages which have an already installed M-A:same sibling while choosing providers (LP: #1130419)
* | | * apt-pkg/indexrecords.cc:Michael Vogt2013-01-241-2/+3
|/ / | | | | - support '\r' in the Release file
* | * apt-pkg/contrib/progress.cc:Michael Vogt2013-01-091-2/+2
| | | | | | | | | | | | - Make "..." translatable to fix inconsistencies in the output of e.g. apt-get update. While this adds new translatable strings, not having translations for them will not break anything. Thanks to Guillem Jover. Closes: #696225
* | fix pkgProblemResolver::Scores, thanks to Paul Wise. Michael Vogt2013-01-082-14/+18
|\ \ | |/ |/| Closes: #697577
| * fix pkgProblemResolver::Scores, thanks to Paul Wise. Michael Vogt2013-01-082-13/+14
|/ | | Closes: #697577
* merged from lp:~donkult/apt/sidMichael Vogt2012-12-132-26/+29
|\