svn commit: r471439 - in head/devel: . py-cligj

Wen Heping wen at FreeBSD.org
Sun Jun 3 01:39:14 UTC 2018


Author: wen
Date: Sun Jun  3 01:39:12 2018
New Revision: 471439
URL: https://svnweb.freebsd.org/changeset/ports/471439

Log:
  Common arguments and options for GeoJSON processing commands, using Click.
  
  cligj is for Python developers who create command line interfaces for
  geospatial data. cligj allows you to quickly build consistent, well-tested
  and interoperable CLIs for handling GeoJSON.
  
  WWW: https://pypi.python.org/pypi/cliqj
  
  PR:		228665
  Submitted by:	lbartoletti at tuxfamily.org

Added:
  head/devel/py-cligj/
  head/devel/py-cligj/Makefile   (contents, props changed)
  head/devel/py-cligj/distinfo   (contents, props changed)
  head/devel/py-cligj/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jun  3 01:16:55 2018	(r471438)
+++ head/devel/Makefile	Sun Jun  3 01:39:12 2018	(r471439)
@@ -4390,6 +4390,7 @@
     SUBDIR += py-click-plugins
     SUBDIR += py-click-threading
     SUBDIR += py-cliff
+    SUBDIR += py-cligj
     SUBDIR += py-clint
     SUBDIR += py-clonedigger
     SUBDIR += py-cloudpickle

Added: head/devel/py-cligj/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cligj/Makefile	Sun Jun  3 01:39:12 2018	(r471439)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	cligj
+PORTVERSION=	0.4.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	lbartoletti at tuxfamily.org
+COMMENT=	Click-based argument and option decorators for Python GIS cli
+
+LICENSE=	BSD3CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>4.0:devel/py-click@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-cligj/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cligj/distinfo	Sun Jun  3 01:39:12 2018	(r471439)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527876764
+SHA256 (cligj-0.4.0.tar.gz) = 12ad07994f5c1173b06087ffbaacec52f9ebe4687926e5aacfc22b6b0c8b3f54
+SIZE (cligj-0.4.0.tar.gz) = 7281

Added: head/devel/py-cligj/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cligj/pkg-descr	Sun Jun  3 01:39:12 2018	(r471439)
@@ -0,0 +1,7 @@
+Common arguments and options for GeoJSON processing commands, using Click.
+
+cligj is for Python developers who create command line interfaces for
+geospatial data. cligj allows you to quickly build consistent, well-tested 
+and interoperable CLIs for handling GeoJSON.
+
+WWW: https://pypi.python.org/pypi/cliqj


More information about the svn-ports-all mailing list