a primitive ABI checking script

This commit is contained in:
Jens Petersen 2015-03-23 11:45:54 +09:00
parent 6441298c76
commit d5825747ca
1 changed files with 14 additions and 0 deletions

14
abi-check.sh Normal file
View File

@ -0,0 +1,14 @@
#!/bin/sh
REL=$(rpm -q --qf "%{release}" ghc-compiler)
ARCH=$(arch)
PKGS=$(rpm -qa | grep -- -$REL | grep -v -- -devel | sort | sed -e "s/-[0-9.]\+-.*//")
for i in $PKGS; do
LOCAL=$(rpm -q --provides $i | grep ^ghc\( | grep -v =)
REPO=$(dnf repoquery -q --provides $i | grep ^ghc\( | grep -v = | sort | uniq)
if [ "$LOCAL" != "$REPO" ]; then
echo $LOCAL
echo $REPO
fi
done