summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* merged from lp:~mvo/apt/mvoMichael Vogt2011-08-017-7/+72
|\
| * apt-pkg/pkgcachegen.cc: copy Arch to avoid segfault on cache remapMichael Vogt2011-08-011-1/+3
| |
| * merged from debian-sidMichael Vogt2011-07-2982-18445/+23460
| |\ | |/ |/|
* | releasing version 0.8.15.5Michael Vogt2011-07-281-2/+2
| |
* | merged from lp:~donkult/apt/sidMichael Vogt2011-07-283-5/+54
|\ \
| * | * apt-pkg/deb/deblistparser.cc:David Kalnischkies2011-07-273-1/+40
|/ / | | | | - do not assume that the last char on a line is a \n (Closes: #633350)
* | releasing version 0.8.15.4Michael Vogt2011-07-261-2/+2
| |
* | refresh po/*Michael Vogt2011-07-2646-18572/+22958
| |
* | merged from lp:~mvo/apt/mvoMichael Vogt2011-07-266-3/+130
|\ \
* \ \ merged from lp:~donkult/apt/sidMichael Vogt2011-07-262-3/+11
|\ \ \
| * | | * apt-pkg/contrib/sha1.cc:David Miller2011-07-262-3/+11
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fix illegally casts of on-stack buffer to a type requiring more alignment than it has resulting in segfaults on sparc (Closes: #634696) The problem is how sha1.cc codes the SHA1 transform, it illegally casts the on-stack workspace buffer to a type requiring more alignment than 'workspace' is actually declared to have. This only shows up recently because gcc-4.6 now does a really aggressive optimization where it gets rid of the workspace buffer entirely and just accesses 'buffer' directly, and assumes it has the necessary alignment for 32-bit loads (which it doesn't).
* | | releasing version 0.8.15.3Michael Vogt2011-07-250-0/+0
| | |
* | | merged from lp:~donkult/apt/sidMichael Vogt2011-07-2512-117/+496
|\ \ \
| * | | implement MultiarchCross for build-dep and source (Closes: #632221)David Kalnischkies2011-07-256-8/+341
| | | |
| * | | the order of languages after "none" is not important, so ignore it in testsDavid Kalnischkies2011-07-252-6/+40
| | | |
| * | | update the testcase to reflect that native is always on top ifDavid Kalnischkies2011-07-251-0/+6
| | | | | | | | | | | | | | | | it is not in the config provided list of Architectures
| * | | * apt-pkg/deb/deblistparser.cc:David Kalnischkies2011-07-252-4/+11
| | | | | | | | | | | | | | | | | | | | - Strip only :any and :native if MultiArch should be stripped as it is save to ignore them in non-MultiArch contexts but if the dependency is a specific architecture (and not the native) do not strip
| * | | * apt-pkg/aptconfiguration.cc:David Kalnischkies2011-07-252-2/+5
| | | | | | | | | | | | | | | | - ensure that native architecture is if not specified otherwise the first architecture in the Architectures vector
| * | | move debug message about attempt install/remove to the responsible methodDavid Kalnischkies2011-07-241-3/+8
| | | |
| * | | alternatively check in a versioned depends if the candidate is goodDavid Kalnischkies2011-07-241-27/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The old code used to do move on to versions behind the candidate in cases the candidate wasn't a match, but as the Install request later always installs the candidate (witch wasn't switched) this could have never worked - and shouldn't in most cases anyway as: a) it could only work for <, <=, != depends which are unusal b) doesn't respect pinning, so it could install -1 versions
| * | | after this consider providing packages (if it is not a versioned dep)David Kalnischkies2011-07-241-26/+27
| | | |
| * | | move the detection for installed versions up as it is the easiest caseDavid Kalnischkies2011-07-241-25/+20
| | | |
| * | | first round of reorder code without changing resultDavid Kalnischkies2011-07-241-29/+27
| | | |
| * | | buildconflicts effect all architecturesDavid Kalnischkies2011-07-242-12/+15
| | | |
| * | | you want to be nice and quote a filename just to be reminded by gpgDavid Kalnischkies2011-07-231-1/+1
| | | | | | | | | | | | | | | | that it doesn't like that… remove superficial quoting to fix apt-key
* | | | merged from donkultMichael Vogt2011-07-2216-21/+117
|\| | |
| * | | * apt-pkg/policy.cc:David Kalnischkies2011-07-164-6/+86
| | | | | | | | | | | | - emit an error on unknown APT::Default-Release value (Closes: #407511)
| * | | do not require unused partial dirs in 'source' (Closes: #633510)David Kalnischkies2011-07-163-3/+5
| | | |
| * | | * doc/apt-cache.8.xml:John Feuerstein2011-07-169-13/+15
| | | | | | | | | | | | | | | | - apply madison typofix from John Feuerstein, thanks! (Closes: #633455)
| * | | * cmdline/apt-key:David Kalnischkies2011-07-163-2/+14
| | | | | | | | | | | | | | | | | | | | - use a tmpfile instead of /etc/apt/secring.gpg (Closes: #632596) * debian/apt.postinst: - remove /etc/apt/secring.gpg if it is an empty file
* | | | merged from the mvo branchMichael Vogt2011-07-222-1/+3
|\ \ \ \ | |/ / / |/| | |
* | | | apt-pkg/contrib/configuration.cc: revert Configuration::Set() ABI breakMichael Vogt2011-07-152-2/+2
| | | |
* | | | merged from lp:~donkult/apt/sidMichael Vogt2011-07-1515-52/+241
|\ \ \ \
| * | | | * apt-pkg/depcache.cc:David Kalnischkies2011-07-152-2/+4
| | | | | | | | | | | | | | | - change default of APT::AutoRemove::SuggestsImportant to true
| * | | | merge with debian-sid 0.8.15.2David Kalnischkies2011-07-146-11/+78
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | merged from the mvo branch and add proper changelogMichael Vogt2011-07-145-8/+71
|\ \ \ \ \
| | * | | | * apt-pkg/init.cc:David Kalnischkies2011-07-064-39/+59
| | | | | | | | | | | | | | | | | | - use CndSet in pkgInitConfig (Closes: #629617)
| | * | | | * cmdline/apt-get.cc:David Kalnischkies2011-07-063-4/+87
| | | | | | | | | | | | | | | | | | - restore all important dependencies for garbage packages (LP: #806274)
| | * | | | * doc/apt.conf.5.xml:David Kalnischkies2011-07-053-2/+13
| | | | | | | | | | | | | | | | | | - document APT::Architectures list (Closes: #612102)
| | * | | | * doc/sources.list.5.xml:David Kalnischkies2011-07-052-2/+20
| | | | | | | | | | | | | | | | | | - document available [options] for sources.list entries (Closes: 632441)
| | * | | | remove empty line dpkg-gensymbols complains aboutDavid Kalnischkies2011-06-301-1/+0
| | | | | |
| | * | | | * apt-pkg/pkgcachegen.cc:David Kalnischkies2011-06-302-3/+28
| | | | | | | | | | | | | | | | | | | | | | | | - fallback to memory if file is not writeable even if access() told us the opposite before (e.g. in fakeroot 1.16) (Closes: #630591)
| | * | | | merge with debian-sid 0.8.15.1David Kalnischkies2011-06-301-1/+1
| | |\ \ \ \
| | * | | | | allow package:architecure in Package:David Kalnischkies2011-06-303-9/+49
| | | | | | |
| | * | | | | - ensure that only the first specific stanza for a package is usedDavid Kalnischkies2011-06-294-17/+30
| | | | | | | | | | | | | | | | | | | | | - save all stanzas which had no effect in Unmatched
| | * | | | | Defaults is a vector of Pin not of PkgPinDavid Kalnischkies2011-06-292-2/+3
| | | | | | |
| | * | | | | * apt-pkg/policy.cc:David Kalnischkies2011-06-293-1/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - do not segfault in pinning if a package with this name doesn't exist. Thanks to Ferdinand Thommes for the report!
| | * | | | | the symbol for PrintStatus() is architecture dependentDavid Kalnischkies2011-06-292-1/+9
| | | | | | |
| | * | | | | comment out gcc-4.5 specific symbols as gcc-4.6 is now defaultDavid Kalnischkies2011-06-292-7/+8
| | | | | | |
| | * | | | | * debian/apt.symbols:David Kalnischkies2011-06-292-5/+7
| | | | | | | | | | | | | | | | | | | | | - forgot 'mips' in the list for all architecture dependent symbols