diff options
author | gdt <gdt@pkgsrc.org> | 2019-03-22 14:00:49 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2019-03-22 14:00:49 +0000 |
commit | efa57ab121d53923937008d361c71d7e787a72bc (patch) | |
tree | d8f884aad70df6fce48314a5bbddbdaaada8cd11 /geography/gdal-lib | |
parent | 4520b3541ef2bf7ca648878f54aba7be6e1540b7 (diff) | |
download | pkgsrc-efa57ab121d53923937008d361c71d7e787a72bc.tar.gz |
geography/gdal-lib: Update to 2.4.1
pkgsrc changes: add patch to fix or work around std::fabs
upstream changes: bug fixes
Diffstat (limited to 'geography/gdal-lib')
-rw-r--r-- | geography/gdal-lib/Makefile.common | 4 | ||||
-rw-r--r-- | geography/gdal-lib/distinfo | 11 | ||||
-rw-r--r-- | geography/gdal-lib/patches/patch-ogr_ogrlinestring.cpp | 15 |
3 files changed, 23 insertions, 7 deletions
diff --git a/geography/gdal-lib/Makefile.common b/geography/gdal-lib/Makefile.common index e6f115ffd26..4419f77144f 100644 --- a/geography/gdal-lib/Makefile.common +++ b/geography/gdal-lib/Makefile.common @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.common,v 1.4 2019/03/09 17:39:01 gdt Exp $ +# $NetBSD: Makefile.common,v 1.5 2019/03/22 14:00:49 gdt Exp $ # # used by geography/gdal-lib/Makefile # used by geography/py-gdal/Makefile -VERSION= 2.4.0 +VERSION= 2.4.1 DISTNAME= gdal-${VERSION} CATEGORIES= geography MASTER_SITES= http://download.osgeo.org/gdal/${PKGVERSION_NOREV}/ diff --git a/geography/gdal-lib/distinfo b/geography/gdal-lib/distinfo index c38ca7d02fb..387ee1952c0 100644 --- a/geography/gdal-lib/distinfo +++ b/geography/gdal-lib/distinfo @@ -1,10 +1,11 @@ -$NetBSD: distinfo,v 1.37 2019/03/09 17:39:01 gdt Exp $ +$NetBSD: distinfo,v 1.38 2019/03/22 14:00:49 gdt Exp $ -SHA1 (gdal-2.4.0.tar.gz) = 3420ae8a9644ce652339ecbad18f9024279cd2ba -RMD160 (gdal-2.4.0.tar.gz) = 7e16bb8fa0e35bec6b76a5b55f221f024ef2cf5d -SHA512 (gdal-2.4.0.tar.gz) = 9517b23009621ed2622a460dc813b30de726d293531c6f107fb308a31e45a143e67e71aa3af3d1faed554ad516a35924973d714c63ee41445ac8d3b2da61dd10 -Size (gdal-2.4.0.tar.gz) = 14533664 bytes +SHA1 (gdal-2.4.1.tar.gz) = cb5dec7fe1a6b6cae44f520724ef3e8ac290d8bd +RMD160 (gdal-2.4.1.tar.gz) = cb46f21e808f67110f3198cb827822342b94a50c +SHA512 (gdal-2.4.1.tar.gz) = b25e49f343986af6f37e0bec6dc3084cbcf1a0080da5cfd91d1a58c1d9ffd2ac355299d66534e63e89358cbb15ecd0f2ae934d91bbd2a3749889dadaf266e483 +Size (gdal-2.4.1.tar.gz) = 14546610 bytes SHA1 (patch-apps_gdalserver.cpp) = 4a2b8bac29582c8fc02920840ee498026d87acca SHA1 (patch-frmts_grib_degrib_degrib_myutil.c) = 0e046afa236d7e0d6186fe392cb2da05fa5b42c5 +SHA1 (patch-ogr_ogrlinestring.cpp) = 3fc6dc50d963c995cc0d56e19a569cd97f257551 SHA1 (patch-ogr_ogrsf__frmts_geojson_libjson_GNUmakefile) = 6a5061b6dd8c3a4fa1ad7c10ddc0b815b41a637d SHA1 (patch-port_cpl__conv.cpp) = e0c9d2dac25bc6f69f0af13a2c86ab5f0f521445 diff --git a/geography/gdal-lib/patches/patch-ogr_ogrlinestring.cpp b/geography/gdal-lib/patches/patch-ogr_ogrlinestring.cpp new file mode 100644 index 00000000000..6361405f43a --- /dev/null +++ b/geography/gdal-lib/patches/patch-ogr_ogrlinestring.cpp @@ -0,0 +1,15 @@ +$NetBSD: patch-ogr_ogrlinestring.cpp,v 1.1 2019/03/22 14:00:49 gdt Exp $ + +fabs is not in std. Sent upstream via mail + +--- ogr/ogrlinestring.cpp.orig 2019-03-15 12:35:19.000000000 +0000 ++++ ogr/ogrlinestring.cpp +@@ -2551,7 +2551,7 @@ void OGRSimpleCurve::segmentize( double + const double dfX = paoPoints[i+1].x - paoPoints[i].x; + const double dfY = paoPoints[i+1].y - paoPoints[i].y; + const double dfSquareDist = dfX * dfX + dfY * dfY; +- if( std::fabs(dfSquareDist - dfSquareMaxLength) > 1e-5 * dfSquareMaxLength ) ++ if( fabs(dfSquareDist - dfSquareMaxLength) > 1e-5 * dfSquareMaxLength ) + { + const double dfIntermediatePoints = + floor(sqrt(dfSquareDist / dfSquareMaxLength) - 1e-2); |