git: 321b35e57e25 - main - devel/py-face: Add py-face 22.0.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Mar 2023 19:23:46 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=321b35e57e2536c906ad698d2572e74f963e899a
commit 321b35e57e2536c906ad698d2572e74f963e899a
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-03-21 18:35:04 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-03-21 19:19:50 +0000
devel/py-face: Add py-face 22.0.0
face is a Pythonic microframework for building command-line applications:
- First-class subcommand support
- Powerful middleware architecture
- Separate Parser layer
- Built-in flagfile support
- Handy testing utilities
- Themeable help display
---
devel/Makefile | 1 +
devel/py-face/Makefile | 21 +++++++++++++++++++++
devel/py-face/distinfo | 3 +++
devel/py-face/pkg-descr | 7 +++++++
4 files changed, 32 insertions(+)
diff --git a/devel/Makefile b/devel/Makefile
index 3710ea03e521..ac2857d82ef9 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4567,6 +4567,7 @@
SUBDIR += py-extremes
SUBDIR += py-fabric
SUBDIR += py-fabric3
+ SUBDIR += py-face
SUBDIR += py-factory-boy
SUBDIR += py-fam
SUBDIR += py-fastbencode
diff --git a/devel/py-face/Makefile b/devel/py-face/Makefile
new file mode 100644
index 000000000000..ef968bdf09e7
--- /dev/null
+++ b/devel/py-face/Makefile
@@ -0,0 +1,21 @@
+PORTNAME= face
+PORTVERSION= 22.0.0
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Command-line application framework (and CLI parser)
+WWW= https://github.com/mahmoud/face
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boltons>=20.0.0:devel/py-boltons@${PY_FLAVOR}
+
+USES= python:3.7+
+USE_PYTHON= autoplist concurrent distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-face/distinfo b/devel/py-face/distinfo
new file mode 100644
index 000000000000..63e5812b444e
--- /dev/null
+++ b/devel/py-face/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1677770921
+SHA256 (face-22.0.0.tar.gz) = d5d692f90bc8f5987b636e47e36384b9bbda499aaf0a77aa0b0bbe834c76923d
+SIZE (face-22.0.0.tar.gz) = 59420
diff --git a/devel/py-face/pkg-descr b/devel/py-face/pkg-descr
new file mode 100644
index 000000000000..1f18edb09a0f
--- /dev/null
+++ b/devel/py-face/pkg-descr
@@ -0,0 +1,7 @@
+face is a Pythonic microframework for building command-line applications:
+- First-class subcommand support
+- Powerful middleware architecture
+- Separate Parser layer
+- Built-in flagfile support
+- Handy testing utilities
+- Themeable help display