Bas Couwenberg pushed to branch master at Debian GIS Project / python-pdal
Commits: d6ebb840 by Bas Couwenberg at 2018-11-15T16:20:07Z New upstream version 2.1.1+ds - - - - - 17911ea2 by Bas Couwenberg at 2018-11-15T16:20:11Z Merge tag 'upstream/2.1.1+ds' Upstream version 2.1.1+ds - - - - - bf9ca538 by Bas Couwenberg at 2018-11-15T16:20:47Z New upstream release. - - - - - 0d9b6d30 by Bas Couwenberg at 2018-11-15T16:34:36Z Add patch to fix FTBFS. - - - - - 3dbd5b66 by Bas Couwenberg at 2018-11-15T16:58:04Z New upstream version 2.1.2+ds - - - - - c7b5204d by Bas Couwenberg at 2018-11-15T16:58:05Z Merge tag 'upstream/2.1.2+ds' Upstream version 2.1.2+ds - - - - - 318bff3f by Bas Couwenberg at 2018-11-15T16:58:26Z New upstream release. - - - - - 7a43b25d by Bas Couwenberg at 2018-11-15T16:59:08Z Drop setup.patch, applied upstream. - - - - - 83cb2c74 by Bas Couwenberg at 2018-11-15T17:22:09Z New upstream version 2.1.3+ds - - - - - 8f9087db by Bas Couwenberg at 2018-11-15T17:22:11Z Merge tag 'upstream/2.1.3+ds' Upstream version 2.1.3+ds - - - - - c48c7de5 by Bas Couwenberg at 2018-11-15T17:22:21Z New upstream release. - - - - - 159eaf0a by Bas Couwenberg at 2018-11-15T17:40:42Z Set distribution to unstable, - - - - - 5 changed files: - PKG-INFO - VERSION.txt - debian/changelog - 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 ===================================== debian/changelog ===================================== @@ -1,3 +1,9 @@ +python-pdal (2.1.3+ds-1) unstable; urgency=medium + + * New upstream release. + + -- Bas Couwenberg <[email protected]> Thu, 15 Nov 2018 18:40:29 +0100 + python-pdal (2.1.0+ds-1) unstable; urgency=medium * Move from experimental to unstable. ===================================== 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/5732f96d95956e2293f0e6f2c9ecd1ffe0d87ec1...159eaf0a4ec795ee3b6fabf2c90412ecc9c806bf -- View it on GitLab: https://salsa.debian.org/debian-gis-team/python-pdal/compare/5732f96d95956e2293f0e6f2c9ecd1ffe0d87ec1...159eaf0a4ec795ee3b6fabf2c90412ecc9c806bf 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
