Index: head/devel/py-argcomplete/Makefile =================================================================== --- head/devel/py-argcomplete/Makefile (revision 463522) +++ head/devel/py-argcomplete/Makefile (revision 463523) @@ -1,19 +1,25 @@ # Created by: Tony Narlock # $FreeBSD$ PORTNAME= argcomplete -PORTVERSION= 0.8.4 +PORTVERSION= 1.9.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bash tab completion for argparse LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.rst +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}flake8>=0:devel/py-flake8@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pexpect>=0:misc/py-pexpect@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${FLAVOR} + +NO_ARCH= yes USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils .include Index: head/devel/py-argcomplete/distinfo =================================================================== --- head/devel/py-argcomplete/distinfo (revision 463522) +++ head/devel/py-argcomplete/distinfo (revision 463523) @@ -1,2 +1,3 @@ -SHA256 (argcomplete-0.8.4.tar.gz) = 925587268e509a8a1cb80c5d3f7190547de2990b7feb46993530a691a14e9255 -SIZE (argcomplete-0.8.4.tar.gz) = 31590 +TIMESTAMP = 1520095580 +SHA256 (argcomplete-1.9.4.tar.gz) = 06c8a54ffaa6bfc9006314498742ec8843601206a3b94212f82657673662ecf1 +SIZE (argcomplete-1.9.4.tar.gz) = 47471 Index: head/devel/py-argcomplete/pkg-descr =================================================================== --- head/devel/py-argcomplete/pkg-descr (revision 463522) +++ head/devel/py-argcomplete/pkg-descr (revision 463523) @@ -1,9 +1,15 @@ -Argcomplete provides easy, extensible command line tab completion -of arguments for your Python script. +Argcomplete provides easy, extensible command line tab completion of arguments +for your Python script. It makes two assumptions: - -- You're using bash or zsh as your shell +- You're using bash as your shell (limited support for zsh and tcsh is + available) - You're using argparse to manage your command line arguments/options +Argcomplete is particularly useful if your program has lots of options or +subparsers, and if your program can dynamically suggest completions for your +argument/option values (for example, if the user is browsing resources over the +network). + WWW: https://pypi.python.org/pypi/argcomplete +WWW: https://github.com/kislyuk/argcomplete