X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx7.valuehost.ru (mx7.valuehost.ru [217.112.42.214]) by lists.alpinelinux.org (Postfix) with ESMTP id E1C10F84E4F for ; Wed, 15 May 2019 15:34:51 +0000 (UTC) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx7.valuehost.ru (Postfix) with ESMTP id 265CB5C3E1 for ; Wed, 15 May 2019 18:34:51 +0300 (MSK) From: alpine-mips-patches Date: Wed, 15 May 2019 15:27:09 +0000 Subject: [alpine-aports] [PATCH] community/py-setuptools_scm: add git to checkdepends To: alpine-aports@lists.alpinelinux.org Message-Id: <20190515153451.265CB5C3E1@mx7.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Otherwise check() fails if git is not installed: testing/test_basic_api.py .s............ [ 11%] testing/test_config.py ..... [ 15%] testing/test_file_finder.py E.E.E.E.E.E.E.E.E.E.E.E.E.E.E. [ 39%] testing/test_functions.py ...................... [ 56%] testing/test_git.py ..EEEEEEEEEEFEEEEEE [ 72%] testing/test_main.py . [ 72%] testing/test_mercurial.py ............... [ 84%] testing/test_regressions.py F...s [ 88%] testing/test_setuptools_support.py ... [ 91%] testing/test_version.py ........... [100%] --- community/py-setuptools_scm/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/community/py-setuptools_scm/APKBUILD b/community/py-setuptools_scm/APKBUILD index ad38f70e99..03f85c0282 100644 --- a/community/py-setuptools_scm/APKBUILD +++ b/community/py-setuptools_scm/APKBUILD @@ -3,13 +3,13 @@ pkgname=py-setuptools_scm _pkgname=setuptools_scm pkgver=3.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="the blessed package to manage your versions by scm tags" url="https://github.com/pypa/setuptools_scm" arch="noarch" license="MIT" depends="" -checkdepends="pytest py-pip mercurial" +checkdepends="pytest py-pip git mercurial" makedepends="python2-dev python3-dev py-setuptools" subpackages="py3-$_pkgname:_py3 py2-$_pkgname:_py2" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" -- 2.21.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---