[osrm] branch master updated (3f992ad -> 5cf6510)

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Sat Aug 22 19:42:33 UTC 2015


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

sebastic pushed a change to branch master
in repository osrm.

      from  3f992ad   Merge tag 'debian/4.6.1-1'
       new  264c2fa   Improve version matching & mangling in watch file.
       new  3d1b318   Imported Upstream version 4.7.0
       new  b06efba   Merge tag 'upstream/4.7.0'
       new  64aaa89   Imported Upstream version 4.7.1
       new  47c76e8   Merge tag 'upstream/4.7.1'
       new  126b9df   New upstream release.
       new  5cf6510   Update copyright file, add copyright holders

The 7 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:
 .gitignore                                         |   4 +
 .travis.yml                                        |   3 +-
 CMakeLists.txt                                     |   8 +-
 Gemfile.lock                                       |  27 +-
 README.md                                          |  31 +-
 algorithms/polyline_compressor.cpp                 |  38 +
 algorithms/polyline_compressor.hpp                 |   4 +
 algorithms/tiny_components.hpp                     |   2 +-
 appveyor-build.bat                                 | 113 +++
 appveyor.yml                                       |  43 +-
 build-local.bat                                    |  19 +
 contractor/contractor.hpp                          |   5 +-
 contractor/contractor_options.cpp                  | 135 ++++
 .../contractor_options.hpp                         |  27 +-
 contractor/edge_based_graph_factory.cpp            |  90 ++-
 contractor/edge_based_graph_factory.hpp            |  17 +-
 contractor/processing_chain.cpp                    | 507 +++++--------
 contractor/processing_chain.hpp                    |  58 +-
 data_structures/dynamic_graph.hpp                  |   3 +
 data_structures/import_edge.cpp                    |   7 +
 data_structures/import_edge.hpp                    |   5 +-
 data_structures/node_based_graph.hpp               | 268 +++----
 data_structures/restriction_map.hpp                |   7 +-
 data_structures/route_parameters.cpp               |   8 +
 data_structures/static_rtree.hpp                   |  38 +-
 datastore.cpp                                      |   5 +-
 debian/changelog                                   |   9 +
 debian/copyright                                   |   1 +
 debian/watch                                       |   5 +-
 descriptors/description_factory.cpp                |   7 +-
 extract.cpp                                        |   2 +-
 extractor/extraction_containers.cpp                | 842 +++++++++++++--------
 extractor/extraction_containers.hpp                |  17 +-
 extractor/extraction_helper_functions.hpp          |   2 +-
 extractor/extractor.cpp                            |  21 +-
 extractor/extractor.hpp                            |   9 +-
 extractor/extractor_callbacks.cpp                  | 148 ++--
 extractor/extractor_options.cpp                    |   4 +
 extractor/extractor_options.hpp                    |   1 +
 extractor/internal_extractor_edge.hpp              | 112 +--
 extractor/restriction_parser.cpp                   |   2 +-
 extractor/scripting_environment.cpp                |   2 +-
 features/bicycle/access.feature                    |   6 +-
 features/bicycle/access_node.feature               |  35 +-
 features/bicycle/surface.feature                   |   2 +-
 features/car/maxspeed.feature                      |  27 +
 features/car/names.feature                         |  10 +-
 features/foot/access.feature                       |   4 +-
 features/foot/access_node.feature                  |   4 +-
 features/foot/surface.feature                      |   2 +-
 features/foot/way.feature                          |   6 +
 features/nearest/pick.feature                      |  20 +-
 features/options/prepare/help.feature              |   2 +-
 features/step_definitions/data.rb                  |   4 +
 features/step_definitions/distance_matrix.rb       |   2 +-
 features/step_definitions/locate.rb                |   4 +-
 features/step_definitions/matching.rb              |   2 +-
 features/step_definitions/nearest.rb               |   4 +-
 features/step_definitions/routability.rb           |   2 +-
 features/step_definitions/routing.rb               |   2 +-
 features/support/cucumber.rb                       |  76 --
 features/support/env.rb                            |  10 +-
 features/support/hooks.rb                          |  16 +-
 features/support/http.rb                           |  34 +
 features/support/locate.rb                         |  17 +-
 features/support/match.rb                          |  12 +-
 features/support/nearest.rb                        |  17 +-
 features/support/route.rb                          |  14 +-
 features/testbot/ferry.feature                     |  30 +
 features/testbot/loop.feature                      |  19 +
 features/testbot/post.feature                      | 100 +++
 features/testbot/snap.feature                      |  42 +-
 features/testbot/via.feature                       |  22 +-
 include/osrm/route_parameters.hpp                  |   2 +
 prepare.cpp                                        |  70 +-
 profiles/bicycle.lua                               | 123 +--
 profiles/car.lua                                   |  62 +-
 profiles/foot.lua                                  | 291 +++----
 profiles/lib/access.lua                            |   8 +-
 profiles/lib/maxspeed.lua                          |   6 +-
 routing_algorithms/alternative_path.hpp            |   4 +-
 routing_algorithms/shortest_path.hpp               |   6 +-
 server/api_grammar.hpp                             |   7 +-
 server/request_parser.cpp                          |  71 +-
 server/request_parser.hpp                          |   8 +-
 tools/components.cpp                               | 142 ++--
 tools/graph_compare.cpp                            | 199 -----
 unit_tests/algorithms/duration_parsing.cpp         |  24 +-
 unit_tests/algorithms/geometry_string.cpp          |  74 ++
 util/fingerprint.hpp                               |  13 +-
 util/fingerprint_impl.hpp.in                       |  45 +-
 util/graph_loader.hpp                              | 444 ++---------
 util/iso_8601_duration_parser.hpp                  |   2 +-
 util/lua_util.hpp                                  |   5 +-
 94 files changed, 2517 insertions(+), 2292 deletions(-)
 create mode 100644 appveyor-build.bat
 create mode 100644 build-local.bat
 create mode 100644 contractor/contractor_options.cpp
 copy extractor/extractor_options.hpp => contractor/contractor_options.hpp (70%)
 delete mode 100644 features/support/cucumber.rb
 create mode 100644 features/support/http.rb
 create mode 100644 features/testbot/post.feature
 delete mode 100644 tools/graph_compare.cpp
 create mode 100644 unit_tests/algorithms/geometry_string.cpp

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



More information about the Pkg-grass-devel mailing list