From: Michael Vogt Date: Fri, 5 Sep 2014 12:41:54 +0000 (+0200) Subject: Merge branch 'debian/sid' into debian/experimental X-Git-Tag: 1.1.exp3~15 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/8c782efd93342c6119e8ba2ff6989b7a164b7f3d?hp=-c Merge branch 'debian/sid' into debian/experimental Conflicts: apt-pkg/acquire-item.cc configure.ac debian/changelog doc/apt-verbatim.ent doc/po/apt-doc.pot doc/po/de.po doc/po/es.po doc/po/fr.po doc/po/it.po doc/po/ja.po doc/po/pt.po po/ar.po po/ast.po po/bg.po po/bs.po po/ca.po po/cs.po po/cy.po po/da.po po/de.po po/dz.po po/el.po po/es.po po/eu.po po/fi.po po/fr.po po/gl.po po/hu.po po/it.po po/ja.po po/km.po po/ko.po po/ku.po po/lt.po po/mr.po po/nb.po po/ne.po po/nl.po po/nn.po po/pl.po po/pt.po po/pt_BR.po po/ro.po po/ru.po po/sk.po po/sl.po po/sv.po po/th.po po/tl.po po/tr.po po/uk.po po/vi.po po/zh_CN.po po/zh_TW.po test/integration/test-ubuntu-bug-346386-apt-get-update-paywall --- 8c782efd93342c6119e8ba2ff6989b7a164b7f3d diff --combined apt-pkg/acquire-item.cc index 221d2a267,6cb9b012a..3feb17ffa --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@@ -50,24 -50,12 +50,24 @@@ using namespace std; +static void printHashSumComparision(std::string const &URI, HashStringList const &Expected, HashStringList const &Actual) /*{{{*/ +{ + if (_config->FindB("Debug::Acquire::HashSumMismatch", false) == false) + return; + std::cerr << std::endl << URI << ":" << std::endl << " Expected Hash: " << std::endl; + for (HashStringList::const_iterator hs = Expected.begin(); hs != Expected.end(); ++hs) + std::cerr << "\t- " << hs->toStr() << std::endl; + std::cerr << " Actual Hash: " << std::endl; + for (HashStringList::const_iterator hs = Actual.begin(); hs != Actual.end(); ++hs) + std::cerr << "\t- " << hs->toStr() << std::endl; +} + /*}}}*/ + // Acquire::Item::Item - Constructor /*{{{*/ -// --------------------------------------------------------------------- -/* */ -pkgAcquire::Item::Item(pkgAcquire *Owner) : Owner(Owner), FileSize(0), - PartialSize(0), Mode(0), ID(0), Complete(false), - Local(false), QueueCounter(0) +pkgAcquire::Item::Item(pkgAcquire *Owner, HashStringList const &ExpectedHashes) : + Owner(Owner), FileSize(0), PartialSize(0), Mode(0), ID(0), Complete(false), + Local(false), QueueCounter(0), ExpectedAdditionalItems(0), + ExpectedHashes(ExpectedHashes) { Owner->Add(this); Status = StatIdle; @@@ -129,7 -117,7 +129,7 @@@ void pkgAcquire::Item::Start(string /*M // Acquire::Item::Done - Item downloaded OK /*{{{*/ // --------------------------------------------------------------------- /* */ -void pkgAcquire::Item::Done(string Message,unsigned long long Size,string /*Hash*/, +void pkgAcquire::Item::Done(string Message,unsigned long long Size,HashStringList const &/*Hash*/, pkgAcquire::MethodConfig * /*Cnf*/) { // We just downloaded something.. @@@ -240,8 -228,8 +240,8 @@@ void pkgAcquire::Item::ReportMirrorFail possibly query additional files */ pkgAcqSubIndex::pkgAcqSubIndex(pkgAcquire *Owner, string const &URI, string const &URIDesc, string const &ShortDesc, - HashString const &ExpectedHash) - : Item(Owner), ExpectedHash(ExpectedHash) + HashStringList const &ExpectedHashes) + : Item(Owner, ExpectedHashes) { /* XXX: Beware: Currently this class does nothing (of value) anymore ! */ Debug = _config->FindB("Debug::pkgAcquire::SubIndex",false); @@@ -263,7 -251,7 +263,7 @@@ // AcqSubIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqSubIndex::Custom600Headers() +string pkgAcqSubIndex::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(Desc.URI); @@@ -286,7 -274,7 +286,7 @@@ void pkgAcqSubIndex::Failed(string Mess // No good Index is provided } /*}}}*/ -void pkgAcqSubIndex::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/ +void pkgAcqSubIndex::Done(string Message,unsigned long long Size,HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cnf) { if(Debug) @@@ -308,7 -296,7 +308,7 @@@ return; } - Item::Done(Message,Size,Md5Hash,Cnf); + Item::Done(Message, Size, Hashes, Cnf); string FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(Desc.URI); @@@ -354,22 -342,21 +354,22 @@@ bool pkgAcqSubIndex::ParseIndex(string * the original packages file */ pkgAcqDiffIndex::pkgAcqDiffIndex(pkgAcquire *Owner, - string URI,string URIDesc,string ShortDesc, - HashString ExpectedHash) - : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash), - Description(URIDesc) + IndexTarget const * const Target, + HashStringList const &ExpectedHashes, + indexRecords *MetaIndexParser) + : pkgAcqBaseIndex(Owner, Target, ExpectedHashes, MetaIndexParser) { Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); - Desc.Description = URIDesc + "/DiffIndex"; + RealURI = Target->URI; Desc.Owner = this; - Desc.ShortDesc = ShortDesc; - Desc.URI = URI + ".diff/Index"; + Desc.Description = Target->Description + "/DiffIndex"; + Desc.ShortDesc = Target->ShortDesc; + Desc.URI = Target->URI + ".diff/Index"; DestFile = _config->FindDir("Dir::State::lists") + "partial/"; - DestFile += URItoFileName(Target->URI) + string(".DiffIndex"); + DestFile += URItoFileName(Desc.URI); if(Debug) std::clog << "pkgAcqDiffIndex: " << Desc.URI << std::endl; @@@ -402,10 -389,10 +402,10 @@@ // AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqDiffIndex::Custom600Headers() +string pkgAcqDiffIndex::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); - Final += URItoFileName(RealURI) + string(".IndexDiff"); + Final += URItoFileName(Desc.URI); if(Debug) std::clog << "Custom600Header-IMS: " << Final << std::endl; @@@ -455,8 -442,8 +455,8 @@@ bool pkgAcqDiffIndex::ParseDiffIndex(st std::clog << "Package file is up-to-date" << std::endl; // list cleanup needs to know that this file as well as the already // present index is ours, so we create an empty diff to save it for us - new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc, - ExpectedHash, ServerSha1, available_patches); + new pkgAcqIndexDiffs(Owner, Target, ExpectedHashes, MetaIndexParser, + ServerSha1, available_patches); return true; } else @@@ -541,19 -528,14 +541,19 @@@ } if (pdiff_merge == false) - new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc, - ExpectedHash, ServerSha1, available_patches); - else + { + new pkgAcqIndexDiffs(Owner, Target, ExpectedHashes, MetaIndexParser, + ServerSha1, available_patches); + } + else { std::vector *diffs = new std::vector(available_patches.size()); for(size_t i = 0; i < available_patches.size(); ++i) - (*diffs)[i] = new pkgAcqIndexMergeDiffs(Owner, RealURI, Description, Desc.ShortDesc, ExpectedHash, - available_patches[i], diffs); + (*diffs)[i] = new pkgAcqIndexMergeDiffs(Owner, Target, + ExpectedHashes, + MetaIndexParser, + available_patches[i], + diffs); } Complete = false; @@@ -577,20 -559,21 +577,20 @@@ void pkgAcqDiffIndex::Failed(string Mes std::clog << "pkgAcqDiffIndex failed: " << Desc.URI << " with " << Message << std::endl << "Falling back to normal index file acquire" << std::endl; - new pkgAcqIndex(Owner, RealURI, Description, Desc.ShortDesc, - ExpectedHash); + new pkgAcqIndex(Owner, Target, ExpectedHashes, MetaIndexParser); Complete = false; Status = StatDone; Dequeue(); } /*}}}*/ -void pkgAcqDiffIndex::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/ +void pkgAcqDiffIndex::Done(string Message,unsigned long long Size,HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cnf) { if(Debug) std::clog << "pkgAcqDiffIndex::Done(): " << Desc.URI << std::endl; - Item::Done(Message,Size,Md5Hash,Cnf); + Item::Done(Message, Size, Hashes, Cnf); string FinalFile; FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(RealURI); @@@ -620,24 -603,22 +620,24 @@@ * for each diff and the index */ pkgAcqIndexDiffs::pkgAcqIndexDiffs(pkgAcquire *Owner, - string URI,string URIDesc,string ShortDesc, - HashString ExpectedHash, + struct IndexTarget const * const Target, + HashStringList const &ExpectedHashes, + indexRecords *MetaIndexParser, string ServerSha1, vector diffs) - : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash), + : pkgAcqBaseIndex(Owner, Target, ExpectedHashes, MetaIndexParser), available_patches(diffs), ServerSha1(ServerSha1) { DestFile = _config->FindDir("Dir::State::lists") + "partial/"; - DestFile += URItoFileName(URI); + DestFile += URItoFileName(Target->URI); Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); - Description = URIDesc; + RealURI = Target->URI; Desc.Owner = this; - Desc.ShortDesc = ShortDesc; + Description = Target->Description; + Desc.ShortDesc = Target->ShortDesc; if(available_patches.empty() == true) { @@@ -657,7 -638,8 +657,7 @@@ void pkgAcqIndexDiffs::Failed(string Me if(Debug) std::clog << "pkgAcqIndexDiffs failed: " << Desc.URI << " with " << Message << std::endl << "Falling back to normal index file acquire" << std::endl; - new pkgAcqIndex(Owner, RealURI, Description,Desc.ShortDesc, - ExpectedHash); + new pkgAcqIndex(Owner, Target, ExpectedHashes, MetaIndexParser); Finish(); } /*}}}*/ @@@ -671,7 -653,7 +671,7 @@@ void pkgAcqIndexDiffs::Finish(bool allD DestFile = _config->FindDir("Dir::State::lists"); DestFile += URItoFileName(RealURI); - if(!ExpectedHash.empty() && !ExpectedHash.VerifyFile(DestFile)) + if(HashSums().usable() && !HashSums().VerifyFile(DestFile)) { RenameOnError(HashSumMismatch); Dequeue(); @@@ -749,13 -731,13 +749,13 @@@ bool pkgAcqIndexDiffs::QueueNextDiff( return true; } /*}}}*/ -void pkgAcqIndexDiffs::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/ +void pkgAcqIndexDiffs::Done(string Message,unsigned long long Size, HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cnf) { if(Debug) std::clog << "pkgAcqIndexDiffs::Done(): " << Desc.URI << std::endl; - Item::Done(Message,Size,Md5Hash,Cnf); + Item::Done(Message, Size, Hashes, Cnf); string FinalFile; FinalFile = _config->FindDir("Dir::State::lists")+URItoFileName(RealURI); @@@ -797,9 -779,8 +797,9 @@@ // see if there is more to download if(available_patches.empty() == false) { - new pkgAcqIndexDiffs(Owner, RealURI, Description, Desc.ShortDesc, - ExpectedHash, ServerSha1, available_patches); + new pkgAcqIndexDiffs(Owner, Target, + ExpectedHashes, MetaIndexParser, + ServerSha1, available_patches); return Finish(); } else return Finish(true); @@@ -808,24 -789,22 +808,24 @@@ /*}}}*/ // AcqIndexMergeDiffs::AcqIndexMergeDiffs - Constructor /*{{{*/ pkgAcqIndexMergeDiffs::pkgAcqIndexMergeDiffs(pkgAcquire *Owner, - string const &URI, string const &URIDesc, - string const &ShortDesc, HashString const &ExpectedHash, - DiffInfo const &patch, - std::vector const * const allPatches) - : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash), - patch(patch),allPatches(allPatches), State(StateFetchDiff) + struct IndexTarget const * const Target, + HashStringList const &ExpectedHashes, + indexRecords *MetaIndexParser, + DiffInfo const &patch, + std::vector const * const allPatches) + : pkgAcqBaseIndex(Owner, Target, ExpectedHashes, MetaIndexParser), + patch(patch), allPatches(allPatches), State(StateFetchDiff) { DestFile = _config->FindDir("Dir::State::lists") + "partial/"; - DestFile += URItoFileName(URI); + DestFile += URItoFileName(Target->URI); Debug = _config->FindB("Debug::pkgAcquire::Diffs",false); - Description = URIDesc; + RealURI = Target->URI; Desc.Owner = this; - Desc.ShortDesc = ShortDesc; + Description = Target->Description; + Desc.ShortDesc = Target->ShortDesc; Desc.URI = RealURI + ".diff/" + patch.file + ".gz"; Desc.Description = Description + " " + patch.file + string(".pdiff"); @@@ -856,16 -835,17 +856,16 @@@ void pkgAcqIndexMergeDiffs::Failed(stri // first failure means we should fallback State = StateErrorDiff; std::clog << "Falling back to normal index file acquire" << std::endl; - new pkgAcqIndex(Owner, RealURI, Description,Desc.ShortDesc, - ExpectedHash); + new pkgAcqIndex(Owner, Target, ExpectedHashes, MetaIndexParser); } /*}}}*/ -void pkgAcqIndexMergeDiffs::Done(string Message,unsigned long long Size,string Md5Hash, /*{{{*/ +void pkgAcqIndexMergeDiffs::Done(string Message,unsigned long long Size,HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cnf) { if(Debug) std::clog << "pkgAcqIndexMergeDiffs::Done(): " << Desc.URI << std::endl; - Item::Done(Message,Size,Md5Hash,Cnf); + Item::Done(Message,Size,Hashes,Cnf); string const FinalFile = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); @@@ -901,7 -881,7 +901,7 @@@ else if (State == StateApplyDiff) { // see if we really got the expected file - if(!ExpectedHash.empty() && !ExpectedHash.VerifyFile(DestFile)) + if(ExpectedHashes.usable() && !ExpectedHashes.VerifyFile(DestFile)) { RenameOnError(HashSumMismatch); return; @@@ -938,8 -918,8 +938,8 @@@ instantiated to fetch the revision file */ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, string URI,string URIDesc,string ShortDesc, - HashString ExpectedHash, string comprExt) - : Item(Owner), RealURI(URI), ExpectedHash(ExpectedHash) + HashStringList const &ExpectedHash, string comprExt) + : pkgAcqBaseIndex(Owner, NULL, ExpectedHash, NULL), RealURI(URI) { if(comprExt.empty() == true) { @@@ -955,15 -935,13 +955,15 @@@ Init(URI, URIDesc, ShortDesc); } pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, IndexTarget const *Target, - HashString const &ExpectedHash, indexRecords const *MetaIndexParser) - : Item(Owner), RealURI(Target->URI), ExpectedHash(ExpectedHash) + HashStringList const &ExpectedHash, + indexRecords *MetaIndexParser) + : pkgAcqBaseIndex(Owner, Target, ExpectedHash, MetaIndexParser), + RealURI(Target->URI) { // autoselect the compression method std::vector types = APT::Configuration::getCompressionTypes(); CompressionExtension = ""; - if (ExpectedHash.empty() == false) + if (ExpectedHashes.usable()) { for (std::vector::const_iterator t = types.begin(); t != types.end(); ++t) if (*t == "uncompressed" || MetaIndexParser->Exists(string(Target->MetaKey).append(".").append(*t)) == true) @@@ -989,29 -967,10 +989,29 @@@ void pkgAcqIndex::Init(string const &UR DestFile += URItoFileName(URI); std::string const comprExt = CompressionExtension.substr(0, CompressionExtension.find(' ')); + std::string MetaKey; if (comprExt == "uncompressed") + { Desc.URI = URI; + if(Target) + MetaKey = string(Target->MetaKey); + } else + { Desc.URI = URI + '.' + comprExt; + if(Target) + MetaKey = string(Target->MetaKey) + '.' + comprExt; + } + + // load the filesize + if(MetaIndexParser) + { + indexRecords::checkSum *Record = MetaIndexParser->Lookup(MetaKey); + if(Record) + FileSize = Record->Size; + + InitByHashIfNeeded(MetaKey); + } Desc.Description = URIDesc; Desc.Owner = this; @@@ -1020,42 -979,10 +1020,42 @@@ QueueURI(Desc); } /*}}}*/ +// AcqIndex::AdjustForByHash - modify URI for by-hash support /*{{{*/ +// --------------------------------------------------------------------- +/* */ +void pkgAcqIndex::InitByHashIfNeeded(const std::string MetaKey) +{ + // TODO: + // - (maybe?) add support for by-hash into the sources.list as flag + // - make apt-ftparchive generate the hashes (and expire?) + std::string HostKnob = "APT::Acquire::" + ::URI(Desc.URI).Host + "::By-Hash"; + if(_config->FindB("APT::Acquire::By-Hash", false) == true || + _config->FindB(HostKnob, false) == true || + MetaIndexParser->GetSupportsAcquireByHash()) + { + indexRecords::checkSum *Record = MetaIndexParser->Lookup(MetaKey); + if(Record) + { + // FIXME: should we really use the best hash here? or a fixed one? + const HashString *TargetHash = Record->Hashes.find(""); + std::string ByHash = "/by-hash/" + TargetHash->HashType() + "/" + TargetHash->HashValue(); + size_t trailing_slash = Desc.URI.find_last_of("/"); + Desc.URI = Desc.URI.replace( + trailing_slash, + Desc.URI.substr(trailing_slash+1).size()+1, + ByHash); + } else { + _error->Warning( + "Fetching ByHash requested but can not find record for %s", + MetaKey.c_str()); + } + } +} + /*}}}*/ // AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqIndex::Custom600Headers() +string pkgAcqIndex::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI); @@@ -1101,17 -1028,22 +1101,17 @@@ void pkgAcqIndex::Failed(string Message to the uncompressed version of the file. If this is so the file is copied into the partial directory. In all other cases the file is decompressed with a gzip uri. */ -void pkgAcqIndex::Done(string Message,unsigned long long Size,string Hash, +void pkgAcqIndex::Done(string Message,unsigned long long Size,HashStringList const &Hashes, pkgAcquire::MethodConfig *Cfg) { - Item::Done(Message,Size,Hash,Cfg); + Item::Done(Message,Size,Hashes,Cfg); if (Decompression == true) { - if (_config->FindB("Debug::pkgAcquire::Auth", false)) - { - std::cerr << std::endl << RealURI << ": Computed Hash: " << Hash; - std::cerr << " Expected Hash: " << ExpectedHash.toStr() << std::endl; - } - - if (!ExpectedHash.empty() && ExpectedHash.toStr() != Hash) + if (ExpectedHashes.usable() && ExpectedHashes != Hashes) { RenameOnError(HashSumMismatch); + printHashSumComparision(RealURI, ExpectedHashes, Hashes); return; } @@@ -1141,7 -1073,7 +1141,7 @@@ FinalFile += URItoFileName(RealURI); Rename(DestFile,FinalFile); chmod(FinalFile.c_str(),0644); - + /* We restore the original name to DestFile so that the clean operation will work OK */ DestFile = _config->FindDir("Dir::State::lists") + "partial/"; @@@ -1150,7 -1082,6 +1150,7 @@@ // Remove the compressed version. if (Erase == true) unlink(DestFile.c_str()); + return; } @@@ -1234,22 -1165,18 +1234,22 @@@ /* The Translation file is added to the queue */ pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire *Owner, string URI,string URIDesc,string ShortDesc) - : pkgAcqIndex(Owner, URI, URIDesc, ShortDesc, HashString(), "") + : pkgAcqIndex(Owner, URI, URIDesc, ShortDesc, HashStringList(), "") { } -pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire *Owner, IndexTarget const *Target, - HashString const &ExpectedHash, indexRecords const *MetaIndexParser) - : pkgAcqIndex(Owner, Target, ExpectedHash, MetaIndexParser) +pkgAcqIndexTrans::pkgAcqIndexTrans(pkgAcquire *Owner, IndexTarget const * const Target, + HashStringList const &ExpectedHashes, indexRecords *MetaIndexParser) + : pkgAcqIndex(Owner, Target, ExpectedHashes, MetaIndexParser) { + // load the filesize + indexRecords::checkSum *Record = MetaIndexParser->Lookup(string(Target->MetaKey)); + if(Record) + FileSize = Record->Size; } /*}}}*/ // AcqIndexTrans::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- -string pkgAcqIndexTrans::Custom600Headers() +string pkgAcqIndexTrans::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI); @@@ -1293,7 -1220,7 +1293,7 @@@ pkgAcqMetaSig::pkgAcqMetaSig(pkgAcquir string MetaIndexShortDesc, const vector* IndexTargets, indexRecords* MetaIndexParser) : - Item(Owner), RealURI(URI), MetaIndexURI(MetaIndexURI), + Item(Owner, HashStringList()), RealURI(URI), MetaIndexURI(MetaIndexURI), MetaIndexURIDesc(MetaIndexURIDesc), MetaIndexShortDesc(MetaIndexShortDesc), MetaIndexParser(MetaIndexParser), IndexTargets(IndexTargets) { @@@ -1324,9 -1251,6 +1324,9 @@@ Rename(Final,LastGoodSig); } + // we expect the indextargets + one additional Release file + ExpectedAdditionalItems = IndexTargets->size() + 1; + QueueURI(Desc); } /*}}}*/ @@@ -1346,7 -1270,7 +1346,7 @@@ pkgAcqMetaSig::~pkgAcqMetaSig() /* // pkgAcqMetaSig::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqMetaSig::Custom600Headers() +string pkgAcqMetaSig::Custom600Headers() const { struct stat Buf; if (stat(LastGoodSig.c_str(),&Buf) != 0) @@@ -1355,10 -1279,10 +1355,10 @@@ return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); } -void pkgAcqMetaSig::Done(string Message,unsigned long long Size,string MD5, +void pkgAcqMetaSig::Done(string Message,unsigned long long Size, HashStringList const &Hashes, pkgAcquire::MethodConfig *Cfg) { - Item::Done(Message,Size,MD5,Cfg); + Item::Done(Message, Size, Hashes, Cfg); string FileName = LookupTag(Message,"Filename"); if (FileName.empty() == true) @@@ -1379,9 -1303,6 +1379,9 @@@ Complete = true; + // at this point pkgAcqMetaIndex takes over + ExpectedAdditionalItems = 0; + // put the last known good file back on i-m-s hit (it will // be re-verified again) // Else do nothing, we have the new file in DestFile then @@@ -1399,9 -1320,6 +1399,9 @@@ void pkgAcqMetaSig::Failed(string Messa { string Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); + // at this point pkgAcqMetaIndex takes over + ExpectedAdditionalItems = 0; + // if we get a network error we fail gracefully if(Status == StatTransientNetworkError) { @@@ -1438,9 -1356,9 +1438,9 @@@ pkgAcqMetaIndex::pkgAcqMetaIndex(pkgAcquire *Owner, /*{{{*/ string URI,string URIDesc,string ShortDesc, string SigFile, - const vector* IndexTargets, + const vector* IndexTargets, indexRecords* MetaIndexParser) : - Item(Owner), RealURI(URI), SigFile(SigFile), IndexTargets(IndexTargets), + Item(Owner, HashStringList()), RealURI(URI), SigFile(SigFile), IndexTargets(IndexTargets), MetaIndexParser(MetaIndexParser), AuthPass(false), IMSHit(false) { DestFile = _config->FindDir("Dir::State::lists") + "partial/"; @@@ -1452,16 -1370,13 +1452,16 @@@ Desc.ShortDesc = ShortDesc; Desc.URI = URI; + // we expect more item + ExpectedAdditionalItems = IndexTargets->size(); + QueueURI(Desc); } /*}}}*/ // pkgAcqMetaIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqMetaIndex::Custom600Headers() +string pkgAcqMetaIndex::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI); @@@ -1473,10 -1388,10 +1473,10 @@@ return "\nIndex-File: true\nLast-Modified: " + TimeRFC1123(Buf.st_mtime); } /*}}}*/ -void pkgAcqMetaIndex::Done(string Message,unsigned long long Size,string Hash, /*{{{*/ +void pkgAcqMetaIndex::Done(string Message,unsigned long long Size,HashStringList const &Hashes, /*{{{*/ pkgAcquire::MethodConfig *Cfg) { - Item::Done(Message,Size,Hash,Cfg); + Item::Done(Message,Size,Hashes,Cfg); // MetaIndexes are done in two passes: one to download the // metaindex with an appropriate method, and a second to verify it @@@ -1505,20 -1420,9 +1505,20 @@@ } else { + // FIXME: move this into pkgAcqMetaClearSig::Done on the next + // ABI break + + // if we expect a ClearTextSignature (InRelase), ensure that + // this is what we get and if not fail to queue a + // Release/Release.gpg, see #346386 + if (SigFile == DestFile && !StartsWithGPGClearTextSignature(DestFile)) + { + Failed(Message, Cfg); + return; + } + // There was a signature file, so pass it to gpgv for // verification - if (_config->FindB("Debug::pkgAcquire::Auth", false)) std::cerr << "Metaindex acquired, queueing gpg verification (" << SigFile << "," << DestFile << ")\n"; @@@ -1644,13 -1548,11 +1644,13 @@@ void pkgAcqMetaIndex::QueueIndexes(boo } } - for (vector ::const_iterator Target = IndexTargets->begin(); + // at this point the real Items are loaded in the fetcher + ExpectedAdditionalItems = 0; + for (vector ::const_iterator Target = IndexTargets->begin(); Target != IndexTargets->end(); ++Target) { - HashString ExpectedIndexHash; + HashStringList ExpectedIndexHashes; const indexRecords::checkSum *Record = MetaIndexParser->Lookup((*Target)->MetaKey); bool compressedAvailable = false; if (Record == NULL) @@@ -1674,16 -1576,14 +1674,16 @@@ } else { - ExpectedIndexHash = Record->Hash; + ExpectedIndexHashes = Record->Hashes; if (_config->FindB("Debug::pkgAcquire::Auth", false)) { - std::cerr << "Queueing: " << (*Target)->URI << std::endl; - std::cerr << "Expected Hash: " << ExpectedIndexHash.toStr() << std::endl; + std::cerr << "Queueing: " << (*Target)->URI << std::endl + << "Expected Hash:" << std::endl; + for (HashStringList::const_iterator hs = ExpectedIndexHashes.begin(); hs != ExpectedIndexHashes.end(); ++hs) + std::cerr << "\t- " << hs->toStr() << std::endl; std::cerr << "For: " << Record->MetaKeyFilename << std::endl; } - if (verify == true && ExpectedIndexHash.empty() == true && (*Target)->IsOptional() == false) + if (verify == true && ExpectedIndexHashes.empty() == true && (*Target)->IsOptional() == false) { Status = StatAuthError; strprintf(ErrorText, _("Unable to find hash sum for '%s' in Release file"), (*Target)->MetaKey.c_str()); @@@ -1695,14 -1595,15 +1695,14 @@@ { if ((*Target)->IsSubIndex() == true) new pkgAcqSubIndex(Owner, (*Target)->URI, (*Target)->Description, - (*Target)->ShortDesc, ExpectedIndexHash); + (*Target)->ShortDesc, ExpectedIndexHashes); else if (transInRelease == false || Record != NULL || compressedAvailable == true) { if (_config->FindB("Acquire::PDiffs",true) == true && transInRelease == true && MetaIndexParser->Exists((*Target)->MetaKey + ".diff/Index") == true) - new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description, - (*Target)->ShortDesc, ExpectedIndexHash); + new pkgAcqDiffIndex(Owner, *Target, ExpectedIndexHashes, MetaIndexParser); else - new pkgAcqIndexTrans(Owner, *Target, ExpectedIndexHash, MetaIndexParser); + new pkgAcqIndexTrans(Owner, *Target, ExpectedIndexHashes, MetaIndexParser); } continue; } @@@ -1713,9 -1614,10 +1713,9 @@@ instead, but passing the required info to it is to much hassle */ if(_config->FindB("Acquire::PDiffs",true) == true && (verify == false || MetaIndexParser->Exists((*Target)->MetaKey + ".diff/Index") == true)) - new pkgAcqDiffIndex(Owner, (*Target)->URI, (*Target)->Description, - (*Target)->ShortDesc, ExpectedIndexHash); + new pkgAcqDiffIndex(Owner, *Target, ExpectedIndexHashes, MetaIndexParser); else - new pkgAcqIndex(Owner, *Target, ExpectedIndexHash, MetaIndexParser); + new pkgAcqIndex(Owner, *Target, ExpectedIndexHashes, MetaIndexParser); } } /*}}}*/ @@@ -1868,7 -1770,7 +1868,7 @@@ pkgAcqMetaClearSig::pkgAcqMetaClearSig( string const &URI, string const &URIDesc, string const &ShortDesc, string const &MetaIndexURI, string const &MetaIndexURIDesc, string const &MetaIndexShortDesc, string const &MetaSigURI, string const &MetaSigURIDesc, string const &MetaSigShortDesc, - const vector* IndexTargets, + const vector* IndexTargets, indexRecords* MetaIndexParser) : pkgAcqMetaIndex(Owner, URI, URIDesc, ShortDesc, "", IndexTargets, MetaIndexParser), MetaIndexURI(MetaIndexURI), MetaIndexURIDesc(MetaIndexURIDesc), MetaIndexShortDesc(MetaIndexShortDesc), @@@ -1876,10 -1778,6 +1876,10 @@@ { SigFile = DestFile; + // index targets + (worst case:) Release/Release.gpg + ExpectedAdditionalItems = IndexTargets->size() + 2; + + // keep the old InRelease around in case of transistent network errors string const Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); if (RealFileExists(Final) == true) @@@ -1904,7 -1802,7 +1904,7 @@@ pkgAcqMetaClearSig::~pkgAcqMetaClearSig // pkgAcqMetaClearSig::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- // FIXME: this can go away once the InRelease file is used widely -string pkgAcqMetaClearSig::Custom600Headers() +string pkgAcqMetaClearSig::Custom600Headers() const { string Final = _config->FindDir("Dir::State::lists"); Final += URItoFileName(RealURI); @@@ -1922,9 -1820,6 +1922,9 @@@ /*}}}*/ void pkgAcqMetaClearSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ { + // we failed, we will not get additional items from this method + ExpectedAdditionalItems = 0; + if (AuthPass == false) { // Remove the 'old' InRelease file if we try Release.gpg now as otherwise @@@ -1953,7 -1848,7 +1953,7 @@@ pkgAcqArchive::pkgAcqArchive(pkgAcquire *Owner,pkgSourceList *Sources, pkgRecords *Recs,pkgCache::VerIterator const &Version, string &StoreFilename) : - Item(Owner), Version(Version), Sources(Sources), Recs(Recs), + Item(Owner, HashStringList()), Version(Version), Sources(Sources), Recs(Recs), StoreFilename(StoreFilename), Vf(Version.FileList()), Trusted(false) { @@@ -2038,6 -1933,7 +2038,6 @@@ checking later. */ bool pkgAcqArchive::QueueNext() { - string const ForceHash = _config->Find("Acquire::ForceHash"); for (; Vf.end() == false; ++Vf) { // Ignore not source sources @@@ -2058,10 -1954,31 +2058,10 @@@ pkgRecords::Parser &Parse = Recs->Lookup(Vf); if (_error->PendingError() == true) return false; - + string PkgFile = Parse.FileName(); - if (ForceHash.empty() == false) - { - if(stringcasecmp(ForceHash, "sha512") == 0) - ExpectedHash = HashString("SHA512", Parse.SHA512Hash()); - else if(stringcasecmp(ForceHash, "sha256") == 0) - ExpectedHash = HashString("SHA256", Parse.SHA256Hash()); - else if (stringcasecmp(ForceHash, "sha1") == 0) - ExpectedHash = HashString("SHA1", Parse.SHA1Hash()); - else - ExpectedHash = HashString("MD5Sum", Parse.MD5Hash()); - } - else - { - string Hash; - if ((Hash = Parse.SHA512Hash()).empty() == false) - ExpectedHash = HashString("SHA512", Hash); - else if ((Hash = Parse.SHA256Hash()).empty() == false) - ExpectedHash = HashString("SHA256", Hash); - else if ((Hash = Parse.SHA1Hash()).empty() == false) - ExpectedHash = HashString("SHA1", Hash); - else - ExpectedHash = HashString("MD5Sum", Parse.MD5Hash()); - } + ExpectedHashes = Parse.Hashes(); + if (PkgFile.empty() == true) return _error->Error(_("The package index files are corrupted. No Filename: " "field for package %s."), @@@ -2148,10 -2065,10 +2148,10 @@@ // AcqArchive::Done - Finished fetching /*{{{*/ // --------------------------------------------------------------------- /* */ -void pkgAcqArchive::Done(string Message,unsigned long long Size,string CalcHash, +void pkgAcqArchive::Done(string Message,unsigned long long Size, HashStringList const &CalcHashes, pkgAcquire::MethodConfig *Cfg) { - Item::Done(Message,Size,CalcHash,Cfg); + Item::Done(Message, Size, CalcHashes, Cfg); // Check the size if (Size != Version->Size) @@@ -2159,12 -2076,11 +2159,12 @@@ RenameOnError(SizeMismatch); return; } - - // Check the hash - if(ExpectedHash.toStr() != CalcHash) + + // FIXME: could this empty() check impose *any* sort of security issue? + if(ExpectedHashes.usable() && ExpectedHashes != CalcHashes) { RenameOnError(HashSumMismatch); + printHashSumComparision(DestFile, ExpectedHashes, CalcHashes); return; } @@@ -2236,7 -2152,7 +2236,7 @@@ void pkgAcqArchive::Failed(string Messa /*}}}*/ // AcqArchive::IsTrusted - Determine whether this archive comes from a trusted source /*{{{*/ // --------------------------------------------------------------------- -APT_PURE bool pkgAcqArchive::IsTrusted() +APT_PURE bool pkgAcqArchive::IsTrusted() const { return Trusted; } @@@ -2255,11 -2171,11 +2255,11 @@@ void pkgAcqArchive::Finished( // AcqFile::pkgAcqFile - Constructor /*{{{*/ // --------------------------------------------------------------------- /* The file is added to the queue */ -pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI,string Hash, +pkgAcqFile::pkgAcqFile(pkgAcquire *Owner,string URI, HashStringList const &Hashes, unsigned long long Size,string Dsc,string ShortDesc, const string &DestDir, const string &DestFilename, bool IsIndexFile) : - Item(Owner), ExpectedHash(Hash), IsIndexFile(IsIndexFile) + Item(Owner, Hashes), IsIndexFile(IsIndexFile) { Retries = _config->FindI("Acquire::Retries",0); @@@ -2296,16 -2212,15 +2296,16 @@@ // AcqFile::Done - Item downloaded OK /*{{{*/ // --------------------------------------------------------------------- /* */ -void pkgAcqFile::Done(string Message,unsigned long long Size,string CalcHash, +void pkgAcqFile::Done(string Message,unsigned long long Size,HashStringList const &CalcHashes, pkgAcquire::MethodConfig *Cnf) { - Item::Done(Message,Size,CalcHash,Cnf); + Item::Done(Message,Size,CalcHashes,Cnf); // Check the hash - if(!ExpectedHash.empty() && ExpectedHash.toStr() != CalcHash) + if(ExpectedHashes.usable() && ExpectedHashes != CalcHashes) { RenameOnError(HashSumMismatch); + printHashSumComparision(DestFile, ExpectedHashes, CalcHashes); return; } @@@ -2376,7 -2291,7 +2376,7 @@@ void pkgAcqFile::Failed(string Message, // AcqIndex::Custom600Headers - Insert custom request headers /*{{{*/ // --------------------------------------------------------------------- /* The only header we use is the last-modified header. */ -string pkgAcqFile::Custom600Headers() +string pkgAcqFile::Custom600Headers() const { if (IsIndexFile) return "\nIndex-File: true"; diff --combined apt-pkg/contrib/strutl.cc index 7948673dc,922229e90..9238966cd --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@@ -62,13 -62,6 +62,13 @@@ bool Endswith(const std::string &s, con return (s.substr(s.size() - end.size(), s.size()) == end); } +bool Startswith(const std::string &s, const std::string &start) +{ + if (start.size() > s.size()) + return false; + return (s.substr(0, start.size()) == start); +} + } } /*}}}*/ @@@ -711,9 -704,12 +711,12 @@@ string LookupTag(const string &Message, then returns the result. Several varients on true/false are checked. */ int StringToBool(const string &Text,int Default) { - char *End; - int Res = strtol(Text.c_str(),&End,0); - if (End != Text.c_str() && Res >= 0 && Res <= 1) + char *ParseEnd; + int Res = strtol(Text.c_str(),&ParseEnd,0); + // ensure that the entire string was converted by strtol to avoid + // failures on "apt-cache show -a 0ad" where the "0" is converted + const char *TextEnd = Text.c_str()+Text.size(); + if (ParseEnd == TextEnd && Res >= 0 && Res <= 1) return Res; // Check for positives @@@ -1053,7 -1049,7 +1056,7 @@@ bool StrToNum(const char *Str,unsigned // --------------------------------------------------------------------- /* This is used in decoding the 256bit encoded fixed length fields in tar files */ -bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len) +bool Base256ToNum(const char *Str,unsigned long long &Res,unsigned int Len) { if ((Str[0] & 0x80) == 0) return false; @@@ -1066,23 -1062,6 +1069,23 @@@ } } /*}}}*/ +// Base256ToNum - Convert a fixed length binary to a number /*{{{*/ +// --------------------------------------------------------------------- +/* This is used in decoding the 256bit encoded fixed length fields in + tar files */ +bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len) +{ + unsigned long long Num; + bool rc; + + rc = Base256ToNum(Str, Num, Len); + Res = Num; + if (Res != Num) + return false; + + return rc; +} + /*}}}*/ // HexDigit - Convert a hex character into an integer /*{{{*/ // --------------------------------------------------------------------- /* Helper for Hex2Num */ diff --combined apt-pkg/deb/deblistparser.cc index 4ac5aa238,7d4fd52cf..3e0d3a791 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@@ -61,7 -61,7 +61,7 @@@ debListParser::debListParser(FileFd *Fi // ListParser::UniqFindTagWrite - Find the tag and write a unq string /*{{{*/ // --------------------------------------------------------------------- /* */ -unsigned long debListParser::UniqFindTagWrite(const char *Tag) +map_stringitem_t debListParser::UniqFindTagWrite(const char *Tag) { const char *Start; const char *Stop; @@@ -195,31 -195,35 +195,31 @@@ bool debListParser::NewVersion(pkgCache /* This is to return the string describing the package in debian form. If this returns the blank string then the entry is assumed to only describe package properties */ -string debListParser::Description() +string debListParser::Description(std::string const &lang) { - string const lang = DescriptionLanguage(); if (lang.empty()) return Section.FindS("Description"); else return Section.FindS(string("Description-").append(lang).c_str()); } - /*}}}*/ -// ListParser::DescriptionLanguage - Return the description lang string /*{{{*/ -// --------------------------------------------------------------------- -/* This is to return the string describing the language of - description. If this returns the blank string then the entry is - assumed to describe original description. */ -string debListParser::DescriptionLanguage() + /*}}}*/ +// ListParser::AvailableDescriptionLanguages /*{{{*/ +std::vector debListParser::AvailableDescriptionLanguages() { - if (Section.FindS("Description").empty() == false) - return ""; - - std::vector const lang = APT::Configuration::getLanguages(true); - for (std::vector::const_iterator l = lang.begin(); - l != lang.end(); ++l) - if (Section.FindS(string("Description-").append(*l).c_str()).empty() == false) - return *l; - - return ""; + std::vector const understood = APT::Configuration::getLanguages(); + std::vector avail; + if (Section.Exists("Description") == true) + avail.push_back(""); + for (std::vector::const_iterator lang = understood.begin(); lang != understood.end(); ++lang) + { + std::string const tagname = "Description-" + *lang; + if (Section.Exists(tagname.c_str()) == true) + avail.push_back(*lang); + } + return avail; } - /*}}}*/ -// ListParser::Description - Return the description_md5 MD5SumValue /*{{{*/ + /*}}}*/ +// ListParser::Description_md5 - Return the description_md5 MD5SumValue /*{{{*/ // --------------------------------------------------------------------- /* This is to return the md5 string to allow the check if it is the right description. If no Description-md5 is found in the section it will be @@@ -230,7 -234,7 +230,7 @@@ MD5SumValue debListParser::Description_ string const value = Section.FindS("Description-md5"); if (value.empty() == true) { - std::string const desc = Description() + "\n"; + std::string const desc = Description("") + "\n"; if (desc == "\n") return MD5SumValue(); @@@ -256,6 -260,12 +256,6 @@@ bool debListParser::UsePackage(pkgCache::PkgIterator &Pkg, pkgCache::VerIterator &Ver) { - if (Pkg->Section == 0) - { - unsigned long const idxSection = UniqFindTagWrite("Section"); - Pkg->Section = idxSection; - } - string const static myArch = _config->Find("APT::Architecture"); // Possible values are: "all", "native", "installed" and "none" // The "installed" mode is handled by ParseStatus(), See #544481 and friends. @@@ -793,8 -803,8 +793,8 @@@ bool debListParser::ParseProvides(pkgCa Start = ParseDepends(Start,Stop,Package,Version,Op); if (Start == 0) return _error->Error("Problem parsing Provides line"); - if (Op != pkgCache::Dep::NoOp) { - _error->Warning("Ignoring Provides line with DepCompareOp for package %s", Package.c_str()); + if (Op != pkgCache::Dep::NoOp && Op != pkgCache::Dep::Equals) { + _error->Warning("Ignoring Provides line with non-equal DepCompareOp for package %s", Package.c_str()); } else if ((Ver->MultiArch & pkgCache::Version::Foreign) == pkgCache::Version::Foreign) { if (NewProvidesAllArch(Ver, Package, Version) == false) return false; @@@ -891,7 -901,7 +891,7 @@@ bool debListParser::LoadReleaseInfo(pkg { // apt-secure does no longer download individual (per-section) Release // file. to provide Component pinning we use the section name now - map_ptrloc const storage = WriteUniqString(component); + map_stringitem_t const storage = WriteUniqString(component); FileI->Component = storage; pkgTagFile TagFile(&File, File.Size()); @@@ -904,7 -914,7 +904,7 @@@ data = Section.FindS(TAG); \ if (data.empty() == false) \ { \ - map_ptrloc const storage = WriteUniqString(data); \ + map_stringitem_t const storage = WriteUniqString(data); \ STORE = storage; \ } APT_INRELEASE("Suite", FileI->Archive) @@@ -953,23 -963,3 +953,23 @@@ bool debListParser::SameVersion(unsigne } /*}}}*/ #endif + + +debDebFileParser::debDebFileParser(FileFd *File, std::string const &DebFile) + : debListParser(File, ""), DebFile(DebFile) +{ +} + +bool debDebFileParser::UsePackage(pkgCache::PkgIterator &Pkg, + pkgCache::VerIterator &Ver) +{ + bool res = debListParser::UsePackage(Pkg, Ver); + // we use the full file path as a provides so that the file is found + // by its name + if(NewProvidesAllArch(Ver, DebFile, Ver.VerStr()) == false) + return false; + return res; +} + + + diff --combined apt-pkg/deb/dpkgpm.cc index 2dcdf916f,264304c61..8295a7c1e --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@@ -517,7 -517,7 +517,7 @@@ bool pkgDPkgPM::RunScriptsWithPkgs(cons void pkgDPkgPM::DoStdin(int master) { unsigned char input_buf[256] = {0,}; - ssize_t len = read(0, input_buf, sizeof(input_buf)); + ssize_t len = read(STDIN_FILENO, input_buf, sizeof(input_buf)); if (len) FileFd::Write(master, input_buf, len); else @@@ -621,15 -621,15 +621,15 @@@ void pkgDPkgPM::ProcessDpkgStatusLine(c { if(action == "error") { - d->progress->Error(list[1], PackagesDone, PackagesTotal, + d->progress->Error(pkgname, PackagesDone, PackagesTotal, list[3]); pkgFailures++; - WriteApportReport(list[1].c_str(), list[3].c_str()); + WriteApportReport(pkgname.c_str(), list[3].c_str()); return; } else if(action == "conffile-prompt") { - d->progress->ConffilePrompt(list[1], PackagesDone, PackagesTotal, + d->progress->ConffilePrompt(pkgname, PackagesDone, PackagesTotal, list[3]); return; } @@@ -1031,6 -1031,7 +1031,6 @@@ void pkgDPkgPM::BuildPackagesProgressMa } } /*}}}*/ -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) bool pkgDPkgPM::Go(int StatusFd) { APT::Progress::PackageManager *progress = NULL; @@@ -1039,8 -1040,9 +1039,8 @@@ else progress = new APT::Progress::PackageManagerProgressFd(StatusFd); - return GoNoABIBreak(progress); + return Go(progress); } -#endif void pkgDPkgPM::StartPtyMagic() { @@@ -1112,7 -1114,11 +1112,7 @@@ void pkgDPkgPM::StopPtyMagic( * through to human readable (and i10n-able) * names and calculates a percentage for each step. */ -#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR >= 13) bool pkgDPkgPM::Go(APT::Progress::PackageManager *progress) -#else -bool pkgDPkgPM::GoNoABIBreak(APT::Progress::PackageManager *progress) -#endif { pkgPackageManager::SigINTStop = false; d->progress = progress; @@@ -1662,9 -1668,10 +1662,10 @@@ void pkgDPkgPM::WriteApportReport(cons // do not report dpkg I/O errors, this is a format string, so we compare // the prefix and the suffix of the error with the dpkg error message vector io_errors; - io_errors.push_back(string("failed to read on buffer copy for %s")); - io_errors.push_back(string("failed in write on buffer copy for %s")); - io_errors.push_back(string("short read on buffer copy for %s")); + io_errors.push_back(string("failed to read")); + io_errors.push_back(string("failed to write")); + io_errors.push_back(string("failed to seek")); + io_errors.push_back(string("unexpected end of file or stream")); for (vector::iterator I = io_errors.begin(); I != io_errors.end(); ++I) { diff --combined apt-pkg/depcache.cc index 492d16029,42e31396b..16282df21 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@@ -663,10 -663,11 +663,11 @@@ void pkgDepCache::Update(OpProgress *Pr { iUsrSize = 0; iDownloadSize = 0; - iDelCount = 0; iInstCount = 0; + iDelCount = 0; iKeepCount = 0; iBrokenCount = 0; + iPolicyBrokenCount = 0; iBadCount = 0; // Perform the depends pass @@@ -1225,7 -1226,7 +1226,7 @@@ bool pkgDepCache::MarkInstall(PkgIterat continue; } // now check if we should consider it a automatic dependency or not - if(InstPkg->CurrentVer == 0 && Pkg->Section != 0 && ConfigValueInSubTree("APT::Never-MarkAuto-Sections", Pkg.Section())) + if(InstPkg->CurrentVer == 0 && InstVer->Section != 0 && ConfigValueInSubTree("APT::Never-MarkAuto-Sections", InstVer.Section())) { if(DebugAutoInstall == true) std::clog << OutputInDepth(Depth) << "Setting NOT as auto-installed (direct " diff --combined apt-pkg/packagemanager.cc index d9df28ba3,249542c68..e4cd1dc3b --- a/apt-pkg/packagemanager.cc +++ b/apt-pkg/packagemanager.cc @@@ -28,7 -28,6 +28,7 @@@ #include #include #include +#include #include #include @@@ -373,6 -372,8 +373,8 @@@ bool pkgPackageManager::SmartConfigure( std::list needConfigure; do { + // Check each dependency and see if anything needs to be done + // so that it can be configured Changed = false; for (DepIterator D = instVer.DependsList(); D.end() == false; ) { @@@ -384,7 -385,8 +386,8 @@@ continue; Bad = true; - // Check for dependencies that have not been unpacked, probably due to loops. + // the first pass checks if we its all good, i.e. if we have + // to do anything at all for (DepIterator Cur = Start; true; ++Cur) { SPtrArray VList = Cur.AllTargets(); @@@ -403,6 -405,47 +406,47 @@@ break; } + // Check if the version that is going to be installed will satisfy the dependency + if (Cache[DepPkg].InstallVer != *I || List->IsNow(DepPkg) == false) + continue; + + if (PkgLoop == true) + { + if (Debug) + std::clog << OutputInDepth(Depth) << "Package " << Pkg << " loops in SmartConfigure" << std::endl; + Bad = false; + } + } + + if (Cur == End || Bad == false) + break; + } + + // this dependency is in a good state, so we can stop + if (Bad == false) + { + if (Debug) + std::clog << OutputInDepth(Depth) << "Found ok dep " << D.TargetPkg() << std::endl; + continue; + } + + // Check for dependencies that have not been unpacked, + // probably due to loops. + for (DepIterator Cur = Start; true; ++Cur) + { + SPtrArray VList = Cur.AllTargets(); + + for (Version **I = VList; *I != 0; ++I) + { + VerIterator Ver(Cache,*I); + PkgIterator DepPkg = Ver.ParentPkg(); + + // Check if the current version of the package is available and will satisfy this dependency + if (DepPkg.CurrentVer() == Ver && List->IsNow(DepPkg) == true && + List->IsFlag(DepPkg,pkgOrderList::Removed) == false && + DepPkg.State() == PkgIterator::NeedsNothing) + continue; + // Check if the version that is going to be installed will satisfy the dependency if (Cache[DepPkg].InstallVer != *I || List->IsNow(DepPkg) == false) continue; @@@ -420,6 -463,8 +464,8 @@@ if (NonLoopingSmart(UNPACK_IMMEDIATE, Pkg, DepPkg, Depth, PkgLoop, &Bad, &Changed) == false) return false; } + // at this point we either unpacked a Dep or we are in a loop, + // no need to unpack a second one break; } @@@ -436,6 -481,7 +482,7 @@@ return _error->Error("Internal error: MaxLoopCount reached in SmartUnPack (1) for %s, aborting", Pkg.FullName().c_str()); } while (Changed == true); + // now go over anything that needs configuring Bad = false, Changed = false, i = 0; do { diff --combined cmdline/apt-cache.cc index 88a323280,ac0d48a36..1447feb81 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@@ -264,46 -264,6 +264,46 @@@ static bool DumpPackage(CommandLine &Cm return true; } /*}}}*/ +// ShowHashTableStats - Show stats about a hashtable /*{{{*/ +// --------------------------------------------------------------------- +/* */ +template +static void ShowHashTableStats(std::string Type, + T *StartP, + map_pointer_t *Hashtable, + unsigned long Size) +{ + // hashtable stats for the HashTable + unsigned long NumBuckets = Size; + unsigned long UsedBuckets = 0; + unsigned long UnusedBuckets = 0; + unsigned long LongestBucket = 0; + unsigned long ShortestBucket = NumBuckets; + unsigned long Entries = 0; + for (unsigned int i=0; i < NumBuckets; ++i) + { + T *P = StartP + Hashtable[i]; + if(P == 0 || P == StartP) + { + ++UnusedBuckets; + continue; + } + ++UsedBuckets; + unsigned long ThisBucketSize = 0; + for (; P != StartP; P = StartP + P->Next) + ++ThisBucketSize; + Entries += ThisBucketSize; + LongestBucket = std::max(ThisBucketSize, LongestBucket); + ShortestBucket = std::min(ThisBucketSize, ShortestBucket); + } + cout << "Total buckets in " << Type << ": " << NumBuckets << std::endl; + cout << " Unused: " << UnusedBuckets << std::endl; + cout << " Used: " << UsedBuckets << std::endl; + cout << " Average entries: " << Entries/(double)NumBuckets << std::endl; + cout << " Longest: " << LongestBucket << std::endl; + cout << " Shortest: " << ShortestBucket << std::endl; +} + /*}}}*/ // Stats - Dump some nice statistics /*{{{*/ // --------------------------------------------------------------------- /* */ @@@ -400,32 -360,20 +400,32 @@@ static bool Stats(CommandLine & } } cout << _("Total dependency version space: ") << SizeToStr(DepVerSize) << endl; - + unsigned long Slack = 0; for (int I = 0; I != 7; I++) Slack += Cache->Head().Pools[I].ItemSize*Cache->Head().Pools[I].Count; cout << _("Total slack space: ") << SizeToStr(Slack) << endl; - + unsigned long Total = 0; - Total = Slack + Size + Cache->Head().DependsCount*Cache->Head().DependencySz + - Cache->Head().VersionCount*Cache->Head().VersionSz + - Cache->Head().PackageCount*Cache->Head().PackageSz + - Cache->Head().VerFileCount*Cache->Head().VerFileSz + - Cache->Head().ProvidesCount*Cache->Head().ProvidesSz; +#define APT_CACHESIZE(X,Y) (Cache->Head().X * Cache->Head().Y) + Total = Slack + Size + + APT_CACHESIZE(GroupCount, GroupSz) + + APT_CACHESIZE(PackageCount, PackageSz) + + APT_CACHESIZE(VersionCount, VersionSz) + + APT_CACHESIZE(DescriptionCount, DescriptionSz) + + APT_CACHESIZE(DependsCount, DependencySz) + + APT_CACHESIZE(PackageFileCount, PackageFileSz) + + APT_CACHESIZE(VerFileCount, VerFileSz) + + APT_CACHESIZE(DescFileCount, DescFileSz) + + APT_CACHESIZE(ProvidesCount, ProvidesSz) + + (2 * Cache->Head().HashTableSize * sizeof(map_id_t)); cout << _("Total space accounted for: ") << SizeToStr(Total) << endl; - +#undef APT_CACHESIZE + + // hashtable stats + ShowHashTableStats("PkgHashTable", Cache->PkgP, Cache->Head().PkgHashTable(), Cache->Head().HashTableSize); + ShowHashTableStats("GrpHashTable", Cache->GrpP, Cache->Head().GrpHashTable(), Cache->Head().HashTableSize); + return true; } /*}}}*/ @@@ -1283,7 -1231,7 +1283,7 @@@ static bool DisplayRecord(pkgCacheFile struct ExDescFile { pkgCache::DescFile *Df; - map_ptrloc ID; + map_id_t ID; }; // Search - Perform a search /*{{{*/ @@@ -1330,8 -1278,8 +1330,8 @@@ static bool Search(CommandLine &CmdL ExDescFile *DFList = new ExDescFile[descCount]; memset(DFList,0,sizeof(*DFList) * descCount); - bool PatternMatch[descCount * NumPatterns]; - memset(PatternMatch,false,sizeof(PatternMatch)); + bool *PatternMatch = new bool[descCount * NumPatterns]; + memset(PatternMatch,false,sizeof(*PatternMatch) * descCount * NumPatterns); // Map versions that we want to write out onto the VerList array. for (pkgCache::GrpIterator G = Cache->GrpBegin(); G.end() == false; ++G) @@@ -1441,6 -1389,7 +1441,7 @@@ } delete [] DFList; + delete [] PatternMatch; for (unsigned I = 0; I != NumPatterns; I++) regfree(&Patterns[I]); if (ferror(stdout)) diff --combined cmdline/apt-get.cc index cdbfa4708,845d67d2b..d6cd94f72 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@@ -832,25 -832,23 +832,25 @@@ static bool DoSource(CommandLine &CmdL queued.insert(Last->Index().ArchiveURI(I->Path)); // check if we have a file with that md5 sum already localy - if(!I->MD5Hash.empty() && FileExists(flNotDir(I->Path))) - { - FileFd Fd(flNotDir(I->Path), FileFd::ReadOnly); - MD5Summation sum; - sum.AddFD(Fd.Fd(), Fd.Size()); - Fd.Close(); - if((string)sum.Result() == I->MD5Hash) + std::string localFile = flNotDir(I->Path); + if (FileExists(localFile) == true) + if(I->Hashes.VerifyFile(localFile) == true) { ioprintf(c1out,_("Skipping already downloaded file '%s'\n"), - flNotDir(I->Path).c_str()); + localFile.c_str()); continue; } + + // see if we have a hash (Acquire::ForceHash is the only way to have none) + if (I->Hashes.usable() == false && _config->FindB("APT::Get::AllowUnauthenticated",false) == false) + { + ioprintf(c1out, "Skipping download of file '%s' as requested hashsum is not available for authentication\n", + localFile.c_str()); + continue; } new pkgAcqFile(&Fetcher,Last->Index().ArchiveURI(I->Path), - I->MD5Hash,I->Size, - Last->Index().SourceInfo(*Last,*I),Src); + I->Hashes, I->Size, Last->Index().SourceInfo(*Last,*I), Src); } } @@@ -955,18 -953,19 +955,19 @@@ else { // Call dpkg-source - char S[500]; - snprintf(S,sizeof(S),"%s -x %s", + std::string const sourceopts = _config->Find("DPkg::Source-Options", "-x"); + std::string S; + strprintf(S, "%s %s %s", _config->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(), - Dsc[I].Dsc.c_str()); - if (system(S) != 0) + sourceopts.c_str(), Dsc[I].Dsc.c_str()); + if (system(S.c_str()) != 0) { - fprintf(stderr,_("Unpack command '%s' failed.\n"),S); - fprintf(stderr,_("Check if the 'dpkg-dev' package is installed.\n")); + fprintf(stderr, _("Unpack command '%s' failed.\n"), S.c_str()); + fprintf(stderr, _("Check if the 'dpkg-dev' package is installed.\n")); _exit(1); - } + } } - + // Try to compile it with dpkg-buildpackage if (_config->FindB("APT::Get::Compile",false) == true) { @@@ -982,20 -981,20 +983,20 @@@ buildopts.append(_config->Find("DPkg::Build-Options","-b -uc")); // Call dpkg-buildpackage - char S[500]; - snprintf(S,sizeof(S),"cd %s && %s %s", + std::string S; + strprintf(S, "cd %s && %s %s", Dir.c_str(), _config->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(), buildopts.c_str()); - - if (system(S) != 0) + + if (system(S.c_str()) != 0) { - fprintf(stderr,_("Build command '%s' failed.\n"),S); + fprintf(stderr, _("Build command '%s' failed.\n"), S.c_str()); _exit(1); - } - } + } + } } - + _exit(0); } @@@ -1063,35 -1062,7 +1064,35 @@@ static bool DoBuildDep(CommandLine &Cmd for (const char **I = CmdL.FileList + 1; *I != 0; I++, J++) { string Src; - pkgSrcRecords::Parser *Last = FindSrc(*I,Recs,SrcRecs,Src,Cache); + pkgSrcRecords::Parser *Last = 0; + + // an unpacked debian source tree + using APT::String::Startswith; + if ((Startswith(*I, "./") || Startswith(*I, "/")) && + DirectoryExists(*I)) + { + ioprintf(c1out, _("Note, using directory '%s' to get the build dependencies\n"), *I); + // FIXME: how can we make this more elegant? + std::string TypeName = "debian/control File Source Index"; + pkgIndexFile::Type *Type = pkgIndexFile::Type::GetType(TypeName.c_str()); + if(Type != NULL) + Last = Type->CreateSrcPkgParser(*I); + } + // if its a local file (e.g. .dsc) use this + else if (FileExists(*I)) + { + ioprintf(c1out, _("Note, using file '%s' to get the build dependencies\n"), *I); + + // see if we can get a parser for this pkgIndexFile type + string TypeName = flExtension(*I) + " File Source Index"; + pkgIndexFile::Type *Type = pkgIndexFile::Type::GetType(TypeName.c_str()); + if(Type != NULL) + Last = Type->CreateSrcPkgParser(*I); + } else { + // normal case, search the cache for the source file + Last = FindSrc(*I,Recs,SrcRecs,Src,Cache); + } + if (Last == 0) return _error->Error(_("Unable to find a source package for %s"),Src.c_str()); @@@ -1109,7 -1080,7 +1110,7 @@@ } else if (Last->BuildDepends(BuildDeps, _config->FindB("APT::Get::Arch-Only", false), StripMultiArch) == false) return _error->Error(_("Unable to get build-dependency information for %s"),Src.c_str()); - + // Also ensure that build-essential packages are present Configuration::Item const *Opts = _config->Tree("APT::Build-Essential"); if (Opts) diff --combined debian/changelog index 52e4e7a3a,d940e853b..5b885ad6c --- a/debian/changelog +++ b/debian/changelog @@@ -1,73 -1,36 +1,106 @@@ +apt (1.1~exp2) experimental; urgency=medium + + [ Guillem Jover ] + * Add new Base256ToNum long long overload function + * Fix ar and tar code to be LFS-safe (Closes: #742882) + + [ Michael Vogt ] + * increase libapt-inst to version 1.6 + * Only allow "apt-get build-dep path" when path starts with ./ or / + * Allow passing a full path to apt-get install /foo/bar.deb (CLoses: #752327) + * merge changes from the 1.0.6 upload + + -- Michael Vogt Thu, 10 Jul 2014 13:18:08 +0200 + +apt (1.1~exp1) experimental; urgency=low + + [ David Kalnischkies ] + * [API Break] change "std::string pkgAcquire::Item::DescURI()" to + "std::string pkgAcquire::Item::DescURI() const" + * [ABI-Break] increase hashtable size for packages/groups by factor 5 + * [ABI-Break] cleanup datatypes mix used in binary cache + * [internal API-Break] remove the Section member from package struct + * use 'best' hash for source authentication (LP: 1098738) + * use HashStringList in the acquire system + * deal with hashes in ftparchive more dynamic as well + * reenable pipelining via hashsum reordering support + * parse and retrieve multiple Descriptions in one record + * improve pkgTagSection scanning and parsing + * invalid cache if architecture set doesn't match (Closes: 745036) + + [ Michael Vogt ] + * add support for "apt-get build-dep foo.dsc" + * add support for "apt-get build-dep unpacked-source-dir" + * add support for "apt-get install foo_1.0_all.deb" + * make "apt-get update" progress much more accurate by loading the + sizes of the targets into the fetcher early + * Implement simple by-hash for apt update to improve reliability of + the update. Apt will try to fetch the Packages file via + /by-hash/$hash_type/$hash_value if the repo supports that. + - add APT::Acquire::$(host)::By-Hash=1 knob + - add Acquire-By-Hash=1 to Release file + * add Debug::Acquire::Progress debug option + * [ABI-Break] lp:~mvo/apt/source-hashes: + - use sha{512,256,1} for deb-src when available LP: #1098738 + * [ABI-Break] stop exporting the accidently exported parsenetrc() symbol + * [ABI-Break] remove the PACKAGE_MATCHER_ABI_COMPAT defines + * [ABI BREAK] apt-pkg/pkgcache.h: + - adjust pkgCache::State::VerPriority enum, to match reality + * test/integration/test-debsrc-hashes: + - add integration test, thanks to Daniel Hartwig + * [ABI-Break] remove the PACKAGE_MATCHER_ABI_COMPAT defines + * [ABI-Break] Pass struct IndexTarget/indexRecords to + pkgAcqIndex{,Merge}Diffs + * [internal API-Break] rename pkgCache::Package::NextPackage to + pkgCache::Package::Next + * Calculate Percent as part of pkgAcquireStatus to provide a weighted + percent for both items and bytes + * apt-pkg/contrib/macros.h: bump library version to 4.13 + * apt-private/acqprogress.cc: do not show file size on IMSHit, it wasn't + fetched + * Fix warnings from clang -Wall/clang -fsanitize=address + * add DropPrivs() and drop privileges to nobody when running the + the buildin apt and dump solvers + * lp:~mvo/apt/webserver-simulate-broken-with-fix346386: + - fix invalid InRelease file download checking and add regression + test to server broken files to the buildin test webserver + - add regression test for LP: #34638 + + -- Michael Vogt Thu, 19 Jun 2014 12:01:48 +0200 + + apt (1.0.7) unstable; urgency=medium + + [ Michael Vogt ] + * add REAMDE.md + * StringToBool: only act if the entire string is consumed by strtol() + * Use @builddeps@ in the debian/tests/control file + * apt-pkg/acquire-item.cc: make pkgAcqDiffIndex more uniform + * Fix SmartConfigure to ignore ordering of packages that are already valid + * doc/apt.8.xml: fix typo, thanks to Jakub Wilk (Closes: #756056) + * doc/po/pt.po: updated, thanks to Américo Monteir (Closes: #756200) + + [ victory ] + * Update Japanese documentation translation (Closes: #754817) + + [ Trần Ngọc Quân ] + * l10n: vi.po (636t): Update one new string + + [ Julian Andres Klode ] + * Fix debListParser to accept "no" as a value for the Multi-Arch field + (Closes: #759099) + + [ Mert Dirik ] + * Turkish program translation update (Closes: 756710) + + [ Miroslav Kure ] + * Czech program translation update (Closes: 758208) + + [ David Kalnischkies ] + * add dpkg::source-options for dpkg-source invocation (Closes: 757534) + * support versioned provides as implemented by dpkg (Closes: 758153) + + -- Michael Vogt Wed, 27 Aug 2014 17:11:42 -0700 + apt (1.0.6) unstable; urgency=medium [ Chris Leick ] diff --combined doc/apt.conf.5.xml index 31c8f63dc,df6c77ff0..0f98a6fe9 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@@ -1,15 -1,9 +1,9 @@@ - %aptent; - - - %aptverbatiment; - - - %aptvendor; + %aptent; + %aptverbatiment; + %aptvendor; ]> @@@ -390,9 -384,9 +384,9 @@@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg The setting Acquire::http::Pipeline-Depth can be used to enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e.g. on high-latency connections. It specifies how many requests are sent in a pipeline. - Previous APT versions had a default of 10 for this setting, but the default value - is now 0 (= disabled) to avoid problems with the ever-growing amount of webservers - and proxies which choose to not conform to the HTTP/1.1 specification. + APT tries to detect and workaround misbehaving webservers and proxies at runtime, but + if you know that yours does not conform to the HTTP/1.1 specification pipelining can + be disabled by setting the value to 0. It is enabled by default with the value 10. Acquire::http::AllowRedirect controls whether APT will follow redirects, which is enabled by default. diff --combined doc/po/pl.po index 583e0ee01,b0a6514b9..8adbcfde7 --- a/doc/po/pl.po +++ b/doc/po/pl.po @@@ -11,7 -11,7 +11,7 @@@ msgid " msgstr "" "Project-Id-Version: apt 0.9.7.3\n" "Report-Msgid-Bugs-To: APT Development Team \n" - "POT-Creation-Date: 2014-07-10 10:52+0200\n" + "POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2014-07-04 02:13+0200\n" "Last-Translator: Robert Luberda \n" "Language-Team: Polish \n" @@@ -657,37 -657,37 +657,37 @@@ msgstr " "473041FA --> " #. type: Content of: - #: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 - #: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 - #: apt-config.8.xml:28 + #: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 + #: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 + #: apt-config.8.xml:22 msgid "8" msgstr "8" #. type: Content of: - #: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 - #: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 - #: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 - #: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 - #: apt-ftparchive.1.xml:29 + #: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 + #: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 + #: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 + #: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 + #: apt-ftparchive.1.xml:23 msgid "APT" msgstr "APT" #. type: Content of: - #: apt.8.xml:32 + #: apt.8.xml:28 msgid "command-line interface" msgstr "" #. type: Content of: - #: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 - #: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 - #: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 - #: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 - #: apt-ftparchive.1.xml:40 + #: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 + #: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 + #: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 + #: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 + #: apt-ftparchive.1.xml:34 msgid "Description" msgstr "Opis" #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:38 + #: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@@ -696,7 -696,7 +696,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:47 + #: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@@ -705,7 -705,7 +705,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:58 + #: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." @@@ -713,7 -713,7 +713,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:64 + #: apt.8.xml:60 #, fuzzy #| msgid "" #| "<literal>rdepends</literal> shows a listing of each reverse dependency a " @@@ -726,7 -726,7 +726,7 @@@ msgstr " "danego pakietu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:71 + #: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." @@@ -734,7 -734,7 +734,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:75 apt-get.8.xml:118 + #: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@@ -752,7 -752,7 +752,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:85 apt-get.8.xml:153 + #: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@@ -766,14 -766,14 +766,14 @@@ msgstr " "pakiet zostanie zainstalowany zamiast zostać usunięty." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:93 + #: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:99 + #: apt.8.xml:95 #, fuzzy #| msgid "" #| "<literal>showhold</literal> is used to print a list of packages on hold " @@@ -786,16 -786,16 +786,16 @@@ msgstr " "pakietów wstrzymanych, w taki sam sposób jak pozostałe polecenia \"show\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:105 + #: apt.8.xml:101 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " - "<filename>/etc/apt/sources.list</filename>. New package will be installed, " - "but existing package will never removed." + "<filename>/etc/apt/sources.list</filename>. New packages will be installed, " + "but existing packages will never be removed." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:114 + #: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@@ -803,19 -803,19 +803,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 - #: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 - #: apt-ftparchive.1.xml:506 + #: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 + #: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 + #: apt-ftparchive.1.xml:500 msgid "options" msgstr "opcje" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:134 + #: apt.8.xml:130 msgid "Script usage" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:136 + #: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@@ -825,12 -825,12 +825,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:144 + #: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:145 + #: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@@ -838,28 -838,28 +838,28 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.8.xml:151 + #: apt.8.xml:147 #, fuzzy #| msgid "the <literal>Package:</literal> line" msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "linia <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.8.xml:155 + #: apt.8.xml:151 #, fuzzy #| msgid "the <literal>Component:</literal> line" msgid "The option <literal>APT::Color</literal> is enabled." msgstr "linia <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.8.xml:159 + #: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.8.xml:164 + #: apt.8.xml:160 #, fuzzy #| msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgid "" @@@ -868,17 -868,17 +868,17 @@@ msgstr "linia <literal>Archive:</literal> lub <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 - #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 - #: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 - #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 - #: apt-ftparchive.1.xml:609 + #: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 + #: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 + #: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 + #: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 + #: apt-ftparchive.1.xml:603 msgid "See Also" msgstr "Zobacz także" # #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:175 + #: apt.8.xml:171 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@@ -893,15 -893,15 +893,15 @@@ msgstr " "&apt-preferences;, APT Howto." #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 - #: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 - #: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 + #: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 + #: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 + #: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "Diagnostyka" # #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:181 + #: apt.8.xml:177 #, fuzzy #| msgid "" #| "<command>apt-get</command> returns zero on normal operation, decimal 100 " @@@ -915,12 -915,12 +915,12 @@@ msgstr " # #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-get.8.xml:35 + #: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "Narzędzie zarządzania pakietami APT -- interfejs linii poleceń" #. type: Content of: <refentry><refsect1><para> - #: apt-get.8.xml:41 + #: apt-get.8.xml:35 #, fuzzy #| msgid "" #| "<command>apt-get</command> is the command-line tool for handling " @@@ -940,8 -940,8 +940,8 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 - #: apt-ftparchive.1.xml:56 + #: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 + #: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." @@@ -951,7 -951,7 +951,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:51 + #: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@@ -976,7 -976,7 +976,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:63 + #: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@@ -1002,7 -1002,7 +1002,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:76 + #: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@@ -1028,7 -1028,7 +1028,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:89 + #: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@@ -1046,7 -1046,7 +1046,7 @@@ msgstr " "nowych)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:100 + #: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@@ -1077,7 -1077,7 +1077,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:125 + #: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." @@@ -1087,7 -1087,7 +1087,7 @@@ msgstr " "ostrożnie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:128 + #: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@@ -1108,7 -1108,7 +1108,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:139 + #: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." @@@ -1118,7 -1118,7 +1118,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:143 + #: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@@ -1139,7 -1139,7 +1139,7 @@@ msgstr " "lub \"$\", można też stworzyć bardziej specyficzne wyrażenie regularne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:161 + #: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@@ -1151,7 -1151,7 +1151,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:166 + #: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@@ -1171,7 -1171,7 +1171,7 @@@ msgstr " "wydanie</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:174 + #: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@@ -1187,7 -1187,7 +1187,7 @@@ msgstr " "możliwe pobranie jakiejkolwiek wersji pakietu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:180 + #: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@@ -1203,7 -1203,7 +1203,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:187 + #: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@@ -1218,7 -1218,7 +1218,7 @@@ msgstr " "włączona zostaje opcja <literal>APT::Get::Only-Source</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:193 + #: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@@ -1230,7 -1230,7 +1230,7 @@@ msgstr " "<command>tar</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:199 + #: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@@ -1244,7 -1244,7 +1244,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:206 + #: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." @@@ -1253,7 -1253,7 +1253,7 @@@ msgstr " "bufor (cache) pakietów i szuka zepsutych pakietów." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:211 + #: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." @@@ -1263,7 -1263,7 +1263,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:217 + #: apt-get.8.xml:211 #, fuzzy #| msgid "" #| "<literal>clean</literal> clears out the local repository of retrieved " @@@ -1289,7 -1289,7 +1289,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:224 + #: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@@ -1309,7 -1309,7 +1309,7 @@@ msgstr " "zawierających zainstalowane pakiety." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:234 + #: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@@ -1320,7 -1320,7 +1320,7 @@@ msgstr " "pakietach, i nie są już potrzebne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:239 + #: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@@ -1343,7 -1343,7 +1343,7 @@@ msgstr " "te dla polecenia <option>install</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:262 + #: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." @@@ -1352,7 -1352,7 +1352,7 @@@ msgstr " "Pozycja w pliku konfiguracyjnym: <literal>APT::Install-Recommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:267 + #: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." @@@ -1362,7 -1362,7 +1362,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:272 + #: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." @@@ -1373,7 -1373,7 +1373,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:277 + #: apt-get.8.xml:271 #, fuzzy #| msgid "" #| "Fix; attempt to correct a system with broken dependencies in place. This " @@@ -1414,7 -1414,7 +1414,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:292 + #: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@@ -1434,7 -1434,7 +1434,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:303 + #: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@@ -1446,7 -1446,7 +1446,7 @@@ msgstr " "Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:310 + #: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@@ -1467,7 -1467,7 +1467,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:325 + #: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@@ -1478,7 -1478,7 +1478,7 @@@ msgstr " "Get::Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:329 + #: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@@ -1498,7 -1498,7 +1498,7 @@@ msgstr " "strony <literal>apt-get</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:337 + #: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@@ -1515,7 -1515,7 +1515,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:345 + #: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@@ -1531,7 -1531,7 +1531,7 @@@ msgstr " "Assume-Yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:353 + #: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." @@@ -1541,7 -1541,7 +1541,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:358 + #: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." @@@ -1552,7 -1552,7 +1552,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:364 + #: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." @@@ -1561,7 -1561,7 +1561,7 @@@ msgstr " "konfiguracyjnym: <literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:370 + #: apt-get.8.xml:364 #, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " @@@ -1587,7 -1587,7 +1587,7 @@@ msgstr " "Host-Architecture</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:380 + #: apt-get.8.xml:374 #, fuzzy #| msgid "" #| "This option controls the architecture packages are built for by " @@@ -1613,7 -1613,7 +1613,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:391 + #: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." @@@ -1623,7 -1623,7 +1623,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:396 + #: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@@ -1637,7 -1637,7 +1637,7 @@@ msgstr " "<literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:403 + #: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@@ -1650,7 -1650,7 +1650,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:415 + #: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@@ -1663,7 -1663,7 +1663,7 @@@ msgstr " "<literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:422 + #: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@@ -1677,7 -1677,7 +1677,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:430 + #: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@@ -1694,7 -1694,7 +1694,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:438 + #: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@@ -1717,7 -1717,7 +1717,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:449 + #: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@@ -1732,7 -1732,7 +1732,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:457 + #: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." @@@ -1741,7 -1741,7 +1741,7 @@@ msgstr " "Pozycja w pliku konfiguracyjnym: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:462 + #: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@@ -1759,7 -1759,7 +1759,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:472 + #: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@@ -1783,7 -1783,7 +1783,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:487 + #: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@@ -1798,7 -1798,7 +1798,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:494 + #: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." @@@ -1808,7 -1808,7 +1808,7 @@@ msgstr " "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:500 + #: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@@ -1823,7 -1823,7 +1823,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:507 + #: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@@ -1843,7 -1843,7 +1843,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:518 + #: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@@ -1855,7 -1855,7 +1855,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:524 + #: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." @@@ -1866,7 -1866,7 +1866,7 @@@ msgstr " "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:529 + #: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@@ -1877,7 -1877,7 +1877,7 @@@ msgstr " "w pliku konfiguracyjnym: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:535 + #: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@@ -1887,14 -1887,14 +1887,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 - #: apt.conf.5.xml:1222 apt_preferences.5.xml:700 + #: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 + #: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "Pliki" # #. type: Content of: <refentry><refsect1><para> - #: apt-get.8.xml:559 + #: apt-get.8.xml:553 #, fuzzy #| msgid "" #| "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " @@@ -1911,7 -1911,7 +1911,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-get.8.xml:565 + #: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." @@@ -1920,13 -1920,13 +1920,13 @@@ msgstr " "w przypadku błędu." #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-cache.8.xml:35 + #: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "odpytanie bufora APT" # #. type: Content of: <refentry><refsect1><para> - #: apt-cache.8.xml:41 + #: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@@ -1939,7 -1939,7 +1939,7 @@@ msgstr " "generowania interesującego wyjścia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:51 + #: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." @@@ -1949,15 -1949,15 +1949,15 @@@ msgstr " "istnieje lub jest przestarzały." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> - #: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 - #: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 - #: apt-cache.8.xml:226 apt-cache.8.xml:238 + #: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 + #: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 + #: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "&synopsis-pkg;" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:56 + #: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@@ -1980,7 -1980,7 +1980,7 @@@ msgstr " "poniższego:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> - #: apt-cache.8.xml:68 + #: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@@ -2007,7 -2007,7 +2007,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:80 + #: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@@ -2027,7 -2027,7 +2027,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:89 + #: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" @@@ -2037,7 -2037,7 +2037,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:92 + #: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." @@@ -2047,7 -2047,7 +2047,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:96 + #: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@@ -2060,7 -2060,7 +2060,7 @@@ msgstr " "pakiety jako zależności. Większość pakietów należy do tej kategorii." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:102 + #: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@@ -2077,7 -2077,7 +2077,7 @@@ msgstr " "agenta\", ale żaden pakiet nie nazywa się \"mail-transport-agent\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:110 + #: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@@ -2091,7 -2091,7 +2091,7 @@@ msgstr " "dostarcza \"X11-text-viewer\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:116 + #: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@@ -2106,7 -2106,7 +2106,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:123 + #: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@@ -2122,7 -2122,7 +2122,7 @@@ msgstr " "zależnościach typu \"Conflicts\" lub \"Breaks\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:130 + #: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@@ -2139,7 -2139,7 +2139,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:137 + #: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." @@@ -2148,7 -2148,7 +2148,7 @@@ msgstr " "więzów zależności wymaganych przez wszystkie pakiety w buforze." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:145 + #: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@@ -2161,7 -2161,7 +2161,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:151 + #: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." @@@ -2171,7 -2171,7 +2171,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:156 + #: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." @@@ -2182,7 -2182,7 +2182,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:161 + #: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." @@@ -2192,7 -2192,7 +2192,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:166 + #: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." @@@ -2201,12 -2201,12 +2201,12 @@@ msgstr " "avail</command>; pokazuje szczegółowe informacje o podanych pakietach." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> - #: apt-cache.8.xml:171 + #: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "&synopsis-regex;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:172 + #: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@@ -2229,7 -2229,7 +2229,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:183 + #: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." @@@ -2239,7 -2239,7 +2239,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:188 + #: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." @@@ -2249,7 -2249,7 +2249,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:193 + #: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." @@@ -2258,13 -2258,13 +2258,13 @@@ msgstr " "danego pakietu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-cache.8.xml:197 + #: apt-cache.8.xml:191 msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:198 + #: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@@ -2279,7 -2279,7 +2279,7 @@@ msgstr " "używać z opcją <option>--generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:203 + #: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@@ -2292,7 -2292,7 +2292,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:209 + #: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@@ -2313,7 -2313,7 +2313,7 @@@ msgstr " "Cache::GivenOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:218 + #: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@@ -2328,12 -2328,12 +2328,12 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:223 + #: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "Uwaga: dotty nie potrafi narysować większego zbioru pakietów." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:227 + #: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@@ -2343,13 -2343,13 +2343,13 @@@ msgstr " "ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-cache.8.xml:231 + #: apt-cache.8.xml:225 msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:232 + #: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@@ -2363,7 -2363,7 +2363,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:239 + #: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@@ -2382,7 -2382,7 +2382,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:255 + #: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@@ -2394,7 -2394,7 +2394,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:261 + #: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@@ -2411,7 -2411,7 +2411,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:269 + #: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@@ -2425,7 -2425,7 +2425,7 @@@ msgstr " "pliku konfiguracyjnym: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:276 + #: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@@ -2437,7 -2437,7 +2437,7 @@@ msgstr " "Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:290 + #: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@@ -2453,7 -2453,7 +2453,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:297 + #: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@@ -2462,7 -2462,7 +2462,7 @@@ msgstr " "konfiguracyjnym: <literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:302 + #: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@@ -2481,7 -2481,7 +2481,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:311 + #: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@@ -2494,7 -2494,7 +2494,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:317 + #: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@@ -2504,7 -2504,7 +2504,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:322 + #: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@@ -2517,7 -2517,7 +2517,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:328 + #: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@@ -2530,7 -2530,7 +2530,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:335 + #: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@@ -2542,13 -2542,13 +2542,13 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-cache.8.xml:353 + #: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" # #. type: Content of: <refentry><refsect1><para> - #: apt-cache.8.xml:358 + #: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@@ -2558,12 -2558,12 +2558,12 @@@ msgstr " # #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-key.8.xml:34 + #: apt-key.8.xml:28 msgid "APT key management utility" msgstr "Narzędzie zarządzanie kluczami APT" #. type: Content of: <refentry><refsect1><para> - #: apt-key.8.xml:41 + #: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@@ -2575,12 -2575,12 +2575,12 @@@ msgstr " "zaufane." #. type: Content of: <refentry><refsect1><title> - #: apt-key.8.xml:47 + #: apt-key.8.xml:41 msgid "Commands" msgstr "Polecenia" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:52 + #: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@@ -2591,32 -2591,32 +2591,32 @@@ msgstr " "wejścia, jeśli zamiast nazwy pliku podano <literal>-</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:65 + #: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "Usuwa klucz z listy zaufanych kluczy." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:76 + #: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "Wyświetla klucz &synopsis-param-keyid; na standardowym wyjściu." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:87 + #: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "Wypisuje na standardowe wyjście wszystkie zaufane klucze." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:98 + #: apt-key.8.xml:92 msgid "List trusted keys." msgstr "Wyświetla listę zaufanych kluczy." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:109 + #: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "Wyświetla listę odcisków zaufanych kluczy." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:120 + #: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." @@@ -2625,7 -2625,7 +2625,7 @@@ msgstr " "pobranie klucza publicznego." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:132 + #: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@@ -2639,7 -2639,7 +2639,7 @@@ msgstr " "distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:146 + #: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@@ -2657,12 -2657,12 +2657,12 @@@ msgstr " "command>, ale APT w Ubuntu je obsługuje." #. type: Content of: <refentry><refsect1><title> - #: apt-key.8.xml:162 apt-cdrom.8.xml:82 + #: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "Opcje" #. type: Content of: <refentry><refsect1><para> - #: apt-key.8.xml:163 + #: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." @@@ -2671,7 -2671,7 +2671,7 @@@ msgstr " "opisanymi w poprzednim rozdziale." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:166 + #: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@@ -2688,47 -2688,47 +2688,47 @@@ msgstr " "właśnie tam." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-key.8.xml:181 + #: apt-key.8.xml:175 msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:182 + #: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "Lokalna składnica zaufanych kluczy archiwum." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-key.8.xml:185 + #: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "&keyring-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:186 + #: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "Składnica zaufanych kluczy archiwum &keyring-distro;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-key.8.xml:189 + #: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "&keyring-removed-filename;" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:190 + #: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "Składnica usuniętych zaufanych kluczy archiwum &keyring-distro;." #. type: Content of: <refentry><refsect1><para> - #: apt-key.8.xml:199 + #: apt-key.8.xml:193 msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-mark.8.xml:35 + #: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "Zaznaczanie/odznaczanie pakietu jako zainstalowanego automatycznie." #. type: Content of: <refentry><refsect1><para> - #: apt-mark.8.xml:41 + #: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." @@@ -2737,7 -2737,7 +2737,7 @@@ msgstr " "zainstalowany automatycznie." #. type: Content of: <refentry><refsect1><para> - #: apt-mark.8.xml:45 + #: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@@ -2753,7 -2753,7 +2753,7 @@@ msgstr " "lub <command>aptitude</command>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:54 + #: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@@ -2764,7 -2764,7 +2764,7 @@@ msgstr " "żaden inny ręcznie zainstalowany pakiet nie będzie od niego zależał." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:62 + #: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@@ -2775,7 -2775,7 +2775,7 @@@ msgstr " "sytuacji gdy żaden inny pakiet nie będzie od niego zależał." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:70 + #: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@@ -2790,7 -2790,7 +2790,7 @@@ msgstr " "działanie tego polecenia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:80 + #: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." @@@ -2800,7 -2800,7 +2800,7 @@@ msgstr " "na tym pakiecie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:86 + #: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@@ -2814,7 -2814,7 +2814,7 @@@ msgstr " "to zostaną wypisane tylko te z nich, które są automatycznie zainstalowane." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:94 + #: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@@ -2825,7 -2825,7 +2825,7 @@@ msgstr " "zainstalowanych pakietów." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:101 + #: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." @@@ -2834,7 -2834,7 +2834,7 @@@ msgstr " "pakietów wstrzymanych, w taki sam sposób jak pozostałe polecenia \"show\"." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:117 + #: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@@ -2848,7 -2848,7 +2848,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-mark.8.xml:138 + #: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." @@@ -2857,12 -2857,12 +2857,12 @@@ msgstr " "wartość niezerową - w przypadku błędu." #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-secure.8.xml:49 + #: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "Wsparcie APT dla autentykacji archiwum." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:54 + #: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@@ -2875,7 -2875,7 +2875,7 @@@ msgstr " "używanego do podpisywania plików \"Release\"." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:62 + #: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@@ -2891,7 -2891,7 +2891,7 @@@ msgstr " "zweryfikowane, zanim w ogóle APT spróbuje z nich pobrać pakiety." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:71 + #: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." @@@ -2900,12 -2900,12 +2900,12 @@@ msgstr " "sposób autoryzacji pakietów." #. type: Content of: <refentry><refsect1><title> - #: apt-secure.8.xml:76 + #: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "Zaufane archiwa" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:79 + #: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@@ -2921,7 -2921,7 +2921,7 @@@ msgstr " "opiekuna archiwum jest zapewnienie poprawności integralności archiwum." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:87 + #: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@@ -2934,7 -2934,7 +2934,7 @@@ msgstr " "verify i devscripts)." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:94 + #: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@@ -2951,7 -2951,7 +2951,7 @@@ msgstr " "odpowiednie procedury używane w Debianie do identyfikacji posiadacza klucza." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:104 + #: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@@ -2973,7 -2973,7 +2973,7 @@@ msgstr " "&keyring-package;." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:115 + #: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@@ -2984,7 -2984,7 +2984,7 @@@ msgstr " "pakietu. Mogą też polegać na tym, że APT zrobi to automatycznie." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:120 + #: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" @@@ -2994,7 -2994,7 +2994,7 @@@ msgstr " "dwoma możliwymi typami ataków:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:125 + #: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@@ -3011,7 -3011,7 +3011,7 @@@ msgstr " "\"ARP (DNS) spoofing\")." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:133 + #: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@@ -3025,7 -3025,7 +3025,7 @@@ msgstr " "pobierającym pakiety z tego serwera." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:140 + #: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@@ -3038,12 -3038,12 +3038,12 @@@ msgstr " "dla sprawdzania sygnatur poszczególnych pakietów." #. type: Content of: <refentry><refsect1><title> - #: apt-secure.8.xml:146 + #: apt-secure.8.xml:140 msgid "User configuration" msgstr "Konfiguracja użytkownika" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:148 + #: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@@ -3057,7 -3057,7 +3057,7 @@@ msgstr " "Debiana." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:155 + #: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@@ -3073,19 -3073,19 +3073,19 @@@ msgstr " "<filename>Release.gpg</filename> ze skonfigurowanych archiwów." #. type: Content of: <refentry><refsect1><title> - #: apt-secure.8.xml:164 + #: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "Konfiguracja archiwum" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:166 + #: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "Aby dołączyć sygnatury do archiwum, którym się opiekujesz, należy:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:171 + #: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@@ -3096,7 -3096,7 +3096,7 @@@ msgstr " "release</command> (dostarczanego w pakiecie apt-utils)." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:176 + #: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@@ -3107,7 -3107,7 +3107,7 @@@ msgstr " "o Release.gpg Release</command>." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:180 + #: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@@ -3118,7 -3118,7 +3118,7 @@@ msgstr " "autoryzować plików w archiwum." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:187 + #: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@@ -3128,7 -3128,7 +3128,7 @@@ msgstr " "opiekun archiwum musi wykonać pierwsze dwa z wymienionych powyżej kroków." #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:195 + #: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" @@@ -3137,7 -3137,7 +3137,7 @@@ msgstr " "&debsign;, &debsig-verify;, &gpg;" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:199 + #: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@@ -3153,12 -3153,12 +3153,12 @@@ msgstr " "Distribution HOWTO</ulink>\" napisanym przez V. Alexa Brennena." #. type: Content of: <refentry><refsect1><title> - #: apt-secure.8.xml:212 + #: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "Autorzy strony podręcznika" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:214 + #: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." @@@ -3169,13 -3169,13 +3169,13 @@@ msgstr " # #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-cdrom.8.xml:34 + #: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "Narzędzie APT do zarządzania źródłami typu CD-ROM" # #. type: Content of: <refentry><refsect1><para> - #: apt-cdrom.8.xml:40 + #: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@@ -3189,7 -3189,7 +3189,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-cdrom.8.xml:47 + #: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@@ -3200,7 -3200,7 +3200,7 @@@ msgstr " "w wielodyskowym archiwum musi być włożony i zeskanowany oddzielnie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:58 + #: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@@ -3216,7 -3216,7 +3216,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:66 + #: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@@ -3228,7 -3228,7 +3228,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:74 + #: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" @@@ -3238,7 -3238,7 +3238,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:87 + #: apt-cdrom.8.xml:81 #, fuzzy #| msgid "" #| "Mount point; specify the location to mount the CD-ROM. This mount point " @@@ -3256,7 -3256,7 +3256,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:95 + #: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@@ -3269,7 -3269,7 +3269,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:104 + #: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@@ -3282,7 -3282,7 +3282,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:113 + #: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@@ -3294,7 -3294,7 +3294,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:121 + #: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@@ -3309,7 -3309,7 +3309,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:131 + #: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@@ -3322,7 -3322,7 +3322,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:142 + #: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@@ -3334,13 -3334,13 +3334,13 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-cdrom.8.xml:155 + #: apt-cdrom.8.xml:149 msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-conf;, &apt-get;, &sources-list;" # #. type: Content of: <refentry><refsect1><para> - #: apt-cdrom.8.xml:160 + #: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." @@@ -3349,12 -3349,12 +3349,12 @@@ msgstr " "- w przypadku błędu." #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-config.8.xml:35 + #: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "Program odpytywania konfiguracji APT" #. type: Content of: <refentry><refsect1><para> - #: apt-config.8.xml:41 + #: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@@ -3367,7 -3367,7 +3367,7 @@@ msgstr " "filename> w sposób łatwy do użycia w programach skryptowych." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:53 + #: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@@ -3382,7 -3382,7 +3382,7 @@@ msgstr " "Przykład użycia w skrypcie powłoki:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> - #: apt-config.8.xml:61 + #: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@@ -3394,7 -3394,7 +3394,7 @@@ msgstr " "eval $RES\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:66 + #: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." @@@ -3403,7 -3403,7 +3403,7 @@@ msgstr " "zmiennej MojaAplikacja::opcje, z domyślną wartością <option>-f</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:70 + #: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@@ -3414,12 -3414,12 +3414,12 @@@ msgstr " "jest ujednolicana i weryfikowana." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:79 + #: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "Wyświetla zawartość przestrzeni konfiguracji." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:92 + #: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." @@@ -3428,12 -3428,12 +3428,12 @@@ msgstr " "użyć <literal>--no-empty</literal>, aby usunąć takie opcje z wyjścia." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> - #: apt-config.8.xml:97 + #: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "%f "%v";%n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:98 + #: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@@ -3452,14 -3452,14 +3452,14 @@@ msgstr " "używając %%." #. type: Content of: <refentry><refsect1><para> - #: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 - #: apt-ftparchive.1.xml:610 + #: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 + #: apt-ftparchive.1.xml:604 msgid "&apt-conf;" msgstr "&apt-conf;" # #. type: Content of: <refentry><refsect1><para> - #: apt-config.8.xml:117 + #: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." @@@ -3468,27 -3468,27 +3468,27 @@@ msgstr " "- w przypadku błędu." #. type: Content of: <refentry><refentryinfo><author><contrib> - #: apt.conf.5.xml:22 + #: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "Wstępna dokumentacja hierarchii Debug::*." #. type: Content of: <refentry><refentryinfo><author><email> - #: apt.conf.5.xml:23 + #: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "dburrows@debian.org" #. type: Content of: <refentry><refmeta><manvolnum> - #: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 + #: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt.conf.5.xml:40 + #: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "Plik konfiguracyjny dla APT" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:44 + #: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@@ -3502,7 -3502,7 +3502,7 @@@ msgstr " "jednolite środowisko pracy." #. type: Content of: <refentry><refsect1><orderedlist><para> - #: apt.conf.5.xml:50 + #: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" @@@ -3511,7 -3511,7 +3511,7 @@@ msgstr " "następującym porządku:" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> - #: apt.conf.5.xml:52 + #: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" @@@ -3520,7 -3520,7 +3520,7 @@@ msgstr " "ustawiona)." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> - #: apt.conf.5.xml:54 + #: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@@ -3540,14 -3540,14 +3540,14 @@@ msgstr " "żadnych informacji." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> - #: apt.conf.5.xml:61 + #: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" "główny plik konfiguracyjny określony przez <literal>Dir::Etc::main</literal>." #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> - #: apt.conf.5.xml:63 + #: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." @@@ -3556,12 -3556,12 +3556,12 @@@ msgstr " "załadowania kolejnych plików konfiguracyjnych." #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:67 + #: apt.conf.5.xml:61 msgid "Syntax" msgstr "Składnia" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:68 + #: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@@ -3576,7 -3576,7 +3576,7 @@@ msgstr " "dziedziczą ustawień od swoich przodków." #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:74 + #: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@@ -3591,7 -3591,7 +3591,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> - #: apt.conf.5.xml:87 + #: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@@ -3609,7 -3609,7 +3609,7 @@@ msgstr " "};\n" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:95 + #: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@@ -3617,27 -3617,27 +3617,27 @@@ msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> - #: apt.conf.5.xml:100 + #: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:103 + #: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:106 + #: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:109 + #: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@@ -3647,7 -3647,7 +3647,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:114 + #: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@@ -3659,7 -3659,7 +3659,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:124 + #: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@@ -3669,7 -3669,7 +3669,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:132 + #: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@@ -3681,7 -3681,7 +3681,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:140 + #: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@@ -3698,19 -3698,19 +3698,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:155 + #: apt.conf.5.xml:149 msgid "The APT Group" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:156 + #: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:161 + #: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@@ -3718,7 -3718,7 +3718,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:168 + #: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@@ -3731,7 -3731,7 +3731,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:182 + #: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@@ -3740,7 -3740,7 +3740,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:190 + #: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@@ -3749,14 -3749,14 +3749,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:196 + #: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:201 + #: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@@ -3765,7 -3765,7 +3765,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:209 + #: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@@ -3780,7 -3780,7 +3780,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:221 + #: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@@ -3797,7 -3797,7 +3797,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:234 + #: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@@ -3808,7 -3808,7 +3808,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:245 + #: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@@ -3821,7 -3821,7 +3821,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:257 + #: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@@ -3841,38 -3841,38 +3841,38 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:273 + #: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:277 + #: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:282 + #: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:287 + #: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:293 + #: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:294 + #: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@@ -3880,7 -3880,7 +3880,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:301 + #: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@@ -3893,7 -3893,7 +3893,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:314 + #: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@@ -3905,7 -3905,7 +3905,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:326 + #: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@@ -3917,7 -3917,7 +3917,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:338 + #: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@@ -3925,7 -3925,7 +3925,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:341 + #: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@@ -3936,7 -3936,7 +3936,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:351 + #: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@@ -3946,21 -3946,21 +3946,21 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:359 + #: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:364 + #: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:369 + #: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@@ -3972,7 -3972,7 +3972,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:377 + #: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@@ -3984,33 -3984,33 +3984,33 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:387 apt.conf.5.xml:475 + #: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:390 + #: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:397 + #: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:400 + #: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@@ -4020,7 -4020,7 +4020,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:407 + #: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@@ -4028,7 -4028,7 +4028,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:411 + #: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@@ -4042,7 -4042,7 +4042,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:429 + #: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@@ -4053,7 -4053,7 +4053,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:437 + #: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@@ -4075,7 -4075,7 +4075,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:458 + #: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@@ -4094,7 -4094,7 +4094,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:478 + #: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@@ -4104,7 -4104,7 +4104,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:485 + #: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@@ -4113,7 -4113,7 +4113,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:490 + #: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@@ -4123,13 -4123,13 +4123,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> - #: apt.conf.5.xml:504 + #: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:499 + #: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@@ -4142,20 -4142,20 +4142,20 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:512 + #: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> - #: apt.conf.5.xml:523 + #: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:518 + #: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@@ -4167,19 -4167,19 +4167,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> - #: apt.conf.5.xml:528 + #: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> - #: apt.conf.5.xml:531 + #: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:524 + #: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@@ -4197,13 -4197,13 +4197,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> - #: apt.conf.5.xml:538 + #: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:533 + #: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@@ -4218,7 -4218,7 +4218,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:543 + #: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@@ -4226,7 -4226,7 +4226,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:550 + #: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@@ -4235,7 -4235,7 +4235,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:558 + #: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@@ -4247,13 -4247,13 +4247,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> - #: apt.conf.5.xml:575 + #: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:563 + #: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@@ -4275,7 -4275,7 +4275,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:576 + #: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@@ -4284,22 -4284,22 +4284,22 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:585 + #: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:591 + #: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:598 + #: apt.conf.5.xml:592 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:600 + #: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -4311,7 -4311,7 +4311,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:607 + #: apt.conf.5.xml:601 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -4325,7 -4325,7 +4325,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:617 + #: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -4335,7 -4335,7 +4335,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:623 + #: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -4343,7 -4343,7 +4343,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:627 + #: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -4354,7 -4354,7 +4354,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:635 + #: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -4367,7 -4367,7 +4367,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:648 + #: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -4378,12 -4378,12 +4378,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:657 + #: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:659 + #: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -4391,7 -4391,7 +4391,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:664 + #: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -4404,40 -4404,40 +4404,40 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:678 + #: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:683 + #: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:688 + #: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:694 + #: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:695 + #: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:700 + #: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -4445,7 -4445,7 +4445,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:706 + #: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4454,7 -4454,7 +4454,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:713 + #: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -4465,7 -4465,7 +4465,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:720 + #: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -4474,7 -4474,7 +4474,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:725 + #: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@@ -4485,7 -4485,7 +4485,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:732 + #: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@@ -4496,26 -4496,26 +4496,26 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:742 + #: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:747 + #: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt.conf.5.xml:752 + #: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt.conf.5.xml:753 + #: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -4530,7 -4530,7 +4530,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> - #: apt.conf.5.xml:768 + #: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -4544,7 -4544,7 +4544,7 @@@ msgstr " "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt.conf.5.xml:762 + #: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -4558,7 -4558,7 +4558,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:775 + #: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -4571,7 -4571,7 +4571,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:783 + #: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -4588,7 -4588,7 +4588,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:798 + #: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -4599,7 -4599,7 +4599,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:805 + #: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -4609,7 -4609,7 +4609,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> - #: apt.conf.5.xml:818 + #: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -4627,7 -4627,7 +4627,7 @@@ msgstr " "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:811 + #: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -4641,12 -4641,12 +4641,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:831 + #: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:832 + #: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -4655,13 -4655,13 +4655,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:840 + #: apt.conf.5.xml:834 #, fuzzy msgid "Debug options" msgstr "opcje" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:842 + #: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -4672,7 -4672,7 +4672,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.conf.5.xml:853 + #: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -4680,7 -4680,7 +4680,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.conf.5.xml:861 + #: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -4688,7 -4688,7 +4688,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.conf.5.xml:870 + #: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -4698,7 -4698,7 +4698,7 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.conf.5.xml:878 + #: apt.conf.5.xml:872 #, fuzzy msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " @@@ -4708,59 -4708,59 +4708,59 @@@ msgstr " "in CDROM IDs." #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:888 + #: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:897 + #: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:908 + #: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:919 + #: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:930 + #: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:941 + #: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:952 + #: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:962 + #: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:972 + #: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:982 + #: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -4768,53 -4768,53 +4768,53 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:993 + #: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1005 + #: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1015 + #: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1025 + #: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1037 + #: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1048 + #: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1059 + #: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1069 + #: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -4824,7 -4824,7 +4824,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1083 + #: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -4842,46 -4842,46 +4842,46 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1104 + #: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1115 + #: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1126 + #: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1138 + #: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1149 + #: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1159 + #: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1170 + #: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -4889,14 -4889,14 +4889,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1182 + #: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1192 + #: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@@ -4904,13 -4904,13 +4904,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 - #: apt-ftparchive.1.xml:598 + #: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 + #: apt-ftparchive.1.xml:592 msgid "Examples" msgstr "Przykłady" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:1217 + #: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -4918,17 -4918,17 +4918,17 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:1229 + #: apt.conf.5.xml:1223 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt_preferences.5.xml:34 + #: apt_preferences.5.xml:28 msgid "Preference control file for APT" msgstr "Plik kontrolny preferencji APT" #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:39 + #: apt_preferences.5.xml:33 msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " "fragment files in the <filename>/etc/apt/preferences.d/</filename> folder " @@@ -4940,7 -4940,7 +4940,7 @@@ msgstr " "do określania wersji pakietów wybieranych do instalacji." #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:44 + #: apt_preferences.5.xml:38 msgid "" "Several versions of a package may be available for installation when the " "&sources-list; file contains references to more than one distribution (for " @@@ -4962,7 -4962,7 +4962,7 @@@ msgstr " "zainstalowania." #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:54 + #: apt_preferences.5.xml:48 msgid "" "Several instances of the same version of a package may be available when the " "&sources-list; file contains references to more than one source. In this " @@@ -4977,7 -4977,7 +4977,7 @@@ msgstr " "wybór instancji, ale na wybór wersji." #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:61 + #: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@@ -5002,7 -5002,7 +5002,7 @@@ msgstr " "oczekiwało. Ostrzegamy!" #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:72 + #: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@@ -5025,24 -5025,24 +5025,24 @@@ msgstr " "komunikat." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:81 + #: apt_preferences.5.xml:75 msgid "APT's Default Priority Assignments" msgstr "Domyślne przypisania priorytetów APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:96 + #: apt_preferences.5.xml:90 #, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "<command>apt-get install -t testing <replaceable>jakiś-pakiet</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:99 + #: apt_preferences.5.xml:93 #, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:83 + #: apt_preferences.5.xml:77 msgid "" "If there is no preferences file or if there is no entry in the file that " "applies to a particular version then the priority assigned to that version " @@@ -5070,7 -5070,7 +5070,7 @@@ msgstr " "\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:103 + #: apt_preferences.5.xml:97 msgid "" "If the target release has been specified then APT uses the following " "algorithm to set the priorities of the versions of a package. Assign:" @@@ -5079,12 -5079,12 +5079,12 @@@ msgstr " "do ustawiania priorytetów wersjom pakietu. Przypisuje:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:108 + #: apt_preferences.5.xml:102 msgid "priority 1" msgstr "priorytet 1" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:109 + #: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@@ -5097,12 -5097,12 +5097,12 @@@ msgstr " "<literal>experimental</literal> Debiana." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:115 + #: apt_preferences.5.xml:109 msgid "priority 100" msgstr "priorytet 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:116 + #: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@@ -5116,30 -5116,30 +5116,30 @@@ msgstr " "literal>." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:123 + #: apt_preferences.5.xml:117 msgid "priority 500" msgstr "priorytet 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:124 + #: apt_preferences.5.xml:118 msgid "" "to the versions that are not installed and do not belong to the target " "release." msgstr "wersjom niezainstalowanym i nienależącym do wydania docelowego." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:128 + #: apt_preferences.5.xml:122 msgid "priority 990" msgstr "priorytet 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:129 + #: apt_preferences.5.xml:123 msgid "" "to the versions that are not installed and belong to the target release." msgstr "wersjom niezainstalowanym i należącym do wydania docelowego." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:134 + #: apt_preferences.5.xml:128 msgid "" "If the target release has not been specified then APT simply assigns " "priority 100 to all installed package versions and priority 500 to all " @@@ -5156,7 -5156,7 +5156,7 @@@ msgstr " "100, jeśli dodatkowo są oznaczone jako \"ButAutomaticUpgrades: yes\"." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:141 + #: apt_preferences.5.xml:135 msgid "" "APT then applies the following rules, listed in order of precedence, to " "determine which version of a package to install." @@@ -5165,7 -5165,7 +5165,7 @@@ msgstr " "następujące reguły wymienione w kolejności, w jakiej są stosowane." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:144 + #: apt_preferences.5.xml:138 msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " "(\"Downgrading\" is installing a less recent version of a package in place " @@@ -5180,12 -5180,12 +5180,12 @@@ msgstr " "Instalowanie wcześniejszych wersji pakietów może być ryzykowną operacją)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:150 + #: apt_preferences.5.xml:144 msgid "Install the highest priority version." msgstr "Instaluje wersję o najwyższym priorytecie." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:151 + #: apt_preferences.5.xml:145 msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." @@@ -5194,7 -5194,7 +5194,7 @@@ msgstr " "wersja nowsza (czyli z większym numerem wersji)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:154 + #: apt_preferences.5.xml:148 msgid "" "If two or more versions have the same priority and version number but either " "the packages differ in some of their metadata or the <literal>--reinstall</" @@@ -5206,7 -5206,7 +5206,7 @@@ msgstr " "niezainstalowany." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:160 + #: apt_preferences.5.xml:154 msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " @@@ -5221,7 -5221,7 +5221,7 @@@ msgstr " "upgrade</command> zaktualizują ten pakiet." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:167 + #: apt_preferences.5.xml:161 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " @@@ -5235,7 -5235,7 +5235,7 @@@ msgstr " "wersją." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:172 + #: apt_preferences.5.xml:166 msgid "" "Sometimes the installed version of a package is more recent than the version " "belonging to the target release, but not as recent as a version belonging to " @@@ -5253,12 -5253,12 +5253,12 @@@ msgstr " "wersji ma większy priorytet niż wersja zainstalowana." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:181 + #: apt_preferences.5.xml:175 msgid "The Effect of APT Preferences" msgstr "Efekt stosowania preferencji APT" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:183 + #: apt_preferences.5.xml:177 msgid "" "The APT preferences file allows the system administrator to control the " "assignment of priorities. The file consists of one or more multi-line " @@@ -5271,7 -5271,7 +5271,7 @@@ msgstr " "przyjmować jedną z dwóch postaci: szczegółową i ogólną." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:189 + #: apt_preferences.5.xml:183 msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " "specified packages with a specified version or version range. For example, " @@@ -5288,7 -5288,7 +5288,7 @@@ msgstr " "rozdzielając je od siebie spacjami." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:196 + #: apt_preferences.5.xml:190 #, no-wrap msgid "" "Package: perl\n" @@@ -5300,7 -5300,7 +5300,7 @@@ msgstr " "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:202 + #: apt_preferences.5.xml:196 msgid "" "The general form assigns a priority to all of the package versions in a " "given distribution (that is, to all the versions of packages that are listed " @@@ -5314,7 -5314,7 +5314,7 @@@ msgstr " "strony internetowej identyfikowanej przez pełną nazwę domenową strony." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:208 + #: apt_preferences.5.xml:202 msgid "" "This general-form entry in the APT preferences file applies only to groups " "of packages. For example, the following record assigns a high priority to " @@@ -5325,7 -5325,7 +5325,7 @@@ msgstr " "wszystkim wersjom pakietów dostępnych na lokalnym komputerze." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:213 + #: apt_preferences.5.xml:207 #, no-wrap msgid "" "Package: *\n" @@@ -5337,7 -5337,7 +5337,7 @@@ msgstr " "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:218 + #: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@@ -5350,7 -5350,7 +5350,7 @@@ msgstr " "identyfikowanym przez nazwę komputera \"ftp.de.debian.org\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:222 + #: apt_preferences.5.xml:216 #, no-wrap msgid "" "Package: *\n" @@@ -5362,7 -5362,7 +5362,7 @@@ msgstr " "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:226 + #: apt_preferences.5.xml:220 msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " "distribution as specified in a <filename>Release</filename> file. What " @@@ -5377,7 -5377,7 +5377,7 @@@ msgstr " "lub \"Ximian\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:231 + #: apt_preferences.5.xml:225 msgid "" "The following record assigns a low priority to all package versions " "belonging to any distribution whose Archive name is \"<literal>unstable</" @@@ -5388,7 -5388,7 +5388,7 @@@ msgstr " "\"<literal>unstable</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:235 + #: apt_preferences.5.xml:229 #, no-wrap msgid "" "Package: *\n" @@@ -5400,7 -5400,7 +5400,7 @@@ msgstr " "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:240 + #: apt_preferences.5.xml:234 msgid "" "The following record assigns a high priority to all package versions " "belonging to any distribution whose Codename is \"<literal>&testing-codename;" @@@ -5411,7 -5411,7 +5411,7 @@@ msgstr " "\"<literal>&testing-codename;</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:244 + #: apt_preferences.5.xml:238 #, no-wrap msgid "" "Package: *\n" @@@ -5423,7 -5423,7 +5423,7 @@@ msgstr " "Pin-Priority: 900\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:249 + #: apt_preferences.5.xml:243 msgid "" "The following record assigns a high priority to all package versions " "belonging to any release whose Archive name is \"<literal>stable</literal>\" " @@@ -5436,7 -5436,7 +5436,7 @@@ msgstr " "\"<literal>&stable-version;</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:254 + #: apt_preferences.5.xml:248 #, no-wrap msgid "" "Package: *\n" @@@ -5448,12 -5448,12 +5448,12 @@@ msgstr " "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:264 + #: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "Składnia wyrażeń regularnych i &glob;" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:266 + #: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@@ -5469,7 -5469,7 +5469,7 @@@ msgstr " "POSIX otoczone ukośnikami)." #. type: Content of: <refentry><refsect1><refsect2><programlisting> - #: apt_preferences.5.xml:275 + #: apt_preferences.5.xml:269 #, no-wrap msgid "" "Package: gnome* /kde/\n" @@@ -5481,7 -5481,7 +5481,7 @@@ msgstr " "Pin-Priority: 500\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:281 + #: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@@ -5492,7 -5492,7 +5492,7 @@@ msgstr " "pakietom z wydania o nazwie zaczynającej się od &ubuntu-codename;." #. type: Content of: <refentry><refsect1><refsect2><programlisting> - #: apt_preferences.5.xml:287 + #: apt_preferences.5.xml:281 #, no-wrap msgid "" "Package: *\n" @@@ -5504,7 -5504,7 +5504,7 @@@ msgstr " "Pin-Priority: 990\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:293 + #: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@@ -5523,12 -5523,12 +5523,12 @@@ msgstr " "<literal>Package</literal> nie jest uznawany za wyrażenie &glob;." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:309 + #: apt_preferences.5.xml:303 msgid "How APT Interprets Priorities" msgstr "Jak APT interpretuje priorytety" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:312 + #: apt_preferences.5.xml:306 msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " "negative integers. They are interpreted as follows (roughly speaking):" @@@ -5538,12 -5538,12 +5538,12 @@@ msgstr " "rzecz biorąc):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:317 + #: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:318 + #: apt_preferences.5.xml:312 msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" @@@ -5552,12 -5552,12 +5552,12 @@@ msgstr " "zastąpienie pakietu jego wcześniejszą wersją." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:322 + #: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:323 + #: apt_preferences.5.xml:317 msgid "" "causes a version to be installed even if it does not come from the target " "release, unless the installed version is more recent" @@@ -5566,12 -5566,12 +5566,12 @@@ msgstr " "wydania docelowego, chyba że zainstalowana wersja jest nowsza." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:328 + #: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:329 + #: apt_preferences.5.xml:323 msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" @@@ -5581,12 -5581,12 +5581,12 @@@ msgstr " "zainstalowana." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:334 + #: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:335 + #: apt_preferences.5.xml:329 msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" @@@ -5595,12 -5595,12 +5595,12 @@@ msgstr " "należąca do innej dystrybucji lub nowsza wersja jest zainstalowana" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:340 + #: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:341 + #: apt_preferences.5.xml:335 msgid "" "causes a version to be installed only if there is no installed version of " "the package" @@@ -5609,17 -5609,17 +5609,17 @@@ msgstr " "pakietu nie jest jeszcze zainstalowana" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:345 + #: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:346 + #: apt_preferences.5.xml:340 msgid "prevents the version from being installed" msgstr "zapobiega instalowaniu wersji" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:351 + #: apt_preferences.5.xml:345 msgid "" "If any specific-form records match an available package version then the " "first such record determines the priority of the package version. Failing " @@@ -5633,7 -5633,7 +5633,7 @@@ msgstr " "określany na podstawie pierwszego z takich rekordów." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:357 + #: apt_preferences.5.xml:351 msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" @@@ -5642,7 -5642,7 +5642,7 @@@ msgstr " "wcześniej rekordy:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> - #: apt_preferences.5.xml:361 + #: apt_preferences.5.xml:355 #, no-wrap msgid "" "Package: perl\n" @@@ -5670,12 -5670,12 +5670,12 @@@ msgstr " "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:374 + #: apt_preferences.5.xml:368 msgid "Then:" msgstr "Wtedy:" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:376 + #: apt_preferences.5.xml:370 msgid "" "The most recent available version of the <literal>perl</literal> package " "will be installed, so long as that version's version number begins with " @@@ -5691,7 -5691,7 +5691,7 @@@ msgstr " "&good-perl;*." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:381 + #: apt_preferences.5.xml:375 msgid "" "A version of any package other than <literal>perl</literal> that is " "available from the local system has priority over other versions, even " @@@ -5702,7 -5702,7 +5702,7 @@@ msgstr " "pakietu, włączając w to wersję należącą do wydania docelowego." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:385 + #: apt_preferences.5.xml:379 msgid "" "A version of a package whose origin is not the local system but some other " "site listed in &sources-list; and which belongs to an <literal>unstable</" @@@ -5716,12 -5716,12 +5716,12 @@@ msgstr " "nie jest jeszcze zainstalowana." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:395 + #: apt_preferences.5.xml:389 msgid "Determination of Package Version and Distribution Properties" msgstr "Określanie wersji pakietu i właściwości dystrybucji" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:397 + #: apt_preferences.5.xml:391 msgid "" "The locations listed in the &sources-list; file should provide " "<filename>Packages</filename> and <filename>Release</filename> files to " @@@ -5732,7 -5732,7 +5732,7 @@@ msgstr " "pakiety dostępne w danej lokalizacji." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:401 + #: apt_preferences.5.xml:395 msgid "" "The <filename>Packages</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable>/" @@@ -5751,27 -5751,27 +5751,27 @@@ msgstr " "priorytetów APT bierze pod uwagę tylko dwie linie z każdego rekordu:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:409 + #: apt_preferences.5.xml:403 msgid "the <literal>Package:</literal> line" msgstr "linia <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:410 + #: apt_preferences.5.xml:404 msgid "gives the package name" msgstr "podaje nazwę pakietu" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:413 apt_preferences.5.xml:463 + #: apt_preferences.5.xml:407 apt_preferences.5.xml:457 msgid "the <literal>Version:</literal> line" msgstr "linia <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:414 + #: apt_preferences.5.xml:408 msgid "gives the version number for the named package" msgstr "podaje numer wersji danego pakietu" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:419 + #: apt_preferences.5.xml:413 msgid "" "The <filename>Release</filename> file is normally found in the directory " "<filename>.../dists/<replaceable>dist-name</replaceable></filename>: for " @@@ -5794,12 -5794,12 +5794,12 @@@ msgstr " "priorytetów APT:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:430 + #: apt_preferences.5.xml:424 msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "linia <literal>Archive:</literal> lub <literal>Suite:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:431 + #: apt_preferences.5.xml:425 msgid "" "names the archive to which all the packages in the directory tree belong. " "For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " @@@ -5816,18 -5816,18 +5816,18 @@@ msgstr " "następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:441 + #: apt_preferences.5.xml:435 #, no-wrap msgid "Pin: release a=stable\n" msgstr "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:447 + #: apt_preferences.5.xml:441 msgid "the <literal>Codename:</literal> line" msgstr "linia <literal>Codename:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:448 + #: apt_preferences.5.xml:442 msgid "" "names the codename to which all the packages in the directory tree belong. " "For example, the line \"Codename: &testing-codename;\" specifies that all of " @@@ -5844,13 -5844,13 +5844,13 @@@ msgstr " "następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:457 + #: apt_preferences.5.xml:451 #, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "Pin: release n=&testing-codename;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:464 + #: apt_preferences.5.xml:458 msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian release version &stable-version;. Note that there is " @@@ -5867,7 -5867,7 +5867,7 @@@ msgstr " "sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:473 + #: apt_preferences.5.xml:467 #, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@@ -5879,12 -5879,12 +5879,12 @@@ msgstr " "Pin: release &stable-version;\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:482 + #: apt_preferences.5.xml:476 msgid "the <literal>Component:</literal> line" msgstr "linia <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:483 + #: apt_preferences.5.xml:477 msgid "" "names the licensing component associated with the packages in the directory " "tree of the <filename>Release</filename> file. For example, the line " @@@ -5902,18 -5902,18 +5902,18 @@@ msgstr " "następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:492 + #: apt_preferences.5.xml:486 #, no-wrap msgid "Pin: release c=main\n" msgstr "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:498 + #: apt_preferences.5.xml:492 msgid "the <literal>Origin:</literal> line" msgstr "linia <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:499 + #: apt_preferences.5.xml:493 msgid "" "names the originator of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@@ -5925,18 -5925,18 +5925,18 @@@ msgstr " "można podać w pliku preferencji APT w następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:505 + #: apt_preferences.5.xml:499 #, no-wrap msgid "Pin: release o=Debian\n" msgstr "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:511 + #: apt_preferences.5.xml:505 msgid "the <literal>Label:</literal> line" msgstr "linia <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:512 + #: apt_preferences.5.xml:506 msgid "" "names the label of the packages in the directory tree of the " "<filename>Release</filename> file. Most commonly, this is <literal>Debian</" @@@ -5948,13 -5948,13 +5948,13 @@@ msgstr " "podać w pliku preferencji APT w następujący sposób:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:518 + #: apt_preferences.5.xml:512 #, no-wrap msgid "Pin: release l=Debian\n" msgstr "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:525 + #: apt_preferences.5.xml:519 msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " "files retrieved from locations listed in the &sources-list; file are stored " @@@ -5979,12 -5979,12 +5979,12 @@@ msgstr " "dystrybucji <literal>unstable</literal> ." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:538 + #: apt_preferences.5.xml:532 msgid "Optional Lines in an APT Preferences Record" msgstr "Opcjonalne linie w rekordzie preferencji APT" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:540 + #: apt_preferences.5.xml:534 msgid "" "Each record in the APT preferences file can optionally begin with one or " "more lines beginning with the word <literal>Explanation:</literal>. This " @@@ -5995,12 -5995,12 +5995,12 @@@ msgstr " "literal> (tj. objaśnienie). Pozwala to na dodawanie komentarzy do rekordów." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:549 + #: apt_preferences.5.xml:543 msgid "Tracking Stable" msgstr "Śledzenie dystrybucji stabilnej" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:557 + #: apt_preferences.5.xml:551 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@@ -6024,7 -6024,7 +6024,7 @@@ msgstr " "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:551 + #: apt_preferences.5.xml:545 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@@ -6039,8 -6039,8 +6039,8 @@@ msgstr " "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:574 apt_preferences.5.xml:620 - #: apt_preferences.5.xml:678 + #: apt_preferences.5.xml:568 apt_preferences.5.xml:614 + #: apt_preferences.5.xml:672 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@@ -6052,7 -6052,7 +6052,7 @@@ msgstr " "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:569 + #: apt_preferences.5.xml:563 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@@ -6065,13 -6065,13 +6065,13 @@@ msgstr " "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:586 + #: apt_preferences.5.xml:580 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "apt-get install <replaceable>pakiet</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:580 + #: apt_preferences.5.xml:574 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>testing</literal> distribution; the package " @@@ -6084,12 -6084,12 +6084,12 @@@ msgstr " "<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:592 + #: apt_preferences.5.xml:586 msgid "Tracking Testing or Unstable" msgstr "Śledzenie dystrybucji testowej lub niestabilnej" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:601 + #: apt_preferences.5.xml:595 #, no-wrap msgid "" "Package: *\n" @@@ -6117,7 -6117,7 +6117,7 @@@ msgstr " "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:594 + #: apt_preferences.5.xml:588 msgid "" "The following APT preferences file will cause APT to assign a high priority " "to package versions from the <literal>testing</literal> distribution, a " @@@ -6134,7 -6134,7 +6134,7 @@@ msgstr " "id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:615 + #: apt_preferences.5.xml:609 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest " @@@ -6147,13 -6147,13 +6147,13 @@@ msgstr " "type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:635 + #: apt_preferences.5.xml:629 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "apt-get install <replaceable>pakiet</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:626 + #: apt_preferences.5.xml:620 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>unstable</literal> distribution. " @@@ -6173,12 -6173,12 +6173,12 @@@ msgstr " "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:642 + #: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "Śledzenie ewolucji wydania o danej nazwie kodowej" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:656 + #: apt_preferences.5.xml:650 #, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@@ -6212,7 -6212,7 +6212,7 @@@ msgstr " "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:644 + #: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@@ -6238,7 -6238,7 +6238,7 @@@ msgstr " "\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:673 + #: apt_preferences.5.xml:667 msgid "" "With a suitable &sources-list; file and the above preferences file, any of " "the following commands will cause APT to upgrade to the latest version(s) in " @@@ -6251,13 -6251,13 +6251,13 @@@ msgstr " "literal>. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:693 + #: apt_preferences.5.xml:687 #, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "apt-get install <replaceable>pakiet</replaceable>/sid\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:684 + #: apt_preferences.5.xml:678 msgid "" "The following command will cause APT to upgrade the specified package to the " "latest version from the <literal>sid</literal> distribution. Thereafter, " @@@ -6277,17 -6277,17 +6277,17 @@@ msgstr " "id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:708 + #: apt_preferences.5.xml:702 msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> - #: sources.list.5.xml:35 + #: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "Lista skonfigurowanych źródeł danych APT" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:40 + #: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@@ -6305,7 -6305,7 +6305,7 @@@ msgstr " "programu użytkowego będącego interfejsem do systemu APT)." #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:47 + #: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@@ -6320,12 -6320,12 +6320,12 @@@ msgstr " "dalsza część linii stanowi komentarz." #. type: Content of: <refentry><refsect1><title> - #: sources.list.5.xml:55 + #: sources.list.5.xml:49 msgid "sources.list.d" msgstr "sources.list.d" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:56 + #: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@@ -6347,12 -6347,12 +6347,12 @@@ msgstr " "wypisze odpowiedni komunikat." #. type: Content of: <refentry><refsect1><title> - #: sources.list.5.xml:67 + #: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "Typy deb i deb-src" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:68 + #: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@@ -6378,7 -6378,7 +6378,7 @@@ msgstr " "źródłowych." #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:79 + #: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" @@@ -6387,14 -6387,14 +6387,14 @@@ msgstr " "<literal>deb</literal> i <literal>deb-src</literal> jest następujący:" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:82 + #: sources.list.5.xml:76 #, fuzzy, no-wrap #| msgid "deb [ options ] uri distribution [component1] [component2] [...]" msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "deb [ opcje ] uri dystrybucja [komponent1] [komponent2] [...]" #. type: Content of: <refentry><refsect1><para><literallayout> - #: sources.list.5.xml:86 + #: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@@ -6417,14 -6417,14 +6417,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:84 + #: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:105 + #: sources.list.5.xml:99 #, fuzzy #| msgid "" #| "The URI for the <literal>deb</literal> type must specify the base of the " @@@ -6455,7 -6455,7 +6455,7 @@@ msgstr " "<literal>komponent</literal>." #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:114 + #: sources.list.5.xml:108 #, fuzzy #| msgid "" #| "<literal>distribution</literal> may also contain a variable, <literal>" @@@ -6484,7 -6484,7 +6484,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:122 + #: sources.list.5.xml:116 #, fuzzy #| msgid "" #| "Since only one distribution can be specified per line it may be necessary " @@@ -6525,7 -6525,7 +6525,7 @@@ msgstr " "sieciach o niskiej przepustowości łączy." #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:136 + #: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@@ -6542,7 -6542,7 +6542,7 @@@ msgstr " "wypisywania żadnego ostrzeżenia):" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: sources.list.5.xml:142 + #: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@@ -6557,7 -6557,7 +6557,7 @@@ msgstr " "w opcji konfiguracji <literal>APT::Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: sources.list.5.xml:146 + #: sources.list.5.xml:140 #, fuzzy #| msgid "" #| "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" @@@ -6578,7 -6578,7 +6578,7 @@@ msgstr " "w opcji konfiguracji <literal>APT::Architectures</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: sources.list.5.xml:149 + #: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@@ -6596,7 -6596,7 +6596,7 @@@ msgstr " "niezautentykowane." #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:156 + #: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@@ -6610,12 -6610,12 +6610,12 @@@ msgstr " "komputerami w Internecie)." #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:161 + #: sources.list.5.xml:155 msgid "Some examples:" msgstr "Kilka przykładów:" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:163 + #: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@@ -6627,17 -6627,17 +6627,17 @@@ msgstr " " " #. type: Content of: <refentry><refsect1><title> - #: sources.list.5.xml:169 + #: sources.list.5.xml:163 msgid "URI specification" msgstr "Określanie URI" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:171 + #: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "Obecnie rozpoznawane są następujące typy URI:" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:175 + #: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@@ -6648,7 -6648,7 +6648,7 @@@ msgstr " "archiwów." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:182 + #: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." @@@ -6658,7 -6658,7 +6658,7 @@@ msgstr " "list." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:189 + #: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@@ -6675,7 -6675,7 +6675,7 @@@ msgstr " "bezpieczny." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:200 + #: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@@ -6695,7 -6695,7 +6695,7 @@@ msgstr " "konfiguracyjnym serwery proxy używające HTTP zostaną zignorowane." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:212 + #: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@@ -6708,7 -6708,7 +6708,7 @@@ msgstr " "do skopiowania plików przy użyciu APT." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:219 + #: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@@ -6722,12 -6722,12 +6722,12 @@@ msgstr " "przetransferowania plików ze zdalnego komputera." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> - #: sources.list.5.xml:226 + #: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "dodawanie innych rozpoznawanych typów URI" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:228 + #: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@@ -6746,7 -6746,7 +6746,7 @@@ msgstr " "zobaczyć &apt-transport-debtorrent;." #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:240 + #: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." @@@ -6755,36 -6755,36 +6755,36 @@@ msgstr " "debian dla zasobów stable/main, stable/contrib i stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:242 + #: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "deb file:/home/jason/debian stable main contrib non-free" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:244 + #: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" "Jak wyżej, z tą różnicą że używa dystrybucji niestabilnej (deweloperskiej)." #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:245 + #: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "deb file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:247 + #: sources.list.5.xml:241 msgid "Source line for the above" msgstr "Linie źródeł dla powyższego przykładu" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:248 + #: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:250 + #: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@@ -6795,7 -6795,7 +6795,7 @@@ msgstr " "literal> i <literal>armel</literal>." #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:252 + #: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@@ -6805,7 -6805,7 +6805,7 @@@ msgstr " "deb [ arch=amd64,armel ] http://ftp.debian.org/debian &stable-codename; main" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:255 + #: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." @@@ -6814,13 -6814,13 +6814,13 @@@ msgstr " "org i dystrybucji hamm/main." #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:257 + #: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "deb http://archive.debian.org/debian-archive hamm main" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:259 + #: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." @@@ -6829,13 -6829,13 +6829,13 @@@ msgstr " "katalogu debian i używa tylko dystrybucji &stable-codename;/contrib." #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:261 + #: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "deb ftp://ftp.debian.org/debian &stable-codename; contrib" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:263 + #: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@@ -6848,19 -6848,19 +6848,19 @@@ msgstr " "to pojedyncza sesja FTP będzie użyta w celu uzyskania dostępu do obu zasobów." #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:267 + #: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "deb ftp://ftp.debian.org/debian unstable contrib" #. type: Content of: <refentry><refsect1><para><literallayout> - #: sources.list.5.xml:276 + #: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:269 + #: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@@ -6879,17 -6879,17 +6879,17 @@@ msgstr " "nie zawiera takiej struktury). <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:281 + #: sources.list.5.xml:275 msgid "&apt-cache; &apt-conf;" msgstr "&apt-cache;, &apt-conf;" #. type: Content of: <refentry><refmeta><manvolnum> - #: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 + #: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "1" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-extracttemplates.1.xml:35 + #: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" @@@ -6898,7 -6898,7 +6898,7 @@@ msgstr " "<command>debconf</command>" #. type: Content of: <refentry><refsect1><para> - #: apt-extracttemplates.1.xml:41 + #: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@@ -6912,12 -6912,12 +6912,12 @@@ msgstr " "te skrypty i szablony, zostanie wypisana linia w następującym formacie:" #. type: Content of: <refentry><refsect1><para> - #: apt-extracttemplates.1.xml:46 + #: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "pakiet wersja plik-template skrypt-config" #. type: Content of: <refentry><refsect1><para> - #: apt-extracttemplates.1.xml:47 + #: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@@ -6932,7 -6932,7 +6932,7 @@@ msgstr " "config.XXXXXX</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-extracttemplates.1.xml:60 + #: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@@ -6944,7 -6944,7 +6944,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-extracttemplates.1.xml:77 + #: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." @@@ -6954,12 -6954,12 +6954,12 @@@ msgstr " # #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-sortpkgs.1.xml:35 + #: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "Narzędzie użytkowe do sortowania plików indeksu" #. type: Content of: <refentry><refsect1><para> - #: apt-sortpkgs.1.xml:41 + #: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@@ -6971,7 -6971,7 +6971,7 @@@ msgstr " "zgodnie z wewnętrznymi zasadami sortowania." #. type: Content of: <refentry><refsect1><para> - #: apt-sortpkgs.1.xml:47 + #: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" @@@ -6980,7 -6980,7 +6980,7 @@@ # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-sortpkgs.1.xml:56 + #: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." @@@ -6990,7 -6990,7 +6990,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-sortpkgs.1.xml:70 + #: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." @@@ -6999,12 -6999,12 +6999,12 @@@ msgstr " "100 - w przypadku błędu." #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-ftparchive.1.xml:35 + #: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "Narzędzie użytkowe do generowania plików indeksu" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:41 + #: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@@ -7017,7 -7017,7 +7017,7 @@@ msgstr " "on the content of that site." #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:45 + #: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@@ -7027,7 -7027,7 +7027,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:51 + #: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@@ -7037,7 -7037,7 +7037,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:62 + #: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@@ -7046,13 -7046,13 +7046,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 + #: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:72 + #: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@@ -7061,7 -7061,7 +7061,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:77 + #: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@@ -7069,7 -7069,7 +7069,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:84 + #: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@@ -7080,7 -7080,7 +7080,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:96 + #: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@@ -7095,7 -7095,7 +7095,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:106 + #: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@@ -7108,7 -7108,7 +7108,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:119 + #: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@@ -7118,20 -7118,20 +7118,20 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:128 + #: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-ftparchive.1.xml:134 + #: apt-ftparchive.1.xml:128 #, fuzzy msgid "The Generate Configuration" msgstr "Plik konfiguracyjny" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:136 + #: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@@ -7142,20 -7142,20 +7142,20 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:144 + #: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:146 + #: apt-ftparchive.1.xml:140 #, fuzzy #| msgid "the <literal>Origin:</literal> line" msgid "<literal>Dir</literal> Section" msgstr "linia <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:148 + #: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@@ -7164,7 -7164,7 +7164,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:155 + #: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@@ -7172,31 -7172,31 +7172,31 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:162 + #: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:167 + #: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:172 + #: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:178 + #: apt-ftparchive.1.xml:172 #, fuzzy #| msgid "the <literal>Label:</literal> line" msgid "<literal>Default</literal> Section" msgstr "linia <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:180 + #: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@@ -7204,7 -7204,7 +7204,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:186 + #: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@@ -7213,42 -7213,42 +7213,42 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:194 + #: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:200 + #: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:206 + #: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:212 + #: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:218 + #: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:224 + #: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@@ -7256,14 -7256,14 +7256,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:231 + #: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 + #: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@@ -7271,14 -7271,14 +7271,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:244 + #: apt-ftparchive.1.xml:238 #, fuzzy #| msgid "the <literal>Label:</literal> line" msgid "<literal>TreeDefault</literal> Section" msgstr "linia <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:246 + #: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@@ -7286,7 -7286,7 +7286,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:253 + #: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@@ -7294,7 -7294,7 +7294,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:260 + #: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@@ -7305,35 -7305,35 +7305,35 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:271 + #: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:277 + #: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:283 + #: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:289 + #: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:295 + #: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@@ -7341,7 -7341,7 +7341,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:302 + #: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@@ -7349,7 -7349,7 +7349,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:309 + #: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@@ -7359,19 -7359,19 +7359,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:318 + #: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:323 + #: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:329 + #: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@@ -7379,7 -7379,7 +7379,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:336 + #: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@@ -7388,14 -7388,14 +7388,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:344 + #: apt-ftparchive.1.xml:338 #, fuzzy #| msgid "the <literal>Label:</literal> line" msgid "<literal>Tree</literal> Section" msgstr "linia <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:346 + #: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@@ -7405,7 -7405,7 +7405,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:351 + #: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@@ -7414,7 -7414,7 +7414,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:356 + #: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@@ -7422,7 -7422,7 +7422,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt-ftparchive.1.xml:362 + #: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@@ -7436,7 -7436,7 +7436,7 @@@ msgstr " " " #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:359 + #: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@@ -7444,7 -7444,7 +7444,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:370 + #: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@@ -7452,7 -7452,7 +7452,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:377 + #: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@@ -7460,38 -7460,38 +7460,38 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:390 + #: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:396 + #: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 + #: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 + #: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:412 + #: apt-ftparchive.1.xml:406 #, fuzzy #| msgid "the <literal>Component:</literal> line" msgid "<literal>BinDirectory</literal> Section" msgstr "linia <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:414 + #: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@@ -7501,55 -7501,55 +7501,55 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:422 + #: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:427 + #: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:433 + #: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:438 + #: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:443 + #: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:458 + #: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:463 + #: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:468 + #: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "Określa plik zawierający listę plików." #. type: Content of: <refentry><refsect1><title> - #: apt-ftparchive.1.xml:475 + #: apt-ftparchive.1.xml:469 #, fuzzy msgid "The Binary Override File" msgstr "Wprowadzenie" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:476 + #: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@@ -7559,19 -7559,19 +7559,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> - #: apt-ftparchive.1.xml:482 + #: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "old [// oldn]* => new" #. type: Content of: <refentry><refsect1><para><literallayout> - #: apt-ftparchive.1.xml:484 + #: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "new" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:481 + #: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@@ -7582,13 -7582,13 +7582,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-ftparchive.1.xml:492 + #: apt-ftparchive.1.xml:486 #, fuzzy msgid "The Source Override File" msgstr "Wprowadzenie" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:494 + #: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@@ -7596,12 -7596,12 +7596,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-ftparchive.1.xml:499 + #: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:501 + #: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@@ -7609,7 -7609,7 +7609,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:512 + #: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@@ -7624,7 -7624,7 +7624,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:523 + #: apt-ftparchive.1.xml:517 #, fuzzy msgid "" "Use a binary caching DB. This has no effect on the generate command. " @@@ -7635,7 -7635,7 +7635,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:529 + #: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@@ -7650,7 -7650,7 +7650,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:537 + #: apt-ftparchive.1.xml:531 #, fuzzy msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " @@@ -7664,7 -7664,7 +7664,7 @@@ msgstr " "<literal>APT::Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:545 + #: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@@ -7675,7 -7675,7 +7675,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:555 + #: apt-ftparchive.1.xml:549 #, fuzzy msgid "" "Select the source override file to use with the <literal>sources</literal> " @@@ -7688,7 -7688,7 +7688,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:561 + #: apt-ftparchive.1.xml:555 #, fuzzy msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" @@@ -7698,7 -7698,7 +7698,7 @@@ msgstr " "pliku konfiguracyjnym: <literal>APT::Cache::NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:566 + #: apt-ftparchive.1.xml:560 #, fuzzy #| msgid "" #| "If the command is either <literal>install</literal> or <literal>remove</" @@@ -7718,7 -7718,7 +7718,7 @@@ msgstr " "AutomaticRemove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:574 + #: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@@ -7732,7 -7732,7 +7732,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:586 + #: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@@ -7742,13 -7742,13 +7742,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><programlisting> - #: apt-ftparchive.1.xml:604 + #: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "<command>apt-ftparchive</command> packages <replaceable>katalog</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:600 + #: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" @@@ -7756,7 -7756,7 +7756,7 @@@ msgstr " # #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:614 + #: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." @@@ -7765,50 -7765,50 +7765,50 @@@ msgstr " "100 - w przypadku błędu." #. type: Attribute 'lang' of: <book> - #: guide.dbk:8 offline.dbk:8 + #: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "pl" #. type: Content of: <book><title> - #: guide.dbk:10 + #: guide.dbk:11 msgid "APT User's Guide" msgstr "Podręcznik użytkownika APT" #. type: Content of: <book><bookinfo><authorgroup><author><personname> - #: guide.dbk:16 offline.dbk:16 + #: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "Jason Gunthorpe" #. type: Content of: <book><bookinfo><authorgroup><author><email> - #: guide.dbk:16 offline.dbk:16 + #: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "jgg@debian.org" #. type: Content of: <book><bookinfo><releaseinfo> - #: guide.dbk:20 offline.dbk:20 + #: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> - #: guide.dbk:24 + #: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "Dokument zawiera opis używania menadżera pakietów APT." #. type: Content of: <book><bookinfo> - #: guide.dbk:28 + #: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" #. type: Content of: <book><bookinfo><legalnotice><title> - #: guide.dbk:31 offline.dbk:32 + #: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> - #: guide.dbk:33 offline.dbk:34 + #: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@@ -7822,7 -7822,7 +7822,7 @@@ msgstr " "Oprogramowania (Free Software Foundation)." #. type: Content of: <book><bookinfo><legalnotice><para> - #: guide.dbk:42 offline.dbk:40 + #: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." @@@ -7831,12 -7831,12 +7831,12 @@@ msgstr " "licencji (w systemach Debian jest to plik /usr/share/common-licenses/GPL)." #. type: Content of: <book><chapter><title> - #: guide.dbk:49 + #: guide.dbk:50 msgid "General" msgstr "Ogólne" #. type: Content of: <book><chapter><para> - #: guide.dbk:51 + #: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@@ -7849,12 -7849,12 +7849,12 @@@ msgstr " "usuwanie pakietów oraz na pobieranie nowych pakietów z Internetu." #. type: Content of: <book><chapter><section><title> - #: guide.dbk:57 + #: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "Budowa systemu pakietów" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:59 + #: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@@ -7865,7 -7865,7 +7865,7 @@@ msgstr " "widoczną cechą systemu pakietów jest system zależności." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:64 + #: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@@ -7880,7 -7880,7 +7880,7 @@@ msgstr " "wybierać programy odpowiedzialne za dostarczanie poczty, serwery X-ów itp." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:71 + #: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@@ -7892,7 -7892,7 +7892,7 @@@ msgstr " "pakiet do poprawnego działania wymaga zainstalowania innego pakietu." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:76 + #: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@@ -7906,7 -7906,7 +7906,7 @@@ msgstr " "emacsa, więc i bez emacsa jest równie bezużyteczny." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:82 + #: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@@ -7929,7 -7929,7 +7929,7 @@@ msgstr " "poczty." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:92 + #: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@@ -7951,7 -7951,7 +7951,7 @@@ msgstr " "zależności pakietów." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:102 + #: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@@ -7963,12 -7963,12 +7963,12 @@@ msgstr " "pewnej liczby algorytmów pomagających w wyborze pakietów do zainstalowania." #. type: Content of: <book><chapter><title> - #: guide.dbk:111 + #: guide.dbk:112 msgid "apt-get" msgstr "apt-get" #. type: Content of: <book><chapter><para> - #: guide.dbk:113 + #: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@@ -7982,7 -7982,7 +7982,7 @@@ msgstr " "skonfigurowanych <emphasis>źródeł</emphasis>." #. type: Content of: <book><chapter><para><footnote><para> - #: guide.dbk:119 + #: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" @@@ -7991,7 -7991,7 +7991,7 @@@ msgstr " "http_proxy, proszę przeczytać sources.list(5)" #. type: Content of: <book><chapter><para> - #: guide.dbk:119 + #: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@@ -8005,7 -8005,7 +8005,7 @@@ msgstr " "polecenia <literal>apt-get update</literal>. Na przykład:" #. type: Content of: <book><chapter><screen> - #: guide.dbk:127 + #: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@@ -8021,17 -8021,17 +8021,17 @@@ msgstr " "Budowanie drzewa zależności... Gotowe\n" #. type: Content of: <book><chapter><para> - #: guide.dbk:134 + #: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "Po zaktualizowaniu można użyć następnych poleceń:" #. type: Content of: <book><chapter><variablelist><varlistentry><term> - #: guide.dbk:138 + #: guide.dbk:139 msgid "upgrade" msgstr "upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> - #: guide.dbk:141 + #: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@@ -8053,12 -8053,12 +8053,12 @@@ msgstr " "literal>." #. type: Content of: <book><chapter><variablelist><varlistentry><term> - #: guide.dbk:153 + #: guide.dbk:154 msgid "install" msgstr "install" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> - #: guide.dbk:156 + #: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@@ -8078,12 -8078,12 +8078,12 @@@ msgstr " "cokolwiek innego niż pakiety podane jako jego argumenty." #. type: Content of: <book><chapter><variablelist><varlistentry><term> - #: guide.dbk:167 + #: guide.dbk:168 msgid "dist-upgrade" msgstr "dist-upgrade" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> - #: guide.dbk:170 + #: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@@ -8105,7 -8105,7 +8105,7 @@@ msgstr " "pakietów." #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> - #: guide.dbk:180 + #: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." @@@ -8114,7 -8114,7 +8114,7 @@@ msgstr " "zrobić, gdyż jego decyzje mogą czasami zdumiewać." #. type: Content of: <book><chapter><para> - #: guide.dbk:187 + #: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, <citerefentry><refentrytitle>apt-get</" @@@ -8137,12 -8137,12 +8137,12 @@@ msgstr " "pobranie, tym razem bez opcji <literal>-d</literal>." #. type: Content of: <book><chapter><title> - #: guide.dbk:199 + #: guide.dbk:200 msgid "DSelect" msgstr "DSelect" #. type: Content of: <book><chapter><para> - #: guide.dbk:201 + #: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@@ -8156,7 -8156,7 +8156,7 @@@ msgstr " "te pakiety." #. type: Content of: <book><chapter><para> - #: guide.dbk:207 + #: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@@ -8181,7 -8181,7 +8181,7 @@@ msgstr " "pakiety z Internetu." #. type: Content of: <book><chapter><screen> - #: guide.dbk:218 + #: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@@ -8211,7 -8211,7 +8211,7 @@@ msgstr " " URL [http://llug.sep.bnl.gov/debian]:\n" #. type: Content of: <book><chapter><para> - #: guide.dbk:232 + #: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@@ -8222,7 -8222,7 +8222,7 @@@ msgstr " "dystrybucję do pobrania." #. type: Content of: <book><chapter><screen> - #: guide.dbk:237 + #: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@@ -8238,7 -8238,7 +8238,7 @@@ msgstr " " Dystrybucja [stable]:\n" #. type: Content of: <book><chapter><para> - #: guide.dbk:244 + #: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@@ -8257,7 -8257,7 +8257,7 @@@ msgstr " "Importowanie tych pakietów do Stanów Zjednoczonych jest jednakże legalne." #. type: Content of: <book><chapter><screen> - #: guide.dbk:253 + #: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@@ -8271,7 -8271,7 +8271,7 @@@ msgstr " " Komponenty [main contrib non-free]:\n" #. type: Content of: <book><chapter><para> - #: guide.dbk:259 + #: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@@ -8285,7 -8285,7 +8285,7 @@@ msgstr " "związane z ich używaniem lub rozpowszechnianiem." #. type: Content of: <book><chapter><para> - #: guide.dbk:265 + #: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." @@@ -8295,7 -8295,7 +8295,7 @@@ msgstr " "chciał skonfigurować." #. type: Content of: <book><chapter><para> - #: guide.dbk:269 + #: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@@ -8311,7 -8311,7 +8311,7 @@@ msgstr " "nawet jeśli wcześniej uruchomiono <literal>apt-get update</literal>." #. type: Content of: <book><chapter><para> - #: guide.dbk:276 + #: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@@ -8325,7 -8325,7 +8325,7 @@@ msgstr " "operacje." #. type: Content of: <book><chapter><para> - #: guide.dbk:282 + #: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@@ -8336,12 -8336,12 +8336,12 @@@ msgstr " "clean \"prompt\";</literal> w /etc/apt/apt.conf." #. type: Content of: <book><chapter><title> - #: guide.dbk:288 + #: guide.dbk:289 msgid "The Interface" msgstr "Interfejs" #. type: Content of: <book><chapter><para><footnote><para> - #: guide.dbk:292 + #: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@@ -8352,7 -8352,7 +8352,7 @@@ msgstr " "większą funkcjonalność niż sam program <command>apt-get</command>." #. type: Content of: <book><chapter><para> - #: guide.dbk:290 + #: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@@ -8370,12 -8370,12 +8370,12 @@@ msgstr " "ich zakończenia." #. type: Content of: <book><chapter><section><title> - #: guide.dbk:301 + #: guide.dbk:302 msgid "Startup" msgstr "Uruchamianie" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:303 + #: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@@ -8388,7 -8388,7 +8388,7 @@@ msgstr " "get check</literal>." #. type: Content of: <book><chapter><section><screen> - #: guide.dbk:309 + #: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@@ -8400,7 -8400,7 +8400,7 @@@ msgstr " "Budowanie drzewa zależności... Gotowe\n" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:314 + #: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@@ -8413,7 -8413,7 +8413,7 @@@ msgstr " "wypisze ostrzeżenie, a te pakiety zignoruje." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:320 + #: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@@ -8426,7 -8426,7 +8426,7 @@@ msgstr " "odpowiedni komunikat i odmówi dalszego działania." #. type: Content of: <book><chapter><section><screen> - #: guide.dbk:326 + #: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@@ -8462,7 -8462,7 +8462,7 @@@ msgstr " " libreadlineg2: Jest w konflikcie z: libreadline2 (<< 2.1-2.1)\n" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:343 + #: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@@ -8476,7 -8476,7 +8476,7 @@@ msgstr " "jest również krótkie wyjaśnienie dotyczące przyczyny problemu." #. type: Content of: <book><chapter><section><para><footnote><para> - #: guide.dbk:352 + #: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" @@@ -8485,7 -8485,7 +8485,7 @@@ msgstr " "pakietów." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:350 + #: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@@ -8502,7 -8502,7 +8502,7 @@@ msgstr " "mimo że pakiety od niego zależące nie są zainstalowane." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:359 + #: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@@ -8521,7 -8521,7 +8521,7 @@@ msgstr " "aby móc kontynuować po wystąpieniu błędu w skryptach opiekunów pakietów." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:368 + #: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@@ -8538,12 -8538,12 +8538,12 @@@ msgstr " "systemowi APT." #. type: Content of: <book><chapter><section><title> - #: guide.dbk:376 + #: guide.dbk:377 msgid "The Status Report" msgstr "Raport stanu" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:378 + #: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@@ -8561,12 -8561,12 +8561,12 @@@ msgstr " "polecenia." #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:385 + #: guide.dbk:386 msgid "The Extra Package list" msgstr "Lista dodatkowych pakietów" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:387 + #: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@@ -8584,7 -8584,7 +8584,7 @@@ msgstr " " ssh\n" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:395 + #: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@@ -8597,12 -8597,12 +8597,12 @@@ msgstr " "pakiety są najczęściej wynikiem automatycznej instalacji." #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:402 + #: guide.dbk:403 msgid "The Packages to Remove" msgstr "Pakiety przeznaczone do usunięcia" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:404 + #: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@@ -8618,7 -8618,7 +8618,7 @@@ msgstr " " nas xpilot xfig\n" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:411 + #: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@@ -8638,12 -8638,12 +8638,12 @@@ msgstr " "być może z przerwania wcześniejszej instalacji." #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:421 + #: guide.dbk:422 msgid "The New Packages list" msgstr "Lista nowych pakietów" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:423 + #: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@@ -8653,7 -8653,7 +8653,7 @@@ msgstr " " zlib1g xlib6g perl-base libgdbmg1 quake-lib gmp2 pgp-i python-base\n" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:427 + #: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@@ -8664,12 -8664,12 +8664,12 @@@ msgstr " "działanie." #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:432 + #: guide.dbk:433 msgid "The Kept Back list" msgstr "Lista zatrzymanych pakietów" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:434 + #: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@@ -8681,7 -8681,7 +8681,7 @@@ msgstr " " gs snmp arena lynx xpat2 groff xscreensaver\n" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:439 + #: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@@ -8699,12 -8699,12 +8699,12 @@@ msgstr " "<command>dselect</command>." #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:448 + #: guide.dbk:449 msgid "Held Packages warning" msgstr "Ostrzeżenie o zmianie zatrzymanych pakietów" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:450 + #: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@@ -8714,7 -8714,7 +8714,7 @@@ msgstr " " cvs\n" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:454 + #: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@@ -8725,19 -8725,19 +8725,19 @@@ msgstr " "pakietu. Może się to zdarzyć tylko podczas dist-upgrade lub install." #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:460 + #: guide.dbk:461 msgid "Final summary" msgstr "Podsumowanie" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:462 + #: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" "APT zakończy raport podsumowaniem wszystkich zmian, które przeprowadzi." #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:465 + #: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@@ -8749,7 -8749,7 +8749,7 @@@ msgstr " "Konieczne pobranie 65.7M/66.7M archiwów. Po rozpakowaniu zostanie użyte 26.5M.\n" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:470 + #: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@@ -8779,7 -8779,7 +8779,7 @@@ msgstr " "zwolnienie miejsca na dysku, jeśli usuwana jest duża liczba pakietów." #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:484 + #: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." @@@ -8788,12 -8788,12 +8788,12 @@@ msgstr " "do aktualizacji, podobny do tego pokazanego w poprzednim przykładzie." #. type: Content of: <book><chapter><section><title> - #: guide.dbk:491 + #: guide.dbk:492 msgid "The Status Display" msgstr "Wyświetlanie stanu przetwarzania" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:493 + #: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." @@@ -8802,7 -8802,7 +8802,7 @@@ msgstr " "komunikatów o stanie." #. type: Content of: <book><chapter><section><screen> - #: guide.dbk:497 + #: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@@ -8822,7 -8822,7 +8822,7 @@@ msgstr " "11% [5 testing/non-free `Oczekiwane na nagłówki' 0/32.1k 0%] 2203b/s 1m52s\n" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:506 + #: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@@ -8839,7 -8839,7 +8839,7 @@@ msgstr " "powoduje pewne nieścisłości." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:514 + #: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@@ -8861,7 -8861,7 +8861,7 @@@ msgstr " "pakietu." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:524 + #: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@@ -8895,7 -8895,7 +8895,7 @@@ msgstr " "utrzymania się pokazanego tempa pobierania." #. type: Content of: <book><chapter><section><para> - #: guide.dbk:539 + #: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@@ -8911,12 -8911,12 +8911,12 @@@ msgstr " "q</literal>." #. type: Content of: <book><chapter><section><title> - #: guide.dbk:547 + #: guide.dbk:548 msgid "Dpkg" msgstr "Dpkg" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:549 + #: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@@ -8933,12 -8933,12 +8933,12 @@@ msgstr " "zróżnicowane, by je tutaj opisać." #. type: Content of: <book><title> - #: offline.dbk:10 + #: offline.dbk:11 msgid "Using APT Offline" msgstr "Używanie APT w trybie offline" #. type: Content of: <book><bookinfo><abstract><para> - #: offline.dbk:24 + #: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." @@@ -8948,23 -8948,23 +8948,23 @@@ msgstr " "aktualizacji systemu." #. type: Content of: <book><bookinfo> - #: offline.dbk:29 + #: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><chapter><title> - #: offline.dbk:47 + #: offline.dbk:48 msgid "Introduction" msgstr "Wstęp" #. type: Content of: <book><chapter><section><title> - #: offline.dbk:49 offline.dbk:79 offline.dbk:191 + #: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "Wprowadzenie" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:51 + #: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@@ -8977,7 -8977,7 +8977,7 @@@ msgstr " "znacznie oddalony od innego komputera z szybkim łączem." #. type: Content of: <book><chapter><section><para> - #: offline.dbk:57 + #: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@@ -9001,7 -9001,7 +9001,7 @@@ msgstr " "takim jak wget." #. type: Content of: <book><chapter><section><para> - #: offline.dbk:68 + #: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@@ -9015,12 -9015,12 +9015,12 @@@ msgstr " "nazwami plików (np. ext2, fat32 albo vfat)." #. type: Content of: <book><chapter><title> - #: offline.dbk:77 + #: offline.dbk:78 msgid "Using APT on both machines" msgstr "Używanie programu APT na obu komputerach" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:81 + #: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@@ -9034,7 -9034,7 +9034,7 @@@ msgstr " "następująco:" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:87 + #: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@@ -9056,12 -9056,12 +9056,12 @@@ msgstr " " apt.conf\n" #. type: Content of: <book><chapter><section><title> - #: offline.dbk:98 + #: offline.dbk:99 msgid "The configuration file" msgstr "Plik konfiguracyjny" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:100 + #: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@@ -9079,7 -9079,7 +9079,7 @@@ msgstr " "użyć tych samych odnośników o identycznej składni." #. type: Content of: <book><chapter><section><para> - #: offline.dbk:108 + #: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" @@@ -9088,7 -9088,7 +9088,7 @@@ msgstr " "korzystał z dysku:" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:112 + #: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@@ -9140,7 -9140,7 +9140,7 @@@ msgstr " " };\n" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:137 + #: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@@ -9151,7 -9151,7 +9151,7 @@@ msgstr " "conf</emphasis>." #. type: Content of: <book><chapter><section><para> - #: offline.dbk:142 + #: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@@ -9169,7 -9169,7 +9169,7 @@@ msgstr " "wykonujemy kolejno:" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:151 + #: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@@ -9185,7 -9185,7 +9185,7 @@@ msgstr " " [ APT pobiera wszystkie pakiety potrzebne do aktualizacji Twojego systemu ]\n" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:158 + #: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@@ -9198,7 -9198,7 +9198,7 @@@ msgstr " "przeniesieniu Twoich operacji wyborów z powrotem na lokalny komputer." #. type: Content of: <book><chapter><section><para> - #: offline.dbk:164 + #: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" @@@ -9208,7 -9208,7 +9208,7 @@@ msgstr " "siebie i wpisujemy:" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:168 + #: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@@ -9224,7 -9224,7 +9224,7 @@@ msgstr " " [ Może też być inne polecenie programu APT ]\n" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:175 + #: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" @@@ -9233,7 -9233,7 +9233,7 @@@ msgstr " "maszyny. To jest bardzo ważne!" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:179 + #: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@@ -9249,12 -9249,12 +9249,12 @@@ msgstr " "w międzyczasie!" #. type: Content of: <book><chapter><title> - #: offline.dbk:189 + #: offline.dbk:190 msgid "Using APT and wget" msgstr "Używanie programów APT i wget" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:193 + #: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@@ -9266,7 -9266,7 +9266,7 @@@ msgstr " "komputerze była aktualna lista dostępnych pakietów." #. type: Content of: <book><chapter><section><para> - #: offline.dbk:198 + #: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@@ -9279,12 -9279,12 +9279,12 @@@ msgstr " "pakiety." #. type: Content of: <book><chapter><section><title> - #: offline.dbk:204 + #: offline.dbk:205 msgid "Operation" msgstr "Kolejne kroki" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:206 + #: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." @@@ -9294,7 -9294,7 +9294,7 @@@ msgstr " "wygenerować listę plików." #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:210 + #: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@@ -9308,7 -9308,7 +9308,7 @@@ msgstr " " # awk '{print \"wget -O \" $2 \" \" $1}' < uris > /disc/wget-script\n" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:216 + #: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." @@@ -9317,7 -9317,7 +9317,7 @@@ msgstr " "upgrade." #. type: Content of: <book><chapter><section><para> - #: offline.dbk:220 + #: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@@ -9330,12 -9330,12 +9330,12 @@@ msgstr " "dane na tym dysku." #. type: Content of: <book><chapter><section><para> - #: offline.dbk:226 + #: offline.dbk:227 msgid "The remote machine would do something like" msgstr "Na oddalonym komputerze należy wykonać coś takiego" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:229 + #: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@@ -9347,7 -9347,7 +9347,7 @@@ msgstr " " [ czekaj.. ]\n" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:234 + #: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," @@@ -9356,13 -9356,13 +9356,13 @@@ msgstr " "instalowanie można prowadzić dalej poleceniem:" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:238 + #: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:241 + #: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "Które użyje pobranych uprzednio archiwów z dysku." diff --combined doc/po/pt_BR.po index 5a5a3f609,d28c1e633..9d205e82e --- a/doc/po/pt_BR.po +++ b/doc/po/pt_BR.po @@@ -9,7 -9,7 +9,7 @@@ msgid " msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" - "POT-Creation-Date: 2014-07-10 10:52+0200\n" + "POT-Creation-Date: 2014-08-28 00:20+0000\n" "PO-Revision-Date: 2004-09-20 17:02+0000\n" "Last-Translator: André Luís Lopes <andrelop@debian.org>\n" "Language-Team: <debian-l10n-portuguese@lists.debian.org>\n" @@@ -479,38 -479,38 +479,38 @@@ msgid " msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> - #: apt.8.xml:25 apt-get.8.xml:28 apt-cache.8.xml:28 apt-key.8.xml:27 - #: apt-mark.8.xml:28 apt-secure.8.xml:27 apt-cdrom.8.xml:27 - #: apt-config.8.xml:28 + #: apt.8.xml:21 apt-get.8.xml:22 apt-cache.8.xml:22 apt-key.8.xml:21 + #: apt-mark.8.xml:22 apt-secure.8.xml:21 apt-cdrom.8.xml:21 + #: apt-config.8.xml:22 msgid "8" msgstr "" #. type: Content of: <refentry><refmeta><refmiscinfo> - #: apt.8.xml:26 apt-get.8.xml:29 apt-cache.8.xml:29 apt-key.8.xml:28 - #: apt-mark.8.xml:29 apt-secure.8.xml:28 apt-cdrom.8.xml:28 - #: apt-config.8.xml:29 apt.conf.5.xml:34 apt_preferences.5.xml:28 - #: sources.list.5.xml:29 apt-extracttemplates.1.xml:29 apt-sortpkgs.1.xml:29 - #: apt-ftparchive.1.xml:29 + #: apt.8.xml:22 apt-get.8.xml:23 apt-cache.8.xml:23 apt-key.8.xml:22 + #: apt-mark.8.xml:23 apt-secure.8.xml:22 apt-cdrom.8.xml:22 + #: apt-config.8.xml:23 apt.conf.5.xml:28 apt_preferences.5.xml:22 + #: sources.list.5.xml:23 apt-extracttemplates.1.xml:23 apt-sortpkgs.1.xml:23 + #: apt-ftparchive.1.xml:23 msgid "APT" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt.8.xml:32 + #: apt.8.xml:28 msgid "command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:37 apt-get.8.xml:40 apt-cache.8.xml:40 apt-key.8.xml:39 - #: apt-mark.8.xml:40 apt-secure.8.xml:52 apt-cdrom.8.xml:39 - #: apt-config.8.xml:40 apt.conf.5.xml:43 apt_preferences.5.xml:38 - #: sources.list.5.xml:38 apt-extracttemplates.1.xml:40 apt-sortpkgs.1.xml:40 - #: apt-ftparchive.1.xml:40 + #: apt.8.xml:33 apt-get.8.xml:34 apt-cache.8.xml:34 apt-key.8.xml:33 + #: apt-mark.8.xml:34 apt-secure.8.xml:46 apt-cdrom.8.xml:33 + #: apt-config.8.xml:34 apt.conf.5.xml:37 apt_preferences.5.xml:32 + #: sources.list.5.xml:32 apt-extracttemplates.1.xml:34 apt-sortpkgs.1.xml:34 + #: apt-ftparchive.1.xml:34 #, fuzzy msgid "Description" msgstr "Descrição" #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:38 + #: apt.8.xml:34 msgid "" "<command>apt</command> (Advanced Package Tool) is the command-line tool for " "handling packages. It provides a commandline interface for the package " @@@ -519,7 -519,7 +519,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:47 + #: apt.8.xml:43 msgid "" "<literal>list</literal> is used to display a list of packages. It supports " "shell pattern for matching package names and the following options: " @@@ -528,28 -528,28 +528,28 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:58 + #: apt.8.xml:54 msgid "" "<literal>search</literal> searches for the given term(s) and display " "matching packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:64 + #: apt.8.xml:60 msgid "" "<literal>show</literal> shows the package information for the given " "package(s)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:71 + #: apt.8.xml:67 msgid "" "<literal>install</literal> is followed by one or more package names desired " "for installation or upgrading." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:75 apt-get.8.xml:118 + #: apt.8.xml:71 apt-get.8.xml:112 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " @@@ -560,7 -560,7 +560,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:85 apt-get.8.xml:153 + #: apt.8.xml:81 apt-get.8.xml:147 msgid "" "<literal>remove</literal> is identical to <literal>install</literal> except " "that packages are removed instead of installed. Note that removing a package " @@@ -570,30 -570,30 +570,30 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:93 + #: apt.8.xml:89 msgid "" "<literal>edit-sources</literal> lets you edit your sources.list file and " "provides basic sanity checks." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:99 + #: apt.8.xml:95 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:105 + #: apt.8.xml:101 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " - "<filename>/etc/apt/sources.list</filename>. New package will be installed, " - "but existing package will never removed." + "<filename>/etc/apt/sources.list</filename>. New packages will be installed, " + "but existing packages will never be removed." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.8.xml:114 + #: apt.8.xml:110 msgid "" "<literal>full-upgrade</literal> performs the function of upgrade but may " "also remove installed packages if that is required in order to resolve a " @@@ -601,19 -601,19 +601,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:124 apt-get.8.xml:257 apt-cache.8.xml:250 apt-mark.8.xml:110 - #: apt-config.8.xml:86 apt-extracttemplates.1.xml:54 apt-sortpkgs.1.xml:50 - #: apt-ftparchive.1.xml:506 + #: apt.8.xml:120 apt-get.8.xml:251 apt-cache.8.xml:244 apt-mark.8.xml:104 + #: apt-config.8.xml:80 apt-extracttemplates.1.xml:48 apt-sortpkgs.1.xml:44 + #: apt-ftparchive.1.xml:500 msgid "options" msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:134 + #: apt.8.xml:130 msgid "Script usage" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:136 + #: apt.8.xml:132 msgid "" "The &apt; commandline is designed as a end-user tool and it may change the " "output between versions. While it tries to not break backward compatibility " @@@ -623,12 -623,12 +623,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:144 + #: apt.8.xml:140 msgid "Differences to &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:145 + #: apt.8.xml:141 msgid "" "The <command>apt</command> command is meant to be pleasant for end users and " "does not need to be backward compatible like &apt-get;. Therefore some " @@@ -636,26 -636,26 +636,26 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.8.xml:151 + #: apt.8.xml:147 #, fuzzy msgid "The option <literal>DPkg::Progress-Fancy</literal> is enabled." msgstr "a linha <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.8.xml:155 + #: apt.8.xml:151 #, fuzzy msgid "The option <literal>APT::Color</literal> is enabled." msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.8.xml:159 + #: apt.8.xml:155 msgid "" "A new <literal>list</literal> command is available similar to <literal>dpkg " "--list</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.8.xml:164 + #: apt.8.xml:160 #, fuzzy msgid "" "The option <literal>upgrade</literal> has <literal>--with-new-pkgs</literal> " @@@ -663,43 -663,43 +663,43 @@@ msgstr "a linha <literal>Archive:</literal>" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:174 apt-get.8.xml:558 apt-cache.8.xml:352 apt-key.8.xml:197 - #: apt-mark.8.xml:133 apt-secure.8.xml:193 apt-cdrom.8.xml:154 - #: apt-config.8.xml:111 apt.conf.5.xml:1228 apt_preferences.5.xml:707 - #: sources.list.5.xml:280 apt-extracttemplates.1.xml:72 apt-sortpkgs.1.xml:65 - #: apt-ftparchive.1.xml:609 + #: apt.8.xml:170 apt-get.8.xml:552 apt-cache.8.xml:346 apt-key.8.xml:191 + #: apt-mark.8.xml:127 apt-secure.8.xml:187 apt-cdrom.8.xml:148 + #: apt-config.8.xml:105 apt.conf.5.xml:1222 apt_preferences.5.xml:701 + #: sources.list.5.xml:274 apt-extracttemplates.1.xml:66 apt-sortpkgs.1.xml:59 + #: apt-ftparchive.1.xml:603 #, fuzzy msgid "See Also" msgstr "Consulte também" #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:175 + #: apt.8.xml:171 msgid "" "&apt-get;, &apt-cache;, &sources-list;, &apt-conf;, &apt-config;, The APT " "User's guide in &guidesdir;, &apt-preferences;, the APT Howto." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.8.xml:180 apt-get.8.xml:564 apt-cache.8.xml:357 apt-mark.8.xml:137 - #: apt-cdrom.8.xml:159 apt-config.8.xml:116 apt-extracttemplates.1.xml:76 - #: apt-sortpkgs.1.xml:69 apt-ftparchive.1.xml:613 + #: apt.8.xml:176 apt-get.8.xml:558 apt-cache.8.xml:351 apt-mark.8.xml:131 + #: apt-cdrom.8.xml:153 apt-config.8.xml:110 apt-extracttemplates.1.xml:70 + #: apt-sortpkgs.1.xml:63 apt-ftparchive.1.xml:607 msgid "Diagnostics" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.8.xml:181 + #: apt.8.xml:177 msgid "" "<command>apt</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-get.8.xml:35 + #: apt-get.8.xml:29 msgid "APT package handling utility -- command-line interface" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-get.8.xml:41 + #: apt-get.8.xml:35 msgid "" "<command>apt-get</command> is the command-line tool for handling packages, " "and may be considered the user's \"back-end\" to other tools using the APT " @@@ -708,15 -708,15 +708,15 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-get.8.xml:46 apt-cache.8.xml:46 apt-cdrom.8.xml:53 apt-config.8.xml:46 - #: apt-ftparchive.1.xml:56 + #: apt-get.8.xml:40 apt-cache.8.xml:40 apt-cdrom.8.xml:47 apt-config.8.xml:40 + #: apt-ftparchive.1.xml:50 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:51 + #: apt-get.8.xml:45 msgid "" "<literal>update</literal> is used to resynchronize the package index files " "from their sources. The indexes of available packages are fetched from the " @@@ -730,7 -730,7 +730,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:63 + #: apt-get.8.xml:57 msgid "" "<literal>upgrade</literal> is used to install the newest versions of all " "packages currently installed on the system from the sources enumerated in " @@@ -745,7 -745,7 +745,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:76 + #: apt-get.8.xml:70 msgid "" "<literal>dist-upgrade</literal> in addition to performing the function of " "<literal>upgrade</literal>, also intelligently handles changing dependencies " @@@ -760,7 -760,7 +760,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:89 + #: apt-get.8.xml:83 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " "traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" @@@ -771,7 -771,7 +771,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:100 + #: apt-get.8.xml:94 msgid "" "<literal>install</literal> is followed by one or more packages desired for " "installation or upgrading. Each package is a package name, not a fully " @@@ -788,14 -788,14 +788,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:125 + #: apt-get.8.xml:119 msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:128 + #: apt-get.8.xml:122 msgid "" "This is also the target to use if you want to upgrade one or more already-" "installed packages without upgrading every package you have on your system. " @@@ -807,14 -807,14 +807,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:139 + #: apt-get.8.xml:133 msgid "" "Finally, the &apt-preferences; mechanism allows you to create an alternative " "installation policy for individual packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:143 + #: apt-get.8.xml:137 msgid "" "If no package matches the given expression and the expression contains one " "of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " @@@ -826,7 -826,7 +826,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:161 + #: apt-get.8.xml:155 msgid "" "<literal>purge</literal> is identical to <literal>remove</literal> except " "that packages are removed and purged (any configuration files are deleted " @@@ -834,7 -834,7 +834,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:166 + #: apt-get.8.xml:160 msgid "" "<literal>source</literal> causes <command>apt-get</command> to fetch source " "packages. APT will examine the available packages to decide which source " @@@ -846,7 -846,7 +846,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:174 + #: apt-get.8.xml:168 msgid "" "Source packages are tracked separately from binary packages via <literal>deb-" "src</literal> lines in the &sources-list; file. This means that you will " @@@ -856,7 -856,7 +856,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:180 + #: apt-get.8.xml:174 msgid "" "If the <option>--compile</option> option is specified then the package will " "be compiled to a binary .deb using <command>dpkg-buildpackage</command> for " @@@ -866,7 -866,7 +866,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:187 + #: apt-get.8.xml:181 msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " @@@ -876,7 -876,7 +876,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:193 + #: apt-get.8.xml:187 msgid "" "Note that source packages are not installed and tracked in the " "<command>dpkg</command> database like binary packages; they are simply " @@@ -884,7 -884,7 +884,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:199 + #: apt-get.8.xml:193 msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package. By default " @@@ -894,21 -894,21 +894,21 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:206 + #: apt-get.8.xml:200 msgid "" "<literal>check</literal> is a diagnostic tool; it updates the package cache " "and checks for broken dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:211 + #: apt-get.8.xml:205 msgid "" "<literal>download</literal> will download the given binary package into the " "current directory." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:217 + #: apt-get.8.xml:211 msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " @@@ -917,7 -917,7 +917,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:224 + #: apt-get.8.xml:218 msgid "" "Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " "local repository of retrieved package files. The difference is that it only " @@@ -929,7 -929,7 +929,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:234 + #: apt-get.8.xml:228 msgid "" "<literal>autoremove</literal> is used to remove packages that were " "automatically installed to satisfy dependencies for other packages and are " @@@ -937,7 -937,7 +937,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:239 + #: apt-get.8.xml:233 msgid "" "<literal>changelog</literal> downloads a package changelog and displays it " "through <command>sensible-pager</command>. The server name and base " @@@ -951,28 -951,28 +951,28 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:262 + #: apt-get.8.xml:256 msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:267 + #: apt-get.8.xml:261 msgid "" "Consider suggested packages as a dependency for installing. Configuration " "Item: <literal>APT::Install-Suggests</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:272 + #: apt-get.8.xml:266 msgid "" "Download only; package files are only retrieved, not unpacked or installed. " "Configuration Item: <literal>APT::Get::Download-Only</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:277 + #: apt-get.8.xml:271 msgid "" "Fix; attempt to correct a system with broken dependencies in place. This " "option, when used with install/remove, can omit any packages to permit APT " @@@ -988,7 -988,7 +988,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:292 + #: apt-get.8.xml:286 msgid "" "Ignore missing packages; if packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " @@@ -1000,7 -1000,7 +1000,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:303 + #: apt-get.8.xml:297 msgid "" "Disables downloading of packages. This is best used with <option>--ignore-" "missing</option> to force APT to use only the .debs it has already " @@@ -1008,7 -1008,7 +1008,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:310 + #: apt-get.8.xml:304 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@@ -1020,7 -1020,7 +1020,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:325 + #: apt-get.8.xml:319 msgid "" "No action; perform a simulation of events that would occur but do not " "actually change the system. Configuration Item: <literal>APT::Get::" @@@ -1028,7 -1028,7 +1028,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:329 + #: apt-get.8.xml:323 msgid "" "Simulated runs performed as a user will automatically deactivate locking " "(<literal>Debug::NoLocking</literal>), and if the option <literal>APT::Get::" @@@ -1040,7 -1040,7 +1040,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:337 + #: apt-get.8.xml:331 msgid "" "Simulated runs print out a series of lines, each representing a " "<command>dpkg</command> operation: configure (<literal>Conf</literal>), " @@@ -1050,7 -1050,7 +1050,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:345 + #: apt-get.8.xml:339 msgid "" "Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " "non-interactively. If an undesirable situation, such as changing a held " @@@ -1060,28 -1060,28 +1060,28 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:353 + #: apt-get.8.xml:347 msgid "" "Automatic \"no\" to all prompts. Configuration Item: <literal>APT::Get::" "Assume-No</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:358 + #: apt-get.8.xml:352 msgid "" "Show upgraded packages; print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:364 + #: apt-get.8.xml:358 msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:370 + #: apt-get.8.xml:364 msgid "" "This option controls the architecture packages are built for by <command>apt-" "get source --compile</command> and how cross-builddependencies are " @@@ -1092,7 -1092,7 +1092,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:380 + #: apt-get.8.xml:374 msgid "" "This option controls the activated build profiles for which a source package " "is built by <command>apt-get source --compile</command> and how build " @@@ -1102,14 -1102,14 +1102,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:391 + #: apt-get.8.xml:385 msgid "" "Compile source packages after downloading them. Configuration Item: " "<literal>APT::Get::Compile</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:396 + #: apt-get.8.xml:390 msgid "" "Ignore package holds; this causes <command>apt-get</command> to ignore a " "hold placed on a package. This may be useful in conjunction with " @@@ -1118,7 -1118,7 +1118,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:403 + #: apt-get.8.xml:397 msgid "" "Allow installing new packages when used in conjunction with " "<literal>upgrade</literal>. This is useful if the update of a installed " @@@ -1130,7 -1130,7 +1130,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:415 + #: apt-get.8.xml:409 msgid "" "Do not upgrade packages; when used in conjunction with <literal>install</" "literal>, <literal>no-upgrade</literal> will prevent packages on the command " @@@ -1139,7 -1139,7 +1139,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:422 + #: apt-get.8.xml:416 msgid "" "Do not install new packages; when used in conjunction with <literal>install</" "literal>, <literal>only-upgrade</literal> will install upgrades for already " @@@ -1148,7 -1148,7 +1148,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:430 + #: apt-get.8.xml:424 msgid "" "Force yes; this is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " @@@ -1158,7 -1158,7 +1158,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:438 + #: apt-get.8.xml:432 msgid "" "Instead of fetching the files to install their URIs are printed. Each URI " "will have the path, the destination file name, the size and the expected MD5 " @@@ -1171,7 -1171,7 +1171,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:449 + #: apt-get.8.xml:443 msgid "" "Use purge instead of remove for anything that would be removed. An asterisk " "(\"*\") will be displayed next to packages which are scheduled to be purged. " @@@ -1180,14 -1180,14 +1180,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:457 + #: apt-get.8.xml:451 msgid "" "Re-install packages that are already installed and at the newest version. " "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:462 + #: apt-get.8.xml:456 msgid "" "This option is on by default; use <literal>--no-list-cleanup</literal> to " "turn it off. When it is on, <command>apt-get</command> will automatically " @@@ -1198,7 -1198,7 +1198,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:472 + #: apt-get.8.xml:466 msgid "" "This option controls the default input to the policy engine; it creates a " "default pin at priority 990 using the specified release string. This " @@@ -1212,7 -1212,7 +1212,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:487 + #: apt-get.8.xml:481 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " "related to <option>--assume-yes</option>; where <option>--assume-yes</" @@@ -1221,14 -1221,14 +1221,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:494 + #: apt-get.8.xml:488 msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:500 + #: apt-get.8.xml:494 msgid "" "If the command is either <literal>install</literal> or <literal>remove</" "literal>, then this option acts like running the <literal>autoremove</" @@@ -1237,7 -1237,7 +1237,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:507 + #: apt-get.8.xml:501 msgid "" "Only has meaning for the <literal>source</literal> and <literal>build-dep</" "literal> commands. Indicates that the given source names are not to be " @@@ -1249,7 -1249,7 +1249,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:518 + #: apt-get.8.xml:512 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " "Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" @@@ -1257,14 -1257,14 +1257,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:524 + #: apt-get.8.xml:518 msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:529 + #: apt-get.8.xml:523 msgid "" "Ignore if packages can't be authenticated and don't prompt about it. This " "is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" @@@ -1272,7 -1272,7 +1272,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-get.8.xml:535 + #: apt-get.8.xml:529 msgid "" "Show user friendly progress information in the terminal window when packages " "are installed, upgraded or removed. For a machine parsable version of this " @@@ -1282,13 -1282,13 +1282,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-get.8.xml:548 apt-cache.8.xml:345 apt-key.8.xml:176 apt-mark.8.xml:127 - #: apt.conf.5.xml:1222 apt_preferences.5.xml:700 + #: apt-get.8.xml:542 apt-cache.8.xml:339 apt-key.8.xml:170 apt-mark.8.xml:121 + #: apt.conf.5.xml:1216 apt_preferences.5.xml:694 msgid "Files" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-get.8.xml:559 + #: apt-get.8.xml:553 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &sources-list;, &apt-conf;, &apt-config;, " "&apt-secure;, The APT User's guide in &guidesdir;, &apt-preferences;, the " @@@ -1296,19 -1296,19 +1296,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-get.8.xml:565 + #: apt-get.8.xml:559 msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-cache.8.xml:35 + #: apt-cache.8.xml:29 msgid "query the APT cache" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-cache.8.xml:41 + #: apt-cache.8.xml:35 msgid "" "<command>apt-cache</command> performs a variety of operations on APT's " "package cache. <command>apt-cache</command> does not manipulate the state of " @@@ -1317,21 -1317,21 +1317,21 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:51 + #: apt-cache.8.xml:45 msgid "" "<literal>gencaches</literal> creates APT's package cache. This is done " "implicitly by all commands needing this cache if it is missing or outdated." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> - #: apt-cache.8.xml:55 apt-cache.8.xml:144 apt-cache.8.xml:165 - #: apt-cache.8.xml:187 apt-cache.8.xml:192 apt-cache.8.xml:208 - #: apt-cache.8.xml:226 apt-cache.8.xml:238 + #: apt-cache.8.xml:49 apt-cache.8.xml:138 apt-cache.8.xml:159 + #: apt-cache.8.xml:181 apt-cache.8.xml:186 apt-cache.8.xml:202 + #: apt-cache.8.xml:220 apt-cache.8.xml:232 msgid "&synopsis-pkg;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:56 + #: apt-cache.8.xml:50 msgid "" "<literal>showpkg</literal> displays information about the packages listed on " "the command line. Remaining arguments are package names. The available " @@@ -1345,7 -1345,7 +1345,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> - #: apt-cache.8.xml:68 + #: apt-cache.8.xml:62 #, no-wrap msgid "" "Package: libreadline2\n" @@@ -1361,7 -1361,7 +1361,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:80 + #: apt-cache.8.xml:74 msgid "" "Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " "ncurses3.0 which must be installed for libreadline2 to work. In turn, " @@@ -1373,21 -1373,21 +1373,21 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:89 + #: apt-cache.8.xml:83 msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:92 + #: apt-cache.8.xml:86 msgid "" "<literal>Total package names</literal> is the number of package names found " "in the cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:96 + #: apt-cache.8.xml:90 msgid "" "<literal>Normal packages</literal> is the number of regular, ordinary " "package names; these are packages that bear a one-to-one correspondence " @@@ -1396,7 -1396,7 +1396,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:102 + #: apt-cache.8.xml:96 msgid "" "<literal>Pure virtual packages</literal> is the number of packages that " "exist only as a virtual package name; that is, packages only \"provide\" the " @@@ -1407,7 -1407,7 +1407,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:110 + #: apt-cache.8.xml:104 msgid "" "<literal>Single virtual packages</literal> is the number of packages with " "only one package providing a particular virtual package. For example, in the " @@@ -1416,7 -1416,7 +1416,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:116 + #: apt-cache.8.xml:110 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " @@@ -1425,7 -1425,7 +1425,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:123 + #: apt-cache.8.xml:117 msgid "" "<literal>Missing</literal> is the number of package names that were " "referenced in a dependency but were not provided by any package. Missing " @@@ -1435,7 -1435,7 +1435,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:130 + #: apt-cache.8.xml:124 msgid "" "<literal>Total distinct</literal> versions is the number of package versions " "found in the cache; this value is therefore at least equal to the number of " @@@ -1445,14 -1445,14 +1445,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> - #: apt-cache.8.xml:137 + #: apt-cache.8.xml:131 msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:145 + #: apt-cache.8.xml:139 msgid "" "<literal>showsrc</literal> displays all the source package records that " "match the given package names. All versions are shown, as well as all " @@@ -1460,40 -1460,40 +1460,40 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:151 + #: apt-cache.8.xml:145 msgid "" "<literal>dump</literal> shows a short listing of every package in the cache. " "It is primarily for debugging." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:156 + #: apt-cache.8.xml:150 msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:161 + #: apt-cache.8.xml:155 msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:166 + #: apt-cache.8.xml:160 msgid "" "<literal>show</literal> performs a function similar to <command>dpkg --print-" "avail</command>; it displays the package records for the named packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> - #: apt-cache.8.xml:171 + #: apt-cache.8.xml:165 msgid "&synopsis-regex;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:172 + #: apt-cache.8.xml:166 msgid "" "<literal>search</literal> performs a full text search on all available " "package lists for the POSIX regex pattern given, see ®ex;. It searches " @@@ -1506,28 -1506,28 +1506,28 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:183 + #: apt-cache.8.xml:177 msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:188 + #: apt-cache.8.xml:182 msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:193 + #: apt-cache.8.xml:187 msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-cache.8.xml:197 + #: apt-cache.8.xml:191 #, fuzzy msgid "<optional><replaceable>&synopsis-prefix;</replaceable></optional>" msgstr "" @@@ -1535,7 -1535,7 +1535,7 @@@ "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:198 + #: apt-cache.8.xml:192 msgid "" "This command prints the name of each package APT knows. The optional " "argument is a prefix match to filter the name list. The output is suitable " @@@ -1545,7 -1545,7 +1545,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:203 + #: apt-cache.8.xml:197 msgid "" "Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " @@@ -1553,7 -1553,7 +1553,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:209 + #: apt-cache.8.xml:203 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@@ -1566,7 -1566,7 +1566,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:218 + #: apt-cache.8.xml:212 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure virtual packages are triangles, mixed virtual packages are diamonds, " @@@ -1575,19 -1575,19 +1575,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:223 + #: apt-cache.8.xml:217 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:227 + #: apt-cache.8.xml:221 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-cache.8.xml:231 + #: apt-cache.8.xml:225 #, fuzzy msgid "<optional><replaceable>&synopsis-pkg;</replaceable>…</optional>" msgstr "" @@@ -1595,7 -1595,7 +1595,7 @@@ "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:232 + #: apt-cache.8.xml:226 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@@ -1604,7 -1604,7 +1604,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:239 + #: apt-cache.8.xml:233 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@@ -1616,7 -1616,7 +1616,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:255 + #: apt-cache.8.xml:249 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@@ -1624,7 -1624,7 +1624,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:261 + #: apt-cache.8.xml:255 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@@ -1634,7 -1634,7 +1634,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:269 + #: apt-cache.8.xml:263 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@@ -1643,7 -1643,7 +1643,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:276 + #: apt-cache.8.xml:270 msgid "" "Print only important dependencies; for use with <literal>unmet</literal> and " "<literal>depends</literal>. Causes only Depends and Pre-Depends relations to " @@@ -1651,7 -1651,7 +1651,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:290 + #: apt-cache.8.xml:284 msgid "" "Per default the <literal>depends</literal> and <literal>rdepends</literal> " "print all dependencies. This can be tweaked with these flags which will omit " @@@ -1661,14 -1661,14 +1661,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:297 + #: apt-cache.8.xml:291 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:302 + #: apt-cache.8.xml:296 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@@ -1679,7 -1679,7 +1679,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:311 + #: apt-cache.8.xml:305 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@@ -1687,14 -1687,14 +1687,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:317 + #: apt-cache.8.xml:311 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:322 + #: apt-cache.8.xml:316 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@@ -1702,7 -1702,7 +1702,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:328 + #: apt-cache.8.xml:322 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@@ -1710,7 -1710,7 +1710,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cache.8.xml:335 + #: apt-cache.8.xml:329 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@@ -1718,24 -1718,24 +1718,24 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-cache.8.xml:353 + #: apt-cache.8.xml:347 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-cache.8.xml:358 + #: apt-cache.8.xml:352 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-key.8.xml:34 + #: apt-key.8.xml:28 msgid "APT key management utility" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-key.8.xml:41 + #: apt-key.8.xml:35 msgid "" "<command>apt-key</command> is used to manage the list of keys used by apt to " "authenticate packages. Packages which have been authenticated using these " @@@ -1743,12 -1743,12 +1743,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-key.8.xml:47 + #: apt-key.8.xml:41 msgid "Commands" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:52 + #: apt-key.8.xml:46 msgid "" "Add a new key to the list of trusted keys. The key is read from the " "filename given with the parameter &synopsis-param-filename; or if the " @@@ -1756,39 -1756,39 +1756,39 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:65 + #: apt-key.8.xml:59 msgid "Remove a key from the list of trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:76 + #: apt-key.8.xml:70 msgid "Output the key &synopsis-param-keyid; to standard output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:87 + #: apt-key.8.xml:81 msgid "Output all trusted keys to standard output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:98 + #: apt-key.8.xml:92 msgid "List trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:109 + #: apt-key.8.xml:103 msgid "List fingerprints of trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:120 + #: apt-key.8.xml:114 msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:132 + #: apt-key.8.xml:126 msgid "" "Update the local keyring with the archive keyring and remove from the local " "keyring the archive keys which are no longer valid. The archive keyring is " @@@ -1797,7 -1797,7 +1797,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:146 + #: apt-key.8.xml:140 msgid "" "Perform an update working similarly to the <command>update</command> command " "above, but get the archive keyring from a URI instead and validate it " @@@ -1808,19 -1808,19 +1808,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-key.8.xml:162 apt-cdrom.8.xml:82 + #: apt-key.8.xml:156 apt-cdrom.8.xml:76 msgid "Options" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-key.8.xml:163 + #: apt-key.8.xml:157 msgid "" "Note that options need to be defined before the commands described in the " "previous section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:166 + #: apt-key.8.xml:160 msgid "" "With this option it is possible to specify a particular keyring file the " "command should operate on. The default is that a command is executed on the " @@@ -1831,56 -1831,56 +1831,56 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-key.8.xml:181 + #: apt-key.8.xml:175 #, fuzzy msgid "<filename>/etc/apt/trustdb.gpg</filename>" msgstr "<filename>/etc/apt.conf</>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:182 + #: apt-key.8.xml:176 msgid "Local trust database of archive keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-key.8.xml:185 + #: apt-key.8.xml:179 msgid "&keyring-filename;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:186 + #: apt-key.8.xml:180 msgid "Keyring of &keyring-distro; archive trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> - #: apt-key.8.xml:189 + #: apt-key.8.xml:183 msgid "&keyring-removed-filename;" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-key.8.xml:190 + #: apt-key.8.xml:184 msgid "Keyring of &keyring-distro; archive removed trusted keys." msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-key.8.xml:199 + #: apt-key.8.xml:193 #, fuzzy msgid "&apt-get;, &apt-secure;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-mark.8.xml:35 + #: apt-mark.8.xml:29 msgid "mark/unmark a package as being automatically-installed" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-mark.8.xml:41 + #: apt-mark.8.xml:35 msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-mark.8.xml:45 + #: apt-mark.8.xml:39 msgid "" "When you request that a package is installed, and as a result other packages " "are installed to satisfy its dependencies, the dependencies are marked as " @@@ -1890,7 -1890,7 +1890,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:54 + #: apt-mark.8.xml:48 msgid "" "<literal>auto</literal> is used to mark a package as being automatically " "installed, which will cause the package to be removed when no more manually " @@@ -1898,7 -1898,7 +1898,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:62 + #: apt-mark.8.xml:56 msgid "" "<literal>manual</literal> is used to mark a package as being manually " "installed, which will prevent the package from being automatically removed " @@@ -1906,7 -1906,7 +1906,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:70 + #: apt-mark.8.xml:64 msgid "" "<literal>hold</literal> is used to mark a package as held back, which will " "prevent the package from being automatically installed, upgraded or " @@@ -1916,14 -1916,14 +1916,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:80 + #: apt-mark.8.xml:74 msgid "" "<literal>unhold</literal> is used to cancel a previously set hold on a " "package to allow all actions again." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:86 + #: apt-mark.8.xml:80 msgid "" "<literal>showauto</literal> is used to print a list of automatically " "installed packages with each package on a new line. All automatically " @@@ -1932,7 -1932,7 +1932,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:94 + #: apt-mark.8.xml:88 msgid "" "<literal>showmanual</literal> can be used in the same way as " "<literal>showauto</literal> except that it will print a list of manually " @@@ -1940,14 -1940,14 +1940,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:101 + #: apt-mark.8.xml:95 msgid "" "<literal>showhold</literal> is used to print a list of packages on hold in " "the same way as for the other show commands." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-mark.8.xml:117 + #: apt-mark.8.xml:111 msgid "" "Read/Write package stats from the filename given with the parameter " "&synopsis-param-filename; instead of from the default location, which is " @@@ -1956,19 -1956,19 +1956,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-mark.8.xml:138 + #: apt-mark.8.xml:132 msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-secure.8.xml:49 + #: apt-secure.8.xml:43 msgid "Archive authentication support for APT" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:54 + #: apt-secure.8.xml:48 msgid "" "Starting with version 0.6, <command>apt</command> contains code that does " "signature checking of the Release file for all archives. This ensures that " @@@ -1977,7 -1977,7 +1977,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:62 + #: apt-secure.8.xml:56 msgid "" "If a package comes from a archive without a signature, or with a signature " "that apt does not have a key for, that package is considered untrusted, and " @@@ -1987,19 -1987,19 +1987,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:71 + #: apt-secure.8.xml:65 msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-secure.8.xml:76 + #: apt-secure.8.xml:70 msgid "Trusted archives" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:79 + #: apt-secure.8.xml:73 msgid "" "The chain of trust from an apt archive to the end user is made up of several " "steps. <command>apt-secure</command> is the last step in this chain; " @@@ -2010,7 -2010,7 +2010,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:87 + #: apt-secure.8.xml:81 msgid "" "apt-secure does not review signatures at a package level. If you require " "tools to do this you should look at <command>debsig-verify</command> and " @@@ -2019,7 -2019,7 +2019,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:94 + #: apt-secure.8.xml:88 msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. In order to become " @@@ -2030,7 -2030,7 +2030,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:104 + #: apt-secure.8.xml:98 msgid "" "Once the uploaded package is verified and included in the archive, the " "maintainer signature is stripped off, and checksums of the package are " @@@ -2043,7 -2043,7 +2043,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:115 + #: apt-secure.8.xml:109 msgid "" "End users can check the signature of the Release file, extract a checksum of " "a package from it and compare it with the checksum of the package they " @@@ -2051,14 -2051,14 +2051,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:120 + #: apt-secure.8.xml:114 msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:125 + #: apt-secure.8.xml:119 msgid "" "<literal>Network \"man in the middle\" attacks</literal>. Without signature " "checking, malicious agents can introduce themselves into the package " @@@ -2068,7 -2068,7 +2068,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:133 + #: apt-secure.8.xml:127 msgid "" "<literal>Mirror network compromise</literal>. Without signature checking, a " "malicious agent can compromise a mirror host and modify the files in it to " @@@ -2077,7 -2077,7 +2077,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:140 + #: apt-secure.8.xml:134 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " @@@ -2086,12 -2086,12 +2086,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-secure.8.xml:146 + #: apt-secure.8.xml:140 msgid "User configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:148 + #: apt-secure.8.xml:142 msgid "" "<command>apt-key</command> is the program that manages the list of keys used " "by apt. It can be used to add or remove keys, although an installation of " @@@ -2100,7 -2100,7 +2100,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:155 + #: apt-secure.8.xml:149 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " @@@ -2111,19 -2111,19 +2111,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-secure.8.xml:164 + #: apt-secure.8.xml:158 msgid "Archive configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:166 + #: apt-secure.8.xml:160 msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:171 + #: apt-secure.8.xml:165 msgid "" "<emphasis>Create a toplevel Release file</emphasis>, if it does not exist " "already. You can do this by running <command>apt-ftparchive release</" @@@ -2131,7 -2131,7 +2131,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:176 + #: apt-secure.8.xml:170 msgid "" "<emphasis>Sign it</emphasis>. You can do this by running <command>gpg --" "clearsign -o InRelease Release</command> and <command>gpg -abs -o Release." @@@ -2139,7 -2139,7 +2139,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> - #: apt-secure.8.xml:180 + #: apt-secure.8.xml:174 msgid "" "<emphasis>Publish the key fingerprint</emphasis>, that way your users will " "know what key they need to import in order to authenticate the files in the " @@@ -2147,7 -2147,7 +2147,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:187 + #: apt-secure.8.xml:181 msgid "" "Whenever the contents of the archive change (new packages are added or " "removed) the archive maintainer has to follow the first two steps outlined " @@@ -2155,14 -2155,14 +2155,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:195 + #: apt-secure.8.xml:189 msgid "" "&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " "&debsign;, &debsig-verify;, &gpg;" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:199 + #: apt-secure.8.xml:193 msgid "" "For more background information you might want to review the <ulink url=" "\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7\">Debian " @@@ -2173,24 -2173,24 +2173,24 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-secure.8.xml:212 + #: apt-secure.8.xml:206 msgid "Manpage Authors" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-secure.8.xml:214 + #: apt-secure.8.xml:208 msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-cdrom.8.xml:34 + #: apt-cdrom.8.xml:28 msgid "APT CD-ROM management utility" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-cdrom.8.xml:40 + #: apt-cdrom.8.xml:34 msgid "" "<command>apt-cdrom</command> is used to add a new CD-ROM to APT's list of " "available sources. <command>apt-cdrom</command> takes care of determining " @@@ -2199,7 -2199,7 +2199,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-cdrom.8.xml:47 + #: apt-cdrom.8.xml:41 msgid "" "It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " "system; it cannot be done by hand. Furthermore each disc in a multi-CD set " @@@ -2207,7 -2207,7 +2207,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:58 + #: apt-cdrom.8.xml:52 msgid "" "<literal>add</literal> is used to add a new disc to the source list. It will " "unmount the CD-ROM device, prompt for a disc to be inserted and then proceed " @@@ -2217,7 -2217,7 +2217,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:66 + #: apt-cdrom.8.xml:60 msgid "" "APT uses a CD-ROM ID to track which disc is currently in the drive and " "maintains a database of these IDs in <filename>&statedir;/cdroms.list</" @@@ -2225,14 -2225,14 +2225,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:74 + #: apt-cdrom.8.xml:68 msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:87 + #: apt-cdrom.8.xml:81 msgid "" "Do not try to auto-detect the CD-ROM path. Usually combined with the " "<option>--cdrom</option> option. Configuration Item: <literal>Acquire::" @@@ -2240,7 -2240,7 +2240,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:95 + #: apt-cdrom.8.xml:89 msgid "" "Mount point; specify the location to mount the CD-ROM. This mount point must " "be listed in <filename>/etc/fstab</filename> and properly configured. " @@@ -2248,7 -2248,7 +2248,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:104 + #: apt-cdrom.8.xml:98 msgid "" "Rename a disc; change the label of a disc or override the disc's given " "label. This option will cause <command>apt-cdrom</command> to prompt for a " @@@ -2256,7 -2256,7 +2256,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:113 + #: apt-cdrom.8.xml:107 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " "unmounting the mount point. Configuration Item: <literal>APT::CDROM::" @@@ -2264,7 -2264,7 +2264,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:121 + #: apt-cdrom.8.xml:115 msgid "" "Fast Copy; Assume the package files are valid and do not check every " "package. This option should be used only if <command>apt-cdrom</command> has " @@@ -2273,7 -2273,7 +2273,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:131 + #: apt-cdrom.8.xml:125 msgid "" "Thorough Package Scan; This option may be needed with some old Debian " "1.1/1.2 discs that have Package files in strange places. It takes much " @@@ -2281,7 -2281,7 +2281,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-cdrom.8.xml:142 + #: apt-cdrom.8.xml:136 msgid "" "No Changes; Do not change the &sources-list; file and do not write index " "files. Everything is still checked however. Configuration Item: " @@@ -2289,25 -2289,25 +2289,25 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-cdrom.8.xml:155 + #: apt-cdrom.8.xml:149 #, fuzzy msgid "&apt-conf;, &apt-get;, &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refsect1><para> - #: apt-cdrom.8.xml:160 + #: apt-cdrom.8.xml:154 msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-config.8.xml:35 + #: apt-config.8.xml:29 msgid "APT Configuration Query program" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-config.8.xml:41 + #: apt-config.8.xml:35 msgid "" "<command>apt-config</command> is an internal program used by various " "portions of the APT suite to provide consistent configurability. It accesses " @@@ -2316,7 -2316,7 +2316,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:53 + #: apt-config.8.xml:47 msgid "" "shell is used to access the configuration information from a shell script. " "It is given pairs of arguments, the first being a shell variable and the " @@@ -2326,7 -2326,7 +2326,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> - #: apt-config.8.xml:61 + #: apt-config.8.xml:55 #, no-wrap msgid "" "OPTS=\"-f\"\n" @@@ -2335,14 -2335,14 +2335,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:66 + #: apt-config.8.xml:60 msgid "" "This will set the shell environment variable $OPTS to the value of MyApp::" "options with a default of <option>-f</option>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:70 + #: apt-config.8.xml:64 msgid "" "The configuration item may be postfixed with a /[fdbi]. f returns file " "names, d returns directories, b returns true or false and i returns an " @@@ -2350,24 -2350,24 +2350,24 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:79 + #: apt-config.8.xml:73 msgid "Just show the contents of the configuration space." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:92 + #: apt-config.8.xml:86 msgid "" "Include options which have an empty value. This is the default, so use --no-" "empty to remove them from the output." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term><option><replaceable> - #: apt-config.8.xml:97 + #: apt-config.8.xml:91 msgid "%f "%v";%n" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-config.8.xml:98 + #: apt-config.8.xml:92 msgid "" "Defines the output of each config option. %t will be replaced with " "its individual name, %f with its full hierarchical name and %v " @@@ -2378,8 -2378,8 +2378,8 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-config.8.xml:112 apt-extracttemplates.1.xml:73 apt-sortpkgs.1.xml:66 - #: apt-ftparchive.1.xml:610 + #: apt-config.8.xml:106 apt-extracttemplates.1.xml:67 apt-sortpkgs.1.xml:60 + #: apt-ftparchive.1.xml:604 #, fuzzy msgid "&apt-conf;" msgstr "" @@@ -2388,34 -2388,34 +2388,34 @@@ " " #. type: Content of: <refentry><refsect1><para> - #: apt-config.8.xml:117 + #: apt-config.8.xml:111 msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" #. type: Content of: <refentry><refentryinfo><author><contrib> - #: apt.conf.5.xml:22 + #: apt.conf.5.xml:16 msgid "Initial documentation of Debug::*." msgstr "" #. type: Content of: <refentry><refentryinfo><author><email> - #: apt.conf.5.xml:23 + #: apt.conf.5.xml:17 msgid "dburrows@debian.org" msgstr "" #. type: Content of: <refentry><refmeta><manvolnum> - #: apt.conf.5.xml:33 apt_preferences.5.xml:27 sources.list.5.xml:28 + #: apt.conf.5.xml:27 apt_preferences.5.xml:21 sources.list.5.xml:22 msgid "5" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt.conf.5.xml:40 + #: apt.conf.5.xml:34 msgid "Configuration file for APT" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:44 + #: apt.conf.5.xml:38 msgid "" "<filename>/etc/apt/apt.conf</filename> is the main configuration file shared " "by all the tools in the APT suite of tools, though it is by no means the " @@@ -2424,21 -2424,21 +2424,21 @@@ msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><para> - #: apt.conf.5.xml:50 + #: apt.conf.5.xml:44 msgid "" "When an APT tool starts up it will read the configuration files in the " "following order:" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> - #: apt.conf.5.xml:52 + #: apt.conf.5.xml:46 msgid "" "the file specified by the <envar>APT_CONFIG</envar> environment variable (if " "any)" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> - #: apt.conf.5.xml:54 + #: apt.conf.5.xml:48 msgid "" "all files in <literal>Dir::Etc::Parts</literal> in alphanumeric ascending " "order which have either no or \"<literal>conf</literal>\" as filename " @@@ -2450,25 -2450,25 +2450,25 @@@ msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> - #: apt.conf.5.xml:61 + #: apt.conf.5.xml:55 msgid "" "the main configuration file specified by <literal>Dir::Etc::main</literal>" msgstr "" #. type: Content of: <refentry><refsect1><orderedlist><listitem><para> - #: apt.conf.5.xml:63 + #: apt.conf.5.xml:57 msgid "" "the command line options are applied to override the configuration " "directives or to load even more configuration files." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:67 + #: apt.conf.5.xml:61 msgid "Syntax" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:68 + #: apt.conf.5.xml:62 msgid "" "The configuration file is organized in a tree with options organized into " "functional groups. Option specification is given with a double colon " @@@ -2478,7 -2478,7 +2478,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:74 + #: apt.conf.5.xml:68 msgid "" "Syntactically the configuration language is modeled after what the ISC tools " "such as bind and dhcp use. Lines starting with <literal>//</literal> are " @@@ -2493,7 -2493,7 +2493,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> - #: apt.conf.5.xml:87 + #: apt.conf.5.xml:81 #, no-wrap msgid "" "APT {\n" @@@ -2505,7 -2505,7 +2505,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:95 + #: apt.conf.5.xml:89 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@@ -2513,27 -2513,27 +2513,27 @@@ msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> - #: apt.conf.5.xml:100 + #: apt.conf.5.xml:94 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:103 + #: apt.conf.5.xml:97 msgid "" "In general the sample configuration file &configureindex; is a good guide " "for how it should look." msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:106 + #: apt.conf.5.xml:100 msgid "" "Case is not significant in names of configuration items, so in the previous " "example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:109 + #: apt.conf.5.xml:103 msgid "" "Names for the configuration items are optional if a list is defined as can " "be seen in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If " @@@ -2543,7 -2543,7 +2543,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:114 + #: apt.conf.5.xml:108 msgid "" "Two special commands are defined: <literal>#include</literal> (which is " "deprecated and not supported by alternative implementations) and " @@@ -2555,7 -2555,7 +2555,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:124 + #: apt.conf.5.xml:118 msgid "" "The <literal>#clear</literal> command is the only way to delete a list or a " "complete scope. Reopening a scope (or using the syntax described below with " @@@ -2565,7 -2565,7 +2565,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:132 + #: apt.conf.5.xml:126 msgid "" "All of the APT tools take an -o option which allows an arbitrary " "configuration directive to be specified on the command line. The syntax is a " @@@ -2577,7 -2577,7 +2577,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:140 + #: apt.conf.5.xml:134 msgid "" "Note that appending items to a list using <literal>::</literal> only works " "for one item per line, and that you should not use it in combination with " @@@ -2594,19 -2594,19 +2594,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:155 + #: apt.conf.5.xml:149 msgid "The APT Group" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:156 + #: apt.conf.5.xml:150 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:161 + #: apt.conf.5.xml:155 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@@ -2614,7 -2614,7 +2614,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:168 + #: apt.conf.5.xml:162 msgid "" "All Architectures the system supports. For instance, CPUs implementing the " "<literal>amd64</literal> (also called <literal>x86-64</literal>) " @@@ -2627,7 -2627,7 +2627,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:182 + #: apt.conf.5.xml:176 msgid "" "List of all build profiles enabled for build-dependency resolution, without " "the \"<literal>profile.</literal>\" namespace prefix. By default this list " @@@ -2636,7 -2636,7 +2636,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:190 + #: apt.conf.5.xml:184 msgid "" "Default release to install packages from if more than one version is " "available. Contains release name, codename or release version. Examples: " @@@ -2645,14 -2645,14 +2645,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:196 + #: apt.conf.5.xml:190 msgid "" "Ignore held packages; this global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:201 + #: apt.conf.5.xml:195 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@@ -2661,7 -2661,7 +2661,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:209 + #: apt.conf.5.xml:203 msgid "" "Defaults to on, which will cause APT to install essential and important " "packages as soon as possible in an install/upgrade operation, in order to " @@@ -2676,7 -2676,7 +2676,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:221 + #: apt.conf.5.xml:215 msgid "" "The immediate configuration marker is also applied in the potentially " "problematic case of circular dependencies, since a dependency with the " @@@ -2693,7 -2693,7 +2693,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:234 + #: apt.conf.5.xml:228 msgid "" "Before a big operation like <literal>dist-upgrade</literal> is run with this " "option disabled you should try to explicitly <literal>install</literal> the " @@@ -2704,7 -2704,7 +2704,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:245 + #: apt.conf.5.xml:239 msgid "" "Never enable this option unless you <emphasis>really</emphasis> know what " "you are doing. It permits APT to temporarily remove an essential package to " @@@ -2717,7 -2717,7 +2717,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:257 + #: apt.conf.5.xml:251 msgid "" "APT uses since version 0.7.26 a resizable memory mapped cache file to store " "the available information. <literal>Cache-Start</literal> acts as a hint of " @@@ -2737,38 -2737,38 +2737,38 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:273 + #: apt.conf.5.xml:267 msgid "Defines which packages are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:277 + #: apt.conf.5.xml:271 msgid "" "The Get subsection controls the &apt-get; tool; please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:282 + #: apt.conf.5.xml:276 msgid "" "The Cache subsection controls the &apt-cache; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:287 + #: apt.conf.5.xml:281 msgid "" "The CDROM subsection controls the &apt-cdrom; tool; please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:293 + #: apt.conf.5.xml:287 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:294 + #: apt.conf.5.xml:288 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages as well as the various \"acquire methods\" responsible for the " @@@ -2776,7 -2776,7 +2776,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:301 + #: apt.conf.5.xml:295 msgid "" "Security related option defaulting to true, as giving a Release file's " "validation an expiration date prevents replay attacks over a long timescale, " @@@ -2789,7 -2789,7 +2789,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:314 + #: apt.conf.5.xml:308 msgid "" "Maximum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@@ -2801,7 -2801,7 +2801,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:326 + #: apt.conf.5.xml:320 msgid "" "Minimum time (in seconds) after its creation (as indicated by the " "<literal>Date</literal> header) that the <filename>Release</filename> file " @@@ -2813,7 -2813,7 +2813,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:338 + #: apt.conf.5.xml:332 msgid "" "Try to download deltas called <literal>PDiffs</literal> for indexes (like " "<filename>Packages</filename> files) instead of downloading whole ones. True " @@@ -2821,7 -2821,7 +2821,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:341 + #: apt.conf.5.xml:335 msgid "" "Two sub-options to limit the use of PDiffs are also available: " "<literal>FileLimit</literal> can be used to specify a maximum number of " @@@ -2832,7 -2832,7 +2832,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:351 + #: apt.conf.5.xml:345 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@@ -2842,21 -2842,21 +2842,21 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:359 + #: apt.conf.5.xml:353 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:364 + #: apt.conf.5.xml:358 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:369 + #: apt.conf.5.xml:363 msgid "" "<literal>http::Proxy</literal> sets the default proxy to use for HTTP URIs. " "It is in the standard form of <literal>http://[[user][:pass]@]host[:port]/</" @@@ -2868,7 -2868,7 +2868,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:377 + #: apt.conf.5.xml:371 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy not to use its cached " @@@ -2880,33 -2880,33 +2880,33 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:387 apt.conf.5.xml:475 + #: apt.conf.5.xml:381 apt.conf.5.xml:469 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method; this value applies to the connection as well as the data timeout." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:390 + #: apt.conf.5.xml:384 msgid "" "The setting <literal>Acquire::http::Pipeline-Depth</literal> can be used to " "enable HTTP pipelining (RFC 2616 section 8.1.2.2) which can be beneficial e." "g. on high-latency connections. It specifies how many requests are sent in a " -"pipeline. Previous APT versions had a default of 10 for this setting, but " -"the default value is now 0 (= disabled) to avoid problems with the ever-" -"growing amount of webservers and proxies which choose to not conform to the " -"HTTP/1.1 specification." +"pipeline. APT tries to detect and workaround misbehaving webservers and " +"proxies at runtime, but if you know that yours does not conform to the " +"HTTP/1.1 specification pipelining can be disabled by setting the value to 0. " +"It is enabled by default with the value 10." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:397 + #: apt.conf.5.xml:391 msgid "" "<literal>Acquire::http::AllowRedirect</literal> controls whether APT will " "follow redirects, which is enabled by default." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:400 + #: apt.conf.5.xml:394 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobytes per second. The default " @@@ -2916,7 -2916,7 +2916,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:407 + #: apt.conf.5.xml:401 msgid "" "<literal>Acquire::http::User-Agent</literal> can be used to set a different " "User-Agent for the http download method as some proxies allow access for " @@@ -2924,7 -2924,7 +2924,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:411 + #: apt.conf.5.xml:405 msgid "" "<literal>Acquire::http::Proxy-Auto-Detect</literal> can be used to specify " "an external command to discover the http proxy to use. Apt expects the " @@@ -2938,7 -2938,7 +2938,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:429 + #: apt.conf.5.xml:423 msgid "" "The <literal>Cache-control</literal>, <literal>Timeout</literal>, " "<literal>AllowRedirect</literal>, <literal>Dl-Limit</literal> and " @@@ -2949,7 -2949,7 +2949,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:437 + #: apt.conf.5.xml:431 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is the " @@@ -2971,7 -2971,7 +2971,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:458 + #: apt.conf.5.xml:452 msgid "" "<literal>ftp::Proxy</literal> sets the default proxy to use for FTP URIs. " "It is in the standard form of <literal>ftp://[[user][:pass]@]host[:port]/</" @@@ -2990,7 -2990,7 +2990,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:478 + #: apt.conf.5.xml:472 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on; it works in nearly every environment. However, " @@@ -3000,7 -3000,7 +3000,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:485 + #: apt.conf.5.xml:479 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to an HTTP URL - see the discussion of the http " @@@ -3009,7 -3009,7 +3009,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:490 + #: apt.conf.5.xml:484 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@@ -3019,13 -3019,13 +3019,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> - #: apt.conf.5.xml:504 + #: apt.conf.5.xml:498 #, no-wrap msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:499 + #: apt.conf.5.xml:493 msgid "" "For URIs using the <literal>cdrom</literal> method, the only configurable " "option is the mount point, <literal>cdrom::Mount</literal>, which must be " @@@ -3038,20 -3038,20 +3038,20 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:512 + #: apt.conf.5.xml:506 msgid "" "For GPGV URIs the only configurable option is <literal>gpgv::Options</" "literal>, which passes additional parameters to gpgv." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> - #: apt.conf.5.xml:523 + #: apt.conf.5.xml:517 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:518 + #: apt.conf.5.xml:512 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@@ -3063,19 -3063,19 +3063,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> - #: apt.conf.5.xml:528 + #: apt.conf.5.xml:522 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><synopsis> - #: apt.conf.5.xml:531 + #: apt.conf.5.xml:525 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:524 + #: apt.conf.5.xml:518 msgid "" "Also, the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@@ -3093,13 -3093,13 +3093,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><literallayout> - #: apt.conf.5.xml:538 + #: apt.conf.5.xml:532 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:533 + #: apt.conf.5.xml:527 msgid "" "Note that the <literal>Dir::Bin::<replaceable>Methodname</replaceable></" "literal> will be checked at run time. If this option has been set, the " @@@ -3114,7 -3114,7 +3114,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:543 + #: apt.conf.5.xml:537 msgid "" "The special type <literal>uncompressed</literal> can be used to give " "uncompressed files a preference, but note that most archives don't provide " @@@ -3122,7 -3122,7 +3122,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:550 + #: apt.conf.5.xml:544 msgid "" "When downloading <literal>gzip</literal> compressed indexes (Packages, " "Sources, or Translations), keep them gzip compressed locally instead of " @@@ -3131,7 -3131,7 +3131,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:558 + #: apt.conf.5.xml:552 msgid "" "The Languages subsection controls which <filename>Translation</filename> " "files are downloaded and in which order APT tries to display the description-" @@@ -3143,13 -3143,13 +3143,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><programlisting> - #: apt.conf.5.xml:575 + #: apt.conf.5.xml:569 #, no-wrap msgid "Acquire::Languages { \"environment\"; \"de\"; \"en\"; \"none\"; \"fr\"; };" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:563 + #: apt.conf.5.xml:557 msgid "" "The default list includes \"environment\" and \"en\". " "\"<literal>environment</literal>\" has a special meaning here: it will be " @@@ -3171,7 -3171,7 +3171,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:576 + #: apt.conf.5.xml:570 msgid "" "Note: To prevent problems resulting from APT being executed in different " "environments (e.g. by different users or by other programs) all Translation " @@@ -3180,22 -3180,22 +3180,22 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:585 + #: apt.conf.5.xml:579 msgid "When downloading, force to use only the IPv4 protocol." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:591 + #: apt.conf.5.xml:585 msgid "When downloading, force to use only the IPv6 protocol." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:598 + #: apt.conf.5.xml:592 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:600 + #: apt.conf.5.xml:594 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@@ -3207,7 -3207,7 +3207,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:607 + #: apt.conf.5.xml:601 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@@ -3221,7 -3221,7 +3221,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:617 + #: apt.conf.5.xml:611 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@@ -3231,7 -3231,7 +3231,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:623 + #: apt.conf.5.xml:617 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@@ -3239,7 -3239,7 +3239,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:627 + #: apt.conf.5.xml:621 msgid "" "Binary programs are pointed to by <literal>Dir::Bin</literal>. <literal>Dir::" "Bin::Methods</literal> specifies the location of the method handlers and " @@@ -3250,7 -3250,7 +3250,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:635 + #: apt.conf.5.xml:629 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@@ -3263,7 -3263,7 +3263,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:648 + #: apt.conf.5.xml:642 msgid "" "The <literal>Ignore-Files-Silently</literal> list can be used to specify " "which files APT should silently ignore while parsing the files in the " @@@ -3274,12 -3274,12 +3274,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:657 + #: apt.conf.5.xml:651 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:659 + #: apt.conf.5.xml:653 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behavior. These are in the <literal>DSelect</literal> " @@@ -3287,7 -3287,7 +3287,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:664 + #: apt.conf.5.xml:658 msgid "" "Cache Clean mode; this value may be one of <literal>always</literal>, " "<literal>prompt</literal>, <literal>auto</literal>, <literal>pre-auto</" @@@ -3300,40 -3300,40 +3300,40 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:678 + #: apt.conf.5.xml:672 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:683 + #: apt.conf.5.xml:677 msgid "" "The contents of this variable are passed to &apt-get; as command line " "options when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:688 + #: apt.conf.5.xml:682 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:694 + #: apt.conf.5.xml:688 msgid "How APT calls &dpkg;" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:695 + #: apt.conf.5.xml:689 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:700 + #: apt.conf.5.xml:694 msgid "" "This is a list of options to pass to &dpkg;. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@@ -3341,7 -3341,7 +3341,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:706 + #: apt.conf.5.xml:700 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -3350,7 -3350,7 +3350,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:713 + #: apt.conf.5.xml:707 msgid "" "This is a list of shell commands to run before invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@@ -3361,7 -3361,7 +3361,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:720 + #: apt.conf.5.xml:714 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@@ -3370,7 -3370,7 +3370,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:725 + #: apt.conf.5.xml:719 msgid "" "The version of the protocol to be used for the command " "<literal><replaceable>cmd</replaceable></literal> can be chosen by setting " @@@ -3381,7 -3381,7 +3381,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:732 + #: apt.conf.5.xml:726 msgid "" "The file descriptor to be used to send the information can be requested with " "<literal>DPkg::Tools::options::<replaceable>cmd</replaceable>::InfoFD</" @@@ -3392,26 -3392,26 +3392,26 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:742 + #: apt.conf.5.xml:736 msgid "" "APT chdirs to this directory before invoking &dpkg;, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:747 + #: apt.conf.5.xml:741 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages; the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt.conf.5.xml:752 + #: apt.conf.5.xml:746 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt.conf.5.xml:753 + #: apt.conf.5.xml:747 msgid "" "APT can call &dpkg; in such a way as to let it make aggressive use of " "triggers over multiple calls of &dpkg;. Without further options &dpkg; will " @@@ -3426,7 -3426,7 +3426,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> - #: apt.conf.5.xml:768 + #: apt.conf.5.xml:762 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@@ -3436,7 -3436,7 +3436,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt.conf.5.xml:762 + #: apt.conf.5.xml:756 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@@ -3450,7 -3450,7 +3450,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:775 + #: apt.conf.5.xml:769 msgid "" "Add the no triggers flag to all &dpkg; calls (except the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@@ -3463,7 -3463,7 +3463,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:783 + #: apt.conf.5.xml:777 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". The default value is \"<literal>all</literal>" @@@ -3480,7 -3480,7 +3480,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:798 + #: apt.conf.5.xml:792 msgid "" "If this option is set APT will call <command>dpkg --configure --pending</" "command> to let &dpkg; handle all required configurations and triggers. This " @@@ -3491,7 -3491,7 +3491,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:805 + #: apt.conf.5.xml:799 msgid "" "Useful for the <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal>, and " @@@ -3501,7 -3501,7 +3501,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> - #: apt.conf.5.xml:818 + #: apt.conf.5.xml:812 #, no-wrap msgid "" "OrderList::Score {\n" @@@ -3513,7 -3513,7 +3513,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:811 + #: apt.conf.5.xml:805 msgid "" "Essential packages (and their dependencies) should be configured immediately " "after unpacking. It is a good idea to do this quite early in the upgrade " @@@ -3527,12 -3527,12 +3527,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:831 + #: apt.conf.5.xml:825 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:832 + #: apt.conf.5.xml:826 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by the " @@@ -3541,12 -3541,12 +3541,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:840 + #: apt.conf.5.xml:834 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:842 + #: apt.conf.5.xml:836 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@@ -3557,7 -3557,7 +3557,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.conf.5.xml:853 + #: apt.conf.5.xml:847 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@@ -3565,7 -3565,7 +3565,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.conf.5.xml:861 + #: apt.conf.5.xml:855 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@@ -3573,7 -3573,7 +3573,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.conf.5.xml:870 + #: apt.conf.5.xml:864 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@@ -3583,66 -3583,66 +3583,66 @@@ msgstr " #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: apt.conf.5.xml:878 + #: apt.conf.5.xml:872 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CD-ROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:888 + #: apt.conf.5.xml:882 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:897 + #: apt.conf.5.xml:891 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:908 + #: apt.conf.5.xml:902 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:919 + #: apt.conf.5.xml:913 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:930 + #: apt.conf.5.xml:924 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:941 + #: apt.conf.5.xml:935 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:952 + #: apt.conf.5.xml:946 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:962 + #: apt.conf.5.xml:956 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:972 + #: apt.conf.5.xml:966 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:982 + #: apt.conf.5.xml:976 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@@ -3650,53 -3650,53 +3650,53 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:993 + #: apt.conf.5.xml:987 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1005 + #: apt.conf.5.xml:999 msgid "Log when items are added to or removed from the global download queue." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1015 + #: apt.conf.5.xml:1009 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1025 + #: apt.conf.5.xml:1019 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1037 + #: apt.conf.5.xml:1031 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1048 + #: apt.conf.5.xml:1042 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1059 + #: apt.conf.5.xml:1053 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1069 + #: apt.conf.5.xml:1063 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@@ -3706,7 -3706,7 +3706,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1083 + #: apt.conf.5.xml:1077 msgid "" "Generate debug messages describing which packages are marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@@ -3724,46 -3724,46 +3724,46 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1104 + #: apt.conf.5.xml:1098 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1115 + #: apt.conf.5.xml:1109 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1126 + #: apt.conf.5.xml:1120 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1138 + #: apt.conf.5.xml:1132 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1149 + #: apt.conf.5.xml:1143 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1159 + #: apt.conf.5.xml:1153 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1170 + #: apt.conf.5.xml:1164 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@@ -3771,14 -3771,14 +3771,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1182 + #: apt.conf.5.xml:1176 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt.conf.5.xml:1192 + #: apt.conf.5.xml:1186 msgid "" "Display the external commands that are called by apt hooks. This includes e." "g. the config options <literal>DPkg::{Pre,Post}-Invoke</literal> or " @@@ -3786,14 -3786,14 +3786,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt.conf.5.xml:1216 apt_preferences.5.xml:547 sources.list.5.xml:239 - #: apt-ftparchive.1.xml:598 + #: apt.conf.5.xml:1210 apt_preferences.5.xml:541 sources.list.5.xml:233 + #: apt-ftparchive.1.xml:592 #, fuzzy msgid "Examples" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:1217 + #: apt.conf.5.xml:1211 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@@ -3801,19 -3801,19 +3801,19 @@@ msgstr " #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> - #: apt.conf.5.xml:1229 + #: apt.conf.5.xml:1223 #, fuzzy msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt_preferences.5.xml:34 + #: apt_preferences.5.xml:28 #, fuzzy msgid "Preference control file for APT" msgstr "Arquivo de controle de preferências para o APT" #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:39 + #: apt_preferences.5.xml:33 #, fuzzy msgid "" "The APT preferences file <filename>/etc/apt/preferences</filename> and the " @@@ -3826,7 -3826,7 +3826,7 @@@ msgstr " "para instalação." #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:44 + #: apt_preferences.5.xml:38 #, fuzzy msgid "" "Several versions of a package may be available for installation when the " @@@ -3849,7 -3849,7 +3849,7 @@@ msgstr " "selecionada para instalação." #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:54 + #: apt_preferences.5.xml:48 #, fuzzy msgid "" "Several instances of the same version of a package may be available when the " @@@ -3865,7 -3865,7 +3865,7 @@@ msgstr " "a escolha da instância." #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:61 + #: apt_preferences.5.xml:55 msgid "" "Preferences are a strong power in the hands of a system administrator but " "they can become also their biggest nightmare if used without care! APT will " @@@ -3879,7 -3879,7 +3879,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:72 + #: apt_preferences.5.xml:66 msgid "" "Note that the files in the <filename>/etc/apt/preferences.d</filename> " "directory are parsed in alphanumeric ascending order and need to obey the " @@@ -3892,13 -3892,13 +3892,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:81 + #: apt_preferences.5.xml:75 #, fuzzy msgid "APT's Default Priority Assignments" msgstr "Atribuições de Prioridade Padrão do APT" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:96 + #: apt_preferences.5.xml:90 #, fuzzy, no-wrap msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" msgstr "" @@@ -3906,7 -3906,7 +3906,7 @@@ "<command>apt-get install -t testing <replaceable>algum-pacote</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:99 + #: apt_preferences.5.xml:93 #, fuzzy, no-wrap msgid "APT::Default-Release \"stable\";\n" msgstr "" @@@ -3914,7 -3914,7 +3914,7 @@@ "APT::Default-Release \"stable\";\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:83 + #: apt_preferences.5.xml:77 #, fuzzy msgid "" "If there is no preferences file or if there is no entry in the file that " @@@ -3939,7 -3939,7 +3939,7 @@@ msgstr " "etc/apt/apt.conf</filename>. Por exemplo," #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:103 + #: apt_preferences.5.xml:97 #, fuzzy msgid "" "If the target release has been specified then APT uses the following " @@@ -3950,13 -3950,13 +3950,13 @@@ msgstr " "Atribuirá :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:108 + #: apt_preferences.5.xml:102 #, fuzzy msgid "priority 1" msgstr "prioridade 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:109 + #: apt_preferences.5.xml:103 msgid "" "to the versions coming from archives which in their <filename>Release</" "filename> files are marked as \"NotAutomatic: yes\" but <emphasis>not</" @@@ -3965,13 -3965,13 +3965,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:115 + #: apt_preferences.5.xml:109 #, fuzzy msgid "priority 100" msgstr "prioridade 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:116 + #: apt_preferences.5.xml:110 msgid "" "to the version that is already installed (if any) and to the versions coming " "from archives which in their <filename>Release</filename> files are marked " @@@ -3980,13 -3980,13 +3980,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:123 + #: apt_preferences.5.xml:117 #, fuzzy msgid "priority 500" msgstr "prioridade 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:124 + #: apt_preferences.5.xml:118 #, fuzzy msgid "" "to the versions that are not installed and do not belong to the target " @@@ -3995,13 -3995,13 +3995,13 @@@ msgstr " "para as instâncias que não estã instaladas e que não pertencem a versão alvo." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:128 + #: apt_preferences.5.xml:122 #, fuzzy msgid "priority 990" msgstr "prioridade 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:129 + #: apt_preferences.5.xml:123 #, fuzzy msgid "" "to the versions that are not installed and belong to the target release." @@@ -4009,7 -4009,7 +4009,7 @@@ msgstr " "para as instâncias que não estejam instaladas e pertençam a versão alvo." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:134 + #: apt_preferences.5.xml:128 #, fuzzy msgid "" "If the target release has not been specified then APT simply assigns " @@@ -4024,7 -4024,7 +4024,7 @@@ msgstr " "prioridade 500 para todas as instâncias de pacotes não instaladas." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:141 + #: apt_preferences.5.xml:135 #, fuzzy msgid "" "APT then applies the following rules, listed in order of precedence, to " @@@ -4034,7 -4034,7 +4034,7 @@@ msgstr " "determinar qual instância de um pacote instalar." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:144 + #: apt_preferences.5.xml:138 #, fuzzy msgid "" "Never downgrade unless the priority of an available version exceeds 1000. " @@@ -4051,13 -4051,13 +4051,13 @@@ msgstr " "\"downgrade\" pode ser arriscado.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:150 + #: apt_preferences.5.xml:144 #, fuzzy msgid "Install the highest priority version." msgstr "Instala a instância de prioridade mais alta." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:151 + #: apt_preferences.5.xml:145 #, fuzzy msgid "" "If two or more versions have the same priority, install the most recent one " @@@ -4067,7 -4067,7 +4067,7 @@@ msgstr " "mais recente (ou seja, aquela com o maior número de versão)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:154 + #: apt_preferences.5.xml:148 #, fuzzy msgid "" "If two or more versions have the same priority and version number but either " @@@ -4079,7 -4079,7 +4079,7 @@@ msgstr " "<literal>--reinstall</literal> seja fornecida, instala aquela desinstalada." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:160 + #: apt_preferences.5.xml:154 #, fuzzy msgid "" "In a typical situation, the installed version of a package (priority 100) " @@@ -4096,7 -4096,7 +4096,7 @@@ msgstr " "forem executados." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:167 + #: apt_preferences.5.xml:161 #, fuzzy msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " @@@ -4111,7 -4111,7 +4111,7 @@@ msgstr " "upgrade</command> forem executados." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:172 + #: apt_preferences.5.xml:166 #, fuzzy msgid "" "Sometimes the installed version of a package is more recent than the version " @@@ -4131,13 -4131,13 +4131,13 @@@ msgstr " "disponíveis possuir uma prioridade maior do que a versão instalada." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:181 + #: apt_preferences.5.xml:175 #, fuzzy msgid "The Effect of APT Preferences" msgstr "O Efeito das Preferências do APT" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:183 + #: apt_preferences.5.xml:177 #, fuzzy msgid "" "The APT preferences file allows the system administrator to control the " @@@ -4151,7 -4151,7 +4151,7 @@@ msgstr " "das duas formas, uma forma específica e uma forma geral." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:189 + #: apt_preferences.5.xml:183 #, fuzzy msgid "" "The specific form assigns a priority (a \"Pin-Priority\") to one or more " @@@ -4168,7 -4168,7 +4168,7 @@@ msgstr " "com \"<literal>5.8</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:196 + #: apt_preferences.5.xml:190 #, fuzzy, no-wrap msgid "" "Package: perl\n" @@@ -4181,7 -4181,7 +4181,7 @@@ msgstr " "Pin-Priority: 1001\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:202 + #: apt_preferences.5.xml:196 #, fuzzy msgid "" "The general form assigns a priority to all of the package versions in a " @@@ -4197,7 -4197,7 +4197,7 @@@ msgstr " "identificado pelo nome de domínio totalmente qualificado do site Internet." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:208 + #: apt_preferences.5.xml:202 #, fuzzy msgid "" "This general-form entry in the APT preferences file applies only to groups " @@@ -4210,7 -4210,7 +4210,7 @@@ msgstr " "no site local." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:213 + #: apt_preferences.5.xml:207 #, fuzzy, no-wrap msgid "" "Package: *\n" @@@ -4223,7 -4223,7 +4223,7 @@@ msgstr " "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:218 + #: apt_preferences.5.xml:212 msgid "" "A note of caution: the keyword used here is \"<literal>origin</literal>\" " "which can be used to match a hostname. The following record will assign a " @@@ -4232,7 -4232,7 +4232,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:222 + #: apt_preferences.5.xml:216 #, fuzzy, no-wrap msgid "" "Package: *\n" @@@ -4245,7 -4245,7 +4245,7 @@@ msgstr " "Pin-Priority: 999\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:226 + #: apt_preferences.5.xml:220 #, fuzzy msgid "" "This should <emphasis>not</emphasis> be confused with the Origin of a " @@@ -4262,7 -4262,7 +4262,7 @@@ msgstr " "como \"Debian\" ou \"Ximian\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:231 + #: apt_preferences.5.xml:225 #, fuzzy msgid "" "The following record assigns a low priority to all package versions " @@@ -4274,7 -4274,7 +4274,7 @@@ msgstr " "\"<literal>unstable</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:235 + #: apt_preferences.5.xml:229 #, fuzzy, no-wrap msgid "" "Package: *\n" @@@ -4287,7 -4287,7 +4287,7 @@@ msgstr " "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:240 + #: apt_preferences.5.xml:234 #, fuzzy msgid "" "The following record assigns a high priority to all package versions " @@@ -4299,7 -4299,7 +4299,7 @@@ msgstr " "\"<literal>unstable</literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:244 + #: apt_preferences.5.xml:238 #, fuzzy, no-wrap msgid "" "Package: *\n" @@@ -4312,7 -4312,7 +4312,7 @@@ msgstr " "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:249 + #: apt_preferences.5.xml:243 #, fuzzy msgid "" "The following record assigns a high priority to all package versions " @@@ -4325,7 -4325,7 +4325,7 @@@ msgstr " "literal>\"." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> - #: apt_preferences.5.xml:254 + #: apt_preferences.5.xml:248 #, fuzzy, no-wrap msgid "" "Package: *\n" @@@ -4338,12 -4338,12 +4338,12 @@@ msgstr " "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:264 + #: apt_preferences.5.xml:258 msgid "Regular expressions and &glob; syntax" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:266 + #: apt_preferences.5.xml:260 msgid "" "APT also supports pinning by &glob; expressions, and regular expressions " "surrounded by slashes. For example, the following example assigns the " @@@ -4353,7 -4353,7 +4353,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><programlisting> - #: apt_preferences.5.xml:275 + #: apt_preferences.5.xml:269 #, fuzzy, no-wrap msgid "" "Package: gnome* /kde/\n" @@@ -4366,7 -4366,7 +4366,7 @@@ msgstr " "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:281 + #: apt_preferences.5.xml:275 msgid "" "The rule for those expressions is that they can occur anywhere where a " "string can occur. Thus, the following pin assigns the priority 990 to all " @@@ -4374,7 -4374,7 +4374,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><programlisting> - #: apt_preferences.5.xml:287 + #: apt_preferences.5.xml:281 #, fuzzy, no-wrap msgid "" "Package: *\n" @@@ -4387,7 -4387,7 +4387,7 @@@ msgstr " "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:293 + #: apt_preferences.5.xml:287 msgid "" "If a regular expression occurs in a <literal>Package</literal> field, the " "behavior is the same as if this regular expression were replaced with a list " @@@ -4398,13 -4398,13 +4398,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:309 + #: apt_preferences.5.xml:303 #, fuzzy msgid "How APT Interprets Priorities" msgstr "Como o APT Interpreta Prioridades" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:312 + #: apt_preferences.5.xml:306 #, fuzzy msgid "" "Priorities (P) assigned in the APT preferences file must be positive or " @@@ -4415,12 -4415,12 +4415,12 @@@ msgstr " "seguir (a grosso modo):" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:317 + #: apt_preferences.5.xml:311 msgid "P >= 1000" msgstr "P >= 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:318 + #: apt_preferences.5.xml:312 #, fuzzy msgid "" "causes a version to be installed even if this constitutes a downgrade of the " @@@ -4430,12 -4430,12 +4430,12 @@@ msgstr " "dowgrade do pacote" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:322 + #: apt_preferences.5.xml:316 msgid "990 <= P < 1000" msgstr "990 <= P < 1000" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:323 + #: apt_preferences.5.xml:317 #, fuzzy msgid "" "causes a version to be installed even if it does not come from the target " @@@ -4445,12 -4445,12 +4445,12 @@@ msgstr " "versão alvo, a menos que a versão instalada seja mais recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:328 + #: apt_preferences.5.xml:322 msgid "500 <= P < 990" msgstr "500 <= P < 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:329 + #: apt_preferences.5.xml:323 #, fuzzy msgid "" "causes a version to be installed unless there is a version available " @@@ -4460,12 -4460,12 +4460,12 @@@ msgstr " "disponível pertencente a versão alvo ou a versão instalada seja mais recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:334 + #: apt_preferences.5.xml:328 msgid "100 <= P < 500" msgstr "100 <= P < 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:335 + #: apt_preferences.5.xml:329 #, fuzzy msgid "" "causes a version to be installed unless there is a version available " @@@ -4476,12 -4476,12 +4476,12 @@@ msgstr " "seja mais recente" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:340 + #: apt_preferences.5.xml:334 msgid "0 < P < 100" msgstr "0 < P < 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:341 + #: apt_preferences.5.xml:335 #, fuzzy msgid "" "causes a version to be installed only if there is no installed version of " @@@ -4491,18 -4491,18 +4491,18 @@@ msgstr " "instalada do pacote" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:345 + #: apt_preferences.5.xml:339 msgid "P < 0" msgstr "P < 0" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:346 + #: apt_preferences.5.xml:340 #, fuzzy msgid "prevents the version from being installed" msgstr "impede a versão de ser instalada" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:351 + #: apt_preferences.5.xml:345 #, fuzzy msgid "" "If any specific-form records match an available package version then the " @@@ -4518,7 -4518,7 +4518,7 @@@ msgstr " "determinará a prioridade da versão do pacote." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:357 + #: apt_preferences.5.xml:351 #, fuzzy msgid "" "For example, suppose the APT preferences file contains the three records " @@@ -4528,7 -4528,7 +4528,7 @@@ msgstr " "registros apresentados anteriormente :" #. type: Content of: <refentry><refsect1><refsect2><programlisting> - #: apt_preferences.5.xml:361 + #: apt_preferences.5.xml:355 #, fuzzy, no-wrap msgid "" "Package: perl\n" @@@ -4557,12 -4557,12 +4557,12 @@@ msgstr " "Pin-Priority: 50\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:374 + #: apt_preferences.5.xml:368 msgid "Then:" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:376 + #: apt_preferences.5.xml:370 #, fuzzy msgid "" "The most recent available version of the <literal>perl</literal> package " @@@ -4578,7 -4578,7 +4578,7 @@@ msgstr " "será feito um downgrade do <literal>perl</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:381 + #: apt_preferences.5.xml:375 #, fuzzy msgid "" "A version of any package other than <literal>perl</literal> that is " @@@ -4590,7 -4590,7 +4590,7 @@@ msgstr " "mesmo versões pertencentes a versão alvo." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> - #: apt_preferences.5.xml:385 + #: apt_preferences.5.xml:379 #, fuzzy msgid "" "A version of a package whose origin is not the local system but some other " @@@ -4605,13 -4605,13 +4605,13 @@@ msgstr " "instalada." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:395 + #: apt_preferences.5.xml:389 #, fuzzy msgid "Determination of Package Version and Distribution Properties" msgstr "Determinação da Versão do Pacote e Propriedades da Distribuição" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:397 + #: apt_preferences.5.xml:391 #, fuzzy msgid "" "The locations listed in the &sources-list; file should provide " @@@ -4623,7 -4623,7 +4623,7 @@@ msgstr " "os pacotes disponíveis nessas localidades." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:401 + #: apt_preferences.5.xml:395 #, fuzzy msgid "" "The <filename>Packages</filename> file is normally found in the directory " @@@ -4644,31 -4644,31 +4644,31 @@@ msgstr " "do APT :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:409 + #: apt_preferences.5.xml:403 #, fuzzy msgid "the <literal>Package:</literal> line" msgstr "a linha <literal>Package:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:410 + #: apt_preferences.5.xml:404 #, fuzzy msgid "gives the package name" msgstr "informa o nome do pacote" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:413 apt_preferences.5.xml:463 + #: apt_preferences.5.xml:407 apt_preferences.5.xml:457 #, fuzzy msgid "the <literal>Version:</literal> line" msgstr "a linha <literal>Version:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:414 + #: apt_preferences.5.xml:408 #, fuzzy msgid "gives the version number for the named package" msgstr "informa o número de versão do pacote" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:419 + #: apt_preferences.5.xml:413 #, fuzzy msgid "" "The <filename>Release</filename> file is normally found in the directory " @@@ -4691,13 -4691,13 +4691,13 @@@ msgstr " "do APT :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:430 + #: apt_preferences.5.xml:424 #, fuzzy msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" msgstr "a linha <literal>Archive:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:431 + #: apt_preferences.5.xml:425 #, fuzzy msgid "" "names the archive to which all the packages in the directory tree belong. " @@@ -4715,7 -4715,7 +4715,7 @@@ msgstr " "requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:441 + #: apt_preferences.5.xml:435 #, fuzzy, no-wrap msgid "Pin: release a=stable\n" msgstr "" @@@ -4723,13 -4723,13 +4723,13 @@@ "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:447 + #: apt_preferences.5.xml:441 #, fuzzy msgid "the <literal>Codename:</literal> line" msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:448 + #: apt_preferences.5.xml:442 #, fuzzy msgid "" "names the codename to which all the packages in the directory tree belong. " @@@ -4747,7 -4747,7 +4747,7 @@@ msgstr " "requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:457 + #: apt_preferences.5.xml:451 #, fuzzy, no-wrap msgid "Pin: release n=&testing-codename;\n" msgstr "" @@@ -4755,7 -4755,7 +4755,7 @@@ "Pin: release a=stable\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:464 + #: apt_preferences.5.xml:458 #, fuzzy msgid "" "names the release version. For example, the packages in the tree might " @@@ -4773,7 -4773,7 +4773,7 @@@ msgstr " "linhas a seguir." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:473 + #: apt_preferences.5.xml:467 #, fuzzy, no-wrap msgid "" "Pin: release v=&stable-version;\n" @@@ -4786,13 -4786,13 +4786,13 @@@ msgstr " "Pin: release 3.0\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:482 + #: apt_preferences.5.xml:476 #, fuzzy msgid "the <literal>Component:</literal> line" msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:483 + #: apt_preferences.5.xml:477 #, fuzzy msgid "" "names the licensing component associated with the packages in the directory " @@@ -4811,7 -4811,7 +4811,7 @@@ msgstr " "requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:492 + #: apt_preferences.5.xml:486 #, fuzzy, no-wrap msgid "Pin: release c=main\n" msgstr "" @@@ -4819,13 -4819,13 +4819,13 @@@ "Pin: release c=main\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:498 + #: apt_preferences.5.xml:492 #, fuzzy msgid "the <literal>Origin:</literal> line" msgstr "a linha <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:499 + #: apt_preferences.5.xml:493 #, fuzzy msgid "" "names the originator of the packages in the directory tree of the " @@@ -4839,7 -4839,7 +4839,7 @@@ msgstr " "requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:505 + #: apt_preferences.5.xml:499 #, fuzzy, no-wrap msgid "Pin: release o=Debian\n" msgstr "" @@@ -4847,13 -4847,13 +4847,13 @@@ "Pin: release o=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> - #: apt_preferences.5.xml:511 + #: apt_preferences.5.xml:505 #, fuzzy msgid "the <literal>Label:</literal> line" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> - #: apt_preferences.5.xml:512 + #: apt_preferences.5.xml:506 #, fuzzy msgid "" "names the label of the packages in the directory tree of the " @@@ -4866,7 -4866,7 +4866,7 @@@ msgstr " "arquivo de preferências do APT iria requerer a linha :" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> - #: apt_preferences.5.xml:518 + #: apt_preferences.5.xml:512 #, fuzzy, no-wrap msgid "Pin: release l=Debian\n" msgstr "" @@@ -4874,7 -4874,7 +4874,7 @@@ "Pin: release l=Debian\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:525 + #: apt_preferences.5.xml:519 #, fuzzy msgid "" "All of the <filename>Packages</filename> and <filename>Release</filename> " @@@ -4900,13 -4900,13 +4900,13 @@@ msgstr " "<literal>unstable</literal>." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:538 + #: apt_preferences.5.xml:532 #, fuzzy msgid "Optional Lines in an APT Preferences Record" msgstr "Linhas Opcionais em um Registro de Preferências do APT" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:540 + #: apt_preferences.5.xml:534 #, fuzzy msgid "" "Each record in the APT preferences file can optionally begin with one or " @@@ -4918,13 -4918,13 +4918,13 @@@ msgstr " "</literal>. Isto oferece um local para inserir comentários." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:549 + #: apt_preferences.5.xml:543 #, fuzzy msgid "Tracking Stable" msgstr "Acompanhando a Stable" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:557 + #: apt_preferences.5.xml:551 #, fuzzy, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated\n" @@@ -4949,7 -4949,7 +4949,7 @@@ msgstr " "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:551 + #: apt_preferences.5.xml:545 #, fuzzy msgid "" "The following APT preferences file will cause APT to assign a priority " @@@ -4965,8 -4965,8 +4965,8 @@@ msgstr " "outras distribuições <literal>Debian</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:574 apt_preferences.5.xml:620 - #: apt_preferences.5.xml:678 + #: apt_preferences.5.xml:568 apt_preferences.5.xml:614 + #: apt_preferences.5.xml:672 #, fuzzy, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@@ -4979,7 -4979,7 +4979,7 @@@ msgstr " "apt-get dist-upgrade\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:569 + #: apt_preferences.5.xml:563 #, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " @@@ -4992,7 -4992,7 +4992,7 @@@ msgstr " "ulítma(s) versão(ôes) <literal>stable</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:586 + #: apt_preferences.5.xml:580 #, fuzzy, no-wrap msgid "apt-get install <replaceable>package</replaceable>/testing\n" msgstr "" @@@ -5000,7 -5000,7 +5000,7 @@@ "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:580 + #: apt_preferences.5.xml:574 #, fuzzy msgid "" "The following command will cause APT to upgrade the specified package to the " @@@ -5013,13 -5013,13 +5013,13 @@@ msgstr " "atualizado novamente a menos que esse comando seja executado novamente." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:592 + #: apt_preferences.5.xml:586 #, fuzzy msgid "Tracking Testing or Unstable" msgstr "Acompanhando a Testing" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:601 + #: apt_preferences.5.xml:595 #, fuzzy, no-wrap msgid "" "Package: *\n" @@@ -5048,7 -5048,7 +5048,7 @@@ msgstr " "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:594 + #: apt_preferences.5.xml:588 #, fuzzy msgid "" "The following APT preferences file will cause APT to assign a high priority " @@@ -5065,7 -5065,7 +5065,7 @@@ msgstr " "versões de pacotes de outras distribuições <literal>Debian</literal>." #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:615 + #: apt_preferences.5.xml:609 #, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " @@@ -5078,7 -5078,7 +5078,7 @@@ msgstr " "a(s) última(s) versão(ões) <literal>testing</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:635 + #: apt_preferences.5.xml:629 #, fuzzy, no-wrap msgid "apt-get install <replaceable>package</replaceable>/unstable\n" msgstr "" @@@ -5086,7 -5086,7 +5086,7 @@@ "apt-get install <replaceable>pacote</replaceable>/unstable\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:626 + #: apt_preferences.5.xml:620 #, fuzzy msgid "" "The following command will cause APT to upgrade the specified package to the " @@@ -5106,12 -5106,12 +5106,12 @@@ msgstr " "recente que a versão instalada." #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt_preferences.5.xml:642 + #: apt_preferences.5.xml:636 msgid "Tracking the evolution of a codename release" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:656 + #: apt_preferences.5.xml:650 #, fuzzy, no-wrap msgid "" "Explanation: Uninstall or do not install any Debian-originated package versions\n" @@@ -5141,7 -5141,7 +5141,7 @@@ msgstr " "Pin-Priority: -10\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:644 + #: apt_preferences.5.xml:638 msgid "" "The following APT preferences file will cause APT to assign a priority " "higher than the default (500) to all package versions belonging to a " @@@ -5156,7 -5156,7 +5156,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:673 + #: apt_preferences.5.xml:667 #, fuzzy msgid "" "With a suitable &sources-list; file and the above preferences file, any of " @@@ -5169,7 -5169,7 +5169,7 @@@ msgstr " "ulítma(s) versão(ôes) <literal>stable</literal>." #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt_preferences.5.xml:693 + #: apt_preferences.5.xml:687 #, fuzzy, no-wrap msgid "apt-get install <replaceable>package</replaceable>/sid\n" msgstr "" @@@ -5177,7 -5177,7 +5177,7 @@@ "apt-get install <replaceable>pacote</replaceable>/testing\n" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt_preferences.5.xml:684 + #: apt_preferences.5.xml:678 #, fuzzy msgid "" "The following command will cause APT to upgrade the specified package to the " @@@ -5197,18 -5197,18 +5197,18 @@@ msgstr " "recente que a versão instalada." #. type: Content of: <refentry><refsect1><para> - #: apt_preferences.5.xml:708 + #: apt_preferences.5.xml:702 #, fuzzy msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refnamediv><refpurpose> - #: sources.list.5.xml:35 + #: sources.list.5.xml:29 msgid "List of configured APT data sources" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:40 + #: sources.list.5.xml:34 msgid "" "The source list <filename>/etc/apt/sources.list</filename> is designed to " "support any number of active sources and a variety of source media. The file " @@@ -5219,7 -5219,7 +5219,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:47 + #: sources.list.5.xml:41 msgid "" "Each line specifying a source starts with type (e.g. <literal>deb-src</" "literal>) followed by options and arguments for this type. Individual " @@@ -5229,12 -5229,12 +5229,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: sources.list.5.xml:55 + #: sources.list.5.xml:49 msgid "sources.list.d" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:56 + #: sources.list.5.xml:50 msgid "" "The <filename>/etc/apt/sources.list.d</filename> directory provides a way to " "add sources.list entries in separate files. The format is the same as for " @@@ -5247,12 -5247,12 +5247,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: sources.list.5.xml:67 + #: sources.list.5.xml:61 msgid "The deb and deb-src types" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:68 + #: sources.list.5.xml:62 msgid "" "The <literal>deb</literal> type references a typical two-level Debian " "archive, <filename>distribution/component</filename>. The " @@@ -5267,20 -5267,20 +5267,20 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:79 + #: sources.list.5.xml:73 msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types is:" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:82 + #: sources.list.5.xml:76 #, no-wrap msgid "deb [ options ] uri suite [component1] [component2] [...]" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> - #: sources.list.5.xml:86 + #: sources.list.5.xml:80 #, no-wrap msgid "" " Types: deb deb-src\n" @@@ -5303,14 -5303,14 +5303,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:84 + #: sources.list.5.xml:78 msgid "" "Alternatively a rfc822 style format is also supported: <placeholder type=" "\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:105 + #: sources.list.5.xml:99 msgid "" "The URI for the <literal>deb</literal> type must specify the base of the " "Debian distribution, from which APT will find the information it needs. " @@@ -5323,7 -5323,7 +5323,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:114 + #: sources.list.5.xml:108 msgid "" "<literal>suite</literal> may also contain a variable, <literal>$(ARCH)</" "literal> which expands to the Debian architecture (such as <literal>amd64</" @@@ -5335,7 -5335,7 +5335,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:122 + #: sources.list.5.xml:116 msgid "" "In the traditional style sources.list format since only one distribution can " "be specified per line it may be necessary to have multiple lines for the " @@@ -5351,7 -5351,7 +5351,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:136 + #: sources.list.5.xml:130 msgid "" "<literal>options</literal> is always optional and needs to be surrounded by " "square brackets. It can consist of multiple settings in the form " @@@ -5362,7 -5362,7 +5362,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: sources.list.5.xml:142 + #: sources.list.5.xml:136 msgid "" "<literal>arch=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> can be used to specify for which architectures " @@@ -5372,7 -5372,7 +5372,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: sources.list.5.xml:146 + #: sources.list.5.xml:140 msgid "" "<literal>arch+=<replaceable>arch1</replaceable>,<replaceable>arch2</" "replaceable>,…</literal> and <literal>arch-=<replaceable>arch1</replaceable>," @@@ -5381,7 -5381,7 +5381,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> - #: sources.list.5.xml:149 + #: sources.list.5.xml:143 msgid "" "<literal>trusted=yes</literal> can be set to indicate that packages from " "this source are always authenticated even if the <filename>Release</" @@@ -5392,7 -5392,7 +5392,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:156 + #: sources.list.5.xml:150 msgid "" "It is important to list sources in order of preference, with the most " "preferred source listed first. Typically this will result in sorting by " @@@ -5401,13 -5401,13 +5401,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:161 + #: sources.list.5.xml:155 #, fuzzy msgid "Some examples:" msgstr "Exemplos" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:163 + #: sources.list.5.xml:157 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main contrib non-free\n" @@@ -5416,17 -5416,17 +5416,17 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: sources.list.5.xml:169 + #: sources.list.5.xml:163 msgid "URI specification" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:171 + #: sources.list.5.xml:165 msgid "The currently recognized URI types are:" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:175 + #: sources.list.5.xml:169 msgid "" "The file scheme allows an arbitrary directory in the file system to be " "considered an archive. This is useful for NFS mounts and local mirrors or " @@@ -5434,14 -5434,14 +5434,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:182 + #: sources.list.5.xml:176 msgid "" "The cdrom scheme allows APT to use a local CD-ROM drive with media swapping. " "Use the &apt-cdrom; program to create cdrom entries in the source list." msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:189 + #: sources.list.5.xml:183 msgid "" "The http scheme specifies an HTTP server for the archive. If an environment " "variable <envar>http_proxy</envar> is set with the format http://server:" @@@ -5452,7 -5452,7 +5452,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:200 + #: sources.list.5.xml:194 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " "is highly configurable; for more information see the &apt-conf; manual page. " @@@ -5465,7 -5465,7 +5465,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:212 + #: sources.list.5.xml:206 msgid "" "The copy scheme is identical to the file scheme except that packages are " "copied into the cache directory instead of used directly at their location. " @@@ -5474,7 -5474,7 +5474,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:219 + #: sources.list.5.xml:213 msgid "" "The rsh/ssh method invokes RSH/SSH to connect to a remote host and access " "the files as a given user. Prior configuration of rhosts or RSA keys is " @@@ -5483,12 -5483,12 +5483,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> - #: sources.list.5.xml:226 + #: sources.list.5.xml:220 msgid "adding more recognizable URI types" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> - #: sources.list.5.xml:228 + #: sources.list.5.xml:222 msgid "" "APT can be extended with more methods shipped in other optional packages, " "which should follow the naming scheme <package>apt-transport-" @@@ -5500,42 -5500,42 +5500,42 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:240 + #: sources.list.5.xml:234 msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:242 + #: sources.list.5.xml:236 #, no-wrap msgid "deb file:/home/jason/debian stable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:244 + #: sources.list.5.xml:238 msgid "As above, except this uses the unstable (development) distribution." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:245 + #: sources.list.5.xml:239 #, no-wrap msgid "deb file:/home/jason/debian unstable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:247 + #: sources.list.5.xml:241 msgid "Source line for the above" msgstr "" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:248 + #: sources.list.5.xml:242 #, no-wrap msgid "deb-src file:/home/jason/debian unstable main contrib non-free" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:250 + #: sources.list.5.xml:244 msgid "" "The first line gets package information for the architectures in " "<literal>APT::Architectures</literal> while the second always retrieves " @@@ -5543,7 -5543,7 +5543,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:252 + #: sources.list.5.xml:246 #, no-wrap msgid "" "deb http://ftp.debian.org/debian &stable-codename; main\n" @@@ -5551,33 -5551,33 +5551,33 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:255 + #: sources.list.5.xml:249 msgid "" "Uses HTTP to access the archive at archive.debian.org, and uses only the " "hamm/main area." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:257 + #: sources.list.5.xml:251 #, no-wrap msgid "deb http://archive.debian.org/debian-archive hamm main" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:259 + #: sources.list.5.xml:253 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the &stable-codename;/contrib area." msgstr "" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:261 + #: sources.list.5.xml:255 #, no-wrap msgid "deb ftp://ftp.debian.org/debian &stable-codename; contrib" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:263 + #: sources.list.5.xml:257 msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the unstable/contrib area. If this line appears as " @@@ -5586,19 -5586,19 +5586,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><literallayout> - #: sources.list.5.xml:267 + #: sources.list.5.xml:261 #, no-wrap msgid "deb ftp://ftp.debian.org/debian unstable contrib" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> - #: sources.list.5.xml:276 + #: sources.list.5.xml:270 #, no-wrap msgid "deb http://ftp.tlh.debian.org/universe unstable/binary-$(ARCH)/" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:269 + #: sources.list.5.xml:263 msgid "" "Uses HTTP to access the archive at ftp.tlh.debian.org, under the universe " "directory, and uses only files found under <filename>unstable/binary-i386</" @@@ -5610,25 -5610,25 +5610,25 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: sources.list.5.xml:281 + #: sources.list.5.xml:275 #, fuzzy msgid "&apt-cache; &apt-conf;" msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" #. type: Content of: <refentry><refmeta><manvolnum> - #: apt-extracttemplates.1.xml:28 apt-sortpkgs.1.xml:28 apt-ftparchive.1.xml:28 + #: apt-extracttemplates.1.xml:22 apt-sortpkgs.1.xml:22 apt-ftparchive.1.xml:22 msgid "1" msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-extracttemplates.1.xml:35 + #: apt-extracttemplates.1.xml:29 msgid "" "Utility to extract <command>debconf</command> config and templates from " "Debian packages" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-extracttemplates.1.xml:41 + #: apt-extracttemplates.1.xml:35 msgid "" "<command>apt-extracttemplates</command> will take one or more Debian package " "files as input and write out (to a temporary directory) all associated " @@@ -5638,12 -5638,12 +5638,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-extracttemplates.1.xml:46 + #: apt-extracttemplates.1.xml:40 msgid "package version template-file config-script" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-extracttemplates.1.xml:47 + #: apt-extracttemplates.1.xml:41 msgid "" "template-file and config-script are written to the temporary directory " "specified by the <option>-t</option> or <option>--tempdir</option> " @@@ -5653,7 -5653,7 +5653,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-extracttemplates.1.xml:60 + #: apt-extracttemplates.1.xml:54 msgid "" "Temporary directory in which to write extracted <command>debconf</command> " "template files and config scripts. Configuration Item: <literal>APT::" @@@ -5661,19 -5661,19 +5661,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-extracttemplates.1.xml:77 + #: apt-extracttemplates.1.xml:71 msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-sortpkgs.1.xml:35 + #: apt-sortpkgs.1.xml:29 msgid "Utility to sort package index files" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-sortpkgs.1.xml:41 + #: apt-sortpkgs.1.xml:35 msgid "" "<command>apt-sortpkgs</command> will take an index file (source index or " "package index) and sort the records so that they are ordered by the package " @@@ -5682,32 -5682,32 +5682,32 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-sortpkgs.1.xml:47 + #: apt-sortpkgs.1.xml:41 msgid "" "All output is sent to standard output; the input must be a seekable file." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-sortpkgs.1.xml:56 + #: apt-sortpkgs.1.xml:50 msgid "" "Use source index field ordering. Configuration Item: <literal>APT::" "SortPkgs::Source</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-sortpkgs.1.xml:70 + #: apt-sortpkgs.1.xml:64 msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." msgstr "" #. type: Content of: <refentry><refnamediv><refpurpose> - #: apt-ftparchive.1.xml:35 + #: apt-ftparchive.1.xml:29 msgid "Utility to generate index files" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:41 + #: apt-ftparchive.1.xml:35 msgid "" "<command>apt-ftparchive</command> is the command line tool that generates " "the index files that APT uses to access a distribution source. The index " @@@ -5716,7 -5716,7 +5716,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:45 + #: apt-ftparchive.1.xml:39 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " "program, incorporating its entire functionality via the <literal>packages</" @@@ -5726,7 -5726,7 +5726,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:51 + #: apt-ftparchive.1.xml:45 msgid "" "Internally <command>apt-ftparchive</command> can make use of binary " "databases to cache the contents of a .deb file and it does not rely on any " @@@ -5736,7 -5736,7 +5736,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:62 + #: apt-ftparchive.1.xml:56 msgid "" "The packages command generates a package file from a directory tree. It " "takes the given directory and recursively searches it for .deb files, " @@@ -5745,13 -5745,13 +5745,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:67 apt-ftparchive.1.xml:91 + #: apt-ftparchive.1.xml:61 apt-ftparchive.1.xml:85 msgid "" "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:72 + #: apt-ftparchive.1.xml:66 msgid "" "The <literal>sources</literal> command generates a source index file from a " "directory tree. It takes the given directory and recursively searches it " @@@ -5760,7 -5760,7 +5760,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:77 + #: apt-ftparchive.1.xml:71 msgid "" "If an override file is specified then a source override file will be looked " "for with an extension of .src. The --source-override option can be used to " @@@ -5768,7 -5768,7 +5768,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:84 + #: apt-ftparchive.1.xml:78 msgid "" "The <literal>contents</literal> command generates a contents file from a " "directory tree. It takes the given directory and recursively searches it " @@@ -5779,7 -5779,7 +5779,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:96 + #: apt-ftparchive.1.xml:90 msgid "" "The <literal>release</literal> command generates a Release file from a " "directory tree. It recursively searches the given directory for uncompressed " @@@ -5794,7 -5794,7 +5794,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:106 + #: apt-ftparchive.1.xml:100 msgid "" "Values for the additional metadata fields in the Release file are taken from " "the corresponding variables under <literal>APT::FTPArchive::Release</" @@@ -5807,7 -5807,7 +5807,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:119 + #: apt-ftparchive.1.xml:113 msgid "" "The <literal>generate</literal> command is designed to be runnable from a " "cron script and builds indexes according to the given config file. The " @@@ -5817,19 -5817,19 +5817,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:128 + #: apt-ftparchive.1.xml:122 msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-ftparchive.1.xml:134 + #: apt-ftparchive.1.xml:128 msgid "The Generate Configuration" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:136 + #: apt-ftparchive.1.xml:130 msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " @@@ -5840,19 -5840,19 +5840,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:144 + #: apt-ftparchive.1.xml:138 msgid "" "The generate configuration has four separate sections, each described below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:146 + #: apt-ftparchive.1.xml:140 #, fuzzy msgid "<literal>Dir</literal> Section" msgstr "a linha <literal>Origin:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:148 + #: apt-ftparchive.1.xml:142 msgid "" "The <literal>Dir</literal> section defines the standard directories needed " "to locate the files required during the generation process. These " @@@ -5861,7 -5861,7 +5861,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:155 + #: apt-ftparchive.1.xml:149 msgid "" "Specifies the root of the FTP archive, in a standard Debian configuration " "this is the directory that contains the <filename>ls-LR</filename> and dist " @@@ -5869,30 -5869,30 +5869,30 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:162 + #: apt-ftparchive.1.xml:156 msgid "Specifies the location of the override files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:167 + #: apt-ftparchive.1.xml:161 msgid "Specifies the location of the cache files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:172 + #: apt-ftparchive.1.xml:166 msgid "" "Specifies the location of the file list files, if the <literal>FileList</" "literal> setting is used below." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:178 + #: apt-ftparchive.1.xml:172 #, fuzzy msgid "<literal>Default</literal> Section" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:180 + #: apt-ftparchive.1.xml:174 msgid "" "The <literal>Default</literal> section specifies default values, and " "settings that control the operation of the generator. Other sections may " @@@ -5900,7 -5900,7 +5900,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:186 + #: apt-ftparchive.1.xml:180 msgid "" "Sets the default compression schemes to use for the package index files. It " "is a string that contains a space separated list of at least one of: '.' (no " @@@ -5909,42 -5909,42 +5909,42 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:194 + #: apt-ftparchive.1.xml:188 msgid "" "Sets the default list of file extensions that are package files. This " "defaults to '.deb'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:200 + #: apt-ftparchive.1.xml:194 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:206 + #: apt-ftparchive.1.xml:200 msgid "" "Sets the default list of file extensions that are source files. This " "defaults to '.dsc'." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:212 + #: apt-ftparchive.1.xml:206 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:218 + #: apt-ftparchive.1.xml:212 msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Translation-en master file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:224 + #: apt-ftparchive.1.xml:218 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " "per run. This is used in conjunction with the per-section <literal>External-" @@@ -5952,14 -5952,14 +5952,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:231 + #: apt-ftparchive.1.xml:225 msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:238 apt-ftparchive.1.xml:384 + #: apt-ftparchive.1.xml:232 apt-ftparchive.1.xml:378 msgid "" "Specifies whether long descriptions should be included in the " "<filename>Packages</filename> file or split out into a master " @@@ -5967,13 -5967,13 +5967,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:244 + #: apt-ftparchive.1.xml:238 #, fuzzy msgid "<literal>TreeDefault</literal> Section" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:246 + #: apt-ftparchive.1.xml:240 msgid "" "Sets defaults specific to <literal>Tree</literal> sections. All of these " "variables are substitution variables and have the strings $(DIST), " @@@ -5981,7 -5981,7 +5981,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:253 + #: apt-ftparchive.1.xml:247 msgid "" "Sets the number of kilobytes of contents files that are generated each day. " "The contents files are round-robined so that over several days they will all " @@@ -5989,7 -5989,7 +5989,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:260 + #: apt-ftparchive.1.xml:254 msgid "" "Controls the number of days a contents file is allowed to be checked without " "changing. If this limit is passed the mtime of the contents file is updated. " @@@ -6000,35 -6000,35 +6000,35 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:271 + #: apt-ftparchive.1.xml:265 msgid "" "Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" "$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:277 + #: apt-ftparchive.1.xml:271 msgid "" "Sets the top of the source package directory tree. Defaults to <filename>" "$(DIST)/$(SECTION)/source/</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:283 + #: apt-ftparchive.1.xml:277 msgid "" "Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" "binary-$(ARCH)/Packages</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:289 + #: apt-ftparchive.1.xml:283 msgid "" "Sets the output Sources file. Defaults to <filename>$(DIST)/$(SECTION)/" "source/Sources</filename>" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:295 + #: apt-ftparchive.1.xml:289 msgid "" "Sets the output Translation-en master file with the long descriptions if " "they should be not included in the Packages file. Defaults to <filename>" @@@ -6036,7 -6036,7 +6036,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:302 + #: apt-ftparchive.1.xml:296 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " "instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" @@@ -6044,7 -6044,7 +6044,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:309 + #: apt-ftparchive.1.xml:303 msgid "" "Sets the output Contents file. Defaults to <filename>$(DIST)/$(SECTION)/" "Contents-$(ARCH)</filename>. If this setting causes multiple Packages files " @@@ -6054,19 -6054,19 +6054,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:318 + #: apt-ftparchive.1.xml:312 msgid "Sets header file to prepend to the contents output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:323 + #: apt-ftparchive.1.xml:317 msgid "" "Sets the binary cache database to use for this section. Multiple sections " "can share the same database." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:329 + #: apt-ftparchive.1.xml:323 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@@ -6074,7 -6074,7 +6074,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:336 + #: apt-ftparchive.1.xml:330 msgid "" "Specifies that instead of walking the directory tree, <command>apt-" "ftparchive</command> should read the list of files from the given file. " @@@ -6083,13 -6083,13 +6083,13 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:344 + #: apt-ftparchive.1.xml:338 #, fuzzy msgid "<literal>Tree</literal> Section" msgstr "a linha <literal>Label:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:346 + #: apt-ftparchive.1.xml:340 msgid "" "The <literal>Tree</literal> section defines a standard Debian file tree " "which consists of a base directory, then multiple sections in that base " @@@ -6099,7 -6099,7 +6099,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:351 + #: apt-ftparchive.1.xml:345 msgid "" "The <literal>Tree</literal> section takes a scope tag which sets the " "<literal>$(DIST)</literal> variable and defines the root of the tree (the " @@@ -6108,7 -6108,7 +6108,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:356 + #: apt-ftparchive.1.xml:350 msgid "" "All of the settings defined in the <literal>TreeDefault</literal> section " "can be used in a <literal>Tree</literal> section as well as three new " @@@ -6116,7 -6116,7 +6116,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> - #: apt-ftparchive.1.xml:362 + #: apt-ftparchive.1.xml:356 #, no-wrap msgid "" "for i in Sections do \n" @@@ -6126,7 -6126,7 +6126,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:359 + #: apt-ftparchive.1.xml:353 msgid "" "When processing a <literal>Tree</literal> section <command>apt-ftparchive</" "command> performs an operation similar to: <placeholder type=\"programlisting" @@@ -6134,7 -6134,7 +6134,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:370 + #: apt-ftparchive.1.xml:364 msgid "" "This is a space separated list of sections which appear under the " "distribution; typically this is something like <literal>main contrib non-" @@@ -6142,7 -6142,7 +6142,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:377 + #: apt-ftparchive.1.xml:371 msgid "" "This is a space separated list of all the architectures that appear under " "search section. The special architecture 'source' is used to indicate that " @@@ -6150,37 -6150,37 +6150,37 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:390 + #: apt-ftparchive.1.xml:384 msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:396 + #: apt-ftparchive.1.xml:390 msgid "" "Sets the source override file. The override file contains section " "information." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:402 apt-ftparchive.1.xml:448 + #: apt-ftparchive.1.xml:396 apt-ftparchive.1.xml:442 msgid "Sets the binary extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:407 apt-ftparchive.1.xml:453 + #: apt-ftparchive.1.xml:401 apt-ftparchive.1.xml:447 msgid "Sets the source extra override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> - #: apt-ftparchive.1.xml:412 + #: apt-ftparchive.1.xml:406 #, fuzzy msgid "<literal>BinDirectory</literal> Section" msgstr "a linha <literal>Component:</literal>" #. type: Content of: <refentry><refsect1><refsect2><para> - #: apt-ftparchive.1.xml:414 + #: apt-ftparchive.1.xml:408 msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " @@@ -6190,54 -6190,54 +6190,54 @@@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:422 + #: apt-ftparchive.1.xml:416 msgid "Sets the Packages file output." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:427 + #: apt-ftparchive.1.xml:421 msgid "" "Sets the Sources file output. At least one of <literal>Packages</literal> or " "<literal>Sources</literal> is required." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:433 + #: apt-ftparchive.1.xml:427 msgid "Sets the Contents file output (optional)." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:438 + #: apt-ftparchive.1.xml:432 msgid "Sets the binary override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:443 + #: apt-ftparchive.1.xml:437 msgid "Sets the source override file." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:458 + #: apt-ftparchive.1.xml:452 msgid "Sets the cache DB." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:463 + #: apt-ftparchive.1.xml:457 msgid "Appends a path to all the output paths." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:468 + #: apt-ftparchive.1.xml:462 msgid "Specifies the file list file." msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-ftparchive.1.xml:475 + #: apt-ftparchive.1.xml:469 msgid "The Binary Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:476 + #: apt-ftparchive.1.xml:470 msgid "" "The binary override file is fully compatible with &dpkg-scanpackages;. It " "contains four fields separated by spaces. The first field is the package " @@@ -6247,19 -6247,19 +6247,19 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> - #: apt-ftparchive.1.xml:482 + #: apt-ftparchive.1.xml:476 #, no-wrap msgid "old [// oldn]* => new" msgstr "" #. type: Content of: <refentry><refsect1><para><literallayout> - #: apt-ftparchive.1.xml:484 + #: apt-ftparchive.1.xml:478 #, no-wrap msgid "new" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:481 + #: apt-ftparchive.1.xml:475 msgid "" "The general form of the maintainer field is: <placeholder type=" "\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " @@@ -6270,12 -6270,12 +6270,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-ftparchive.1.xml:492 + #: apt-ftparchive.1.xml:486 msgid "The Source Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:494 + #: apt-ftparchive.1.xml:488 msgid "" "The source override file is fully compatible with &dpkg-scansources;. It " "contains two fields separated by spaces. The first field is the source " @@@ -6283,12 -6283,12 +6283,12 @@@ msgstr "" #. type: Content of: <refentry><refsect1><title> - #: apt-ftparchive.1.xml:499 + #: apt-ftparchive.1.xml:493 msgid "The Extra Override File" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:501 + #: apt-ftparchive.1.xml:495 msgid "" "The extra override file allows any arbitrary tag to be added or replaced in " "the output. It has three columns, the first is the package, the second is " @@@ -6296,7 -6296,7 +6296,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:512 + #: apt-ftparchive.1.xml:506 msgid "" "Generate the given checksum. These options default to on, when turned off " "the generated index files will not have the checksum fields where possible. " @@@ -6310,14 -6310,14 +6310,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:523 + #: apt-ftparchive.1.xml:517 msgid "" "Use a binary caching DB. This has no effect on the generate command. " "Configuration Item: <literal>APT::FTPArchive::DB</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:529 + #: apt-ftparchive.1.xml:523 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quiet up to a maximum of 2. You can also use " @@@ -6326,7 -6326,7 +6326,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:537 + #: apt-ftparchive.1.xml:531 msgid "" "Perform Delinking. If the <literal>External-Links</literal> setting is used " "then this option actually enables delinking of the files. It defaults to on " @@@ -6335,7 -6335,7 +6335,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:545 + #: apt-ftparchive.1.xml:539 msgid "" "Perform contents generation. When this option is set and package indexes are " "being generated with a cache DB then the file listing will also be extracted " @@@ -6345,7 -6345,7 +6345,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:555 + #: apt-ftparchive.1.xml:549 msgid "" "Select the source override file to use with the <literal>sources</literal> " "command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" @@@ -6353,14 -6353,14 +6353,14 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:561 + #: apt-ftparchive.1.xml:555 msgid "" "Make the caching databases read only. Configuration Item: <literal>APT::" "FTPArchive::ReadOnlyDB</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:566 + #: apt-ftparchive.1.xml:560 msgid "" "Accept in the <literal>packages</literal> and <literal>contents</literal> " "commands only package files matching <literal>*_arch.deb</literal> or " @@@ -6369,7 -6369,7 +6369,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:574 + #: apt-ftparchive.1.xml:568 msgid "" "&apt-ftparchive; caches as much as possible of metadata in a cachedb. If " "packages are recompiled and/or republished with the same version again, this " @@@ -6383,7 -6383,7 +6383,7 @@@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> - #: apt-ftparchive.1.xml:586 + #: apt-ftparchive.1.xml:580 msgid "" "This configuration option defaults to \"<literal>true</literal>\" and should " "only be set to <literal>\"false\"</literal> if the Archive generated with " @@@ -6393,69 -6393,69 +6393,69 @@@ msgstr "" #. type: Content of: <refentry><refsect1><para><programlisting> - #: apt-ftparchive.1.xml:604 + #: apt-ftparchive.1.xml:598 #, no-wrap msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:600 + #: apt-ftparchive.1.xml:594 msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><para> - #: apt-ftparchive.1.xml:614 + #: apt-ftparchive.1.xml:608 msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." msgstr "" #. type: Attribute 'lang' of: <book> - #: guide.dbk:8 offline.dbk:8 + #: guide.dbk:9 offline.dbk:9 msgid "en" msgstr "" #. type: Content of: <book><title> - #: guide.dbk:10 + #: guide.dbk:11 msgid "APT User's Guide" msgstr "" #. type: Content of: <book><bookinfo><authorgroup><author><personname> - #: guide.dbk:16 offline.dbk:16 + #: guide.dbk:17 offline.dbk:17 msgid "Jason Gunthorpe" msgstr "" #. type: Content of: <book><bookinfo><authorgroup><author><email> - #: guide.dbk:16 offline.dbk:16 + #: guide.dbk:17 offline.dbk:17 msgid "jgg@debian.org" msgstr "" #. type: Content of: <book><bookinfo><releaseinfo> - #: guide.dbk:20 offline.dbk:20 + #: guide.dbk:21 offline.dbk:21 msgid "Version &apt-product-version;" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> - #: guide.dbk:24 + #: guide.dbk:25 msgid "" "This document provides an overview of how to use the the APT package manager." msgstr "" #. type: Content of: <book><bookinfo> - #: guide.dbk:28 + #: guide.dbk:29 msgid "" "<copyright><year>1998</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><title> - #: guide.dbk:31 offline.dbk:32 + #: guide.dbk:32 offline.dbk:33 msgid "License Notice" msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> - #: guide.dbk:33 offline.dbk:34 + #: guide.dbk:34 offline.dbk:35 msgid "" "\"APT\" and this document are free software; you can redistribute them and/" "or modify them under the terms of the GNU General Public License as " @@@ -6464,19 -6464,19 +6464,19 @@@ msgstr "" #. type: Content of: <book><bookinfo><legalnotice><para> - #: guide.dbk:42 offline.dbk:40 + #: guide.dbk:43 offline.dbk:41 msgid "" "For more details, on Debian systems, see the file /usr/share/common-licenses/" "GPL for the full license." msgstr "" #. type: Content of: <book><chapter><title> - #: guide.dbk:49 + #: guide.dbk:50 msgid "General" msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:51 + #: guide.dbk:52 msgid "" "The APT package currently contains two sections, the APT <command>dselect</" "command> method and the <command>apt-get</command> command line user " @@@ -6485,12 -6485,12 +6485,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><title> - #: guide.dbk:57 + #: guide.dbk:58 msgid "Anatomy of the Package System" msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:59 + #: guide.dbk:60 msgid "" "The Debian packaging system has a large amount of information associated " "with each package to help assure that it integrates cleanly and easily into " @@@ -6498,7 -6498,7 +6498,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:64 + #: guide.dbk:65 msgid "" "The dependency system allows individual programs to make use of shared " "elements in the system such as libraries. It simplifies placing infrequently " @@@ -6508,7 -6508,7 +6508,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:71 + #: guide.dbk:72 msgid "" "The first step to understanding the dependency system is to grasp the " "concept of a simple dependency. The meaning of a simple dependency is that a " @@@ -6517,7 -6517,7 +6517,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:76 + #: guide.dbk:77 msgid "" "For instance, mailcrypt is an emacs extension that aids in encrypting email " "with GPG. Without GPGP installed mailcrypt is useless, so mailcrypt has a " @@@ -6526,7 -6526,7 +6526,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:82 + #: guide.dbk:83 msgid "" "The other important dependency to understand is a conflicting dependency. It " "means that a package, when installed with another package, will not work and " @@@ -6539,7 -6539,7 +6539,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:92 + #: guide.dbk:93 msgid "" "As an added complication there is the possibility for a package to pretend " "to be another package. Consider that exim and sendmail for many intents are " @@@ -6552,7 -6552,7 +6552,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:102 + #: guide.dbk:103 msgid "" "At any given time a single dependency may be met by packages that are " "already installed or it may not be. APT attempts to help resolve dependency " @@@ -6561,12 -6561,12 +6561,12 @@@ msgstr "" #. type: Content of: <book><chapter><title> - #: guide.dbk:111 + #: guide.dbk:112 msgid "apt-get" msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:113 + #: guide.dbk:114 msgid "" "<command>apt-get</command> provides a simple way to install packages from " "the command line. Unlike <command>dpkg</command>, <command>apt-get</command> " @@@ -6575,14 -6575,14 +6575,14 @@@ msgstr "" #. type: Content of: <book><chapter><para><footnote><para> - #: guide.dbk:119 + #: guide.dbk:120 msgid "" "If you are using an http proxy server you must set the http_proxy " "environment variable first, see sources.list(5)" msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:119 + #: guide.dbk:120 msgid "" "The first <placeholder type=\"footnote\" id=\"0\"/> thing that should be " "done before using <command>apt-get</command> is to fetch the package lists " @@@ -6591,7 -6591,7 +6591,7 @@@ msgstr "" #. type: Content of: <book><chapter><screen> - #: guide.dbk:127 + #: guide.dbk:128 #, no-wrap msgid "" "# apt-get update\n" @@@ -6602,17 -6602,17 +6602,17 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:134 + #: guide.dbk:135 msgid "Once updated there are several commands that can be used:" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> - #: guide.dbk:138 + #: guide.dbk:139 msgid "upgrade" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> - #: guide.dbk:141 + #: guide.dbk:142 msgid "" "Upgrade will attempt to gently upgrade the whole system. Upgrade will never " "install a new package or remove an existing package, nor will it ever " @@@ -6625,12 -6625,12 +6625,12 @@@ msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> - #: guide.dbk:153 + #: guide.dbk:154 msgid "install" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> - #: guide.dbk:156 + #: guide.dbk:157 msgid "" "Install is used to install packages by name. The package is automatically " "fetched and installed. This can be useful if you already know the name of " @@@ -6642,12 -6642,12 +6642,12 @@@ msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><term> - #: guide.dbk:167 + #: guide.dbk:168 msgid "dist-upgrade" msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> - #: guide.dbk:170 + #: guide.dbk:171 msgid "" "Dist-upgrade is a complete upgrader designed to simplify upgrading between " "releases of Debian. It uses a sophisticated algorithm to determine the best " @@@ -6660,14 -6660,14 +6660,14 @@@ msgstr "" #. type: Content of: <book><chapter><variablelist><varlistentry><listitem><para> - #: guide.dbk:180 + #: guide.dbk:181 msgid "" "It is important to closely look at what dist-upgrade is going to do, its " "decisions may sometimes be quite surprising." msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:187 + #: guide.dbk:188 msgid "" "<command>apt-get</command> has several command line options that are " "detailed in its man page, <citerefentry><refentrytitle>apt-get</" @@@ -6681,12 -6681,12 +6681,12 @@@ msgstr "" #. type: Content of: <book><chapter><title> - #: guide.dbk:199 + #: guide.dbk:200 msgid "DSelect" msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:201 + #: guide.dbk:202 msgid "" "The APT <command>dselect</command> method provides the complete APT system " "with the <command>dselect</command> package selection GUI. <command>dselect</" @@@ -6695,7 -6695,7 +6695,7 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:207 + #: guide.dbk:208 msgid "" "To enable the APT method you need to select [A]ccess in <command>dselect</" "command> and then choose the APT method. You will be prompted for a set of " @@@ -6709,7 -6709,7 +6709,7 @@@ msgstr "" #. type: Content of: <book><chapter><screen> - #: guide.dbk:218 + #: guide.dbk:219 #, no-wrap msgid "" " Set up a list of distribution source locations\n" @@@ -6727,7 -6727,7 +6727,7 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:232 + #: guide.dbk:233 msgid "" "The <emphasis>Sources</emphasis> setup starts by asking for the base of the " "Debian archive, defaulting to a HTTP mirror. Next it asks for the " @@@ -6735,7 -6735,7 +6735,7 @@@ msgstr "" #. type: Content of: <book><chapter><screen> - #: guide.dbk:237 + #: guide.dbk:238 #, no-wrap msgid "" " Please give the distribution tag to get or a path to the\n" @@@ -6746,7 -6746,7 +6746,7 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:244 + #: guide.dbk:245 msgid "" "The distribution refers to the Debian version in the archive, " "<emphasis>stable</emphasis> refers to the latest released version and " @@@ -6758,7 -6758,7 +6758,7 @@@ msgstr "" #. type: Content of: <book><chapter><screen> - #: guide.dbk:253 + #: guide.dbk:254 #, no-wrap msgid "" " Please give the components to get\n" @@@ -6768,7 -6768,7 +6768,7 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:259 + #: guide.dbk:260 msgid "" "The components list refers to the list of sub distributions to fetch. The " "distribution is split up based on software licenses, main being DFSG free " @@@ -6777,14 -6777,14 +6777,14 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:265 + #: guide.dbk:266 msgid "" "Any number of sources can be added, the setup script will continue to prompt " "until you have specified all that you want." msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:269 + #: guide.dbk:270 msgid "" "Before starting to use <command>dselect</command> it is necessary to update " "the available list by selecting [U]pdate from the menu. This is a superset " @@@ -6794,7 -6794,7 +6794,7 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:276 + #: guide.dbk:277 msgid "" "You can then go on and make your selections using [S]elect and then perform " "the installation using [I]nstall. When using the APT method the [C]onfig and " @@@ -6803,7 -6803,7 +6803,7 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:282 + #: guide.dbk:283 msgid "" "By default APT will automatically remove the package (.deb) files once they " "have been successfully installed. To change this behavior place " @@@ -6811,12 -6811,12 +6811,12 @@@ msgstr "" #. type: Content of: <book><chapter><title> - #: guide.dbk:288 + #: guide.dbk:289 msgid "The Interface" msgstr "" #. type: Content of: <book><chapter><para><footnote><para> - #: guide.dbk:292 + #: guide.dbk:293 msgid "" "The <command>dselect</command> method actually is a set of wrapper scripts " "to <command>apt-get</command>. The method actually provides more " @@@ -6824,7 -6824,7 +6824,7 @@@ msgstr "" #. type: Content of: <book><chapter><para> - #: guide.dbk:290 + #: guide.dbk:291 msgid "" "Both that APT <command>dselect</command> method and <command>apt-get</" "command> share the same interface. It is a simple system that generally " @@@ -6835,12 -6835,12 +6835,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><title> - #: guide.dbk:301 + #: guide.dbk:302 msgid "Startup" msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:303 + #: guide.dbk:304 msgid "" "Before all operations except update, APT performs a number of actions to " "prepare its internal state. It also does some checks of the system's state. " @@@ -6849,7 -6849,7 +6849,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><screen> - #: guide.dbk:309 + #: guide.dbk:310 #, no-wrap msgid "" "# apt-get check\n" @@@ -6858,7 -6858,7 +6858,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:314 + #: guide.dbk:315 msgid "" "The first thing it does is read all the package files into memory. APT uses " "a caching scheme so this operation will be faster the second time it is run. " @@@ -6867,7 -6867,7 +6867,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:320 + #: guide.dbk:321 msgid "" "The final operation performs a detailed analysis of the system's " "dependencies. It checks every dependency of every installed or unpacked " @@@ -6876,7 -6876,7 +6876,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><screen> - #: guide.dbk:326 + #: guide.dbk:327 #, no-wrap msgid "" "# apt-get check\n" @@@ -6897,7 -6897,7 +6897,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:343 + #: guide.dbk:344 msgid "" "In this example the system has many problems, including a serious problem " "with libreadlineg2. For each package that has unmet dependencies a line is " @@@ -6907,14 -6907,14 +6907,14 @@@ msgstr "" #. type: Content of: <book><chapter><section><para><footnote><para> - #: guide.dbk:352 + #: guide.dbk:353 msgid "" "APT however considers all known dependencies and attempts to prevent broken " "packages" msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:350 + #: guide.dbk:351 msgid "" "There are two ways a system can get into a broken state like this. The first " "is caused by <command>dpkg</command> missing some subtle relationships " @@@ -6925,7 -6925,7 +6925,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:359 + #: guide.dbk:360 msgid "" "The second situation is much less serious than the first because APT places " "certain constraints on the order that packages are installed. In both cases " @@@ -6937,7 -6937,7 +6937,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:368 + #: guide.dbk:369 msgid "" "However, if the <literal>-f</literal> option is used to correct a seriously " "broken system caused by the first case then it is possible that it will " @@@ -6947,12 -6947,12 +6947,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><title> - #: guide.dbk:376 + #: guide.dbk:377 msgid "The Status Report" msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:378 + #: guide.dbk:379 msgid "" "Before proceeding <command>apt-get</command> will present a report on what " "will happen. Generally the report reflects the type of operation being " @@@ -6963,12 -6963,12 +6963,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:385 + #: guide.dbk:386 msgid "The Extra Package list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:387 + #: guide.dbk:388 #, no-wrap msgid "" "The following extra packages will be installed:\n" @@@ -6980,7 -6980,7 +6980,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:395 + #: guide.dbk:396 msgid "" "The Extra Package list shows all of the packages that will be installed or " "upgraded in excess of the ones mentioned on the command line. It is only " @@@ -6989,12 -6989,12 +6989,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:402 + #: guide.dbk:403 msgid "The Packages to Remove" msgstr "" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:404 + #: guide.dbk:405 #, no-wrap msgid "" "The following packages will be REMOVED:\n" @@@ -7005,7 -7005,7 +7005,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:411 + #: guide.dbk:412 msgid "" "The Packages to Remove list shows all of the packages that will be removed " "from the system. It can be shown for any of the operations and should be " @@@ -7017,12 -7017,12 +7017,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:421 + #: guide.dbk:422 msgid "The New Packages list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:423 + #: guide.dbk:424 #, no-wrap msgid "" "The following NEW packages will installed:\n" @@@ -7030,7 -7030,7 +7030,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:427 + #: guide.dbk:428 msgid "" "The New Packages list is simply a reminder of what will happen. The packages " "listed are not presently installed in the system but will be when APT is " @@@ -7038,12 -7038,12 +7038,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:432 + #: guide.dbk:433 msgid "The Kept Back list" msgstr "" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:434 + #: guide.dbk:435 #, no-wrap msgid "" "The following packages have been kept back\n" @@@ -7052,7 -7052,7 +7052,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:439 + #: guide.dbk:440 msgid "" "Whenever the whole system is being upgraded there is the possibility that " "new versions of packages cannot be installed because they require new things " @@@ -7063,12 -7063,12 +7063,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:448 + #: guide.dbk:449 msgid "Held Packages warning" msgstr "" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:450 + #: guide.dbk:451 #, no-wrap msgid "" "The following held packages will be changed:\n" @@@ -7076,7 -7076,7 +7076,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:454 + #: guide.dbk:455 msgid "" "Sometimes you can ask APT to install a package that is on hold, in such a " "case it prints out a warning that the held package is going to be changed. " @@@ -7084,18 -7084,18 +7084,18 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><title> - #: guide.dbk:460 + #: guide.dbk:461 msgid "Final summary" msgstr "" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:462 + #: guide.dbk:463 msgid "" "Finally, APT will print out a summary of all the changes that will occur." msgstr "" #. type: Content of: <book><chapter><section><section><screen> - #: guide.dbk:465 + #: guide.dbk:466 #, no-wrap msgid "" "206 packages upgraded, 8 newly installed, 23 to remove and 51 not upgraded.\n" @@@ -7104,7 -7104,7 +7104,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:470 + #: guide.dbk:471 msgid "" "The first line of the summary simply is a reduced version of all of the " "lists and includes the number of upgrades - that is packages already " @@@ -7122,26 -7122,26 +7122,26 @@@ msgstr "" #. type: Content of: <book><chapter><section><section><para> - #: guide.dbk:484 + #: guide.dbk:485 msgid "" "Some other reports can be generated by using the -u option to show packages " "to upgrade, they are similar to the previous examples." msgstr "" #. type: Content of: <book><chapter><section><title> - #: guide.dbk:491 + #: guide.dbk:492 msgid "The Status Display" msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:493 + #: guide.dbk:494 msgid "" "During the download of archives and package files APT prints out a series of " "status messages." msgstr "" #. type: Content of: <book><chapter><section><screen> - #: guide.dbk:497 + #: guide.dbk:498 #, no-wrap msgid "" "# apt-get update\n" @@@ -7154,7 -7154,7 +7154,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:506 + #: guide.dbk:507 msgid "" "The lines starting with <emphasis>Get</emphasis> are printed out when APT " "begins to fetch a file while the last line indicates the progress of the " @@@ -7165,7 -7165,7 +7165,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:514 + #: guide.dbk:515 msgid "" "The next section of the status line is repeated once for each download " "thread and indicates the operation being performed and some useful " @@@ -7178,7 -7178,7 +7178,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:524 + #: guide.dbk:525 msgid "" "Inside of the single quote is an informative string indicating the progress " "of the negotiation phase of the download. Typically it progresses from " @@@ -7196,7 -7196,7 +7196,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:539 + #: guide.dbk:540 msgid "" "The status display updates every half second to provide a constant feedback " "on the download progress while the Get lines scroll back whenever a new file " @@@ -7206,12 -7206,12 +7206,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><title> - #: guide.dbk:547 + #: guide.dbk:548 msgid "Dpkg" msgstr "" #. type: Content of: <book><chapter><section><para> - #: guide.dbk:549 + #: guide.dbk:550 msgid "" "APT uses <command>dpkg</command> for installing the archives and will switch " "over to the <command>dpkg</command> interface once downloading is completed. " @@@ -7222,35 -7222,35 +7222,35 @@@ msgstr "" #. type: Content of: <book><title> - #: offline.dbk:10 + #: offline.dbk:11 msgid "Using APT Offline" msgstr "" #. type: Content of: <book><bookinfo><abstract><para> - #: offline.dbk:24 + #: offline.dbk:25 msgid "" "This document describes how to use APT in a non-networked environment, " "specifically a 'sneaker-net' approach for performing upgrades." msgstr "" #. type: Content of: <book><bookinfo> - #: offline.dbk:29 + #: offline.dbk:30 msgid "" "<copyright><year>1999</year><holder>Jason Gunthorpe</holder></copyright>" msgstr "" #. type: Content of: <book><chapter><title> - #: offline.dbk:47 + #: offline.dbk:48 msgid "Introduction" msgstr "" #. type: Content of: <book><chapter><section><title> - #: offline.dbk:49 offline.dbk:79 offline.dbk:191 + #: offline.dbk:50 offline.dbk:80 offline.dbk:192 msgid "Overview" msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:51 + #: offline.dbk:52 msgid "" "Normally APT requires direct access to a Debian archive, either from a local " "media or through a network. Another common complaint is that a Debian " @@@ -7259,7 -7259,7 +7259,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:57 + #: offline.dbk:58 msgid "" "The solution to this is to use large removable media such as a Zip disc or a " "SuperDisk disc. These discs are not large enough to store the entire Debian " @@@ -7273,7 -7273,7 +7273,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:68 + #: offline.dbk:69 msgid "" "This is achieved by creatively manipulating the APT configuration file. The " "essential premise to tell APT to look on a disc for it's archive files. Note " @@@ -7282,12 -7282,12 +7282,12 @@@ msgstr "" #. type: Content of: <book><chapter><title> - #: offline.dbk:77 + #: offline.dbk:78 msgid "Using APT on both machines" msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:81 + #: offline.dbk:82 msgid "" "APT being available on both machines gives the simplest configuration. The " "basic idea is to place a copy of the status file on the disc and use the " @@@ -7296,7 -7296,7 +7296,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:87 + #: offline.dbk:88 #, no-wrap msgid "" " /disc/\n" @@@ -7310,12 -7310,12 +7310,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><title> - #: offline.dbk:98 + #: offline.dbk:99 msgid "The configuration file" msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:100 + #: offline.dbk:101 msgid "" "The configuration file should tell APT to store its files on the disc and to " "use the configuration files on the disc as well. The sources.list should " @@@ -7327,14 -7327,14 +7327,14 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:108 + #: offline.dbk:109 msgid "" "<emphasis>apt.conf</emphasis> must contain the necessary information to make " "APT use the disc:" msgstr "" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:112 + #: offline.dbk:113 #, no-wrap msgid "" " APT\n" @@@ -7363,7 -7363,7 +7363,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:137 + #: offline.dbk:138 msgid "" "More details can be seen by examining the apt.conf man page and the sample " "configuration file in <emphasis>/usr/share/doc/apt/examples/apt.conf</" @@@ -7371,7 -7371,7 +7371,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:142 + #: offline.dbk:143 msgid "" "On the target machine the first thing to do is mount the disc and copy " "<emphasis>/var/lib/dpkg/status</emphasis> to it. You will also need to " @@@ -7382,7 -7382,7 +7382,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:151 + #: offline.dbk:152 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@@ -7393,7 -7393,7 +7393,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:158 + #: offline.dbk:159 msgid "" "The dist-upgrade command can be replaced with any other standard APT " "commands, particularly dselect-upgrade. You can even use an APT front end " @@@ -7402,14 -7402,14 +7402,14 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:164 + #: offline.dbk:165 msgid "" "Now the disc contains all of the index files and archives needed to upgrade " "the target machine. Take the disc back and run:" msgstr "" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:168 + #: offline.dbk:169 #, no-wrap msgid "" " # export APT_CONFIG=\"/disc/apt.conf\"\n" @@@ -7420,14 -7420,14 +7420,14 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:175 + #: offline.dbk:176 msgid "" "It is necessary for proper function to re-specify the status file to be the " "local one. This is very important!" msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:179 + #: offline.dbk:180 msgid "" "If you are using dselect you can do the very risky operation of copying disc/" "status to /var/lib/dpkg/status so that any selections you made on the remote " @@@ -7437,12 -7437,12 +7437,12 @@@ msgstr "" #. type: Content of: <book><chapter><title> - #: offline.dbk:189 + #: offline.dbk:190 msgid "Using APT and wget" msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:193 + #: offline.dbk:194 msgid "" "<emphasis>wget</emphasis> is a popular and portable download tool that can " "run on nearly any machine. Unlike the method above this requires that the " @@@ -7450,7 -7450,7 +7450,7 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:198 + #: offline.dbk:199 msgid "" "The basic idea is to create a disc that has only the archive files " "downloaded from the remote site. This is done by using the --print-uris " @@@ -7459,20 -7459,20 +7459,20 @@@ msgstr "" #. type: Content of: <book><chapter><section><title> - #: offline.dbk:204 + #: offline.dbk:205 #, fuzzy msgid "Operation" msgstr "Descrição" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:206 + #: offline.dbk:207 msgid "" "Unlike the previous technique no special configuration files are required. " "We merely use the standard APT commands to generate the file list." msgstr "" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:210 + #: offline.dbk:211 #, no-wrap msgid "" " # apt-get dist-upgrade\n" @@@ -7482,14 -7482,14 +7482,14 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:216 + #: offline.dbk:217 msgid "" "Any command other than dist-upgrade could be used here, including dselect-" "upgrade." msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:220 + #: offline.dbk:221 msgid "" "The /disc/wget-script file will now contain a list of wget commands to " "execute in order to fetch the necessary archives. This script should be run " @@@ -7498,12 -7498,12 +7498,12 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:226 + #: offline.dbk:227 msgid "The remote machine would do something like" msgstr "" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:229 + #: offline.dbk:230 #, no-wrap msgid "" " # cd /disc\n" @@@ -7512,20 -7512,20 +7512,20 @@@ msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:234 + #: offline.dbk:235 msgid "" "Once the archives are downloaded and the disc returned to the Debian machine " "installation can proceed using," msgstr "" #. type: Content of: <book><chapter><section><screen> - #: offline.dbk:238 + #: offline.dbk:239 #, no-wrap msgid " # apt-get -o dir::cache::archives=\"/disc/\" dist-upgrade\n" msgstr "" #. type: Content of: <book><chapter><section><para> - #: offline.dbk:241 + #: offline.dbk:242 msgid "Which will use the already fetched archives on the disc." msgstr "" diff --combined test/integration/test-ubuntu-bug-346386-apt-get-update-paywall index 8e50843f3,a773660d2..f655ae2d8 --- a/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall +++ b/test/integration/test-ubuntu-bug-346386-apt-get-update-paywall @@@ -16,13 -16,11 +16,12 @@@ setupaptarchiv changetowebserver -o 'aptwebserver::overwrite::.*::filename=/knights' msgtest 'Acquire test file from the webserver to check' 'overwrite' - echo '601 Configuration - Config-Item: Acquire::http::DependOnSTDIN=0 + if downloadfile http://localhost:8080/holygrail ./knights-talking >/dev/null; then + msgpass + else + msgfail + fi + - 600 Acquire URI - URI: http://localhost:8080/holygrail - Filename: knights-talking - ' | runapt ${METHODSDIR}/http >/dev/null 2>&1 && msgpass || msgfail testfileequal knights-talking 'ni ni ni' ensure_n_canary_strings_in_dir() {