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 55EE7158094 for ; Wed, 24 Aug 2022 02:27:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EBC2E07B3; Wed, 24 Aug 2022 02:27:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 52732E07B3 for ; Wed, 24 Aug 2022 02:27:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 4B51033BE91 for ; Wed, 24 Aug 2022 02:27:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0692549 for ; Wed, 24 Aug 2022 02:27:34 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1661308047.7f092769fc7ee5b074ca866eee82bf7fb0ba3380.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libglvnd/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libglvnd/libglvnd-9999.ebuild X-VCS-Directories: media-libs/libglvnd/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 7f092769fc7ee5b074ca866eee82bf7fb0ba3380 X-VCS-Branch: master Date: Wed, 24 Aug 2022 02:27:34 +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: 215e4cf7-96e1-4765-af1c-29f95205ac5f X-Archives-Hash: fb6c70532774c24638c133f596455e03 commit: 7f092769fc7ee5b074ca866eee82bf7fb0ba3380 Author: Matt Turner gentoo org> AuthorDate: Wed Aug 24 02:22:12 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Aug 24 02:27:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f092769 media-libs/libglvnd: Add Python 3.11 compatibility Also bump to EAPI=8 and sync KEYWORDS. Closes: https://bugs.gentoo.org/862178 Signed-off-by: Matt Turner gentoo.org> media-libs/libglvnd/libglvnd-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media-libs/libglvnd/libglvnd-9999.ebuild b/media-libs/libglvnd/libglvnd-9999.ebuild index d91a97d0eb74..8fc4e707e6ae 100644 --- a/media-libs/libglvnd/libglvnd-9999.ebuild +++ b/media-libs/libglvnd/libglvnd-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 2018-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 EGIT_REPO_URI="https://gitlab.freedesktop.org/glvnd/libglvnd.git" @@ -9,7 +9,7 @@ if [[ ${PV} = 9999* ]]; then GIT_ECLASS="git-r3" fi -PYTHON_COMPAT=( python3_{7..10} ) +PYTHON_COMPAT=( python3_{8..11} ) VIRTUALX_REQUIRED=manual inherit ${GIT_ECLASS} meson-multilib python-any-r1 virtualx @@ -19,7 +19,7 @@ HOMEPAGE="https://gitlab.freedesktop.org/glvnd/libglvnd" if [[ ${PV} = 9999* ]]; then SRC_URI="" else - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" SRC_URI="https://gitlab.freedesktop.org/glvnd/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2" S=${WORKDIR}/${PN}-v${PV} fi