sys-apps/razer-cli: bump to 2.3.1

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2026-07-12 18:52:25 +02:00
parent 12ebf252ee
commit 4e7abc2c8a
2 changed files with 41 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST razer-cli-2.3.0.gh.tar.gz 6985738 BLAKE2B 2abc54a4879594c93cbae706bee2e94665df799784c1fe5802bb981daa18ba9ac6d4254fb4153beffae7c571360eec0f228b2bb8a816609c2a58a498a420c6c9 SHA512 95cc7816f1731c1aa1ba6423139a122c441663bcd0e03949581175b3e619ed17298b8cf75e8c309b96b177e7f9e0141f719b8226e7f45e6620307296bc75f6b4
DIST razer-cli-2.3.1.gh.tar.gz 6986625 BLAKE2B 35f1f08d5895c1b3b29462d0033bf3650e055e9d067f9ba758007591fe5bbb74c3e432b9e07284d21067cbe2d7c7adb8688ccdd1e9a170dc57686fceba0b4682 SHA512 2a57a53c5a6c4447658d93ce6dc2664a3501c9dccef5fb0e4a853c07a53d998bfc457642a2e23f1e2c16f0f289e7c5fb231632176864f7c3a9c084a7fe4a49a7

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517="setuptools"
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1 virtualx
DESCRIPTION="Command line interface for controlling Razer devices on Linux"
HOMEPAGE="https://github.com/LoLei/razer-cli/"
if [[ ${PV} == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/LoLei/${PN}"
else
SRC_URI="https://github.com/LoLei/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
RDEPEND="
sys-apps/openrazer[client,daemon,${PYTHON_USEDEP}]
x11-apps/xrdb
"
BDEPEND="
${RDEPEND}
"
PATCHES=( "${FILESDIR}/${PN}-setup.patch" )
distutils_enable_tests unittest
src_test() {
virtx distutils-r1_src_test
}