]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-find-requires
- added some missing German translations
[packages/rpm.git] / rpm-find-requires
1 #!/bin/sh
2
3 cd `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
8 ulimit -c 0
9
10 filelist=`sed "s/['\"]/\\\&/g"`
11 for i in /examples/ /doc/; do
12 filelist=`echo $filelist | sed "s!\<[^[:space:]]*$i[^[:space:]]*[[:space:]]*!!g"`
13 done
14 if [ -f __rpm_noautoreqfiles ] ; then
15         for i in `cat __rpm_noautoreqfiles`; do
16                 filelist=`echo $filelist | sed "s![[:space:]]*$i[[:space:]]*!!g"`
17         done
18 fi
19 exelist=`echo $filelist | xargs -r file | grep ":.*executable" |grep -v ":.*script"| cut -d: -f1 `
20 elfexelist=`echo $exelist | xargs -r file | egrep  ":.* ELF" | cut -d: -f1 `
21 aoutexelist=`echo $exelist | xargs -r file | egrep  -v ":.* ELF" | cut -d: -f1 `
22 scriptlist=`echo $filelist | xargs -r file | egrep ":.* (commands|script) .*executable" | cut -d: -f1 `
23 liblist=`echo $filelist | xargs -r file | grep ":.*shared object" | cut -d : -f1 `
24 elfliblist=`echo $liblist | xargs -r file | egrep  ":.* ELF" | cut -d: -f1 `
25 aoutliblist=`echo $liblist | xargs -r file | egrep  -v ":.* ELF" | cut -d: -f1 `
26
27 aoutexerequires=`for f in $aoutexelist; do
28     if [ -x $f ]; then
29         ldd $f | awk '/=>/ { print $1 }'
30     fi
31 done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | grep -v 'libNoVersion.so' | sort -u
32 `
33
34 elfexerequires=`for f in $elfexelist; do 
35     if [ -x $f ]; then
36         objdump -p $f|awk '/NEEDED/ {print $2}'
37     fi
38 done | sed "s/['\"]/\\\&/g" | grep -v 'libNoVersion.so' | sort -u
39 `
40                 
41 aoutlibrequires=`for f in $aoutliblist; do
42     ldd $f | awk '/=>/ { print $1 }'
43 done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | grep -v 'libNoVersion.so' | sort -u
44 `
45
46 elflibrequires=`for f in $elfliblist; do
47         objdump -p $f|awk '/NEEDED/ {print $2}'
48 done | sed "s/['\"]/\\\&/g" | grep -v 'libNoVersion.so' | sort -u
49 `
50
51 for f in $scriptlist; do
52     if [ -x $f ]; then
53         head -1 $f | sed -ne '/^\#\!/p' | sed -e 's/^\#\![      ]*//' | cut -d" " -f1
54     fi
55 done | sort -u
56
57 for 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     '
68 done | sort -u
69 # Generate name of rpm package provides library
70
71 allrequires="$aoutexerequires
72 $elfexerequires
73 $aoutlibrequires
74 $elflibrequires"
75
76 if [ -f __rpm_noautoreq ] ; then
77         for i in `cat __rpm_noautoreq`; do
78                 allrequires=`echo $allrequires | sed "s!\<$i[[:space:]]*!!g"`
79         done
80 fi
81
82 if [ -f __rpm_noautoreqdep ] ; then
83         for i in `cat __rpm_noautoreqdep`; do
84                 allrequires=`echo $allrequires | sed "s!\<$i[[:space:]]*!!g"`
85         done
86 fi
87
88 # Delete all the provided stuff
89
90 echo $filelist|/usr/lib/rpm/find-provides|awk '
91 {
92         if (FNR!=1)
93                 printf "&& "
94         printf "$0 !~ \"^" $0 "$\" "
95 }
96 END {
97         print "{ print $0 }"
98 }' > .findreq_delprovs_$$
99 notprovreqs=`echo "$allrequires"|awk -f .findreq_delprovs_$$`
100 rm .findreq_delprovs_$$
101 echo "$notprovreqs" | sort -u
102
103 echo "$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.033848 seconds and 3 git commands to generate.