Last active
May 9, 2024 08:50
-
-
Save zorn-v/df0dccd14af81e017fbe8a4e1523ddf5 to your computer and use it in GitHub Desktop.
xkb switch on release deb build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Patched Xorg packages for kinetic (22.10) and lunar (23.04) are built in my PPA.
Thank you for you service.
The fact that the devs and most of the distro maintainers chose to ignore it is absolutely insane.
@N0rbert Would you be so kind to publish patch for mantic (23.10) ?
It's not a patch.
The patch is available tho.
22 ноября 2023 г. 08:06:37 GMT+05:00, unoexperto ***@***.***> пишет:
…
@unoexperto commented on this gist:
@N0rbert Would you be so kind to publish patch for mantic (23.10) ?
--
Reply to this email directly or view it on GitHub: https://gist.github.com/zorn-v/df0dccd14af81e017fbe8a4e1523ddf5#gistcomment-4768869
Unsubscribe from this thread: https://github.com/notifications/unsubscribe-auth/AK6KBNL32ZJP2EIFEBTHGF3YFVT33BFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFQKSXMYLMOVS2I5DSOVS2I3TBNVS3W5DIOJSWCZC7OBQXE5DJMNUXAYLOORPWCY3UNF3GS5DZVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVA4DCNJRGM3DEMVHORZGSZ3HMVZKMY3SMVQXIZI
You are receiving this because you commented on the thread
Message ID: ***@***.***>
Patched Xorg packages for mantic (23.10) are now built in my PPA. Tested only on Ubuntu MATE 23.10.
@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
Patched Xorg packages for kinetic (22.10) and lunar (23.04) are built in my PPA.