Update script fix
authorSteve Youngs <steve@sxemacs.org>
Sat, 15 Mar 2014 00:56:59 +0000 (10:56 +1000)
committerSteve Youngs <steve@sxemacs.org>
Sat, 15 Mar 2014 00:56:59 +0000 (10:56 +1000)
* upp-fix:
  Prevent update-pkg-project returning false-positives

usr/lib/pkgusr/pkgdeps.awk [new file with mode: 0644]
usr/lib/pkgusr/update-pkg-project

diff --git a/usr/lib/pkgusr/pkgdeps.awk b/usr/lib/pkgusr/pkgdeps.awk
new file mode 100644 (file)
index 0000000..981649f
--- /dev/null
@@ -0,0 +1,4 @@
+ /NEEDED/ { lib=substr($5,2,length($5)-2); LIBS[lib]=$5 } \
+/.*=>/ {if ( $1 in LIBS ) LIBS[$1]=$3 } \
+match($0,/^\s+(\/[^ ]+\/([^ ]+)) /,m) { if ( m[2] in LIBS ) LIBS[m[2]]=m[1] } \
+END { for (lib in LIBS) print LIBS[lib] }
index feef549..2dfcd11 100755 (executable)
@@ -10,16 +10,14 @@ if [ -z "${pkg}" ]; then
 fi
 
 pkgdir=/usr/src/${pkg}
+pkgawk=/usr/lib/pkgusr/pkgdeps.awk
 
 upd_pkg_deps()
 {
     for file in $(forall_direntries_from $pkg -type f -executable -readable); do
        if readelf -d $file &>/dev/null && ldd $file &>/dev/null; then
            (readelf -d $file ; ldd $file ) |
-           awk '/NEEDED/ { lib=substr($5,2,length($5)-2); LIBS[lib]=$5 } \
-                    /.*=>/ {if ( $1 in LIBS ) LIBS[$1]=$3 } END \
-                    { for (lib in LIBS) print LIBS[lib] }' |
-           xargs stat --printf "%U:%G\n"
+           awk -f ${pkgawk} | xargs stat --printf "%U:%G\n"
        fi
     done|sort -u|tr -s '\n' ' '
 }