[mapproxy] branch master updated (dc7c0e9 -> 7a62811)
Bas Couwenberg
sebastic at debian.org
Thu May 18 18:12:01 UTC 2017
This is an automated email from the git hooks/post-receive script.
sebastic pushed a change to branch master
in repository mapproxy.
from dc7c0e9 Mark disable-tag_date.patch as Forwarded: not-needed.
new 3dd1679 Imported Upstream version 1.10.0
new a091624 Merge tag 'upstream/1.10.0'
new a8d631b New upstream release.
new 7360004 Add python{,3}-redis to (build) dependencies.
new 5187405 Drop patches applied upstream.
new 00c65d4 Update mapproxy-seed manpage for new options.
new 764bc03 Add patch to skip tests when data files are missing.
new ffef410 Add python{,3}-boto{3,core} to recommended dependencies for S3 cache.
new 7a62811 Set distribution to experimental.
The 9 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 +-
debian/changelog | 11 +
debian/control | 12 +-
debian/man/mapproxy-seed.1.xml | 37 ++
...ummy-access_contraints-to-clarify-license.patch | 452 ---------------
debian/patches/configuration-typo.patch | 16 -
debian/patches/offline-tests.patch | 30 +-
debian/patches/series | 3 +-
debian/patches/skip-tests-for-missing-files.patch | 67 +++
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 +-
127 files changed, 5204 insertions(+), 1233 deletions(-)
create mode 100644 .github/ISSUE_TEMPLATE.md
delete mode 100644 debian/patches/0001-use-dummy-access_contraints-to-clarify-license.patch
delete mode 100644 debian/patches/configuration-typo.patch
create mode 100644 debian/patches/skip-tests-for-missing-files.patch
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
More information about the Pkg-grass-devel
mailing list