From owner-svn-ports-head@freebsd.org Sat Oct 27 23:23:00 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8317010D75C9; Sat, 27 Oct 2018 23:23:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 311B1807E4; Sat, 27 Oct 2018 23:23:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1A56E1705F; Sat, 27 Oct 2018 23:22:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9RNMuWn017587; Sat, 27 Oct 2018 23:22:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9RNMulv017585; Sat, 27 Oct 2018 23:22:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201810272322.w9RNMulv017585@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 27 Oct 2018 23:22:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483192 - head/devel/py-invoke X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-invoke X-SVN-Commit-Revision: 483192 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Oct 2018 23:23:00 -0000 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 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