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 1B387158044 for ; Sun, 14 Apr 2024 15:57:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 597DFE29F8; Sun, 14 Apr 2024 15:57:13 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3C798E29F8 for ; Sun, 14 Apr 2024 15:57:13 +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 6634834334A for ; Sun, 14 Apr 2024 15:57:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04526121D for ; Sun, 14 Apr 2024 15:57:11 +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: <1713110226.d1576b041ec33312a06929bde0c2ba4eb1c5b5a0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dockerpty/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dockerpty/dockerpty-0.4.1-r2.ebuild X-VCS-Directories: dev-python/dockerpty/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d1576b041ec33312a06929bde0c2ba4eb1c5b5a0 X-VCS-Branch: master Date: Sun, 14 Apr 2024 15:57:11 +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: 3fe43dd1-0c49-4793-a339-d85645ee99a8 X-Archives-Hash: ac878353b4fbf921ed534c0a21ce2e13 commit: d1576b041ec33312a06929bde0c2ba4eb1c5b5a0 Author: Michał Górny gentoo org> AuthorDate: Sun Apr 14 15:55:30 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 14 15:57:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1576b04 dev-python/dockerpty: Enable py3.12 Closes: https://bugs.gentoo.org/929452 Signed-off-by: Michał Górny gentoo.org> dev-python/dockerpty/dockerpty-0.4.1-r2.ebuild | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/dev-python/dockerpty/dockerpty-0.4.1-r2.ebuild b/dev-python/dockerpty/dockerpty-0.4.1-r2.ebuild index 9b58cc5366ca..42bea3a00804 100644 --- a/dev-python/dockerpty/dockerpty-0.4.1-r2.ebuild +++ b/dev-python/dockerpty/dockerpty-0.4.1-r2.ebuild @@ -4,23 +4,32 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) + inherit distutils-r1 DESCRIPTION="Python library to use the pseudo-tty of a docker container" -HOMEPAGE="https://github.com/d11wtq/dockerpty" -SRC_URI="https://github.com/d11wtq/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" +HOMEPAGE=" + https://github.com/d11wtq/dockerpty/ + https://pypi.org/project/dockerpty/ +" +SRC_URI=" + https://github.com/d11wtq/dockerpty/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz +" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="amd64 arm64" +RDEPEND=" + >=dev-python/six-1.3.0[${PYTHON_USEDEP}] +" BDEPEND=" test? ( >=dev-python/docker-0.7.0_rc2[${PYTHON_USEDEP}] >=dev-python/expects-0.4[${PYTHON_USEDEP}] ) " -RDEPEND=">=dev-python/six-1.3.0[${PYTHON_USEDEP}]" distutils_enable_tests pytest