From owner-svn-ports-head@FreeBSD.ORG Fri Jul 18 01:53:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B44CEF6B; Fri, 18 Jul 2014 01:53:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 880342847; Fri, 18 Jul 2014 01:53:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6I1rgac036749; Fri, 18 Jul 2014 01:53:42 GMT (envelope-from nivit@svn.freebsd.org) Received: (from nivit@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6I1rfrG036742; Fri, 18 Jul 2014 01:53:41 GMT (envelope-from nivit@svn.freebsd.org) Message-Id: <201407180153.s6I1rfrG036742@svn.freebsd.org> From: Nicola Vitale Date: Fri, 18 Jul 2014 01:53:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362170 - in head/devel: . py-args X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Jul 2014 01:53:42 -0000 Author: nivit Date: Fri Jul 18 01:53:41 2014 New Revision: 362170 URL: http://svnweb.freebsd.org/changeset/ports/362170 QAT: https://qat.redports.org/buildarchive/r362170/ Log: This simple Python module gives you an elegant interface for your command line arguments. WWW: https://github.com/kennethreitz/args Added: head/devel/py-args/ head/devel/py-args/Makefile (contents, props changed) head/devel/py-args/distinfo (contents, props changed) head/devel/py-args/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 18 01:22:28 2014 (r362169) +++ head/devel/Makefile Fri Jul 18 01:53:41 2014 (r362170) @@ -3558,6 +3558,7 @@ SUBDIR += py-archetypes.schemaextender SUBDIR += py-argh SUBDIR += py-argparse + SUBDIR += py-args SUBDIR += py-asn1 SUBDIR += py-asn1-modules SUBDIR += py-aspects Added: head/devel/py-args/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-args/Makefile Fri Jul 18 01:53:41 2014 (r362170) @@ -0,0 +1,21 @@ +# Created by: Nicola Vitale +# $FreeBSD$ + +PORTNAME= args +PORTVERSION= 0.1.0 +#PORTREVISION= 0 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= nivit@FreeBSD.org +COMMENT= Command arguments for humans + +LICENSE= BSD2CLAUSE + +PYDISTUTILS_AUTOPLIST= yes + +USE_PYDISTUTILS= yes +USE_PYTHON= yes + +.include Added: head/devel/py-args/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-args/distinfo Fri Jul 18 01:53:41 2014 (r362170) @@ -0,0 +1,2 @@ +SHA256 (args-0.1.0.tar.gz) = a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814 +SIZE (args-0.1.0.tar.gz) = 3048 Added: head/devel/py-args/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-args/pkg-descr Fri Jul 18 01:53:41 2014 (r362170) @@ -0,0 +1,4 @@ +This simple Python module gives you an elegant interface for your command line +arguments. + +WWW: https://github.com/kennethreitz/args