[libosmium] branch upstream updated (c64b95a -> 07ba40b)

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Tue Aug 18 13:46:49 UTC 2015


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

sebastic pushed a change to branch upstream
in repository libosmium.

      from  c64b95a   Imported Upstream version 2.2.0
       new  07ba40b   Imported Upstream version 2.3.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:
 .travis.yml                                        |   10 +-
 CHANGELOG.md                                       |   44 +-
 CMakeLists.txt                                     |    2 +-
 EXTERNAL_LICENSES.txt                              |  233 ++++
 README.md                                          |    4 +
 appveyor.yml                                       |   12 +-
 benchmarks/CMakeLists.txt                          |    1 +
 benchmarks/osmium_benchmark_count.cpp              |    2 -
 benchmarks/osmium_benchmark_count_tag.cpp          |    2 -
 benchmarks/osmium_benchmark_index_map.cpp          |    2 -
 .../osmium_benchmark_static_vs_dynamic_index.cpp   |    1 -
 benchmarks/osmium_benchmark_write_pbf.cpp          |   34 +
 benchmarks/run_benchmark_write_pbf.sh              |   28 +
 cmake/FindOSMPBF.cmake                             |   50 -
 cmake/FindOsmium.cmake                             |    8 +-
 cmake/iwyu.sh                                      |    4 +-
 examples/osmium_area_test.cpp                      |    2 -
 examples/osmium_convert.cpp                        |    1 -
 examples/osmium_count.cpp                          |    2 -
 examples/osmium_create_node_cache.cpp              |    2 -
 examples/osmium_debug.cpp                          |    2 -
 examples/osmium_read.cpp                           |    2 -
 examples/osmium_serdump.cpp                        |    2 -
 examples/osmium_toogr.cpp                          |    2 -
 examples/osmium_toogr2.cpp                         |    2 -
 examples/osmium_toogr2_exp.cpp                     |    2 -
 examples/osmium_use_node_cache.cpp                 |    2 -
 include/boost_unicode_iterator.hpp                 |  776 -----------
 include/osmium/area/multipolygon_collector.hpp     |    1 +
 include/osmium/builder/builder.hpp                 |   24 +-
 include/osmium/builder/osm_object_builder.hpp      |   53 +-
 include/osmium/geom/geos.hpp                       |   35 +-
 include/osmium/geom/wkb.hpp                        |   10 +-
 include/osmium/index/detail/create_map_with_fd.hpp |    2 -
 include/osmium/index/detail/mmap_vector_base.hpp   |    4 +-
 include/osmium/index/detail/mmap_vector_file.hpp   |    3 +-
 include/osmium/index/map/dense_mmap_array.hpp      |    2 +-
 include/osmium/index/map/sparse_mem_map.hpp        |    2 +-
 include/osmium/io/any_input.hpp                    |    4 +-
 include/osmium/io/any_output.hpp                   |    5 +-
 include/osmium/io/bzip2_compression.hpp            |    5 +
 include/osmium/io/compression.hpp                  |    5 +
 .../osmium/io/{opl_output.hpp => debug_output.hpp} |    8 +-
 include/osmium/io/detail/debug_output_format.hpp   |  482 +++++++
 include/osmium/io/detail/opl_output_format.hpp     |   75 +-
 include/osmium/io/detail/pbf.hpp                   |   23 +-
 include/osmium/io/detail/pbf_decoder.hpp           |  760 +++++++++++
 include/osmium/io/detail/pbf_input_format.hpp      |   94 +-
 include/osmium/io/detail/pbf_output_format.hpp     | 1055 +++++----------
 include/osmium/io/detail/pbf_parser.hpp            |  456 -------
 include/osmium/io/detail/pbf_stringtable.hpp       |  218 ----
 include/osmium/io/detail/pbf_type_conv.hpp         |   73 --
 include/osmium/io/detail/protobuf_tags.hpp         |  170 +++
 include/osmium/io/detail/string_table.hpp          |  250 ++++
 include/osmium/io/detail/xml_input_format.hpp      |   36 +-
 include/osmium/io/detail/xml_output_format.hpp     |   60 +-
 include/osmium/io/detail/zlib.hpp                  |   15 +-
 include/osmium/io/file.hpp                         |   68 +-
 include/osmium/io/file_format.hpp                  |    8 +-
 include/osmium/io/gzip_compression.hpp             |    5 +
 include/osmium/io/pbf_input.hpp                    |    1 -
 include/osmium/io/pbf_output.hpp                   |    1 -
 include/osmium/memory/buffer.hpp                   |    3 +-
 include/osmium/memory/collection.hpp               |    1 -
 include/osmium/memory/item.hpp                     |    1 -
 include/osmium/osm/changeset.hpp                   |    1 -
 include/osmium/osm/crc.hpp                         |  223 ++++
 include/osmium/osm/entity.hpp                      |    1 +
 include/osmium/osm/node_ref.hpp                    |    2 +-
 include/osmium/osm/timestamp.hpp                   |    3 +-
 include/osmium/thread/queue.hpp                    |    4 +-
 include/osmium/thread/util.hpp                     |    2 +-
 include/osmium/util/data_file.hpp                  |    2 +
 include/osmium/util/delta.hpp                      |   54 +-
 .../osmium/util/{compatibility.hpp => endian.hpp}  |   20 +-
 include/osmium/util/file.hpp                       |    1 +
 include/osmium/util/memory_mapping.hpp             |  113 +-
 include/osmium/util/minmax.hpp                     |    3 -
 include/protozero/byteswap.hpp                     |   49 +
 include/protozero/exception.hpp                    |   68 +
 include/protozero/pbf_builder.hpp                  |  111 ++
 include/protozero/pbf_message.hpp                  |   50 +
 include/protozero/pbf_reader.hpp                   | 1059 +++++++++++++++
 include/protozero/pbf_types.hpp                    |   49 +
 include/protozero/pbf_writer.hpp                   |  664 ++++++++++
 include/protozero/varint.hpp                       |  136 ++
 LICENSE.txt => include/utf8.h                      |   13 +-
 include/utf8/checked.h                             |  327 +++++
 include/utf8/core.h                                |  329 +++++
 include/utf8/unchecked.h                           |  228 ++++
 scripts/travis_install.sh                          |   12 +-
 scripts/travis_script.sh                           |    2 -
 test/CMakeLists.txt                                |    7 +
 test/data-tests/testdata-testcases.cpp             |    2 -
 test/data-tests/testdata-xml.cpp                   |  115 +-
 test/include/catch.hpp                             | 1355 +++++++++++++-------
 test/include/catch_orig.hpp                        | 1347 ++++++++++++-------
 test/t/basic/helper.hpp                            |   32 +-
 test/t/basic/test_box.cpp                          |    7 +
 test/t/basic/test_changeset.cpp                    |   12 +-
 test/t/basic/test_crc.cpp                          |   49 +
 test/t/basic/test_node.cpp                         |    8 +
 test/t/basic/test_relation.cpp                     |   11 +-
 test/t/basic/test_way.cpp                          |   10 +-
 test/t/geom/test_geos.cpp                          |   35 +-
 test/t/io/test_file_formats.cpp                    |   24 +
 test/t/io/test_string_table.cpp                    |   94 ++
 test/t/tags/test_tag_list.cpp                      |  126 +-
 test/t/util/test_delta.cpp                         |   24 +
 test/t/util/test_memory_mapping.cpp                |   72 +-
 110 files changed, 8432 insertions(+), 3676 deletions(-)
 create mode 100644 EXTERNAL_LICENSES.txt
 create mode 100644 benchmarks/osmium_benchmark_write_pbf.cpp
 create mode 100755 benchmarks/run_benchmark_write_pbf.sh
 delete mode 100644 cmake/FindOSMPBF.cmake
 delete mode 100644 include/boost_unicode_iterator.hpp
 copy include/osmium/io/{opl_output.hpp => debug_output.hpp} (89%)
 create mode 100644 include/osmium/io/detail/debug_output_format.hpp
 create mode 100644 include/osmium/io/detail/pbf_decoder.hpp
 delete mode 100644 include/osmium/io/detail/pbf_parser.hpp
 delete mode 100644 include/osmium/io/detail/pbf_stringtable.hpp
 delete mode 100644 include/osmium/io/detail/pbf_type_conv.hpp
 create mode 100644 include/osmium/io/detail/protobuf_tags.hpp
 create mode 100644 include/osmium/io/detail/string_table.hpp
 create mode 100644 include/osmium/osm/crc.hpp
 copy include/osmium/util/{compatibility.hpp => endian.hpp} (78%)
 create mode 100644 include/protozero/byteswap.hpp
 create mode 100644 include/protozero/exception.hpp
 create mode 100644 include/protozero/pbf_builder.hpp
 create mode 100644 include/protozero/pbf_message.hpp
 create mode 100644 include/protozero/pbf_reader.hpp
 create mode 100644 include/protozero/pbf_types.hpp
 create mode 100644 include/protozero/pbf_writer.hpp
 create mode 100644 include/protozero/varint.hpp
 copy LICENSE.txt => include/utf8.h (84%)
 create mode 100644 include/utf8/checked.h
 create mode 100644 include/utf8/core.h
 create mode 100644 include/utf8/unchecked.h
 create mode 100644 test/t/basic/test_crc.cpp
 create mode 100644 test/t/io/test_string_table.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