[libosmium] branch jessie-backports updated (acdc961 -> 6f4d62b)
Bas Couwenberg
sebastic at debian.org
Sat Nov 26 09:21:58 UTC 2016
This is an automated email from the git hooks/post-receive script.
sebastic pushed a change to branch jessie-backports
in repository libosmium.
from acdc961 Rebuild for jessie-backports.
adds 40e0a70 Update dh_installexamples override for -arch only. (closes: #838463)
adds ee051f7 Set distribution to unstable.
adds e92062c Imported Upstream version 2.10.0
adds 2e47af9 Merge tag 'upstream/2.10.0'
adds 681017b New upstream release.
adds 186114b Drop dh_installexamples override, permissions fixed upstream.
adds d5a7bd4 Set distribution to unstable.
adds 3f0c934 Imported Upstream version 2.10.0really2.9.0
adds c1b952f Merge tag 'upstream/2.10.0really2.9.0'
adds f0e2a8b Revert back to 2.9.0 upstream release to fix IdSet related build failures.
adds 82e31d0 Re-instate dh_installexamples override.
adds cfb2b22 Set distribution to unstable.
adds f9e8020 Imported Upstream version 2.10.1
adds 0422a5f Merge tag 'upstream/2.10.1'
adds b3b7e2f New upstream release.
adds db14642 Require at least libprotozero-dev 1.4.3.
adds cfcf46a Drop dh_installexamples override, permissions fixed upstream.
adds ad34ec8 Set distribution to experimental.
adds 547ecff Imported Upstream version 2.10.2
adds cd48eab Merge tag 'upstream/2.10.2'
adds 858dee7 New upstream release.
adds 9806372 Require at least libprotozero-dev 1.4.4.
adds 202231c Set distribution to experimental.
adds 22092f8 Imported Upstream version 2.10.3
adds 02d7e37 Merge tag 'upstream/2.10.3'
adds 7e90257 New upstream release.
adds 7a0e8f6 Require at least libprotozero-dev 1.4.5.
adds f2563ca Set distribution to experimental.
adds 606b895 Move from experimental to unstable.
new b25c580 Merge tag 'debian/2.10.3-1' into jessie-backports
new 6f4d62b 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 | 32 +-
CHANGELOG.md | 92 ++++-
CMakeLists.txt | 8 +-
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 | 55 +++
debian/control | 4 +-
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 | 312 +++++++++++++--
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 | 434 ++++++++++++++++++++
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 | 15 +-
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/object_pointer_collection.hpp | 35 +-
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 | 56 +--
include/osmium/osm/node.hpp | 8 +-
include/osmium/osm/node_ref_list.hpp | 33 +-
include/osmium/osm/object.hpp | 8 +
include/osmium/osm/object_comparisons.hpp | 9 +
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 | 6 +-
include/protozero/byteswap.hpp | 79 ++--
include/protozero/config.hpp | 11 -
include/protozero/iterators.hpp | 53 +--
include/protozero/pbf_message.hpp | 4 +-
include/protozero/pbf_reader.hpp | 50 ++-
include/protozero/pbf_writer.hpp | 9 +-
include/protozero/types.hpp | 18 +-
include/protozero/version.hpp | 4 +-
test/CMakeLists.txt | 53 ++-
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 | 101 +++++
test/t/geom/test_projection.cpp | 143 +++----
test/t/geom/test_tile.cpp | 2 -
test/t/geom/test_wkb.cpp | 20 +-
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/index/test_object_pointer_collection.cpp | 86 ++++
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 | 125 +++---
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 +-
135 files changed, 4544 insertions(+), 2190 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/index/test_object_pointer_collection.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 (77%)
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