1 // -*- mode: cpp; mode: fold -*-
3 // $Id: apt-get.cc,v 1.156 2004/08/28 01:05:16 mdz Exp $
4 /* ######################################################################
6 apt-get - Cover for dpkg
8 This is an allout cover for dpkg implementing a safer front end. It is
9 based largely on libapt-pkg.
11 The syntax is different,
12 apt-get [opt] command [things]
14 update - Resyncronize the package files from their sources
15 upgrade - Smart-Download the newest versions of all packages
16 dselect-upgrade - Follows dselect's changes to the Status: field
17 and installes new and removes old packages
18 dist-upgrade - Powerful upgrader designed to handle the issues with
20 install - Download and install a given package (by name, not by .deb)
21 check - Update the package cache and check for broken packages
22 clean - Erase the .debs downloaded to /var/cache/apt/archives and
25 ##################################################################### */
27 // Include Files /*{{{*/
30 #include <apt-pkg/acquire-item.h>
31 #include <apt-pkg/algorithms.h>
32 #include <apt-pkg/aptconfiguration.h>
33 #include <apt-pkg/cachefile.h>
34 #include <apt-pkg/cacheset.h>
35 #include <apt-pkg/clean.h>
36 #include <apt-pkg/cmndline.h>
37 #include <apt-pkg/debmetaindex.h>
38 #include <apt-pkg/depcache.h>
39 #include <apt-pkg/error.h>
40 #include <apt-pkg/fileutl.h>
41 #include <apt-pkg/indexfile.h>
42 #include <apt-pkg/indexrecords.h>
43 #include <apt-pkg/init.h>
44 #include <apt-pkg/md5.h>
45 #include <apt-pkg/metaindex.h>
46 #include <apt-pkg/pkgrecords.h>
47 #include <apt-pkg/pkgsystem.h>
48 #include <apt-pkg/progress.h>
49 #include <apt-pkg/sourcelist.h>
50 #include <apt-pkg/srcrecords.h>
51 #include <apt-pkg/strutl.h>
52 #include <apt-pkg/version.h>
53 #include <apt-pkg/acquire.h>
54 #include <apt-pkg/configuration.h>
55 #include <apt-pkg/macros.h>
56 #include <apt-pkg/pkgcache.h>
57 #include <apt-pkg/cacheiterators.h>
58 #include <apt-pkg/upgrade.h>
60 #include <apt-private/acqprogress.h>
61 #include <apt-private/private-cacheset.h>
62 #include <apt-private/private-cachefile.h>
63 #include <apt-private/private-cmndline.h>
64 #include <apt-private/private-download.h>
65 #include <apt-private/private-install.h>
66 #include <apt-private/private-main.h>
67 #include <apt-private/private-moo.h>
68 #include <apt-private/private-output.h>
69 #include <apt-private/private-update.h>
70 #include <apt-private/private-upgrade.h>
71 #include <apt-private/private-utils.h>
79 #include <sys/ioctl.h>
99 // TryToInstallBuildDep - Try to install a single package /*{{{*/
100 // ---------------------------------------------------------------------
101 /* This used to be inlined in DoInstall, but with the advent of regex package
102 name matching it was split out.. */
103 static bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg
,pkgCacheFile
&Cache
,
104 pkgProblemResolver
&Fix
,bool Remove
,bool BrokenFix
,
105 bool AllowFail
= true)
107 if (Cache
[Pkg
].CandidateVer
== 0 && Pkg
->ProvidesList
!= 0)
109 CacheSetHelperAPTGet
helper(c1out
);
110 helper
.showErrors(false);
111 pkgCache::VerIterator Ver
= helper
.canNotFindNewestVer(Cache
, Pkg
);
112 if (Ver
.end() == false)
113 Pkg
= Ver
.ParentPkg();
114 else if (helper
.showVirtualPackageErrors(Cache
) == false)
118 if (_config
->FindB("Debug::BuildDeps",false) == true)
121 cout
<< " Trying to remove " << Pkg
<< endl
;
123 cout
<< " Trying to install " << Pkg
<< endl
;
128 TryToRemove
RemoveAction(Cache
, &Fix
);
129 RemoveAction(Pkg
.VersionList());
130 } else if (Cache
[Pkg
].CandidateVer
!= 0) {
131 TryToInstall
InstallAction(Cache
, &Fix
, BrokenFix
);
132 InstallAction(Cache
[Pkg
].CandidateVerIter(Cache
));
133 InstallAction
.doAutoInstall();
140 // GetReleaseForSourceRecord - Return Suite for the given srcrecord /*{{{*/
141 // ---------------------------------------------------------------------
143 static std::string
GetReleaseForSourceRecord(pkgSourceList
*SrcList
,
144 pkgSrcRecords::Parser
*Parse
)
146 // try to find release
147 const pkgIndexFile
& CurrentIndexFile
= Parse
->Index();
149 for (pkgSourceList::const_iterator S
= SrcList
->begin();
150 S
!= SrcList
->end(); ++S
)
152 vector
<pkgIndexFile
*> *Indexes
= (*S
)->GetIndexFiles();
153 for (vector
<pkgIndexFile
*>::const_iterator IF
= Indexes
->begin();
154 IF
!= Indexes
->end(); ++IF
)
156 if (&CurrentIndexFile
== (*IF
))
158 std::string
const path
= (*S
)->LocalFileName();
161 indexRecords records
;
163 return records
.GetSuite();
171 // FindSrc - Find a source record /*{{{*/
172 // ---------------------------------------------------------------------
174 #if APT_PKG_ABI >= 413
175 static pkgSrcRecords::Parser
*FindSrc(const char *Name
,
177 static pkgSrcRecords::Parser
*FindSrc(const char *Name
,pkgRecords
&Recs
,
179 pkgSrcRecords
&SrcRecs
,string
&Src
,
180 CacheFile
&CacheFile
)
182 string VerTag
, UserRequestedVerTag
;
184 string RelTag
= _config
->Find("APT::Default-Release");
185 string TmpSrc
= Name
;
186 pkgDepCache
*Cache
= CacheFile
.GetDepCache();
189 size_t found
= TmpSrc
.find_last_of("/");
190 if (found
!= string::npos
)
192 RelTag
= TmpSrc
.substr(found
+1);
193 TmpSrc
= TmpSrc
.substr(0,found
);
195 // extract the version
196 found
= TmpSrc
.find_last_of("=");
197 if (found
!= string::npos
)
199 VerTag
= UserRequestedVerTag
= TmpSrc
.substr(found
+1);
200 TmpSrc
= TmpSrc
.substr(0,found
);
203 found
= TmpSrc
.find_last_of(":");
204 if (found
!= string::npos
)
206 ArchTag
= TmpSrc
.substr(found
+1);
207 TmpSrc
= TmpSrc
.substr(0,found
);
210 /* Lookup the version of the package we would install if we were to
211 install a version and determine the source package name, then look
212 in the archive for a source package of the same name. */
213 bool MatchSrcOnly
= _config
->FindB("APT::Get::Only-Source");
214 pkgCache::PkgIterator Pkg
;
216 Pkg
= Cache
->FindPkg(TmpSrc
, ArchTag
);
218 Pkg
= Cache
->FindPkg(TmpSrc
);
220 // if we can't find a package but the user qualified with a arch,
222 if (Pkg
.end() && ArchTag
!= "")
225 _error
->Error(_("Can not find a package for architecture '%s'"),
230 if (MatchSrcOnly
== false && Pkg
.end() == false)
232 if(VerTag
!= "" || RelTag
!= "" || ArchTag
!= "")
235 // we have a default release, try to locate the pkg. we do it like
236 // this because GetCandidateVer() will not "downgrade", that means
237 // "apt-get source -t stable apt" won't work on a unstable system
238 for (pkgCache::VerIterator Ver
= Pkg
.VersionList();; ++Ver
)
240 // try first only exact matches, later fuzzy matches
241 if (Ver
.end() == true)
246 Ver
= Pkg
.VersionList();
247 // exit right away from the Pkg.VersionList() loop if we
248 // don't have any versions
249 if (Ver
.end() == true)
253 // ignore arches that are not for us
254 if (ArchTag
!= "" && Ver
.Arch() != ArchTag
)
257 // pick highest version for the arch unless the user wants
259 if (ArchTag
!= "" && VerTag
== "" && RelTag
== "")
260 if(Cache
->VS().CmpVersion(VerTag
, Ver
.VerStr()) < 0)
261 VerTag
= Ver
.VerStr();
263 // We match against a concrete version (or a part of this version)
264 if (VerTag
.empty() == false &&
265 (fuzzy
== true || Cache
->VS().CmpVersion(VerTag
, Ver
.VerStr()) != 0) && // exact match
266 (fuzzy
== false || strncmp(VerTag
.c_str(), Ver
.VerStr(), VerTag
.size()) != 0)) // fuzzy match
269 for (pkgCache::VerFileIterator VF
= Ver
.FileList();
270 VF
.end() == false; ++VF
)
272 /* If this is the status file, and the current version is not the
273 version in the status file (ie it is not installed, or somesuch)
274 then it is not a candidate for installation, ever. This weeds
275 out bogus entries that may be due to config-file states, or
277 if ((VF
.File()->Flags
& pkgCache::Flag::NotSource
) ==
278 pkgCache::Flag::NotSource
&& Pkg
.CurrentVer() != Ver
)
281 // or we match against a release
282 if(VerTag
.empty() == false ||
283 (VF
.File().Archive() != 0 && VF
.File().Archive() == RelTag
) ||
284 (VF
.File().Codename() != 0 && VF
.File().Codename() == RelTag
))
286 // the Version we have is possibly fuzzy or includes binUploads,
287 // so we use the Version of the SourcePkg (empty if same as package)
288 #if APT_PKG_ABI >= 413
289 Src
= Ver
.SourcePkgName();
290 VerTag
= Ver
.SourceVerStr();
292 pkgRecords::Parser
&Parse
= Recs
.Lookup(VF
);
293 Src
= Parse
.SourcePkg();
294 // no SourcePkg name, so it is the "binary" name
295 if (Src
.empty() == true)
297 VerTag
= Parse
.SourceVer();
298 if (VerTag
.empty() == true)
299 VerTag
= Ver
.VerStr();
304 if (Src
.empty() == false)
309 if (Src
== "" && ArchTag
!= "")
312 _error
->Error(_("Can not find a package '%s' with version '%s'"),
313 Pkg
.FullName().c_str(), VerTag
.c_str());
315 _error
->Error(_("Can not find a package '%s' with release '%s'"),
316 Pkg
.FullName().c_str(), RelTag
.c_str());
322 if (Src
.empty() == true)
324 // if we don't have found a fitting package yet so we will
325 // choose a good candidate and proceed with that.
326 // Maybe we will find a source later on with the right VerTag
328 pkgCache::VerIterator Ver
= Cache
->GetCandidateVer(Pkg
);
329 if (Ver
.end() == false)
331 #if APT_PKG_ABI >= 413
332 if (strcmp(Ver
.SourcePkgName(),Ver
.ParentPkg().Name()) != 0)
333 Src
= Ver
.SourcePkgName();
334 if (VerTag
.empty() == true && strcmp(Ver
.SourceVerStr(),Ver
.VerStr()) != 0)
335 VerTag
= Ver
.SourceVerStr();
337 pkgRecords::Parser
&Parse
= Recs
.Lookup(Ver
.FileList());
338 Src
= Parse
.SourcePkg();
339 if (VerTag
.empty() == true)
340 VerTag
= Parse
.SourceVer();
346 if (Src
.empty() == true)
352 /* if we have a source pkg name, make sure to only search
353 for srcpkg names, otherwise apt gets confused if there
354 is a binary package "pkg1" and a source package "pkg1"
355 with the same name but that comes from different packages */
359 ioprintf(c1out
, _("Picking '%s' as source package instead of '%s'\n"), Src
.c_str(), TmpSrc
.c_str());
364 pkgSrcRecords::Parser
*Last
= 0;
365 unsigned long Offset
= 0;
367 pkgSourceList
*SrcList
= CacheFile
.GetSourceList();
369 /* Iterate over all of the hits, which includes the resulting
370 binary packages in the search */
371 pkgSrcRecords::Parser
*Parse
;
375 while ((Parse
= SrcRecs
.Find(Src
.c_str(), MatchSrcOnly
)) != 0)
377 const string Ver
= Parse
->Version();
379 // See if we need to look for a specific release tag
380 if (RelTag
!= "" && UserRequestedVerTag
== "")
382 const string Rel
= GetReleaseForSourceRecord(SrcList
, Parse
);
387 Offset
= Parse
->Offset();
392 // Ignore all versions which doesn't fit
393 if (VerTag
.empty() == false &&
394 Cache
->VS().CmpVersion(VerTag
, Ver
) != 0) // exact match
397 // Newer version or an exact match? Save the hit
398 if (Last
== 0 || Cache
->VS().CmpVersion(Version
,Ver
) < 0) {
400 Offset
= Parse
->Offset();
404 // was the version check above an exact match?
405 // If so, we don't need to look further
406 if (VerTag
.empty() == false && (VerTag
== Ver
))
409 if (UserRequestedVerTag
== "" && Version
!= "" && RelTag
!= "")
410 ioprintf(c1out
, "Selected version '%s' (%s) for %s\n",
411 Version
.c_str(), RelTag
.c_str(), Src
.c_str());
413 if (Last
!= 0 || VerTag
.empty() == true)
415 _error
->Error(_("Can not find version '%s' of package '%s'"), VerTag
.c_str(), TmpSrc
.c_str());
419 if (Last
== 0 || Last
->Jump(Offset
) == false)
425 /* mark packages as automatically/manually installed. {{{*/
426 static bool DoMarkAuto(CommandLine
&CmdL
)
429 int AutoMarkChanged
= 0;
430 OpTextProgress progress
;
432 if (Cache
.Open() == false)
435 if (strcasecmp(CmdL
.FileList
[0],"markauto") == 0)
437 else if (strcasecmp(CmdL
.FileList
[0],"unmarkauto") == 0)
440 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
443 // Locate the package
444 pkgCache::PkgIterator Pkg
= Cache
->FindPkg(S
);
445 if (Pkg
.end() == true) {
446 return _error
->Error(_("Couldn't find package %s"),S
);
451 ioprintf(c1out
,_("%s set to manually installed.\n"), Pkg
.Name());
453 ioprintf(c1out
,_("%s set to automatically installed.\n"),
456 Cache
->MarkAuto(Pkg
,Action
);
461 _error
->Notice(_("This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' instead."));
463 if (AutoMarkChanged
&& ! _config
->FindB("APT::Get::Simulate",false))
464 return Cache
->writeStateFile(NULL
);
468 // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
469 // ---------------------------------------------------------------------
470 /* Follows dselect's selections */
471 static bool DoDSelectUpgrade(CommandLine
&)
474 if (Cache
.OpenForInstall() == false || Cache
.CheckDeps() == false)
477 pkgDepCache::ActionGroup
group(Cache
);
479 // Install everything with the install flag set
480 pkgCache::PkgIterator I
= Cache
->PkgBegin();
481 for (;I
.end() != true; ++I
)
483 /* Install the package only if it is a new install, the autoupgrader
484 will deal with the rest */
485 if (I
->SelectedState
== pkgCache::State::Install
)
486 Cache
->MarkInstall(I
,false);
489 /* Now install their deps too, if we do this above then order of
490 the status file is significant for | groups */
491 for (I
= Cache
->PkgBegin();I
.end() != true; ++I
)
493 /* Install the package only if it is a new install, the autoupgrader
494 will deal with the rest */
495 if (I
->SelectedState
== pkgCache::State::Install
)
496 Cache
->MarkInstall(I
,true);
499 // Apply erasures now, they override everything else.
500 for (I
= Cache
->PkgBegin();I
.end() != true; ++I
)
503 if (I
->SelectedState
== pkgCache::State::DeInstall
||
504 I
->SelectedState
== pkgCache::State::Purge
)
505 Cache
->MarkDelete(I
,I
->SelectedState
== pkgCache::State::Purge
);
508 /* Resolve any problems that dselect created, allupgrade cannot handle
509 such things. We do so quite aggressively too.. */
510 if (Cache
->BrokenCount() != 0)
512 pkgProblemResolver
Fix(Cache
);
514 // Hold back held packages.
515 if (_config
->FindB("APT::Ignore-Hold",false) == false)
517 for (pkgCache::PkgIterator I
= Cache
->PkgBegin(); I
.end() == false; ++I
)
519 if (I
->SelectedState
== pkgCache::State::Hold
)
527 if (Fix
.Resolve() == false)
529 ShowBroken(c1out
,Cache
,false);
530 return _error
->Error(_("Internal error, problem resolver broke stuff"));
534 // Now upgrade everything
535 if (APT::Upgrade::Upgrade(Cache
, APT::Upgrade::FORBID_REMOVE_PACKAGES
| APT::Upgrade::FORBID_INSTALL_NEW_PACKAGES
) == false)
537 ShowBroken(c1out
,Cache
,false);
538 return _error
->Error(_("Internal error, problem resolver broke stuff"));
541 return InstallPackages(Cache
,false);
544 // DoClean - Remove download archives /*{{{*/
545 // ---------------------------------------------------------------------
547 static bool DoClean(CommandLine
&)
549 std::string
const archivedir
= _config
->FindDir("Dir::Cache::archives");
550 std::string
const listsdir
= _config
->FindDir("Dir::state::lists");
552 if (_config
->FindB("APT::Get::Simulate") == true)
554 std::string
const pkgcache
= _config
->FindFile("Dir::cache::pkgcache");
555 std::string
const srcpkgcache
= _config
->FindFile("Dir::cache::srcpkgcache");
556 cout
<< "Del " << archivedir
<< "* " << archivedir
<< "partial/*"<< endl
557 << "Del " << listsdir
<< "partial/*" << endl
558 << "Del " << pkgcache
<< " " << srcpkgcache
<< endl
;
563 Fetcher
.GetLock(archivedir
);
564 Fetcher
.Clean(archivedir
);
565 Fetcher
.Clean(archivedir
+ "partial/");
567 Fetcher
.GetLock(listsdir
);
568 Fetcher
.Clean(listsdir
+ "partial/");
570 pkgCacheFile::RemoveCaches();
575 // DoAutoClean - Smartly remove downloaded archives /*{{{*/
576 // ---------------------------------------------------------------------
577 /* This is similar to clean but it only purges things that cannot be
578 downloaded, that is old versions of cached packages. */
579 class LogCleaner
: public pkgArchiveCleaner
582 virtual void Erase(const char *File
,string Pkg
,string Ver
,struct stat
&St
)
584 c1out
<< "Del " << Pkg
<< " " << Ver
<< " [" << SizeToStr(St
.st_size
) << "B]" << endl
;
586 if (_config
->FindB("APT::Get::Simulate") == false)
591 static bool DoAutoClean(CommandLine
&)
593 // Lock the archive directory
595 if (_config
->FindB("Debug::NoLocking",false) == false)
597 int lock_fd
= GetLock(_config
->FindDir("Dir::Cache::Archives") + "lock");
599 return _error
->Error(_("Unable to lock the download directory"));
604 if (Cache
.Open() == false)
609 return Cleaner
.Go(_config
->FindDir("Dir::Cache::archives"),*Cache
) &&
610 Cleaner
.Go(_config
->FindDir("Dir::Cache::archives") + "partial/",*Cache
);
613 // DoDownload - download a binary /*{{{*/
614 // ---------------------------------------------------------------------
615 static bool DoDownload(CommandLine
&CmdL
)
618 if (Cache
.ReadOnlyOpen() == false)
621 APT::CacheSetHelper helper
;
622 APT::VersionSet verset
= APT::VersionSet::FromCommandLine(Cache
,
623 CmdL
.FileList
+ 1, APT::CacheSetHelper::CANDIDATE
, helper
);
625 if (verset
.empty() == true)
628 AcqTextStatus
Stat(std::cout
, ScreenWidth
,_config
->FindI("quiet",0));
629 pkgAcquire
Fetcher(&Stat
);
631 pkgRecords
Recs(Cache
);
632 pkgSourceList
*SrcList
= Cache
.GetSourceList();
634 // reuse the usual acquire methods for deb files, but don't drop them into
635 // the usual directories - keep everything in the current directory
636 std::vector
<std::string
> storefile(verset
.size());
637 std::string
const cwd
= SafeGetCWD();
638 _config
->Set("Dir::Cache::Archives", cwd
);
640 for (APT::VersionSet::const_iterator Ver
= verset
.begin();
641 Ver
!= verset
.end(); ++Ver
, ++i
)
643 pkgAcquire::Item
*I
= new pkgAcqArchive(&Fetcher
, SrcList
, &Recs
, *Ver
, storefile
[i
]);
644 if (storefile
[i
].empty())
646 std::string
const filename
= cwd
+ flNotDir(storefile
[i
]);
647 storefile
[i
].assign(filename
);
648 I
->DestFile
.assign(filename
);
651 // Just print out the uris and exit if the --print-uris flag was used
652 if (_config
->FindB("APT::Get::Print-URIs") == true)
654 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
655 for (; I
!= Fetcher
.UriEnd(); ++I
)
656 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
657 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << endl
;
661 // Disable drop-privs if "_apt" can not write to the target dir
662 CheckDropPrivsMustBeDisabled(Fetcher
);
664 if (_error
->PendingError() == true || CheckAuth(Fetcher
, false) == false)
668 if (AcquireRun(Fetcher
, 0, &Failed
, NULL
) == false)
671 // copy files in local sources to the current directory
672 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin(); I
!= Fetcher
.ItemsEnd(); ++I
)
674 std::string
const filename
= cwd
+ flNotDir((*I
)->DestFile
);
675 if ((*I
)->Local
== true &&
676 filename
!= (*I
)->DestFile
&&
677 (*I
)->Status
== pkgAcquire::Item::StatDone
)
679 std::ifstream
src((*I
)->DestFile
.c_str(), std::ios::binary
);
680 std::ofstream
dst(filename
.c_str(), std::ios::binary
);
684 return Failed
== false;
687 // DoCheck - Perform the check operation /*{{{*/
688 // ---------------------------------------------------------------------
689 /* Opening automatically checks the system, this command is mostly used
691 static bool DoCheck(CommandLine
&)
700 // DoSource - Fetch a source archive /*{{{*/
701 // ---------------------------------------------------------------------
702 /* Fetch souce packages */
710 static bool DoSource(CommandLine
&CmdL
)
713 if (Cache
.Open(false) == false)
716 if (CmdL
.FileSize() <= 1)
717 return _error
->Error(_("Must specify at least one package to fetch source for"));
719 // Read the source list
720 if (Cache
.BuildSourceList() == false)
722 pkgSourceList
*List
= Cache
.GetSourceList();
724 // Create the text record parsers
725 #if APT_PKG_ABI < 413
726 pkgRecords
Recs(Cache
);
728 pkgSrcRecords
SrcRecs(*List
);
729 if (_error
->PendingError() == true)
732 // Create the download object
733 AcqTextStatus
Stat(std::cout
, ScreenWidth
,_config
->FindI("quiet",0));
734 pkgAcquire
Fetcher(&Stat
);
736 SPtrArray
<DscFile
> Dsc
= new DscFile
[CmdL
.FileSize()];
738 // insert all downloaded uris into this set to avoid downloading them
742 // Diff only mode only fetches .diff files
743 bool const diffOnly
= _config
->FindB("APT::Get::Diff-Only", false);
744 // Tar only mode only fetches .tar files
745 bool const tarOnly
= _config
->FindB("APT::Get::Tar-Only", false);
746 // Dsc only mode only fetches .dsc files
747 bool const dscOnly
= _config
->FindB("APT::Get::Dsc-Only", false);
749 // Load the requestd sources into the fetcher
751 std::string UntrustedList
;
752 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++, J
++)
755 #if APT_PKG_ABI >= 413
756 pkgSrcRecords::Parser
*Last
= FindSrc(*I
,SrcRecs
,Src
,Cache
);
758 pkgSrcRecords::Parser
*Last
= FindSrc(*I
,Recs
,SrcRecs
,Src
,Cache
);
761 return _error
->Error(_("Unable to find a source package for %s"),Src
.c_str());
764 if (Last
->Index().IsTrusted() == false)
765 UntrustedList
+= Src
+ " ";
767 string srec
= Last
->AsStr();
768 string::size_type pos
= srec
.find("\nVcs-");
769 while (pos
!= string::npos
)
771 pos
+= strlen("\nVcs-");
772 string vcs
= srec
.substr(pos
,srec
.find(":",pos
)-pos
);
775 pos
= srec
.find("\nVcs-", pos
);
778 pos
+= vcs
.length()+2;
779 string::size_type epos
= srec
.find("\n", pos
);
780 string uri
= srec
.substr(pos
,epos
-pos
).c_str();
781 ioprintf(c1out
, _("NOTICE: '%s' packaging is maintained in "
782 "the '%s' version control system at:\n"
784 Src
.c_str(), vcs
.c_str(), uri
.c_str());
786 ioprintf(c1out
,_("Please use:\n"
788 "to retrieve the latest (possibly unreleased) "
789 "updates to the package.\n"),
795 vector
<pkgSrcRecords::File2
> Lst
;
796 if (Last
->Files2(Lst
) == false) {
800 // Load them into the fetcher
801 for (vector
<pkgSrcRecords::File2
>::const_iterator I
= Lst
.begin();
804 // Try to guess what sort of file it is we are getting.
805 if (I
->Type
== "dsc")
807 Dsc
[J
].Package
= Last
->Package();
808 Dsc
[J
].Version
= Last
->Version();
809 Dsc
[J
].Dsc
= flNotDir(I
->Path
);
812 // Handle the only options so that multiple can be used at once
813 if (diffOnly
== true || tarOnly
== true || dscOnly
== true)
815 if ((diffOnly
== true && I
->Type
== "diff") ||
816 (tarOnly
== true && I
->Type
== "tar") ||
817 (dscOnly
== true && I
->Type
== "dsc"))
818 ; // Fine, we want this file downloaded
823 // don't download the same uri twice (should this be moved to
824 // the fetcher interface itself?)
825 if(queued
.find(Last
->Index().ArchiveURI(I
->Path
)) != queued
.end())
827 queued
.insert(Last
->Index().ArchiveURI(I
->Path
));
829 // check if we have a file with that md5 sum already localy
830 std::string localFile
= flNotDir(I
->Path
);
831 if (FileExists(localFile
) == true)
832 if(I
->Hashes
.VerifyFile(localFile
) == true)
834 ioprintf(c1out
,_("Skipping already downloaded file '%s'\n"),
839 // see if we have a hash (Acquire::ForceHash is the only way to have none)
840 if (I
->Hashes
.usable() == false && _config
->FindB("APT::Get::AllowUnauthenticated",false) == false)
842 ioprintf(c1out
, "Skipping download of file '%s' as requested hashsum is not available for authentication\n",
847 new pkgAcqFile(&Fetcher
,Last
->Index().ArchiveURI(I
->Path
),
848 I
->Hashes
, I
->FileSize
, Last
->Index().SourceInfo(*Last
,*I
), Src
);
852 // Display statistics
853 unsigned long long FetchBytes
= Fetcher
.FetchNeeded();
854 unsigned long long FetchPBytes
= Fetcher
.PartialPresent();
855 unsigned long long DebBytes
= Fetcher
.TotalNeeded();
857 if (CheckFreeSpaceBeforeDownload(".", (FetchBytes
- FetchPBytes
)) == false)
861 if (DebBytes
!= FetchBytes
)
862 //TRANSLATOR: The required space between number and unit is already included
863 // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
864 ioprintf(c1out
,_("Need to get %sB/%sB of source archives.\n"),
865 SizeToStr(FetchBytes
).c_str(),SizeToStr(DebBytes
).c_str());
867 //TRANSLATOR: The required space between number and unit is already included
868 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
869 ioprintf(c1out
,_("Need to get %sB of source archives.\n"),
870 SizeToStr(DebBytes
).c_str());
872 if (_config
->FindB("APT::Get::Simulate",false) == true)
874 for (unsigned I
= 0; I
!= J
; I
++)
875 ioprintf(cout
,_("Fetch source %s\n"),Dsc
[I
].Package
.c_str());
879 // Just print out the uris an exit if the --print-uris flag was used
880 if (_config
->FindB("APT::Get::Print-URIs") == true)
882 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
883 for (; I
!= Fetcher
.UriEnd(); ++I
)
884 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
885 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << endl
;
889 // Disable drop-privs if "_apt" can not write to the target dir
890 CheckDropPrivsMustBeDisabled(Fetcher
);
892 // check authentication status of the source as well
893 if (UntrustedList
!= "" && !AuthPrompt(UntrustedList
, false))
898 if (AcquireRun(Fetcher
, 0, &Failed
, NULL
) == false || Failed
== true)
900 return _error
->Error(_("Failed to fetch some archives."));
903 if (_config
->FindB("APT::Get::Download-only",false) == true)
905 c1out
<< _("Download complete and in download only mode") << endl
;
909 // Unpack the sources
910 pid_t Process
= ExecFork();
914 bool const fixBroken
= _config
->FindB("APT::Get::Fix-Broken", false);
915 for (unsigned I
= 0; I
!= J
; ++I
)
917 string Dir
= Dsc
[I
].Package
+ '-' + Cache
->VS().UpstreamVersion(Dsc
[I
].Version
.c_str());
919 // Diff only mode only fetches .diff files
920 if (_config
->FindB("APT::Get::Diff-Only",false) == true ||
921 _config
->FindB("APT::Get::Tar-Only",false) == true ||
922 Dsc
[I
].Dsc
.empty() == true)
925 // See if the package is already unpacked
927 if (fixBroken
== false && stat(Dir
.c_str(),&Stat
) == 0 &&
928 S_ISDIR(Stat
.st_mode
) != 0)
930 ioprintf(c0out
,_("Skipping unpack of already unpacked source in %s\n"),
936 std::string
const sourceopts
= _config
->Find("DPkg::Source-Options", "-x");
938 strprintf(S
, "%s %s %s",
939 _config
->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(),
940 sourceopts
.c_str(), Dsc
[I
].Dsc
.c_str());
941 if (system(S
.c_str()) != 0)
943 fprintf(stderr
, _("Unpack command '%s' failed.\n"), S
.c_str());
944 fprintf(stderr
, _("Check if the 'dpkg-dev' package is installed.\n"));
949 // Try to compile it with dpkg-buildpackage
950 if (_config
->FindB("APT::Get::Compile",false) == true)
952 string buildopts
= _config
->Find("APT::Get::Host-Architecture");
953 if (buildopts
.empty() == false)
954 buildopts
= "-a" + buildopts
+ " ";
956 // get all active build profiles
957 std::string
const profiles
= APT::Configuration::getBuildProfilesString();
958 if (profiles
.empty() == false)
959 buildopts
.append(" -P").append(profiles
).append(" ");
961 buildopts
.append(_config
->Find("DPkg::Build-Options","-b -uc"));
963 // Call dpkg-buildpackage
965 strprintf(S
, "cd %s && %s %s",
967 _config
->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(),
970 if (system(S
.c_str()) != 0)
972 fprintf(stderr
, _("Build command '%s' failed.\n"), S
.c_str());
981 // Wait for the subprocess
983 while (waitpid(Process
,&Status
,0) != Process
)
987 return _error
->Errno("waitpid","Couldn't wait for subprocess");
990 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
991 return _error
->Error(_("Child process failed"));
996 // DoBuildDep - Install/removes packages to satisfy build dependencies /*{{{*/
997 // ---------------------------------------------------------------------
998 /* This function will look at the build depends list of the given source
999 package and install the necessary packages to make it true, or fail. */
1000 static bool DoBuildDep(CommandLine
&CmdL
)
1004 _config
->Set("APT::Install-Recommends", false);
1006 if (Cache
.Open(true) == false)
1009 if (CmdL
.FileSize() <= 1)
1010 return _error
->Error(_("Must specify at least one package to check builddeps for"));
1012 // Read the source list
1013 if (Cache
.BuildSourceList() == false)
1015 pkgSourceList
*List
= Cache
.GetSourceList();
1017 // Create the text record parsers
1018 #if APT_PKG_ABI < 413
1019 pkgRecords
Recs(Cache
);
1021 pkgSrcRecords
SrcRecs(*List
);
1022 if (_error
->PendingError() == true)
1025 bool StripMultiArch
;
1026 string hostArch
= _config
->Find("APT::Get::Host-Architecture");
1027 if (hostArch
.empty() == false)
1029 std::vector
<std::string
> archs
= APT::Configuration::getArchitectures();
1030 if (std::find(archs
.begin(), archs
.end(), hostArch
) == archs
.end())
1031 return _error
->Error(_("No architecture information available for %s. See apt.conf(5) APT::Architectures for setup"), hostArch
.c_str());
1032 StripMultiArch
= false;
1035 StripMultiArch
= true;
1038 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++, J
++)
1041 pkgSrcRecords::Parser
*Last
= 0;
1043 // an unpacked debian source tree
1044 using APT::String::Startswith
;
1045 if ((Startswith(*I
, "./") || Startswith(*I
, "/")) &&
1046 DirectoryExists(*I
))
1048 ioprintf(c1out
, _("Note, using directory '%s' to get the build dependencies\n"), *I
);
1049 // FIXME: how can we make this more elegant?
1050 std::string TypeName
= "debian/control File Source Index";
1051 pkgIndexFile::Type
*Type
= pkgIndexFile::Type::GetType(TypeName
.c_str());
1053 Last
= Type
->CreateSrcPkgParser(*I
);
1055 // if its a local file (e.g. .dsc) use this
1056 else if (FileExists(*I
))
1058 ioprintf(c1out
, _("Note, using file '%s' to get the build dependencies\n"), *I
);
1060 // see if we can get a parser for this pkgIndexFile type
1061 string TypeName
= flExtension(*I
) + " File Source Index";
1062 pkgIndexFile::Type
*Type
= pkgIndexFile::Type::GetType(TypeName
.c_str());
1064 Last
= Type
->CreateSrcPkgParser(*I
);
1066 // normal case, search the cache for the source file
1067 #if APT_PKG_ABI >= 413
1068 Last
= FindSrc(*I
,SrcRecs
,Src
,Cache
);
1070 Last
= FindSrc(*I
,Recs
,SrcRecs
,Src
,Cache
);
1075 return _error
->Error(_("Unable to find a source package for %s"),Src
.c_str());
1077 // Process the build-dependencies
1078 vector
<pkgSrcRecords::Parser::BuildDepRec
> BuildDeps
;
1079 // FIXME: Can't specify architecture to use for [wildcard] matching, so switch default arch temporary
1080 if (hostArch
.empty() == false)
1082 std::string nativeArch
= _config
->Find("APT::Architecture");
1083 _config
->Set("APT::Architecture", hostArch
);
1084 bool Success
= Last
->BuildDepends(BuildDeps
, _config
->FindB("APT::Get::Arch-Only", false), StripMultiArch
);
1085 _config
->Set("APT::Architecture", nativeArch
);
1086 if (Success
== false)
1087 return _error
->Error(_("Unable to get build-dependency information for %s"),Src
.c_str());
1089 else if (Last
->BuildDepends(BuildDeps
, _config
->FindB("APT::Get::Arch-Only", false), StripMultiArch
) == false)
1090 return _error
->Error(_("Unable to get build-dependency information for %s"),Src
.c_str());
1092 // Also ensure that build-essential packages are present
1093 Configuration::Item
const *Opts
= _config
->Tree("APT::Build-Essential");
1096 for (; Opts
; Opts
= Opts
->Next
)
1098 if (Opts
->Value
.empty() == true)
1101 pkgSrcRecords::Parser::BuildDepRec rec
;
1102 rec
.Package
= Opts
->Value
;
1103 rec
.Type
= pkgSrcRecords::Parser::BuildDependIndep
;
1105 BuildDeps
.push_back(rec
);
1108 if (BuildDeps
.empty() == true)
1110 ioprintf(c1out
,_("%s has no build depends.\n"),Src
.c_str());
1114 // Install the requested packages
1115 vector
<pkgSrcRecords::Parser::BuildDepRec
>::iterator D
;
1116 pkgProblemResolver
Fix(Cache
);
1117 bool skipAlternatives
= false; // skip remaining alternatives in an or group
1118 for (D
= BuildDeps
.begin(); D
!= BuildDeps
.end(); ++D
)
1120 bool hasAlternatives
= (((*D
).Op
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
);
1122 if (skipAlternatives
== true)
1125 * if there are alternatives, we've already picked one, so skip
1128 * TODO: this means that if there's a build-dep on A|B and B is
1129 * installed, we'll still try to install A; more importantly,
1130 * if A is currently broken, we cannot go back and try B. To fix
1131 * this would require we do a Resolve cycle for each package we
1132 * add to the install list. Ugh
1134 if (!hasAlternatives
)
1135 skipAlternatives
= false; // end of or group
1139 if ((*D
).Type
== pkgSrcRecords::Parser::BuildConflict
||
1140 (*D
).Type
== pkgSrcRecords::Parser::BuildConflictIndep
)
1142 pkgCache::GrpIterator Grp
= Cache
->FindGrp((*D
).Package
);
1143 // Build-conflicts on unknown packages are silently ignored
1144 if (Grp
.end() == true)
1147 for (pkgCache::PkgIterator Pkg
= Grp
.PackageList(); Pkg
.end() == false; Pkg
= Grp
.NextPkg(Pkg
))
1149 pkgCache::VerIterator IV
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
1151 * Remove if we have an installed version that satisfies the
1154 if (IV
.end() == false &&
1155 Cache
->VS().CheckDep(IV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == true)
1156 TryToInstallBuildDep(Pkg
,Cache
,Fix
,true,false);
1159 else // BuildDep || BuildDepIndep
1161 if (_config
->FindB("Debug::BuildDeps",false) == true)
1162 cout
<< "Looking for " << (*D
).Package
<< "...\n";
1164 pkgCache::PkgIterator Pkg
;
1167 if (StripMultiArch
== false && D
->Type
!= pkgSrcRecords::Parser::BuildDependIndep
)
1169 size_t const colon
= D
->Package
.find(":");
1170 if (colon
!= string::npos
)
1172 if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0 || strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1173 Pkg
= Cache
->FindPkg(D
->Package
.substr(0,colon
));
1175 Pkg
= Cache
->FindPkg(D
->Package
);
1178 Pkg
= Cache
->FindPkg(D
->Package
, hostArch
);
1180 // a bad version either is invalid or doesn't satify dependency
1181 #define BADVER(Ver) (Ver.end() == true || \
1182 (D->Version.empty() == false && \
1183 Cache->VS().CheckDep(Ver.VerStr(),D->Op,D->Version.c_str()) == false))
1185 APT::VersionList verlist
;
1186 if (Pkg
.end() == false)
1188 pkgCache::VerIterator Ver
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
1189 if (BADVER(Ver
) == false)
1190 verlist
.insert(Ver
);
1191 Ver
= (*Cache
)[Pkg
].CandidateVerIter(*Cache
);
1192 if (BADVER(Ver
) == false)
1193 verlist
.insert(Ver
);
1195 if (verlist
.empty() == true)
1197 pkgCache::PkgIterator BuildPkg
= Cache
->FindPkg(D
->Package
, "native");
1198 if (BuildPkg
.end() == false && Pkg
!= BuildPkg
)
1200 pkgCache::VerIterator Ver
= (*Cache
)[BuildPkg
].InstVerIter(*Cache
);
1201 if (BADVER(Ver
) == false)
1202 verlist
.insert(Ver
);
1203 Ver
= (*Cache
)[BuildPkg
].CandidateVerIter(*Cache
);
1204 if (BADVER(Ver
) == false)
1205 verlist
.insert(Ver
);
1211 // We need to decide if host or build arch, so find a version we can look at
1212 APT::VersionList::const_iterator Ver
= verlist
.begin();
1213 for (; Ver
!= verlist
.end(); ++Ver
)
1216 if (Ver
->MultiArch
== pkgCache::Version::None
|| Ver
->MultiArch
== pkgCache::Version::All
)
1218 if (colon
== string::npos
)
1219 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
1220 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
1221 forbidden
= "Multi-Arch: none";
1222 else if (strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1223 Pkg
= Ver
.ParentPkg().Group().FindPkg("native");
1225 else if (Ver
->MultiArch
== pkgCache::Version::Same
)
1227 if (colon
== string::npos
)
1228 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
1229 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
1230 forbidden
= "Multi-Arch: same";
1231 else if (strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1232 Pkg
= Ver
.ParentPkg().Group().FindPkg("native");
1234 else if ((Ver
->MultiArch
& pkgCache::Version::Foreign
) == pkgCache::Version::Foreign
)
1236 if (colon
== string::npos
)
1237 Pkg
= Ver
.ParentPkg().Group().FindPkg("native");
1238 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0 ||
1239 strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1240 forbidden
= "Multi-Arch: foreign";
1242 else if ((Ver
->MultiArch
& pkgCache::Version::Allowed
) == pkgCache::Version::Allowed
)
1244 if (colon
== string::npos
)
1245 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
1246 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
1248 // prefer any installed over preferred non-installed architectures
1249 pkgCache::GrpIterator Grp
= Ver
.ParentPkg().Group();
1250 // we don't check for version here as we are better of with upgrading than remove and install
1251 for (Pkg
= Grp
.PackageList(); Pkg
.end() == false; Pkg
= Grp
.NextPkg(Pkg
))
1252 if (Pkg
.CurrentVer().end() == false)
1254 if (Pkg
.end() == true)
1255 Pkg
= Grp
.FindPreferredPkg(true);
1257 else if (strcmp(D
->Package
.c_str() + colon
, ":native") == 0)
1258 Pkg
= Ver
.ParentPkg().Group().FindPkg("native");
1261 if (forbidden
.empty() == false)
1263 if (_config
->FindB("Debug::BuildDeps",false) == true)
1264 cout
<< D
->Package
.substr(colon
, string::npos
) << " is not allowed from " << forbidden
<< " package " << (*D
).Package
<< " (" << Ver
.VerStr() << ")" << endl
;
1268 //we found a good version
1271 if (Ver
== verlist
.end())
1273 if (_config
->FindB("Debug::BuildDeps",false) == true)
1274 cout
<< " No multiarch info as we have no satisfying installed nor candidate for " << D
->Package
<< " on build or host arch" << endl
;
1276 if (forbidden
.empty() == false)
1278 if (hasAlternatives
)
1280 return _error
->Error(_("%s dependency for %s can't be satisfied "
1281 "because %s is not allowed on '%s' packages"),
1282 Last
->BuildDepType(D
->Type
), Src
.c_str(),
1283 D
->Package
.c_str(), forbidden
.c_str());
1288 Pkg
= Cache
->FindPkg(D
->Package
);
1290 if (Pkg
.end() == true || (Pkg
->VersionList
== 0 && Pkg
->ProvidesList
== 0))
1292 if (_config
->FindB("Debug::BuildDeps",false) == true)
1293 cout
<< " (not found)" << (*D
).Package
<< endl
;
1295 if (hasAlternatives
)
1298 return _error
->Error(_("%s dependency for %s cannot be satisfied "
1299 "because the package %s cannot be found"),
1300 Last
->BuildDepType((*D
).Type
),Src
.c_str(),
1301 (*D
).Package
.c_str());
1304 pkgCache::VerIterator IV
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
1305 if (IV
.end() == false)
1307 if (_config
->FindB("Debug::BuildDeps",false) == true)
1308 cout
<< " Is installed\n";
1310 if (D
->Version
.empty() == true ||
1311 Cache
->VS().CheckDep(IV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == true)
1313 skipAlternatives
= hasAlternatives
;
1317 if (_config
->FindB("Debug::BuildDeps",false) == true)
1318 cout
<< " ...but the installed version doesn't meet the version requirement\n";
1320 if (((*D
).Op
& pkgCache::Dep::LessEq
) == pkgCache::Dep::LessEq
)
1321 return _error
->Error(_("Failed to satisfy %s dependency for %s: Installed package %s is too new"),
1322 Last
->BuildDepType((*D
).Type
), Src
.c_str(), Pkg
.FullName(true).c_str());
1325 // Only consider virtual packages if there is no versioned dependency
1326 if ((*D
).Version
.empty() == true)
1329 * If this is a virtual package, we need to check the list of
1330 * packages that provide it and see if any of those are
1333 pkgCache::PrvIterator Prv
= Pkg
.ProvidesList();
1334 for (; Prv
.end() != true; ++Prv
)
1336 if (_config
->FindB("Debug::BuildDeps",false) == true)
1337 cout
<< " Checking provider " << Prv
.OwnerPkg().FullName() << endl
;
1339 if ((*Cache
)[Prv
.OwnerPkg()].InstVerIter(*Cache
).end() == false)
1343 if (Prv
.end() == false)
1345 if (_config
->FindB("Debug::BuildDeps",false) == true)
1346 cout
<< " Is provided by installed package " << Prv
.OwnerPkg().FullName() << endl
;
1347 skipAlternatives
= hasAlternatives
;
1351 else // versioned dependency
1353 pkgCache::VerIterator CV
= (*Cache
)[Pkg
].CandidateVerIter(*Cache
);
1354 if (CV
.end() == true ||
1355 Cache
->VS().CheckDep(CV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == false)
1357 if (hasAlternatives
)
1359 else if (CV
.end() == false)
1360 return _error
->Error(_("%s dependency for %s cannot be satisfied "
1361 "because candidate version of package %s "
1362 "can't satisfy version requirements"),
1363 Last
->BuildDepType(D
->Type
), Src
.c_str(),
1364 D
->Package
.c_str());
1366 return _error
->Error(_("%s dependency for %s cannot be satisfied "
1367 "because package %s has no candidate version"),
1368 Last
->BuildDepType(D
->Type
), Src
.c_str(),
1369 D
->Package
.c_str());
1373 if (TryToInstallBuildDep(Pkg
,Cache
,Fix
,false,false,false) == true)
1375 // We successfully installed something; skip remaining alternatives
1376 skipAlternatives
= hasAlternatives
;
1377 if(_config
->FindB("APT::Get::Build-Dep-Automatic", false) == true)
1378 Cache
->MarkAuto(Pkg
, true);
1381 else if (hasAlternatives
)
1383 if (_config
->FindB("Debug::BuildDeps",false) == true)
1384 cout
<< " Unsatisfiable, trying alternatives\n";
1389 return _error
->Error(_("Failed to satisfy %s dependency for %s: %s"),
1390 Last
->BuildDepType((*D
).Type
),
1392 (*D
).Package
.c_str());
1397 if (Fix
.Resolve(true) == false)
1400 // Now we check the state of the packages,
1401 if (Cache
->BrokenCount() != 0)
1403 ShowBroken(cout
, Cache
, false);
1404 return _error
->Error(_("Build-dependencies for %s could not be satisfied."),*I
);
1408 if (InstallPackages(Cache
, false, true) == false)
1409 return _error
->Error(_("Failed to process build dependencies"));
1413 // DoChangelog - Get changelog from the command line /*{{{*/
1414 static bool DoChangelog(CommandLine
&CmdL
)
1417 if (Cache
.ReadOnlyOpen() == false)
1420 APT::CacheSetHelper helper
;
1421 APT::VersionList verset
= APT::VersionList::FromCommandLine(Cache
,
1422 CmdL
.FileList
+ 1, APT::CacheSetHelper::CANDIDATE
, helper
);
1423 if (verset
.empty() == true)
1426 AcqTextStatus
Stat(std::cout
, ScreenWidth
,_config
->FindI("quiet",0));
1427 Fetcher
.SetLog(&Stat
);
1429 bool const downOnly
= _config
->FindB("APT::Get::Download-Only", false);
1430 bool const printOnly
= _config
->FindB("APT::Get::Print-URIs", false);
1432 for (APT::VersionList::const_iterator Ver
= verset
.begin();
1433 Ver
!= verset
.end();
1437 new pkgAcqChangelog(&Fetcher
, Ver
, "/dev/null");
1439 new pkgAcqChangelog(&Fetcher
, Ver
, ".");
1441 new pkgAcqChangelog(&Fetcher
, Ver
);
1444 if (printOnly
== false)
1446 // Disable drop-privs if "_apt" can not write to the target dir
1447 CheckDropPrivsMustBeDisabled(Fetcher
);
1448 if (_error
->PendingError() == true)
1451 bool Failed
= false;
1452 if (AcquireRun(Fetcher
, 0, &Failed
, NULL
) == false || Failed
== true)
1456 if (downOnly
== false || printOnly
== true)
1458 bool Failed
= false;
1459 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin(); I
!= Fetcher
.ItemsEnd(); ++I
)
1463 if ((*I
)->ErrorText
.empty() == false)
1466 _error
->Error("%s", (*I
)->ErrorText
.c_str());
1469 cout
<< '\'' << (*I
)->DescURI() << "' " << flNotDir((*I
)->DestFile
) << std::endl
;
1472 DisplayFileInPager((*I
)->DestFile
);
1474 return Failed
== false;
1480 // DoFiles - Lists all IndexTargets /*{{{*/
1481 static std::string
format_key(std::string key
)
1483 // deb822 is case-insensitive, but the human eye prefers candy
1484 std::transform(key
.begin(), key
.end(), key
.begin(), ::tolower
);
1485 key
[0] = ::toupper(key
[0]);
1486 size_t found
= key
.find("_uri");
1487 if (found
!= std::string::npos
)
1488 key
.replace(found
, 4, "-URI");
1489 while ((found
= key
.find('_')) != std::string::npos
)
1492 key
[found
+ 1] = ::toupper(key
[found
+ 1]);
1496 static bool DoFiles(CommandLine
&CmdL
)
1498 pkgCacheFile CacheFile
;
1499 pkgSourceList
*SrcList
= CacheFile
.GetSourceList();
1501 if (SrcList
== NULL
)
1504 std::string
const Format
= _config
->Find("APT::Get::Files::Format");
1505 bool const ReleaseInfo
= _config
->FindB("APT::Get::Files::ReleaseInfo", true);
1506 bool Filtered
= CmdL
.FileSize() > 1;
1507 for (pkgSourceList::const_iterator S
= SrcList
->begin(); S
!= SrcList
->end(); ++S
)
1509 std::vector
<IndexTarget
> const targets
= (*S
)->GetIndexTargets();
1510 std::map
<std::string
, string
> AddOptions
;
1513 AddOptions
.insert(std::make_pair("TRUSTED", ((*S
)->IsTrusted() ? "yes" : "no")));
1514 pkgCache
&Cache
= *CacheFile
.GetPkgCache();
1515 pkgCache::RlsFileIterator
const RlsFile
= (*S
)->FindInCache(Cache
, false);
1518 #define APT_RELEASE(X,Y) if (RlsFile.Y() != NULL) AddOptions.insert(std::make_pair(X, RlsFile.Y()))
1519 APT_RELEASE("CODENAME", Codename
);
1520 APT_RELEASE("SUITE", Archive
);
1521 APT_RELEASE("VERSION", Version
);
1522 APT_RELEASE("ORIGIN", Origin
);
1523 APT_RELEASE("LABEL", Label
);
1527 for (std::vector
<IndexTarget
>::const_iterator T
= targets
.begin(); T
!= targets
.end(); ++T
)
1529 std::string filename
= T
->Option(ReleaseInfo
? IndexTarget::EXISTING_FILENAME
: IndexTarget::FILENAME
);
1530 if (filename
.empty())
1533 std::ostringstream stanza
;
1534 if (Filtered
|| Format
.empty())
1536 stanza
<< "MetaKey: " << T
->MetaKey
<< "\n"
1537 << "ShortDesc: " << T
->ShortDesc
<< "\n"
1538 << "Description: " << T
->Description
<< "\n"
1539 << "URI: " << T
->URI
<< "\n"
1540 << "Filename: " << filename
<< "\n"
1541 << "Optional: " << (T
->IsOptional
? "yes" : "no") << "\n";
1542 for (std::map
<std::string
,std::string
>::const_iterator O
= AddOptions
.begin(); O
!= AddOptions
.end(); ++O
)
1543 stanza
<< format_key(O
->first
) << ": " << O
->second
<< "\n";
1544 for (std::map
<std::string
,std::string
>::const_iterator O
= T
->Options
.begin(); O
!= T
->Options
.end(); ++O
)
1545 stanza
<< format_key(O
->first
) << ": " << O
->second
<< "\n";
1550 // that is a bit crude, but good enough for now
1552 std::string haystack
= std::string("\n") + stanza
.str() + "\n";
1553 std::transform(haystack
.begin(), haystack
.end(), haystack
.begin(), ::tolower
);
1554 size_t const filesize
= CmdL
.FileSize() - 1;
1555 for (size_t i
= 0; i
!= filesize
; ++i
)
1557 std::string needle
= std::string("\n") + CmdL
.FileList
[i
+ 1] + "\n";
1558 std::transform(needle
.begin(), needle
.end(), needle
.begin(), ::tolower
);
1559 if (haystack
.find(needle
) != std::string::npos
)
1570 cout
<< stanza
.str();
1573 std::string out
= SubstVar(Format
, "$(FILENAME)", filename
);
1574 out
= T
->Format(out
);
1575 for (std::map
<std::string
,std::string
>::const_iterator O
= AddOptions
.begin(); O
!= AddOptions
.end(); ++O
)
1576 out
= SubstVar(out
, std::string("$(") + O
->first
+ ")", O
->second
);
1577 cout
<< out
<< std::endl
;
1585 // ShowHelp - Show a help screen /*{{{*/
1586 // ---------------------------------------------------------------------
1588 static bool ShowHelp(CommandLine
&)
1590 ioprintf(cout
, "%s %s (%s)\n", PACKAGE
, PACKAGE_VERSION
, COMMON_ARCH
);
1592 if (_config
->FindB("version") == true)
1594 cout
<< _("Supported modules:") << endl
;
1596 for (unsigned I
= 0; I
!= pkgVersioningSystem::GlobalListLen
; I
++)
1598 pkgVersioningSystem
*VS
= pkgVersioningSystem::GlobalList
[I
];
1599 if (_system
!= 0 && _system
->VS
== VS
)
1603 cout
<< "Ver: " << VS
->Label
<< endl
;
1605 /* Print out all the packaging systems that will work with
1607 for (unsigned J
= 0; J
!= pkgSystem::GlobalListLen
; J
++)
1609 pkgSystem
*Sys
= pkgSystem::GlobalList
[J
];
1614 if (Sys
->VS
->TestCompatibility(*VS
) == true)
1615 cout
<< "Pkg: " << Sys
->Label
<< " (Priority " << Sys
->Score(*_config
) << ")" << endl
;
1619 for (unsigned I
= 0; I
!= pkgSourceList::Type::GlobalListLen
; I
++)
1621 pkgSourceList::Type
*Type
= pkgSourceList::Type::GlobalList
[I
];
1622 cout
<< " S.L: '" << Type
->Name
<< "' " << Type
->Label
<< endl
;
1625 for (unsigned I
= 0; I
!= pkgIndexFile::Type::GlobalListLen
; I
++)
1627 pkgIndexFile::Type
*Type
= pkgIndexFile::Type::GlobalList
[I
];
1628 cout
<< " Idx: " << Type
->Label
<< endl
;
1635 _("Usage: apt-get [options] command\n"
1636 " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
1637 " apt-get [options] source pkg1 [pkg2 ...]\n"
1639 "apt-get is a simple command line interface for downloading and\n"
1640 "installing packages. The most frequently used commands are update\n"
1644 " update - Retrieve new lists of packages\n"
1645 " upgrade - Perform an upgrade\n"
1646 " install - Install new packages (pkg is libc6 not libc6.deb)\n"
1647 " remove - Remove packages\n"
1648 " autoremove - Remove automatically all unused packages\n"
1649 " purge - Remove packages and config files\n"
1650 " source - Download source archives\n"
1651 " build-dep - Configure build-dependencies for source packages\n"
1652 " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
1653 " dselect-upgrade - Follow dselect selections\n"
1654 " clean - Erase downloaded archive files\n"
1655 " autoclean - Erase old downloaded archive files\n"
1656 " check - Verify that there are no broken dependencies\n"
1657 " changelog - Download and display the changelog for the given package\n"
1658 " download - Download the binary package into the current directory\n"
1661 " -h This help text.\n"
1662 " -q Loggable output - no progress indicator\n"
1663 " -qq No output except for errors\n"
1664 " -d Download only - do NOT install or unpack archives\n"
1665 " -s No-act. Perform ordering simulation\n"
1666 " -y Assume Yes to all queries and do not prompt\n"
1667 " -f Attempt to correct a system with broken dependencies in place\n"
1668 " -m Attempt to continue if archives are unlocatable\n"
1669 " -u Show a list of upgraded packages as well\n"
1670 " -b Build the source package after fetching it\n"
1671 " -V Show verbose version numbers\n"
1672 " -c=? Read this configuration file\n"
1673 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
1674 "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
1675 "pages for more information and options.\n"
1676 " This APT has Super Cow Powers.\n");
1680 int main(int argc
,const char *argv
[]) /*{{{*/
1682 CommandLine::Dispatch Cmds
[] = {{"update",&DoUpdate
},
1683 {"upgrade",&DoUpgrade
},
1684 {"install",&DoInstall
},
1685 {"remove",&DoInstall
},
1686 {"purge",&DoInstall
},
1687 {"autoremove",&DoInstall
},
1688 {"markauto",&DoMarkAuto
},
1689 {"unmarkauto",&DoMarkAuto
},
1690 {"dist-upgrade",&DoDistUpgrade
},
1691 {"dselect-upgrade",&DoDSelectUpgrade
},
1692 {"build-dep",&DoBuildDep
},
1694 {"autoclean",&DoAutoClean
},
1696 {"source",&DoSource
},
1697 {"download",&DoDownload
},
1698 {"changelog",&DoChangelog
},
1704 std::vector
<CommandLine::Args
> Args
= getCommandArgs("apt-get", CommandLine::GetCommand(Cmds
, argc
, argv
));
1706 // Set up gettext support
1707 setlocale(LC_ALL
,"");
1708 textdomain(PACKAGE
);
1710 // Parse the command line and initialize the package library
1712 ParseCommandLine(CmdL
, Cmds
, Args
.data(), &_config
, &_system
, argc
, argv
, ShowHelp
);
1714 // see if we are in simulate mode
1715 CheckSimulateMode(CmdL
);
1720 // Setup the output streams
1723 // Match the operation
1724 CmdL
.DispatchArg(Cmds
);
1726 // Print any errors or warnings found during parsing
1727 bool const Errors
= _error
->PendingError();
1728 if (_config
->FindI("quiet",0) > 0)
1729 _error
->DumpErrors();
1731 _error
->DumpErrors(GlobalError::DEBUG
);
1732 return Errors
== true ? 100 : 0;