[osmium-tool] branch upstream updated (7a5015d -> 41f01ee)
Sebastiaan Couwenberg
sebastic at moszumanska.debian.org
Sat Jul 4 14:49:19 UTC 2015
This is an automated email from the git hooks/post-receive script.
sebastic pushed a change to branch upstream
in repository osmium-tool.
from 7a5015d Imported Upstream version 1.0.1
new f61facd Imported Upstream version 1.1.0
new 41f01ee Imported Upstream version 1.1.1
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 | 77 +-
.ycm_extra_conf.py | 2 +
CHANGELOG.md | 46 +-
CMakeLists.txt | 44 +-
LICENSE-rapidjson.txt | 57 +
appveyor.yml | 42 +-
cmake/FindOsmium.cmake | 2 +-
cmake/run_test_compare_output.cmake | 66 +
include/rapidjson/allocators.h | 261 +++
include/rapidjson/document.h | 2039 ++++++++++++++++++++++
include/rapidjson/encodedstream.h | 261 +++
include/rapidjson/encodings.h | 625 +++++++
include/rapidjson/error/en.h | 65 +
include/rapidjson/error/error.h | 146 ++
include/rapidjson/filereadstream.h | 88 +
include/rapidjson/filewritestream.h | 91 +
include/rapidjson/internal/biginteger.h | 280 +++
include/rapidjson/internal/diyfp.h | 247 +++
include/rapidjson/internal/dtoa.h | 217 +++
include/rapidjson/internal/ieee754.h | 77 +
include/rapidjson/internal/itoa.h | 304 ++++
include/rapidjson/internal/meta.h | 181 ++
include/rapidjson/internal/pow10.h | 55 +
include/rapidjson/internal/stack.h | 179 ++
include/rapidjson/internal/strfunc.h | 39 +
include/rapidjson/internal/strtod.h | 270 +++
include/rapidjson/memorybuffer.h | 70 +
include/rapidjson/memorystream.h | 61 +
include/rapidjson/msinttypes/inttypes.h | 316 ++++
include/rapidjson/msinttypes/stdint.h | 300 ++++
include/rapidjson/pointer.h | 1313 ++++++++++++++
include/rapidjson/prettywriter.h | 207 +++
include/rapidjson/rapidjson.h | 654 +++++++
include/rapidjson/reader.h | 1452 +++++++++++++++
include/rapidjson/stringbuffer.h | 93 +
include/rapidjson/writer.h | 395 +++++
man/manpage.template | 3 +-
man/osmium-check-refs.md | 65 +
man/osmium-fileinfo.md | 61 +-
man/{osmium-merge-changes.md => osmium-getid.md} | 23 +-
man/osmium-renumber.md | 102 ++
scripts/travis_install.sh | 15 +
scripts/travis_script.sh | 31 +
src/command_apply_changes.cpp | 159 +-
src/command_apply_changes.hpp | 15 +-
src/command_cat.cpp | 144 +-
src/command_cat.hpp | 14 +-
src/command_check_refs.cpp | 269 +++
src/{command_help.hpp => command_check_refs.hpp} | 19 +-
src/command_fileinfo.cpp | 577 +++++-
src/command_fileinfo.hpp | 9 +-
src/command_getid.cpp | 187 ++
src/{command_fileinfo.hpp => command_getid.hpp} | 27 +-
src/command_help.cpp | 35 +-
src/command_merge_changes.cpp | 107 +-
src/command_merge_changes.hpp | 16 +-
src/command_renumber.cpp | 244 +++
src/command_renumber.hpp | 76 +
src/command_time_filter.cpp | 146 +-
src/command_time_filter.hpp | 17 +-
src/main.cpp | 11 +-
src/osmc.hpp | 199 ++-
test/CMakeLists.txt | 57 +
test/cat/CMakeLists.txt | 19 +
test/cat/input1.osm | 6 +
test/cat/input2.osm | 6 +
test/cat/output-cat12.osm | 9 +
test/cat/output-cat21.osm | 9 +
test/check-refs/CMakeLists.txt | 13 +
test/check-refs/nw-okay.osm | 15 +
test/check-refs/nwr-okay.osm | 15 +
test/fileinfo/CMakeLists.txt | 18 +
test/fileinfo/fi1-result.txt | 27 +
test/fileinfo/fi1.osm | 6 +
test/getid/CMakeLists.txt | 15 +
test/getid/input.osm | 22 +
test/getid/output.osm | 10 +
test/help/CMakeLists.txt | 18 +
test/renumber/CMakeLists.txt | 28 +
test/renumber/input-change.osc | 19 +
test/renumber/input-sorted.osm | 22 +
test/renumber/output-change.osc | 19 +
test/renumber/output-sorted.osm | 22 +
test/time-filter/CMakeLists.txt | 31 +
test/time-filter/input.osh | 15 +
test/time-filter/output-last.osm | 5 +
test/time-filter/output-range-0-5.osh | 13 +
test/time-filter/output-range-1-2.osh | 6 +
test/time-filter/output-range-1a-2a.osh | 10 +
test/time-filter/output-range-2-3.osh | 7 +
test/time-filter/output-range-2-3a.osh | 9 +
test/time-filter/output-range-2-4.osh | 9 +
test/time-filter/output-ts1.osm | 6 +
test/time-filter/output-ts2.osm | 6 +
test/time-filter/output-ts3.osm | 6 +
zsh_completion/_osmium | 152 +-
96 files changed, 13132 insertions(+), 711 deletions(-)
create mode 100644 LICENSE-rapidjson.txt
create mode 100644 cmake/run_test_compare_output.cmake
create mode 100644 include/rapidjson/allocators.h
create mode 100644 include/rapidjson/document.h
create mode 100644 include/rapidjson/encodedstream.h
create mode 100644 include/rapidjson/encodings.h
create mode 100644 include/rapidjson/error/en.h
create mode 100644 include/rapidjson/error/error.h
create mode 100644 include/rapidjson/filereadstream.h
create mode 100644 include/rapidjson/filewritestream.h
create mode 100755 include/rapidjson/internal/biginteger.h
create mode 100644 include/rapidjson/internal/diyfp.h
create mode 100644 include/rapidjson/internal/dtoa.h
create mode 100644 include/rapidjson/internal/ieee754.h
create mode 100644 include/rapidjson/internal/itoa.h
create mode 100644 include/rapidjson/internal/meta.h
create mode 100644 include/rapidjson/internal/pow10.h
create mode 100644 include/rapidjson/internal/stack.h
create mode 100644 include/rapidjson/internal/strfunc.h
create mode 100644 include/rapidjson/internal/strtod.h
create mode 100644 include/rapidjson/memorybuffer.h
create mode 100644 include/rapidjson/memorystream.h
create mode 100644 include/rapidjson/msinttypes/inttypes.h
create mode 100644 include/rapidjson/msinttypes/stdint.h
create mode 100644 include/rapidjson/pointer.h
create mode 100644 include/rapidjson/prettywriter.h
create mode 100644 include/rapidjson/rapidjson.h
create mode 100644 include/rapidjson/reader.h
create mode 100644 include/rapidjson/stringbuffer.h
create mode 100644 include/rapidjson/writer.h
create mode 100644 man/osmium-check-refs.md
copy man/{osmium-merge-changes.md => osmium-getid.md} (61%)
create mode 100644 man/osmium-renumber.md
create mode 100755 scripts/travis_install.sh
create mode 100755 scripts/travis_script.sh
create mode 100644 src/command_check_refs.cpp
copy src/{command_help.hpp => command_check_refs.hpp} (72%)
create mode 100644 src/command_getid.cpp
copy src/{command_fileinfo.hpp => command_getid.hpp} (64%)
create mode 100644 src/command_renumber.cpp
create mode 100644 src/command_renumber.hpp
create mode 100644 test/CMakeLists.txt
create mode 100644 test/cat/CMakeLists.txt
create mode 100644 test/cat/input1.osm
create mode 100644 test/cat/input2.osm
create mode 100644 test/cat/output-cat12.osm
create mode 100644 test/cat/output-cat21.osm
create mode 100644 test/check-refs/CMakeLists.txt
create mode 100644 test/check-refs/nw-okay.osm
create mode 100644 test/check-refs/nwr-okay.osm
create mode 100644 test/fileinfo/CMakeLists.txt
create mode 100644 test/fileinfo/fi1-result.txt
create mode 100644 test/fileinfo/fi1.osm
create mode 100644 test/getid/CMakeLists.txt
create mode 100644 test/getid/input.osm
create mode 100644 test/getid/output.osm
create mode 100644 test/help/CMakeLists.txt
create mode 100644 test/renumber/CMakeLists.txt
create mode 100644 test/renumber/input-change.osc
create mode 100644 test/renumber/input-sorted.osm
create mode 100644 test/renumber/output-change.osc
create mode 100644 test/renumber/output-sorted.osm
create mode 100644 test/time-filter/CMakeLists.txt
create mode 100644 test/time-filter/input.osh
create mode 100644 test/time-filter/output-last.osm
create mode 100644 test/time-filter/output-range-0-5.osh
create mode 100644 test/time-filter/output-range-1-2.osh
create mode 100644 test/time-filter/output-range-1a-2a.osh
create mode 100644 test/time-filter/output-range-2-3.osh
create mode 100644 test/time-filter/output-range-2-3a.osh
create mode 100644 test/time-filter/output-range-2-4.osh
create mode 100644 test/time-filter/output-ts1.osm
create mode 100644 test/time-filter/output-ts2.osm
create mode 100644 test/time-filter/output-ts3.osm
--
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