kde/Plasma: variantes mtdev/libevdev (fix python) + qtpositioning +dbus → blockers kwin listos

mtdev/libevdev canónicos usan AM_PATH_PYTHON (busca 'python', toolchain sólo tiene python3) → variantes
incoming-kde con symlink python→python3. libinput 1.28.1 sella. qtpositioning +dbus (tool Qt carga libdbus).
Cadena KNightTime (qtpositioning/kholidays/knighttime) + Vulkan (headers/loader) selladas. kwin desbloqueado.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-12 20:16:38 -04:00
co-authored by Claude Opus 4.8
parent 4b1b8c4af4
commit b22b2f876f
3 changed files with 59 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
# libevdev 1.13.4 — VARIANTE incoming-kde (override) para la campaña KDE. Igual que la canónica pero con
# symlink `python`→python3 en PATH: el configure usa AM_PATH_PYTHON (busca `python`, el toolchain sólo
# tiene `python3`) ⇒ "no suitable Python interpreter". python sólo se usa para generar los .h de eventos.
# Dep de build de libinput (que kwin exige ≥1.28). Autotools.
name = "libevdev"
version = "1.13.4"
[source]
tarball = "https://www.freedesktop.org/software/libevdev/libevdev-1.13.4.tar.xz"
sha256 = "f00ab8d42ad8b905296fab67e13b871f1a424839331516642100f82ad88127cd"
[build]
compiler = "gcc"
target = "x86_64-linux-musl"
link = "dynamic"
flags = []
[build.phases]
configure = '''
mkdir -p /tmp/pybin && ln -sf "$(command -v python3)" /tmp/pybin/python
PATH="/tmp/pybin:$PATH" PYTHON=python3 ./configure --build=$CBUILD --host=$CHOST --prefix=/usr --disable-static
'''
compile = 'make'
install = 'make DESTDIR=/out install'
[deps]
build = ["pkgconf", "python3"]
+31
View File
@@ -0,0 +1,31 @@
# mtdev 1.1.6 — VARIANTE incoming-kde (override) para la campaña KDE. Igual que la canónica pero con
# PYTHON=python3 + symlink `python`→python3: el configure de mtdev usa AM_PATH_PYTHON que busca un
# ejecutable `python` (>=2.6); el toolchain sólo tiene `python3` ⇒ "no suitable Python interpreter".
# Dep de build de libinput (que kwin exige ≥1.28). Autotools.
name = "mtdev"
version = "1.1.6"
[source]
tarball = "https://bitmath.org/code/mtdev/mtdev-1.1.6.tar.gz"
sha256 = "1325f389a2f25cd5f5a8ea4d29aad24aa7c3ec30401d679400dd79eb9c0a8dbb"
[build]
compiler = "gcc"
target = "x86_64-linux-musl"
link = "dynamic"
flags = []
[build.phases]
# config.sub viejo (no conoce *-musl) → reemplazado. PYTHON=python3 + symlink python→python3 en PATH
# para AM_PATH_PYTHON (mtdev sólo usa python para scripts de test, irrelevante para libmtdev.so).
configure = '''
cp /usr/share/autoconf/build-aux/config.sub config-aux/config.sub
cp /usr/share/autoconf/build-aux/config.guess config-aux/config.guess
mkdir -p /tmp/pybin && ln -sf "$(command -v python3)" /tmp/pybin/python
PATH="/tmp/pybin:$PATH" PYTHON=python3 ./configure --build=$CBUILD --host=$CHOST --prefix=/usr
'''
compile = 'make'
install = 'make DESTDIR=/out install'
[deps]
build = ["pkgconf", "python3"]
+1 -1
View File
@@ -34,4 +34,4 @@ compile = "cmake --build build"
install = "DESTDIR=/out cmake --install build" install = "DESTDIR=/out cmake --install build"
[deps] [deps]
build = ["cmake", "samurai", "python3", "pkgconf", "qtbase", "qtdeclarative", "mesa", "libdrm", "libxkbcommon", "wayland"] build = ["cmake", "samurai", "python3", "pkgconf", "dbus", "qtbase", "qtdeclarative", "mesa", "libdrm", "libxkbcommon", "wayland"]