Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mapproxy
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian GIS Project
mapproxy
Compare revisions
2aec124abb652847e663d7d7004193ccf1db9b3f to 1b16543cfa0abe02f03eba5a0b12bef7787b62a7
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
debian-gis-team/mapproxy
Select target project
No results found
1b16543cfa0abe02f03eba5a0b12bef7787b62a7
Select Git revision
Swap
Target
debian-gis-team/mapproxy
Select target project
janitor-team/proposed/mapproxy
debian-gis-team/mapproxy
2 results
2aec124abb652847e663d7d7004193ccf1db9b3f
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add upstream patch to fix WMS Capabilties with Python 3.7. (closes: #935887)
· 90539830
Bas Couwenberg
authored
5 years ago
90539830
Set distribution to unstable.
· 1b16543c
Bas Couwenberg
authored
5 years ago
1b16543c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+7
-0
7 additions, 0 deletions
debian/changelog
debian/patches/0001-wms-fix-capabilities-on-Windows-for-Python-3.6.7.patch
+51
-0
51 additions, 0 deletions
...01-wms-fix-capabilities-on-Windows-for-Python-3.6.7.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
59 additions
and
0 deletions
debian/changelog
View file @
1b16543c
mapproxy (1.11.1-2) unstable; urgency=medium
* Add upstream patch to fix WMS Capabilties with Python 3.7.
(closes: #935887)
-- Bas Couwenberg <sebastic@debian.org> Tue, 27 Aug 2019 18:47:19 +0200
mapproxy (1.11.1-1) unstable; urgency=high
* New upstream release.
...
...
This diff is collapsed.
Click to expand it.
debian/patches/0001-wms-fix-capabilities-on-Windows-for-Python-3.6.7.patch
0 → 100644
View file @
1b16543c
Description: wms: fix capabilities on Windows for Python >=3.6.7
Tempita does not correctly parses function signature on Windows with
recent Python versions. Likely introduced with changes in Python
tokenizer package with 3.6.7.. Use keyword arg as workaround.
Author: Oliver Tonnhofer <olt@bogosoft.com>
Origin: https://github.com/mapproxy/mapproxy/commit/81c84d47bbc77da324c36ca718fbca7dde1c1c66
--- a/mapproxy/service/templates/wms100capabilities.xml
+++ b/mapproxy/service/templates/wms100capabilities.xml
@@ -66,7 +66,7 @@
</Format>
</Exception>
-{{def layer_capabilities(layer, with_srs)}}
+{{def layer_capabilities(layer, with_srs=False)}}
<Layer{{if layer.queryable}} queryable="1"{{endif}}>
{{if layer.name}}
<Name>{{ layer.name }}</Name>
--- a/mapproxy/service/templates/wms110capabilities.xml
+++ b/mapproxy/service/templates/wms110capabilities.xml
@@ -101,7 +101,7 @@
</VendorSpecificCapabilities>
{{endif}}
-{{def layer_capabilities(layer, with_srs)}}
+{{def layer_capabilities(layer, with_srs=False)}}
<Layer{{if layer.queryable}} queryable="1"{{endif}}>
{{if layer.name}}
<Name>{{ layer.name }}</Name>
--- a/mapproxy/service/templates/wms111capabilities.xml
+++ b/mapproxy/service/templates/wms111capabilities.xml
@@ -113,7 +113,7 @@
</VendorSpecificCapabilities>
{{endif}}
-{{def layer_capabilities(layer, with_srs)}}
+{{def layer_capabilities(layer, with_srs=False)}}
<Layer{{if layer.queryable}} queryable="1"{{endif}}>
{{if layer.name}}
<Name>{{ layer.name }}</Name>
--- a/mapproxy/service/templates/wms130capabilities.xml
+++ b/mapproxy/service/templates/wms130capabilities.xml
@@ -196,7 +196,7 @@
{{endif}}
</inspire_vs:ExtendedCapabilities>
{{endif}}
-{{def layer_capabilities(layer, with_srs)}}
+{{def layer_capabilities(layer, with_srs=False)}}
{{py: md = bunch(default='', **layer.md)}}
<Layer{{if layer.queryable}} queryable="1"{{endif}}>
This diff is collapsed.
Click to expand it.
debian/patches/series
View file @
1b16543c
...
...
@@ -3,3 +3,4 @@ disable-tag_date.patch
skip-tests-for-missing-files.patch
python3.7-async.patch
spelling-errors.patch
0001-wms-fix-capabilities-on-Windows-for-Python-3.6.7.patch
This diff is collapsed.
Click to expand it.