Diff libinput-gestures-2.76 with a libinput-gestures-2.80

/usr/portage/x11-misc/libinput-gestures/libinput-gestures-2.80.ebuild 2025-07-29 16:22:17.968470374 +0300
1
# Copyright 1999-2024 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{10..12} )
6
PYTHON_COMPAT=( python3_{10..14} python3_{13..14}t )
7 7

  
8 8
inherit python-single-r1 xdg
9 9

  
......
28 28
src_prepare() {
29 29
	default
30 30

  
31
	use experimental && eapply "${FILESDIR}/${P}"-zombie.patch
31
	use experimental && eapply "${FILESDIR}/${PN}"-2.76-zombie.patch
32 32

  
33 33
	# Fix docdir installation path
34 34
	sed -i "/^DOCDIR/s@\$NAME@${PF}@" libinput-gestures-setup \
35 35
		|| die "sed failed for libinput-gestures-setup"
36 36
}
37 37

  
38
src_compile() { :; }
39

  
38 40
src_test() {
39 41
	emake test
40 42
}
......
53 55
	if ! has_version x11-libs/gtk+:3 ; then
54 56
		elog "${PN}-setup script supports GNOME via x11-libs/gtk+:3."
55 57
	fi
56
	if ! has_version kde-plasma/kdesu-gui ; then
57
		elog "${PN}-setup script supports Plasma via kde-plasma/kdesu-gui."
58
	if ! has_version kde-plasma/kde-cli-tools:6 ; then
59
		elog "${PN}-setup script supports Plasma via kde-plasma/kde-cli-tools:6."
58 60
	fi
59 61
}
Thank you!