From f4d40f6de7945dd2f4271f3eeeffc68c950d2fa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Fri, 9 Apr 2021 11:58:59 -0300 Subject: [PATCH] python3-oletools: don't use pip/wheel in checkdepends. python3-pip was necessary because the 'python3 setup.py test' command was trying to install the oletools package itself: error: Command '['/usr/bin/python3', '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w', '/tmp/tmpjxhh802n', '--quiet', 'oletools>=0.54']' returned non-zero exit status 1. Switching to pytest as the test runner fixes this. --- srcpkgs/python3-oletools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-oletools/template b/srcpkgs/python3-oletools/template index 73293a1f82d..a8eede0d38c 100644 --- a/srcpkgs/python3-oletools/template +++ b/srcpkgs/python3-oletools/template @@ -7,7 +7,7 @@ build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-parsing python3-olefile python3-colorclass python3-easygui python3-msoffcrypto-tool python3-pcodedmp" -checkdepends="python3-pip python3-wheel $depends" +checkdepends="$depends python3-pytest" short_desc="Python3 library to analyze MS OLE2 and Office files" maintainer="Andrew Benson " license="MIT"