xorg-x11-server/driver-abi-rebuild.sh
Adam Jackson d7ae664dcc Update to today's git snapshot
xserver-1.6.1-nouveau.patch: drop, upstream
xserver-1.10.99-config-add-udev-systemd-multi-seat-support.patch: drop,
upstream
0001-dix-block-signals-when-closing-all-devices.patch: drop, upstream
2011-11-09 17:52:14 -05:00

20 lines
384 B
Bash
Executable File

#!/bin/sh
#
# Trivial script to rebuild drivers for ABI changes in the server
# Run me after a new xserver has hit the buildroot
mkdir abi-rebuild
pushd abi-rebuild
repoquery --qf="%{name}" --whatrequires xserver-abi\* | xargs -n 1 fedpkg co
for i in */ ; do
pushd $i
rpmdev-bumpspec -c "- ABI rebuild"
fedpkg commit -c -p && fedpkg build --nowait
popd
done
popd