7b45c3d854
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/ghc-rpm-macros#78bda0dce526795284ef1644e7d0dd6e0b3511dc
78 lines
1.5 KiB
Bash
Executable File
78 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# for testing updates to ghc-rpm-macros etc
|
|
# In a pkg dir run
|
|
# $ ./test-rebuild.sh
|
|
# or clone a pkg branch:
|
|
# $ ./test-rebuild.sh [pkg]
|
|
|
|
set -e
|
|
|
|
PKG=${1:-$(fedpkg gimmespec | sed -e "s/.spec//")}
|
|
|
|
[ -d "$PKG" -o -f "$PKG.spec" ] || fedpkg clone -a $PKG
|
|
|
|
[ -d "$PKG" ] && cd $PKG
|
|
|
|
ARCH=$(arch)
|
|
|
|
#if [ -d $ARCH ]; then
|
|
# echo Please move existing $ARCH/
|
|
# exit 1
|
|
#fi
|
|
|
|
if [ -f /etc/os-release ]; then
|
|
eval $(grep VERSION_ID /etc/os-release)
|
|
if git branch -a | grep -q f$VERSION_ID; then
|
|
BRANCH=f$VERSION_ID
|
|
else
|
|
case $VERSION_ID in
|
|
7.*) BRANCH=epel7 ;;
|
|
*) BRANCH=master ;;
|
|
esac
|
|
fi
|
|
else
|
|
# assume RHEL6
|
|
BRANCH=el6
|
|
fi
|
|
|
|
if [ "* $BRANCH" != "$(git branch | grep '^*')" ]; then
|
|
fedpkg switch-branch $BRANCH
|
|
fi
|
|
|
|
if [ "* $BRANCH" != "$(git branch | grep '^*')" ]; then
|
|
echo "Git branch does not match Fedora installation!"
|
|
exit 1
|
|
fi
|
|
|
|
git pull
|
|
|
|
if [ "$UID" != "0" ]; then
|
|
SUDO="sudo"
|
|
else
|
|
SUDO=""
|
|
fi
|
|
|
|
echo Running dnf builddep:
|
|
$SUDO dnf builddep $PKG.spec
|
|
|
|
fedpkg local
|
|
|
|
VERREL=$(fedpkg verrel | sed -e "s/^$PKG-//")
|
|
|
|
TMP=test-tmp
|
|
|
|
mkdir -p $TMP/
|
|
|
|
PKGS=$(cd $ARCH; rpm -qp $(ls *-$VERREL*.rpm))
|
|
|
|
for i in $PKGS; do
|
|
# FIXME: should check NVR is same before building
|
|
rpm -q --quiet $i || $SUDO dnf install -q $i
|
|
for k in list requires provides scripts; do
|
|
rpm -qp --$k $ARCH/$i.rpm | grep -v rpmlib > $TMP/$i.$k.test || :
|
|
rpm -q --$k $i | grep -v rpmlib > $TMP/$i.$k.installed || :
|
|
diff -u $TMP/$i.$k.installed $TMP/$i.$k.test -I /usr/lib/.build-id || :
|
|
done
|
|
done
|