New patches from Fedora.
[fedora-mingw.git] / mingw64-filesystem / mingw64-find-requires.sh
1 #!/bin/bash
2
3 # This script reads filenames from STDIN and outputs any relevant provides
4 # information that needs to be included in the package.
5
6 if [ "$1" ]
7 then
8    package_name="$1"
9 fi
10
11 [ -z "$OBJDUMP" ] && OBJDUMP=x86_64-pc-mingw32-objdump
12
13 # Get the list of files.
14
15 filelist=`sed "s/['\"]/\\\&/g"`
16
17 # Everything requires mingw64-filesystem of at least the current version
18 # and mingw64-runtime.
19 echo 'mingw64-filesystem >= @VERSION@'
20 echo 'mingw64-runtime'
21
22 dlls=$(echo $filelist | tr [:blank:] '\n' | grep -Ei '\.(dll|exe)$')
23
24 for f in $dlls; do
25     $OBJDUMP -p $f | grep 'DLL Name' | grep -Eo '[-._[:alnum:]]+\.dll' |
26         tr [:upper:] [:lower:] |
27         sed 's/\(.*\)/mingw64(\1)/'
28 done | sort -u