Update to py-laspy-1.5.1.

This commit is contained in:
ajacoutot 2018-04-28 14:28:55 +00:00
parent ee03a065b8
commit e0bfa8d0d9
3 changed files with 4 additions and 18 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.1.1.1 2017/06/20 17:14:47 landry Exp $
# $OpenBSD: Makefile,v 1.2 2018/04/28 14:28:55 ajacoutot Exp $
COMMENT = library for reading, modifying and creating LAS LiDAR files
MODPY_EGG_VERSION= 1.5.0
MODPY_EGG_VERSION= 1.5.1
DISTNAME= laspy-${MODPY_EGG_VERSION}
PKGNAME= py-${DISTNAME}

View File

@ -1,2 +1,2 @@
SHA256 (laspy-1.5.0.tar.gz) = Mp3IahKWmWoi0RDqjBVd6FZwifWp5cfwKENyXMKM06s=
SIZE (laspy-1.5.0.tar.gz) = 484429
SHA256 (laspy-1.5.1.tar.gz) = h2hJmqQpwCjevf9nqnOLzzI+53cCVSi4QvNswi1Mz40=
SIZE (laspy-1.5.1.tar.gz) = 487710

View File

@ -1,14 +0,0 @@
$OpenBSD: patch-laspy_file_py,v 1.1.1.1 2017/06/20 17:14:47 landry Exp $
Index: laspy/file.py
--- laspy/file.py.orig
+++ laspy/file.py
@@ -158,7 +158,7 @@ class File(object):
def visualize(self, mode = "default", dim = "intensity"):
try:
- import glviewer
+ from laspy import glviewer
glviewer.run_glviewer(self, mode= mode, dim = dim)
return(0)
except Exception as err: