[libosmium] branch master updated (ee051f7 -> d5a7bd4)

Bas Couwenberg sebastic at debian.org
Sat Nov 12 05:24:51 UTC 2016


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

sebastic pushed a change to branch master
in repository libosmium.

      from  ee051f7   Set distribution to unstable.
       new  e92062c   Imported Upstream version 2.10.0
       new  2e47af9   Merge tag 'upstream/2.10.0'
       new  681017b   New upstream release.
       new  186114b   Drop dh_installexamples override, permissions fixed upstream.
       new  d5a7bd4   Set distribution to unstable.

The 5 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                                       |  58 ++-
 CMakeLists.txt                                     |   6 +-
 README.md                                          |   4 +-
 benchmarks/CMakeLists.txt                          |   3 +
 benchmarks/download_data.sh                        |  10 +-
 benchmarks/osmium_benchmark_count.cpp              |   6 +-
 benchmarks/osmium_benchmark_count_tag.cpp          |   6 +-
 ...ark_count.cpp => osmium_benchmark_mercator.cpp} |  26 +-
 ...enchmark_count.sh => run_benchmark_mercator.sh} |   4 +-
 benchmarks/setup.sh                                |  16 +-
 cmake/FindOsmium.cmake                             |  62 ++-
 debian/changelog                                   |   7 +
 debian/rules                                       |   6 -
 examples/CMakeLists.txt                            |   8 +-
 examples/README.md                                 |  12 +
 examples/osmium_area_test.cpp                      |   4 +-
 examples/osmium_change_tags.cpp                    | 203 ++++++++++
 examples/osmium_convert.cpp                        |   8 +-
 examples/osmium_create_pois.cpp                    |  96 +++++
 examples/osmium_dump_internal.cpp                  | 179 +++++++++
 examples/osmium_filter_discussions.cpp             |   2 +-
 examples/osmium_index.cpp                          | 260 ------------
 examples/osmium_index_lookup.cpp                   | 333 ++++++++++++++++
 examples/osmium_pub_names.cpp                      |   0
 examples/osmium_road_length.cpp                    |   0
 examples/osmium_serdump.cpp                        | 206 ----------
 include/osmium/area/assembler.hpp                  |  52 +--
 include/osmium/area/detail/node_ref_segment.hpp    |   4 +-
 include/osmium/area/detail/segment_list.hpp        |   2 +-
 include/osmium/area/detail/vector.hpp              |  20 +-
 include/osmium/builder/attr.hpp                    |  64 +--
 include/osmium/builder/builder.hpp                 |  91 ++---
 include/osmium/builder/osm_object_builder.hpp      | 314 +++++++++++++--
 include/osmium/geom/factory.hpp                    |   2 +-
 include/osmium/geom/geos.hpp                       |  16 +-
 include/osmium/geom/relations.hpp                  |  10 +-
 include/osmium/geom/tile.hpp                       |  20 +-
 include/osmium/handler/disk_store.hpp              |   5 +-
 include/osmium/handler/node_locations_for_ways.hpp |   2 +-
 include/osmium/handler/object_relations.hpp        |   2 +
 include/osmium/index/bool_vector.hpp               |  41 +-
 include/osmium/index/detail/vector_map.hpp         |   6 +-
 include/osmium/index/id_set.hpp                    | 431 ++++++++++++++++++++
 include/osmium/index/index.hpp                     |  12 +-
 include/osmium/index/map.hpp                       |  27 +-
 include/osmium/index/map/dummy.hpp                 |   2 +-
 include/osmium/index/map/sparse_mem_map.hpp        |   2 +-
 include/osmium/index/map/sparse_mem_table.hpp      |   4 +-
 include/osmium/io/compression.hpp                  |  60 ++-
 include/osmium/io/detail/input_format.hpp          |  23 +-
 include/osmium/io/detail/o5m_input_format.hpp      | 104 +++--
 include/osmium/io/detail/opl_input_format.hpp      |   8 +-
 include/osmium/io/detail/opl_parser_functions.hpp  |  80 ++--
 include/osmium/io/detail/pbf_decoder.hpp           | 170 ++++++--
 include/osmium/io/detail/pbf_input_format.hpp      |  10 +-
 include/osmium/io/detail/queue_util.hpp            |  13 +-
 include/osmium/io/detail/xml_input_format.hpp      |  94 +++--
 include/osmium/io/file_format.hpp                  |   5 +
 include/osmium/io/header.hpp                       |  79 +++-
 include/osmium/io/reader.hpp                       |  63 ++-
 include/osmium/memory/buffer.hpp                   |  82 ++--
 include/osmium/memory/collection.hpp               |  47 ++-
 include/osmium/memory/item.hpp                     |   4 +-
 include/osmium/osm/area.hpp                        |  12 +-
 include/osmium/osm/changeset.hpp                   |  18 +-
 include/osmium/osm/crc.hpp                         |  42 +-
 include/osmium/osm/entity_bits.hpp                 |  24 +-
 include/osmium/osm/location.hpp                    |  52 ++-
 include/osmium/osm/node.hpp                        |   8 +-
 include/osmium/osm/node_ref_list.hpp               |  33 +-
 include/osmium/osm/object.hpp                      |   8 +
 include/osmium/osm/relation.hpp                    |  17 +-
 include/osmium/osm/tag.hpp                         |  19 +-
 include/osmium/osm/way.hpp                         |   6 +-
 include/osmium/relations/collector.hpp             |  58 ++-
 include/osmium/relations/detail/member_meta.hpp    |  40 +-
 include/osmium/thread/queue.hpp                    |  57 ++-
 include/osmium/util/progress_bar.hpp               |  12 +
 include/osmium/version.hpp                         |   4 +-
 test/CMakeLists.txt                                |  52 ++-
 test/data-tests/testdata-xml.cpp                   |   2 +-
 test/examples/CMakeLists.txt                       |  21 +
 test/examples/t/pub_names/CMakeLists.txt           |   7 +
 test/examples/t/pub_names/pubs.osm                 |   7 +
 test/examples/t/road_length/CMakeLists.txt         |   8 +
 test/examples/t/road_length/road.osm               |  59 +++
 test/include/catch.hpp                             |  50 ++-
 test/t/basic/test_entity_bits.cpp                  |  32 --
 test/t/builder/test_object_builder.cpp             | 444 +++++++++++++++++++++
 test/t/geom/helper.hpp                             |  15 -
 test/t/geom/test_crs.cpp                           |  10 +-
 test/t/geom/test_exception.cpp                     |   8 +-
 test/t/geom/test_factory_with_projection.cpp       |  40 +-
 test/t/geom/test_geojson.cpp                       | 193 ++++-----
 test/t/geom/test_geos.cpp                          |  56 +--
 test/t/geom/test_geos_wkb.cpp                      |  92 -----
 test/t/geom/test_ogr.cpp                           | 128 +++---
 test/t/geom/test_ogr_wkb.cpp                       | 100 +++++
 test/t/geom/test_projection.cpp                    | 143 +++----
 test/t/geom/test_tile.cpp                          |   2 -
 test/t/geom/test_wkb.cpp                           |  18 +-
 test/t/geom/wnl_helper.hpp                         |   6 +-
 test/t/index/test_id_set.cpp                       | 166 ++++++++
 test/t/index/test_id_to_location.cpp               | 165 ++++----
 test/t/io/test_compression_factory.cpp             |  27 ++
 test/t/io/test_reader_with_mock_parser.cpp         |   8 +-
 test/t/{buffer => memory}/test_buffer_basics.cpp   |   0
 test/t/{buffer => memory}/test_buffer_node.cpp     | 140 +++----
 test/t/{buffer => memory}/test_buffer_purge.cpp    |  82 ++--
 test/t/{basic => osm}/test_area.cpp                |   0
 test/t/{basic => osm}/test_box.cpp                 |   0
 test/t/{basic => osm}/test_changeset.cpp           |  67 ++--
 test/t/{basic => osm}/test_crc.cpp                 |   0
 test/t/osm/test_entity_bits.cpp                    |  62 +++
 test/t/{basic => osm}/test_location.cpp            | 119 +++---
 test/t/{basic => osm}/test_node.cpp                |   0
 test/t/{basic => osm}/test_node_ref.cpp            |   0
 test/t/{basic => osm}/test_object_comparisons.cpp  |   0
 test/t/{basic => osm}/test_relation.cpp            |   0
 test/t/{basic => osm}/test_timestamp.cpp           |   0
 test/t/{basic => osm}/test_types_from_string.cpp   |   0
 test/t/{basic => osm}/test_way.cpp                 |   2 +-
 122 files changed, 4198 insertions(+), 2039 deletions(-)
 copy benchmarks/{osmium_benchmark_count.cpp => osmium_benchmark_mercator.cpp} (52%)
 copy benchmarks/{run_benchmark_count.sh => run_benchmark_mercator.sh} (90%)
 create mode 100644 examples/osmium_change_tags.cpp
 create mode 100644 examples/osmium_create_pois.cpp
 create mode 100644 examples/osmium_dump_internal.cpp
 delete mode 100644 examples/osmium_index.cpp
 create mode 100644 examples/osmium_index_lookup.cpp
 mode change 100755 => 100644 examples/osmium_pub_names.cpp
 mode change 100755 => 100644 examples/osmium_road_length.cpp
 delete mode 100644 examples/osmium_serdump.cpp
 create mode 100644 include/osmium/index/id_set.hpp
 create mode 100644 test/examples/CMakeLists.txt
 create mode 100644 test/examples/t/pub_names/CMakeLists.txt
 create mode 100644 test/examples/t/pub_names/pubs.osm
 create mode 100644 test/examples/t/road_length/CMakeLists.txt
 create mode 100644 test/examples/t/road_length/road.osm
 delete mode 100644 test/t/basic/test_entity_bits.cpp
 create mode 100644 test/t/builder/test_object_builder.cpp
 delete mode 100644 test/t/geom/helper.hpp
 delete mode 100644 test/t/geom/test_geos_wkb.cpp
 create mode 100644 test/t/geom/test_ogr_wkb.cpp
 create mode 100644 test/t/index/test_id_set.cpp
 create mode 100644 test/t/io/test_compression_factory.cpp
 rename test/t/{buffer => memory}/test_buffer_basics.cpp (100%)
 rename test/t/{buffer => memory}/test_buffer_node.cpp (50%)
 rename test/t/{buffer => memory}/test_buffer_purge.cpp (60%)
 rename test/t/{basic => osm}/test_area.cpp (100%)
 rename test/t/{basic => osm}/test_box.cpp (100%)
 rename test/t/{basic => osm}/test_changeset.cpp (73%)
 rename test/t/{basic => osm}/test_crc.cpp (100%)
 create mode 100644 test/t/osm/test_entity_bits.cpp
 rename test/t/{basic => osm}/test_location.cpp (78%)
 rename test/t/{basic => osm}/test_node.cpp (100%)
 rename test/t/{basic => osm}/test_node_ref.cpp (100%)
 rename test/t/{basic => osm}/test_object_comparisons.cpp (100%)
 rename test/t/{basic => osm}/test_relation.cpp (100%)
 rename test/t/{basic => osm}/test_timestamp.cpp (100%)
 rename test/t/{basic => osm}/test_types_from_string.cpp (100%)
 rename test/t/{basic => osm}/test_way.cpp (98%)

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