[osmium-tool] branch jessie-backports updated (92f6d04 -> 8468cc7)

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Fri Dec 11 11:16:51 UTC 2015


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

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

      from  92f6d04   Rebuild for jessie-backports.
      adds  69e72ea   Rebuild with libosmium 2.5.2.
      adds  c8e5ea4   Imported Upstream version 1.3.0
      adds  3c54de4   Merge tag 'upstream/1.3.0'
      adds  d7db075   New upstream release.
      adds  1d3caff   Bump minimum required libosmium2-dev to 2.5.3.
      adds  cfcbb65   Set distribution to experimental.
      adds  3862839   Move from experimental to unstable.
       new  3448fe3   Merge tag 'debian/1.3.0-1' into jessie-backports
       new  8468cc7   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:
 .gitattributes                                     |   5 +
 CHANGELOG.md                                       |  18 +-
 CMakeLists.txt                                     |   5 +-
 README.md                                          |   1 +
 cmake/FindOsmium.cmake                             |  13 +-
 debian/changelog                                   |  19 ++
 debian/control                                     |   2 +-
 man/osmium-apply-changes.md                        |   6 +
 man/osmium-cat.md                                  |   6 +
 man/osmium-changeset-filter.md                     | 117 +++++++++++
 man/osmium-check-refs.md                           |   2 +
 man/osmium-file-formats.md                         |  17 +-
 man/osmium-fileinfo.md                             |   2 +
 man/osmium-getid.md                                |   6 +
 man/osmium-merge-changes.md                        |   6 +
 man/osmium-renumber.md                             |   6 +
 man/{osmium-getid.md => osmium-sort.md}            |  27 ++-
 man/osmium-time-filter.md                          |   6 +
 man/osmium.md                                      |  14 ++
 src/cmd.hpp                                        |  13 +-
 src/command_apply_changes.cpp                      |  24 +--
 src/command_cat.cpp                                |  25 +--
 src/command_changeset_filter.cpp                   | 232 +++++++++++++++++++++
 ...ime_filter.hpp => command_changeset_filter.hpp} |  27 ++-
 src/command_check_refs.cpp                         |  12 +-
 src/command_fileinfo.cpp                           |   9 +-
 src/command_getid.cpp                              |  45 ++--
 src/command_merge_changes.cpp                      |  29 +--
 src/command_renumber.cpp                           |  30 +--
 src/command_sort.cpp                               | 122 +++++++++++
 src/{command_check_refs.hpp => command_sort.hpp}   |  16 +-
 src/command_time_filter.cpp                        |  59 ++++--
 src/io.cpp                                         |  41 +++-
 src/main.cpp                                       |   2 +-
 test/changeset-filter/CMakeLists.txt               |  70 +++++++
 test/changeset-filter/input-open.osm               |   7 +
 test/changeset-filter/input1.osm                   |  10 +
 test/changeset-filter/output-empty.osm             |   3 +
 test/changeset-filter/output-open.osm              |   7 +
 test/changeset-filter/output1-all.osm              |  10 +
 test/changeset-filter/output1-first.osm            |   6 +
 test/changeset-filter/output1-second.osm           |   7 +
 test/sort/CMakeLists.txt                           |  26 +++
 .../input-data.osm => sort/input-bounds1.osm}      |  18 +-
 test/sort/input-bounds2.osm                        |  11 +
 test/{apply-changes => sort}/input-change.osc      |   6 +-
 test/sort/input-history1.osm                       |  12 ++
 test/sort/input-history2.osm                       |   7 +
 .../input-data.osm => sort/input-simple1.osm}      |  17 +-
 test/sort/input-simple2.osm                        |  10 +
 test/{getid/input.osm => sort/output-bounds.osm}   |   3 +-
 .../input-change.osc => sort/output-change.osc}    |   2 +-
 .../input-data.osm => sort/output-history.osm}     |  16 +-
 test/{getid/input.osm => sort/output-simple.osm}   |   2 +-
 zsh_completion/_osmium                             |  38 +++-
 55 files changed, 1032 insertions(+), 220 deletions(-)
 create mode 100644 .gitattributes
 create mode 100644 man/osmium-changeset-filter.md
 copy man/{osmium-getid.md => osmium-sort.md} (69%)
 create mode 100644 src/command_changeset_filter.cpp
 copy src/{command_time_filter.hpp => command_changeset_filter.hpp} (58%)
 create mode 100644 src/command_sort.cpp
 copy src/{command_check_refs.hpp => command_sort.hpp} (76%)
 create mode 100644 test/changeset-filter/CMakeLists.txt
 create mode 100644 test/changeset-filter/input-open.osm
 create mode 100644 test/changeset-filter/input1.osm
 create mode 100644 test/changeset-filter/output-empty.osm
 create mode 100644 test/changeset-filter/output-open.osm
 create mode 100644 test/changeset-filter/output1-all.osm
 create mode 100644 test/changeset-filter/output1-first.osm
 create mode 100644 test/changeset-filter/output1-second.osm
 create mode 100644 test/sort/CMakeLists.txt
 copy test/{apply-changes/input-data.osm => sort/input-bounds1.osm} (72%)
 create mode 100644 test/sort/input-bounds2.osm
 copy test/{apply-changes => sort}/input-change.osc (100%)
 create mode 100644 test/sort/input-history1.osm
 create mode 100644 test/sort/input-history2.osm
 copy test/{apply-changes/input-data.osm => sort/input-simple1.osm} (72%)
 create mode 100644 test/sort/input-simple2.osm
 copy test/{getid/input.osm => sort/output-bounds.osm} (89%)
 copy test/{apply-changes/input-change.osc => sort/output-change.osc} (93%)
 copy test/{apply-changes/input-data.osm => sort/output-history.osm} (57%)
 copy test/{getid/input.osm => sort/output-simple.osm} (94%)

-- 
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