libosmium 2.6.0-1 MIGRATED to testing

2016-02-12 Thread Debian testing watch
FYI: The status of the libosmium source package
in Debian's testing distribution has changed.

  Previous version: 2.5.4-1
  Current version:  2.6.0-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


pyosmium 2.6.0-1 MIGRATED to testing

2016-02-12 Thread Debian testing watch
FYI: The status of the pyosmium source package
in Debian's testing distribution has changed.

  Previous version: 2.5.4-1
  Current version:  2.6.0-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[otb] 05/07: Add patch to support both ITK 4.8 and ITK 4.9.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository otb.

commit 7c6660d8c017d34e085c18b1299fe650b38d13e8
Author: Bas Couwenberg 
Date:   Fri Feb 12 17:41:20 2016 +0100

Add patch to support both ITK 4.8 and ITK 4.9.
---
 debian/changelog |  1 +
 debian/patches/itk-4.8-4.9.patch | 56 
 debian/patches/series|  1 +
 3 files changed, 58 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 22c8639..ddbdaa0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ otb (5.2.1+dfsg-1) UNRELEASED; urgency=medium
   * Fix 'existing' typo in package description.
   * Add patch for various spelling errors.
   * Update symbols for amd64.
+  * Add patch to support both ITK 4.8 and ITK 4.9.
 
  -- Bas Couwenberg   Thu, 11 Feb 2016 21:20:55 +0100
 
diff --git a/debian/patches/itk-4.8-4.9.patch b/debian/patches/itk-4.8-4.9.patch
new file mode 100644
index 000..2ed0984
--- /dev/null
+++ b/debian/patches/itk-4.8-4.9.patch
@@ -0,0 +1,56 @@
+Description: Support both ITK 4.8 and ITK 4.9.
+Author: Bas Couwenberg 
+Bug: https://bugs.orfeo-toolbox.org/view.php?id=1142
+
+--- a/Modules/Core/Common/include/otbConfigurationManager.h
 b/Modules/Core/Common/include/otbConfigurationManager.h
+@@ -18,7 +18,11 @@
+ #ifndef _otbConfigurationManager_h
+ #define _otbConfigurationManager_h
+ 
++#if ITK_VERSION_MAJOR < 4 || (ITK_VERSION_MAJOR == 4 && ITK_VERSION_MINOR <= 
8)
++#include "itksys/FundamentalType.h"
++#else
+ #include "itk_kwiml.h"
++#endif
+ 
+ #include 
+ #include 
+@@ -38,7 +42,11 @@ namespace otb
+ class ConfigurationManager
+ {
+ public:
++#if ITK_VERSION_MAJOR < 4 || (ITK_VERSION_MAJOR == 4 && ITK_VERSION_MINOR <= 
8)
++  typedef ::itksysFundamentalType_UInt64 RAMValueType;
++#else
+   typedef KWIML_INT_uint64_t RAMValueType;
++#endif
+ 
+   /**
+* DEMDirectory is a directory were DEM tiles are stored. 
+--- a/Modules/Core/Streaming/include/otbPipelineMemoryPrintCalculator.h
 b/Modules/Core/Streaming/include/otbPipelineMemoryPrintCalculator.h
+@@ -19,7 +19,11 @@
+ #define __otbPipelineMemoryPrintCalculator_h
+ 
+ #include "itkProcessObject.h"
++#if ITK_VERSION_MAJOR < 4 || (ITK_VERSION_MAJOR == 4 && ITK_VERSION_MINOR <= 
8)
++#include "itksys/FundamentalType.h"
++#else
+ #include "itk_kwiml.h"
++#endif
+ #include 
+ 
+ namespace otb
+@@ -75,7 +79,11 @@ public:
+   typedef ProcessObjectType::Pointer  ProcessObjectPointerType;
+   typedef itk::DataObject DataObjectType;
+   typedef DataObjectType::Pointer DataObjectPointerType;
++#if ITK_VERSION_MAJOR < 4 || (ITK_VERSION_MAJOR == 4 && ITK_VERSION_MINOR <= 
8)
++  typedef ::itksysFundamentalType_UInt64  MemoryPrintType;
++#else
+   typedef KWIML_INT_uint64_t  MemoryPrintType;
++#endif
+   typedef std::set ProcessObjectPointerSetType;
+ 
+   /** Run-time type information (and related methods). */
diff --git a/debian/patches/series b/debian/patches/series
index be86988..0b7ba31 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 0001-BUG-OTB-5.2-not-compatible-with-ITK-4.9-mantis-1142.patch
 spelling-errors.patch
+itk-4.8-4.9.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/otb.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


[otb] branch master updated (9423bf1 -> 603a6b6)

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository otb.

  from  9423bf1   Drop patches, applied upstream.
   new  ce40360   Add upstream patch to fix FTBFS with ITK 4.9.0.
   new  3a046e4   Fix 'existing' typo in package description.
   new  7ab65e3   Add patch for various spelling errors.
   new  3c012a7   Update symbols for amd64.
   new  7c6660d   Add patch to support both ITK 4.8 and ITK 4.9.
   new  8fb1c37   Update symbols for i386 (with ITK 4.8).
   new  603a6b6   Drop missing symbols.

The 7 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/changelog   |5 +
 debian/control |2 +-
 debian/control.in  |2 +-
 debian/libotbapplicationengine-5.2-1.symbols   | 1389 
 debian/libotbcarto-5.2-1.symbols   |   88 +-
 debian/libotbcommandline-5.2-1.symbols |   45 +-
 debian/libotbcommandlineparser-5.2-1.symbols   |   44 +-
 debian/libotbcommon-5.2-1.symbols  |   59 +-
 debian/libotbcurladapters-5.2-1.symbols|   30 +-
 debian/libotbedge-5.2-1.symbols|   39 +-
 debian/libotbextendedfilename-5.2-1.symbols|   40 +-
 debian/libotbfuzzy-5.2-1.symbols   |   16 +-
 debian/libotbgdaladapters-5.2-1.symbols|   65 +-
 debian/libotbimagebase-5.2-1.symbols   |   34 +-
 debian/libotbimagemanipulation-5.2-1.symbols   |4 +-
 debian/libotbiobsq-5.2-1.symbols   |   19 +-
 debian/libotbiogdal-5.2-1.symbols  |   58 +-
 debian/libotbiokml-5.2-1.symbols   |   82 +-
 debian/libotbiolum-5.2-1.symbols   |   19 +-
 debian/libotbiomstar-5.2-1.symbols |   12 +-
 debian/libotbiomw-5.2-1.symbols|   13 +-
 debian/libotbioonera-5.2-1.symbols |   12 +-
 debian/libotbiorad-5.2-1.symbols   |   20 +-
 debian/libotbiotilemap-5.2-1.symbols   |   27 +-
 debian/libotbmathparser-5.2-1.symbols  |   13 +-
 debian/libotbmetadata-5.2-1.symbols|  100 +-
 debian/libotbossimadapters-5.2-1.symbols   |   47 +-
 debian/libotbossimplugins-5.2-1.symbols|   67 +-
 debian/libotbpolarimetry-5.2-1.symbols |4 +-
 debian/libotbprojection-5.2-1.symbols  |   38 +-
 debian/libotbqtwidget-5.2-1.symbols|  101 +-
 debian/libotbrcc8-5.2-1.symbols|4 +-
 debian/libotbsiftfast-5.2-1.symbols|   11 +-
 debian/libotbstreaming-5.2-1.symbols   |9 +-
 debian/libotbsupervised-5.2-1.symbols  |5 +-
 debian/libotbtestkernel-5.2-1.symbols  |  181 +--
 debian/libotbtransform-5.2-1.symbols   |8 +-
 debian/libotbvectordatabase-5.2-1.symbols  |   22 +-
 debian/libotbwavelet-5.2-1.symbols |3 +-
 debian/manpages/otbcli_SARPolarMatrixConvert.1 |2 +-
 debian/manpages/otbgui_SARPolarMatrixConvert.1 |2 +-
 ...2-not-compatible-with-ITK-4.9-mantis-1142.patch |   52 +
 debian/patches/itk-4.8-4.9.patch   |   56 +
 debian/patches/series  |3 +
 debian/patches/spelling-errors.patch   |  258 
 45 files changed, 825 insertions(+), 2285 deletions(-)
 create mode 100644 
