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

sebastic pushed a change to branch upstream
in repository mapproxy.

      from  12ab634   Imported Upstream version 1.9.0
       new  3dd1679   Imported Upstream version 1.10.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:
 .github/ISSUE_TEMPLATE.md                          |  37 ++
 .gitignore                                         |   2 +
 .travis.yml                                        |  13 +-
 AUTHORS.txt                                        |   3 +-
 CHANGES.txt                                        |  48 ++
 README.rst                                         |   8 +-
 doc/auth.rst                                       |  14 +-
 doc/caches.rst                                     | 244 ++++++++-
 doc/conf.py                                        |   4 +-
 doc/configuration.rst                              |  32 +-
 doc/coverages.rst                                  |  93 +++-
 doc/deployment.rst                                 |   6 +-
 doc/install.rst                                    |   2 +-
 doc/install_windows.rst                            |  36 +-
 doc/mapproxy_util.rst                              |  12 +-
 doc/seed.rst                                       |  47 +-
 doc/services.rst                                   |   4 +-
 doc/sources.rst                                    |  44 +-
 doc/yaml/cache_conf.yaml                           |  37 +-
 doc/yaml/grid_conf.yaml                            |   7 +-
 doc/yaml/merged_conf.yaml                          |   7 +-
 doc/yaml/meta_conf.yaml                            |   7 +-
 doc/yaml/simple_conf.yaml                          |   7 +-
 mapproxy/cache/__init__.py                         |  14 +-
 mapproxy/cache/compact.py                          | 302 +++++++++++
 mapproxy/cache/file.py                             | 177 +-----
 mapproxy/cache/geopackage.py                       | 604 +++++++++++++++++++++
 mapproxy/cache/mbtiles.py                          |  83 ++-
 mapproxy/cache/path.py                             | 226 ++++++++
 mapproxy/cache/redis.py                            |  88 +++
 mapproxy/cache/renderd.py                          |   4 +
 mapproxy/cache/s3.py                               | 170 ++++++
 mapproxy/cache/tile.py                             |  97 +++-
 mapproxy/client/arcgis.py                          |  44 ++
 mapproxy/client/wms.py                             |  11 +-
 mapproxy/compat/image.py                           |  46 +-
 mapproxy/config/coverage.py                        |  38 +-
 mapproxy/config/defaults.py                        |   1 +
 mapproxy/config/loader.py                          | 179 +++++-
 mapproxy/config/spec.py                            |  54 +-
 .../config_template/base_config/full_example.yaml  |   8 +-
 mapproxy/config_template/paster/etc/mapproxy.yaml  |  12 +-
 mapproxy/featureinfo.py                            |  41 +-
 mapproxy/grid.py                                   |  15 +-
 mapproxy/image/mask.py                             |  27 +-
 mapproxy/image/merge.py                            |  61 ++-
 mapproxy/image/tile.py                             |  30 +-
 mapproxy/image/transform.py                        |  12 +-
 mapproxy/layer.py                                  |   2 +-
 mapproxy/request/arcgis.py                         | 144 ++++-
 mapproxy/request/wms/__init__.py                   |   2 +
 mapproxy/response.py                               |   2 +-
 mapproxy/script/export.py                          |  22 +-
 mapproxy/script/scales.py                          |   4 +-
 mapproxy/seed/cleanup.py                           | 104 +++-
 mapproxy/seed/script.py                            | 135 ++++-
 mapproxy/seed/seeder.py                            | 151 +++---
 mapproxy/seed/util.py                              |  91 +---
 mapproxy/service/templates/wmts100capabilities.xml |   2 +-
 mapproxy/service/wms.py                            |   4 +-
 mapproxy/source/arcgis.py                          |  19 +-
 mapproxy/test/http.py                              |  92 +++-
 mapproxy/test/system/fixture/arcgis.yaml           |  20 +-
 mapproxy/test/system/fixture/cache.gpkg            | Bin 0 -> 45056 bytes
 mapproxy/test/system/fixture/cache_geopackage.yaml |  56 ++
 mapproxy/test/system/fixture/cache_s3.yaml         |  58 ++
 mapproxy/test/system/fixture/coverage.yaml         |   4 +-
 mapproxy/test/system/fixture/formats.yaml          |   4 +-
 mapproxy/test/system/fixture/inspire.yaml          |   4 +-
 mapproxy/test/system/fixture/inspire_full.yaml     |   4 +-
 mapproxy/test/system/fixture/layer.yaml            |   4 +-
 mapproxy/test/system/fixture/legendgraphic.yaml    |   4 +-
 mapproxy/test/system/fixture/mixed_mode.yaml       |   6 +-
 mapproxy/test/system/fixture/scalehints.yaml       |   4 +-
 mapproxy/test/system/fixture/seedonly.yaml         |   4 +-
 .../test/system/fixture/util-conf-wms-111-cap.xml  |   2 +-
 .../system/fixture/util_wms_capabilities111.xml    |   2 +-
 .../system/fixture/util_wms_capabilities130.xml    |   2 +-
 mapproxy/test/system/fixture/wms_versions.yaml     |   4 +-
 mapproxy/test/system/fixture/wmts.yaml             |   4 +-
 mapproxy/test/system/test_arcgis.py                |  48 +-
 mapproxy/test/system/test_auth.py                  |   2 +-
 mapproxy/test/system/test_cache_geopackage.py      | 128 +++++
 mapproxy/test/system/test_cache_s3.py              | 115 ++++
 mapproxy/test/system/test_kml.py                   |   2 +-
 mapproxy/test/system/test_multi_cache_layers.py    |  10 +-
 mapproxy/test/system/test_tms.py                   |   2 +-
 mapproxy/test/system/test_wms.py                   |  23 +-
 mapproxy/test/test_http_helper.py                  |  24 +-
 mapproxy/test/unit/fixture/cache.gpkg              | Bin 0 -> 45056 bytes
 mapproxy/test/unit/test_async.py                   |   4 +-
 mapproxy/test/unit/test_cache.py                   |  64 +++
 mapproxy/test/unit/test_cache_compact.py           | 127 +++++
 mapproxy/test/unit/test_cache_geopackage.py        | 221 ++++++++
 mapproxy/test/unit/test_cache_redis.py             |  71 +++
 mapproxy/test/unit/test_cache_s3.py                |  85 +++
 mapproxy/test/unit/test_cache_tile.py              | 103 +++-
 mapproxy/test/unit/test_client.py                  |  16 +-
 mapproxy/test/unit/test_client_arcgis.py           |  73 +++
 mapproxy/test/unit/test_conf_loader.py             |  19 +
 mapproxy/test/unit/test_featureinfo.py             |  22 +-
 mapproxy/test/unit/test_geom.py                    | 148 ++++-
 mapproxy/test/unit/test_grid.py                    |  16 +
 mapproxy/test/unit/test_image.py                   |  50 +-
 mapproxy/test/unit/test_image_mask.py              |  45 +-
 mapproxy/test/unit/test_request.py                 |  49 +-
 mapproxy/test/unit/test_seed.py                    |  52 +-
 mapproxy/test/unit/test_wms_layer.py               |   8 +-
 mapproxy/util/async.py                             |   2 +-
 mapproxy/util/coverage.py                          |  89 ++-
 mapproxy/util/ext/serving.py                       |  17 +-
 mapproxy/util/ext/wmsparse/test/test_parse.py      |   2 +-
 .../util/ext/wmsparse/test/wms-omniscale-111.xml   |   2 +-
 mapproxy/util/geom.py                              |  87 ++-
 mapproxy/util/py.py                                |   9 +-
 release.py                                         |   8 +-
 requirements-tests.txt                             |  44 +-
 setup.py                                           |   2 +-
 tox.ini                                            |   2 +-
 119 files changed, 5053 insertions(+), 756 deletions(-)
 create mode 100644 .github/ISSUE_TEMPLATE.md
 create mode 100644 mapproxy/cache/compact.py
 create mode 100644 mapproxy/cache/geopackage.py
 create mode 100644 mapproxy/cache/path.py
 create mode 100644 mapproxy/cache/redis.py
 create mode 100644 mapproxy/cache/s3.py
 create mode 100644 mapproxy/test/system/fixture/cache.gpkg
 create mode 100644 mapproxy/test/system/fixture/cache_geopackage.yaml
 create mode 100644 mapproxy/test/system/fixture/cache_s3.yaml
 create mode 100644 mapproxy/test/system/test_cache_geopackage.py
 create mode 100644 mapproxy/test/system/test_cache_s3.py
 create mode 100644 mapproxy/test/unit/fixture/cache.gpkg
 create mode 100644 mapproxy/test/unit/test_cache_compact.py
 create mode 100644 mapproxy/test/unit/test_cache_geopackage.py
 create mode 100644 mapproxy/test/unit/test_cache_redis.py
 create mode 100644 mapproxy/test/unit/test_cache_s3.py
 create mode 100644 mapproxy/test/unit/test_client_arcgis.py

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

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

Reply via email to