1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

New port: devel/py-argcomplete

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 argparse to manage your command line arguments/options

WWW: https://pypi.python.org/pypi/argcomplete

PR:		196358
Submitted by:	Tony Narlock <tony@git-pull.com>
This commit is contained in:
Kurt Jaeger 2015-02-15 11:18:23 +00:00
parent 231db1210f
commit 13d5c6992f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=379032
4 changed files with 31 additions and 0 deletions

View File

@ -3677,6 +3677,7 @@
SUBDIR += py-archetypes.querywidget
SUBDIR += py-archetypes.referencebrowserwidget
SUBDIR += py-archetypes.schemaextender
SUBDIR += py-argcomplete
SUBDIR += py-argh
SUBDIR += py-argparse
SUBDIR += py-args

View File

@ -0,0 +1,19 @@
# Created by: Tony Narlock <tony@git-pull.com>
# $FreeBSD$
PORTNAME= argcomplete
PORTVERSION= 0.8.4
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= tony@git-pull.com
COMMENT= Bash tab completion for argparse
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.rst
USES= python
USE_PYTHON= autoplist distutils
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (argcomplete-0.8.4.tar.gz) = 925587268e509a8a1cb80c5d3f7190547de2990b7feb46993530a691a14e9255
SIZE (argcomplete-0.8.4.tar.gz) = 31590

View File

@ -0,0 +1,9 @@
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 argparse to manage your command line arguments/options
WWW: https://pypi.python.org/pypi/argcomplete