Skip to content

Instantly share code, notes, and snippets.

@zorn-v
Last active May 9, 2024 08:50
Show Gist options
  • Save zorn-v/df0dccd14af81e017fbe8a4e1523ddf5 to your computer and use it in GitHub Desktop.
Save zorn-v/df0dccd14af81e017fbe8a4e1523ddf5 to your computer and use it in GitHub Desktop.
xkb switch on release deb build
#!/bin/bash
rm -rf build
mkdir -p build
cd build
sudo apt install devscripts -y
sudo mk-build-deps -t'apt-get -y' -ir xserver-xorg-core
apt source xserver-xorg-core
SRC_DIR=`ls | cut -f1 | head -n1`
#https://bugs.freedesktop.org/show_bug.cgi?id=865
#wget -O ../xkb_switch_on_release.patch https://bugs.freedesktop.org/attachment.cgi?id=129861
patch ${SRC_DIR}/xkb/xkbActions.c < ../xkb_switch_on_release.patch || exit 1
pushd ${SRC_DIR}
dch -n ''
debuild -us -uc
popd
sudo apt purge xorg-server-build-deps devscripts --auto-remove -y
sudo dpkg -i xserver-common_*.deb
sudo dpkg -i xserver-xorg-core_*.deb
rm -rf ../build
@uralets
Copy link

uralets commented Nov 22, 2023 via email

@N0rbert
Copy link

N0rbert commented Nov 22, 2023

Patched Xorg packages for mantic (23.10) are now built in my PPA. Tested only on Ubuntu MATE 23.10.

@N0rbert
Copy link

N0rbert commented May 9, 2024

@unoexperto commented on this gist.
Good morning! Any chance you could publish artifact for 24.04? :)

Patched Xorg packages for noble (24.04 LTS) are already built in my PPA.
Just tested it again only on Ubuntu MATE 24.04 LTS.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment