svn commit: r454467 - in head/devel: . py-click-plugins
Emanuel Haupt
ehaupt at FreeBSD.org
Sat Nov 18 23:34:21 UTC 2017
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 <ehaupt at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= click-plugins
+PORTVERSION= 1.0.3
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= ehaupt at 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 <bsd.port.mk>
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
More information about the svn-ports-all
mailing list