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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9FE4D15813A for ; Mon, 13 Jan 2025 14:07:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2411E02D2; Mon, 13 Jan 2025 14:07:41 +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 A2343E02D2 for ; Mon, 13 Jan 2025 14:07:41 +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 A1F62340906 for ; Mon, 13 Jan 2025 14:07:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D82831D2A for ; Mon, 13 Jan 2025 14:07:38 +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: <1736777255.f37c4cde7669c8edb6f1957abe38254cfc110be3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzmq/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyzmq/pyzmq-26.2.0.ebuild X-VCS-Directories: dev-python/pyzmq/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f37c4cde7669c8edb6f1957abe38254cfc110be3 X-VCS-Branch: master Date: Mon, 13 Jan 2025 14:07:38 +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: 93c9e59a-c721-453b-b0a6-b05bd4b9bb22 X-Archives-Hash: 81241d5fd2466db7410445309727cd6a commit: f37c4cde7669c8edb6f1957abe38254cfc110be3 Author: Michał Górny gentoo org> AuthorDate: Mon Jan 13 13:49:55 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 13 14:07:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f37c4cde dev-python/pyzmq: Ensure that bundled version is never used Signed-off-by: Michał Górny gentoo.org> dev-python/pyzmq/pyzmq-26.2.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/pyzmq/pyzmq-26.2.0.ebuild b/dev-python/pyzmq/pyzmq-26.2.0.ebuild index 2e96c7d2b190..833d31e4f865 100644 --- a/dev-python/pyzmq/pyzmq-26.2.0.ebuild +++ b/dev-python/pyzmq/pyzmq-26.2.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -56,6 +56,7 @@ distutils_enable_tests pytest src_configure() { DISTUTILS_ARGS=( -DZMQ_DRAFT_API="$(usex drafts)" + -DPYZMQ_NO_BUNDLE=ON ) }