From 605a4161beefd9146abbcc4adebff697223e8c8a Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Thu, 28 Mar 2024 19:10:09 +0100 Subject: [PATCH] testing/py3-pycosat: add missing build dependency on py3-setuptools --- testing/py3-pycosat/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/py3-pycosat/APKBUILD b/testing/py3-pycosat/APKBUILD index 700aa73595e..387108e4893 100644 --- a/testing/py3-pycosat/APKBUILD +++ b/testing/py3-pycosat/APKBUILD @@ -8,7 +8,7 @@ pkgdesc="Python bindings to picosat (a SAT solver)" url="https://github.com/conda/pycosat" arch="all" license="MIT" -makedepends="python3-dev" +makedepends="python3-dev py3-setuptools" source="https://github.com/conda/pycosat/archive/$pkgver/$_pkgname-$pkgver.tar.gz musl-compat.patch " @@ -19,7 +19,7 @@ build() { } check() { - PYTHONPATH="$(dirname ./build/lib.linux-*-3.*/*.so)" \ + PYTHONPATH="$(echo build/lib.linux*)" \ python3 test_pycosat.py }