Diff game-device-udev-rules-20220311 with a game-device-udev-rules-20230603

/usr/portage/games-util/game-device-udev-rules/game-device-udev-rules-20230603.ebuild 2023-10-09 14:52:31.148368392 +0300
1
# Copyright 2020-2022 Gentoo Authors
1
# Copyright 2020-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit udev
6
inherit linux-info udev
7 7

  
8 8
# Although this is mainly a tweaked version of Steam's udev rules, it
9 9
# also has its own rules and more may be added later so we version it
10 10
# independently.
11 11

  
12
STEAM_COMMIT="d87ef558408c5e7a1a793d738db4c9dc2cb5f8fa"
12
STEAM_COMMIT="13443480a64fe8f10676606bd57da6de89f8ccb1"
13 13
MY_P="steam-devices-${STEAM_COMMIT}"
14 14

  
15 15
DESCRIPTION="udev rules for various game hardware devices"
16
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Games"
16
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Games
17
	https://github.com/ValveSoftware/steam-devices/"
17 18
SRC_URI="https://github.com/ValveSoftware/steam-devices/archive/${STEAM_COMMIT}.tar.gz -> ${MY_P}.tar.gz"
18 19
LICENSE="MIT"
19 20
SLOT="0"
......
35 36
S="${WORKDIR}/${MY_P}"
36 37

  
37 38
pkg_setup() {
39
	CONFIG_CHECK="~HIDRAW"
40
	linux-info_pkg_setup
41

  
38 42
	if ! use acl; then
39 43
		elog "Users of game hardware devices must be added to the input group."
40 44

  
Thank you!