]> git.saurik.com Git - apt.git/commitdiff
* apt-pkg/acquire-item.cc
authorMichael Vogt <michael.vogt@ubuntu.com>
Fri, 5 Oct 2007 04:58:52 +0000 (06:58 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Fri, 5 Oct 2007 04:58:52 +0000 (06:58 +0200)
  - fix disappearing local Packages.gz file (LP: #131166)

apt-pkg/acquire-item.cc
debian/changelog
test/pre-upload-check.py

index 8c7b23fcbfe2c5fc10079105fe884acff21d4d47..15577363e8e755e89f7f23d1fffcf965a74903fd 100644 (file)
@@ -743,10 +743,7 @@ void pkgAcqIndex::Done(string Message,unsigned long Size,string Hash,
    
    // The files timestamp matches
    if (StringToBool(LookupTag(Message,"IMS-Hit"),false) == true)
-   {
-      unlink(FileName.c_str());
       return;
-   }
 
    if (FileName == DestFile)
       Erase = true;
index a7cc0a5dde079c7906688df47e861c25b789a239..b25e75ef5a8e86ca2946d6828f45749f0049d28c 100644 (file)
@@ -2,6 +2,8 @@ apt (0.7.6ubuntu13) gutsy; urgency=low
 
   * apt-pkg/deb/dpkgpm.cc:
     - fix crash in WriteApportReport (LP: #144537)
+  * apt-pkg/acquire-item.cc
+    - fix disappearing local Packages.gz file (LP: #131166)
 
  --
 
index 2199c598a1b1f1eb21e8e7220165806ae1cdb52c..373683360cfda6de75bed8d0ac4fa3540f8ff749 100755 (executable)
@@ -72,7 +72,6 @@ class testAuthentication(unittest.TestCase):
             call([self.apt,"update",
                   "-o","Dir::Etc::sourcelist=./%s" % f]+apt_args,
                  stdout=stdout, stderr=stderr)
-            # then get the pkg
             cmd = ["install", "-y", "-d", "--reinstall",
                    "%s=%s" % (self.pkg, self.pkgver),
                    "-o","Dir::state::Status=./fake-status"]
@@ -92,7 +91,9 @@ class testAuthentication(unittest.TestCase):
                        stdout=stdout, stderr=stderr)
             self.assert_(res == expected_res,
                          "test '%s' failed (got %s expected %s" % (f,res,expected_res))
-
+            if expected_res == 0:
+                self.assert_(len(glob.glob("/var/lib/apt/lists/partial/*")) == 0,
+                             "partial/ dir has leftover files: %s" % glob.glob("/var/lib/apt/lists/partial/*"))
 
 
 class testLocalRepositories(unittest.TestCase):
@@ -119,6 +120,22 @@ class testLocalRepositories(unittest.TestCase):
             self.assert_(os.path.exists(os.path.join(self.repo,"Packages.gz")),
                          "Packages.gz vanished from local repo")
 
+    def testLocalRepo2(self):
+        repo = os.path.abspath(os.path.join(os.getcwd(), self.repo_dir+"2"))
+        sources = os.path.join(self.repo, "sources.list")
+        s = open(sources,"w")
+        s.write("deb file://%s/ /\n" % repo)
+        s.close()
+
+        # two times to get at least one i-m-s hit
+        for i in range(2):
+            self.assert_(os.path.exists(sources))
+            cmd = [self.apt,"update","-o", "Dir::Etc::sourcelist=%s" % sources]+apt_args
+            res = call(cmd, stdout=stdout, stderr=stderr)
+            self.assertEqual(res, 0, "local repo2 test failed")
+            self.assert_(os.path.exists(os.path.join(repo,"Packages.gz")),
+                         "Packages.gz vanished from local repo")
+
     def testInstallFromLocalRepo(self):
         apt = [self.apt,"-o", "Dir::Etc::sourcelist=%s"% self.sources]+apt_args
         cmd = apt+["update"]