git: 52cbf47c37a8 - main - devel/py-re-assert: Add py-re-assert 1.1.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 03 Oct 2022 17:12:26 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=52cbf47c37a85220fd7bbc2dffe132bce5c4259b
commit 52cbf47c37a85220fd7bbc2dffe132bce5c4259b
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-10-03 16:56:36 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-10-03 17:10:13 +0000
devel/py-re-assert: Add py-re-assert 1.1.0
re-assert shows where your regex match assertion failed.
---
devel/Makefile | 1 +
devel/py-re-assert/Makefile | 22 ++++++++++++++++++++++
devel/py-re-assert/distinfo | 3 +++
devel/py-re-assert/pkg-descr | 1 +
4 files changed, 27 insertions(+)
diff --git a/devel/Makefile b/devel/Makefile
index 4a14edd20dc3..a20c2b836901 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5238,6 +5238,7 @@
SUBDIR += py-rauth
SUBDIR += py-raven
SUBDIR += py-rchitect
+ SUBDIR += py-re-assert
SUBDIR += py-readme-renderer
SUBDIR += py-rebulk
SUBDIR += py-recordclass
diff --git a/devel/py-re-assert/Makefile b/devel/py-re-assert/Makefile
new file mode 100644
index 000000000000..b9b0d14c4283
--- /dev/null
+++ b/devel/py-re-assert/Makefile
@@ -0,0 +1,22 @@
+PORTNAME= re-assert
+PORTVERSION= 1.1.0
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= re_assert-${PORTVERSION}
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Show where your regex match assertion failed
+WWW= https://github.com/asottile/re-assert
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}regex>=0:textproc/py-regex@${PY_FLAVOR}
+
+USES= python:3.6+
+USE_PYTHON= autoplist concurrent distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-re-assert/distinfo b/devel/py-re-assert/distinfo
new file mode 100644
index 000000000000..54ddee56b0fd
--- /dev/null
+++ b/devel/py-re-assert/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1664767806
+SHA256 (re_assert-1.1.0.tar.gz) = 5172dfbd2047a15dff2347735dea7e495479cc7e58841199a4a4973256b20464
+SIZE (re_assert-1.1.0.tar.gz) = 3869
diff --git a/devel/py-re-assert/pkg-descr b/devel/py-re-assert/pkg-descr
new file mode 100644
index 000000000000..7ddcef0fc407
--- /dev/null
+++ b/devel/py-re-assert/pkg-descr
@@ -0,0 +1 @@
+re-assert shows where your regex match assertion failed.