debian/patches/0001-BUG-OTB-5.2-not-compatible-with-ITK-4.9-mantis-1142.patch
 create mode 100644 debian/patches/itk-4.8-4.9.patch
 create mode 100644 debian/patches/series
 create mode 100644 debian/patches/spelling-errors.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/otb.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


[otb] 02/07: Fix 'existing' typo in package description.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository otb.

commit 3a046e4ff06d15132a0f263401978ad27831b6df
Author: Bas Couwenberg 
Date:   Fri Feb 12 15:36:49 2016 +0100

Fix 'existing' typo in package description.
---
 debian/changelog  | 1 +
 debian/control| 2 +-
 debian/control.in | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index f60b08c..aa2cb61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ otb (5.2.1+dfsg-1) UNRELEASED; urgency=medium
   * Update watch file to use orfeo-toolbox.org.
   * Drop patches, applied upstream.
   * Add upstream patch to fix FTBFS with ITK 4.9.0.
+  * Fix 'existing' typo in package description.
 
  -- Bas Couwenberg   Thu, 11 Feb 2016 21:20:55 +0100
 
diff --git a/debian/control b/debian/control
index cc22e2d..ae35bd0 100644
--- a/debian/control
+++ b/debian/control
@@ -757,7 +757,7 @@ Description: ORFEO Toolbox Python API for applications
  in general and for high spatial resolution images in particular.
  .
  This package contains the Python API that can be used to create Python
- versions of exisiting OTB applications provided by the libotb-apps package.
+ versions of existing OTB applications provided by the libotb-apps package.
 
 Package: libotb
 Architecture: any
diff --git a/debian/control.in b/debian/control.in
index 177537d..0f8490f 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -757,7 +757,7 @@ Description: ORFEO Toolbox Python API for applications
  in general and for high spatial resolution images in particular.
  .
  This package contains the Python API that can be used to create Python
- versions of exisiting OTB applications provided by the libotb-apps package.
+ versions of existing OTB applications provided by the libotb-apps package.
 
 Package: libotb
 Architecture: any

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/otb.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


[otb] 03/07: Add patch for various spelling errors.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository otb.

commit 7ab65e3bc43f0935e77a794e3b9bdd95806e403d
Author: Bas Couwenberg 
Date:   Fri Feb 12 16:03:51 2016 +0100

Add patch for various spelling errors.
---
 debian/changelog   |   1 +
 debian/manpages/otbcli_SARPolarMatrixConvert.1 |   2 +-
 debian/manpages/otbgui_SARPolarMatrixConvert.1 |   2 +-
 debian/patches/series  |   1 +
 debian/patches/spelling-errors.patch   | 258 +
 5 files changed, 262 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index aa2cb61..13617ce 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -7,6 +7,7 @@ otb (5.2.1+dfsg-1) UNRELEASED; urgency=medium
   * Drop patches, applied upstream.
   * Add upstream patch to fix FTBFS with ITK 4.9.0.
   * Fix 'existing' typo in package description.
+  * Add patch for various spelling errors.
 
  -- Bas Couwenberg   Thu, 11 Feb 2016 21:20:55 +0100
 
diff --git a/debian/manpages/otbcli_SARPolarMatrixConvert.1 
b/debian/manpages/otbcli_SARPolarMatrixConvert.1
index 42e3508..17c5710 100644
--- a/debian/manpages/otbcli_SARPolarMatrixConvert.1
+++ b/debian/manpages/otbcli_SARPolarMatrixConvert.1
@@ -36,7 +36,7 @@ Complete documentation: 
http://www.orfeo\-toolbox.org/Applications/SARPolarMatri
  [pixel] Output Real Image  
[pixel=uint8/uint16/int16/uint32/int32/float/double] (default value is float) 
(optional, off by default)
 .TP
 \fB\-conv\fR
