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 965A9158009 for ; Thu, 22 Jun 2023 14:36:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E93C3E086A; Thu, 22 Jun 2023 14:36:43 +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 D2BD2E086A for ; Thu, 22 Jun 2023 14:36:43 +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 B0E26340821 for ; Thu, 22 Jun 2023 14:36:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86623AA1 for ; Thu, 22 Jun 2023 14:36:39 +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: <1687443942.96433882ce61d2a108cc53ce3bc5828ef5c5fb35.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyinotify/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyinotify/pyinotify-0.9.6-r1.ebuild X-VCS-Directories: dev-python/pyinotify/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 96433882ce61d2a108cc53ce3bc5828ef5c5fb35 X-VCS-Branch: master Date: Thu, 22 Jun 2023 14:36:39 +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: fc761a21-a2cf-44c9-917d-81b5739b2fbf X-Archives-Hash: a7e55bfd0ab6b5bf1fcb310638b188f9 commit: 96433882ce61d2a108cc53ce3bc5828ef5c5fb35 Author: Petr Vaněk atlas cz> AuthorDate: Thu Jun 22 12:37:29 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jun 22 14:25:42 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96433882 dev-python/pyinotify: add link to py3.12 issue Library is broken with py3.12 because of removed asyncore module. Upstream-issue: https://github.com/seb-m/pyinotify/issues/204 Signed-off-by: Petr Vaněk atlas.cz> Closes: https://github.com/gentoo/gentoo/pull/31572 Signed-off-by: Michał Górny gentoo.org> dev-python/pyinotify/pyinotify-0.9.6-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/pyinotify/pyinotify-0.9.6-r1.ebuild b/dev-python/pyinotify/pyinotify-0.9.6-r1.ebuild index 261ba1a9da0c..b98c916c641d 100644 --- a/dev-python/pyinotify/pyinotify-0.9.6-r1.ebuild +++ b/dev-python/pyinotify/pyinotify-0.9.6-r1.ebuild @@ -4,7 +4,8 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +# py3.12 does not work, see https://github.com/seb-m/pyinotify/issues/204 +PYTHON_COMPAT=( python3_{10..11} pypy3 ) PYTHON_REQ_USE="threads(+)" inherit distutils-r1