From owner-svn-ports-head@freebsd.org Wed Oct 12 10:13:22 2016 Return-Path: Delivered-To: svn-ports-head@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 A5D45C0D001; Wed, 12 Oct 2016 10:13:22 +0000 (UTC) (envelope-from novel@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 65FD0D6E; Wed, 12 Oct 2016 10:13:22 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9CADLV3027970; Wed, 12 Oct 2016 10:13:21 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9CADLFg027966; Wed, 12 Oct 2016 10:13:21 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201610121013.u9CADLFg027966@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Wed, 12 Oct 2016 10:13:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423841 - in head/devel: . py-cliff 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.23 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: Wed, 12 Oct 2016 10:13:22 -0000 Author: novel Date: Wed Oct 12 10:13:21 2016 New Revision: 423841 URL: https://svnweb.freebsd.org/changeset/ports/423841 Log: Add py-cliff 2.2.0, command Line Interface Formulation Framework. PR: 213337 Submitted by: Alexander Nusov Added: head/devel/py-cliff/ head/devel/py-cliff/Makefile (contents, props changed) head/devel/py-cliff/distinfo (contents, props changed) head/devel/py-cliff/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Oct 12 10:08:08 2016 (r423840) +++ head/devel/Makefile Wed Oct 12 10:13:21 2016 (r423841) @@ -4053,6 +4053,7 @@ SUBDIR += py-click SUBDIR += py-click-log SUBDIR += py-click-threading + SUBDIR += py-cliff SUBDIR += py-clint SUBDIR += py-clonedigger SUBDIR += py-cloudpickle Added: head/devel/py-cliff/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cliff/Makefile Wed Oct 12 10:13:21 2016 (r423841) @@ -0,0 +1,26 @@ +# Created by: Alexander Nusov +# $FreeBSD$ + +PORTNAME= cliff +PORTVERSION= 2.2.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= alexander.nusov@nfvexpress.com +COMMENT= Command Line Interface Formulation Framework + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cmd2>=0.6.7:devel/py-cmd2 \ + ${PYTHON_PKGNAMEPREFIX}prettytable>=0:devel/py-prettytable \ + ${PYTHON_PKGNAMEPREFIX}unicodecsv>=0.8.0:devel/py-unicodecsv \ + ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}stevedore>=1.16.0:devel/py-stevedore \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3.1.0:devel/py-yaml + +NO_ARCH= yes + +USES= python:2.7+ +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-cliff/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cliff/distinfo Wed Oct 12 10:13:21 2016 (r423841) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475932927 +SHA256 (cliff-2.2.0.tar.gz) = a12a6bd3cf9085f0e0589c5019037ac4ee410413abbb76189fa62695f79f84fc +SIZE (cliff-2.2.0.tar.gz) = 57767 Added: head/devel/py-cliff/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cliff/pkg-descr Wed Oct 12 10:13:21 2016 (r423841) @@ -0,0 +1,5 @@ +cliff is a framework for building command line programs. +It uses setuptools entry points to provide subcommands, output formatters, +and other extensions. + +WWW: https://pypi.python.org/pypi/cliff/2.2.0