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 40FD115806E for ; Fri, 2 Jun 2023 15:09:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11FBCE092F; Fri, 2 Jun 2023 15:09:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8D63E08F0 for ; Fri, 2 Jun 2023 15:09:25 +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 13B69341369 for ; Fri, 2 Jun 2023 15:09:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D2B6A84 for ; Fri, 2 Jun 2023 15:09:23 +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: <1685718557.b1bd2f9c59bd3cf362f4b11c662569e88570d6b4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/click-plugins/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/click-plugins/click-plugins-1.1.1-r1.ebuild X-VCS-Directories: dev-python/click-plugins/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b1bd2f9c59bd3cf362f4b11c662569e88570d6b4 X-VCS-Branch: master Date: Fri, 2 Jun 2023 15:09:23 +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: 46344025-6544-4b03-8adc-5a2d5b6b87d4 X-Archives-Hash: de97793e7d5c9bc3d2fc225feaa794f9 commit: b1bd2f9c59bd3cf362f4b11c662569e88570d6b4 Author: Michał Górny gentoo org> AuthorDate: Fri Jun 2 14:56:12 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 2 15:09:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1bd2f9c dev-python/click-plugins: Enable py3.12 Signed-off-by: Michał Górny gentoo.org> dev-python/click-plugins/click-plugins-1.1.1-r1.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/dev-python/click-plugins/click-plugins-1.1.1-r1.ebuild b/dev-python/click-plugins/click-plugins-1.1.1-r1.ebuild index 974d050db8f7..b125e2eed0d4 100644 --- a/dev-python/click-plugins/click-plugins-1.1.1-r1.ebuild +++ b/dev-python/click-plugins/click-plugins-1.1.1-r1.ebuild @@ -4,19 +4,23 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi -DESCRIPTION="Module for click to enable registering CLI commands via setuptools entry-points" -HOMEPAGE="https://github.com/click-contrib/click-plugins" +DESCRIPTION="Module for click to enable registering CLI commands via entry points" +HOMEPAGE=" + https://github.com/click-contrib/click-plugins/ + https://pypi.org/project/click-plugins/ +" LICENSE="BSD" KEYWORDS="amd64 ~arm ~arm64 ~loong ~riscv x86" SLOT="0" -RDEPEND="dev-python/click[${PYTHON_USEDEP}]" -BDEPEND="test? ( ${RDEPEND} )" +RDEPEND=" + dev-python/click[${PYTHON_USEDEP}] +" distutils_enable_tests pytest