Date: Sat, 27 Feb 2021 12:08:41 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566694 - in head/textproc: . py-bracex Message-ID: <202102271208.11RC8fZL008724@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: matthew Date: Sat Feb 27 12:08:41 2021 New Revision: 566694 URL: https://svnweb.freebsd.org/changeset/ports/566694 Log: 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/ Added: head/textproc/py-bracex/ head/textproc/py-bracex/Makefile (contents, props changed) head/textproc/py-bracex/distinfo (contents, props changed) head/textproc/py-bracex/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Feb 27 12:06:17 2021 (r566693) +++ head/textproc/Makefile Sat Feb 27 12:08:41 2021 (r566694) @@ -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 Added: head/textproc/py-bracex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-bracex/Makefile Sat Feb 27 12:08:41 2021 (r566694) @@ -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> Added: head/textproc/py-bracex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-bracex/distinfo Sat Feb 27 12:08:41 2021 (r566694) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614426133 +SHA256 (bracex-2.1.1.tar.gz) = 01f715cd0ed7a622ec8b32322e715813f7574de531f09b70f6f3b2c10f682425 +SIZE (bracex-2.1.1.tar.gz) = 26628 Added: head/textproc/py-bracex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-bracex/pkg-descr Sat Feb 27 12:08:41 2021 (r566694) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102271208.11RC8fZL008724>