From: Michael Vogt Date: Tue, 15 Oct 2013 15:54:31 +0000 (+0200) Subject: Merge remote-tracking branch 'upstream/debian/sid' into bugfix/bts-726156-2 X-Git-Tag: 0.9.12.1~3 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/6b164ba3fa36e0df2bc146b399af9853a8b05f2a?hp=-c Merge remote-tracking branch 'upstream/debian/sid' into bugfix/bts-726156-2 --- 6b164ba3fa36e0df2bc146b399af9853a8b05f2a diff --combined apt-pkg/deb/dpkgpm.cc index 61d8eec02,1fbeabbdc..d18900b9c --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@@ -546,8 -546,8 +546,8 @@@ void pkgDPkgPM::ProcessDpkgStatusLine(i // A dpkg error message may contain additional ":" (like // "failed in buffer_write(fd) (10, ret=-1): backend dpkg-deb ..." // so we need to ensure to not split too much - std::vector list = StringSplit(line, ": ", 3); - if(list.size() != 3) + std::vector list = StringSplit(line, ": ", 4); + if(list.size() < 3) { if (Debug == true) std::clog << "ignoring line: not enough ':'" << std::endl; @@@ -557,26 -557,11 +557,26 @@@ std::string pkgname = list[1]; if (pkgname.find(":") == std::string::npos) { - string const nativeArch = _config->Find("APT::Architecture"); - pkgname = pkgname + ":" + nativeArch; + // find the package in the group that is in a touched by dpkg + // if there are multiple dpkg will send us a full pkgname:arch + pkgCache::GrpIterator Grp = Cache.FindGrp(pkgname); + if (Grp.end() == false) + { + pkgCache::PkgIterator P = Grp.PackageList(); + for (; P.end() != true; P = Grp.NextPkg(P)) + { + if(Cache[P].Mode != pkgDepCache::ModeKeep) + { + pkgname = P.FullName(); + break; + } + } + } } const char* const pkg = pkgname.c_str(); const char* action = list[2].c_str(); + + std::string short_pkgname = StringSplit(pkgname, ":")[0]; // 'processing' from dpkg looks like // 'processing: action: pkg' @@@ -655,7 -640,7 +655,7 @@@ PackageOpsDone[pkg]++; PackagesDone++; // build the status str - status << "pmstatus:" << pkg + status << "pmstatus:" << short_pkgname << ":" << (PackagesDone/float(PackagesTotal)*100.0) << ":" << s << endl; @@@ -668,7 -653,7 +668,7 @@@ std::clog << "send: '" << status.str() << "'" << endl; } if (Debug == true) - std::clog << "(parsed from dpkg) pkg: " << pkg + std::clog << "(parsed from dpkg) pkg: " << short_pkgname << " action: " << action << endl; } /*}}}*/ @@@ -916,7 -901,7 +916,7 @@@ void pkgDPkgPM::SendTerminalProgress(fl return; std::string progress_str; - strprintf(progress_str, "Progress: [%3i%%]", (int)percentage); + strprintf(progress_str, _("Progress: [%3i%%]"), (int)percentage); if (d->fancy_progress_output) { int row = d->nr_terminal_rows;