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 9976D15800F for ; Tue, 10 Jan 2023 06:09:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E01ACE07FE; Tue, 10 Jan 2023 06:09:17 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC594E07FE for ; Tue, 10 Jan 2023 06:09:17 +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 90506340E24 for ; Tue, 10 Jan 2023 06:09:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00FA2807 for ; Tue, 10 Jan 2023 06:09:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1673330792.c0d90d4543062c23fc2b5b4276f8bd57512dad3c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/nml/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-util/nml/nml-0.6.1.ebuild X-VCS-Directories: games-util/nml/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c0d90d4543062c23fc2b5b4276f8bd57512dad3c X-VCS-Branch: master Date: Tue, 10 Jan 2023 06:09:15 +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: f8e4487f-bd35-401f-9402-6a960980e863 X-Archives-Hash: 52af3615203a21c75b9e02ddf3d727e2 commit: c0d90d4543062c23fc2b5b4276f8bd57512dad3c Author: Sam James gentoo org> AuthorDate: Tue Jan 10 06:06:32 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 10 06:06:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0d90d45 games-util/nml: enable py3.11 Signed-off-by: Sam James gentoo.org> games-util/nml/nml-0.6.1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/games-util/nml/nml-0.6.1.ebuild b/games-util/nml/nml-0.6.1.ebuild index a378873b7b05..9b47a1fe387a 100644 --- a/games-util/nml/nml-0.6.1.ebuild +++ b/games-util/nml/nml-0.6.1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_SINGLE_IMPL=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 DESCRIPTION="Compiler of NML files into GRF/NFO files" @@ -19,7 +19,9 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86" RDEPEND=" $(python_gen_cond_dep ' dev-python/pillow[${PYTHON_USEDEP},zlib] - dev-python/ply[${PYTHON_USEDEP}]')" + dev-python/ply[${PYTHON_USEDEP}] + ') +" src_install() { local DOCS=( README.md docs/changelog.txt )