]> git.saurik.com Git - apt.git/commitdiff
* merged with bubulle
authorMichael Vogt <michael.vogt@ubuntu.com>
Wed, 8 Feb 2006 10:30:15 +0000 (10:30 +0000)
committerMichael Vogt <michael.vogt@ubuntu.com>
Wed, 8 Feb 2006 10:30:15 +0000 (10:30 +0000)
Patches applied:

 * bubulle@debian.org--2005/apt--main--0--patch-167
   Resync with Michael

 * bubulle@debian.org--2005/apt--main--0--patch-168
   Vietnamese translation completed

 * bubulle@debian.org--2005/apt--main--0--patch-169
   Update PO files and POT file...again

 * bubulle@debian.org--2005/apt--main--0--patch-170
   Compelted French translation

 * bubulle@debian.org--2005/apt--main--0--patch-171
   Activate Welsh translation

 * bubulle@debian.org--2005/apt--main--0--patch-172
   Completed to 512 strings

 * bubulle@debian.org--2005/apt--main--0--patch-173
   Russian translation completed

 * bubulle@debian.org--2005/apt--main--0--patch-174
   Swedish translation completed

 * bubulle@debian.org--2005/apt--main--0--patch-175
   Merge from Philippe Batailler French manpages tree/Vietnamese translation update

 * bubulle@debian.org--2005/apt--main--0--patch-176
   Galician translation update

 * bubulle@debian.org--2005/apt--main--0--patch-177
   Slovak translation update

 * bubulle@debian.org--2005/apt--main--0--patch-178
   Polish translation update

 * bubulle@debian.org--2005/apt--main--0--patch-179
   Correct permissions

 * bubulle@debian.org--2005/apt--main--0--patch-180
   Japanese translation update

 * bubulle@debian.org--2005/apt--main--0--patch-181
   Basque translation update

 * bubulle@debian.org--2005/apt--main--0--patch-182
   Catalan translation completed

 * philippe.batailler@free.fr--2005/apt--main--0--patch-9
   manpages

apt-pkg/deb/deblistparser.cc
cmdline/apt-get.cc
configure.in
debian/changelog

index b11d2531c9784d80923c428001fdb05035d6fb8a..d0dc7a26038df7f222b94361458b3a6ef5a2cb54 100644 (file)
@@ -504,11 +504,12 @@ bool debListParser::ParseProvides(pkgCache::VerIterator Ver)
       Start = ParseDepends(Start,Stop,Package,Version,Op);
       if (Start == 0)
         return _error->Error("Problem parsing Provides line");
-      if (Op != pkgCache::Dep::NoOp)
-        return _error->Error("Malformed provides line");
-
-      if (NewProvides(Ver,Package,Version) == false)
-        return false;
+      if (Op != pkgCache::Dep::NoOp) {
+        _error->Warning("Ignoring Provides line with DepCompareOp for package %s", Package.c_str());
+      } else {
+        if (NewProvides(Ver,Package,Version) == false)
+           return false;
+      }
 
       if (Start == Stop)
         break;
index abeb57c6f081f4aff4eaffaf7cd13a0d822ab2ae..837094ee05da587725d1aa5270ee7a7ad0b4642a 100644 (file)
@@ -1411,15 +1411,6 @@ bool DoUpgrade(CommandLine &CmdL)
 /* Install named packages */
 bool DoInstall(CommandLine &CmdL)
 {
-   // Lock the list directory
-   FileFd Lock;
-   if (_config->FindB("Debug::NoLocking",false) == false)
-   {
-      Lock.Fd(GetLock(_config->FindDir("Dir::State::Lists") + "lock"));
-      if (_error->PendingError() == true)
-        return _error->Error(_("Unable to lock the list directory"));
-   }
-   
    CacheFile Cache;
    if (Cache.OpenForInstall() == false || 
        Cache.CheckDeps(CmdL.FileSize() != 1) == false)
index 0d80e5ed9a31eeaaef13a884ee96a26de5172ddb..8d4b99904854414655625841f9cf3816c25bbef1 100644 (file)
@@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR(buildlib)
 AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in include/apti18n.h:buildlib/apti18n.h.in)
 
 dnl -- SET THIS TO THE RELEASE VERSION --
-AC_DEFINE_UNQUOTED(VERSION,"0.6.43.2")
+AC_DEFINE_UNQUOTED(VERSION,"0.6.43.3")
 PACKAGE="apt"
 AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE")
 AC_SUBST(PACKAGE)
index 3c3fbb4a9d8589dbdab28fb58ff802c64f8c2836..1f982397189a8f8abe56ed6068bba9aceccc3af0 100644 (file)
@@ -1,3 +1,34 @@
+apt (0.6.43.3) unstable; urgency=low
+
+  * Merge bubulle@debian.org--2005/apt--main--0 up to patch-182:
+       * ca.po: Completed to 512t. Closes: #351592
+       * eu.po: Completed to 512t. Closes: #350483
+       * ja.po: Completed to 512t. Closes: #349806
+       * pl.po: Completed to 512t. Closes: #349514
+       * sk.po: Completed to 512t. Closes: #349474
+       * gl.po: Completed to 512 strings 
+                Closes: #349407
+       * vi.po: Completed to 512 strings
+       * sv.po: Completed to 512 strings
+                Closes: #349210
+       * ru.po: Completed to 512 strings
+                Closes: #349154
+       * da.po: Completed to 512 strings
+                Closes: #349084
+       * fr.po: Completed to 512 strings
+       * LINGUAS: Add Welsh
+       * *.po: Updated from sources (512 strings)
+       * vi.po: Completed to 511 strings
+                Closes: #348968
+  * apt-pkg/deb/deblistparser.cc:
+    - don't explode on a DepCompareOp in a Provides line, but warn about
+      it and ignore it otherwise (thanks to James Troup for reporting it)
+  * cmdline/apt-get.cc:
+    - don't lock the lists directory in DoInstall, breaks --print-uri 
+      (thanks to James Troup for reporting it)
+
+ -- 
+
 apt (0.6.43.2) unstable; urgency=low
 
   * Merge bubulle@debian.org--2005/apt--main--0 up to patch-166: