From owner-svn-ports-head@freebsd.org Sun Jun 3 01:39:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2697CFE269D; Sun, 3 Jun 2018 01:39:14 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C8CB08621C; Sun, 3 Jun 2018 01:39:13 +0000 (UTC) (envelope-from wen@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9FC517E06; Sun, 3 Jun 2018 01:39:13 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w531dDaT029900; Sun, 3 Jun 2018 01:39:13 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w531dC3c029896; Sun, 3 Jun 2018 01:39:12 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201806030139.w531dC3c029896@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 3 Jun 2018 01:39:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471439 - in head/devel: . py-cligj X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/devel: . py-cligj X-SVN-Commit-Revision: 471439 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Jun 2018 01:39:14 -0000 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 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