git: a485e1b54129 - main - devel/py-wheel: Add missing RUN_DEPENDS

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Tue, 10 Feb 2026 19:38:12 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=a485e1b54129692eafc1d58177c76ca77b0abbda

commit a485e1b54129692eafc1d58177c76ca77b0abbda
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2026-02-10 19:35:20 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2026-02-10 19:35:20 +0000

    devel/py-wheel: Add missing RUN_DEPENDS
    
    - While I'm here:
      - Add LICENSE_FILE
      - Use TAR instead of hard-coded tar
    - Bump PORTREVISION for dependency change
    
    from /pyproject.toml:
    dependencies = [
        "packaging >= 24.0"
    ]
    
    from a99cdd578f4ae3c058a6297ab38b4b14c476e082:
    * Replaced vendored `packaging` with a run-time dependency on it
    
    Reference:      https://github.com/pypa/wheel/blob/0.46.3/pyproject.toml#L27-L29
                    https://github.com/pypa/wheel/commit/a99cdd578f4ae3c058a6297ab38b4b14c476e082
    Approved by:    portmgr (blanket)
    With hat:       python
---
 devel/py-wheel/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/devel/py-wheel/Makefile b/devel/py-wheel/Makefile
index 9a6d24c9878c..e8c8f7b9f101 100644
--- a/devel/py-wheel/Makefile
+++ b/devel/py-wheel/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	wheel
 PORTVERSION=	0.46.3
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	PYPI
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -9,14 +10,16 @@ COMMENT=	Built-package format for Python
 WWW=		https://github.com/pypa/wheel
 
 LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}flit-core>=3.8:devel/py-flit-core@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}packaging>=24.0:devel/py-packaging@${PY_FLAVOR}
 
 USES=		python
 USE_PYTHON=	allflavors autoplist concurrent pep517
 
 # see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268500
-EXTRACT_CMD=	${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
+EXTRACT_CMD=	${SETENV} LC_ALL=en_US.UTF-8 ${TAR}
 NO_ARCH=	yes
 
 .include <bsd.port.mk>