[libosmium] branch stretch-backports updated (dad41eb -> ba80b2b)

Bas Couwenberg sebastic at debian.org
Thu Aug 31 09:43:16 UTC 2017


This is an automated email from the git hooks/post-receive script.

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

      from  dad41eb   Rebuild for stretch-backports.
      adds  89fd4ab   New upstream version 2.13.0
      adds  2d9de8e   Merge tag 'upstream/2.13.0'
      adds  181cfed   New upstream release.
      adds  d9dfa42   Require at least libprotozero-dev 1.5.2.
      adds  ef9cdfb   Set distribution to unstable.
      adds  1cd04d8   Add upstream patch to fix broken test on 32 bit platforms. (closes: #872292)
      adds  f8bf47f   Set distribution to unstable.
      adds  76577f2   Ignore test failures on mips & mipsel.
      adds  da4c80e   Set distribution to unstable.
      adds  374359d   Add upstream patches which should help with test failures on hurd & mips.
      adds  e37bb93   Set distribution to unstable.
      adds  919222e   New upstream version 2.13.1
      adds  7bd4c35   Merge tag 'upstream/2.13.1'
      adds  e4dad05   New upstream release.
      adds  3214d2b   Drop patches, included upstream.
      adds  a0a8bd4   Set distribution to unstable.
       new  2ec91aa   Merge tag 'debian/2.13.1-1' into stretch-backports
       new  ba80b2b   Rebuild for stretch-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:
 .codecov.yml                                       |    7 +
 .gitignore                                         |    2 +
 .travis.yml                                        |   25 +-
 CHANGELOG.md                                       |  105 +-
 CMakeLists.txt                                     |   40 +-
 NOTES_FOR_DEVELOPERS.md                            |   34 +-
 README.md                                          |    5 +-
 appveyor.yml                                       |    8 +
 build-appveyor.bat                                 |    6 +-
 debian/changelog                                   |   39 +
 debian/control                                     |    4 +-
 debian/rules                                       |    2 +-
 examples/CMakeLists.txt                            |    4 +
 examples/osmium_amenity_list.cpp                   |   44 +-
 examples/osmium_area_test.cpp                      |   60 +-
 examples/osmium_change_tags.cpp                    |    4 +-
 examples/osmium_convert.cpp                        |   16 +-
 examples/osmium_create_pois.cpp                    |    6 +-
 examples/osmium_debug.cpp                          |   16 +-
 examples/osmium_dump_internal.cpp                  |   13 +-
 examples/osmium_index_lookup.cpp                   |   59 +-
 examples/osmium_location_cache_create.cpp          |    9 +-
 examples/osmium_location_cache_use.cpp             |    9 +-
 examples/osmium_road_length.cpp                    |    6 +-
 include/osmium/area/assembler.hpp                  |  230 +---
 include/osmium/area/assembler_config.hpp           |    8 +-
 .../area/{assembler.hpp => assembler_legacy.hpp}   |   84 +-
 include/osmium/area/detail/basic_assembler.hpp     |  135 ++-
 .../area/detail/basic_assembler_with_tags.hpp      |   93 ++
 include/osmium/area/detail/node_ref_segment.hpp    |   35 +-
 include/osmium/area/detail/segment_list.hpp        |   50 +-
 include/osmium/area/geom_assembler.hpp             |    5 +-
 include/osmium/area/multipolygon_collector.hpp     |   16 +-
 ...ygon_collector.hpp => multipolygon_manager.hpp} |  167 ++-
 ...llector.hpp => multipolygon_manager_legacy.hpp} |  148 +--
 include/osmium/area/problem_reporter.hpp           |   12 +
 include/osmium/area/problem_reporter_exception.hpp |    6 +
 include/osmium/area/problem_reporter_ogr.hpp       |    4 +
 include/osmium/area/problem_reporter_stream.hpp    |    6 +
 include/osmium/area/stats.hpp                      |    1 +
 include/osmium/builder/builder.hpp                 |   16 +-
 include/osmium/builder/osm_object_builder.hpp      |  117 +-
 include/osmium/diff_handler.hpp                    |    6 +-
 include/osmium/diff_iterator.hpp                   |    6 +-
 include/osmium/diff_visitor.hpp                    |    6 +-
 include/osmium/dynamic_handler.hpp                 |    9 +-
 include/osmium/experimental/flex_reader.hpp        |    2 +-
 include/osmium/geom/factory.hpp                    |   15 +-
 include/osmium/geom/geos.hpp                       |   22 +-
 include/osmium/geom/mercator_projection.hpp        |    3 +
 include/osmium/geom/projection.hpp                 |    3 +-
 include/osmium/geom/relations.hpp                  |   12 +-
 include/osmium/geom/tile.hpp                       |   26 +-
 include/osmium/geom/wkb.hpp                        |   22 +-
 include/osmium/handler/check_order.hpp             |   23 +-
 include/osmium/handler/disk_store.hpp              |    4 +-
 include/osmium/handler/dump.hpp                    |    4 +-
 include/osmium/handler/node_locations_for_ways.hpp |   14 +-
 include/osmium/index/detail/create_map_with_fd.hpp |    6 +-
 include/osmium/index/detail/mmap_vector_file.hpp   |    6 +-
 include/osmium/index/detail/tmpfile.hpp            |    2 +-
 include/osmium/index/detail/vector_map.hpp         |   15 +-
 include/osmium/index/id_set.hpp                    |   53 +-
 include/osmium/index/index.hpp                     |    3 +-
 include/osmium/index/map.hpp                       |    9 +-
 include/osmium/index/map/all.hpp                   |    1 +
 include/osmium/index/map/flex_mem.hpp              |  285 +++++
 include/osmium/index/node_locations_map.hpp        |    4 +
 include/osmium/index/relations_map.hpp             |   16 +-
 include/osmium/io/bzip2_compression.hpp            |   28 +-
 include/osmium/io/compression.hpp                  |   49 +-
 include/osmium/io/detail/debug_output_format.hpp   |   17 +-
 include/osmium/io/detail/input_format.hpp          |   22 +-
 include/osmium/io/detail/o5m_input_format.hpp      |    8 +-
 include/osmium/io/detail/opl_input_format.hpp      |  105 +-
 include/osmium/io/detail/opl_output_format.hpp     |   15 +-
 include/osmium/io/detail/opl_parser_functions.hpp  |   23 +-
 include/osmium/io/detail/output_format.hpp         |   49 +-
 include/osmium/io/detail/pbf_decoder.hpp           |   94 +-
 include/osmium/io/detail/pbf_input_format.hpp      |   31 +-
 include/osmium/io/detail/pbf_output_format.hpp     |   54 +-
 include/osmium/io/detail/read_write.hpp            |   10 +-
 include/osmium/io/detail/string_table.hpp          |   16 +-
 include/osmium/io/detail/string_util.hpp           |    8 +-
 include/osmium/io/detail/write_thread.hpp          |    2 +-
 include/osmium/io/detail/xml_input_format.hpp      |    2 +-
 include/osmium/io/detail/xml_output_format.hpp     |   17 +-
 include/osmium/io/detail/zlib.hpp                  |    4 +-
 include/osmium/io/file.hpp                         |   35 +-
 include/osmium/io/file_format.hpp                  |   17 +-
 include/osmium/io/gzip_compression.hpp             |   26 +-
 include/osmium/io/header.hpp                       |   12 +-
 include/osmium/io/reader.hpp                       |   44 +-
 include/osmium/io/writer.hpp                       |   14 +-
 include/osmium/memory/buffer.hpp                   |   91 +-
 include/osmium/memory/callback_buffer.hpp          |  189 +++
 include/osmium/memory/item.hpp                     |    2 +-
 include/osmium/object_pointer_collection.hpp       |   10 +-
 include/osmium/opl.hpp                             |    2 +-
 include/osmium/osm/area.hpp                        |    4 +-
 include/osmium/osm/changeset.hpp                   |   24 +-
 include/osmium/osm/location.hpp                    |   36 +-
 include/osmium/osm/object.hpp                      |   13 +-
 include/osmium/osm/object_comparisons.hpp          |   33 +-
 include/osmium/osm/relation.hpp                    |    9 +-
 include/osmium/osm/types.hpp                       |    7 +
 include/osmium/osm/types_from_string.hpp           |   16 +-
 include/osmium/relations/collector.hpp             |    7 +-
 include/osmium/relations/manager_util.hpp          |  197 ++++
 include/osmium/relations/members_database.hpp      |  406 +++++++
 include/osmium/relations/relations_database.hpp    |  335 ++++++
 include/osmium/relations/relations_manager.hpp     |  567 +++++++++
 include/osmium/storage/item_stash.hpp              |  342 ++++++
 include/osmium/thread/function_wrapper.hpp         |    3 +-
 include/osmium/thread/pool.hpp                     |   37 +-
 include/osmium/thread/queue.hpp                    |    9 +-
 include/osmium/util/config.hpp                     |    5 +-
 include/osmium/util/file.hpp                       |   72 +-
 include/osmium/util/iterator.hpp                   |   21 +-
 include/osmium/util/memory_mapping.hpp             |   91 +-
 include/osmium/util/options.hpp                    |   12 +-
 include/osmium/util/progress_bar.hpp               |   21 +-
 include/osmium/util/string.hpp                     |   14 +-
 include/osmium/util/verbose_output.hpp             |    4 +-
 include/osmium/version.hpp                         |    6 +-
 include/protozero/pbf_builder.hpp                  |   18 +-
 include/protozero/pbf_message.hpp                  |    4 +
 include/protozero/pbf_reader.hpp                   |    8 +-
 include/protozero/pbf_writer.hpp                   |   11 +
 include/protozero/types.hpp                        |    8 +-
 include/protozero/version.hpp                      |    4 +-
 test/CMakeLists.txt                                |   16 +
 test/data-tests/testdata-multipolygon.cpp          |    6 +-
 test/data-tests/testdata-xml.cpp                   |    4 +-
 test/examples/CMakeLists.txt                       |   33 +-
 test/examples/t/amenity_list/CMakeLists.txt        |   10 +-
 test/examples/t/amenity_list/area.osm              |   18 +
 test/examples/t/area_test/CMakeLists.txt           |   25 +
 test/examples/t/area_test/data.osm                 |   34 +
 test/examples/t/change_tags/.gitattributes         |    1 +
 test/examples/t/change_tags/CMakeLists.txt         |    9 +
 test/examples/t/change_tags/data.osm               |   20 +
 test/examples/t/change_tags/result.osm             |   16 +
 test/examples/t/convert/CMakeLists.txt             |   46 +
 test/examples/t/convert/data.osm                   |   34 +
 test/examples/t/count/CMakeLists.txt               |    8 +
 test/examples/t/count/data.osm                     |   12 +
 test/examples/t/create_pois/CMakeLists.txt         |   13 +
 test/examples/t/debug/CMakeLists.txt               |   55 +
 test/examples/t/debug/changesets.osm               |    7 +
 test/examples/t/debug/data.osm                     |   13 +
 test/examples/t/dump_internal/CMakeLists.txt       |   36 +
 test/examples/t/dump_internal/data.osm             |   34 +
 test/examples/t/filter_discussions/CMakeLists.txt  |   10 +
 test/examples/t/filter_discussions/changesets.osm  |   11 +
 test/examples/t/index_lookup/CMakeLists.txt        |   46 +
 test/examples/t/location_cache/CMakeLists.txt      |   36 +
 test/examples/t/location_cache/data.osm            |    7 +
 test/examples/t/location_cache/way.osm             |    9 +
 test/examples/t/pub_names/CMakeLists.txt           |   22 +-
 .../t/pub_names/{pubs.osm => pub-addr.osm}         |    3 +
 .../t/pub_names/{pubs.osm => pub-node.osm}         |    0
 .../t/pub_names/{pubs.osm => pub-noname.osm}       |    1 -
 test/examples/t/pub_names/pub-way.osm              |   21 +
 test/examples/t/read/CMakeLists.txt                |    4 +
 test/examples/t/read/data.osm                      |   29 +
 test/examples/t/read_with_progress/CMakeLists.txt  |    4 +
 test/examples/t/read_with_progress/data.osm        |   29 +
 test/examples/t/tiles/CMakeLists.txt               |   18 +
 test/include/catch.hpp                             | 1222 +++++++++++++-------
 test/t/area/test_node_ref_segment.cpp              |   10 +-
 test/t/geom/test_geojson.cpp                       |   20 +-
 test/t/geom/test_geos.cpp                          |    2 +-
 test/t/geom/test_mercator.cpp                      |   57 +-
 test/t/geom/test_ogr.cpp                           |    2 +-
 test/t/geom/test_projection.cpp                    |    4 +-
 test/t/geom/test_tile.cpp                          |   28 +-
 test/t/geom/test_wkb.cpp                           |   16 +-
 test/t/geom/test_wkt.cpp                           |   36 +-
 test/t/handler/test_check_order_handler.cpp        |  128 ++
 test/t/handler/test_dynamic_handler.cpp            |  116 ++
 test/t/index/test_file_based_index.cpp             |   78 +-
 test/t/index/test_id_to_location.cpp               |   89 +-
 test/t/io/{data.opl => data-cr.opl}                |    2 +-
 test/t/io/test_bzip2.cpp                           |    2 +-
 test/t/io/test_compression_factory.cpp             |   27 +-
 test/t/io/test_file_formats.cpp                    |  122 +-
 test/t/io/test_opl_parser.cpp                      |  186 ++-
 test/t/io/test_output_iterator.cpp                 |   41 +-
 test/t/io/test_reader.cpp                          |   21 +-
 test/t/io/test_reader_fileformat.cpp               |    2 +-
 test/t/io/test_reader_with_mock_parser.cpp         |    4 +-
 test/t/io/test_string_table.cpp                    |  178 +--
 test/t/io/test_writer.cpp                          |   45 +-
 test/t/io/test_writer_with_mock_compression.cpp    |    6 +-
 test/t/io/test_writer_with_mock_encoder.cpp        |   14 +-
 test/t/memory/test_buffer_basics.cpp               |   85 +-
 test/t/memory/test_buffer_node.cpp                 |    2 +-
 test/t/memory/test_callback_buffer.cpp             |  101 ++
 test/t/memory/test_item.cpp                        |   29 +
 test/t/osm/test_area.cpp                           |    2 +-
 test/t/osm/test_box.cpp                            |  228 ++--
 test/t/osm/test_changeset.cpp                      |    2 +-
 test/t/osm/test_crc.cpp                            |   92 +-
 test/t/osm/test_location.cpp                       |  283 +++--
 test/t/osm/test_node.cpp                           |   25 +-
 test/t/osm/test_node_ref.cpp                       |   34 +-
 test/t/osm/test_object_comparisons.cpp             |   72 +-
 test/t/osm/test_timestamp.cpp                      |  164 ++-
 test/t/osm/test_types_from_string.cpp              |   78 +-
 test/t/osm/test_way.cpp                            |    4 +-
 test/t/relations/data.osm                          |   32 +
 test/t/relations/dupl_member.osm                   |   17 +
 test/t/relations/test_members_database.cpp         |  194 ++++
 test/t/relations/test_read_relations.cpp           |   77 ++
 test/t/relations/test_relations_database.cpp       |  105 ++
 test/t/relations/test_relations_manager.cpp        |  248 ++++
 test/t/storage/test_item_stash.cpp                 |  167 +++
 test/t/tags/test_filter.cpp                        |   22 +-
 test/t/tags/test_operators.cpp                     |   93 +-
 test/t/thread/test_pool.cpp                        |   60 +-
 test/t/thread/test_util.cpp                        |   37 +
 test/t/util/.gitattributes                         |    1 +
 test/t/util/known_file_size                        |    1 +
 test/t/util/test_cast_with_assert.cpp              |   10 +-
 test/t/util/test_config.cpp                        |   75 ++
 test/t/util/test_delta.cpp                         |   31 +
 test/t/util/test_file.cpp                          |   92 +-
 test/t/util/test_memory_mapping.cpp                |   20 +-
 test/t/util/test_options.cpp                       |  117 +-
 test/t/util/test_string.cpp                        |   57 +-
 test/t/util/test_string_matcher.cpp                |   41 +-
 test/t/util/test_timer_disabled.cpp                |   15 +
 test/t/util/test_timer_enabled.cpp                 |   16 +
 234 files changed, 8651 insertions(+), 2809 deletions(-)
 create mode 100644 .codecov.yml
 copy include/osmium/area/{assembler.hpp => assembler_legacy.hpp} (84%)
 create mode 100644 include/osmium/area/detail/basic_assembler_with_tags.hpp
 copy include/osmium/area/{multipolygon_collector.hpp => multipolygon_manager.hpp} (51%)
 copy include/osmium/area/{multipolygon_collector.hpp => multipolygon_manager_legacy.hpp} (56%)
 create mode 100644 include/osmium/index/map/flex_mem.hpp
 create mode 100644 include/osmium/memory/callback_buffer.hpp
 create mode 100644 include/osmium/relations/manager_util.hpp
 create mode 100644 include/osmium/relations/members_database.hpp
 create mode 100644 include/osmium/relations/relations_database.hpp
 create mode 100644 include/osmium/relations/relations_manager.hpp
 create mode 100644 include/osmium/storage/item_stash.hpp
 create mode 100644 test/examples/t/amenity_list/area.osm
 create mode 100644 test/examples/t/area_test/CMakeLists.txt
 create mode 100644 test/examples/t/area_test/data.osm
 create mode 100644 test/examples/t/change_tags/.gitattributes
 create mode 100644 test/examples/t/change_tags/CMakeLists.txt
 create mode 100644 test/examples/t/change_tags/data.osm
 create mode 100644 test/examples/t/change_tags/result.osm
 create mode 100644 test/examples/t/convert/CMakeLists.txt
 create mode 100644 test/examples/t/convert/data.osm
 create mode 100644 test/examples/t/count/CMakeLists.txt
 create mode 100644 test/examples/t/count/data.osm
 create mode 100644 test/examples/t/create_pois/CMakeLists.txt
 create mode 100644 test/examples/t/debug/CMakeLists.txt
 create mode 100644 test/examples/t/debug/changesets.osm
 create mode 100644 test/examples/t/debug/data.osm
 create mode 100644 test/examples/t/dump_internal/CMakeLists.txt
 create mode 100644 test/examples/t/dump_internal/data.osm
 create mode 100644 test/examples/t/filter_discussions/CMakeLists.txt
 create mode 100644 test/examples/t/filter_discussions/changesets.osm
 create mode 100644 test/examples/t/index_lookup/CMakeLists.txt
 create mode 100644 test/examples/t/location_cache/CMakeLists.txt
 create mode 100644 test/examples/t/location_cache/data.osm
 create mode 100644 test/examples/t/location_cache/way.osm
 copy test/examples/t/pub_names/{pubs.osm => pub-addr.osm} (69%)
 copy test/examples/t/pub_names/{pubs.osm => pub-node.osm} (100%)
 rename test/examples/t/pub_names/{pubs.osm => pub-noname.osm} (88%)
 create mode 100644 test/examples/t/pub_names/pub-way.osm
 create mode 100644 test/examples/t/read/CMakeLists.txt
 create mode 100644 test/examples/t/read/data.osm
 create mode 100644 test/examples/t/read_with_progress/CMakeLists.txt
 create mode 100644 test/examples/t/read_with_progress/data.osm
 create mode 100644 test/examples/t/tiles/CMakeLists.txt
 create mode 100644 test/t/handler/test_check_order_handler.cpp
 create mode 100644 test/t/handler/test_dynamic_handler.cpp
 copy test/t/io/{data.opl => data-cr.opl} (98%)
 create mode 100644 test/t/memory/test_callback_buffer.cpp
 create mode 100644 test/t/memory/test_item.cpp
 create mode 100644 test/t/relations/data.osm
 create mode 100644 test/t/relations/dupl_member.osm
 create mode 100644 test/t/relations/test_members_database.cpp
 create mode 100644 test/t/relations/test_read_relations.cpp
 create mode 100644 test/t/relations/test_relations_database.cpp
 create mode 100644 test/t/relations/test_relations_manager.cpp
 create mode 100644 test/t/storage/test_item_stash.cpp
 create mode 100644 test/t/thread/test_util.cpp
 create mode 100644 test/t/util/.gitattributes
 create mode 100644 test/t/util/known_file_size
 create mode 100644 test/t/util/test_config.cpp
 create mode 100644 test/t/util/test_timer_disabled.cpp
 create mode 100644 test/t/util/test_timer_enabled.cpp

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libosmium.git



More information about the Pkg-grass-devel mailing list