svn commit: r379032 - in head/devel: . py-argcomplete

Kurt Jaeger pi at FreeBSD.org
Sun Feb 15 11:18:25 UTC 2015


Author: pi
Date: Sun Feb 15 11:18:23 2015
New Revision: 379032
URL: https://svnweb.freebsd.org/changeset/ports/379032
QAT: https://qat.redports.org/buildarchive/r379032/

Log:
  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 at git-pull.com>

Added:
  head/devel/py-argcomplete/
  head/devel/py-argcomplete/Makefile   (contents, props changed)
  head/devel/py-argcomplete/distinfo   (contents, props changed)
  head/devel/py-argcomplete/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Feb 15 09:39:49 2015	(r379031)
+++ head/devel/Makefile	Sun Feb 15 11:18:23 2015	(r379032)
@@ -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

Added: head/devel/py-argcomplete/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-argcomplete/Makefile	Sun Feb 15 11:18:23 2015	(r379032)
@@ -0,0 +1,19 @@
+# Created by: Tony Narlock <tony at git-pull.com>
+# $FreeBSD$
+
+PORTNAME=	argcomplete
+PORTVERSION=	0.8.4
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	tony at 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>

Added: head/devel/py-argcomplete/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-argcomplete/distinfo	Sun Feb 15 11:18:23 2015	(r379032)
@@ -0,0 +1,2 @@
+SHA256 (argcomplete-0.8.4.tar.gz) = 925587268e509a8a1cb80c5d3f7190547de2990b7feb46993530a691a14e9255
+SIZE (argcomplete-0.8.4.tar.gz) = 31590

Added: head/devel/py-argcomplete/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-argcomplete/pkg-descr	Sun Feb 15 11:18:23 2015	(r379032)
@@ -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


More information about the svn-ports-head mailing list