From: Michael Vogt Date: Mon, 2 Jan 2012 14:15:54 +0000 (+0100) Subject: g++ 4.7 fixes X-Git-Tag: 0.9.0~36 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/5c6ceb4557cb6497dea827d1ec4e2615ccd53e50?hp=--cc g++ 4.7 fixes --- 5c6ceb4557cb6497dea827d1ec4e2615ccd53e50 diff --cc apt-pkg/contrib/hashsum_template.h index 51e3b0862,d2d9f92ed..9bf160b2b --- a/apt-pkg/contrib/hashsum_template.h +++ b/apt-pkg/contrib/hashsum_template.h @@@ -17,11 -15,8 +17,13 @@@ #include #include + #include + +#ifndef APT_8_CLEANER_HEADERS +using std::string; +using std::min; +#endif + template class HashSumValue { diff --cc debian/changelog index f6a6d38e7,e6389dd06..06c84f31c --- a/debian/changelog +++ b/debian/changelog @@@ -1,43 -1,3 +1,46 @@@ +apt (0.8.16~exp9) UNRELEASED; urgency=low + + [ Julian Andres Klode ] + * apt-pkg/cdrom.cc: + - Accept .bz2, .xz files in addition to .gz files (Closes: #649451) + + [ Michael Vogt ] + * apt-pkg/cdrom.cc: + - use aptconfiguration to get the supported compression types + * debian/control: + - bump debhelper build-dep to debhelper (>= 8.1.3~) + - set libapt-pkg-dev to multi-arch: same too + + [ Colin Watson ] + * Convert libapt-pkg4.12 and libapt-inst1.4 to Multi-Arch: same. + + [ David Kalnischkies ] + * apt-pkg/cacheset.cc: + - make the cachesets real containers which can embedding any container + to be able to use the same interface regardless of set or list usage + - provide a {Package,Version}List similar to {Package,Version}Set + * cmdline/apt-{get,cache,mark}.cc: + - use Lists instead of Sets if input order should be preserved for + commands accepting lists of packages, e.g. policy (Closes: #625960) + * apt-pkg/depcache.cc: + - prefer native providers over foreigns even if the chain is foreign + * cmdline/apt-get.cc: + - ignore foreign architectures if we check if a provides has only one + resolver as it's basically the same for the user, so no need to choose + * cmdline/apt-config.cc: + - dump the APT::Compressor settings correctly and completely + * apt-pkg/contrib/fileutl.{h,cc}: + - implement a ModificationTime method for FileFd + - add a ReadLine method + - drop the explicit export of gz-compression handling + * apt-pkg/cdrom.cc: + - support InRelease files on cdrom ++ ++ [ Michael Vogt ] ++ * g++ 4.7 fixes + + -- David Kalnischkies Sun, 11 Dec 2011 19:34:58 +0100 + apt (0.8.16~exp8) experimental; urgency=low [ David Kalnischkies ]