Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 May 2020 20:46:29 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r534418 - in head/graphics: . py-cogdumper
Message-ID:  <202005082046.048KkT1h099772@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Fri May  8 20:46:28 2020
New Revision: 534418
URL: https://svnweb.freebsd.org/changeset/ports/534418

Log:
  Add py-cogdumper 1.1.0
  
  COG Dumper is a python utility to extract a tile from a Cloud Optimized GeoTIFF
  (COG) without decompressing the contained data. Tiff data can be hosted locally,
  on a web server or S3.
  
  This can be useful for serving compressed tiles from a TIFF without invoking
  Rasterio and GDAL. This utility has been tested with Tiff that have JPEG
  compression.
  
  WWW: https://github.com/mapbox/COGDumper

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Fri May  8 20:46:23 2020	(r534417)
+++ head/graphics/Makefile	Fri May  8 20:46:28 2020	(r534418)
@@ -790,6 +790,7 @@
     SUBDIR += py-cairocffi
     SUBDIR += py-cairosvg
     SUBDIR += py-cartopy
+    SUBDIR += py-cogdumper
     SUBDIR += py-colour
     SUBDIR += py-descartes
     SUBDIR += py-django-easy-thumbnails

Added: head/graphics/py-cogdumper/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-cogdumper/Makefile	Fri May  8 20:46:28 2020	(r534418)
@@ -0,0 +1,24 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	cogdumper
+PORTVERSION=	1.1.0
+CATEGORIES=	graphics python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Cloud Optimized GeoTIFF (COG) dumper
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}boto3>=1.6.2:www/py-boto3@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}click>=6.7:devel/py-click@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=2.18.4:www/py-requests@${PY_FLAVOR}
+
+USES=		python:3.6+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/graphics/py-cogdumper/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-cogdumper/distinfo	Fri May  8 20:46:28 2020	(r534418)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588930301
+SHA256 (cogdumper-1.1.0.tar.gz) = 75afe1ed636f4b5b8b540832f464dcc4d5fa3e8594d58bf8f27aa4d12e3ba164
+SIZE (cogdumper-1.1.0.tar.gz) = 9340

Added: head/graphics/py-cogdumper/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-cogdumper/pkg-descr	Fri May  8 20:46:28 2020	(r534418)
@@ -0,0 +1,9 @@
+COG Dumper is a python utility to extract a tile from a Cloud Optimized GeoTIFF
+(COG) without decompressing the contained data. Tiff data can be hosted locally,
+on a web server or S3.
+
+This can be useful for serving compressed tiles from a TIFF without invoking
+Rasterio and GDAL. This utility has been tested with Tiff that have JPEG
+compression.
+
+WWW: https://github.com/mapbox/COGDumper



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