- Convertion [msinclairtocoherency
+ Conversion [msinclairtocoherency
 msinclairtocovariance
 msinclairtocircovariance
 mcoherencytomueller
diff --git a/debian/manpages/otbgui_SARPolarMatrixConvert.1 
b/debian/manpages/otbgui_SARPolarMatrixConvert.1
index f8a6620..8248f12 100644
--- a/debian/manpages/otbgui_SARPolarMatrixConvert.1
+++ b/debian/manpages/otbgui_SARPolarMatrixConvert.1
@@ -37,7 +37,7 @@ Report progress
  [pixel] Output Real Image  
[pixel=uint8/uint16/int16/uint32/int32/float/double] (default value is float) 
(optional, off by default)
 .TP
 \fB\-conv\fR
- Convertion [msinclairtocoherency
+ Conversion [msinclairtocoherency
 msinclairtocovariance
 msinclairtocircovariance
 mcoherencytomueller
diff --git a/debian/patches/series b/debian/patches/series
index 017abf7..be86988 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 0001-BUG-OTB-5.2-not-compatible-with-ITK-4.9-mantis-1142.patch
+spelling-errors.patch
diff --git a/debian/patches/spelling-errors.patch 
b/debian/patches/spelling-errors.patch
new file mode 100644
index 000..5632729
--- /dev/null
+++ b/debian/patches/spelling-errors.patch
@@ -0,0 +1,258 @@
+Description: Fix spelling errors.
+ convertion -> conversion
+ differents -> different
+ intepreted -> interpreted
+ accross-> across
+ mulitple   -> multiple
+Author: Bas Couwenberg 
+Forwarded: https://bugs.orfeo-toolbox.org/view.php?id=1143
+
+--- a/Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx
 b/Modules/Adapters/GdalAdapters/src/otbOGRGeometryWrapper.cxx
+@@ -27,7 +27,7 @@
+ #endif
+ 
+ #ifdef _MSC_VER
+-// warning convertion int -> bool
++// warning conversion int -> bool
+ #pragma warning ( disable : 4800 )
+ #endif
+ 
/*===*/
+--- 
a/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx
 
b/Modules/Applications/AppSARPolarMatrixConvert/app/otbSARPolarMatrixConvert.cxx
+@@ -264,7 +264,7 @@ private:
+ 
+ 
+ 
+-AddParameter(ParameterType_Choice, "conv", "Convertion");
++AddParameter(ParameterType_Choice, "conv", "Conversion");
+ 
+ //Monostatic case 
+ 
+--- a/Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx
 b/Modules/Applications/AppVectorUtils/app/otbOSMDownloader.cxx
+@@ -56,7 +56,7 @@ private:
+ SetDocLongDescription("Generate a vector data from Open Street Map data. 
A DEM could be use. By default, the entire layer is downloaded, an image can be 
use as support for the OSM data. The application can provide also available 
classes in layers . This application required an Internet access. Information 
about the OSM project : http://www.openstreetmap.fr/;);
+ SetDocLimitations("None");
+ SetDocAuthors("OTB-Team");
+-SetDocSeeAlso("Convertion");
++SetDocSeeAlso("Conversion");
+ 
+ AddDocTag(Tags::Meta);
+ 
+--- a/Modules/Core/Common/include/otbRGBAPixelConverter.h
 b/Modules/Core/Common/include/otbRGBAPixelConverter.h
+@@ -30,7 +30,7 @@ namespace otb
+  * \brief Convert an itk::RGBApixel into another pixel
+  * type
+  *
+- * To be usable, the desired convertion must be implemented through
++ * To be usable, the desired conversion must be implemented through
+  * partial specialisation mecanism.
+  *
+  *
+--- 

[libosmium] 01/02: Merge tag 'debian/2.6.0-1' into jessie-backports

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch jessie-backports
in repository libosmium.

commit ba17c002f1352a7ec312eb8d7b9f6d53f5301085
Merge: 9259177 cc307a7
Author: Bas Couwenberg 
Date:   Fri Feb 12 19:22:08 2016 +0100

Merge tag 'debian/2.6.0-1' into jessie-backports

Conflicts:
debian/changelog
debian/control

 CHANGELOG.md   |   29 +-
 CMakeLists.txt |8 +-
 debian/changelog   |8 +
 debian/control |2 +-
 debian/copyright   |2 +-
 include/osmium/area/assembler.hpp  |4 +-
 include/osmium/area/detail/node_ref_segment.hpp|2 +-
 include/osmium/area/detail/proto_ring.hpp  |2 +-
 include/osmium/area/detail/segment_list.hpp|2 +-
 include/osmium/area/multipolygon_collector.hpp |2 +-
 include/osmium/area/problem_reporter.hpp   |2 +-
 include/osmium/area/problem_reporter_exception.hpp |2 +-
 include/osmium/area/problem_reporter_ogr.hpp   |2 +-
 include/osmium/area/problem_reporter_stream.hpp|2 +-
 include/osmium/builder/attr.hpp|  877 ++
 include/osmium/builder/builder.hpp |2 +-
 include/osmium/builder/builder_helper.hpp  |   21 +-
 include/osmium/builder/osm_object_builder.hpp  |   14 +-
 include/osmium/diff_handler.hpp|2 +-
 include/osmium/diff_iterator.hpp   |2 +-
 include/osmium/diff_visitor.hpp|2 +-
 include/osmium/dynamic_handler.hpp |2 +-
 include/osmium/experimental/flex_reader.hpp|2 +-
 include/osmium/fwd.hpp |2 +-
 include/osmium/geom/coordinates.hpp|2 +-
 include/osmium/geom/factory.hpp|2 +-
 include/osmium/geom/geojson.hpp|2 +-
 include/osmium/geom/geos.hpp   |2 +-
 include/osmium/geom/haversine.hpp  |2 +-
 include/osmium/geom/mercator_projection.hpp|2 +-
 include/osmium/geom/ogr.hpp|2 +-
 include/osmium/geom/projection.hpp |   45 +-
 include/osmium/geom/rapid_geojson.hpp  |2 +-
 include/osmium/geom/relations.hpp  |2 +-
 include/osmium/geom/tile.hpp   |2 +-
 include/osmium/geom/util.hpp   |2 +-
 include/osmium/geom/wkb.hpp|2 +-
 include/osmium/geom/wkt.hpp|2 +-
 include/osmium/handler.hpp |2 +-
 include/osmium/handler/chain.hpp   |2 +-
 include/osmium/handler/check_order.hpp |  136 +
 include/osmium/handler/disk_store.hpp  |2 +-
 include/osmium/handler/dump.hpp|2 +-
 include/osmium/handler/node_locations_for_ways.hpp |2 +-
 include/osmium/handler/object_relations.hpp|2 +-
 include/osmium/index/bool_vector.hpp   |2 +-
 include/osmium/index/detail/create_map_with_fd.hpp |2 +-
 include/osmium/index/detail/mmap_vector_anon.hpp   |2 +-
 include/osmium/index/detail/mmap_vector_base.hpp   |2 +-
 include/osmium/index/detail/mmap_vector_file.hpp   |2 +-
 include/osmium/index/detail/tmpfile.hpp|2 +-
 include/osmium/index/detail/vector_map.hpp |2 +-
 include/osmium/index/detail/vector_multimap.hpp|2 +-
 include/osmium/index/index.hpp |2 +-
 include/osmium/index/map.hpp   |2 +-
 include/osmium/index/map/all.hpp   |2 +-
 include/osmium/index/map/dense_file_array.hpp  |2 +-
 include/osmium/index/map/dense_mem_array.hpp   |2 +-
 include/osmium/index/map/dense_mmap_array.hpp  |2 +-
 include/osmium/index/map/dummy.hpp |2 +-
 include/osmium/index/map/sparse_file_array.hpp |2 +-
 include/osmium/index/map/sparse_mem_array.hpp  |2 +-
 include/osmium/index/map/sparse_mem_map.hpp|2 +-
 include/osmium/index/map/sparse_mem_table.hpp  |2 +-
 include/osmium/index/map/sparse_mmap_array.hpp |2 +-
 include/osmium/index/multimap.hpp  |2 +-
 include/osmium/index/multimap/all.hpp  |2 +-
 include/osmium/index/multimap/hybrid.hpp   |2 +-
 .../osmium/index/multimap/sparse_file_array.hpp|2 +-
 include/osmium/index/multimap/sparse_mem_array.hpp |2 +-
 .../osmium/index/multimap/sparse_mem_multimap.hpp  |2 +-
 .../osmium/index/multimap/sparse_mmap_array.hpp|2 +-
 include/osmium/index/node_locations_map.hpp|2 +-
 include/osmium/io/any_compression.hpp  

[pyosmium] tag debian/2.6.0-1.bpo8+1 created (now e04a7c1)

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/2.6.0-1.bpo8+1
in repository pyosmium.

at  e04a7c1   (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/pyosmium.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] 04/04: Set distribution to experimental.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.0
in repository gdal.

commit 3ab0c87796724764042a0054fb0005919ff1fe77
Author: Bas Couwenberg 
Date:   Fri Feb 12 19:42:14 2016 +0100

Set distribution to experimental.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 05f8342..8ffd3c2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-gdal (2.0.2+dfsg-1) UNRELEASED; urgency=medium
+gdal (2.0.2+dfsg-1~exp1) experimental; urgency=medium
 
   * New upstream release.
   * Drop hardening patch, applied upstream. Refresh remaining patches.
@@ -6,7 +6,7 @@ gdal (2.0.2+dfsg-1) UNRELEASED; urgency=medium
   * Add upstream patch to fix crash with SQLite 3.10.0.
   * Enable parallel builds.
 
- -- Bas Couwenberg   Mon, 01 Feb 2016 17:13:48 +0100
+ -- Bas Couwenberg   Fri, 12 Feb 2016 19:41:57 +0100
 
 gdal (2.0.1+dfsg-1~exp1) 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] 03/04: Enable parallel builds.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.0
in repository gdal.

commit 0d8e70517c6924d4dae8a495ab4b52659b39fd39
Author: Bas Couwenberg 
Date:   Fri Feb 12 19:41:54 2016 +0100

Enable parallel builds.
---
 debian/changelog | 1 +
 debian/rules | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 76ad2cf..05f8342 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ gdal (2.0.2+dfsg-1) UNRELEASED; urgency=medium
   * Drop hardening patch, applied upstream. Refresh remaining patches.
   * Add patches for various typos.
   * Add upstream patch to fix crash with SQLite 3.10.0.
+  * Enable parallel builds.
 
  -- Bas Couwenberg   Mon, 01 Feb 2016 17:13:48 +0100
 
diff --git a/debian/rules b/debian/rules
index 18b2fcf..e267174 100755
--- a/debian/rules
+++ b/debian/rules
@@ -64,7 +64,7 @@ gdal-mrsid-dist:
 
 %:
if [ "$@" != "gdal-grass" -a "$@" != "gdal-ecw" -a "$@" != "gdal-mrsid" 
]; then \
-   dh $@ --with autotools_dev,autoreconf,python2,python3 ; \
+   dh $@ --with autotools_dev,autoreconf,python2,python3 
--parallel ; \
fi
 
 override_dh_clean:

-- 
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/04: Mark patches as Forwarded: not-needed.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.0
in repository gdal.

commit 879b42a9c6caa6465f96f73441ecd9ccc94e06cf
Author: Bas Couwenberg 
Date:   Fri Feb 12 19:39:11 2016 +0100

Mark patches as Forwarded: not-needed.
---
 debian/patches/existence-typo.patch  | 1 +
 debian/patches/instantiate-typo.patch| 1 +
 debian/patches/outputting-typo.patch | 1 +
 debian/patches/perl-vendor   | 2 +-
 debian/patches/position-typo.patch   | 1 +
 debian/patches/responsibility-typo.patch | 1 +
 debian/patches/retrieve-typo.patch   | 1 +
 debian/patches/supported-typo.patch  | 1 +
 debian/patches/transform-typo.patch  | 1 +
 9 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/debian/patches/existence-typo.patch 
b/debian/patches/existence-typo.patch
index fa79629..7cf01d3 100644
--- a/debian/patches/existence-typo.patch
+++ b/debian/patches/existence-typo.patch
@@ -1,5 +1,6 @@
 Description: Fix 'existance' typo, replace with 'existence'.
 Author: Bas Couwenberg 
+Forwarded: not-needed
 
 --- a/frmts/vrt/vrtdataset.h
 +++ b/frmts/vrt/vrtdataset.h
diff --git a/debian/patches/instantiate-typo.patch 
b/debian/patches/instantiate-typo.patch
index a7dad75..6c68879 100644
--- a/debian/patches/instantiate-typo.patch
+++ b/debian/patches/instantiate-typo.patch
@@ -1,5 +1,6 @@
 Description: Fix 'instanciate' typo, replace with 'instantiate'.
 Author: Bas Couwenberg 
+Forwarded: not-needed
 
 --- a/NEWS
 +++ b/NEWS
diff --git a/debian/patches/outputting-typo.patch 
b/debian/patches/outputting-typo.patch
index f80ce39..3c239dc 100644
--- a/debian/patches/outputting-typo.patch
+++ b/debian/patches/outputting-typo.patch
@@ -1,5 +1,6 @@
 Description: Fix 'outputing' typo, replace with 'outputting'.
 Author: Bas Couwenberg 
+Forwarded: not-needed
 
 --- a/NEWS
 +++ b/NEWS
diff --git a/debian/patches/perl-vendor b/debian/patches/perl-vendor
index abfd771..a157472 100644
--- a/debian/patches/perl-vendor
+++ b/debian/patches/perl-vendor
@@ -1,6 +1,6 @@
 Description: pass INSTALLDIRS=vendor to Makefile.PL to get stuff into the 
right place
 Origin: vendor
-Forwarded: no
+Forwarded: not-needed
 Author: gregor herrmann 
 Last-Update: 2014-07-08
 
diff --git a/debian/patches/position-typo.patch 
b/debian/patches/position-typo.patch
index 900dfb6..0e7b440 100644
--- a/debian/patches/position-typo.patch
+++ b/debian/patches/position-typo.patch
@@ -1,5 +1,6 @@
 Description: Fix 'postion' typo, replace with 'position'.
 Author: Bas Couwenberg 
+Forwarded: not-needed
 
 --- a/apps/ogr_utilities.dox
 +++ b/apps/ogr_utilities.dox
diff --git a/debian/patches/responsibility-typo.patch 
b/debian/patches/responsibility-typo.patch
index f352cd2..b4904e5 100644
--- a/debian/patches/responsibility-typo.patch
+++ b/debian/patches/responsibility-typo.patch
@@ -1,5 +1,6 @@
 Description: Fix 'responsiblity' typo, replace with 'responsibility'.
 Author: Bas Couwenberg 
+Forwarded: not-needed
 
 --- a/ogr/ogr_srsnode.cpp
 +++ b/ogr/ogr_srsnode.cpp
diff --git a/debian/patches/retrieve-typo.patch 
b/debian/patches/retrieve-typo.patch
index c1e1ebb..fb71de0 100644
--- a/debian/patches/retrieve-typo.patch
+++ b/debian/patches/retrieve-typo.patch
@@ -1,5 +1,6 @@
 Description: Fix 'retrive' typo, replace with 'retrieve'.
 Author: Bas Couwenberg 
+Forwarded: not-needed
 
 --- a/frmts/raw/ehdrdataset.cpp
 +++ b/frmts/raw/ehdrdataset.cpp
diff --git a/debian/patches/supported-typo.patch 
b/debian/patches/supported-typo.patch
index 503072f..181af2f 100644
--- a/debian/patches/supported-typo.patch
+++ b/debian/patches/supported-typo.patch
@@ -1,5 +1,6 @@
 Description: Fix 'suported' typo, replace with 'supported'.
 Author: Bas Couwenberg 
+Forwarded: not-needed
 
 --- a/configure.in
 +++ b/configure.in
diff --git a/debian/patches/transform-typo.patch 
b/debian/patches/transform-typo.patch
index 7cfc7ea..c9e983b 100644
--- a/debian/patches/transform-typo.patch
+++ b/debian/patches/transform-typo.patch
@@ -1,5 +1,6 @@
 Description: Fix 'tranform' typo, replace with 'transform'.
 Author: Bas Couwenberg 
+Forwarded: not-needed
 
 --- a/NEWS
 +++ b/NEWS

-- 
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


pyosmium_2.6.0-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports

2016-02-12 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 12 Feb 2016 19:52:40 +0100
Source: pyosmium
Binary: python-pyosmium python3-pyosmium pyosmium-doc
Architecture: source amd64 all
Version: 2.6.0-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 pyosmium-doc - Osmium library bindings for Python - Documentation
 python-pyosmium - Osmium library bindings for Python
 python3-pyosmium - Osmium library bindings for Python 3
Changes:
 pyosmium (2.6.0-1~bpo8+1) jessie-backports; urgency=medium
 .
   * Rebuild for jessie-backports.
 .
 pyosmium (2.6.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * Update Vcs-Git URL to use HTTPS.
   * Bump minimum required libosmium2-dev to 2.6.0.
   * Update copyright file, update years for Sarah Hoffmann.
   * Add patch to fix 'allows one to' typo.
   * Update lintian override for renamed modules.
Checksums-Sha1:
 8d3cc323f11010033bc1f555d37ae301d4c26cfa 2351 pyosmium_2.6.0-1~bpo8+1.dsc
 b0282fcb9941161f58e726c56b5ad7e976d07208 4664 
pyosmium_2.6.0-1~bpo8+1.debian.tar.xz
 ccbf02af332841acf1ce2e84d6ef8201b0d28ad2 384910 
python-pyosmium_2.6.0-1~bpo8+1_amd64.deb
 18225c2b594099c825a930208eff417e366139c4 387536 
python3-pyosmium_2.6.0-1~bpo8+1_amd64.deb
 3abab681356e6d9748088fb94dc58bd57875971d 41950 
pyosmium-doc_2.6.0-1~bpo8+1_all.deb
Checksums-Sha256:
 9120a919a0581b4c123e5857f1663dd0e69efafcdc21a1155c02e159b6f0e8a9 2351 
pyosmium_2.6.0-1~bpo8+1.dsc
 253454925a5ab92f981b0be97a6dbe526024867d5154cbaccd3ee9ccb135aad9 4664 
pyosmium_2.6.0-1~bpo8+1.debian.tar.xz
 b951aeaf1122e6707e910aa58d1ecb770c50983fa30245778df79f45dab3ad18 384910 
python-pyosmium_2.6.0-1~bpo8+1_amd64.deb
 18f92779849948253dd830e5616e0c94b747fab8c5301117d077e9406882b37e 387536 
python3-pyosmium_2.6.0-1~bpo8+1_amd64.deb
 4a6372d9ce520287511fdb799648b777f5342c0ae31362f2de15d67d7064c6bd 41950 
pyosmium-doc_2.6.0-1~bpo8+1_all.deb
Files:
 b53368cb9a681ab0a520c197cc283a46 2351 science optional 
pyosmium_2.6.0-1~bpo8+1.dsc
 93bda2b8a0ed0285c0fc3eed9f521650 4664 science optional 
pyosmium_2.6.0-1~bpo8+1.debian.tar.xz
 0ed7845d7b40d354e850cacd885d25c6 384910 python optional 
python-pyosmium_2.6.0-1~bpo8+1_amd64.deb
 6d4f78d631439685ccb4b22d7a96e112 387536 python optional 
python3-pyosmium_2.6.0-1~bpo8+1_amd64.deb
 6aadc4b8d95a5d23865f796fd0350bc0 41950 doc optional 
pyosmium-doc_2.6.0-1~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWvixVAAoJEGdQ8QrojUrx7wwQAJ2YpVWoBkuj9jtv+ByaI8kU
T25zG+/jklbxvEzhGaiFLin6bAYWiLztkRwcqbDomI6r8gApTDlWamCjyEm9n0HQ
5n5Aj/3CHMKTrKA1YCXuP6NTFEwlhv3QsWArTHpMe8FGGwHFsLFlg8FDYgi3QHO4
mfZWNIH73YqcXczpZWvgs6Y/wJUOydbGRVUDfqSV8MI/4pNXU1YKTsEhzfv0GIlB
ClW9Xi+AqdTFl2CnnDcJo5RkeV5nngsnZLhQt9Sp7sp/jEQTG4wFK0NL2ycELBww
GquMk1dhobxxKPy7fGaDu1IMI8p473W8cDZe7+fLid/zFWqKAoNTpBUNNKdjThqF
MemrYwHr634sA+9cxm0UyjmV2MevN1WnvsJxMwS1fLu9L8XoDdh+s4jQS9s3IIlU
uA7aoOp2Al3iaieV8hn2qu2fnVpWdrhYBKzJ+MOSkkQXMnWrG0g2PG78E2BkGHkC
EfKDW4HGPaktitOWmXjL+QRMMSLE3ZljPLzxrg6c38HA2YUb7p+C8X0Pu8aLxU6o
v2e22FFWsBwDSLrFjdnWajAcb4XAhgq6uxz0pY2f94GU2MbG08kqjztY17IjO9nP
X5hSVtqjnO48jhaDipv8cvlis8Y4JdGN4JILOWHoqXc5OLyKXjLp8bhdAvYjeJ41
iak9aLm9MLbvjQd5SADP
=vt+c
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
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.0.2+dfsg-1.exp1 created (now 3ab0c87)

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/2.0.2+dfsg-1.exp1
in repository gdal.

at  3ab0c87   (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.0.2+dfsg-1~exp1_amd64.changes

2016-02-12 Thread Debian FTP Masters
gdal_2.0.2+dfsg-1~exp1_amd64.changes uploaded successfully to localhost
along with the files:
  gdal_2.0.2+dfsg-1~exp1.dsc
  gdal_2.0.2+dfsg.orig.tar.gz
  gdal_2.0.2+dfsg-1~exp1.debian.tar.xz
  gdal-bin-dbgsym_2.0.2+dfsg-1~exp1_amd64.deb
  gdal-bin_2.0.2+dfsg-1~exp1_amd64.deb
  libgdal-dev_2.0.2+dfsg-1~exp1_amd64.deb
  libgdal-doc_2.0.2+dfsg-1~exp1_all.deb
  libgdal-java-dbgsym_2.0.2+dfsg-1~exp1_amd64.deb
  libgdal-java_2.0.2+dfsg-1~exp1_amd64.deb
  libgdal-perl-dbgsym_2.0.2+dfsg-1~exp1_amd64.deb
  libgdal-perl_2.0.2+dfsg-1~exp1_amd64.deb
  libgdal20-dbgsym_2.0.2+dfsg-1~exp1_amd64.deb
  libgdal20_2.0.2+dfsg-1~exp1_amd64.deb
  python-gdal-dbgsym_2.0.2+dfsg-1~exp1_amd64.deb
  python-gdal_2.0.2+dfsg-1~exp1_amd64.deb
  python3-gdal-dbgsym_2.0.2+dfsg-1~exp1_amd64.deb
  python3-gdal_2.0.2+dfsg-1~exp1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.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


[libosmium] branch jessie-backports updated (9259177 -> 766e18d)

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch jessie-backports
in repository libosmium.

  from  9259177   Rebuild for jessie-backports.
  adds  c40933a   Update Vcs-Git URL to use HTTPS.
  adds  f8edbe7   Add changelog entry for Vcs-Git URL change.
  adds  d54506b   Imported Upstream version 2.6.0
  adds  d10b83c   Merge tag 'upstream/2.6.0'
  adds  c685c8f   New upstream release.
  adds  d63e626   Update copyright file, update years for Jochen Topf.
  adds  cc307a7   Set distribution to unstable.
   new  ba17c00   Merge tag 'debian/2.6.0-1' into jessie-backports
   new  766e18d   Rebuild for jessie-backports.

The 2 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:
 CHANGELOG.md   |   29 +-
 CMakeLists.txt |8 +-
 debian/changelog   |   14 +
 debian/control |2 +-
 debian/copyright   |2 +-
 include/osmium/area/assembler.hpp  |4 +-
 include/osmium/area/detail/node_ref_segment.hpp|2 +-
 include/osmium/area/detail/proto_ring.hpp  |2 +-
 include/osmium/area/detail/segment_list.hpp|2 +-
 include/osmium/area/multipolygon_collector.hpp |2 +-
 include/osmium/area/problem_reporter.hpp   |2 +-
 include/osmium/area/problem_reporter_exception.hpp |2 +-
 include/osmium/area/problem_reporter_ogr.hpp   |2 +-
 include/osmium/area/problem_reporter_stream.hpp|2 +-
 include/osmium/builder/attr.hpp|  877 ++
 include/osmium/builder/builder.hpp |2 +-
 include/osmium/builder/builder_helper.hpp  |   21 +-
 include/osmium/builder/osm_object_builder.hpp  |   14 +-
 include/osmium/diff_handler.hpp|2 +-
 include/osmium/diff_iterator.hpp   |2 +-
 include/osmium/diff_visitor.hpp|2 +-
 include/osmium/dynamic_handler.hpp |2 +-
 include/osmium/experimental/flex_reader.hpp|2 +-
 include/osmium/fwd.hpp |2 +-
 include/osmium/geom/coordinates.hpp|2 +-
 include/osmium/geom/factory.hpp|2 +-
 include/osmium/geom/geojson.hpp|2 +-
 include/osmium/geom/geos.hpp   |2 +-
 include/osmium/geom/haversine.hpp  |2 +-
 include/osmium/geom/mercator_projection.hpp|2 +-
 include/osmium/geom/ogr.hpp|2 +-
 include/osmium/geom/projection.hpp |   45 +-
 include/osmium/geom/rapid_geojson.hpp  |2 +-
 include/osmium/geom/relations.hpp  |2 +-
 include/osmium/geom/tile.hpp   |2 +-
 include/osmium/geom/util.hpp   |2 +-
 include/osmium/geom/wkb.hpp|2 +-
 include/osmium/geom/wkt.hpp|2 +-
 include/osmium/handler.hpp |2 +-
 include/osmium/handler/chain.hpp   |2 +-
 include/osmium/handler/check_order.hpp |  136 +
 include/osmium/handler/disk_store.hpp  |2 +-
 include/osmium/handler/dump.hpp|2 +-
 include/osmium/handler/node_locations_for_ways.hpp |2 +-
 include/osmium/handler/object_relations.hpp|2 +-
 include/osmium/index/bool_vector.hpp   |2 +-
 include/osmium/index/detail/create_map_with_fd.hpp |2 +-
 include/osmium/index/detail/mmap_vector_anon.hpp   |2 +-
 include/osmium/index/detail/mmap_vector_base.hpp   |2 +-
 include/osmium/index/detail/mmap_vector_file.hpp   |2 +-
 include/osmium/index/detail/tmpfile.hpp|2 +-
 include/osmium/index/detail/vector_map.hpp |2 +-
 include/osmium/index/detail/vector_multimap.hpp|2 +-
 include/osmium/index/index.hpp |2 +-
 include/osmium/index/map.hpp   |2 +-
 include/osmium/index/map/all.hpp   |2 +-
 include/osmium/index/map/dense_file_array.hpp  |2 +-
 include/osmium/index/map/dense_mem_array.hpp   |2 +-
 include/osmium/index/map/dense_mmap_array.hpp  |2 +-
 include/osmium/index/map/dummy.hpp |2 +-
 include/osmium/index/map/sparse_file_array.hpp |2 +-
 include/osmium/index/map/sparse_mem_array.hpp  |2 +-
 include/osmium/index/map/sparse_mem_map.hpp|2 +-
 include/osmium/index/map/sparse_mem_table.hpp  |2 +-
 include/osmium/index/map/sparse_mmap_array.hpp |2 +-
 

[libosmium] tag debian/2.6.0-1.bpo8+1 created (now 766e18d)

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/2.6.0-1.bpo8+1
in repository libosmium.

at  766e18d   (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/libosmium.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


[libosmium] 02/02: Rebuild for jessie-backports.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch jessie-backports
in repository libosmium.

commit 766e18da21138e9b79ef562a09070863a69501de
Author: Bas Couwenberg 
Date:   Fri Feb 12 19:22:20 2016 +0100

Rebuild for jessie-backports.
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 64b028e..3bb74a8 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libosmium (2.6.0-1~bpo8+1) jessie-backports; urgency=medium
+
+  * Rebuild for jessie-backports.
+
+ -- Bas Couwenberg   Fri, 12 Feb 2016 19:22:13 +0100
+
 libosmium (2.6.0-1) unstable; urgency=medium
 
   * New upstream release.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/libosmium.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 libosmium_2.6.0-1~bpo8+1_amd64.changes

2016-02-12 Thread Debian FTP Masters
libosmium_2.6.0-1~bpo8+1_amd64.changes uploaded successfully to localhost
along with the files:
  libosmium_2.6.0-1~bpo8+1.dsc
  libosmium_2.6.0-1~bpo8+1.debian.tar.xz
  libosmium2-dev_2.6.0-1~bpo8+1_amd64.deb
  libosmium2-doc_2.6.0-1~bpo8+1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.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


[pyosmium] 02/02: Rebuild for jessie-backports.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch jessie-backports
in repository pyosmium.

commit e04a7c11566d112412c8bcbabb3de3efd7f7b1df
Author: Bas Couwenberg 
Date:   Fri Feb 12 19:52:43 2016 +0100

Rebuild for jessie-backports.
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index e0bd807..f1c1b72 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pyosmium (2.6.0-1~bpo8+1) jessie-backports; urgency=medium
+
+  * Rebuild for jessie-backports.
+
+ -- Bas Couwenberg   Fri, 12 Feb 2016 19:52:40 +0100
+
 pyosmium (2.6.0-1) unstable; urgency=medium
 
   * New upstream release.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pyosmium.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


[pyosmium] 01/02: Merge tag 'debian/2.6.0-1' into jessie-backports

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch jessie-backports
in repository pyosmium.

commit 8b4a5a81c5893a4eac7c7a2e2e0620de008ff90f
Merge: 8e480bc 98d976f
Author: Bas Couwenberg 
Date:   Fri Feb 12 19:52:36 2016 +0100

Merge tag 'debian/2.6.0-1' into jessie-backports

Conflicts:
debian/changelog
debian/control

 CHANGELOG.md  |  19 +-
 README.md |   2 +-
 debian/changelog  |  11 ++
 debian/control|   4 +-
 debian/copyright  |   2 +-
 debian/patches/allows-to-typo.patch   |  14 ++
 debian/patches/series |   1 +
 debian/python-pyosmium.lintian-overrides  |   5 +-
 debian/python3-pyosmium.lintian-overrides |   5 +-
 doc/conf.py   |   6 +-
 doc/intro.rst |  75 +++-
 doc/ref_osm.rst   |  33 +++-
 doc/ref_osmium.rst|  28 ++-
 examples/convert.py   |  37 
 examples/filter_coastlines.py |  56 ++
 examples/normalize_boolean.py |  66 +++
 lib/generic_handler.hpp   |   4 +-
 lib/generic_writer.hpp| 278 ++
 lib/geom.cc   |   2 +-
 lib/index.cc  |   2 +-
 lib/io.cc |   2 +-
 lib/osm.cc|  20 +--
 lib/osmium.cc |  43 -
 osmium/__init__.py|   2 +-
 osmium/geom/__init__.py   |   1 -
 osmium/index/__init__.py  |   1 -
 osmium/io/__init__.py |   1 -
 osmium/osm/__init__.py|  14 ++
 osmium/osm/mutable.py |  75 
 setup.py  |  15 +-
 test/test_osm.py  |  23 ++-
 test/test_writer.py   | 142 +++
 32 files changed, 933 insertions(+), 56 deletions(-)

diff --cc debian/changelog
index 562ca1a,50ad819..e0bd807
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,9 -1,14 +1,20 @@@
+ pyosmium (2.6.0-1) unstable; urgency=medium
+ 
+   * New upstream release.
+   * Update Vcs-Git URL to use HTTPS.
+   * Bump minimum required libosmium2-dev to 2.6.0.
+   * Update copyright file, update years for Sarah Hoffmann.
+   * Add patch to fix 'allows one to' typo.
+   * Update lintian override for renamed modules.
+ 
+  -- Bas Couwenberg   Sat, 06 Feb 2016 20:50:23 +0100
+ 
 +pyosmium (2.5.4-1~bpo8+1) jessie-backports; urgency=medium
 +
 +  * Rebuild for jessie-backports.
 +
 + -- Bas Couwenberg   Fri, 11 Dec 2015 12:27:15 +0100
 +
  pyosmium (2.5.4-1) unstable; urgency=medium
  
* Move from experimental to unstable.
diff --cc debian/control
index ea2b6f8,5e6fecb..44d1dc7
--- a/debian/control
+++ b/debian/control
@@@ -23,7 -23,7 +23,7 @@@ Build-Depends: debhelper (>= 9)
 zlib1g-dev
  Standards-Version: 3.9.6
  Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/pyosmium.git/
- Vcs-Git: git://anonscm.debian.org/pkg-grass/pyosmium.git -b jessie-backports
 -Vcs-Git: https://anonscm.debian.org/git/pkg-grass/pyosmium.git
++Vcs-Git: https://anonscm.debian.org/git/pkg-grass/pyosmium.git -b 
jessie-backports
  Homepage: http://osmcode.org/pyosmium/
  
  Package: python-pyosmium

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pyosmium.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 pyosmium_2.6.0-1~bpo8+1_amd64.changes

2016-02-12 Thread Debian FTP Masters
pyosmium_2.6.0-1~bpo8+1_amd64.changes uploaded successfully to localhost
along with the files:
  pyosmium_2.6.0-1~bpo8+1.dsc
  pyosmium_2.6.0-1~bpo8+1.debian.tar.xz
  python-pyosmium_2.6.0-1~bpo8+1_amd64.deb
  python3-pyosmium_2.6.0-1~bpo8+1_amd64.deb
  pyosmium-doc_2.6.0-1~bpo8+1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.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


libosmium_2.6.0-1~bpo8+1_amd64.changes ACCEPTED into jessie-backports

2016-02-12 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 12 Feb 2016 19:22:13 +0100
Source: libosmium
Binary: libosmium2-dev libosmium2-doc
Architecture: source amd64 all
Version: 2.6.0-1~bpo8+1
Distribution: jessie-backports
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 libosmium2-dev - C++ framework for working with OSM data files
 libosmium2-doc - C++ framework for working with OSM data files - documentation
Changes:
 libosmium (2.6.0-1~bpo8+1) jessie-backports; urgency=medium
 .
   * Rebuild for jessie-backports.
 .
 libosmium (2.6.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * Update Vcs-Git URL to use HTTPS.
   * Update copyright file, update years for Jochen Topf.
Checksums-Sha1:
 420bfa787599b851715793284daad3410aa8f402 2231 libosmium_2.6.0-1~bpo8+1.dsc
 71576c35dcd9a02a5cf6685d9d9c4d71390c2386 5844 
libosmium_2.6.0-1~bpo8+1.debian.tar.xz
 5a8997570b8e59e6bd58814612cb2cee4ce2a036 144824 
libosmium2-dev_2.6.0-1~bpo8+1_amd64.deb
 51d22575653318495387333e452793a846fb3367 38161190 
libosmium2-doc_2.6.0-1~bpo8+1_all.deb
Checksums-Sha256:
 eef57e4efa358937bd44838928759bf621ac20a3fddeb1604ec4422dc783d65c 2231 
libosmium_2.6.0-1~bpo8+1.dsc
 2a6137c811e78b6200eb496f159d885efc4af47f2228886ab8082514e72ac5cd 5844 
libosmium_2.6.0-1~bpo8+1.debian.tar.xz
 b62f491751a9e0acbefb0df2b6af2d1ac68a8c5225f4ae55ba27d6d7e46b6046 144824 
libosmium2-dev_2.6.0-1~bpo8+1_amd64.deb
 b5645b57d7d9caab931a6c9f1c688f73ccd8f5197fd0aa896be501bfba8eca0c 38161190 
libosmium2-doc_2.6.0-1~bpo8+1_all.deb
Files:
 b68e51cfd7321bf47bbc50e20d268fec 2231 science optional 
libosmium_2.6.0-1~bpo8+1.dsc
 522e2a32f41f69cbe22324b461b7e0d6 5844 science optional 
libosmium_2.6.0-1~bpo8+1.debian.tar.xz
 182a1d2b0ebabb564578b50d813d97f0 144824 libdevel optional 
libosmium2-dev_2.6.0-1~bpo8+1_amd64.deb
 73ce456b8b7b6f4bb382a94d1129cb53 38161190 doc optional 
libosmium2-doc_2.6.0-1~bpo8+1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWvijHAAoJEGdQ8QrojUrxJJAP/jhNqQafkBlqr1iyCBR+Cqqf
z+x5m3RVvNhR26WZjAu9EMIBTXHQPJG6+BnJ4UiTAXMf2NxnBcvNZBL720+CUtOb
r/olO+Vu++mP2NFw3P8MJ039B3Jzd930ykzAbhXEsiCZVNZty+nUr4M17TQBRmcC
Ksp5beoWcYhFEgb+b12EOZuHtnhI4GAoAIq8ZkcchAWvTIEh9ASxKVWlwLf4TJG7
iEgfiWaNI/tEIgFljn06XuarZcepFPM8IEo/plrDncvAkmDEPOJG9rfO9mHVtbHM
LjlhTjAMWF8ATB+WFwBTWVjh/A4EGk/pMx0MMC16/rhiTaTZxVfNJjT3Yz4aSllJ
o54iyLriawspIsW2AcywEDZltNpbDVA7v2XZ4qPx9+zvDGny7N9urxozWBFTHZNS
HrJTJVRhcX8/qG8cIp9yWLYUnmJhryx1gmeBtQ5LCQjJJdzeOJPnvVL62Il5lCMZ
hGK+Xl9B67w7ymzVdt/3gP3PVgy63EImyA7I/zfaCyFoipL3CT5yn36Epz+0BHBt
DGeU46WHfMngBQ2OV7/IoZFOW0kEDSDobnCMky2Si7et18XVNvzicG/HLHahF4AO
vIhWsSaCAUzfKa/f8bTfe/haTdc4ZLcWdHB9nGbsw6Fhz+RNZgPUJjk0/bfabUaB
00Ved57LiFeTd5TWeQb8
=rI2I
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
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.0 updated (629f376 -> 3ab0c87)

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch experimental-2.0
in repository gdal.

  from  629f376   Add upstream patch to fix crash with SQLite 3.10.0.
   new  56caaef   Merge changes from gdal (1.11.3+dfsg-3).
   new  879b42a   Mark patches as Forwarded: not-needed.
   new  0d8e705   Enable parallel builds.
   new  3ab0c87   Set distribution to experimental.

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.


Summary of changes:
 debian/changelog | 15 +--
 debian/libgdal-dev.lintian-overrides |  4 
 debian/patches/existence-typo.patch  |  1 +
 debian/patches/instantiate-typo.patch|  1 +
 debian/patches/outputting-typo.patch |  1 +
 debian/patches/perl-vendor   |  2 +-
 debian/patches/position-typo.patch   |  1 +
 debian/patches/responsibility-typo.patch |  1 +
 debian/patches/retrieve-typo.patch   |  1 +
 debian/patches/supported-typo.patch  |  1 +
 debian/patches/transform-typo.patch  |  1 +
 debian/rules |  2 +-
 12 files changed, 27 insertions(+), 4 deletions(-)

-- 
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/04: Merge changes from gdal (1.11.3+dfsg-3).

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.0
in repository gdal.

commit 56caaef34ddfd32887fcd2ec6409679ff517d729
Author: Bas Couwenberg 
Date:   Fri Feb 12 19:30:42 2016 +0100

Merge changes from gdal (1.11.3+dfsg-3).
---
 debian/changelog | 10 ++
 debian/libgdal-dev.lintian-overrides |  4 
 2 files changed, 14 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 5031a34..76ad2cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -29,6 +29,16 @@ gdal (2.0.1+dfsg-1~exp1) experimental; urgency=medium
 
  -- Bas Couwenberg   Fri, 23 Oct 2015 17:01:12 +0200
 
+gdal (1.11.3+dfsg-3) unstable; urgency=medium
+
+  * Update Vcs-Git URL to use HTTPS.
+  * Add upstream patch to fix crash with SQLite 3.10.0.
+  * Add patches for various typos.
+  * Add lintian override for old-style-config-script-multiarch-path.
+See: https://lists.debian.org/debian-devel/2016/01/msg00688.html
+
+ -- Bas Couwenberg   Wed, 10 Feb 2016 19:06:55 +0100
+
 gdal (1.11.3+dfsg-2) unstable; urgency=medium
 
   * Update symbols for alpha, amd64, kfreebsd-amd64, ppc64el & s390x.
diff --git a/debian/libgdal-dev.lintian-overrides 
b/debian/libgdal-dev.lintian-overrides
index c4e7ed7..e470060 100644
--- a/debian/libgdal-dev.lintian-overrides
+++ b/debian/libgdal-dev.lintian-overrides
@@ -1,2 +1,6 @@
 # Man pages are automatically generated with sphinx.
 libgdal-dev: hyphen-used-as-minus-sign
+
+# False positive, libgdal-dev is not marked as Multi-Arch
+libgdal-dev: old-style-config-script-multiarch-path usr/bin/gdal-config *
+

-- 
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: Bump Standards-Version to 3.9.7, no changes.

2016-02-12 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental-2.0
in repository gdal.

commit 8d4b0bdeefda67547b589e6399511d55c5724569
Author: Bas Couwenberg 
Date:   Fri Feb 12 20:28:55 2016 +0100

Bump Standards-Version to 3.9.7, no changes.
---
 debian/changelog | 6 ++
 debian/control   | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 8ffd3c2..a790370 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gdal (2.0.2+dfsg-1~exp2) UNRELEASED; urgency=medium
+
+  * Bump Standards-Version to 3.9.7, no changes.
+
+ -- Bas Couwenberg   Fri, 12 Feb 2016 20:28:45 +0100
+
 gdal (2.0.2+dfsg-1~exp1) experimental; urgency=medium
 
   * New upstream release.
diff --git a/debian/control b/debian/control
index b512de9..ddf1acc 100644
--- a/debian/control
+++ b/debian/control
@@ -54,7 +54,7 @@ Build-Depends: debhelper (>= 9),
default-jdk,
ant
 Build-Conflicts: python-setuptools
-Standards-Version: 3.9.6
+Standards-Version: 3.9.7
 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/gdal.git
 Vcs-Git: https://anonscm.debian.org/git/pkg-grass/gdal.git -b experimental-2.0
 Homepage: http://www.gdal.org/

-- 
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