summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* * apt-pkg/contrib/fileutl.{cc,h}:Michael Vogt2011-07-286-4/+54
| | | | | | | | - add GetModificationTime() helper * apt-pkg/pkgcachegen.cc: - regenerate the cache if the sources.list changes to ensure that changes in the ordering there will be honored by apt * apt-pkg/sourcelist.{cc,h}: - add pkgSourceList::GetLastModifiedTime() helper
* fix typos in changelog, make DeEscapeString const, improve descriptionMichael Vogt2011-07-263-6/+7
|
* add another escape test case, fixup octal one (its \0XX instead of \0XXX)Michael Vogt2011-07-263-6/+11
|
* apt-pkg/contrib/strutl.cc: kill unneeded debug outputMichael Vogt2011-07-261-1/+0
|
* * apt-pkg/contrib/strutl.{h,cc}, test/libapt/strutil_test.cc:Michael Vogt2011-07-266-6/+118
| | | | - add new DeEscapeString() similar to DeQuoteQuotedWord but unescape charackter escapes like \0XXX and \xXX (plus add test)
* * apt-pkg/contrib/cdromutl.cc:Michael Vogt2011-07-252-1/+9
| | | - fix escape problem when looking for the mounted devices
* * cmdline/apt-get.cc:Michael Vogt2011-07-222-1/+3
| | | - fix missing download progress in apt-get download
* merged from debian-sidMichael Vogt2011-07-1412-48/+225
|\
| * fix from David Kalnischkies for the InRelease gpg verification Michael Vogt2011-07-133-6/+35
| | | | | | code (LP: #784473)
| * apt-pkg/aptconfiguration.h: fix copy/paste error in getCompressionTypes() ↵Michael Vogt2011-07-131-1/+1
| | | | | | | | description
| * releasing version 0.8.15.1Michael Vogt2011-06-301-2/+2
| |
| * * doc/makefile:Michael Vogt2011-06-309-41/+189
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - create doxygen directory to avoid depending on magic (Closes: #628799) * cmdline/apt-key: - explicitly state that net-update is not supported if no url is set - require to be root for add, rm, update and net-update - clarify update vs. net-update in different distros (Closes: #632043) * debian/apt.symbols: - forgot 'mips' in the list for all architecture dependent symbols - comment out gcc-4.5 specific symbols as gcc-4.6 is now default - the symbol for PrintStatus() is architecture dependent * apt-pkg/policy.cc: - do not segfault in pinning if a package with this name doesn't exist. Thanks to Ferdinand Thommes for the report! - Defaults is a vector of Pin not of PkgPin - ensure that only the first specific stanza for a package is used - save all stanzas which had no effect in Unmatched - allow package:architecure in Package:
* | make ResolveByKeep() more clever and hold back packages that would go into a ↵Michael Vogt2011-07-144-410/+570
| | | | | | | | broken policy state by the upgrade
* | apt-pkg/acquire-item.cc: improve error message for valid-untilMichael Vogt2011-07-011-2/+4
| |
* | merged from debian-sidMichael Vogt2011-06-2927-2705/+4593
|\|
| * releasing version 0.8.15Michael Vogt2011-06-281-2/+2
| |
| * various typo and syntax corrections in doc/*.xmlMichael Vogt2011-06-2815-2166/+3796
| |
| * update symbol file (thanks to david)Michael Vogt2011-06-281-0/+3
| |
| * merged from lp:~mvo/apt/mvoMichael Vogt2011-06-286-14/+49
| |\ | |/ |/|
* | * apt-pkg/deb/dpkgpm.cc:Michael Vogt2011-06-272-1/+13
| | | | | | - set permissions of term.log to root.adm and 644 (LP: #404724)
* | update changelog for the previous two commitsMichael Vogt2011-06-091-0/+2
| |
* | apt-pkg/deb/debindexfile.cc: kill off another TranslationsAvailable() usage ↵Michael Vogt2011-06-091-6/+4
| | | | | | | | that is not needed
* | apt-pkg/deb/debindexfile.cc: remove tests for TranslationsAvailable() as ↵Michael Vogt2011-06-091-4/+1
| | | | | | | | this will break adding translations to the cache if the current environment does not include the language (e.g. LANG=C but german translations). testing for existance of the file is the better approach
* | * apt-pkg/deb/deblistparser.cc:Michael Vogt2011-06-092-1/+4
| | | | | | | | - include all known languages when building the apt cache (LP: #794907)
* | append the dist (e.g. sid, wheezy) as a query string whenMichael Vogt2011-06-073-0/+8
| | | | | | asking for a suitable mirror
* | * methods/mirror.cc:Michael Vogt2011-06-072-2/+17
| | | | | | | | - ignore lines starting with "#" in the mirror file - ignore non http urls in the mirrors
| * merged from donkultMichael Vogt2011-06-2810-31/+84
| |\
| | * * cmdline/apt-config.cc:David Kalnischkies2011-05-282-1/+17
| | | | | | | | | | | | - show Acquire::Languages and APT::Architectures settings in 'dump' (Closes: 626739)
| | * * apt-pkg/init.cc:Jörg Sommer2011-05-282-4/+3
| | | | | | | | | | | | - don't set deprecated APT::Acquire::Translation, thanks Jörg Sommer!
| | * use the correct option name in comment for Acquire::LanguagesJörg Sommer2011-05-281-1/+1
| | |
| | * log reinstall commands in history.logDavid Kalnischkies2011-05-234-18/+38
| | |
| | * remove invalid pkgcache.bin and rebuild it if possibleDavid Kalnischkies2011-05-192-1/+19
| | | | | | | | | | | | | | | | | | | | | The next invocation of APT tried to load an outdated big (and possible io-cold) file just to end up rebuilding it (possibly only as non-root in memory again and again), so we remove it here and if we have a srcpkgcache we are going to rebuild, too.
| | * rename I to J to avoid redefining a variable (clang warning)David Kalnischkies2011-05-171-5/+5
| | |
| | * ServerState is a struct and not a class (clang mismatch type warning)David Kalnischkies2011-05-171-1/+1
| | |
| | * remove Size >= 0 check as Itm.Size is an unsigned variable (clang warning)David Kalnischkies2011-05-171-1/+1
| | |
| * | change to 0.8.14.2Michael Vogt2011-06-281-1/+1
| | |
| * | cherry pick from donkultMichael Vogt2011-06-282-0/+9
| | |
| * | Catalan translation update (Jordi Mallach). Closes: #630657bubulle@debian.org2011-06-182-428/+578
| | |
| * | German documentation translation update (Chris Leick). Closes: #629949bubulle@debian.org2011-06-092-186/+229
| | |
| * | merge from lp:~mvo/apt/mvoMichael Vogt2011-05-311-11/+14
| |\ \ | |/ / |/| |
* | | apt-pkg/acquire-item.cc: only test packages file for correctness if its not ↵Michael Vogt2011-05-311-11/+14
| | | | | | | | | | | | empty (its ok to have empty packages files)
* | | merged from the debian branchMichael Vogt2011-05-3195-1610/+2775
|\| |
| * | Reject files known to be invalid (LP: #346386) (Closes: #627642)Julian Andres Klode2011-05-302-5/+5
| | |
| * | apt-pkg/acquire-item.cc: Reject files known to be invalid (LP: #346386) ↵Julian Andres Klode2011-05-302-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (Closes: #195301) This commit deals with the following cases: - First section of index file (Packages,Sources,Translation) without Package field - Signed release files without GPG data (NODATA) - i18n/Index files without hash sums Handling unsigned Release files is more complicated, and the example code using indexRecords is disabled as it can reject correct Release files without hashes. How we can reliably check unsigned Release files is another question, and not urgent anyway, as it should have no dramatic effect (we could check that it is a valid RFC-822 section, but that's a bit too long to write)
| * | Italian translation update (Milo Casagrande). Closes: #627834bubulle@debian.org2011-05-252-5/+15
| | |
| * | debian/changelog: next version will be 0.8.15Michael Vogt2011-05-251-1/+1
| |/
| * merged from lp:~donkult/apt/sidMichael Vogt2011-05-1687-677/+1497
| |\
| | * * apt-pkg/packagemanager.cc:David Kalnischkies2011-05-164-8/+75
| | | | | | | | | | | | - ensure for Multi-Arch:same packages that they are unpacked in lock step even in immediate configuration (Closes: #618288)
| | * MAP_ANON is deprecated in favor of MAP_ANONYMOUS, but telesphoreo needsDavid Kalnischkies2011-05-131-0/+8
| | | | | | | | | | | | to ships a patch for this so pretend to be nice and make it work (TM)
| | * * apt-pkg/contrib/netrc.cc:David Kalnischkies2011-05-132-5/+11
| | | | | | | | | - replace non-posix gnu-extension strdupa with strdup