Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Jan 2020 04:06:47 +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: r522083 - in head/devel: . py-commandlines
Message-ID:  <202001050406.00546lIh047555@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Jan  5 04:06:46 2020
New Revision: 522083
URL: https://svnweb.freebsd.org/changeset/ports/522083

Log:
  Add py-commandlines 0.4.1
  
  Commandlines is a Python library for command line application development that
  supports command line argument parsing, command string validation testing, &
  application logic. It has no external dependencies and provides broad Python
  interpreter support.
  
  The library supports application development with POSIX guideline compliant[*]
  command argument styles, the GNU argument style extensions to the POSIX
  guidelines (including long option syntax and variable position of options among
  arguments), and command suite style application arguments that include one or
  more sub-commands to the executable.
  
  [*] with the exception of the short single option-argument definition syntax
  that does not include an intervening space character (e.g. -ofile)
  
  WWW: https://github.com/chrissimpkins/commandlines

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan  5 04:05:28 2020	(r522082)
+++ head/devel/Makefile	Sun Jan  5 04:06:46 2020	(r522083)
@@ -4301,6 +4301,7 @@
     SUBDIR += py-colorful
     SUBDIR += py-colorlog
     SUBDIR += py-columnize
+    SUBDIR += py-commandlines
     SUBDIR += py-conditional
     SUBDIR += py-configargparse
     SUBDIR += py-configobj

Added: head/devel/py-commandlines/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-commandlines/Makefile	Sun Jan  5 04:06:46 2020	(r522083)
@@ -0,0 +1,20 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	commandlines
+PORTVERSION=	0.4.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Command line argument to object parsing library
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-commandlines/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-commandlines/distinfo	Sun Jan  5 04:06:46 2020	(r522083)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1578125671
+SHA256 (commandlines-0.4.1.tar.gz) = 86b650b78470ac95966d7b1a9d215c16591bccb34b28ae2bb9026c3b4166fd64
+SIZE (commandlines-0.4.1.tar.gz) = 17434

Added: head/devel/py-commandlines/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-commandlines/pkg-descr	Sun Jan  5 04:06:46 2020	(r522083)
@@ -0,0 +1,15 @@
+Commandlines is a Python library for command line application development that
+supports command line argument parsing, command string validation testing, &
+application logic. It has no external dependencies and provides broad Python
+interpreter support.
+
+The library supports application development with POSIX guideline compliant[*]
+command argument styles, the GNU argument style extensions to the POSIX
+guidelines (including long option syntax and variable position of options among
+arguments), and command suite style application arguments that include one or
+more sub-commands to the executable.
+
+[*] with the exception of the short single option-argument definition syntax
+that does not include an intervening space character (e.g. -ofile)
+
+WWW: https://github.com/chrissimpkins/commandlines



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001050406.00546lIh047555>