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 944D7158083 for ; Fri, 20 Sep 2024 07:04:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA386E29A4; Fri, 20 Sep 2024 07:04:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 AE3CAE29A4 for ; Fri, 20 Sep 2024 07:04:23 +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 E819D3430D1 for ; Fri, 20 Sep 2024 07:04:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82E2B1E6E for ; Fri, 20 Sep 2024 07:04:21 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1726815787.0c4b67154e56913f1f3701e47abf64f6f39e9bba.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/synapse/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/synapse/synapse-1.115.0-r1.ebuild net-im/synapse/synapse-1.115.0.ebuild X-VCS-Directories: net-im/synapse/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 0c4b67154e56913f1f3701e47abf64f6f39e9bba X-VCS-Branch: master Date: Fri, 20 Sep 2024 07:04:21 +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: facd6c2d-0978-4e15-9b3d-89e49716997d X-Archives-Hash: 6890db049f55c37302ed107eace71c21 commit: 0c4b67154e56913f1f3701e47abf64f6f39e9bba Author: Petr Vaněk gentoo org> AuthorDate: Fri Sep 20 06:24:20 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Fri Sep 20 07:03:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c4b6715 net-im/synapse: add legacy-cgi rdep for py3.13 Synapse uses cgi module, which was removed from py3.13. The package is py3.13 enabled and everything worked because legacy-cgi runtime dependency was indirectly installed as a dependency of treq. The treq was recently release with official py3.13 support and it no longer needs the legacy-cgi, which triggered the error with missing cgi module. The synapse needs to depend on legacy-cgi directly anyway. Signed-off-by: Petr Vaněk gentoo.org> net-im/synapse/{synapse-1.115.0.ebuild => synapse-1.115.0-r1.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net-im/synapse/synapse-1.115.0.ebuild b/net-im/synapse/synapse-1.115.0-r1.ebuild similarity index 98% rename from net-im/synapse/synapse-1.115.0.ebuild rename to net-im/synapse/synapse-1.115.0-r1.ebuild index 80fa2041d2b9..fa9b1d7b51fa 100644 --- a/net-im/synapse/synapse-1.115.0.ebuild +++ b/net-im/synapse/synapse-1.115.0-r1.ebuild @@ -159,6 +159,9 @@ RDEPEND=" dev-python/twisted[${PYTHON_USEDEP}] dev-python/typing-extensions[${PYTHON_USEDEP}] dev-python/unpaddedbase64[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/legacy-cgi[${PYTHON_USEDEP}] + ' 3.13) postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] ) systemd? ( dev-python/python-systemd[${PYTHON_USEDEP}] ) "