[osmium-tool] branch stretch-backports updated (9ab3204 -> 6a9bb94)

Bas Couwenberg sebastic at debian.org
Thu Aug 31 10:01:51 UTC 2017


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

sebastic pushed a change to branch stretch-backports
in repository osmium-tool.

      from  9ab3204   Rebuild for jessie-backports.
      adds  abdb486   New upstream version 1.7.0
      adds  1b69306   Merge tag 'upstream/1.7.0'
      adds  75ea3b0   New upstream release.
      adds  c71de7a   Bump minimum required libosmium2-dev to 2.13.0.
      adds  001aa5e   Set distribution to unstable.
      adds  076ecf8   Ignore test failures on mips64el.
      adds  8b5cb6d   Set distribution to unstable.
      adds  6be5d59   New upstream version 1.7.1
      adds  375f2dc   Merge tag 'upstream/1.7.1'
      adds  f0c36f0   New upstream release.
      adds  5742d5b   Bump minimum required libosmium2-dev to 2.13.1.
      adds  a5168ad   Add patch to fix manpage installation.
      adds  8249b2f   Set distribution to unstable.
       new  9f09352   Merge tag 'debian/1.7.1-1' into stretch-backports
       new  6a9bb94   Rebuild for stretch-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:
 CHANGELOG.md                                       |   73 +-
 CMakeLists.txt                                     |   81 +-
 CONTRIBUTING.md                                    |    6 +
 README.md                                          |    4 +-
 cmake/FindOsmium.cmake                             |    4 +
 debian/changelog                                   |   27 +
 debian/control                                     |    2 +-
 debian/patches/manpages-install.patch              |   14 +
 debian/patches/series                              |    1 +
 debian/rules                                       |    2 +-
 export-example-config/default-config.json          |   16 +
 export-example-config/example-config.json          |   16 +
 extract-example-config/karlsruhe.osm.bz2           |  Bin 16630 -> 16666 bytes
 man/CMakeLists.txt                                 |   79 ++
 man/common-options.md                              |    2 +-
 man/osmium-add-locations-to-ways.md                |   37 +-
 man/osmium-apply-changes.md                        |    4 +
 man/osmium-cat.md                                  |    4 +
 man/osmium-changeset-filter.md                     |    7 +
 man/osmium-check-refs.md                           |   13 +-
 man/osmium-derive-changes.md                       |    4 +
 man/osmium-diff.md                                 |    2 +-
 man/osmium-export.md                               |  282 +++++
 man/osmium-file-formats.md                         |   44 +-
 man/osmium-fileinfo.md                             |    6 +-
 man/osmium-getid.md                                |    9 +-
 man/osmium-index-types.md                          |   62 +
 man/osmium-merge-changes.md                        |    4 +
 man/osmium-merge.md                                |   13 +-
 man/osmium-renumber.md                             |   14 +-
 man/osmium-show.md                                 |    2 +
 man/osmium-sort.md                                 |   20 +-
 man/osmium-time-filter.md                          |   11 +-
 man/osmium.md                                      |    6 +-
 src/CMakeLists.txt                                 |   42 +-
 src/command_add_locations_to_ways.cpp              |   11 +-
 src/command_add_locations_to_ways.hpp              |    6 +-
 src/command_apply_changes.cpp                      |    7 +-
 src/command_cat.hpp                                |    4 -
 src/command_changeset_filter.cpp                   |   10 +-
 src/command_changeset_filter.hpp                   |    1 +
 src/command_check_refs.cpp                         |   52 +-
 src/command_export.cpp                             |  427 +++++++
 src/command_export.hpp                             |   87 ++
 src/command_extract.cpp                            |   85 +-
 src/command_extract.hpp                            |    5 +-
 src/command_fileinfo.cpp                           |   22 +-
 src/command_getid.cpp                              |    2 +
 src/command_getid.hpp                              |    3 +-
 src/command_help.cpp                               |   12 +-
 src/command_renumber.cpp                           |   41 +-
 src/command_renumber.hpp                           |    7 +-
 src/command_show.cpp                               |    1 +
 src/command_show.hpp                               |    2 -
 src/command_tags_filter.cpp                        |   70 +-
 src/command_time_filter.cpp                        |    1 +
 src/commands.cpp                                   |    5 +
 .../extract.cpp => export/export_format.hpp}       |   61 +-
 src/export/export_format_json.cpp                  |  219 ++++
 src/export/export_format_json.hpp                  |   87 ++
 src/export/export_format_text.cpp                  |  200 ++++
 src/export/export_format_text.hpp                  |   71 ++
 src/export/export_handler.cpp                      |  127 ++
 src/export/export_handler.hpp                      |   82 ++
 src/{command_help.hpp => export/options.hpp}       |   46 +-
 src/extract/extract_bbox.cpp                       |    6 +-
 src/extract/extract_polygon.cpp                    |    2 +-
 src/extract/poly_file_parser.hpp                   |    2 +-
 src/extract/strategy_complete_ways.cpp             |    2 +-
 .../strategy_complete_ways_with_history.cpp        |    2 +-
 src/extract/strategy_simple.cpp                    |    2 +-
 src/extract/strategy_smart.cpp                     |    8 +-
 src/io.cpp                                         |    2 -
 src/main.cpp                                       |    5 +
 src/util.cpp                                       |   94 ++
 src/util.hpp                                       |   20 +-
 test/CMakeLists.txt                                |    3 +-
 test/export/CMakeLists.txt                         |   26 +
 .../input-incomplete-relation.osm}                 |   25 +-
 .../input-missing-node.osm}                        |   26 +-
 test/{tags-filter => export}/input.osm             |   26 +-
 test/export/output-incomplete-relation.geojson     |    5 +
 test/export/output-missing-node.geojson            |    5 +
 test/export/output.geojson                         |    6 +
 test/export/output.geojsonseq                      |    4 +
 test/extract/CMakeLists.txt                        |    6 +
 test/extract/config.json                           |   10 +
 test/fileinfo/CMakeLists.txt                       |   11 +-
 test/getid/CMakeLists.txt                          |    2 +-
 test/getid/idfile                                  |    6 +-
 .../output-highway-r.osm => getid/output-file.osm} |    9 +-
 test/include/catch.hpp                             | 1222 +++++++++++++-------
 test/renumber/CMakeLists.txt                       |    4 +-
 .../input.osm => renumber/input-norel.osm}         |   10 +-
 test/renumber/input-sorted.osm                     |    4 +-
 .../{output-change.osc => output-norel-change.osc} |    4 +-
 test/sort/CMakeLists.txt                           |    8 +-
 .../input1.osm => sort/input-neg.osm}              |   31 +-
 test/sort/{output-bounds.osm => output-neg.osm}    |   18 +-
 test/tags-filter/test_unit.cpp                     |   57 -
 test/util/test_unit.cpp                            |   85 ++
 zsh_completion/_osmium                             |   53 +-
 102 files changed, 3517 insertions(+), 961 deletions(-)
 create mode 100644 debian/patches/manpages-install.patch
 create mode 100644 debian/patches/series
 create mode 100644 export-example-config/default-config.json
 create mode 100644 export-example-config/example-config.json
 create mode 100644 man/CMakeLists.txt
 create mode 100644 man/osmium-export.md
 create mode 100644 man/osmium-index-types.md
 create mode 100644 src/command_export.cpp
 create mode 100644 src/command_export.hpp
 copy src/{extract/extract.cpp => export/export_format.hpp} (52%)
 create mode 100644 src/export/export_format_json.cpp
 create mode 100644 src/export/export_format_json.hpp
 create mode 100644 src/export/export_format_text.cpp
 create mode 100644 src/export/export_format_text.hpp
 create mode 100644 src/export/export_handler.cpp
 create mode 100644 src/export/export_handler.hpp
 copy src/{command_help.hpp => export/options.hpp} (57%)
 create mode 100644 test/export/CMakeLists.txt
 copy test/{tags-filter/input.osm => export/input-incomplete-relation.osm} (68%)
 copy test/{getid/source-no-rr.osm => export/input-missing-node.osm} (62%)
 copy test/{tags-filter => export}/input.osm (68%)
 create mode 100644 test/export/output-incomplete-relation.geojson
 create mode 100644 test/export/output-missing-node.geojson
 create mode 100644 test/export/output.geojson
 create mode 100644 test/export/output.geojsonseq
 create mode 100644 test/extract/config.json
 copy test/{tags-filter/output-highway-r.osm => getid/output-file.osm} (71%)
 copy test/{add-locations-to-ways/input.osm => renumber/input-norel.osm} (68%)
 copy test/renumber/{output-change.osc => output-norel-change.osc} (88%)
 copy test/{derive-changes/input1.osm => sort/input-neg.osm} (61%)
 copy test/sort/{output-bounds.osm => output-neg.osm} (61%)
 delete mode 100644 test/tags-filter/test_unit.cpp

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/osmium-tool.git



More information about the Pkg-grass-devel mailing list