Rephrase solver resolution to point out if a package will break. (bnc #520083)
authorMichael Andres <ma@suse.de>
Mon, 7 Sep 2009 15:32:04 +0000 (17:32 +0200)
committerMichael Andres <ma@suse.de>
Mon, 7 Sep 2009 15:32:04 +0000 (17:32 +0200)
package/libzypp.changes
zypp/solver/detail/ProblemSolutionIgnore.cc

index c3c7576..d56a408 100644 (file)
@@ -1,8 +1,10 @@
 -------------------------------------------------------------------
-Mon Sep  7 17:11:21 CEST 2009 - ma@suse.de
+Mon Sep  7 17:31:20 CEST 2009 - ma@suse.de
 
 - Fix resolution to force installation even if dependencies are missing. 
   (bnc #531564)
+- Rephrase solver resolution to point out if a package will break. 
+  (bnc #520083)
 
 -------------------------------------------------------------------
 Fri Sep  4 12:19:50 CEST 2009 - ma@suse.de
index a2fd728..cecdd43 100644 (file)
@@ -48,12 +48,12 @@ ProblemSolutionIgnore::ProblemSolutionIgnore( ResolverProblem_Ptr parent,
                                              PoolItem item )
     : ProblemSolution (parent, "", "")
 {
-    // TranslatorExplanation %s = name of package, patch, selection ...    
-    _description = str::form (_("ignore some dependencies of %s"), item->name().c_str() );
+    // TranslatorExplanation %s = name of package, patch, selection ...
+    _description = str::form (_("break %s by ignoring some of its dependencies"), item->name().c_str() );
 
     addAction ( new InjectSolutionAction (item, WEAK));
-}      
-       
+}
+
 ProblemSolutionIgnore::ProblemSolutionIgnore( ResolverProblem_Ptr parent,
                                              PoolItemList itemList )
     : ProblemSolution (parent, "", "")
@@ -64,7 +64,7 @@ ProblemSolutionIgnore::ProblemSolutionIgnore( ResolverProblem_Ptr parent,
            addAction ( new InjectSolutionAction (*iter, WEAK));
        }
 }
-       
+
       ///////////////////////////////////////////////////////////////////
     };// namespace detail
     /////////////////////////////////////////////////////////////////////