[libosmium] branch jessie-backports updated (ff42c90 -> 77e8803)
Sebastiaan Couwenberg
sebastic at moszumanska.debian.org
Thu Sep 10 22:32:50 UTC 2015
This is an automated email from the git hooks/post-receive script.
sebastic pushed a change to branch jessie-backports
in repository libosmium.
from ff42c90 Rebuild for jessie-backports.
adds 07ba40b Imported Upstream version 2.3.0
adds cab9655 Merge tag 'upstream/2.3.0'
adds 98361ff New upstream release.
adds 83c11be Drop build dependencies on osmpbf & protobuf.
adds 33aa710 Update copyright file, add license & copyright for protozero & utf8.
adds 12b81d3 Install protozero headers too.
adds 8fa4808 Add (build) dependency on libutfcpp-dev for utf8 headers.
adds 6d7d583 Sort build dependencies.
adds d01d1f0 Add dependencies on -dev packages to libosmium2-dev for their headers.
adds ef1170c Limit libosmium2-dev dependencies to imporant ones only.
adds bfed398 Set distribution to unstable.
adds 8250c38 Add patch to fix FTBFS on big endian architectures.
adds 8d65ed1 Set distribution to unstable.
adds 88c3759 Add patch to fix test failues on big endian architectures.
adds 0f5ff70 Set distribution to unstable.
adds 93fff14 Imported Upstream version 2.4.0
adds 22b0df8 Merge tag 'upstream/2.4.0'
adds 39beb6a New upstream release.
adds d547cad Drop patches, applied upstream.
adds 3187d4e Update Vcs-Browser URL to use HTTPS.
adds a2a756e Update watch file to use lowercase RC in uversionmangle.
adds 33491dd Set distribution to unstable.
adds d90f498 Imported Upstream version 2.4.1
adds 29ce501 Merge tag 'upstream/2.4.1'
adds a669105 New upstream release.
adds 1ec110a Set distribution to unstable.
adds db282d2 Don't install protozero headers, use libprotozero-dev instead.
adds ce665f2 Set distribution to unstable.
adds 5c48576 Ignore test failures only on problematic architectures.
adds 09492b9 Set distribution to unstable.
new aa95afb Merge tag 'debian/2.4.1-3' into jessie-backports
new 77e8803 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:
.travis.yml | 10 +-
CHANGELOG.md | 82 +-
CMakeLists.txt | 30 +-
EXTERNAL_LICENSES.txt | 233 ++++
README.md | 4 +
appveyor.yml | 43 +-
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 | 77 +-
cmake/iwyu.sh | 4 +-
debian/changelog | 56 +
debian/control | 27 +-
debian/copyright | 46 +
debian/rules | 7 +
debian/watch | 2 +-
examples/CMakeLists.txt | 26 +-
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 | 246 ----
examples/osmium_toogr2.cpp | 333 -----
examples/osmium_toogr2_exp.cpp | 307 -----
examples/osmium_use_node_cache.cpp | 2 -
include/boost_unicode_iterator.hpp | 776 -----------
include/gdalcpp.hpp | 302 +++++
include/osmium/area/multipolygon_collector.hpp | 1 +
include/osmium/area/problem_reporter_ogr.hpp | 130 +-
include/osmium/builder/builder.hpp | 24 +-
include/osmium/builder/osm_object_builder.hpp | 104 +-
include/osmium/geom/factory.hpp | 1 +
include/osmium/geom/geos.hpp | 35 +-
include/osmium/geom/ogr.hpp | 30 +-
include/osmium/geom/tile.hpp | 4 +-
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/input_format.hpp | 11 +-
include/osmium/io/detail/opl_output_format.hpp | 75 +-
include/osmium/io/detail/output_format.hpp | 4 +-
include/osmium/io/detail/pbf.hpp | 23 +-
include/osmium/io/detail/pbf_decoder.hpp | 765 +++++++++++
include/osmium/io/detail/pbf_input_format.hpp | 94 +-
include/osmium/io/detail/pbf_output_format.hpp | 1059 ++++++---------
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/read_write.hpp | 3 +
include/osmium/io/detail/string_table.hpp | 264 ++++
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 | 71 +-
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/io/reader.hpp | 6 +-
include/osmium/io/writer.hpp | 2 +-
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 | 231 ++++
include/osmium/osm/entity.hpp | 1 +
include/osmium/osm/node_ref.hpp | 2 +-
include/osmium/osm/timestamp.hpp | 3 +-
include/osmium/osm/types.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 | 120 +-
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 | 132 ++
include/protozero/version.hpp | 22 +
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 | 9 +-
test/CMakeLists.txt | 7 +
test/data-tests/testdata-multipolygon.cpp | 171 +--
test/data-tests/testdata-overview.cpp | 154 +--
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 | 70 +
test/t/basic/test_node.cpp | 8 +
test/t/basic/test_relation.cpp | 20 +-
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 | 137 +-
test/t/util/test_delta.cpp | 24 +
test/t/util/test_memory_mapping.cpp | 72 +-
130 files changed, 9191 insertions(+), 5106 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 examples/osmium_toogr.cpp
delete mode 100644 examples/osmium_toogr2.cpp
delete mode 100644 examples/osmium_toogr2_exp.cpp
delete mode 100644 include/boost_unicode_iterator.hpp
create mode 100644 include/gdalcpp.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
create mode 100644 include/protozero/version.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