New test.
[mono.git] / scripts / mono-find-provides.in
index 7f677202006328bbaf90c3e5f58c551225fd48a2..f7ee80ea4cb2218f5f124cc950a37aca5b3ebb56 100644 (file)
@@ -12,6 +12,11 @@ IFS=$'\n'
 filelist=($(grep -Ev '/usr/doc/|/usr/share/doc/'))
 monolist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.(exe|dll)\$"))
 
+# Only include files with /gac/ in path
+#  (Allows packages to contain private assemblies that don't conflict with other packages)
+#monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/"))
+# Disabled... see ChangeLog
+
 a=`which "$0"`
 d=`dirname "$a"`
 
@@ -35,6 +40,14 @@ for i in "${monolist[@]}"; do
                 /^Version:/ { VERSION=$2 }
                 /^Name:/    { LIBNAME=$2 }
                 END {
+                       if (LIBNAME ~ /^policy/) {
+                               cnt = split(LIBNAME, toks, ".")
+                               VERSION=toks[2] "." toks[3] ".0.0"
+                               LIBNAME=""
+                               for (i=4; i<= cnt; i++)
+                                       LIBNAME = (LIBNAME toks[i] ".")
+                               LIBNAME=substr(LIBNAME, 1, length(LIBNAME)-1)
+                       }
                         if (VERSION && LIBNAME)
                                 print "mono(" LIBNAME ") = " VERSION
                 }