svn commit: r357842 - in head/devel: . py-click

Martin Wilke miwi at FreeBSD.org
Sun Jun 15 08:38:42 UTC 2014


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 <ports at robakdesign.com>

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 <ports at robakdesign.com>
+# $FreeBSD$
+
+PORTNAME=	click
+PORTVERSION=	2.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	ports at robakdesign.com
+COMMENT=	Python package for creating command line interfaces
+
+LICENSE=	BSD3CLAUSE
+
+USE_PYTHON=		yes
+USE_PYDISTUTILS=	yes
+PYDISTUTILS_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

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


More information about the svn-ports-all mailing list