Date: Sat, 3 Mar 2018 19:15:55 +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: r463523 - head/devel/py-argcomplete Message-ID: <201803031915.w23JFtPD097438@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat Mar 3 19:15:55 2018 New Revision: 463523 URL: https://svnweb.freebsd.org/changeset/ports/463523 Log: Update to 1.9.4 - Add TEST_DEPENDS - Add NO_ARCH - Allow concurrent installation (USE_PYTHON=concurrent) - Update pkg-descr - Add GitHub repository to WWW - Take maintainership Changes: https://github.com/kislyuk/argcomplete/releases Modified: head/devel/py-argcomplete/Makefile head/devel/py-argcomplete/distinfo head/devel/py-argcomplete/pkg-descr Modified: head/devel/py-argcomplete/Makefile ============================================================================== --- head/devel/py-argcomplete/Makefile Sat Mar 3 19:15:50 2018 (r463522) +++ head/devel/py-argcomplete/Makefile Sat Mar 3 19:15:55 2018 (r463523) @@ -2,18 +2,24 @@ # $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 <bsd.port.mk> Modified: head/devel/py-argcomplete/distinfo ============================================================================== --- head/devel/py-argcomplete/distinfo Sat Mar 3 19:15:50 2018 (r463522) +++ head/devel/py-argcomplete/distinfo Sat Mar 3 19:15:55 2018 (r463523) @@ -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 Modified: head/devel/py-argcomplete/pkg-descr ============================================================================== --- head/devel/py-argcomplete/pkg-descr Sat Mar 3 19:15:50 2018 (r463522) +++ head/devel/py-argcomplete/pkg-descr Sat Mar 3 19:15:55 2018 (r463523) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803031915.w23JFtPD097438>