d7ae664dcc
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
20 lines
384 B
Bash
Executable File
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
|
|
|
|
|