Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jan 2020 17:22:41 +0000 (UTC)
From:      =?UTF-8?Q?Lo=c3=afc_Bartoletti?= <lbartoletti@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r523631 - in head/graphics: . py-pygeoapi
Message-ID:  <202001201722.00KHMf6n093354@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lbartoletti
Date: Mon Jan 20 17:22:41 2020
New Revision: 523631
URL: https://svnweb.freebsd.org/changeset/ports/523631

Log:
  graphics/py-pygeoapi: OGC API server implementation
  
  pygeoapi is a Python server implementation of the OGC API suite of standards.
  The project emerged as part of the next generation OGC API efforts in 2018 and provides the capability for organizations to deploy an RESTful OGC API endpoint using OpenAPI, GeoJSON, and HTML. pygeoapi is open source and released under an MIT license.
  
  Reviewed by:	tcberner, koobs
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D23217

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Mon Jan 20 17:09:49 2020	(r523630)
+++ head/graphics/Makefile	Mon Jan 20 17:22:41 2020	(r523631)
@@ -852,6 +852,7 @@
     SUBDIR += py-pyepsg
     SUBDIR += py-pygal
     SUBDIR += py-pyganim
+    SUBDIR += py-pygeoapi
     SUBDIR += py-pyglet
     SUBDIR += py-pyglet12
     SUBDIR += py-pygooglechart

Added: head/graphics/py-pygeoapi/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-pygeoapi/Makefile	Mon Jan 20 17:22:41 2020	(r523631)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	pygeoapi
+PORTVERSION=	0.7.0
+CATEGORIES=	graphics geography python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	lbartoletti@FreeBSD.org
+COMMENT=	OGC API server implementation
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.md
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}unicodecsv>0:devel/py-unicodecsv@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}Flask>0:www/py-flask@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}Flask-Cors>0:www/py-flask-cors@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+.include <bsd.port.mk>

Added: head/graphics/py-pygeoapi/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-pygeoapi/distinfo	Mon Jan 20 17:22:41 2020	(r523631)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1579280011
+SHA256 (pygeoapi-0.7.0.tar.gz) = 0ac0fe7ab6c36be9f8f6f5174596fc981b2ce8be49af3dc264a4ebe7e23c59d0
+SIZE (pygeoapi-0.7.0.tar.gz) = 69415

Added: head/graphics/py-pygeoapi/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-pygeoapi/pkg-descr	Mon Jan 20 17:22:41 2020	(r523631)
@@ -0,0 +1,7 @@
+pygeoapi is a Python server implementation of the OGC API suite of standards.
+The project emerged as part of the next generation OGC API efforts in 2018 and
+provides the capability for organizations to deploy an RESTful OGC API endpoint
+using OpenAPI, GeoJSON, and HTML. pygeoapi is open source and released under an
+MIT license.
+
+WWW: https://pygeoapi.io/



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