From owner-svn-ports-all@freebsd.org Mon Feb 6 21:08:33 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E1E8CD35CA; Mon, 6 Feb 2017 21:08:33 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 0192E1296; Mon, 6 Feb 2017 21:08:32 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v16L8WGo073913; Mon, 6 Feb 2017 21:08:32 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v16L8VbW073909; Mon, 6 Feb 2017 21:08:31 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201702062108.v16L8VbW073909@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 6 Feb 2017 21:08:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433519 - in head/devel: . py-cliapp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Feb 2017 21:08:33 -0000 Author: bapt Date: Mon Feb 6 21:08:31 2017 New Revision: 433519 URL: https://svnweb.freebsd.org/changeset/ports/433519 Log: cliapp is a Python framework for Unix-like command line programs. It contains the typical stuff such programs need to do, such as parsing the command line for options, and iterating over input files. WWW: https://liw.fi/cliapp/ Added: head/devel/py-cliapp/ head/devel/py-cliapp/Makefile (contents, props changed) head/devel/py-cliapp/distinfo (contents, props changed) head/devel/py-cliapp/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Feb 6 20:45:31 2017 (r433518) +++ head/devel/Makefile Mon Feb 6 21:08:31 2017 (r433519) @@ -4145,6 +4145,7 @@ SUBDIR += py-circuits SUBDIR += py-cjson SUBDIR += py-cld + SUBDIR += py-cliapp SUBDIR += py-click SUBDIR += py-click-log SUBDIR += py-click-threading Added: head/devel/py-cliapp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cliapp/Makefile Mon Feb 6 21:08:31 2017 (r433519) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= cliapp +PORTVERSION= 1.20160724 +CATEGORIES= devel +MASTER_SITES= http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cliapp/snapshot/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Python framework for command line utilities + +LICENSE= GPLv2 +LICENSE_FILES= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml + +USES= python:2 +NO_ARCH= yes + +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-cliapp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cliapp/distinfo Mon Feb 6 21:08:31 2017 (r433519) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486413425 +SHA256 (cliapp-1.20160724.tar.gz) = 8e1cbe19578090cc5d7ac96fd51ad47af2efc86f682b48ea82cff75d4ef4ac08 +SIZE (cliapp-1.20160724.tar.gz) = 59871 Added: head/devel/py-cliapp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cliapp/pkg-descr Mon Feb 6 21:08:31 2017 (r433519) @@ -0,0 +1,5 @@ +cliapp is a Python framework for Unix-like command line programs. It contains +the typical stuff such programs need to do, such as parsing the command line for +options, and iterating over input files. + +WWW: https://liw.fi/cliapp/