[csw-devel] SF.net SVN: gar:[10546] csw/mgar/gar/v2/lib/python/dependency_checks.py

wahwah at users.sourceforge.net wahwah at users.sourceforge.net
Tue Jul 20 13:37:10 CEST 2010


Revision: 10546
          http://gar.svn.sourceforge.net/gar/?rev=10546&view=rev
Author:   wahwah
Date:     2010-07-20 11:37:10 +0000 (Tue, 20 Jul 2010)

Log Message:
-----------
mGAR v2: checkpkg, turning messages about sonames that are OK to be missing (libm.so.2) off

Modified Paths:
--------------
    csw/mgar/gar/v2/lib/python/dependency_checks.py

Modified: csw/mgar/gar/v2/lib/python/dependency_checks.py
===================================================================
--- csw/mgar/gar/v2/lib/python/dependency_checks.py	2010-07-20 11:11:36 UTC (rev 10545)
+++ csw/mgar/gar/v2/lib/python/dependency_checks.py	2010-07-20 11:37:10 UTC (rev 10546)
@@ -103,10 +103,12 @@
         else:
           path_msg = ("was not present on the filesystem, "
                       "nor in the packages under examination.")
-        messenger.Message(
-            "%s could not be resolved for %s, with rpath %s, expanded to %s, "
-            "while the file %s"
-            % (soname, binary_info["path"], runpath_tuple, runpath_history, path_msg))
+        if soname not in ALLOWED_ORPHAN_SONAMES:
+          messenger.Message(
+              "%s could not be resolved for %s, with rpath %s, expanded to %s, "
+              "while the file %s"
+              % (soname, binary_info["path"],
+                 runpath_tuple, runpath_history, path_msg))
   orphan_sonames = set(orphan_sonames)
   for soname, binary_path in orphan_sonames:
     if soname not in ALLOWED_ORPHAN_SONAMES:


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list