Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Jun 2018 01:39:12 +0000 (UTC)
From:      Wen Heping <wen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r471439 - in head/devel: . py-cligj
Message-ID:  <201806030139.w531dC3c029896@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806030139.w531dC3c029896>