Argcomplete provides easy, extensible command line tab completion of arguments for your Python script. It makes two assumptions: * You're using bash as your shell * You're using argparse to manage your command line arguments/options (hidden dependency of py-argh, needed to remove a warning at runtime in barman)
20 lines
431 B
Makefile
20 lines
431 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/08/10 13:59:06 landry Exp $
|
|
|
|
COMMENT = Bash tab completion for argparse
|
|
|
|
MODPY_EGG_VERSION = 0.5.7
|
|
DISTNAME = argcomplete-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
CATEGORIES = devel
|
|
HOMEPAGE = http://packages.python.org/argcomplete
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_PYPI:=a/argcomplete/}
|
|
|
|
MODULES = lang/python
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
.include <bsd.port.mk>
|