From ca50ac5e5a9f98b2d59f1b2f10e3d453ab0cfb3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 01:07:23 +0000 Subject: [PATCH] build: sync with upstream 2024-12-18 https://github.com/void-linux/void-packages/commit/b9289ef4 --- common/hooks/pre-pkg/06-verify-python-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/pre-pkg/06-verify-python-deps.sh b/common/hooks/pre-pkg/06-verify-python-deps.sh index a47e5bb..699a9dc 100644 --- a/common/hooks/pre-pkg/06-verify-python-deps.sh +++ b/common/hooks/pre-pkg/06-verify-python-deps.sh @@ -6,7 +6,7 @@ hook() { local py3_bin="${XBPS_MASTERDIR}/usr/bin/python3" - if [ -z "$nopyprovides" ] && [ -d "${PKGDESTDIR}/${py3_sitelib}" ] && [ -x "${py3_bin}" ]; then + if [ -z "$noverifypydeps" ] && [ -d "${PKGDESTDIR}/${py3_sitelib}" ] && [ -x "${py3_bin}" ]; then PYTHONPATH="${XBPS_MASTERDIR}/${py3_sitelib}-bootstrap" "${py3_bin}" \ "${XBPS_COMMONDIR}"/scripts/parse-py-metadata.py \ ${NOCOLORS:+-C} ${XBPS_STRICT:+-s} -S "${PKGDESTDIR}/${py3_sitelib}" -v "${pkgver}" \