This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository tilecache.
commit c6f3d5bfba6078d452eb6762e617082395d5a961 Author: Bas Couwenberg <[email protected]> Date: Sun Jan 17 12:51:12 2016 +0100 Add patch to fix 'unbalanced parenthesis' error. --- debian/changelog | 7 ++++++ debian/patches/series | 1 + debian/patches/unbalanced-parenthesis.patch | 35 +++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/debian/changelog b/debian/changelog index 2f104e6..6292fd0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +tilecache (2.11+ds-2) UNRELEASED; urgency=medium + + * Add patch to fix 'unbalanced parenthesis' error. + (closes: #811262) + + -- Bas Couwenberg <[email protected]> Sun, 17 Jan 2016 12:49:17 +0100 + tilecache (2.11+ds-1) unstable; urgency=medium * Team upload. diff --git a/debian/patches/series b/debian/patches/series index 1a4adf4..236a8b7 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ privacy-breach-uses-embedded-file.patch +unbalanced-parenthesis.patch diff --git a/debian/patches/unbalanced-parenthesis.patch b/debian/patches/unbalanced-parenthesis.patch new file mode 100644 index 0000000..1af3bbe --- /dev/null +++ b/debian/patches/unbalanced-parenthesis.patch @@ -0,0 +1,35 @@ +Description: Fix sphinx-build 'unbalanced parenthesis' error. +Author: Bas Couwenberg <[email protected]> + +--- a/docs/Example.py.txt ++++ b/docs/Example.py.txt +@@ -16,23 +16,12 @@ myService = Service ( + Disk("/www/wms-c/cache"), + { + "basic" : MS.MapServer( "basic", "/www/wms-c/basic.map" ), +- "satellite" : MS.MapServer( "satellite", "/www/wms-c/basic.map", +- extension = "jpeg" ), +- "cascade" : WMS.WMS( "basic", "http://labs.metacarta.com/wms/vmap0?", +- extension = "jpeg" ), +- "DRG" : WMS.WMS( "DRG", "http://terraservice.net/ogcmap.ashx?", +- extension = "jpeg" ), +- "OSM" : WMS.WMS( "roads", +- "http://aesis.metacarta.com/cgi-bin/mapserv?FORMAT=png8&" + +- "map=/home/crschmidt/osm.map&TRANSPARENT=TRUE&", +- extension = "png" ), +- "Boston" : WMS.WMS( +- "border,water,openspace,roads,buildings,rapid_transit", +- "http://nyc.freemap.in/cgi-bin/mapserv?" + +- "map=/www/freemap.in/boston/map/gmaps.map&" ), +- "hfoot" : WMS.WMS( "hfoot", +- "http://beta.sedac.ciesin.columbia.edu/mapserver/wms/hfoot?", +- levels = 20, extension = "jpeg") ++ "satellite" : MS.MapServer( "satellite", "/www/wms-c/basic.map", extension = "jpeg" ), ++ "cascade" : WMS.WMS( "basic", "http://labs.metacarta.com/wms/vmap0?", extension = "jpeg" ), ++ "DRG" : WMS.WMS( "DRG", "http://terraservice.net/ogcmap.ashx?", extension = "jpeg" ), ++ "OSM" : WMS.WMS( "roads", "http://aesis.metacarta.com/cgi-bin/mapserv?FORMAT=png8&map=/home/crschmidt/osm.map&TRANSPARENT=TRUE&", extension = "png" ), ++ "Boston" : WMS.WMS( "border,water,openspace,roads,buildings,rapid_transit", "http://nyc.freemap.in/cgi-bin/mapserv?map=/www/freemap.in/boston/map/gmaps.map&" ), ++ "hfoot" : WMS.WMS( "hfoot", "http://beta.sedac.ciesin.columbia.edu/mapserver/wms/hfoot?", levels = 20, extension = "jpeg" ) + } + ) + -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/tilecache.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

