[libosmium] branch upstream updated (b90fb1a -> 6928a9c)

Bas Couwenberg sebastic at debian.org
Thu Sep 15 14:03:16 UTC 2016


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

sebastic pushed a change to branch upstream
in repository libosmium.

      from  b90fb1a   Imported Upstream version 2.8.0
       new  6928a9c   Imported Upstream version 2.9.0

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:
 .gitignore                                         |    2 +
 .ycm_extra_conf.py                                 |    5 +
 CHANGELOG.md                                       |   36 +-
 CMakeLists.txt                                     |    2 +-
 CONTRIBUTING.md                                    |  147 +--
 CONTRIBUTING.md => NOTES_FOR_DEVELOPERS.md         |   12 +-
 appveyor.yml                                       |   83 +-
 benchmarks/osmium_benchmark_count.cpp              |    8 +-
 benchmarks/osmium_benchmark_count_tag.cpp          |    8 +-
 benchmarks/osmium_benchmark_index_map.cpp          |   16 +-
 .../osmium_benchmark_static_vs_dynamic_index.cpp   |   58 +-
 benchmarks/osmium_benchmark_write_pbf.cpp          |   17 +-
 build-appveyor.bat                                 |  123 +++
 build-local.bat                                    |   43 +
 cmake/iwyu.sh                                      |    5 +
 examples/CMakeLists.txt                            |    8 +-
 examples/README.md                                 |   32 +
 examples/osmium_area_test.cpp                      |  131 ++-
 examples/osmium_convert.cpp                        |   92 +-
 examples/osmium_count.cpp                          |   69 +-
 examples/osmium_create_node_cache.cpp              |   55 -
 examples/osmium_debug.cpp                          |   46 +-
 examples/osmium_filter_discussions.cpp             |   48 +-
 examples/osmium_index.cpp                          |   22 +-
 examples/osmium_location_cache_create.cpp          |   87 ++
 examples/osmium_location_cache_use.cpp             |  101 ++
 examples/osmium_pub_names.cpp                      |   89 ++
 examples/osmium_read.cpp                           |   26 +-
 examples/osmium_read_with_progress.cpp             |   56 +
 examples/osmium_road_length.cpp                    |   92 ++
 examples/osmium_serdump.cpp                        |   24 +-
 examples/osmium_tiles.cpp                          |   72 ++
 examples/osmium_use_node_cache.cpp                 |   68 --
 include/osmium/area/assembler.hpp                  |   46 +-
 include/osmium/area/detail/node_ref_segment.hpp    |   17 +-
 include/osmium/area/detail/proto_ring.hpp          |    5 +-
 include/osmium/area/detail/segment_list.hpp        |   23 +-
 include/osmium/area/detail/vector.hpp              |    1 +
 include/osmium/area/multipolygon_collector.hpp     |    7 +-
 include/osmium/area/problem_reporter.hpp           |    2 +
 include/osmium/area/problem_reporter_exception.hpp |    1 +
 include/osmium/area/problem_reporter_ogr.hpp       |    8 +-
 include/osmium/builder/attr.hpp                    |   37 +-
 include/osmium/builder/builder.hpp                 |    3 +-
 include/osmium/builder/builder_helper.hpp          |    8 +-
 include/osmium/builder/osm_object_builder.hpp      |   10 +-
 include/osmium/diff_iterator.hpp                   |    2 +
 include/osmium/dynamic_handler.hpp                 |    7 +-
 include/osmium/experimental/flex_reader.hpp        |    3 +-
 include/osmium/geom/factory.hpp                    |    8 +-
 include/osmium/geom/geojson.hpp                    |    1 +
 include/osmium/geom/geos.hpp                       |   32 +-
 include/osmium/geom/haversine.hpp                  |    2 +-
 include/osmium/geom/ogr.hpp                        |    2 +-
 include/osmium/geom/projection.hpp                 |   22 +-
 include/osmium/geom/rapid_geojson.hpp              |    2 +
 include/osmium/geom/tile.hpp                       |   45 +-
 include/osmium/geom/util.hpp                       |    4 +-
 include/osmium/geom/wkb.hpp                        |    8 +-
 include/osmium/geom/wkt.hpp                        |    3 -
 include/osmium/handler.hpp                         |   56 +-
 include/osmium/handler/check_order.hpp             |    4 +-
 include/osmium/handler/node_locations_for_ways.hpp |    2 +-
 include/osmium/index/detail/create_map_with_fd.hpp |    4 +-
 include/osmium/index/detail/mmap_vector_file.hpp   |    4 +-
 include/osmium/index/detail/vector_map.hpp         |    2 +-
 include/osmium/index/detail/vector_multimap.hpp    |    2 +-
 include/osmium/index/index.hpp                     |    4 +-
 include/osmium/index/map.hpp                       |    2 +-
 include/osmium/index/map/sparse_mem_map.hpp        |    1 -
 include/osmium/io/any_input.hpp                    |    3 +-
 include/osmium/io/bzip2_compression.hpp            |   10 +-
 include/osmium/io/compression.hpp                  |   31 +-
 include/osmium/io/detail/debug_output_format.hpp   |  119 ++-
 include/osmium/io/detail/input_format.hpp          |    2 +-
 include/osmium/io/detail/o5m_input_format.hpp      |   13 +-
 include/osmium/io/detail/opl_input_format.hpp      |  156 +++
 include/osmium/io/detail/opl_output_format.hpp     |   25 +-
 include/osmium/io/detail/opl_parser_functions.hpp  |  747 ++++++++++++++
 include/osmium/io/detail/output_format.hpp         |    4 +-
 include/osmium/io/detail/pbf_decoder.hpp           |   36 +-
 include/osmium/io/detail/pbf_input_format.hpp      |   15 +-
 include/osmium/io/detail/pbf_output_format.hpp     |   14 +-
 include/osmium/io/detail/read_write.hpp            |    7 +-
 include/osmium/io/detail/string_table.hpp          |    9 +-
 include/osmium/io/detail/string_util.hpp           |   27 +-
 include/osmium/io/detail/write_thread.hpp          |    1 +
 include/osmium/io/detail/xml_input_format.hpp      |   11 +-
 include/osmium/io/detail/xml_output_format.hpp     |   11 +-
 include/osmium/io/detail/zlib.hpp                  |    6 +-
 include/osmium/io/file.hpp                         |    6 +-
 include/osmium/io/gzip_compression.hpp             |   12 +-
 include/osmium/io/input_iterator.hpp               |    1 -
 include/osmium/io/{o5m_input.hpp => opl_input.hpp} |   11 +-
 include/osmium/io/output_iterator.hpp              |    3 -
 include/osmium/io/overwrite.hpp                    |    2 +-
 include/osmium/io/reader.hpp                       |   43 +-
 include/osmium/io/writer.hpp                       |   12 +-
 include/osmium/memory/item.hpp                     |   34 +-
 include/osmium/memory/item_iterator.hpp            |   15 +-
 include/osmium/object_pointer_collection.hpp       |    2 -
 include/osmium/{io/error.hpp => opl.hpp}           |   53 +-
 include/osmium/osm.hpp                             |   15 +-
 include/osmium/osm/area.hpp                        |    2 +
 include/osmium/osm/box.hpp                         |    1 -
 include/osmium/osm/changeset.hpp                   |    7 +
 include/osmium/osm/crc.hpp                         |   28 +-
 include/osmium/osm/diff_object.hpp                 |    5 +-
 include/osmium/osm/location.hpp                    |  156 +--
 include/osmium/osm/node_ref_list.hpp               |    3 +-
 include/osmium/osm/object.hpp                      |   23 +-
 include/osmium/osm/object_comparisons.hpp          |    3 +
 include/osmium/osm/relation.hpp                    |    2 +-
 include/osmium/osm/segment.hpp                     |    1 -
 include/osmium/osm/tag.hpp                         |    1 -
 include/osmium/osm/timestamp.hpp                   |   83 +-
 include/osmium/osm/types_from_string.hpp           |    3 +-
 include/osmium/osm/way.hpp                         |    5 +-
 include/osmium/relations/collector.hpp             |   14 +-
 include/osmium/relations/detail/member_meta.hpp    |    2 -
 include/osmium/tags/filter.hpp                     |    1 +
 include/osmium/tags/taglist.hpp                    |    2 +-
 include/osmium/thread/pool.hpp                     |    4 +-
 include/osmium/thread/queue.hpp                    |    4 +-
 include/osmium/thread/util.hpp                     |    2 +
 include/osmium/util/delta.hpp                      |    3 +-
 include/osmium/util/double.hpp                     |    3 +-
 include/osmium/util/file.hpp                       |   82 +-
 include/osmium/util/iterator.hpp                   |    3 +-
 include/osmium/util/memory_mapping.hpp             |    9 +-
 include/osmium/util/options.hpp                    |    9 +-
 include/osmium/util/progress_bar.hpp               |  179 ++++
 include/osmium/util/string.hpp                     |    2 +-
 include/osmium/util/verbose_output.hpp             |    8 +-
 include/osmium/version.hpp                         |    4 +-
 include/protozero/iterators.hpp                    |   10 +-
 include/protozero/pbf_writer.hpp                   |    8 +-
 include/protozero/version.hpp                      |    4 +-
 osmium.imp                                         |    9 +-
 test/CMakeLists.txt                                |    2 +
 test/data-tests/include/common.hpp                 |    6 +-
 test/data-tests/testdata-multipolygon.cpp          |   56 +-
 test/data-tests/testdata-overview.cpp              |   23 +-
 test/data-tests/testdata-testcases.cpp             |    6 +-
 test/data-tests/testdata-xml.cpp                   |   90 +-
 test/t/basic/test_area.cpp                         |   78 ++
 test/t/basic/test_location.cpp                     |   93 +-
 test/t/basic/test_node.cpp                         |   68 +-
 test/t/basic/test_timestamp.cpp                    |   44 +
 test/t/geom/test_tile.cpp                          |  140 +--
 test/t/geom/test_wkb.cpp                           |  167 +--
 test/t/geom/test_wkt.cpp                           |  188 ++--
 test/t/index/test_id_to_location.cpp               |   26 +-
 test/t/io/test_opl_parser.cpp                      | 1075 ++++++++++++++++++++
 test/t/io/test_reader_with_mock_decompression.cpp  |   10 +-
 test/t/io/test_reader_with_mock_parser.cpp         |    6 +-
 test/t/io/test_writer_with_mock_compression.cpp    |    2 +-
 test/t/tags/test_filter.cpp                        |    6 +-
 test/t/util/test_cast_with_assert.cpp              |    2 +-
 159 files changed, 4933 insertions(+), 1369 deletions(-)
 copy CONTRIBUTING.md => NOTES_FOR_DEVELOPERS.md (97%)
 create mode 100644 build-appveyor.bat
 create mode 100644 build-local.bat
 create mode 100644 examples/README.md
 delete mode 100644 examples/osmium_create_node_cache.cpp
 create mode 100644 examples/osmium_location_cache_create.cpp
 create mode 100644 examples/osmium_location_cache_use.cpp
 create mode 100755 examples/osmium_pub_names.cpp
 create mode 100644 examples/osmium_read_with_progress.cpp
 create mode 100755 examples/osmium_road_length.cpp
 create mode 100644 examples/osmium_tiles.cpp
 delete mode 100644 examples/osmium_use_node_cache.cpp
 create mode 100644 include/osmium/io/detail/opl_input_format.hpp
 create mode 100644 include/osmium/io/detail/opl_parser_functions.hpp
 copy include/osmium/io/{o5m_input.hpp => opl_input.hpp} (87%)
 copy include/osmium/{io/error.hpp => opl.hpp} (61%)
 create mode 100644 include/osmium/util/progress_bar.hpp
 create mode 100644 test/t/basic/test_area.cpp
 create mode 100644 test/t/io/test_opl_parser.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