Bas Couwenberg pushed to branch upstream at Debian GIS Project / python-pdal
Commits: d6ebb840 by Bas Couwenberg at 2018-11-15T16:20:07Z New upstream version 2.1.1+ds - - - - - 3dbd5b66 by Bas Couwenberg at 2018-11-15T16:58:04Z New upstream version 2.1.2+ds - - - - - 83cb2c74 by Bas Couwenberg at 2018-11-15T17:22:09Z New upstream version 2.1.3+ds - - - - - 4 changed files: - PKG-INFO - VERSION.txt - pdal/__init__.py - setup.py Changes: ===================================== PKG-INFO ===================================== @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: PDAL -Version: 2.1.0 +Version: 2.1.3 Summary: Point cloud data processing Home-page: http://pdal.io Author: Howard Butler ===================================== VERSION.txt ===================================== @@ -1 +1 @@ -2.1.0 \ No newline at end of file +2.1.3 \ No newline at end of file ===================================== pdal/__init__.py ===================================== @@ -1,4 +1,4 @@ -__version__='2.1.0' +__version__='2.1.3' from .pipeline import Pipeline from .array import Array ===================================== setup.py ===================================== @@ -148,9 +148,6 @@ if pdal_config and "clean" not in sys.argv: include_dirs.append(numpy.get_include()) -if os.name != 'nt': - extra_compile_args = ['-std=c++11','-Wno-unknown-pragmas'] - if platform.system() == 'Darwin': extra_link_args.append('-Wl,-rpath,'+library_dirs[0]) @@ -167,6 +164,11 @@ if os.name in ['nt']: libraries.append('pdal_plugin_reader_numpy') extra_compile_args = ['/DNOMINMAX',] +if 'linux' in sys.platform or 'linux2' in sys.platform: + if 'GCC' in sys.version: + # try to ensure the ABI for Conda GCC 4.8 + if '4.8' in sys.version: + extra_compile_args += ['-D_GLIBCXX_USE_CXX11_ABI=0'] # readers.numpy doesn't exist until PDAL 1.8 if PDALVERSION >= Version('1.8'): View it on GitLab: https://salsa.debian.org/debian-gis-team/python-pdal/compare/ae5bff81bdfce30aded430c23d96f457d1faca4e...83cb2c74ecc7a04a6dbcf14c78376b6cd2902726 -- View it on GitLab: https://salsa.debian.org/debian-gis-team/python-pdal/compare/ae5bff81bdfce30aded430c23d96f457d1faca4e...83cb2c74ecc7a04a6dbcf14c78376b6cd2902726 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
