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 A46E415838C for ; Tue, 30 Jan 2024 06:18:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54852E2A73; Tue, 30 Jan 2024 06:18:52 +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 33045E2A73 for ; Tue, 30 Jan 2024 06:18:52 +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 DFCC23430BC for ; Tue, 30 Jan 2024 06:18:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B2B8FA7 for ; Tue, 30 Jan 2024 06:18:49 +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: <1706595397.39747e16c80f1248c84bdd3135080b72e771e190.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-filter-repo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r2.ebuild X-VCS-Directories: dev-vcs/git-filter-repo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 39747e16c80f1248c84bdd3135080b72e771e190 X-VCS-Branch: master Date: Tue, 30 Jan 2024 06:18:49 +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: 47ee64b3-fc3e-4154-bb07-7b0121ec5df4 X-Archives-Hash: 47eb57e19187c3a575904582d370b564 commit: 39747e16c80f1248c84bdd3135080b72e771e190 Author: Eli Schwartz gmail com> AuthorDate: Tue Jan 30 05:41:29 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 30 06:16:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39747e16 dev-vcs/git-filter-repo: add missing build dependency on setuptools-scm It has always been needed, since the original institution of distutils-r1 usage in commit 4757774468319fcc805c4d3b3b8ee5acaf03bcac. However it is usually pulled in by setuptools via a PDEPEND due to an unrelated buggy portage behavior that is going away. Moving to SETUPTOOLS_SCM_PRETEND_VERSION caused pkgcheck to notice this as PythonMissingSCMDependency and report a warning. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild | 3 +++ dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r2.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild b/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild index bf12a2763a11..3fdec106e331 100644 --- a/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild +++ b/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild @@ -19,6 +19,9 @@ RDEPEND=" ${PYTHON_DEPS} >=dev-vcs/git-$(ver_cut 1-2) " +BDEPEND+=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] +" S="${S}/release" diff --git a/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r2.ebuild b/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r2.ebuild index 57e222c4e00d..4271e2406593 100644 --- a/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r2.ebuild +++ b/dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r2.ebuild @@ -19,6 +19,9 @@ RDEPEND=" ${PYTHON_DEPS} >=dev-vcs/git-$(ver_cut 1-2) " +BDEPEND+=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] +" S="${S}/release"