1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00

Bracex is a brace expanding library (a la Bash) for Python. Brace

expanding is used to generate arbitrary strings.

WWW: https://pypi.org/project/bracex/
This commit is contained in:
Matthew Seaman 2021-02-27 12:08:41 +00:00
parent 53e4fa7d5b
commit 42001a361e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=566694
4 changed files with 35 additions and 0 deletions

View File

@ -1239,6 +1239,7 @@
SUBDIR += py-autopep8
SUBDIR += py-awesome-slugify
SUBDIR += py-bibtexparser
SUBDIR += py-bracex
SUBDIR += py-cchardet
SUBDIR += py-chardet
SUBDIR += py-citeproc-py

View File

@ -0,0 +1,27 @@
# $FreeBSD$
PORTNAME= bracex
PORTVERSION= 2.1.1
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= matthew@FreeBSD.org
COMMENT= Brace expansion
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.md
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}coverage>0:devel/py-coverage@${PY_FLAVOR}
USES= python:3.6+
USE_PYTHON= autoplist distutils
NO_ARCH= yes
do-test:
@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest)
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1614426133
SHA256 (bracex-2.1.1.tar.gz) = 01f715cd0ed7a622ec8b32322e715813f7574de531f09b70f6f3b2c10f682425
SIZE (bracex-2.1.1.tar.gz) = 26628

View File

@ -0,0 +1,4 @@
Bracex is a brace expanding library (a la Bash) for Python. Brace
expanding is used to generate arbitrary strings.
WWW: https://pypi.org/project/bracex/