From dec8501f219f266e072127476f278dadf52c0ccf Mon Sep 17 00:00:00 2001 From: Andrew Clemons Date: Mon, 31 Oct 2022 21:38:08 +0900 Subject: [PATCH] python/python-mpmath: Add missing setuptools-scm dep. This is declared upstream here: https://github.com/fredrik-johansson/mpmath/blob/1.2.1/setup.cfg#L30 If setuptools-scm is not installed, the build will try to downloaad it as root when it runs. This means you cannot build this package without internet access. ``` distutils.errors.DistutilsError: Command '['/usr/bin/python2', '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w', '/tmp/SBo/build_python-mpmath/tmpymNMLJ', '--quiet', 'setuptools_scm>=1.7.0']' returned non-zero exit status 1 ``` Signed-off-by: Andrew Clemons Signed-off-by: Willy Sudiarto Raharjo --- python/python-mpmath/python-mpmath.info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/python-mpmath/python-mpmath.info b/python/python-mpmath/python-mpmath.info index d2ec5dd8ef..196fa9a187 100644 --- a/python/python-mpmath/python-mpmath.info +++ b/python/python-mpmath/python-mpmath.info @@ -5,6 +5,6 @@ DOWNLOAD="https://files.pythonhosted.org/packages/95/ba/7384cb4db4ed474d45829440 MD5SUM="ef8a6449851755319673b06f71731d52" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="" +REQUIRES="python2-setuptools-scm" MAINTAINER="Alexander Verbovetsky" EMAIL="alik@ejik.org"