diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-01-30 00:41:29 -0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-01-30 06:16:37 +0000 |
commit | 39747e16c80f1248c84bdd3135080b72e771e190 (patch) | |
tree | 602dba734e2da9776e19a19cc849f60e866530c2 /dev-vcs/git-filter-repo | |
parent | gui-libs/gtk-layer-shell: Stabilize 0.8.1 x86, #923271 (diff) | |
download | gentoo-39747e16c80f1248c84bdd3135080b72e771e190.tar.gz gentoo-39747e16c80f1248c84bdd3135080b72e771e190.tar.bz2 gentoo-39747e16c80f1248c84bdd3135080b72e771e190.zip |
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 <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-vcs/git-filter-repo')
-rw-r--r-- | dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r1.ebuild | 3 | ||||
-rw-r--r-- | dev-vcs/git-filter-repo/git-filter-repo-2.38.0-r2.ebuild | 3 |
2 files changed, 6 insertions, 0 deletions
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" |