From owner-svn-ports-all@freebsd.org Sat Nov 18 23:34:21 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 84E4BDDF60E; Sat, 18 Nov 2017 23:34:21 +0000 (UTC) (envelope-from ehaupt@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 5EFA71BA4; Sat, 18 Nov 2017 23:34:21 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAINYKkx094620; Sat, 18 Nov 2017 23:34:20 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAINYKv0094616; Sat, 18 Nov 2017 23:34:20 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201711182334.vAINYKv0094616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sat, 18 Nov 2017 23:34:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454467 - in head/devel: . py-click-plugins X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: in head/devel: . py-click-plugins X-SVN-Commit-Revision: 454467 X-SVN-Commit-Repository: ports 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.25 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: Sat, 18 Nov 2017 23:34:21 -0000 Author: ehaupt Date: Sat Nov 18 23:34:19 2017 New Revision: 454467 URL: https://svnweb.freebsd.org/changeset/ports/454467 Log: An extension module for click to enable registering CLI commands via setuptools entry-points. WWW: https://pypi.python.org/pypi/click-plugins Added: head/devel/py-click-plugins/ head/devel/py-click-plugins/Makefile (contents, props changed) head/devel/py-click-plugins/distinfo (contents, props changed) head/devel/py-click-plugins/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Nov 18 22:52:25 2017 (r454466) +++ head/devel/Makefile Sat Nov 18 23:34:19 2017 (r454467) @@ -4304,6 +4304,7 @@ SUBDIR += py-cliapp SUBDIR += py-click SUBDIR += py-click-log + SUBDIR += py-click-plugins SUBDIR += py-click-threading SUBDIR += py-cliff SUBDIR += py-clint Added: head/devel/py-click-plugins/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click-plugins/Makefile Sat Nov 18 23:34:19 2017 (r454467) @@ -0,0 +1,22 @@ +# Created by: Emanuel Haupt +# $FreeBSD$ + +PORTNAME= click-plugins +PORTVERSION= 1.0.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Click extension to register CLI commands via setuptools + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=3.2:devel/py-click + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/devel/py-click-plugins/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click-plugins/distinfo Sat Nov 18 23:34:19 2017 (r454467) @@ -0,0 +1,3 @@ +TIMESTAMP = 1511046415 +SHA256 (click-plugins-1.0.3.tar.gz) = 7acc5e7eedd2dfd719714e8d53ae99030b5357aed661d0b06dacd6c2d583d7c5 +SIZE (click-plugins-1.0.3.tar.gz) = 7950 Added: head/devel/py-click-plugins/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-click-plugins/pkg-descr Sat Nov 18 23:34:19 2017 (r454467) @@ -0,0 +1,4 @@ +An extension module for click to enable registering CLI commands via setuptools +entry-points. + +WWW: https://pypi.python.org/pypi/click-plugins