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 B1BAD158099 for ; Sat, 25 Nov 2023 06:15:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9E502BC01F; Sat, 25 Nov 2023 06:15:57 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C9D592BC01F for ; Sat, 25 Nov 2023 06:15:57 +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 DF5D633E3A9 for ; Sat, 25 Nov 2023 06:15:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F127A64 for ; Sat, 25 Nov 2023 06:15:55 +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: <1700892952.6d03641a68947272956ecdbf538a23b2bfcb2a43.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mypy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mypy/mypy-1.6.0.ebuild dev-python/mypy/mypy-1.6.1.ebuild dev-python/mypy/mypy-1.7.0.ebuild dev-python/mypy/mypy-1.7.1.ebuild X-VCS-Directories: dev-python/mypy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6d03641a68947272956ecdbf538a23b2bfcb2a43 X-VCS-Branch: master Date: Sat, 25 Nov 2023 06:15:55 +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: 1fc0fe8a-638c-425e-a57b-fdfc3c1acb15 X-Archives-Hash: 2c04462e3021128c50fff1406e12b7cf commit: 6d03641a68947272956ecdbf538a23b2bfcb2a43 Author: Eli Schwartz gmail com> AuthorDate: Fri Nov 24 20:14:07 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 25 06:15:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d03641a dev-python/mypy: add missing build dependencies for native-extensions It has to run mypy at build time, so all RDEPEND must also be BDEPEND here. I thought I had originally added this... This prevents building with e.g. different root or --buildpkgonly, where RDEPEND isn't used at all (as an implementation detail, building and installing will merge RDEPEND first, so people might not notice the issue). Signed-off-by: Eli Schwartz gmail.com> Closes: https://github.com/gentoo/gentoo/pull/33970 Signed-off-by: Michał Górny gentoo.org> dev-python/mypy/mypy-1.6.0.ebuild | 1 + dev-python/mypy/mypy-1.6.1.ebuild | 1 + dev-python/mypy/mypy-1.7.0.ebuild | 1 + dev-python/mypy/mypy-1.7.1.ebuild | 1 + 4 files changed, 4 insertions(+) diff --git a/dev-python/mypy/mypy-1.6.0.ebuild b/dev-python/mypy/mypy-1.6.0.ebuild index 7d03cfe65dce..8b73fd42a46d 100644 --- a/dev-python/mypy/mypy-1.6.0.ebuild +++ b/dev-python/mypy/mypy-1.6.0.ebuild @@ -37,6 +37,7 @@ RDEPEND=" " BDEPEND=" native-extensions? ( + ${RDEPEND} dev-python/types-psutil[${PYTHON_USEDEP}] dev-python/types-setuptools[${PYTHON_USEDEP}] ) diff --git a/dev-python/mypy/mypy-1.6.1.ebuild b/dev-python/mypy/mypy-1.6.1.ebuild index 8f2e5cfa65db..6de2cb0c619b 100644 --- a/dev-python/mypy/mypy-1.6.1.ebuild +++ b/dev-python/mypy/mypy-1.6.1.ebuild @@ -37,6 +37,7 @@ RDEPEND=" " BDEPEND=" native-extensions? ( + ${RDEPEND} dev-python/types-psutil[${PYTHON_USEDEP}] dev-python/types-setuptools[${PYTHON_USEDEP}] ) diff --git a/dev-python/mypy/mypy-1.7.0.ebuild b/dev-python/mypy/mypy-1.7.0.ebuild index bde4d1b90a80..8948976bf216 100644 --- a/dev-python/mypy/mypy-1.7.0.ebuild +++ b/dev-python/mypy/mypy-1.7.0.ebuild @@ -37,6 +37,7 @@ RDEPEND=" " BDEPEND=" native-extensions? ( + ${RDEPEND} dev-python/types-psutil[${PYTHON_USEDEP}] dev-python/types-setuptools[${PYTHON_USEDEP}] ) diff --git a/dev-python/mypy/mypy-1.7.1.ebuild b/dev-python/mypy/mypy-1.7.1.ebuild index 49d077bf8578..7bbb2610993d 100644 --- a/dev-python/mypy/mypy-1.7.1.ebuild +++ b/dev-python/mypy/mypy-1.7.1.ebuild @@ -37,6 +37,7 @@ RDEPEND=" " BDEPEND=" native-extensions? ( + ${RDEPEND} dev-python/types-psutil[${PYTHON_USEDEP}] dev-python/types-setuptools[${PYTHON_USEDEP}] )