From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1FC73158011 for ; Wed, 15 Feb 2023 17:29:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37A3DE086F; Wed, 15 Feb 2023 17:29:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E1EFE086F for ; Wed, 15 Feb 2023 17:29:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 16BFC340DEB for ; Wed, 15 Feb 2023 17:29:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBD737D0 for ; Wed, 15 Feb 2023 17:29:22 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1676481506.21a721238fc6d0f2c3ac960c3c65fa1f34f566e6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/edid-fixdim/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/edid-fixdim/edid-fixdim-1.ebuild X-VCS-Directories: sys-apps/edid-fixdim/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 21a721238fc6d0f2c3ac960c3c65fa1f34f566e6 X-VCS-Branch: master Date: Wed, 15 Feb 2023 17:29:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b05194cf-d5f5-41ee-8a30-941181354acc X-Archives-Hash: 79a683c25cf42080872716127079922f commit: 21a721238fc6d0f2c3ac960c3c65fa1f34f566e6 Author: Michał Górny gentoo org> AuthorDate: Wed Feb 15 17:18:26 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 15 17:18:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a72123 sys-apps/edid-fixdim: EAPI 8, py3.11 Signed-off-by: Michał Górny gentoo.org> sys-apps/edid-fixdim/edid-fixdim-1.ebuild | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild index f4cd9ac4e17a..19286e08606d 100644 --- a/sys-apps/edid-fixdim/edid-fixdim-1.ebuild +++ b/sys-apps/edid-fixdim/edid-fixdim-1.ebuild @@ -1,19 +1,22 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +PYTHON_COMPAT=( python3_{9..11} ) -PYTHON_COMPAT=( python3_{9..10} ) inherit python-single-r1 DESCRIPTION="Tool to fix screen dimensions in EDID data dumps" -HOMEPAGE="https://github.com/mgorny/edid-fixdim" -SRC_URI="https://github.com/mgorny/edid-fixdim/archive/v${PV}.tar.gz -> ${P}.tar.gz" +HOMEPAGE="https://github.com/mgorny/edid-fixdim/" +SRC_URI=" + https://github.com/mgorny/edid-fixdim/archive/v${PV}.tar.gz + -> ${P}.tar.gz +" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64" -IUSE="" REQUIRED_USE=${PYTHON_REQUIRED_USE} RDEPEND="${PYTHON_DEPS}"