From owner-svn-ports-all@FreeBSD.ORG Sun Jun 15 08:38:42 2014 Return-Path: Delivered-To: svn-ports-all@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 B9A98F26; Sun, 15 Jun 2014 08:38: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 8CEAC2EC2; Sun, 15 Jun 2014 08:38: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 s5F8cgeG006776; Sun, 15 Jun 2014 08:38:42 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5F8cfY9006772; Sun, 15 Jun 2014 08:38:41 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406150838.s5F8cfY9006772@svn.freebsd.org> From: Martin Wilke Date: Sun, 15 Jun 2014 08:38:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357842 - in head/devel: . py-click 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.18 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: Sun, 15 Jun 2014 08:38:42 -0000 Author: miwi Date: Sun Jun 15 08:38:41 2014 New Revision: 357842 URL: http://svnweb.freebsd.org/changeset/ports/357842 QAT: https://qat.redports.org/buildarchive/r357842/ Log: Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It's the "Command Line Interface Creation Kit". It's highly configurable but comes with sensible defaults out of the box. WWW: https://github.com/mitsuhiko/click PR: ports/190947 Submitted by: Bartek Rutkowski Added: head/devel/py-click/ head/devel/py-click/Makefile (contents, props changed) head/devel/py-click/distinfo (contents, props changed) head/devel/py-click/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 15 08:37:03 2014 (r357841) +++ head/devel/Makefile Sun Jun 15 08:38:41 2014 (r357842) @@ -3581,6 +3581,7 @@ SUBDIR += py-circuits SUBDIR += py-cjson SUBDIR += py-cld + SUBDIR += py-click SUBDIR += py-clonedigger SUBDIR += py-cmdln SUBDIR += py-cog Added: head/devel/py-click/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click/Makefile Sun Jun 15 08:38:41 2014 (r357842) @@ -0,0 +1,19 @@ +# Created by: Bartek Rutkowski +# $FreeBSD$ + +PORTNAME= click +PORTVERSION= 2.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@robakdesign.com +COMMENT= Python package for creating command line interfaces + +LICENSE= BSD3CLAUSE + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/devel/py-click/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click/distinfo Sun Jun 15 08:38:41 2014 (r357842) @@ -0,0 +1,2 @@ +SHA256 (click-2.0.tar.gz) = 33a984fe73aa8c6bf69c38098b69dd38405529db54baf4c8cf64c50b2dee644f +SIZE (click-2.0.tar.gz) = 47342 Added: head/devel/py-click/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click/pkg-descr Sun Jun 15 08:38:41 2014 (r357842) @@ -0,0 +1,6 @@ +Click is a Python package for creating beautiful command line interfaces +in a composable way with as little code as necessary. It's the "Command +Line Interface Creation Kit". It's highly configurable but comes with +sensible defaults out of the box. + +WWW: https://github.com/mitsuhiko/click