git: 260d2b0f9e8b - main - devel/py-pip-check: Add py-pip-check 2.9

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Wed, 09 Apr 2025 17:49:26 UTC
The branch main has been updated by sunpoet:

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

commit 260d2b0f9e8b74f5a7a54052e071fa04e9c9ee2f
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2025-04-09 17:41:34 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2025-04-09 17:41:34 +0000

    devel/py-pip-check: Add py-pip-check 2.9
    
    pip-check gives you a quick overview of all installed packages and their update
    status. Under the hood it calls pip list --outdated --format=columns and
    transforms it into a more user friendly table.
---
 devel/Makefile               |  1 +
 devel/py-pip-check/Makefile  | 26 ++++++++++++++++++++++++++
 devel/py-pip-check/distinfo  |  3 +++
 devel/py-pip-check/pkg-descr |  3 +++
 4 files changed, 33 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index 08ba19db3694..918223a281f3 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5438,6 +5438,7 @@
     SUBDIR += py-pip
     SUBDIR += py-pip-api
     SUBDIR += py-pip-audit
+    SUBDIR += py-pip-check
     SUBDIR += py-pip-licenses
     SUBDIR += py-pip-requirements-parser
     SUBDIR += py-pip-run
diff --git a/devel/py-pip-check/Makefile b/devel/py-pip-check/Makefile
new file mode 100644
index 000000000000..40995a5edc34
--- /dev/null
+++ b/devel/py-pip-check/Makefile
@@ -0,0 +1,26 @@
+PORTNAME=	pip-check
+PORTVERSION=	2.9
+CATEGORIES=	devel python
+MASTER_SITES=	PYPI
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	pip_check-${PORTVERSION}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	DDisplay installed pip packages and their update status
+WWW=		https://github.com/bartTC/pip-check
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pip>=9:devel/py-pip@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}terminaltables>=0:textproc/py-terminaltables@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent pep517
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-pip-check/distinfo b/devel/py-pip-check/distinfo
new file mode 100644
index 000000000000..dd78e3c4c08c
--- /dev/null
+++ b/devel/py-pip-check/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1744215557
+SHA256 (pip_check-2.9.tar.gz) = 8e8c849ba306d26837fa0c1a59afc78f4c003e661b1daae0072f58f98dddecd8
+SIZE (pip_check-2.9.tar.gz) = 6891
diff --git a/devel/py-pip-check/pkg-descr b/devel/py-pip-check/pkg-descr
new file mode 100644
index 000000000000..48d2756d0c0f
--- /dev/null
+++ b/devel/py-pip-check/pkg-descr
@@ -0,0 +1,3 @@
+pip-check gives you a quick overview of all installed packages and their update
+status. Under the hood it calls pip list --outdated --format=columns and
+transforms it into a more user friendly table.