Bas Couwenberg pushed to branch master at Debian GIS Project / mkgmap
Commits: a5237450 by Bas Couwenberg at 2022-08-01T05:30:01+02:00 New upstream version 0.0.0+svn4905 - - - - - 40f704fd by Bas Couwenberg at 2022-08-01T05:30:21+02:00 Update upstream source from tag 'upstream/0.0.0+svn4905' Update to upstream version '0.0.0+svn4905' with Debian dir 0b56555e5a148486378de7ceaeff0fdf78d421d4 - - - - - 81b7ce64 by Bas Couwenberg at 2022-08-01T05:30:48+02:00 New upstream SVN snapshot. - - - - - 83be9d61 by Bas Couwenberg at 2022-08-01T05:31:23+02:00 Set distribution to unstable. - - - - - 3 changed files: - debian/changelog - resources/mkgmap-version.properties - src/uk/me/parabola/mkgmap/build/MapBuilder.java Changes: ===================================== debian/changelog ===================================== @@ -1,8 +1,9 @@ -mkgmap (0.0.0+svn4904-2) UNRELEASED; urgency=medium +mkgmap (0.0.0+svn4905-1) unstable; urgency=medium + * New upstream SVN snapshot. * Bump Standards-Version to 4.6.1, no changes. - -- Bas Couwenberg <[email protected]> Tue, 21 Jun 2022 07:13:18 +0200 + -- Bas Couwenberg <[email protected]> Mon, 01 Aug 2022 05:31:14 +0200 mkgmap (0.0.0+svn4904-1) unstable; urgency=medium ===================================== resources/mkgmap-version.properties ===================================== @@ -1,2 +1,2 @@ -svn.version: 4904 -build.timestamp: 2022-05-30T04:57:04+0100 +svn.version: 4905 +build.timestamp: 2022-07-13T06:18:29+0100 ===================================== src/uk/me/parabola/mkgmap/build/MapBuilder.java ===================================== @@ -279,6 +279,7 @@ public class MapBuilder implements Configurable { } } demDists = parseDemDists(demDistStr); + } private static List<Integer> parseDemDists(String demDists) { @@ -367,6 +368,11 @@ public class MapBuilder implements Configurable { DEMFile demFile = map.getDemFile(); if (demFile == null) return; + if (demDists.size() > src.mapLevels().length) { + throw new MapFailedException("More dem-dist values than levels: \n\t" + demDists + "\n\t" + + Arrays.toString(src.mapLevels()) + "\n"); + } + try{ long t1 = System.currentTimeMillis(); java.awt.geom.Area demArea = null; View it on GitLab: https://salsa.debian.org/debian-gis-team/mkgmap/-/compare/9e69edfcc75f849ba23b0aab9e0ad90c2e2a48e6...83be9d616d2292ae7fb6764619b3230442f11ba6 -- View it on GitLab: https://salsa.debian.org/debian-gis-team/mkgmap/-/compare/9e69edfcc75f849ba23b0aab9e0ad90c2e2a48e6...83be9d616d2292ae7fb6764619b3230442f11ba6 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
