]> git.pld-linux.org Git - packages/rpm.git/blame - rpm-find-requires
- first step to upcomming 4.0.4
[packages/rpm.git] / rpm-find-requires
CommitLineData
edb85bf4
JK
1#!/bin/sh
2
3cd `rpm --eval %{_builddir}`
4
5# note this works for both a.out and ELF executables
6# it also auto-generates requirment lines for shell scripts
7
8ulimit -c 0
9
10filelist=`sed "s/['\"]/\\\&/g"`
11for i in /examples/ /doc/; do
12filelist=`echo $filelist | sed "s!\<[^[:space:]]*$i[^[:space:]]*[[:space:]]*!!g"`
13done
14if [ -f __rpm_noautoreqfiles ] ; then
15 for i in `cat __rpm_noautoreqfiles`; do
16 filelist=`echo $filelist | sed "s![[:space:]]*$i[[:space:]]*!!g"`
17 done
18fi
19exelist=`echo $filelist | xargs -r file | grep ":.*executable" |grep -v ":.*script"| cut -d: -f1 `
20elfexelist=`echo $exelist | xargs -r file | egrep ":.* ELF" | cut -d: -f1 `
21aoutexelist=`echo $exelist | xargs -r file | egrep -v ":.* ELF" | cut -d: -f1 `
22scriptlist=`echo $filelist | xargs -r file | egrep ":.* (commands|script) .*executable" | cut -d: -f1 `
23liblist=`echo $filelist | xargs -r file | grep ":.*shared object" | cut -d : -f1 `
24elfliblist=`echo $liblist | xargs -r file | egrep ":.* ELF" | cut -d: -f1 `
25aoutliblist=`echo $liblist | xargs -r file | egrep -v ":.* ELF" | cut -d: -f1 `
26
27aoutexerequires=`for f in $aoutexelist; do
28 if [ -x $f ]; then
29 ldd $f | awk '/=>/ { print $1 }'
30 fi
31done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | grep -v 'libNoVersion.so' | sort -u
32`
33
34elfexerequires=`for f in $elfexelist; do
35 if [ -x $f ]; then
36 objdump -p $f|awk '/NEEDED/ {print $2}'
37 fi
38done | sed "s/['\"]/\\\&/g" | grep -v 'libNoVersion.so' | sort -u
39`
40
41aoutlibrequires=`for f in $aoutliblist; do
42 ldd $f | awk '/=>/ { print $1 }'
43done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | grep -v 'libNoVersion.so' | sort -u
44`
45
46elflibrequires=`for f in $elfliblist; do
47 objdump -p $f|awk '/NEEDED/ {print $2}'
48done | sed "s/['\"]/\\\&/g" | grep -v 'libNoVersion.so' | sort -u
49`
22628fea 50
edb85bf4
JK
51for f in $scriptlist; do
52 if [ -x $f ]; then
53 head -1 $f | sed -ne '/^\#\!/p' | sed -e 's/^\#\![ ]*//' | cut -d" " -f1
54 fi
55done | sort -u
56
57for f in $liblist $exelist ; do
58 objdump -p $f | awk '
59 BEGIN { START=0; LIBNAME=""; }
60 /Version References:/ { START=1; }
61 /required from/ && (START==1) {
62 sub(/:/, "", $3);
63 LIBNAME=$3;
64 }
65 (START==1) && (LIBNAME!="") && ($4~/^GLIBC_*/) { print LIBNAME "(" $4 ")"; }
66 /^$/ { START=0; }
67 '
68done | sort -u
69# Generate name of rpm package provides library
70
71allrequires="$aoutexerequires
72$elfexerequires
73$aoutlibrequires
74$elflibrequires"
75
76if [ -f __rpm_noautoreq ] ; then
77 for i in `cat __rpm_noautoreq`; do
78 allrequires=`echo $allrequires | sed "s!\<$i[[:space:]]*!!g"`
79 done
80fi
81
22628fea 82# Delete all the provided stuff
edb85bf4 83
22628fea 84echo $filelist|/usr/lib/rpm/find-provides|awk '
85{
86 if (FNR!=1)
87 printf "&& "
88 printf "$0 !~ \"^" $0 "$\" "
89}
90END {
91 print "{ print $0 }"
92}' > .findreq_delprovs_$$
93notprovreqs=`echo "$allrequires"|awk -f .findreq_delprovs_$$`
94rm .findreq_delprovs_$$
95echo "$notprovreqs" | sort -u
96
514971e5
JB
97if [ -f __rpm_noautoreqdep ] ; then
98 for i in `cat __rpm_noautoreqdep`; do
99 notprovreqs=`echo $notprovreqs | sed "s!\<$i[[:space:]]*!!g"`
100 done
101fi
102
22628fea 103echo "$notprovreqs" | LC_ALL=C xargs -r -- rpm -q --whatprovides --qf "%{NAME}\n" 2>/dev/null \
104 | grep -v "no package provides" | sort -u
This page took 0.048217 seconds and 4 git commands to generate.