Index: head/devel/py-black/Makefile =================================================================== --- head/devel/py-black/Makefile (revision 527411) +++ head/devel/py-black/Makefile (revision 527412) @@ -1,27 +1,28 @@ # $FreeBSD$ PORTNAME= black -DISTVERSION= 19.3b0 +PORTVERSION= 19.3b0 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= neel@neelc.org -COMMENT= Python code formatter +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Uncompromising code formatter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=18.1.0:devel/py-attrs@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>=0:devel/py-appdirs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}attrs>=18.1.0:devel/py-attrs@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}click>=6.5:devel/py-click@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}toml>=0.9.4:textproc/py-toml@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}appdirs>=0:devel/py-appdirs@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}toml>=0.9.4:textproc/py-toml@${PY_FLAVOR} USES= python:3.6+ -USE_PYTHON= distutils autoplist concurrent +USE_PYTHON= autoplist concurrent distutils + NO_ARCH= yes do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Index: head/devel/py-black/pkg-descr =================================================================== --- head/devel/py-black/pkg-descr (revision 527411) +++ head/devel/py-black/pkg-descr (revision 527412) @@ -1,6 +1,12 @@ Black is the uncompromising Python code formatter. By using it, you agree to -cease control over minutiae of hand-formatting. In return, Black gives you -speed, determinism, and freedom from pycodestyle nagging about formatting. You -will save time and mental energy for more important matters. +cede control over minutiae of hand-formatting. In return, Black gives you speed, +determinism, and freedom from pycodestyle nagging about formatting. You will +save time and mental energy for more important matters. -WWW: https://github.com/ambv/black +Blackened code looks the same regardless of the project you're reading. +Formatting becomes transparent after a while and you can focus on the content +instead. + +Black makes code review faster by producing the smallest diffs possible. + +WWW: https://github.com/psf/black