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 232521581C1 for ; Mon, 8 Jul 2024 11:57:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BD1D22BC0D5; Mon, 8 Jul 2024 11:57:26 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A0B262BC0D5 for ; Mon, 8 Jul 2024 11:57:26 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78288342FF8 for ; Mon, 8 Jul 2024 11:57:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4BEADC4 for ; Mon, 8 Jul 2024 11:57:23 +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: <1720439759.29331d343d3b83ab28e636a0eb6b62bf7582ad3a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/btrfsutil/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/btrfsutil/btrfsutil-6.8.1.ebuild dev-python/btrfsutil/btrfsutil-6.9.ebuild X-VCS-Directories: dev-python/btrfsutil/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 29331d343d3b83ab28e636a0eb6b62bf7582ad3a X-VCS-Branch: master Date: Mon, 8 Jul 2024 11:57: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: 82b6f7b2-317a-4cbf-8b60-3a43af48a569 X-Archives-Hash: e11dea6ae22a7047a62096e7423780dc commit: 29331d343d3b83ab28e636a0eb6b62bf7582ad3a Author: Sam James gentoo org> AuthorDate: Mon Jul 8 11:52:41 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jul 8 11:55:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29331d34 dev-python/btrfsutil: disable py3.13 ``` module.c: In function ‘path_converter’: module.c:70:24: error: implicit declaration of function ‘_PyObject_LookupSpecial’ [-Wimplicit-function-declaration] 70 | func = _PyObject_LookupSpecial(o, &PyId___fspath__); | ^~~~~~~~~~~~~~~~~~~~~~~ module.c:70:22: error: assignment to ‘PyObject *’ {aka ‘struct _object *’} from ‘int’ makes pointer from integer without a cast [-Wint-conversion] 70 | func = _PyObject_LookupSpecial(o, &PyId___fspath__); | ^ ``` Signed-off-by: Sam James gentoo.org> dev-python/btrfsutil/btrfsutil-6.8.1.ebuild | 3 ++- dev-python/btrfsutil/btrfsutil-6.9.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/btrfsutil/btrfsutil-6.8.1.ebuild b/dev-python/btrfsutil/btrfsutil-6.8.1.ebuild index 6da2d87766a8..29bf098bb9e0 100644 --- a/dev-python/btrfsutil/btrfsutil-6.8.1.ebuild +++ b/dev-python/btrfsutil/btrfsutil-6.8.1.ebuild @@ -5,7 +5,8 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) +# py3.13: https://github.com/kdave/btrfs-progs/issues/838 +PYTHON_COMPAT=( python3_{10..12} ) VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/dsterba.asc inherit distutils-r1 verify-sig diff --git a/dev-python/btrfsutil/btrfsutil-6.9.ebuild b/dev-python/btrfsutil/btrfsutil-6.9.ebuild index 15d87b143716..ea175591c6b1 100644 --- a/dev-python/btrfsutil/btrfsutil-6.9.ebuild +++ b/dev-python/btrfsutil/btrfsutil-6.9.ebuild @@ -5,7 +5,8 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) +# py3.13: https://github.com/kdave/btrfs-progs/issues/838 +PYTHON_COMPAT=( python3_{10..12} ) VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/dsterba.asc inherit distutils-r1 verify-sig