git: 11ece8ed9a69 - main - devel/py-wheel-filename: Add py-wheel-filename 1.4.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 20 Feb 2025 08:15:01 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=11ece8ed9a69aba6ec54cf7c8208330c964233d4
commit 11ece8ed9a69aba6ec54cf7c8208330c964233d4
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2025-02-20 05:02:46 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2025-02-20 07:26:51 +0000
devel/py-wheel-filename: Add py-wheel-filename 1.4.2
wheel-filename lets you verify wheel filenames and parse them into their
component fields.
This package adheres strictly to the standard, with the following exceptions:
- Version components may be any sequence of the relevant set of characters; they
are not verified for PEP 440 compliance.
- The .whl file extension is matched case-insensitively.
---
devel/Makefile | 1 +
devel/py-wheel-filename/Makefile | 22 ++++++++++++++++++++++
devel/py-wheel-filename/distinfo | 3 +++
devel/py-wheel-filename/pkg-descr | 7 +++++++
4 files changed, 33 insertions(+)
diff --git a/devel/Makefile b/devel/Makefile
index 5e527ae616c0..445bd22cfb27 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -6155,6 +6155,7 @@
SUBDIR += py-websockets
SUBDIR += py-websockify
SUBDIR += py-wheel
+ SUBDIR += py-wheel-filename
SUBDIR += py-whichcraft
SUBDIR += py-whistle
SUBDIR += py-widgetsnbextension
diff --git a/devel/py-wheel-filename/Makefile b/devel/py-wheel-filename/Makefile
new file mode 100644
index 000000000000..7c2aefa30f9b
--- /dev/null
+++ b/devel/py-wheel-filename/Makefile
@@ -0,0 +1,22 @@
+PORTNAME= wheel-filename
+PORTVERSION= 1.4.2
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= wheel_filename-${PORTVERSION}
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Parse wheel filenames
+WWW= https://github.com/wheelodex/wheel-filename
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>=0:devel/py-hatchling@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent pep517
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-wheel-filename/distinfo b/devel/py-wheel-filename/distinfo
new file mode 100644
index 000000000000..5af4689eeb7e
--- /dev/null
+++ b/devel/py-wheel-filename/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1739962426
+SHA256 (wheel_filename-1.4.2.tar.gz) = 87891c465dcbb40b40394a906f01a93214bdd51aa5d25e3a9a59cae62bc298fd
+SIZE (wheel_filename-1.4.2.tar.gz) = 7911
diff --git a/devel/py-wheel-filename/pkg-descr b/devel/py-wheel-filename/pkg-descr
new file mode 100644
index 000000000000..6a7644d4bf2f
--- /dev/null
+++ b/devel/py-wheel-filename/pkg-descr
@@ -0,0 +1,7 @@
+wheel-filename lets you verify wheel filenames and parse them into their
+component fields.
+
+This package adheres strictly to the standard, with the following exceptions:
+- Version components may be any sequence of the relevant set of characters; they
+ are not verified for PEP 440 compliance.
+- The .whl file extension is matched case-insensitively.