From 0013512b53ca0fea6d649f7e848e7395020c00b2 Mon Sep 17 00:00:00 2001 From: Joe Marcus Clarke Date: Fri, 7 Mar 2025 22:12:35 -0500 Subject: [PATCH] textproc/xml2rfc: Add a missing build dependency on wheel --- textproc/xml2rfc/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/textproc/xml2rfc/Makefile b/textproc/xml2rfc/Makefile index 3dc1e64fe8af..d8fe09676752 100644 --- a/textproc/xml2rfc/Makefile +++ b/textproc/xml2rfc/Makefile @@ -11,7 +11,8 @@ WWW= https://xml2rfc.tools.ietf.org/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PY_SETUPTOOLS} +BUILD_DEPENDS= ${PY_SETUPTOOLS} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0.44.0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml5>=5.3.0:devel/py-lxml5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.5.0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}country>=22.3.5:devel/py-country@${PY_FLAVOR} \