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

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

      from  41f01ee   Imported Upstream version 1.1.1
       new  838f6b3   Imported Upstream version 1.2.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                                        |    7 +-
 CHANGELOG.md                                       |   25 +-
 CMakeLists.txt                                     |    4 +-
 LICENSE-rapidjson.txt                              |   24 -
 README.md                                          |   20 +-
 appveyor.yml                                       |   10 -
 cmake/FindOSMPBF.cmake                             |   50 -
 cmake/FindOsmium.cmake                             |    8 +-
 cmake/run_test_compare_output.cmake                |   21 +-
 man/manpage.template                               |    1 +
 man/osmium-apply-changes.md                        |   36 +-
 man/osmium-cat.md                                  |   15 +-
 man/osmium-check-refs.md                           |   13 +-
 man/osmium-file-formats.md                         |    2 +-
 man/osmium-fileinfo.md                             |   32 +-
 man/osmium-getid.md                                |   19 +-
 man/osmium-merge-changes.md                        |   24 +-
 man/osmium-renumber.md                             |   21 +-
 man/osmium-time-filter.md                          |   19 +-
 man/osmium.md                                      |   33 +-
 scripts/travis_install.sh                          |    7 -
 scripts/travis_script.sh                           |    2 -
 src/{osmc.hpp => cmd.hpp}                          |  164 +-
 src/cmd_factory.cpp                                |   74 +
 src/command_apply_changes.hpp                      |    4 +-
 src/command_cat.cpp                                |   57 +-
 src/command_cat.hpp                                |   11 +-
 src/command_check_refs.hpp                         |    4 +-
 src/command_fileinfo.cpp                           |   43 +-
 src/command_fileinfo.hpp                           |    4 +-
 src/command_getid.cpp                              |   24 +-
 src/command_getid.hpp                              |    8 +-
 src/command_help.cpp                               |   27 +-
 src/command_help.hpp                               |    2 +-
 src/command_merge_changes.hpp                      |    4 +-
 src/command_renumber.cpp                           |  111 +-
 src/command_renumber.hpp                           |    5 +-
 src/command_time_filter.cpp                        |    1 +
 src/command_time_filter.hpp                        |    4 +-
 src/{command_help.hpp => exception.hpp}            |   27 +-
 src/io.cpp                                         |  121 +
 src/main.cpp                                       |   26 +-
 test/CMakeLists.txt                                |   50 +-
 test/apply-changes/CMakeLists.txt                  |   17 +
 test/{renumber => apply-changes}/input-change.osc  |   10 +-
 .../input.osm => apply-changes/input-data.osm}     |    0
 test/apply-changes/output.osh                      |   30 +
 .../input.osm => apply-changes/simplified.osm}     |   12 +-
 test/cat/CMakeLists.txt                            |    9 +-
 test/cat/output1.osm.opl                           |    3 +
 test/cat/test_setup.cpp                            |   80 +
 test/fileinfo/CMakeLists.txt                       |    2 +-
 test/fileinfo/fi1-result.txt                       |    2 +-
 test/formats/CMakeLists.txt                        |   58 +
 test/formats/empty-nocompression.osm.pbf           |  Bin 0 -> 54 bytes
 test/formats/empty-nodensenodes-nometadata.osm.pbf |  Bin 0 -> 52 bytes
 test/formats/empty-nodensenodes.osm.pbf            |  Bin 0 -> 52 bytes
 test/formats/empty-nometadata.osm.pbf              |  Bin 0 -> 64 bytes
 test/formats/empty.osm                             |    3 +
 test/formats/empty.osm.opl                         |    0
 test/formats/empty.osm.pbf                         |  Bin 0 -> 64 bytes
 test/formats/f1-nocompression.osm.pbf              |  Bin 0 -> 388 bytes
 test/formats/f1-nodensenodes-nometadata.osm.pbf    |  Bin 0 -> 289 bytes
 test/formats/f1-nodensenodes.osm.pbf               |  Bin 0 -> 402 bytes
 test/formats/f1-nometadata.osm.pbf                 |  Bin 0 -> 299 bytes
 test/{getid/input.osm => formats/f1.osm}           |   21 +-
 test/formats/f1.osm.opl                            |    7 +
 test/formats/f1.osm.pbf                            |  Bin 0 -> 404 bytes
 test/getid/CMakeLists.txt                          |    2 +-
 test/help/CMakeLists.txt                           |    9 +-
 test/include/catch.hpp                             | 9416 ++++++++++++++++++++
 test/include/test.hpp                              |    4 +
 test/io/Makefile.in                                |  280 +
 test/{getid => io}/input.osm                       |    8 +-
 test/merge-changes/CMakeLists.txt                  |   17 +
 test/merge-changes/change1.osc                     |   24 +
 .../input-change.osc => merge-changes/change2.osc} |   10 +-
 test/merge-changes/merged.osc                      |   44 +
 test/merge-changes/simplified.osc                  |   37 +
 test/{getid => misc}/CMakeLists.txt                |   10 +-
 test/renumber/CMakeLists.txt                       |    4 +-
 test/renumber/input-change.osc                     |    2 +-
 test/renumber/input-sorted.osm                     |    5 +-
 test/renumber/output-change.osc                    |    4 +-
 test/renumber/output-sorted.osm                    |    1 +
 test/time-filter/CMakeLists.txt                    |    2 +-
 test/time-filter/test_setup.cpp                    |   15 +
 test/unit_tests.cpp                                |    2 +
 88 files changed, 10760 insertions(+), 554 deletions(-)
 delete mode 100644 cmake/FindOSMPBF.cmake
 rename src/{osmc.hpp => cmd.hpp} (51%)
 create mode 100644 src/cmd_factory.cpp
 copy src/{command_help.hpp => exception.hpp} (66%)
 create mode 100644 src/io.cpp
 create mode 100644 test/apply-changes/CMakeLists.txt
 copy test/{renumber => apply-changes}/input-change.osc (54%)
 copy test/{getid/input.osm => apply-changes/input-data.osm} (100%)
 create mode 100644 test/apply-changes/output.osh
 copy test/{getid/input.osm => apply-changes/simplified.osm} (62%)
 create mode 100644 test/cat/output1.osm.opl
 create mode 100644 test/cat/test_setup.cpp
 create mode 100644 test/formats/CMakeLists.txt
 create mode 100644 test/formats/empty-nocompression.osm.pbf
 create mode 100644 test/formats/empty-nodensenodes-nometadata.osm.pbf
 create mode 100644 test/formats/empty-nodensenodes.osm.pbf
 create mode 100644 test/formats/empty-nometadata.osm.pbf
 create mode 100644 test/formats/empty.osm
 create mode 100644 test/formats/empty.osm.opl
 create mode 100644 test/formats/empty.osm.pbf
 create mode 100644 test/formats/f1-nocompression.osm.pbf
 create mode 100644 test/formats/f1-nodensenodes-nometadata.osm.pbf
 create mode 100644 test/formats/f1-nodensenodes.osm.pbf
 create mode 100644 test/formats/f1-nometadata.osm.pbf
 copy test/{getid/input.osm => formats/f1.osm} (50%)
 create mode 100644 test/formats/f1.osm.opl
 create mode 100644 test/formats/f1.osm.pbf
 create mode 100644 test/include/catch.hpp
 create mode 100644 test/include/test.hpp
 create mode 100644 test/io/Makefile.in
 copy test/{getid => io}/input.osm (77%)
 create mode 100644 test/merge-changes/CMakeLists.txt
 create mode 100644 test/merge-changes/change1.osc
 copy test/{renumber/input-change.osc => merge-changes/change2.osc} (54%)
 create mode 100644 test/merge-changes/merged.osc
 create mode 100644 test/merge-changes/simplified.osc
 copy test/{getid => misc}/CMakeLists.txt (50%)
 create mode 100644 test/time-filter/test_setup.cpp
 create mode 100644 test/unit_tests.cpp

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

_______________________________________________
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Reply via email to