Bug#860299: unblock: osm2pgsql/0.92.0+ds-2
Package: release.debian.org Severity: normal User: release.debian@packages.debian.org Usertags: unblock Please unblock package osm2pgsql It fixes two important issues reported to me by one of the developers one was also reported in #860273. unblock osm2pgsql/0.92.0+ds-2 Kind Regards, Bas diff -Nru osm2pgsql-0.92.0+ds/debian/changelog osm2pgsql-0.92.0+ds/debian/changelog --- osm2pgsql-0.92.0+ds/debian/changelog2016-12-16 11:34:24.0 +0100 +++ osm2pgsql-0.92.0+ds/debian/changelog2017-04-13 23:00:11.0 +0200 @@ -1,3 +1,18 @@ +osm2pgsql (0.92.0+ds-2) unstable; urgency=medium + + * Add upstream patches from 0.92.x branch to fix two important issues: +- Ignore relations with more than 32k members. + There is a hard restriction in the pgsql middle tables, where + relation members are indexed using a smallint. To remain + consistent, drop all relations which exceed this size. + https://github.com/openstreetmap/osm2pgsql/issues/713 +- Use the same logic for queuing pending ways with multi and pgsql. + Fixes ways disappearing from the output table. + https://github.com/openstreetmap/osm2pgsql/issues/735 +(closes: #860273) + + -- Bas Couwenberg Thu, 13 Apr 2017 23:00:11 +0200 + osm2pgsql (0.92.0+ds-1) unstable; urgency=medium * New upstream release. diff -Nru osm2pgsql-0.92.0+ds/debian/patches/0001-ignore-relations-with-more-than-32k-members.patch osm2pgsql-0.92.0+ds/debian/patches/0001-ignore-relations-with-more-than-32k-members.patch --- osm2pgsql-0.92.0+ds/debian/patches/0001-ignore-relations-with-more-than-32k-members.patch 1970-01-01 01:00:00.0 +0100 +++ osm2pgsql-0.92.0+ds/debian/patches/0001-ignore-relations-with-more-than-32k-members.patch 2017-04-13 22:55:58.0 +0200 @@ -0,0 +1,20 @@ +Description: ignore relations with more than 32k members + There is a hard restriction in the pgsql middle tables, where + relation members are indexed using a smallint. To remain + consistent, drop all relations which exceed this size. +Author: Sarah Hoffmann +Origin: https://github.com/openstreetmap/osm2pgsql/commit/ec9c84edbcbd0dafab6d6c30290083e75c023890 +Bug: https://github.com/openstreetmap/osm2pgsql/issues/713 + +--- a/parse-osmium.cpp b/parse-osmium.cpp +@@ -176,6 +176,9 @@ void parse_osmium_t::relation(osmium::Re + if (rel.deleted()) { + m_data->relation_delete(rel.id()); + } else { ++if (rel.members().size() > 32767) { ++return; ++} + convert_tags(rel); + convert_members(rel.members()); + if (m_append) { diff -Nru osm2pgsql-0.92.0+ds/debian/patches/0001-Use-the-same-logic-for-queuing-pending-ways-with-mul.patch osm2pgsql-0.92.0+ds/debian/patches/0001-Use-the-same-logic-for-queuing-pending-ways-with-mul.patch --- osm2pgsql-0.92.0+ds/debian/patches/0001-Use-the-same-logic-for-queuing-pending-ways-with-mul.patch 1970-01-01 01:00:00.0 +0100 +++ osm2pgsql-0.92.0+ds/debian/patches/0001-Use-the-same-logic-for-queuing-pending-ways-with-mul.patch 2017-04-13 23:00:11.0 +0200 @@ -0,0 +1,27 @@ +Description: Use the same logic for queuing pending ways with multi and pgsql + Fixes ways disappearing from the output table. +Author: Paul Norman +Origin: https://github.com/openstreetmap/osm2pgsql/commit/8ffe16e67da43fd531a5e73b10d31465324f4a91 +Bug: https://github.com/openstreetmap/osm2pgsql/issues/735 +Bug-Debian: https://bugs.debian.org/860273 + +--- a/output-multi.cpp b/output-multi.cpp +@@ -92,7 +92,7 @@ void output_multi_t::enqueue_ways(pendin + } + + //make sure to get this one as well and move to the next +-if(popped == id) { ++if (popped > id) { + if (!ways_done_tracker->is_marked(popped) && id_tracker::is_valid(popped)) { + job_queue.push(pending_job_t(popped, output_id)); + added++; +@@ -143,7 +143,7 @@ void output_multi_t::enqueue_relations(p + } + + //make sure to get this one as well and move to the next +-if(popped == id) { ++if (popped > id) { + if(id_tracker::is_valid(popped)) { + job_queue.push(pending_job_t(popped, output_id)); + added++; diff -Nru osm2pgsql-0.92.0+ds/debian/patches/series osm2pgsql-0.92.0+ds/debian/patches/series --- osm2pgsql-0.92.0+ds/debian/patches/series 1970-01-01 01:00:00.0 +0100 +++ osm2pgsql-0.92.0+ds/debian/patches/series 2017-04-13 22:55:55.0 +0200 @@ -0,0 +1,2 @@ +0001-ignore-relations-with-more-than-32k-members.patch +0001-Use-the-same-logic-for-queuing-pending-ways-with-mul.patch ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[mapcache] 01/01: Mark spelling-errors.patch as Applied-Upstream.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository mapcache. commit 5840ac69f498633c86cad53ed52f4fb21a77981c Author: Bas Couwenberg Date: Fri Apr 14 10:56:39 2017 +0200 Mark spelling-errors.patch as Applied-Upstream. --- debian/patches/spelling-errors.patch | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/patches/spelling-errors.patch b/debian/patches/spelling-errors.patch index b4889bc..7a87bea 100644 --- a/debian/patches/spelling-errors.patch +++ b/debian/patches/spelling-errors.patch @@ -2,6 +2,7 @@ Description: Fix spelling errors. * occured -> occurred Author: Bas Couwenberg Forwarded: https://github.com/mapserver/mapcache/pull/167 +Applied-Upstream: https://github.com/mapserver/mapcache/commit/67843f44dbe4b45be83ab854947eb67bd52a8257 --- a/lib/source_gdal.c +++ b/lib/source_gdal.c -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/mapcache.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[mapcache] branch master updated (d180fdb -> 5840ac6)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository mapcache. from d180fdb Set distribution to experimental. new 5840ac6 Mark spelling-errors.patch as Applied-Upstream. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/patches/spelling-errors.patch | 1 + 1 file changed, 1 insertion(+) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/mapcache.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] branch experimental-2.2 created (now 151108b)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch experimental-2.2 in repository gdal. at 151108b Set distribution to experimental. This branch includes the following new commits: new 2bce67c Update branch in gbp.conf & Vcs-Git URL. new 5a7a2fb Update watch file for 2.2.0 (pre-)releases. new 91475de Imported Upstream version 2.2.0~beta1+dfsg new 0baa4c9 Merge tag 'upstream/2.2.0_beta1+dfsg' into experimental-2.2 new f2f55fc New upstream beta release. new 2afeaf8 Drop patches applied upstream. Refresh remaining patches. new 140ab45 Move data files to architecture independent gdal-data package. new 3bacb60 Update copyright file. new 4f5a524 Enable SOSI support. new 0cca15e Include ogrmerge.py in python-gdal package. new 07ad92c Include gnmanalyse & gnmmanage in gdal-bin package. new 151108b Set distribution to experimental. The 12 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] branch pristine-tar updated (576990f -> 812f9b5)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch pristine-tar in repository gdal. from 576990f pristine-tar data for gdal_2.1.3+dfsg.orig.tar.gz new 812f9b5 pristine-tar data for gdal_2.2.0~beta1+dfsg.orig.tar.gz The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: ...elta => gdal_2.2.0~beta1+dfsg.orig.tar.gz.delta | Bin 11468993 -> 12145014 bytes gdal_2.2.0~beta1+dfsg.orig.tar.gz.id | 1 + 2 files changed, 1 insertion(+) copy gdal_2.1.2~rc4+dfsg.orig.tar.gz.delta => gdal_2.2.0~beta1+dfsg.orig.tar.gz.delta (57%) create mode 100644 gdal_2.2.0~beta1+dfsg.orig.tar.gz.id -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 01/01: pristine-tar data for gdal_2.2.0~beta1+dfsg.orig.tar.gz
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch pristine-tar in repository gdal. commit 812f9b5c7e2d14964d4e04dc4b109a29fbd21353 Author: Bas Couwenberg Date: Fri Apr 14 11:12:34 2017 +0200 pristine-tar data for gdal_2.2.0~beta1+dfsg.orig.tar.gz --- gdal_2.2.0~beta1+dfsg.orig.tar.gz.delta | Bin 0 -> 12145014 bytes gdal_2.2.0~beta1+dfsg.orig.tar.gz.id| 1 + 2 files changed, 1 insertion(+) diff --git a/gdal_2.2.0~beta1+dfsg.orig.tar.gz.delta b/gdal_2.2.0~beta1+dfsg.orig.tar.gz.delta new file mode 100644 index 000..a354ff0 Binary files /dev/null and b/gdal_2.2.0~beta1+dfsg.orig.tar.gz.delta differ diff --git a/gdal_2.2.0~beta1+dfsg.orig.tar.gz.id b/gdal_2.2.0~beta1+dfsg.orig.tar.gz.id new file mode 100644 index 000..9e88d0d --- /dev/null +++ b/gdal_2.2.0~beta1+dfsg.orig.tar.gz.id @@ -0,0 +1 @@ +6af252bf378810f33ae35805062f52a2f6e23672 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 02/12: Update watch file for 2.2.0 (pre-)releases.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 5a7a2fb751787a309aec11218277b7f1822e2b8b Author: Bas Couwenberg Date: Fri Apr 14 11:10:00 2017 +0200 Update watch file for 2.2.0 (pre-)releases. --- debian/changelog | 6 ++ debian/watch | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 3c9a56e..d7f1e48 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gdal (2.1.3+dfsg-1~exp5) UNRELEASED; urgency=medium + + * Update watch file for 2.2.0 (pre-)releases. + + -- Bas Couwenberg Fri, 14 Apr 2017 11:09:16 +0200 + gdal (2.1.3+dfsg-1~exp4) experimental; urgency=medium * Merge changes from gdal (2.1.2+dfsg-5). diff --git a/debian/watch b/debian/watch index 5924ed2..9669252 100644 --- a/debian/watch +++ b/debian/watch @@ -3,5 +3,5 @@ opts=\ dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\ repacksuffix=+dfsg \ -https://trac.osgeo.org/gdal/wiki/DownloadSource \ +http://download.osgeo.org/gdal/2.2.0/ \ (?:|.*/)gdal(?:[_\-]v?|)(\d\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 01/12: Update branch in gbp.conf & Vcs-Git URL.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 2bce67c800ebc4b2a9efd2c12345766c49e7ff48 Author: Bas Couwenberg Date: Fri Apr 14 11:06:16 2017 +0200 Update branch in gbp.conf & Vcs-Git URL. --- debian/control | 2 +- debian/gbp.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/control b/debian/control index 7164fd0..74cfd64 100644 --- a/debian/control +++ b/debian/control @@ -59,7 +59,7 @@ Build-Conflicts: automake1.11, python-setuptools Standards-Version: 3.9.8 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/gdal.git -Vcs-Git: https://anonscm.debian.org/git/pkg-grass/gdal.git -b experimental +Vcs-Git: https://anonscm.debian.org/git/pkg-grass/gdal.git -b experimental-2.2 Homepage: http://www.gdal.org/ X-Python3-Version: >= 3.2 diff --git a/debian/gbp.conf b/debian/gbp.conf index 6464eea..1859f61 100644 --- a/debian/gbp.conf +++ b/debian/gbp.conf @@ -2,11 +2,11 @@ # The default name for the upstream branch is "upstream". # Change it if the name is different (for instance, "master"). -upstream-branch = upstream +upstream-branch = upstream-2.2 # The default name for the Debian branch is "master". # Change it if the name is different (for instance, "debian/unstable"). -debian-branch = experimental +debian-branch = experimental-2.2 # git-import-orig uses the following names for the upstream tags. # Change the value if you are not using git-import-orig -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 06/12: Drop patches applied upstream. Refresh remaining patches.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 2afeaf8c2a3480e8b8e4a4d5e0d9c5f01d4392f4 Author: Bas Couwenberg Date: Fri Apr 14 11:35:02 2017 +0200 Drop patches applied upstream. Refresh remaining patches. --- debian/changelog | 1 + debian/patches/gdalpaths | 8 +- debian/patches/hdf4 | 10 +- debian/patches/ogdi | 2 +- debian/patches/perl-vendor| 2 +- debian/patches/privacy-breach-logo.patch | 17 +-- debian/patches/python3-import-gdal_array.patch| 28 debian/patches/series | 3 - debian/patches/sort-files-in-static-library.patch | 17 --- debian/patches/spatialite | 6 +- debian/patches/spelling-errors.patch | 161 -- 11 files changed, 18 insertions(+), 237 deletions(-) diff --git a/debian/changelog b/debian/changelog index ab47187..8a168ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium * New upstream beta release. * Update watch file for 2.2.0 (pre-)releases. + * Drop patches applied upstream. Refresh remaining patches. -- Bas Couwenberg Fri, 14 Apr 2017 11:25:30 +0200 diff --git a/debian/patches/gdalpaths b/debian/patches/gdalpaths index cf2e0cb..489d6fc 100644 --- a/debian/patches/gdalpaths +++ b/debian/patches/gdalpaths @@ -5,7 +5,7 @@ Forwarded: not-needed --- a/gcore/gdaldrivermanager.cpp +++ b/gcore/gdaldrivermanager.cpp -@@ -705,7 +705,7 @@ void GDALDriverManager::AutoLoadDrivers( +@@ -740,7 +740,7 @@ void GDALDriverManager::AutoLoadDrivers( #ifdef MACOSX_FRAMEWORK GDAL_PREFIX "/PlugIns"); #else @@ -16,12 +16,12 @@ Forwarded: not-needed char szExecPath[1024]; --- a/port/cpl_findfile.cpp +++ b/port/cpl_findfile.cpp -@@ -113,7 +113,7 @@ static FindFileTLS* CPLFinderInit() +@@ -118,7 +118,7 @@ static FindFileTLS* CPLFinderInit() #ifdef MACOSX_FRAMEWORK CPLPushFinderLocation( GDAL_PREFIX "/Resources/gdal" ); #else -CPLPushFinderLocation( GDAL_PREFIX "/share/gdal" ); +CPLPushFinderLocation( GDAL_PREFIX "/share/gdal/2.2" ); #endif - #else - CPLPushFinderLocation( "/usr/local/share/gdal" ); + #endif + } diff --git a/debian/patches/hdf4 b/debian/patches/hdf4 index fc5a85e..784dd05 100644 --- a/debian/patches/hdf4 +++ b/debian/patches/hdf4 @@ -5,7 +5,7 @@ Forwarded: not-needed --- a/configure +++ b/configure -@@ -22501,7 +22501,7 @@ fi +@@ -23680,7 +23680,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mfhdf_SDreaddata" >&5 $as_echo "$ac_cv_lib_mfhdf_SDreaddata" >&6; } if test "x$ac_cv_lib_mfhdf_SDreaddata" = xyes; then : @@ -14,7 +14,7 @@ Forwarded: not-needed else HDF_LIB_NAME=missing fi -@@ -22561,7 +22561,7 @@ if ${ac_cv_lib_mfhdf_SDreaddata+:} false +@@ -23740,7 +23740,7 @@ if ${ac_cv_lib_mfhdf_SDreaddata+:} false $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -23,7 +23,7 @@ Forwarded: not-needed cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -@@ -22592,7 +22592,7 @@ fi +@@ -23771,7 +23771,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mfhdf_SDreaddata" >&5 $as_echo "$ac_cv_lib_mfhdf_SDreaddata" >&6; } if test "x$ac_cv_lib_mfhdf_SDreaddata" = xyes; then : @@ -32,7 +32,7 @@ Forwarded: not-needed else HDF_LIB_NAME=missing fi -@@ -22607,7 +22607,7 @@ if ${ac_cv_lib_mfhdf_SDreaddata+:} false +@@ -23786,7 +23786,7 @@ if ${ac_cv_lib_mfhdf_SDreaddata+:} false $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS @@ -41,7 +41,7 @@ Forwarded: not-needed cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ -@@ -22638,7 +22638,7 @@ fi +@@ -23817,7 +23817,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mfhdf_SDreaddata" >&5 $as_echo "$ac_cv_lib_mfhdf_SDreaddata" >&6; } if test "x$ac_cv_lib_mfhdf_SDreaddata" = xyes; then : diff --git a/debian/patches/ogdi b/debian/patches/ogdi index 989ac65..066bf3f 100644 --- a/debian/patches/ogdi +++ b/debian/patches/ogdi @@ -5,7 +5,7 @@ Forwarded: not-needed --- a/GDALmake.opt.in +++ b/GDALmake.opt.in -@@ -430,7 +430,7 @@ endif +@@ -422,7 +422,7 @@ endif # PCRaster support PCRASTER_SETTING = @PCRASTER_SETTING@ diff --git a/debian/patches/perl-vendor b/debian/patches/perl-vendor index 51cd388..a0bc27d 100644 --- a/debian/patches/perl-vendor +++ b/debian/patches/perl-vendor @@ -17,7 +17,7 @@ Last-Update: 2014-07-08 $(MAKE) -f Makefile_Geo__GDAL test --- a/swig/perl/GNUmakefile +++ b/swig/perl/GNUmakefile -@@ -28,7 +28,7 @@ build: gdal_wrap.cc Makefile_Geo__GDA
[gdal] 05/12: New upstream beta release.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit f2f55fc61cec86696dd436750af85bd8469bff00 Author: Bas Couwenberg Date: Fri Apr 14 11:29:42 2017 +0200 New upstream beta release. --- debian/changelog| 5 +++-- debian/control | 2 +- debian/libgdal20.install| 2 +- debian/libgdal20.symbols.alpha | 2 +- debian/libgdal20.symbols.amd64 | 2 +- debian/libgdal20.symbols.arm64 | 2 +- debian/libgdal20.symbols.armel | 2 +- debian/libgdal20.symbols.armhf | 2 +- debian/libgdal20.symbols.hppa | 2 +- debian/libgdal20.symbols.hurd-i386 | 2 +- debian/libgdal20.symbols.i386 | 2 +- debian/libgdal20.symbols.kfreebsd-amd64 | 2 +- debian/libgdal20.symbols.kfreebsd-i386 | 2 +- debian/libgdal20.symbols.m68k | 2 +- debian/libgdal20.symbols.mips | 2 +- debian/libgdal20.symbols.mips64el | 2 +- debian/libgdal20.symbols.mipsel | 2 +- debian/libgdal20.symbols.powerpc| 2 +- debian/libgdal20.symbols.ppc64 | 2 +- debian/libgdal20.symbols.ppc64el| 2 +- debian/libgdal20.symbols.s390x | 2 +- debian/libgdal20.symbols.sparc64| 2 +- debian/libgdal20.symbols.x32| 2 +- debian/patches/gdalpaths| 4 ++-- 24 files changed, 27 insertions(+), 26 deletions(-) diff --git a/debian/changelog b/debian/changelog index d7f1e48..ab47187 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ -gdal (2.1.3+dfsg-1~exp5) UNRELEASED; urgency=medium +gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium + * New upstream beta release. * Update watch file for 2.2.0 (pre-)releases. - -- Bas Couwenberg Fri, 14 Apr 2017 11:09:16 +0200 + -- Bas Couwenberg Fri, 14 Apr 2017 11:25:30 +0200 gdal (2.1.3+dfsg-1~exp4) experimental; urgency=medium diff --git a/debian/control b/debian/control index 74cfd64..83daecb 100644 --- a/debian/control +++ b/debian/control @@ -70,7 +70,7 @@ Depends: ${shlibs:Depends}, ${misc:Depends} Recommends: proj-bin Breaks: libgdal1h (<< 2.0) -Provides: gdal-abi-2-1-3 +Provides: gdal-abi-2-2-0 Description: Geospatial Data Abstraction Library GDAL is a translator library for raster geospatial data formats. As a library, it presents a single abstract data model to the diff --git a/debian/libgdal20.install b/debian/libgdal20.install index 51d3c0d..d08f16b 100644 --- a/debian/libgdal20.install +++ b/debian/libgdal20.install @@ -1,2 +1,2 @@ usr/lib/libgdal.so.* -usr/share/gdal/2.1 +usr/share/gdal/2.2 diff --git a/debian/libgdal20.symbols.alpha b/debian/libgdal20.symbols.alpha index 508e717..b1985b7 100644 --- a/debian/libgdal20.symbols.alpha +++ b/debian/libgdal20.symbols.alpha @@ -1,5 +1,5 @@ libgdal.so.20 libgdal20 #MINVER# -| libgdal20 #MINVER#, gdal-abi-2-1-3 +| libgdal20 #MINVER#, gdal-abi-2-2-0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@Base" 1.10.0 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.0 1 diff --git a/debian/libgdal20.symbols.amd64 b/debian/libgdal20.symbols.amd64 index e8dc599..5479aac 100644 --- a/debian/libgdal20.symbols.amd64 +++ b/debian/libgdal20.symbols.amd64 @@ -1,5 +1,5 @@ libgdal.so.20 libgdal20 #MINVER# -| libgdal20 #MINVER#, gdal-abi-2-1-3 +| libgdal20 #MINVER#, gdal-abi-2-2-0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@Base" 1.8.0 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 diff --git a/debian/libgdal20.symbols.arm64 b/debian/libgdal20.symbols.arm64 index 0687f68..f9bb6ae 100644 --- a/debian/libgdal20.symbols.arm64 +++ b/debian/libgdal20.symbols.arm64 @@ -1,5 +1,5 @@ libgdal.so.20 libgdal20 #MINVER# -| libgdal20 #MINVER#, gdal-abi-2-1-3 +| libgdal20 #MINVER#, gdal-abi-2-2-0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@Base" 1.10.1 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.1 1 diff --git a/debian/libgdal20.symbols.armel b/debian/libgdal20.symbols.armel index 06eac66..b91bc0a 100644 --- a/debian/libgdal20.symbols.armel +++ b/debian/libgdal20.symbols.armel @@ -1,5 +1,5 @@ libgdal.so.20 libgdal20 #MINVER# -| libgdal20 #MINVER#, gdal-abi-2-1-3 +| libgdal20 #MINVER#, gdal-abi-2-2-0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@Base" 1.8.0 1 (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 diff --git a/debian/libgdal20.symbols.armhf b/debian/libgdal20.symbols.armhf index 06eac66..b91bc0a 100644 --- a/debian/libgdal20.symbols.armhf +++ b/debian/libgdal20.symbols.armhf @@ -1,5 +1,5 @@ libgdal.so.20 libgdal20 #MINVER# -| libgdal20 #MINVER#, gdal-abi-2-1-3 +| libgdal20 #MINVER#, gdal-abi-2-2-0 #include "libgdal20.symbols.common" (c++)"PamGetProxy(char const*)@Base" 1.8.0 1 (c++)"CPLURLAddKVP(char const*, char
[gdal] 07/12: Move data files to architecture independent gdal-data package.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 140ab452687b2a6d92f3b760379fbbd81f80794a Author: Bas Couwenberg Date: Fri Apr 14 11:42:09 2017 +0200 Move data files to architecture independent gdal-data package. --- debian/changelog | 1 + debian/control | 25 - debian/gdal-data.install | 1 + debian/libgdal20.install | 1 - 4 files changed, 26 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 8a168ce..0c2d11c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium * New upstream beta release. * Update watch file for 2.2.0 (pre-)releases. * Drop patches applied upstream. Refresh remaining patches. + * Move data files to architecture independent gdal-data package. -- Bas Couwenberg Fri, 14 Apr 2017 11:25:30 +0200 diff --git a/debian/control b/debian/control index 83daecb..d57ece0 100644 --- a/debian/control +++ b/debian/control @@ -66,7 +66,8 @@ X-Python3-Version: >= 3.2 Package: libgdal20 Architecture: any Section: libs -Depends: ${shlibs:Depends}, +Depends: gdal-data (>= ${source:Version}), + ${shlibs:Depends}, ${misc:Depends} Recommends: proj-bin Breaks: libgdal1h (<< 2.0) @@ -204,6 +205,28 @@ Description: Geospatial Data Abstraction Library - Utility programs namely gdal_translate, gdalinfo, gdaladdo, gdalwarp, ogr2ogr, ogrinfo, ogrtindex. +Package: gdal-data +Architecture: all +Depends: ${misc:Depends} +Description: Geospatial Data Abstraction Library - Data files + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains the GDAL data files. + Package: python-gdal Architecture: any Section: python diff --git a/debian/gdal-data.install b/debian/gdal-data.install new file mode 100644 index 000..aae84d5 --- /dev/null +++ b/debian/gdal-data.install @@ -0,0 +1 @@ +usr/share/gdal/2.2 diff --git a/debian/libgdal20.install b/debian/libgdal20.install index d08f16b..803c482 100644 --- a/debian/libgdal20.install +++ b/debian/libgdal20.install @@ -1,2 +1 @@ usr/lib/libgdal.so.* -usr/share/gdal/2.2 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 08/12: Update copyright file.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 3bacb609da984efe406606e7c07c7a34c1c153ac Author: Bas Couwenberg Date: Fri Apr 14 12:50:56 2017 +0200 Update copyright file. Changes: - Update copyright years for copyright holders - Add new copyright holders - Add license & copyright for minidriver_mrf.cpp --- debian/changelog | 4 debian/copyright | 30 ++ 2 files changed, 26 insertions(+), 8 deletions(-) diff --git a/debian/changelog b/debian/changelog index 0c2d11c..7ffb4d3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,10 @@ gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium * Update watch file for 2.2.0 (pre-)releases. * Drop patches applied upstream. Refresh remaining patches. * Move data files to architecture independent gdal-data package. + * Update copyright file, changes: +- Update copyright years for copyright holders +- Add new copyright holders +- Add license & copyright for minidriver_mrf.cpp -- Bas Couwenberg Fri, 14 Apr 2017 11:25:30 +0200 diff --git a/debian/copyright b/debian/copyright index 57ae103..608a374 100644 --- a/debian/copyright +++ b/debian/copyright @@ -22,17 +22,27 @@ Files-Excluded: data/cubewerx_extra.wkt data/esri_extra.wkt Files: * -Copyright: 2007-2016, Even Rouault - 2009-2015, Martin Landa - 2013-2015, NextGIS +Copyright: 2007-2017, Even Rouault + 2015-2017, Planet Labs + 2017, Hobu Inc + 2009-2016, Martin Landa + 2013-2016, NextGIS + 2016, Alexandr Borzykh + 2016, Andrew Sudorgin + 2016, Avyav Kumar Singh + 2016, Dmitry Baryshnikov + 2016, Julien Michel + 2016, Lucian Plesea + 2016, Piers Titus van der Torren + 2016, SatCen - European Union Satellite Centre 2005, 2007-2008, 2010, 2013, 2015, Tamas Szekeres 2015, Airbus DS Geo SA 2015, European Union (European Environment Agency) 2015, European Union Satellite Centre 2015, Faza Mahamood - 2015, Planet Labs 2015, Sean Gillies 2010, 2013-2014, Kyle Shannon + 2008-2014, Antonio Valentino 2004, 2014, Pirmin Kalberer, Sourcepole AG 2013-2014, ZJU Walkinfo Technology Corp., Ltd 2014, François Hissel @@ -54,7 +64,6 @@ Copyright: 2007-2016, Even Rouault 2011, Adam Estrada 2011, Alessandro Furieri - 2011, Antonio Valentino 2011, Ben Ahmed Daho Ali 2005-2007, 2010, Daylon Graphics Ltd 2006-2008, 2010, Ivan Lucena @@ -139,14 +148,14 @@ Copyright: 1992-2010, Free Software Foundation, Inc. License: fsf-unlimited-configure Files: aclocal.m4 -Copyright: 1996-2013, Free Software Foundation, Inc. +Copyright: 1996-2014, Free Software Foundation, Inc. License: fsf-unlimited-disclaimer Files: ltmain.sh Copyright: 1996-2001, 2003-2010, Free Software Foundation, Inc License: GPL-2+ with Libtool exception -Files: alg/libqhull/* +Files: alg/internal_libqhull/* Copyright: 1993-2012, C.B. Barber 1993-2012, The National Science and Technology Research Center for Computation and Visualization of Geometric Structures @@ -490,6 +499,11 @@ License: public-domain copyright in any changes I have made; this code remains in the public domain. +Files: frmts/wms/minidriver_mrf.cpp +Copyright: 2016, Lucian Plesea + 2016, Esri +License: Apache-2.0 + Files: frmts/zlib/* Copyright: 1995-2005, Jean-loup Gailly. 1995-2005, Mark Adler @@ -514,7 +528,7 @@ Files: ogr/osr_cs_wkt_parser.c ogr/osr_cs_wkt_parser.h ogr/swq_parser.cpp ogr/swq_parser.hpp -Copyright: 1984, 1989-1990, 2000-2013, Free Software Foundation, Inc +Copyright: 1984, 1989-1990, 2000-2015, Free Software Foundation, Inc 2010-2013, Even Rouault License: GPL-3+ with Bison exception -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 10/12: Include ogrmerge.py in python-gdal package.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 0cca15e6ad29d3dc74211d4ed7a9b00ecb2d03f7 Author: Bas Couwenberg Date: Fri Apr 14 14:38:40 2017 +0200 Include ogrmerge.py in python-gdal package. --- debian/changelog | 1 + debian/gdal-bin.install| 11 +-- debian/python-gdal.install | 1 + 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 752ddaf..14581b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,7 @@ gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium - Add new copyright holders - Add license & copyright for minidriver_mrf.cpp * Enable SOSI support. + * Include ogrmerge.py in python-gdal package. -- Bas Couwenberg Fri, 14 Apr 2017 11:25:30 +0200 diff --git a/debian/gdal-bin.install b/debian/gdal-bin.install index a35e574..43fd753 100644 --- a/debian/gdal-bin.install +++ b/debian/gdal-bin.install @@ -16,7 +16,10 @@ usr/bin/gdal_rasterize usr/bin/gdal_translate # gdal_utilities usr/bin/nearblack -usr/bin/ogr* +usr/bin/ogr2ogr +usr/bin/ogrinfo +usr/bin/ogrlineref +usr/bin/ogrtindex usr/bin/testepsg usr/share/man/man1/gdaladdo.1 usr/share/man/man1/gdalbuildvrt.1 @@ -40,5 +43,9 @@ usr/share/man/man1/gnmanalyse.1 usr/share/man/man1/gnmmanage.1 usr/share/man/man1/gnm_utilities.1 usr/share/man/man1/nearblack.1 -usr/share/man/man1/ogr*.1 +usr/share/man/man1/ogr2ogr.1 +usr/share/man/man1/ogrinfo.1 +usr/share/man/man1/ogrlineref.1 +usr/share/man/man1/ogrtindex.1 +usr/share/man/man1/ogr_utilities.1 # testepsg.1 diff --git a/debian/python-gdal.install b/debian/python-gdal.install index f9acb5b..5870f82 100644 --- a/debian/python-gdal.install +++ b/debian/python-gdal.install @@ -18,5 +18,6 @@ usr/share/man/man1/gdal_retile.1 usr/share/man/man1/gdal_sieve.1 usr/share/man/man1/gdalcompare.1 usr/share/man/man1/gdalmove.1 +usr/share/man/man1/ogrmerge.1 usr/share/man/man1/pct2rgb.1 usr/share/man/man1/rgb2pct.1 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 09/12: Enable SOSI support.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 4f5a52434b8246dc285e7eda3b5f27c471525e9a Author: Bas Couwenberg Date: Fri Apr 14 13:24:25 2017 +0200 Enable SOSI support. --- debian/changelog | 1 + debian/control | 2 ++ debian/rules | 1 + 3 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index 7ffb4d3..752ddaf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,7 @@ gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium - Update copyright years for copyright holders - Add new copyright holders - Add license & copyright for minidriver_mrf.cpp + * Enable SOSI support. -- Bas Couwenberg Fri, 14 Apr 2017 11:25:30 +0200 diff --git a/debian/control b/debian/control index d57ece0..4b6a2bd 100644 --- a/debian/control +++ b/debian/control @@ -20,6 +20,7 @@ Build-Depends: debhelper (>= 9), libepsilon-dev (>= 0.9.1-1~), libexpat1-dev, libfreexl-dev (>= 1.0.0), + libfyba-dev, libgeos-dev, libgeotiff-dev, libgif-dev, @@ -102,6 +103,7 @@ Depends: libgdal20 (= ${binary:Version}), libepsilon-dev, libexpat1-dev, libfreexl-dev, + libfyba-dev, libgeos-dev, libgeotiff-dev, libgif-dev, diff --git a/debian/rules b/debian/rules index 0c6230e..5c4c081 100755 --- a/debian/rules +++ b/debian/rules @@ -115,6 +115,7 @@ override_dh_auto_configure: --with-pg \ --with-poppler=yes \ --with-qhull=yes \ + --with-sosi=yes \ --with-spatialite=/usr \ --with-sqlite3 \ --with-webp \ -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 11/12: Include gnmanalyse & gnmmanage in gdal-bin package.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 07ad92ce0904da5dbf312c2f1c6941f24eb07534 Author: Bas Couwenberg Date: Fri Apr 14 14:51:44 2017 +0200 Include gnmanalyse & gnmmanage in gdal-bin package. --- debian/changelog| 1 + debian/gdal-bin.install | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 14581b0..08f05c1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,7 @@ gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium - Add license & copyright for minidriver_mrf.cpp * Enable SOSI support. * Include ogrmerge.py in python-gdal package. + * Include gnmanalyse & gnmmanage in gdal-bin package. -- Bas Couwenberg Fri, 14 Apr 2017 11:25:30 +0200 diff --git a/debian/gdal-bin.install b/debian/gdal-bin.install index 43fd753..60502f8 100644 --- a/debian/gdal-bin.install +++ b/debian/gdal-bin.install @@ -15,6 +15,8 @@ usr/bin/gdal_grid usr/bin/gdal_rasterize usr/bin/gdal_translate # gdal_utilities +usr/bin/gnmanalyse +usr/bin/gnmmanage usr/bin/nearblack usr/bin/ogr2ogr usr/bin/ogrinfo -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] branch upstream-2.2 created (now 91475de)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch upstream-2.2 in repository gdal. at 91475de Imported Upstream version 2.2.0~beta1+dfsg This branch includes the following new commits: new 91475de Imported Upstream version 2.2.0~beta1+dfsg The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] 12/12: Set distribution to experimental.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal. commit 151108b02e03da37b6b03db895ffbb7d48c3c5f3 Author: Bas Couwenberg Date: Fri Apr 14 14:52:38 2017 +0200 Set distribution to experimental. --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 08f05c1..46debc3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium +gdal (2.2.0~beta1+dfsg-1~exp1) experimental; urgency=medium * New upstream beta release. * Update watch file for 2.2.0 (pre-)releases. @@ -12,7 +12,7 @@ gdal (2.2.0~beta1+dfsg-1) UNRELEASED; urgency=medium * Include ogrmerge.py in python-gdal package. * Include gnmanalyse & gnmmanage in gdal-bin package. - -- Bas Couwenberg Fri, 14 Apr 2017 11:25:30 +0200 + -- Bas Couwenberg Fri, 14 Apr 2017 14:52:26 +0200 gdal (2.1.3+dfsg-1~exp4) experimental; urgency=medium -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] annotated tag upstream/2.2.0_beta1+dfsg created (now 735d178)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to annotated tag upstream/2.2.0_beta1+dfsg in repository gdal. at 735d178 (tag) tagging 91475de60a39245e1018b23c30e4b45eb86e4d76 (commit) replaces upstream/2.1.3+dfsg tagged by Bas Couwenberg on Fri Apr 14 11:12:34 2017 +0200 - Log - Upstream version 2.2.0~beta1+dfsg Bas Couwenberg (1): Imported Upstream version 2.2.0~beta1+dfsg --- No new revisions were added by this update. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal] tag debian/2.2.0.beta1+dfsg-1.exp1 created (now 151108b)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to tag debian/2.2.0.beta1+dfsg-1.exp1 in repository gdal. at 151108b (commit) No new revisions were added by this update. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
Processing of gdal_2.2.0~beta1+dfsg-1~exp1_amd64.changes
gdal_2.2.0~beta1+dfsg-1~exp1_amd64.changes uploaded successfully to localhost along with the files: gdal_2.2.0~beta1+dfsg-1~exp1.dsc gdal_2.2.0~beta1+dfsg.orig.tar.gz gdal_2.2.0~beta1+dfsg-1~exp1.debian.tar.xz gdal-bin-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb gdal-bin_2.2.0~beta1+dfsg-1~exp1_amd64.deb gdal-data_2.2.0~beta1+dfsg-1~exp1_all.deb gdal_2.2.0~beta1+dfsg-1~exp1_amd64.buildinfo libgdal-dev_2.2.0~beta1+dfsg-1~exp1_amd64.deb libgdal-doc_2.2.0~beta1+dfsg-1~exp1_all.deb libgdal-java-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb libgdal-java_2.2.0~beta1+dfsg-1~exp1_amd64.deb libgdal-perl-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb libgdal-perl_2.2.0~beta1+dfsg-1~exp1_amd64.deb libgdal20-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb libgdal20_2.2.0~beta1+dfsg-1~exp1_amd64.deb python-gdal-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb python-gdal_2.2.0~beta1+dfsg-1~exp1_amd64.deb python3-gdal-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb python3-gdal_2.2.0~beta1+dfsg-1~exp1_amd64.deb Greetings, Your Debian queue daemon (running on host usper.debian.org) ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
gdal_2.2.0~beta1+dfsg-1~exp1_amd64.changes is NEW
binary:gdal-data is NEW. binary:gdal-data is NEW. Your package has been put into the NEW queue, which requires manual action from the ftpteam to process. The upload was otherwise valid (it had a good OpenPGP signature and file hashes are valid), so please be patient. Packages are routinely processed through to the archive, and do feel free to browse the NEW queue[1]. If there is an issue with the upload, you will receive an email from a member of the ftpteam. If you have any questions, you may reply to this email. [1]: https://ftp-master.debian.org/new.html or https://ftp-master.debian.org/backports-new.html for *-backports ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal-grass] 01/01: pristine-tar data for libgdal-grass_2.2.0~beta1.orig.tar.gz
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch pristine-tar in repository gdal-grass. commit 1b7db89fbbdef83bcfa472e18ddf84a69d5574e4 Author: Bas Couwenberg Date: Fri Apr 14 17:22:32 2017 +0200 pristine-tar data for libgdal-grass_2.2.0~beta1.orig.tar.gz --- libgdal-grass_2.2.0~beta1.orig.tar.gz.delta | Bin 0 -> 1148 bytes libgdal-grass_2.2.0~beta1.orig.tar.gz.id| 1 + 2 files changed, 1 insertion(+) diff --git a/libgdal-grass_2.2.0~beta1.orig.tar.gz.delta b/libgdal-grass_2.2.0~beta1.orig.tar.gz.delta new file mode 100644 index 000..74f50b8 Binary files /dev/null and b/libgdal-grass_2.2.0~beta1.orig.tar.gz.delta differ diff --git a/libgdal-grass_2.2.0~beta1.orig.tar.gz.id b/libgdal-grass_2.2.0~beta1.orig.tar.gz.id new file mode 100644 index 000..b150848 --- /dev/null +++ b/libgdal-grass_2.2.0~beta1.orig.tar.gz.id @@ -0,0 +1 @@ +c0820eaf0907e0be58f5c073df4fc3305b7f423b -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal-grass.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal-grass] 01/04: Update branch in gbp.conf & Vcs-Git URL.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal-grass. commit 6fe5c2447ed1eda49d02a8e62c45d317d4aa4299 Author: Bas Couwenberg Date: Fri Apr 14 17:14:58 2017 +0200 Update branch in gbp.conf & Vcs-Git URL. --- debian/control| 2 +- debian/control.in | 2 +- debian/gbp.conf | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/control b/debian/control index b4cf7d6..4f477b6 100644 --- a/debian/control +++ b/debian/control @@ -15,7 +15,7 @@ Build-Depends: debhelper (>= 9), pkg-config Standards-Version: 3.9.8 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/gdal-grass.git -Vcs-Git: https://anonscm.debian.org/git/pkg-grass/gdal-grass.git -b experimental +Vcs-Git: https://anonscm.debian.org/git/pkg-grass/gdal-grass.git -b experimental-2.2 Homepage: http://www.gdal.org/ Package: libgdal-grass diff --git a/debian/control.in b/debian/control.in index 16748e1..7d75e5a 100644 --- a/debian/control.in +++ b/debian/control.in @@ -15,7 +15,7 @@ Build-Depends: debhelper (>= 9), pkg-config Standards-Version: 3.9.8 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/gdal-grass.git -Vcs-Git: https://anonscm.debian.org/git/pkg-grass/gdal-grass.git -b experimental +Vcs-Git: https://anonscm.debian.org/git/pkg-grass/gdal-grass.git -b experimental-2.2 Homepage: http://www.gdal.org/ Package: libgdal-grass diff --git a/debian/gbp.conf b/debian/gbp.conf index 6464eea..1859f61 100644 --- a/debian/gbp.conf +++ b/debian/gbp.conf @@ -2,11 +2,11 @@ # The default name for the upstream branch is "upstream". # Change it if the name is different (for instance, "master"). -upstream-branch = upstream +upstream-branch = upstream-2.2 # The default name for the Debian branch is "master". # Change it if the name is different (for instance, "debian/unstable"). -debian-branch = experimental +debian-branch = experimental-2.2 # git-import-orig uses the following names for the upstream tags. # Change the value if you are not using git-import-orig -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal-grass.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal-grass] branch experimental-2.2 created (now ca66ed9)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch experimental-2.2 in repository gdal-grass. at ca66ed9 New upstream beta release. This branch includes the following new commits: new 6fe5c24 Update branch in gbp.conf & Vcs-Git URL. new 2757bea Imported Upstream version 2.2.0~beta1 new 657d90a Merge tag 'upstream/2.2.0_beta1' into experimental-2.2 new ca66ed9 New upstream beta release. The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal-grass.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal-grass] branch pristine-tar updated (6dc4ac8 -> 1b7db89)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch pristine-tar in repository gdal-grass. from 6dc4ac8 pristine-tar data for libgdal-grass_2.1.3.orig.tar.gz new 1b7db89 pristine-tar data for libgdal-grass_2.2.0~beta1.orig.tar.gz The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: libgdal-grass_2.2.0~beta1.orig.tar.gz.delta | Bin 0 -> 1148 bytes libgdal-grass_2.2.0~beta1.orig.tar.gz.id| 1 + 2 files changed, 1 insertion(+) create mode 100644 libgdal-grass_2.2.0~beta1.orig.tar.gz.delta create mode 100644 libgdal-grass_2.2.0~beta1.orig.tar.gz.id -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal-grass.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal-grass] 02/04: Imported Upstream version 2.2.0~beta1
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal-grass. commit 2757bea279be2968b8ed96c19ef165867cec3256 Author: Bas Couwenberg Date: Fri Apr 14 17:22:32 2017 +0200 Imported Upstream version 2.2.0~beta1 --- README | 18 +- VERSION| 2 +- aclocal.m4 | 16 +- configure.in | 2 +- grass57dataset.cpp | 462 +- ogrgrass.h | 137 ogrgrassdatasource.cpp | 75 ++--- ogrgrassdriver.cpp | 33 +- ogrgrasslayer.cpp | 886 - 9 files changed, 772 insertions(+), 859 deletions(-) diff --git a/README b/README index cd545cd..dfd9f44 100644 --- a/README +++ b/README @@ -2,11 +2,11 @@ Standalone GRASS Drivers for GDAL and OGR = This package contains standalone drivers for GRASS raster and vector -files that can be built after GDAL has been built and installed as an -"autoload" driver. +files that can be built after GDAL has been built and installed as an +"autoload" driver. This is particularly useful in resolving problems with GRASS depending -on GDAL, but GDAL with GRASS support depending on GRASS. With this +on GDAL, but GDAL with GRASS support depending on GRASS. With this package you can configure and install GDAL normally (--without-grass), then build and install GRASS normally and finally build and install this driver. @@ -52,12 +52,12 @@ libraries not found? Answer: -Your problem is likely to be solved by editing /etc/ld.so.conf to -include the locations of proj, gdal, grass, and geos. Specifically, -the full path to both gdal-config and geos-config, and the full paths +Your problem is likely to be solved by editing /etc/ld.so.conf to +include the locations of proj, gdal, grass, and geos. Specifically, +the full path to both gdal-config and geos-config, and the full paths to the library locations of proj (often /usr/local/lib) and grass (/ -usr/local/grass-6.0.1/lib). After editing ld.so.conf, run ldconfig, +usr/local/grass-6.0.1/lib). After editing ld.so.conf, run ldconfig, and you should be good to go. -I ran into this problem this weekend (and posted for help to this -list), so it seems to be a pretty common issue. +I ran into this problem this weekend (and posted for help to this +list), so it seems to be a pretty common issue. diff --git a/VERSION b/VERSION index ac2cdeb..ccbccc3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.3 +2.2.0 diff --git a/aclocal.m4 b/aclocal.m4 index 7bffcf4..ec692bd 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -6,14 +6,14 @@ AC_DEFUN(AC_COMPILER_LOCALHACK, echo 'int main() { int i = 1; if( *((unsigned char *) &i) == 0 ) printf( "BIGENDIAN"); return 0; }' >> conftest.c ${CC} $CPPFLAGS $EXTRA_INCLUDES -o conftest conftest.c 2> comp.out COMP_CHECK=`grep "system directory" comp.out | grep /usr/local/include` - if test -z "$COMP_CHECK" ; then + if test -z "$COMP_CHECK" ; then AC_MSG_RESULT([no, everything is ok]) else AC_MSG_RESULT([yes, stripping extras]) CXXFLAGS=`echo "$CXXFLAGS " | sed "s/-I\/usr\/local\/include //"` CFLAGS=`echo "$CFLAGS " | sed "s/-I\/usr\/local\/include //"` EXTRA_INCLUDES=`echo "$EXTRA_INCLUDES " | sed "s/-I\/usr\/local\/include //"` - fi + fi rm -f comp.out ]) @@ -61,7 +61,7 @@ AC_DEFUN(AC_COMPILER_PIC, dnl dnl Try to find something to link shared libraries with. Use "c++ -shared" dnl in preference to "ld -shared" because it will link in required c++ -dnl run time support for us. +dnl run time support for us. dnl AC_DEFUN(AC_LD_SHARED, [ @@ -84,9 +84,9 @@ AC_DEFUN(AC_LD_SHARED, if test "$with_ld_shared" != "" ; then if test "$with_ld_shared" = "no" ; then - echo "user disabled shared library support." + echo "user disabled shared library support." else - echo "using user supplied .so link command ... $with_ld_shared" + echo "using user supplied .so link command ... $with_ld_shared" fi LD_SHARED="$with_ld_shared" fi @@ -113,7 +113,7 @@ AC_DEFUN(AC_LD_SHARED, fi fi - dnl Test special MacOS (Darwin) case. + dnl Test special MacOS (Darwin) case. if test ! -z "`uname | grep Darwin`" \ -a "$LD_SHARED" = "/bin/true" \ @@ -157,7 +157,7 @@ AC_DEFUN(AC_LD_SHARED, else echo "checking for ${CXX} -shared ... no(2)" fi - else + else if test "$LD_SHARED" = "/bin/true" ; then echo "checking for ${CXX} -shared ... no(1)" fi @@ -195,7 +195,7 @@ AC_DEFUN(AC_LD_SHARED, fi fi - rm -f conftest* libconftest* + rm -f conftest* libconftest* AC_SUBST(LD_SHARED,$LD_SHARED) AC_SUBST(SO_EXT,$SO_EXT) diff --git a/configure.in b/configure.in index ff96173..c9bf951 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl ***
[gdal-grass] 03/04: Merge tag 'upstream/2.2.0_beta1' into experimental-2.2
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal-grass. commit 657d90a93cc6c808e775a7205246aaff031d225c Merge: 6fe5c24 2757bea Author: Bas Couwenberg Date: Fri Apr 14 17:22:32 2017 +0200 Merge tag 'upstream/2.2.0_beta1' into experimental-2.2 Upstream version 2.2.0~beta1 README | 18 +- VERSION| 2 +- aclocal.m4 | 16 +- configure.in | 2 +- grass57dataset.cpp | 462 +- ogrgrass.h | 137 ogrgrassdatasource.cpp | 75 ++--- ogrgrassdriver.cpp | 33 +- ogrgrasslayer.cpp | 886 - 9 files changed, 772 insertions(+), 859 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal-grass.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal-grass] branch upstream-2.2 created (now 2757bea)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch upstream-2.2 in repository gdal-grass. at 2757bea Imported Upstream version 2.2.0~beta1 This branch includes the following new commits: new 2757bea Imported Upstream version 2.2.0~beta1 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal-grass.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal-grass] 04/04: New upstream beta release.
This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch experimental-2.2 in repository gdal-grass. commit ca66ed932d4eba2666482a630ad07688a9d31974 Author: Bas Couwenberg Date: Fri Apr 14 17:24:44 2017 +0200 New upstream beta release. --- debian/changelog | 6 ++ debian/control| 2 +- debian/control.in | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index be84486..0c02c13 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libgdal-grass (2.2.0~beta1-1) UNRELEASED; urgency=medium + + * New upstream beta release. + + -- Bas Couwenberg Fri, 14 Apr 2017 17:22:37 +0200 + libgdal-grass (2.1.3-1~exp2) experimental; urgency=medium * Merge changes from libgdal-grass (2.1.2-5). diff --git a/debian/control b/debian/control index 4f477b6..11ccd35 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 9), d-shlibs, grass (>= 7.2.0), grass-dev (>= 7.2.0), - libgdal-dev (>= 2.1.3), + libgdal-dev (>= 2.2.0~), libproj-dev, libpq-dev, pkg-config diff --git a/debian/control.in b/debian/control.in index 7d75e5a..97238ea 100644 --- a/debian/control.in +++ b/debian/control.in @@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 9), d-shlibs, grass (>= 7.2.0), grass-dev (>= 7.2.0), - libgdal-dev (>= 2.1.3), + libgdal-dev (>= 2.2.0~), libproj-dev, libpq-dev, pkg-config -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal-grass.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
[gdal-grass] annotated tag upstream/2.2.0_beta1 created (now 44454b2)
This is an automated email from the git hooks/post-receive script. sebastic pushed a change to annotated tag upstream/2.2.0_beta1 in repository gdal-grass. at 44454b2 (tag) tagging 2757bea279be2968b8ed96c19ef165867cec3256 (commit) replaces upstream/2.1.3 tagged by Bas Couwenberg on Fri Apr 14 17:22:32 2017 +0200 - Log - Upstream version 2.2.0~beta1 Bas Couwenberg (1): Imported Upstream version 2.2.0~beta1 --- No new revisions were added by this update. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/gdal-grass.git ___ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel
gdal_2.2.0~beta1+dfsg-1~exp1_amd64.changes ACCEPTED into experimental, experimental
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Fri, 14 Apr 2017 14:52:26 +0200 Source: gdal Binary: libgdal20 libgdal-dev libgdal-doc gdal-bin gdal-data python-gdal python3-gdal libgdal-perl libgdal-java Architecture: source amd64 all Version: 2.2.0~beta1+dfsg-1~exp1 Distribution: experimental Urgency: medium Maintainer: Debian GIS Project Changed-By: Bas Couwenberg Description: gdal-bin - Geospatial Data Abstraction Library - Utility programs gdal-data - Geospatial Data Abstraction Library - Data files libgdal-dev - Geospatial Data Abstraction Library - Development files libgdal-doc - Documentation for the Geospatial Data Abstraction Library libgdal-java - Java bindings to the Geospatial Data Abstraction Library libgdal-perl - Perl bindings to the Geospatial Data Abstraction Library libgdal20 - Geospatial Data Abstraction Library python-gdal - Python bindings to the Geospatial Data Abstraction Library python3-gdal - Python 3 bindings to the Geospatial Data Abstraction Library Changes: gdal (2.2.0~beta1+dfsg-1~exp1) experimental; urgency=medium . * New upstream beta release. * Update watch file for 2.2.0 (pre-)releases. * Drop patches applied upstream. Refresh remaining patches. * Move data files to architecture independent gdal-data package. * Update copyright file, changes: - Update copyright years for copyright holders - Add new copyright holders - Add license & copyright for minidriver_mrf.cpp * Enable SOSI support. * Include ogrmerge.py in python-gdal package. * Include gnmanalyse & gnmmanage in gdal-bin package. Checksums-Sha1: 8dec2849337b68956dc57649ff2dec6e73267cba 3364 gdal_2.2.0~beta1+dfsg-1~exp1.dsc 33c16e9f20e3e033ec4fe6d9ec7aa1c9d2f2a626 13878255 gdal_2.2.0~beta1+dfsg.orig.tar.gz e6158ac62554c70480cabf891d592cdb71a77638 151948 gdal_2.2.0~beta1+dfsg-1~exp1.debian.tar.xz fd594a7826d8485121065881b03c489d6fd965b8 589346 gdal-bin-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb c8f68b1d26f731d8e3b5e6225f1e8df8e64f1213 361174 gdal-bin_2.2.0~beta1+dfsg-1~exp1_amd64.deb c2014489960ab30132b26b09967d84b253c0504e 557160 gdal-data_2.2.0~beta1+dfsg-1~exp1_all.deb 09c80d035f1aa18f6243c66339f2be3dc5bf9ad3 16836 gdal_2.2.0~beta1+dfsg-1~exp1_amd64.buildinfo dd11bb2523aa9cbf9953af2d712d0d94d87f5e0e 6812780 libgdal-dev_2.2.0~beta1+dfsg-1~exp1_amd64.deb 279d7af8b645bf5fcb9923f6b4a5076b6731a081 1941976 libgdal-doc_2.2.0~beta1+dfsg-1~exp1_all.deb ecb10a98857571a495107ef0d91a8c1a65e8d31f 760276 libgdal-java-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb 95a3bfc1265318b3e7a3b8bb01abfaad9631d509 438200 libgdal-java_2.2.0~beta1+dfsg-1~exp1_amd64.deb 5cb4c47f0515affe9b87baec2dcc4fad6933e2f2 1119702 libgdal-perl-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb bb4f896df3020045b742bd0728225e59ac5a736d 494646 libgdal-perl_2.2.0~beta1+dfsg-1~exp1_amd64.deb 01eb0506379d4e45af5796907028c22e3e6cc767 38368138 libgdal20-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb 3764810c22a48331edd3cff26f40982d8af2f136 5313928 libgdal20_2.2.0~beta1+dfsg-1~exp1_amd64.deb 00b2473a4819847900fc1e6a72a9985bc97dae64 1143082 python-gdal-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb 0cd04cf18e6bd211775bef011640c6c0f24360e0 743262 python-gdal_2.2.0~beta1+dfsg-1~exp1_amd64.deb bd9422b411f158b169df03ec0bd0149e98901823 1188574 python3-gdal-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb 44e678f9e7912bf78fa6d4eb9909b965cb85a8ec 538192 python3-gdal_2.2.0~beta1+dfsg-1~exp1_amd64.deb Checksums-Sha256: dc09c4d0b5415f0dc577b20dd8b5cc022c0ff4f4833df736412dbc5269abad75 3364 gdal_2.2.0~beta1+dfsg-1~exp1.dsc b0edb1c7e7912bc11e282fbb8fdad5a3de28d0db1ce14584bec5510a38458b88 13878255 gdal_2.2.0~beta1+dfsg.orig.tar.gz c4ec36433dff8f756363d61336a69e7c158839861f96e392b7a875435ef3c490 151948 gdal_2.2.0~beta1+dfsg-1~exp1.debian.tar.xz a9464bf1c495ee4ae35cca8b93f2fa63e8e7a5768437de16d0aa4accc9948a1b 589346 gdal-bin-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb 74efa7b678ee2584f6ae6292013d64a33a77c85c00c1250ba9fcb54ada91fa4f 361174 gdal-bin_2.2.0~beta1+dfsg-1~exp1_amd64.deb 6704ced807d993def12e76176567786dc38502afb0f68c85df8afe53f43782ff 557160 gdal-data_2.2.0~beta1+dfsg-1~exp1_all.deb 7387146fc4e8a50d6d8d9e9cac040403020aa3228be65b53cb4db4caf18d3860 16836 gdal_2.2.0~beta1+dfsg-1~exp1_amd64.buildinfo 609a9f0180f892d95115f6430acad3b8f35c81b97a1d189267ade992d96ccbdd 6812780 libgdal-dev_2.2.0~beta1+dfsg-1~exp1_amd64.deb a80befa9f43d94c40e6c07597d4274a44b1c58600c3da944388c977c580059cc 1941976 libgdal-doc_2.2.0~beta1+dfsg-1~exp1_all.deb 706c9954fe3efb4526d4da6636253e08edd4e2c3e172fe65e021199819ae7c3f 760276 libgdal-java-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb 66092525b876ffa51ccca586083ba05d7dd8f9e037050e0723496bab8e04a226 438200 libgdal-java_2.2.0~beta1+dfsg-1~exp1_amd64.deb 03a1c8a45e2a7e08db4dd93d3ec8296a41e44361028d2252739e3158f470bf18 1119702 libgdal-perl-dbgsym_2.2.0~beta1+dfsg-1~exp1_amd64.deb 69ab2d1c488544a33c8a93ae1b20b75e772d01d6cc6f50c9b022fb0884cc0b37 494646