Date: Sat, 27 Oct 2018 23:22:56 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483192 - head/devel/py-invoke Message-ID: <201810272322.w9RNMulv017585@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat Oct 27 23:22:56 2018 New Revision: 483192 URL: https://svnweb.freebsd.org/changeset/ports/483192 Log: Allow concurrent installation (USE_PYTHON=concurrent) - Sort PLIST - Update pkg-descr - Update WWW - Bump PORTREVISION for package change - Take maintainership Modified: head/devel/py-invoke/Makefile head/devel/py-invoke/pkg-descr (contents, props changed) Modified: head/devel/py-invoke/Makefile ============================================================================== --- head/devel/py-invoke/Makefile Sat Oct 27 23:22:47 2018 (r483191) +++ head/devel/py-invoke/Makefile Sat Oct 27 23:22:56 2018 (r483192) @@ -3,24 +3,25 @@ PORTNAME= invoke PORTVERSION= 0.23.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python task execution tool & library LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}semantic_version>0:devel/py-semantic_version@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}twine>0:devel/py-twine@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}coverage>0:devel/py-coverage@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}semantic_version>=0:devel/py-semantic_version@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}twine>=0:devel/py-twine@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils -NO_ARCH= YES +NO_ARCH= yes .include <bsd.port.mk> Modified: head/devel/py-invoke/pkg-descr ============================================================================== --- head/devel/py-invoke/pkg-descr Sat Oct 27 23:22:47 2018 (r483191) +++ head/devel/py-invoke/pkg-descr Sat Oct 27 23:22:56 2018 (r483192) @@ -1,5 +1,6 @@ -Invoke is a Python (2.6+ and 3.3+) task execution tool & library, -drawing inspiration from various sources to arrive at a powerful & clean -feature set. +Invoke is a Python (2.7 and 3.4+) library for managing shell-oriented +subprocesses and organizing executable Python code into CLI-invokable tasks. It +draws inspiration from various sources (make/rake, Fabric 1.x, etc) to arrive at +a powerful & clean feature set. -WWW: https://github.com/pyinvoke/invoke/ +WWW: https://github.com/pyinvoke/invoke
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810272322.w9RNMulv017585>