mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
x11-misc/screenkey: enable py3.12 compat
Closes: https://bugs.gentoo.org/929890 Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
@@ -1,30 +1,32 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1 xdg
|
||||
|
||||
DESCRIPTION="A screencast tool to display your keys inspired by Screenflick"
|
||||
HOMEPAGE="https://www.thregr.org/~wavexx/software/screenkey/"
|
||||
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
|
||||
EGIT_REPO_URI="https://gitlab.com/screenkey/${PN}.git"
|
||||
else
|
||||
if [[ ${PV} == *_p20230109 ]] ; then
|
||||
if [[ "${PV}" == *_p20230109 ]] ; then
|
||||
COMMIT=7bdba66574244061c6e1934c4f204d02d570f182
|
||||
SRC_URI="https://gitlab.com/${PN}/${PN}/-/archive/${COMMIT}/${PN}-${COMMIT}.tar.bz2
|
||||
-> ${P}.tar.bz2"
|
||||
S="${WORKDIR}"/${PN}-${COMMIT}
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/${PN}/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
|
||||
-> ${P}.tar.bz2"
|
||||
S="${WORKDIR}"/${PN}-v${PV}
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
fi
|
||||
|
||||
KEYWORDS="amd64"
|
||||
fi
|
||||
|
||||
@@ -1,23 +1,25 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1 xdg
|
||||
|
||||
DESCRIPTION="A screencast tool to display your keys inspired by Screenflick"
|
||||
HOMEPAGE="https://www.thregr.org/~wavexx/software/screenkey/"
|
||||
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
if [[ "${PV}" == *9999* ]]; then
|
||||
inherit git-r3
|
||||
|
||||
EGIT_REPO_URI="https://gitlab.com/screenkey/${PN}.git"
|
||||
else
|
||||
SRC_URI="https://gitlab.com/${PN}/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
|
||||
-> ${P}.tar.bz2"
|
||||
S="${WORKDIR}"/${PN}-v${PV}
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user