Change log updates
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:53:39 +0000 (16:53 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:53:39 +0000 (16:53 +0000)
Author: jgg
Date: 1999-04-20 05:59:29 GMT
Change log updates

apt-pkg/acquire-item.cc
cmdline/acqprogress.cc
cmdline/apt-get.cc
debian/changelog

index 7e178c3..35ae7d8 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: acquire-item.cc,v 1.27 1999/04/07 05:30:17 jgg Exp $
+// $Id: acquire-item.cc,v 1.28 1999/04/20 05:59:29 jgg Exp $
 /* ######################################################################
 
    Acquire Item - Item to acquire
@@ -479,6 +479,7 @@ void pkgAcqArchive::Done(string Message,unsigned long Size,string Md5Hash)
       if (Md5Hash != MD5)
       {
         _error->Error("MD5Sum mismatch for package %s",Version.ParentPkg().Name());
+        Rename(DestFile + ".FAILED",DestFile);
         return;
       }
    }
index 89a8280..a5383a8 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: acqprogress.cc,v 1.12 1999/04/15 02:43:48 jgg Exp $
+// $Id: acqprogress.cc,v 1.13 1999/04/20 05:59:29 jgg Exp $
 /* ######################################################################
 
    Acquire Progress - Command line progress meter 
@@ -70,7 +70,7 @@ void AcqTextStatus::Fetch(pkgAcquire::ItemDesc &Itm)
    if (Quiet <= 0)
       cout << '\r' << BlankLine << '\r';
    
-   cout << "Get:" << hex << Itm.Owner->ID << dec << ' ' << Itm.Description;
+   cout << "Get:" << Itm.Owner->ID << ' ' << Itm.Description;
    if (Itm.Owner->FileSize != 0)
       cout << " [" << SizeToStr(Itm.Owner->FileSize) << "b]";
    cout << endl;
@@ -170,7 +170,7 @@ void AcqTextStatus::Pulse(pkgAcquire *Owner)
       
       // Add in the short description
       if (I->CurrentItem->Owner->ID != 0)
-        snprintf(S,End-S," [%lx %s",I->CurrentItem->Owner->ID,
+        snprintf(S,End-S," [%lu %s",I->CurrentItem->Owner->ID,
                  I->CurrentItem->ShortDesc.c_str());
       else
         snprintf(S,End-S," [%s",I->CurrentItem->ShortDesc.c_str());
index 0228bb3..740d69e 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: apt-get.cc,v 1.56 1999/04/20 05:14:55 jgg Exp $
+// $Id: apt-get.cc,v 1.57 1999/04/20 05:59:29 jgg Exp $
 /* ######################################################################
    
    apt-get - Cover for dpkg
@@ -1321,6 +1321,7 @@ bool ShowHelp(CommandLine &CmdL)
    cout << "  -f  Attempt to continue if the integrity check fails" << endl;
    cout << "  -m  Attempt to continue if archives are unlocatable" << endl;
    cout << "  -u  Show a list of upgraded packages as well" << endl;
+   cout << "  -b  Bulid the source package after fetching itl" << endl;
    cout << "  -c=? Read this configuration file" << endl;
    cout << "  -o=? Set an arbitary configuration option, eg -o dir::cache=/tmp" << endl;
    cout << "See the apt-get(8), sources.list(5) and apt.conf(5) manual" << endl;
index 4bf7dfa..c608963 100644 (file)
@@ -1,3 +1,18 @@
+apt (0.3.5) unstable; urgency=low
+
+  * Fix for apt-cdrom and unusual disk label locations. Closes: #35571
+  * Made APT print numbers in decimal. Closes: #35617
+  * Buffer munching fix for FTP. Closes: #35868
+  * Typo in sample config file. Closes: #35907
+  * Fixed whitespace in version compares. Closes: #35968, #36283
+  * Changed installed size counter to only count unpacked packages. 
+    Closes: #36201
+  * apt-get source support. Closes: #23934, #27190
+  * Renames .debs that fail MD5 checking, provides automatic corruption
+    recovery. Closes: #35931
+  
+ -- Adam Heath <doogie@debian.org>  Sun,  4 Apr 1999 18:26:44 -0500
+
 apt (0.3.4) unstable; urgency=low
 
   * Release for Ben while he is out of town.