Files
gentoo/sys-apps/edid-fixdim/edid-fixdim-1.ebuild
Michał Górny 7df087a563 sys-apps/edid-fixdim: Port up to py3.14
Closes: https://bugs.gentoo.org/952712
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2026-06-01 16:29:22 +02:00

27 lines
532 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
inherit python-single-r1
DESCRIPTION="Tool to fix screen dimensions in EDID data dumps"
HOMEPAGE="https://github.com/projg2/edid-fixdim/"
SRC_URI="
https://github.com/projg2/edid-fixdim/archive/v${PV}.tar.gz
-> ${P}.tar.gz
"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
REQUIRED_USE=${PYTHON_REQUIRED_USE}
RDEPEND="${PYTHON_DEPS}"
src_install() {
python_doscript edid-fixdim
}