summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-10-18 13:36:47 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-10-18 13:36:47 +0000
commit026f60e2c5601c4db42220cd20af9bfe066b2d83 (patch)
tree766f35e1dc32d845c73d5b2ed1678c401fd7668e /cmdline
parent293f9419549a6247b81ee4afa31e62e230d613ed (diff)
* inital support for "apt-get source -t dist" (but no downgrades yet
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-get.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index a22d881b6..55681d59e 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -1194,8 +1194,16 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs,
{
VerTag = string(TmpSrc.begin() + Slash + 1,TmpSrc.end());
TmpSrc = string(TmpSrc.begin(),TmpSrc.begin() + Slash);
+ } else if(_config->Find("APT::Default-Release") != "") {
+ // if we have a Default-Release (-t) we want a exact match
+ // FIXME: we won't support downgrades
+ // (i.e. -t stable won't work on a unstable system
+ pkgCache::PkgIterator Pkg = Cache.FindPkg(TmpSrc);
+ if(Pkg.end() == false) {
+ pkgCache::VerIterator Ver = Cache.GetCandidateVer(Pkg);
+ VerTag = Ver.VerStr();
+ }
}
-
/* Lookup the version of the package we would install if we were to
install a version and determine the source package name, then look
in the archive for a source package of the same name. In theory