Skip to content

Commit

Permalink
common/hooks/pre-pkg/06-verify-python-deps: check for noverifypydeps
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnnynator authored and classabbyamp committed Dec 17, 2024
1 parent b955d54 commit b9289ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/hooks/pre-pkg/06-verify-python-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}" \
Expand Down

0 comments on commit b9289ef

Please sign in to comment.