[otb] branch master updated (b41a7e5 -> 9f5b5fa)

2015-12-18 Thread Rashad Kanavath
This is an automated email from the git hooks/post-receive script.

rashad-guest pushed a change to branch master
in repository otb.

  from  b41a7e5   avoid double qoutes in upstream version number variable 
OTB_VERSION_FULL
   new  9f5b5fa   fix python path later. need to know how debian finds 
site-packages directory

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:
 debian/rules | 1 -
 1 file changed, 1 deletion(-)

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Bug#808279: Patch for python-pil bug #808238

2015-12-18 Thread Eric Soroos

Package: tilestache
Version: 1.49.8-1
Severity: normal

This is a fix for bug #808238 from Python-pil

Tilestache uses PIL.Image.fromstring, which has been deprecated in 
Pillow since 2.0.0, and has now been removed in 3.0.0.


Patch follows:

diff --git a/TileStache/Mapnik.py b/TileStache/Mapnik.py
index 24120a8..64d74bf 100644
--- a/TileStache/Mapnik.py
+++ b/TileStache/Mapnik.py
@@ -128,7 +128,12 @@ class ImageProvider:
 # always release the lock
 global_mapnik_lock.release()

-img = Image.fromstring('RGBA', (width, height), img.tostring())
+if hasattr(Image, 'frombytes'):
+# Image.fromstring is deprecated past Pillow 2.0
+img = Image.frombytes('RGBA', (width, height), img.tostring())
+else:
+# PIL still uses Image.fromstring
+img = Image.fromstring('RGBA', (width, height), img.tostring()

 logging.debug('TileStache.Mapnik.ImageProvider.renderArea() 
%dx%d in %.3f from %s', width, height, time() - start_time, self.mapfile)


diff --git a/TileStache/Pixels.py b/TileStache/Pixels.py
index d17faa0..bfebbb0 100644
--- a/TileStache/Pixels.py
+++ b/TileStache/Pixels.py
@@ -100,7 +100,13 @@ def apply_palette(image, palette, t_index):

 indexes.append(mapping[(r, g, b)])

-output = Image.fromstring('P', image.size, ''.join(indexes))
+if hasattr(Image, 'frombytes'):
+# Image.fromstring is deprecated past Pillow 2.0
+output = Image.frombytes('P', image.size, ''.join(indexes))
+else:
+# PIL still uses Image.fromstring
+output = Image.fromstring('P', image.size, ''.join(indexes))
+
 bits = int(ceil(log(len(palette)) / log(2)))

 palette += [(0, 0, 0)] * (256 - len(palette))

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[otb] 02/02: update lintian-overrides

2015-12-18 Thread Rashad Kanavath
This is an automated email from the git hooks/post-receive script.

rashad-guest pushed a commit to branch master
in repository otb.

commit ddd20f9953c4f519f4573ce515f1f89b2e3c7bd8
Author: Rashad Kanavath 
Date:   Fri Dec 18 12:16:01 2015 +0100

update lintian-overrides
---
 debian/libotb.lintian-overrides  | 13 -
 debian/libotbopenthreadsadapters-5.0-1.lintian-overrides |  2 ++
 2 files changed, 2 insertions(+), 13 deletions(-)

diff --git a/debian/libotb.lintian-overrides b/debian/libotb.lintian-overrides
deleted file mode 100644
index 50d5f6a..000
--- a/debian/libotb.lintian-overrides
+++ /dev/null
@@ -1,13 +0,0 @@
-# Build uses -D_FORTIFY_SOURCE=2, but hardening-check reports:
-#  Fortify Source functions: no, only unprotected functions found!
-# unprotected: fread
-# unprotected: memmove
-# unprotected: memcpy
-libotb: hardening-no-fortify-functions usr/lib/*/libOTBIOMSTAR-*.so.*
-
-# Build uses -D_FORTIFY_SOURCE=2, but hardening-check reports:
-#  Fortify Source functions: no, only unprotected functions found!
-# unprotected: strcpy
-# unprotected: memcpy
-libotb: hardening-no-fortify-functions usr/lib/*/libOTBVectorDataBase-*.so.*
-
diff --git a/debian/libotbopenthreadsadapters-5.0-1.lintian-overrides 
b/debian/libotbopenthreadsadapters-5.0-1.lintian-overrides
new file mode 100644
index 000..86dbbc0
--- /dev/null
+++ b/debian/libotbopenthreadsadapters-5.0-1.lintian-overrides
@@ -0,0 +1,2 @@
+# Empty library with no code. Lintian reports library not linked against libc/
+libotbopenthreadsadapters-5.0-1: library-not-linked-against-libc 
usr/lib/*/libOTBOpenThreadsAdapters-*.so.*

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[otb] branch master updated (9f5b5fa -> ddd20f9)

2015-12-18 Thread Rashad Kanavath
This is an automated email from the git hooks/post-receive script.

rashad-guest pushed a change to branch master
in repository otb.

  from  9f5b5fa   fix python path later. need to know how debian finds 
site-packages directory
   new  5e7afb3   update control file genereated from template
   new  ddd20f9   update lintian-overrides

The 2 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:
 debian/control   |  9 +
 debian/libotb.lintian-overrides  | 13 -
 debian/libotbopenthreadsadapters-5.0-1.lintian-overrides |  2 ++
 3 files changed, 7 insertions(+), 17 deletions(-)
 delete mode 100644 debian/libotb.lintian-overrides
 create mode 100644 debian/libotbopenthreadsadapters-5.0-1.lintian-overrides

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[otb] 01/02: update control file genereated from template

2015-12-18 Thread Rashad Kanavath
This is an automated email from the git hooks/post-receive script.

rashad-guest pushed a commit to branch master
in repository otb.

commit 5e7afb391a8eede7b572d81e74df41ec6099d8ff
Author: Rashad Kanavath 
Date:   Fri Dec 18 12:15:30 2015 +0100

update control file genereated from template
---
 debian/control | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/debian/control b/debian/control
index 7800b60..e1bdf0e 100644
--- a/debian/control
+++ b/debian/control
@@ -740,7 +740,8 @@ Description: ORFEO Toolbox Python API for applications
 
 Package: libotb
 Architecture: any
-Depends: libotbcommon-5.0-1 (= ${binary:Version}),
+Depends: ${misc:Depends},
+ libotbcommon-5.0-1 (= ${binary:Version}),
  libotbcarto-5.0-1 (= ${binary:Version}),
  libotbpolarimetry-5.0-1 (= ${binary:Version}),
  libotbstreaming-5.0-1 (= ${binary:Version}),
@@ -797,11 +798,11 @@ Depends: libotbcommon-5.0-1 (= ${binary:Version}),
  libotbossimplugins-5.0-1 (= ${binary:Version}),
  libotbprojection-5.0-1 (= ${binary:Version}),
  libotbsiftfast-5.0-1 (= ${binary:Version}),
- ${misc:Depends}
-Description: Plugins for ORFEO Toolbox library
+Description: ORFEO Toolbox library metapackage
  ORFEO Toolbox (OTB) is distributed as an open source library of image
  processing algorithms. OTB is based on the medical image processing library
  ITK and offers particular functionalities for remote sensing image processing
  in general and for high spatial resolution images in particular.
  .
- This package contains all shared libraries used by OTB
+ This metapackage provides all shared libraries used by OTB
+ .

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Bug#808279: Patch for python-pil bug #808238

2015-12-18 Thread Sebastiaan Couwenberg
Control: tags -1 pending

Hi Eric,

Thanks for the patch, it will be included in the next tilestache upload
to unstable and I've also forwarded it upstream.

Kind Regards,

Bas

-- 
 GPG Key ID: 4096R/6750F10AE88D4AF1
Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Processed: Re: Bug#808279: Patch for python-pil bug #808238

2015-12-18 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 pending
Bug #808279 [tilestache] Patch for python-pil bug #808238
Added tag(s) pending.

-- 
808279: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808279
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[tilestache] 02/05: Add upstream metadata.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository tilestache.

commit d4b7b7d913d1ef9065e44f8a1a68d705773e0b51
Author: Bas Couwenberg 
Date:   Fri Dec 18 13:10:18 2015 +0100

Add upstream metadata.
---
 debian/changelog | 1 +
 debian/upstream/metadata | 6 ++
 2 files changed, 7 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 693cb49..6f2db89 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ tilestache (1.49.8-2) UNRELEASED; urgency=medium
 
   * Add patch by Eric Soroos for Pillow 3.0.0 support.
 (closes: #808279)
+  * Add upstream metadata.
 
  -- Bas Couwenberg   Fri, 18 Dec 2015 13:06:22 +0100
 
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 000..d7a026c
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,6 @@
+---
+Bug-Database: https://github.com/TileStache/TileStache/issues
+Bug-Submit: https://github.com/TileStache/TileStache/issues/new
+Name: TileStache
+Repository: https://github.com/TileStache/TileStache.git
+Repository-Browse: https://github.com/TileStache/TileStache

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[tilestache] branch master updated (6d28fe5 -> 259c1cd)

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository tilestache.

  from  6d28fe5   Set distribution to unstable.
   new  77c8b15   Add patch by Eric Soroos for Pillow 3.0.0 support.
   new  d4b7b7d   Add upstream metadata.
   new  5c43129   Mark patches as Forwarded.
   new  b803d48   Update Vcs-Browser URL to use HTTPS.
   new  259c1cd   Set distribution to unstable.

The 5 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:
 debian/changelog |  9 ++
 debian/control   |  2 +-
 debian/patches/00-use_system_font.patch  |  6 ++--
 debian/patches/01-fix_manpages.patch |  8 ++---
 debian/patches/03-use_system_modestmaps.patch|  6 ++--
 debian/patches/04-fix_for_newer_modestmaps.patch |  8 ++---
 debian/patches/pillow-3.0.0.patch| 39 
 debian/patches/series|  1 +
 debian/upstream/metadata |  6 
 9 files changed, 70 insertions(+), 15 deletions(-)
 create mode 100644 debian/patches/pillow-3.0.0.patch
 create mode 100644 debian/upstream/metadata

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[tilestache] 01/05: Add patch by Eric Soroos for Pillow 3.0.0 support.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository tilestache.

commit 77c8b15b059237ea09b86aace86f81051811095e
Author: Bas Couwenberg 
Date:   Fri Dec 18 13:07:13 2015 +0100

Add patch by Eric Soroos for Pillow 3.0.0 support.
---
 debian/changelog  |  7 +++
 debian/patches/pillow-3.0.0.patch | 38 ++
 debian/patches/series |  1 +
 3 files changed, 46 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 37be91b..693cb49 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tilestache (1.49.8-2) UNRELEASED; urgency=medium
+
+  * Add patch by Eric Soroos for Pillow 3.0.0 support.
+(closes: #808279)
+
+ -- Bas Couwenberg   Fri, 18 Dec 2015 13:06:22 +0100
+
 tilestache (1.49.8-1) unstable; urgency=medium
 
   [ Andrew Harvey ]
diff --git a/debian/patches/pillow-3.0.0.patch 
b/debian/patches/pillow-3.0.0.patch
new file mode 100644
index 000..460ece5
--- /dev/null
+++ b/debian/patches/pillow-3.0.0.patch
@@ -0,0 +1,38 @@
+Description: Add support for Pillow 3.0.0.
+ Tilestache uses PIL.Image.fromstring, which has been deprecated in Pillow 
since 2.0.0, and has now been removed in 3.0.0.
+Author: Eric Soroos 
+Bug-Debian: https://bugs.debian.org/808279
+
+--- a/TileStache/Mapnik.py
 b/TileStache/Mapnik.py
+@@ -128,7 +128,12 @@ class ImageProvider:
+ # always release the lock
+ global_mapnik_lock.release()
+ 
+-img = Image.fromstring('RGBA', (width, height), img.tostring())
++if hasattr(Image, 'frombytes'):
++# Image.fromstring is deprecated past Pillow 2.0
++img = Image.frombytes('RGBA', (width, height), img.tostring())
++else:
++# PIL still uses Image.fromstring
++img = Image.fromstring('RGBA', (width, height), img.tostring() 
+ 
+ logging.debug('TileStache.Mapnik.ImageProvider.renderArea() %dx%d in 
%.3f from %s', width, height, time() - start_time, self.mapfile)
+ 
+--- a/TileStache/Pixels.py
 b/TileStache/Pixels.py
+@@ -100,7 +100,13 @@ def apply_palette(image, palette, t_inde
+ 
+ indexes.append(mapping[(r, g, b)])
+ 
+-output = Image.fromstring('P', image.size, ''.join(indexes))
++if hasattr(Image, 'frombytes'):
++# Image.fromstring is deprecated past Pillow 2.0
++output = Image.frombytes('P', image.size, ''.join(indexes))
++else:
++# PIL still uses Image.fromstring
++output = Image.fromstring('P', image.size, ''.join(indexes))
++ 
+ bits = int(ceil(log(len(palette)) / log(2)))
+ 
+ palette += [(0, 0, 0)] * (256 - len(palette))
diff --git a/debian/patches/series b/debian/patches/series
index 74ebdf9..0b75c5e 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,3 +2,4 @@
 01-fix_manpages.patch
 03-use_system_modestmaps.patch
 04-fix_for_newer_modestmaps.patch
+pillow-3.0.0.patch

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[tilestache] 03/05: Mark patches as Forwarded.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository tilestache.

commit 5c431297d9f6e0ea11c8b289d18c86d508feda40
Author: Bas Couwenberg 
Date:   Fri Dec 18 13:35:58 2015 +0100

Mark patches as Forwarded.
---
 debian/patches/00-use_system_font.patch  | 6 +++---
 debian/patches/01-fix_manpages.patch | 8 
 debian/patches/03-use_system_modestmaps.patch| 6 +++---
 debian/patches/04-fix_for_newer_modestmaps.patch | 8 
 debian/patches/pillow-3.0.0.patch| 1 +
 5 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/debian/patches/00-use_system_font.patch 
b/debian/patches/00-use_system_font.patch
index eeb5f1e..7aa449c 100644
--- a/debian/patches/00-use_system_font.patch
+++ b/debian/patches/00-use_system_font.patch
@@ -7,9 +7,9 @@ Forwarded: not-needed
  TileStache/Goodies/Providers/Grid.py |3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)
 
 tilestache.orig/TileStache/Goodies/Providers/Grid.py
-+++ tilestache/TileStache/Goodies/Providers/Grid.py
-@@ -139,8 +139,9 @@
+--- a/TileStache/Goodies/Providers/Grid.py
 b/TileStache/Goodies/Providers/Grid.py
+@@ -139,8 +139,9 @@ class UTM:
  self.spacing = int(spacing)
  self.tick = int(tick)
  
diff --git a/debian/patches/01-fix_manpages.patch 
b/debian/patches/01-fix_manpages.patch
index c10851f..a648dea 100644
--- a/debian/patches/01-fix_manpages.patch
+++ b/debian/patches/01-fix_manpages.patch
@@ -1,15 +1,15 @@
 From: David Paleino 
 Subject: fix hyphen-used-as-minus-sign
 Origin: vendor
-Forwarded: no
+Forwarded: https://github.com/TileStache/TileStache/pull/246
 
 ---
  man/tilestache-seed.1 |4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 tilestache.orig/man/tilestache-seed.1
-+++ tilestache/man/tilestache-seed.1
-@@ -54,13 +54,13 @@
+--- a/man/tilestache-seed.1
 b/man/tilestache-seed.1
+@@ -54,13 +54,13 @@ More information in http://tilestache.or
  Optional output file for tiles, will be created as an MBTiles 1.1 tileset. 
See http://mbtiles.org for more information.
  .TP
  .B \-\-from\-mbtiles
diff --git a/debian/patches/03-use_system_modestmaps.patch 
b/debian/patches/03-use_system_modestmaps.patch
index 2723036..2d2e1ec 100644
--- a/debian/patches/03-use_system_modestmaps.patch
+++ b/debian/patches/03-use_system_modestmaps.patch
@@ -6,9 +6,9 @@ Forwarded: not-needed
  TileStache/Core.py |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 tilestache.orig/TileStache/Core.py
-+++ tilestache/TileStache/Core.py
-@@ -588,7 +588,7 @@
+--- a/TileStache/Core.py
 b/TileStache/Core.py
+@@ -702,7 +702,7 @@ def _preview(layer):
  
  
  TileStache Preview: %(layername)s
diff --git a/debian/patches/04-fix_for_newer_modestmaps.patch 
b/debian/patches/04-fix_for_newer_modestmaps.patch
index d77817d..2c44e84 100644
--- a/debian/patches/04-fix_for_newer_modestmaps.patch
+++ b/debian/patches/04-fix_for_newer_modestmaps.patch
@@ -2,15 +2,15 @@ Description: fix for modestmaps versions >= 2.0.0
  Modestmaps >= 2.0.0 have a different API to 1.0.0. This patch makes the code
  >=2.0.0 compatible.
 Author: Andrew Harvey 
-Forwarded: no
+Forwarded: https://github.com/TileStache/TileStache/pull/246
 
 ---
  TileStache/Core.py |5 +
  1 file changed, 1 insertion(+), 4 deletions(-)
 
 tilestache.orig/TileStache/Core.py
-+++ tilestache/TileStache/Core.py
-@@ -724,15 +724,12 @@
+--- a/TileStache/Core.py
 b/TileStache/Core.py
+@@ -724,15 +724,12 @@ def _preview(layer):
  

Processing of tilestache_1.49.8-2_amd64.changes

2015-12-18 Thread Debian FTP Masters
tilestache_1.49.8-2_amd64.changes uploaded successfully to localhost
along with the files:
  tilestache_1.49.8-2.dsc
  tilestache_1.49.8-2.debian.tar.xz
  tilestache_1.49.8-2_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


tilestache_1.49.8-2_amd64.changes ACCEPTED into unstable

2015-12-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 18 Dec 2015 13:44:43 +0100
Source: tilestache
Binary: tilestache
Architecture: source all
Version: 1.49.8-2
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 tilestache - map tiles caching system
Closes: 808279
Changes:
 tilestache (1.49.8-2) unstable; urgency=medium
 .
   * Add patch by Eric Soroos for Pillow 3.0.0 support.
 (closes: #808279)
   * Add upstream metadata.
   * Update Vcs-Browser URL to use HTTPS.
Checksums-Sha1:
 57b76d1eb37ddb9f30e44a7c47b705e11c86593b 2017 tilestache_1.49.8-2.dsc
 9b252c962acf6c2383613a433bbc1a28c77f8607 7880 tilestache_1.49.8-2.debian.tar.xz
 b9342071a7fcb8de13180f81d126d0c921563a69 156764 tilestache_1.49.8-2_all.deb
Checksums-Sha256:
 390e34d840a58985c7b19c736455fac5af7196fe802d6e0cf418f28409d079c8 2017 
tilestache_1.49.8-2.dsc
 82cd576dda636182e54d1f990dfa0aeab9716284ce38b2b47e19193cb471ae58 7880 
tilestache_1.49.8-2.debian.tar.xz
 84858cd72b3c2a237a637fd49399e35c4928b9a8ea13ea209180ad00b37f5610 156764 
tilestache_1.49.8-2_all.deb
Files:
 b9fb2decbf120d3a2e9aaf3238458c00 2017 web extra tilestache_1.49.8-2.dsc
 ff6979167dbc0583be186226a8fcc295 7880 web extra 
tilestache_1.49.8-2.debian.tar.xz
 50a3c8757b3c1cb4086b3f18a014a841 156764 web extra tilestache_1.49.8-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWdAN6AAoJEGdQ8QrojUrxBRcP/jiRNmoAls070ao0thmfJgYU
Jn1yR+tI9Iux+xn47ISO9dnyVXuqu3kMXaC4ijepLxHWCrPqzTlIaaznhXBw+OIc
wl5scXA4v5Q4QOLjEGiSnfuLqoAQnv/XKmD5wXeNzSQy6vJAx7MvFeXd47QJOQWg
PPoOTP/ilNI4nhvgfWwyKddrMSocwuv9AsrEsPgTYAqBYEwElJdQLDynkOFTBLqn
m7PsLdh9riakNyZSop2bICunY4dvTzb0tTFUSWj8GbwuXZ4CAh3luVsFgHM5QOuW
ugG5Avod7XauQ5g5HhgSpIw1XQW6QAKn5f+UjjSiwvZc5bSVO7+Vhcmk6t2hDR+N
tWh+b6ycALDWmHIEP2vmhpa3iTTa5ZST2gg0pl+ASL0PFzBFVTz5/RDUUPu1LeSy
id3ebUvMoubxK+0MV+B/u9PSYsNtq7I9g0LiIERgVJKhpQWogvrBUGjp+e96SD4Y
jQrMze+sUz3eghwFTUqLmHbbuF7Y9A8x7Ww/o7Eb1vIPPV5Yn2QY6FUKRFZC0txy
E73PA6OA/UKG8jxU4JmjtCeMk6kpm9pMmT4Vqg1q9nXQcJKQ4kJ9h66R+96HdIJc
V7FyMid/ifYZD3kMJ2Nyu8OS+00oh9ZTy39ZQ5wAVrP32X4PYkjXW0yG36WK7Fby
KBYr0ueN6QkXnrPA4uaK
=J/0f
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Bug#808279: marked as done (Patch for python-pil bug #808238)

2015-12-18 Thread Debian Bug Tracking System
Your message dated Fri, 18 Dec 2015 13:28:15 +
with message-id 
and subject line Bug#808279: fixed in tilestache 1.49.8-2
has caused the Debian Bug report #808279,
regarding Patch for python-pil bug #808238
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
808279: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808279
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: tilestache
Version: 1.49.8-1
Severity: normal

This is a fix for bug #808238 from Python-pil

Tilestache uses PIL.Image.fromstring, which has been deprecated in 
Pillow since 2.0.0, and has now been removed in 3.0.0.


Patch follows:

diff --git a/TileStache/Mapnik.py b/TileStache/Mapnik.py
index 24120a8..64d74bf 100644
--- a/TileStache/Mapnik.py
+++ b/TileStache/Mapnik.py
@@ -128,7 +128,12 @@ class ImageProvider:
 # always release the lock
 global_mapnik_lock.release()

-img = Image.fromstring('RGBA', (width, height), img.tostring())
+if hasattr(Image, 'frombytes'):
+# Image.fromstring is deprecated past Pillow 2.0
+img = Image.frombytes('RGBA', (width, height), img.tostring())
+else:
+# PIL still uses Image.fromstring
+img = Image.fromstring('RGBA', (width, height), img.tostring()

 logging.debug('TileStache.Mapnik.ImageProvider.renderArea() 
%dx%d in %.3f from %s', width, height, time() - start_time, self.mapfile)


diff --git a/TileStache/Pixels.py b/TileStache/Pixels.py
index d17faa0..bfebbb0 100644
--- a/TileStache/Pixels.py
+++ b/TileStache/Pixels.py
@@ -100,7 +100,13 @@ def apply_palette(image, palette, t_index):

 indexes.append(mapping[(r, g, b)])

-output = Image.fromstring('P', image.size, ''.join(indexes))
+if hasattr(Image, 'frombytes'):
+# Image.fromstring is deprecated past Pillow 2.0
+output = Image.frombytes('P', image.size, ''.join(indexes))
+else:
+# PIL still uses Image.fromstring
+output = Image.fromstring('P', image.size, ''.join(indexes))
+
 bits = int(ceil(log(len(palette)) / log(2)))

 palette += [(0, 0, 0)] * (256 - len(palette))
--- End Message ---
--- Begin Message ---
Source: tilestache
Source-Version: 1.49.8-2

We believe that the bug you reported is fixed in the latest version of
tilestache, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 808...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bas Couwenberg  (supplier of updated tilestache package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 18 Dec 2015 13:44:43 +0100
Source: tilestache
Binary: tilestache
Architecture: source all
Version: 1.49.8-2
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 tilestache - map tiles caching system
Closes: 808279
Changes:
 tilestache (1.49.8-2) unstable; urgency=medium
 .
   * Add patch by Eric Soroos for Pillow 3.0.0 support.
 (closes: #808279)
   * Add upstream metadata.
   * Update Vcs-Browser URL to use HTTPS.
Checksums-Sha1:
 57b76d1eb37ddb9f30e44a7c47b705e11c86593b 2017 tilestache_1.49.8-2.dsc
 9b252c962acf6c2383613a433bbc1a28c77f8607 7880 tilestache_1.49.8-2.debian.tar.xz
 b9342071a7fcb8de13180f81d126d0c921563a69 156764 tilestache_1.49.8-2_all.deb
Checksums-Sha256:
 390e34d840a58985c7b19c736455fac5af7196fe802d6e0cf418f28409d079c8 2017 
tilestache_1.49.8-2.dsc
 82cd576dda636182e54d1f990dfa0aeab9716284ce38b2b47e19193cb471ae58 7880 
tilestache_1.49.8-2.debian.tar.xz
 84858cd72b3c2a237a637fd49399e35c4928b9a8ea13ea209180ad00b37f5610 156764 
tilestache_1.49.8-2_all.deb
Files:
 b9fb2decbf120d3a2e9aaf3238458c00 2017 web extra tilestache_1.49.8-2.dsc
 ff6979167dbc0583be186226a8fcc295 7880 web extra 
tilestache_1.49.8-2.debian.tar.xz
 50a3c8757b3c1cb4086b3f18a014a841 156764 web extra tilestache_1.49.8-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWdAN6AAoJEGdQ8QrojUrxBRcP/jiRNmoAls070ao0thmfJgYU

osm-gps-map_1.1.0-1_amd64.changes ACCEPTED into unstable, unstable

2015-12-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 15 Dec 2015 23:11:56 +0100
Source: osm-gps-map
Binary: libosmgpsmap-1.0-dev libosmgpsmap-1.0-1 libosmgpsmap-1.0-dbg 
gir1.2-osmgpsmap-1.0
Architecture: source amd64
Version: 1.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Ross Gammon 
Description:
 gir1.2-osmgpsmap-1.0 - GTK+ library to embed OpenStreetMap maps - Python 
bindings
 libosmgpsmap-1.0-1 - GTK+ library to embed OpenStreetMap maps
 libosmgpsmap-1.0-dbg - GTK+ library to embed OpenStreetMap maps - debugging 
symbols
 libosmgpsmap-1.0-dev - GTK+ library to embed OpenStreetMap maps - development 
files
Changes:
 osm-gps-map (1.1.0-1) unstable; urgency=medium
 .
   [ Ross Gammon ]
   * New upstream release (LP: #1507381)
   * Refresh patch
   * Update copyright file
   * Drop lintian override as it is no longer required
   * Rename -dev & -dbg packages
   * Add Conflict and Replace for renamed packages
   * Switch to dh_autoreconf
   * Update debian/clean file
   * Reinstate d-shlibmove & add option for unversioned -dev package
   * Install built docs instead of source ones
   * Enable parallel builds
   * Drop README.source as quilt is now well known
 .
   [ Bas Couwenberg ]
   * Update library & package name in symbols file for SONAME bump.
   * Use symbol version without debian revision.
   * Update symbols for version 1.1.0.
   * Update Vcs-Browser URL to use HTTPS.
Checksums-Sha1:
 c29b7b58e82c5ca98902811ab7e78b94eb4fdde6 2461 osm-gps-map_1.1.0-1.dsc
 afdec4b731b456b6c9d1ea233f0a8e9116c99017 80164 osm-gps-map_1.1.0.orig.tar.gz
 4b3342d1ecc58424938c47be5d7ba318ccf0ab39 6832 osm-gps-map_1.1.0-1.debian.tar.xz
 ce8a40e8a6b6a5a6f94b4a45ee244dac1ac7bb60 15292 
gir1.2-osmgpsmap-1.0_1.1.0-1_amd64.deb
 f697f58340a6a065c63932c2f41da178db00b620 40552 
libosmgpsmap-1.0-1_1.1.0-1_amd64.deb
 1192e09baa1ed3acd57f7c46f908646c98faa843 102712 
libosmgpsmap-1.0-dbg_1.1.0-1_amd64.deb
 6a0ee700dd2622318c9708a2b76cd71517bb7178 69754 
libosmgpsmap-1.0-dev_1.1.0-1_amd64.deb
Checksums-Sha256:
 e68dbc6931e6247589ead9c9a63405aa9a01d10cb001ce63dfbf816da13700c5 2461 
osm-gps-map_1.1.0-1.dsc
 027004459f2f29232d4ca0c914f835e6c06b720aef1daa9b470d9d5e1b71159b 80164 
osm-gps-map_1.1.0.orig.tar.gz
 bbcba2f22c30d32af97f4285b5bcaf05b4af5908cb137f441ba49497516d39ec 6832 
osm-gps-map_1.1.0-1.debian.tar.xz
 92108af16034ea6cdc4b64465a9631441eb99a020aa7823a4f139caae6e03116 15292 
gir1.2-osmgpsmap-1.0_1.1.0-1_amd64.deb
 468470b83fd6574b49ad3b720787a3bcf59bc6ab6a6af3ff8f467bcef8dd79e7 40552 
libosmgpsmap-1.0-1_1.1.0-1_amd64.deb
 a740d0c150e4ba8816efcf834cb3bdee437fbc330dc2f9a5bd107739cf692322 102712 
libosmgpsmap-1.0-dbg_1.1.0-1_amd64.deb
 9de8b91753834495d2549fe2eeaf8526896ff3ffde74b2c4ce3f918f74ea 69754 
libosmgpsmap-1.0-dev_1.1.0-1_amd64.deb
Files:
 6039c26440c88459536ba4f2a358f1f8 2461 science optional osm-gps-map_1.1.0-1.dsc
 5e9dc55922a597798ef4411130815212 80164 science optional 
osm-gps-map_1.1.0.orig.tar.gz
 2d750cd65072decdd056873af7c061e2 6832 science optional 
osm-gps-map_1.1.0-1.debian.tar.xz
 fba726d4de3033726fa097e1d561bbe6 15292 introspection optional 
gir1.2-osmgpsmap-1.0_1.1.0-1_amd64.deb
 2408bad8d70c8d13f704a7d473f42df5 40552 libs optional 
libosmgpsmap-1.0-1_1.1.0-1_amd64.deb
 358226c1b128a4bdd5eee8ffb4c39513 102712 debug extra 
libosmgpsmap-1.0-dbg_1.1.0-1_amd64.deb
 6bf2970bf5a35dac5ca26b03195ff141 69754 libdevel optional 
libosmgpsmap-1.0-dev_1.1.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWcU+tAAoJEGdQ8QrojUrxemkP+wVF40kYB66yTc1NFm2XrHjY
7tVBXAotZylwzK8dr0WFnTGpPGrhBhb+tPFUEZLufi1J800Hf/V11v/ATsYkkaFe
9gNM2Qh4eYxWzwlsKYbvhpNHrtX2VdIYRvPQh5GvSjO7YdxrZXKzbq5Nq0pw+hiE
ii7gAx+4FUqHpvS8+N2XrzznunpVaaPd0+nTK7L3N03FaXDuCgC873IETG04bYvK
JRUJGvSmNB0nxOoe0Sb4H7e/+oPLp2esFoS9KWeBtfrJ5dmUe8KJmitn6ks3M7ID
8eY/+SG2A71m/CFVM4L9fd2zWYlvDhhJKmKgwqd5YBWi9GVICvng9/97dGKGDgHw
0rPWyntxjpGwECA/K7HV9AvMN2jRHEHW5srCq4eytL3cFu12eSMsPpUSqTH/jcph
9Hmdmk50LbeK0Jp72mzO7u2CCfKbqZqbLcyb7QlTROl3rmA0Iw8bZ/y9Qi0Nor3V
kiUQ8+08pSHDJn+I1VU3TgzzpIaFOenV2+elhgXdWRg47wHm91DndVgIKM7d3GZz
x+G0eQx5xgJgTdNqwoCFa5xiYJnERTRJfBeI7kOgoGWnXxlgYr0ZQCw9vgUDNcMI
06ul8EfVkliRJxvdCeT1SbARnYU6kwfV8GdzBKdHRJWOd/2nT3/y1zLn+eiUB4rH
RgVdfj6ixYaJa8JGPYXX
=xgL3
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


hdf5 1.8.16+docs-1 MIGRATED to testing

2015-12-18 Thread Debian testing watch
FYI: The status of the hdf5 source package
in Debian's testing distribution has changed.

  Previous version: 1.8.15-patch1+docs-5
  Current version:  1.8.16+docs-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


josm 0.0.svn9060+dfsg-2 MIGRATED to testing

2015-12-18 Thread Debian testing watch
FYI: The status of the josm source package
in Debian's testing distribution has changed.

  Previous version: 0.0.svn9060+dfsg-1
  Current version:  0.0.svn9060+dfsg-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Bug#808335: dpkg: error processing package tilestache

2015-12-18 Thread Sebastiaan Couwenberg
Control: tags -1 pending

Hi Kamen,

Thanks for reporting this issue.

Sorry for breaking tilestatch with the patch for the Pillow 3.0.0.

The patch has been fixed and an new tilestache revision is on its way to
unstable.

Kind Regards,

Bas

-- 
 GPG Key ID: 4096R/6750F10AE88D4AF1
Fingerprint: 8182 DE41 7056 408D 6146  50D1 6750 F10A E88D 4AF1

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Processed: Re: Bug#808335: dpkg: error processing package tilestache

2015-12-18 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 pending
Bug #808335 [tilestache] dpkg: error processing package tilestache
Added tag(s) pending.

-- 
808335: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808335
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[tilestache] tag debian/1.49.8-3 created (now 252cf73)

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/1.49.8-3
in repository tilestache.

at  252cf73   (commit)
No new revisions were added by this update.

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Processing of tilestache_1.49.8-3_amd64.changes

2015-12-18 Thread Debian FTP Masters
tilestache_1.49.8-3_amd64.changes uploaded successfully to localhost
along with the files:
  tilestache_1.49.8-3.dsc
  tilestache_1.49.8-3.debian.tar.xz
  tilestache_1.49.8-3_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[tilestache] branch master updated (259c1cd -> 252cf73)

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository tilestache.

  from  259c1cd   Set distribution to unstable.
   new  a702e9d   Fix syntax error in pillow-3.0.0.patch.
   new  252cf73   Set distribution to unstable.

The 2 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:
 debian/changelog  | 7 +++
 debian/patches/pillow-3.0.0.patch | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[tilestache] 02/02: Set distribution to unstable.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository tilestache.

commit 252cf731ae0e63367ff1774a560ae34488c60d40
Author: Bas Couwenberg 
Date:   Fri Dec 18 19:40:36 2015 +0100

Set distribution to unstable.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 09a465a..558d363 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-tilestache (1.49.8-3) UNRELEASED; urgency=medium
+tilestache (1.49.8-3) unstable; urgency=medium
 
   * Fix syntax error in pillow-3.0.0.patch.
 (closes: #808335)
 
- -- Bas Couwenberg   Fri, 18 Dec 2015 19:37:39 +0100
+ -- Bas Couwenberg   Fri, 18 Dec 2015 19:40:20 +0100
 
 tilestache (1.49.8-2) unstable; urgency=medium
 

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[tilestache] 01/02: Fix syntax error in pillow-3.0.0.patch.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository tilestache.

commit a702e9d44e5b461c2a7cd0c356c8f8cc6345265e
Author: Bas Couwenberg 
Date:   Fri Dec 18 19:39:25 2015 +0100

Fix syntax error in pillow-3.0.0.patch.
---
 debian/changelog  | 7 +++
 debian/patches/pillow-3.0.0.patch | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index a55680a..09a465a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tilestache (1.49.8-3) UNRELEASED; urgency=medium
+
+  * Fix syntax error in pillow-3.0.0.patch.
+(closes: #808335)
+
+ -- Bas Couwenberg   Fri, 18 Dec 2015 19:37:39 +0100
+
 tilestache (1.49.8-2) unstable; urgency=medium
 
   * Add patch by Eric Soroos for Pillow 3.0.0 support.
diff --git a/debian/patches/pillow-3.0.0.patch 
b/debian/patches/pillow-3.0.0.patch
index 002779d..7d79f45 100644
--- a/debian/patches/pillow-3.0.0.patch
+++ b/debian/patches/pillow-3.0.0.patch
@@ -16,7 +16,7 @@ Forwarded: https://github.com/TileStache/TileStache/pull/246
 +img = Image.frombytes('RGBA', (width, height), img.tostring())
 +else:
 +# PIL still uses Image.fromstring
-+img = Image.fromstring('RGBA', (width, height), img.tostring() 
++img = Image.fromstring('RGBA', (width, height), img.tostring())
  
  logging.debug('TileStache.Mapnik.ImageProvider.renderArea() %dx%d in 
%.3f from %s', width, height, time() - start_time, self.mapfile)
  

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


tilestache_1.49.8-3_amd64.changes ACCEPTED into unstable

2015-12-18 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 18 Dec 2015 19:40:20 +0100
Source: tilestache
Binary: tilestache
Architecture: source all
Version: 1.49.8-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 tilestache - map tiles caching system
Closes: 808335
Changes:
 tilestache (1.49.8-3) unstable; urgency=medium
 .
   * Fix syntax error in pillow-3.0.0.patch.
 (closes: #808335)
Checksums-Sha1:
 4ed07cfc1f85da6d6054bd7fb994d44894563a71 2017 tilestache_1.49.8-3.dsc
 30b747e20744a01ad7ecefa3121c2d8cfcbeac54 7920 tilestache_1.49.8-3.debian.tar.xz
 01d1eee76d8676ed2fbdfdfa96c60f206b2af61d 156838 tilestache_1.49.8-3_all.deb
Checksums-Sha256:
 3fb6b6c81c272ea310f886ffbefa38abffbf416271e77e4250cce7820224be7a 2017 
tilestache_1.49.8-3.dsc
 f5963199fa91be14dca4eede5dfb01c132c2dee78b8cc3dff5af132cfa2ed6cb 7920 
tilestache_1.49.8-3.debian.tar.xz
 1664831e9eec5e4bab79eb1f43e4eafa18676ef8a18f5b69b5d039074e56fb09 156838 
tilestache_1.49.8-3_all.deb
Files:
 99ca5c03abc99ff4802894c12589d58b 2017 web extra tilestache_1.49.8-3.dsc
 3d7bc6689eefac097b79161ad2af07d3 7920 web extra 
tilestache_1.49.8-3.debian.tar.xz
 3acc3cb08044d5c87d65aa9cac1dd4dc 156838 web extra tilestache_1.49.8-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWdFUgAAoJEGdQ8QrojUrxjAkQAKh5nT68Q4r4rVWj6orNjJVF
oNB0Ou1cx8SCGI9mc86+x8P1msq+tdWzTESgqKbzp0B3OmXeKryQamWyXKsKSRU3
s0BQfg9dBKod1lXMoXL7WOCpFwo75bttlHn6EQuBBTzh6riXCa8yr2cDf4aboHLR
d7HC23mqMUX1yf2F/4a90L+4bSjb6QvfCgF3M0T8ltELDl4wSoVFZZNL3UnM6jtl
5eSOj4dvBtaRVywGYMYFjAgc54g+F6NS8SkGIGn5n6varQ26KI4wBsFzHdRHVemp
VUk9qUcqMVM3ZPiZgmKQC/nua30tvOjLVKir2SNrSnf8rxV75+9mfu+qGwUA6Vm+
yCQTjZNmPv4dsKDC2NbD0TTzWESZo9YIzJJ45KiT5XmrXnjfrysFMY5nQNYcZ6K4
YF0q51mrldJRhiGiJDxIcAFghWiCrerK856NhEUe131cuYEEBgcOkNUiWD53r26Q
dgSZGFNZRKbThU0DdmLxRcGoLNQhmHsaKnGScAjIU3EKc3Uy2Msxgy0GDhpfLa5h
9X/YmClzzXdmADdSzMBi68Q4/5qSvHOQCZmDM1nq2wyW04tJxdodOh1I9yGsVoQy
kJs8F9/KWCw7VgClxyIV9nXnWi1+wRf94Z+zKIPu/P18CY0IoGSKkGAScEiNs3MY
SdOFJLjcbac/TkhWaBKM
=Fvld
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Bug#808335: marked as done (dpkg: error processing package tilestache)

2015-12-18 Thread Debian Bug Tracking System
Your message dated Fri, 18 Dec 2015 19:02:22 +
with message-id 
and subject line Bug#808335: fixed in tilestache 1.49.8-3
has caused the Debian Bug report #808335,
regarding dpkg: error processing package tilestache
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
808335: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808335
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: tilestache
Version: 1.49.8-2
Severity: normal

Dear Maintainer,

While upgrading to tilestache (1.49.8-2)
I receive following error:
E: Sub-process /usr/bin/dpkg returned an error code (1)
Failed to perform requested operation on package.  Trying to recover:
Setting up tilestache (1.49.8-2) ...
  File "/usr/lib/python2.7/dist-packages/TileStache/Mapnik.py", line 138
logging.debug('TileStache.Mapnik.ImageProvider.renderArea() %dx%d in %.3f
from %s', width, height, time() - start_time, self.mapfile)
  ^
SyntaxError: invalid syntax

dpkg: error processing package tilestache (--configure):
 subprocess installed post-installation script returned error exit status 101
Errors were encountered while processing:
 tilestache


best regards
Kamen



-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.3.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=bg_BG.UTF-8, LC_CTYPE=bg_BG.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages tilestache depends on:
ii  python-modestmaps  1.4.6-1
ii  python-werkzeug0.10.4+dfsg1-1
pn  python:any 
ii  ttf-dejavu-core2.35-1

Versions of packages tilestache recommends:
ii  libjs-modestmaps  3.3.6+ds1-1.1
pn  python-blit   
ii  python-gdal   1.11.3+dfsg-2+b2
ii  python-imaging3.0.0-1
ii  python-mapnik 1:0.0~20151125-92e79d2-1
ii  python-psycopg2   2.6.1-1+b1
ii  python-pyproj 1.9.4-1+b1
ii  python-pysolr 3.2.0-1
ii  python-shapely1.5.13-1

Versions of packages tilestache suggests:
ii  python-boto  2.38.0-1
pn  python-memcache  
pn  python-redis 

-- no debconf information
--- End Message ---
--- Begin Message ---
Source: tilestache
Source-Version: 1.49.8-3

We believe that the bug you reported is fixed in the latest version of
tilestache, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 808...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bas Couwenberg  (supplier of updated tilestache package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 18 Dec 2015 19:40:20 +0100
Source: tilestache
Binary: tilestache
Architecture: source all
Version: 1.49.8-3
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 tilestache - map tiles caching system
Closes: 808335
Changes:
 tilestache (1.49.8-3) unstable; urgency=medium
 .
   * Fix syntax error in pillow-3.0.0.patch.
 (closes: #808335)
Checksums-Sha1:
 4ed07cfc1f85da6d6054bd7fb994d44894563a71 2017 tilestache_1.49.8-3.dsc
 30b747e20744a01ad7ecefa3121c2d8cfcbeac54 7920 tilestache_1.49.8-3.debian.tar.xz
 01d1eee76d8676ed2fbdfdfa96c60f206b2af61d 156838 tilestache_1.49.8-3_all.deb
Checksums-Sha256:
 3fb6b6c81c272ea310f886ffbefa38abffbf416271e77e4250cce7820224be7a 2017 
tilestache_1.49.8-3.dsc
 f5963199fa91be14dca4eede5dfb01c132c2dee78b8cc3dff5af132cfa2ed6cb 7920 
tilestache_1.49.8-3.debian.tar.xz
 1664831e9eec5e4bab79eb1f43e4eafa18676ef8a18f5b69b5d039074e56fb09 156838 
tilestache_1.49.8-3_all.deb
Files:
 99ca5c03abc99ff4802894c12589d58b 2017 web extra tilestache_1.49.8-3.dsc
 3d7bc6689eefac097b79161ad2af07d3 7920 web extra 
tilestache_1.49.8-3.debian.tar.xz
 3acc3cb08044d5c87d65aa9cac1dd4dc 156838 web extra tilestache_1.49.8-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWdFUgAAoJEGdQ8QrojUrxjAkQAKh5nT68Q4r4rVWj6orNjJVF

Processing of pktools_2.6.5-1~exp1_amd64.changes

2015-12-18 Thread Debian FTP Masters
pktools_2.6.5-1~exp1_amd64.changes uploaded successfully to localhost
along with the files:
  pktools_2.6.5-1~exp1.dsc
  pktools_2.6.5.orig.tar.gz
  pktools_2.6.5-1~exp1.debian.tar.xz
  libalgorithms1_2.6.5-1~exp1_amd64.deb
  libfileclasses1_2.6.5-1~exp1_amd64.deb
  libimageclasses1_2.6.5-1~exp1_amd64.deb
  liblasclasses1_2.6.5-1~exp1_amd64.deb
  pktools-dev_2.6.5-1~exp1_amd64.deb
  pktools_2.6.5-1~exp1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[pktools] 01/04: Update symbols for amd64.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pktools.

commit b0d9a2f7f158d44a6f3a26916608d2eb2aa87ab9
Author: Bas Couwenberg 
Date:   Fri Dec 18 13:43:29 2015 +0100

Update symbols for amd64.
---
 debian/changelog|  1 +
 debian/libalgorithms1.symbols   | 31 +--
 debian/libimageclasses1.symbols | 14 --
 debian/liblasclasses1.symbols   |  8 
 4 files changed, 30 insertions(+), 24 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1d9155c..e8aec0f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ pktools (2.6.5-1) UNRELEASED; urgency=medium
   * New upstream release.
   * Update libgsl-dev dependency for pktools-dev too.
   * Drop gdal-2.0.patch, applied upstream.
+  * Update symbols for amd64.
 
  -- Bas Couwenberg   Fri, 18 Dec 2015 02:55:14 +0100
 
diff --git a/debian/libalgorithms1.symbols b/debian/libalgorithms1.symbols
index fd2ee83..c82bdb1 100644
--- a/debian/libalgorithms1.symbols
+++ b/debian/libalgorithms1.symbols
@@ -1,4 +1,4 @@
-# SymbolsHelper-Confirmed: 2.6.4 amd64 arm64 armel armhf hppa i386 
kfreebsd-amd64 kfreebsd-i386 mips mipsel powerpc ppc64el s390x x32
+# SymbolsHelper-Confirmed: 2.6.5 amd64
 libalgorithms.so.1 libalgorithms1 #MINVER#
  (optional=templinst|arch=amd64 arm64 kfreebsd-amd64 ppc64el 
s390x)_Z11string2typeIiET_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base
 2.6.4
  
_Z12compareClassRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES6_@Base 
2.6.4
@@ -30,23 +30,23 @@ libalgorithms.so.1 libalgorithms1 #MINVER#
  _ZN15confusionmatrix15ConfusionMatrix10setResultsERK8Vector2dIdE@Base 2.6.4
  _ZN15confusionmatrix15ConfusionMatrix12clearResultsEv@Base 2.6.4
  
_ZN15confusionmatrix15ConfusionMatrix13setClassNamesERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EEb@Base
 2.6.4
- 
_ZN15confusionmatrix15ConfusionMatrix13setClassNamesERKSt6vectorISsSaISsEEb@Base
 2.6.4
+#MISSING: 2.6.5# 
_ZN15confusionmatrix15ConfusionMatrix13setClassNamesERKSt6vectorISsSaISsEEb@Base
 2.6.4
  _ZN15confusionmatrix15ConfusionMatrix14sortClassNamesEv@Base 2.6.4
  
_ZN15confusionmatrix15ConfusionMatrix15incrementResultERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_d@Base
 2.6.4
- _ZN15confusionmatrix15ConfusionMatrix15incrementResultERKSsS2_d@Base 2.6.4
+#MISSING: 2.6.5# 
_ZN15confusionmatrix15ConfusionMatrix15incrementResultERKSsS2_d@Base 2.6.4
  
_ZN15confusionmatrix15ConfusionMatrix17pushBackClassNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEb@Base
 2.6.4
- _ZN15confusionmatrix15ConfusionMatrix17pushBackClassNameERKSsb@Base 2.6.4
+#MISSING: 2.6.5# 
_ZN15confusionmatrix15ConfusionMatrix17pushBackClassNameERKSsb@Base 2.6.4
  _ZN15confusionmatrix15ConfusionMatrix6resizeEs@Base 2.6.4
  
_ZN15confusionmatrix15ConfusionMatrix9setResultERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES8_d@Base
 2.6.4
- _ZN15confusionmatrix15ConfusionMatrix9setResultERKSsS2_d@Base 2.6.4
+#MISSING: 2.6.5# _ZN15confusionmatrix15ConfusionMatrix9setResultERKSsS2_d@Base 
2.6.4
  _ZN15confusionmatrix15ConfusionMatrixC1ERKS0_@Base 2.6.4
  
_ZN15confusionmatrix15ConfusionMatrixC1ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EE@Base
 2.6.4
- _ZN15confusionmatrix15ConfusionMatrixC1ERKSt6vectorISsSaISsEE@Base 2.6.4
+#MISSING: 2.6.5# 
_ZN15confusionmatrix15ConfusionMatrixC1ERKSt6vectorISsSaISsEE@Base 2.6.4
  _ZN15confusionmatrix15ConfusionMatrixC1Es@Base 2.6.4
  _ZN15confusionmatrix15ConfusionMatrixC1Ev@Base 2.6.4
  _ZN15confusionmatrix15ConfusionMatrixC2ERKS0_@Base 2.6.4
  
_ZN15confusionmatrix15ConfusionMatrixC2ERKSt6vectorINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESaIS7_EE@Base
 2.6.4
- _ZN15confusionmatrix15ConfusionMatrixC2ERKSt6vectorISsSaISsEE@Base 2.6.4
+#MISSING: 2.6.5# 
_ZN15confusionmatrix15ConfusionMatrixC2ERKSt6vectorISsSaISsEE@Base 2.6.4
  _ZN15confusionmatrix15ConfusionMatrixC2Es@Base 2.6.4
  _ZN15confusionmatrix15ConfusionMatrixC2Ev@Base 2.6.4
  _ZN15confusionmatrix15ConfusionMatrixD1Ev@Base 2.6.4
@@ -116,11 +116,13 @@ libalgorithms.so.1 libalgorithms1 #MINVER#
  
(arch=!amd64)_ZN6filter6Filter13initFilterMapERSt3mapISsNS_11FILTER_TYPEESt4lessISsESaISt4pairIKSsS2_EEE@Base
 2.6.4
  (arch=amd64 arm64 hppa kfreebsd-amd64 ppc64el 
x32)_ZN6filter6Filter14getWaveletTypeENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE@Base
 2.6.4
  _ZN6filter6Filter15pushNoDataValueEd@Base 2.6.2
+ _ZN6filter6Filter15setNoDataValuesESt6vectorIdSaIdEE@Base 2.6.5
  
_ZN6filter6Filter19getCentreWavelengthERKSt6vectorIdSaIdEERK8Vector2dIdERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEdb@Base
 2.6.4
  
(arch=!amd64)_ZN6filter6Filter19getCentreWavelengthERKSt6vectorIdSaIdEERK8Vector2dIdERKSsdb@Base
 2.6.4
  _ZN6filter6Filter23getSavGolayCoefficientsERSt6vectorIdSaIdEEi@Base 2.6.2
  

[pktools] 02/04: Add manpage for pkstatprofile.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pktools.

commit 7022328e5163366a1eebc63f20af6279354b884c
Author: Bas Couwenberg 
Date:   Fri Dec 18 15:06:32 2015 +0100

Add manpage for pkstatprofile.
---
 debian/changelog   |   1 +
 debian/man/pkstatprofile.1.xml | 255 +
 2 files changed, 256 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index e8aec0f..6b64451 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,7 @@ pktools (2.6.5-1) UNRELEASED; urgency=medium
   * Update libgsl-dev dependency for pktools-dev too.
   * Drop gdal-2.0.patch, applied upstream.
   * Update symbols for amd64.
+  * Add manpage for pkstatprofile.
 
  -- Bas Couwenberg   Fri, 18 Dec 2015 02:55:14 +0100
 
diff --git a/debian/man/pkstatprofile.1.xml b/debian/man/pkstatprofile.1.xml
new file mode 100644
index 000..bf43c5a
--- /dev/null
+++ b/debian/man/pkstatprofile.1.xml
@@ -0,0 +1,255 @@
+
+http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd;>
+
+
+  
+pkstatprofile
+1
+  
+
+  
+pkstatprofile
+program to calculate statistics in temporal or spectral 
profile
+  
+
+  
+
+  pkstatprofile
+  -i 
input
+  -o 
output
+  -f 
function
+  options
+
+  
+
+  
+DESCRIPTION
+
+  pkstatprofile calculates statistics for a temporal
+  (time series) or spectral profile.
+
+
+  
+
+  
+
+  Function
+  Description
+
+  
+  
+
+  mean
+  calculate mean in window
+
+
+  median
+  perform a median filter in spatial (dx, dy) or 
spectral/temporal (dz) domain
+
+
+  var
+  calculate variance in window
+
+
+  stdev
+  calculate standard deviation in window
+
+
+  min
+  calculate minimum in window
+
+
+  max
+  calculate maximum in window
+
+
+  sum
+  calculate sum in window
+
+
+  mode
+  calculate mode of all values
+
+
+  ismin
+  1 if value is minimum, else 0
+
+
+  ismax
+  1 if value is maximum, else 0
+
+
+  per
+  calculate percentile in time series (provide percentage 
value as argument)
+
+
+  prop
+  calculate proportion
+
+
+  nvalid
+  report number of valid observations
+
+  
+
+  
+
+  
+
+  
+OPTIONS
+
+
+  
+-i filename
+--input 
filename
+
+  
+Input image file.
+  
+
+  
+
+  
+-o filename
+--output 
filename
+
+  
+Output image file
+  
+
+  
+
+  
+-f function
+--function 
function
+
+  
+Statistics function (mean, median, var, stdev, min, max, sum,
+mode (provide classes), ismin, ismax, proportion (provide classes),
+percentile, nvalid
+  
+
+  
+
+  
+-perc 
percentile
+--perc 
percentile
+
+  
+Percentile value(s) used for rule percentile
+  
+
+  
+
+  
+-class class
+--class class
+
+  
+class value(s) to use for mode, proportion
+  
+
+  
+
+  
+-nodata value
+--nodata value
+
+  
+Set nodata value(s)
+  
+
+  
+
+  
+-ot type
+--otype type
+
+  
+Data type for output image
+({Byte / Int16 / UInt16 / UInt32 / Int32 / Float32 / Float64 / 
CInt16 / CInt32 / CFloat32 / CFloat64}).
+Empty string: inherit type from input image.
+  
+
+  
+
+  
+-of format
+--oformat 
format
+
+  
+Output image format (see also
+
+  gdal_translate
+  1
+).
+  
+
+  
+
+  
+-ct filename
+--ct filename
+
+  
+Color table (file with 5 columns:
+id R G B ALFA (0: transparent, 255: solid).
+Use none to ommit color table.
+  
+
+  
+
+  
+-co NAME=VALUE
+--co 
NAME=VALUE
+
+  
+Creation 

[pktools] branch master updated (cea13b6 -> 18dbfb5)

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository pktools.

  from  cea13b6   Drop gdal-2.0.patch, applied upstream.
   new  b0d9a2f   Update symbols for amd64.
   new  7022328   Add manpage for pkstatprofile.
   new  7d7bde5   Update manpages for upstream changes.
   new  18dbfb5   Set distribution to experimental.

The 4 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:
 debian/changelog|   7 +-
 debian/libalgorithms1.symbols   |  31 ++--
 debian/libimageclasses1.symbols |  14 +-
 debian/liblasclasses1.symbols   |   8 +-
 debian/man/pkann.1.xml  |  16 +-
 debian/man/pkcomposite.1.xml|  26 
 debian/man/pkcreatect.1.xml |   1 -
 debian/man/pkcrop.1.xml |  57 +--
 debian/man/pkdiff.1.xml |  15 ++
 debian/man/pkdsm2shadow.1.xml   |   1 -
 debian/man/pkextract.1.xml  |  88 ++-
 debian/man/pkfilter.1.xml   | 322 ++--
 debian/man/pkfilterdem.1.xml|   1 -
 debian/man/pkfsann.1.xml|  13 +-
 debian/man/pkfssvm.1.xml|  13 +-
 debian/man/pkgetmask.1.xml  |   1 -
 debian/man/pkkalman.1.xml   | 109 ++
 debian/man/pklas2img.1.xml  |  30 +++-
 debian/man/pkoptsvm.1.xml   |  13 +-
 debian/man/pkreclass.1.xml  |  14 ++
 debian/man/pksetmask.1.xml  |   1 -
 debian/man/pkstat.1.xml |  12 ++
 debian/man/pkstatprofile.1.xml  | 247 ++
 debian/man/pksvm.1.xml  |  20 +--
 24 files changed, 870 insertions(+), 190 deletions(-)
 create mode 100644 debian/man/pkstatprofile.1.xml

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[pktools] 04/04: Set distribution to experimental.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pktools.

commit 18dbfb52478c4b6a1459759ac7d9eb559e6ff934
Author: Bas Couwenberg 
Date:   Sat Dec 19 01:40:52 2015 +0100

Set distribution to experimental.
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index a3b90e1..ae956ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-pktools (2.6.5-1) UNRELEASED; urgency=medium
+pktools (2.6.5-1~exp1) experimental; urgency=medium
 
   * New upstream release.
   * Update libgsl-dev dependency for pktools-dev too.
@@ -7,7 +7,7 @@ pktools (2.6.5-1) UNRELEASED; urgency=medium
   * Add manpage for pkstatprofile.
   * Update manpages for upstream changes.
 
- -- Bas Couwenberg   Fri, 18 Dec 2015 02:55:14 +0100
+ -- Bas Couwenberg   Sat, 19 Dec 2015 01:40:30 +0100
 
 pktools (2.6.4-4) unstable; urgency=medium
 

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


[pktools] 03/04: Update manpages for upstream changes.

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pktools.

commit 7d7bde518a9087ae96145608f5f7207e30631b03
Author: Bas Couwenberg 
Date:   Sat Dec 19 01:34:28 2015 +0100

Update manpages for upstream changes.
---
 debian/changelog   |   1 +
 debian/man/pkann.1.xml |  16 +-
 debian/man/pkcomposite.1.xml   |  26 
 debian/man/pkcreatect.1.xml|   1 -
 debian/man/pkcrop.1.xml|  57 ++--
 debian/man/pkdiff.1.xml|  15 ++
 debian/man/pkdsm2shadow.1.xml  |   1 -
 debian/man/pkextract.1.xml |  88 ++-
 debian/man/pkfilter.1.xml  | 322 +++--
 debian/man/pkfilterdem.1.xml   |   1 -
 debian/man/pkfsann.1.xml   |  13 +-
 debian/man/pkfssvm.1.xml   |  13 +-
 debian/man/pkgetmask.1.xml |   1 -
 debian/man/pkkalman.1.xml  | 109 ++
 debian/man/pklas2img.1.xml |  30 +++-
 debian/man/pkoptsvm.1.xml  |  13 +-
 debian/man/pkreclass.1.xml |  14 ++
 debian/man/pksetmask.1.xml |   1 -
 debian/man/pkstat.1.xml|  12 ++
 debian/man/pkstatprofile.1.xml |  22 +--
 debian/man/pksvm.1.xml |  20 +--
 21 files changed, 597 insertions(+), 179 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6b64451..a3b90e1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ pktools (2.6.5-1) UNRELEASED; urgency=medium
   * Drop gdal-2.0.patch, applied upstream.
   * Update symbols for amd64.
   * Add manpage for pkstatprofile.
+  * Update manpages for upstream changes.
 
  -- Bas Couwenberg   Fri, 18 Dec 2015 02:55:14 +0100
 
diff --git a/debian/man/pkann.1.xml b/debian/man/pkann.1.xml
index 16e178b..a969ccc 100644
--- a/debian/man/pkann.1.xml
+++ b/debian/man/pkann.1.xml
@@ -140,8 +140,8 @@
 --mask 
filename
 
   
-Use the first band of the specified file as a validity mask.
-Nodata values can be set with the option
+Only classify within specified mask (vector or raster).
+For raster mask, set nodata values with the option
 --msknodata.
   
 
@@ -311,8 +311,8 @@
   
 
   
--s band
---start band
+-sband band
+--startband 
band
 
   
 start band sequence number
@@ -322,16 +322,17 @@
   
 
   
--e band
---end band
+-eband band
+--endband band
 
   
-end band sequence number (set to 0 to include bands)
+end band sequence number
   
 
   
 
   
+-offset value
 --offset value
 
   
@@ -342,6 +343,7 @@
   
 
   
+-scale value
 --scale value
 
   
diff --git a/debian/man/pkcomposite.1.xml b/debian/man/pkcomposite.1.xml
index 767a14e..99ad5e5 100644
--- a/debian/man/pkcomposite.1.xml
+++ b/debian/man/pkcomposite.1.xml
@@ -36,6 +36,32 @@
   a composite step.
   Input datasets can have different bounding boxes and spatial resolutions.
 
+
+  
+Example: Calculate the maximum NDVI composite of two multispectral
+input images (e.g., red is band 0 and near infrared is band 1)
+  
+  
+pkcomposite -i 
input1.tif -i 
input2.tif -o 
output.tif -cr 
maxndvi -cb 
0 -cb 1
+  
+
+
+  
+Example: Calculate the minimum nadir composite of two input images,
+where the forth band (b=3) contains the view zenith angle
+  
+  
+pkcomposite -i 
input1.tif -i 
input2.tif -o 
minzenith.tif -cr 
minband -cb 
3
+  
+
+
+  
+Example: Calculate the minimum of two input images in all bands
+  
+  
+pkcomposite -i 
input1.tif -i 
input2.tif -o 
minimum.tif -cr 
minallbands
+  
+
   
 
   
diff --git a/debian/man/pkcreatect.1.xml b/debian/man/pkcreatect.1.xml
index e92f81a..476ae26 100644
--- a/debian/man/pkcreatect.1.xml
+++ b/debian/man/pkcreatect.1.xml
@@ -116,7 +116,6 @@
   gdal_translate
   1
 ).
-Empty string: inherit from input image 
   
 
   
diff --git a/debian/man/pkcrop.1.xml b/debian/man/pkcrop.1.xml
index 05371f7..419f83f 100644
--- a/debian/man/pkcrop.1.xml
+++ b/debian/man/pkcrop.1.xml
@@ -115,7 +115,27 @@
 --band band
 
   
-band index to crop (leave empty to retain all bands)
+Band index to crop (leave empty to retain all bands)
+  
+
+  
+
+  
+-sband band
+--startband 
band
+
+  
+Start band sequence number
+  
+
+  
+
+  
+-eband band
+--endband band
+
+  
+End band sequence number
   
 
   
@@ -231,17 +251,32 @@
   
 
   
-

[pktools] tag debian/2.6.5-1.exp1 created (now 18dbfb5)

2015-12-18 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/2.6.5-1.exp1
in repository pktools.

at  18dbfb5   (commit)
No new revisions were added by this update.

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Processed: #807170 & #806324 fixed with testing migration of binutils (2.25.90.20151209-1)

2015-12-18 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> notfound 807170 qt4-x11/4:4.8.7+dfsg-5
Bug #807170 [src:qt4-x11] libQtUiTools.a(quiloader.o): unrecognized relocation 
(0x2a) in section `.text'
No longer marked as found in versions qt4-x11/4:4.8.7+dfsg-5.
> fixed 806324 qgis/2.8.4+dfsg-1
Bug #806324 [src:qgis] qgis: FTBFS on testing (unrecognized relocation in 
linking stage)
Marked as fixed in versions qgis/2.8.4+dfsg-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
806324: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=806324
807170: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807170
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel


Bug#806324: marked as done (qgis: FTBFS on testing (unrecognized relocation in linking stage))

2015-12-18 Thread Debian Bug Tracking System
Your message dated Sat, 19 Dec 2015 00:36:04 +0100
with message-id <56749864.5010...@xs4all.nl>
and subject line #807170 & #806324 fixed with testing migration of binutils 
(2.25.90.20151209-1)
has caused the Debian Bug report #806324,
regarding qgis: FTBFS on testing (unrecognized relocation in linking stage)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
806324: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=806324
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:qgis
Version: 2.8.3+dfsg-5
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
Severity: serious

Dear maintainer:

This package fails to build from source in testing/amd64.

Follows a snippet from the build log:


[...]

cd /<>/qgis-2.8.3+dfsg/obj-x86_64-linux-gnu/src/gui && /usr/bin/c++   
-DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_CAST_TO_ASCII -DQT_NO_DEBUG 
-DQT_OPENGL_LIB -DQT_SQL_LIB -DQT_SVG_LIB -DQT_WEBKIT_LIB -DQT_XML_LIB 
-Dqgis_gui_EXPORTS -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -D_FORTIFY_SOURCE=2 -O2 -D_FORTIFY_SOURCE=2  
-DSPATIALITE_VERSION_GE_4_0_0 -DSPATIALITE_VERSION_G_4_1_1 
-DSPATIALITE_HAS_INIT_EX -std=c++11 -Wall -Wextra -Wno-long-long 
-Wformat-security -Wno-strict-aliasing -fPIC -isystem /usr/include/qt4 -isystem 
/usr/include/qt4/QtOpenGL -isystem /usr/include/qt4/QtSvg -isystem 
/usr/include/qt4/QtWebKit -isystem /usr/include/qt4/QtGui -isystem 
/usr/include/qt4/QtXml -isystem /usr/include/qt4/QtSql -isystem 
/usr/include/qt4/QtNetwork -isystem /usr/include/qt4/QtCore 
-I/<>/qgis-2.8.3+dfsg/obj-x86_64-linux-gnu 
-I/usr/include/qt4/QtUiTools -I/<>/qgis-2.8.3+dfsg/src/gui 
-I/<>/qgis-2.8.3+dfsg/src/gui/symbology-ng -
 I/<>/qgis-2.8.3+dfsg/src/gui/attributetable 
-I/<>/qgis-2.8.3+dfsg/src/gui/editorwidgets 
-I/<>/qgis-2.8.3+dfsg/src/gui/editorwidgets/core 
-I/<>/qgis-2.8.3+dfsg/src/gui/layertree 
-I/<>/qgis-2.8.3+dfsg/src/gui/../core 
-I/<>/qgis-2.8.3+dfsg/src/gui/../core/composer 
-I/<>/qgis-2.8.3+dfsg/src/gui/../core/layertree 
-I/<>/qgis-2.8.3+dfsg/src/gui/../core/raster 
-I/<>/qgis-2.8.3+dfsg/src/gui/../core/symbology-ng 
-I/<>/qgis-2.8.3+dfsg/obj-x86_64-linux-gnu/src/gui 
-I/<>/qgis-2.8.3+dfsg/obj-x86_64-linux-gnu/src/gui/../ui 
-I/usr/include/qwt -I/usr/include/gdal-DCORE_EXPORT= -DGUI_EXPORT= 
-DPYTHON_EXPORT= -DANALYSIS_EXPORT= -DAPP_EXPORT= -DCUSTOMWIDGETS_EXPORT= 
-DSERVER_EXPORT= -Wno-deprecated-declarations -o 
CMakeFiles/qgis_gui.dir/layertree/moc_qgslayertreeviewdefaultactions.cxx.o -c 
/<>/qgis-2.8.3+dfsg/obj-x86_64-linux-gnu/src/gui/layertree/moc_qgslayertreeviewdefaultactio
 ns.cxx
[ 43%] Linking CXX shared library ../../output/lib/libqgis_gui.so
cd /<>/qgis-2.8.3+dfsg/obj-x86_64-linux-gnu/src/gui && /usr/bin/cmake 
-E cmake_link_script CMakeFiles/qgis_gui.dir/link.txt --verbose=1
/usr/bin/c++  -fPIC -g -O2 -fstack-protector-strong -Wformat 
-Werror=format-security -D_FORTIFY_SOURCE=2 -O2 -D_FORTIFY_SOURCE=2  
-DSPATIALITE_VERSION_GE_4_0_0 -DSPATIALITE_VERSION_G_4_1_1 
-DSPATIALITE_HAS_INIT_EX -std=c++11 -Wall -Wextra -Wno-long-long 
-Wformat-security -Wno-strict-aliasing  -Wl,-z,relro -Wl,--no-undefined -shared 
-Wl,-soname,libqgis_gui.so.2.8.3 -o ../../output/lib/libqgis_gui.so.2.8.3 
CMakeFiles/qgis_gui.dir/raster/qgsrasterminmaxwidget.cpp.o 
CMakeFiles/qgis_gui.dir/raster/qgsrasterrendererwidget.cpp.o 
CMakeFiles/qgis_gui.dir/raster/qgsmultibandcolorrendererwidget.cpp.o 
CMakeFiles/qgis_gui.dir/raster/qgspalettedrendererwidget.cpp.o 
CMakeFiles/qgis_gui.dir/raster/qgssinglebandgrayrendererwidget.cpp.o 
CMakeFiles/qgis_gui.dir/raster/qgssinglebandpseudocolorrendererwidget.cpp.o 
CMakeFiles/qgis_gui.dir/raster/qgsrasterhistogramwidget.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgsbrushstylecombobox.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgscolorrampcombobox.cpp.o CM
 akeFiles/qgis_gui.dir/symbology-ng/qgsdashspacedialog.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgsdatadefinedsymboldialog.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgspenstylecombobox.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgssymbollayerv2widget.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgsrendererv2widget.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgssinglesymbolrendererv2widget.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgscategorizedsymbolrendererv2widget.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgsgraduatedsymbolrendererv2widget.cpp.o 
CMakeFiles/qgis_gui.dir/symbology-ng/qgsrulebasedrendererv2widget.cpp.o 

josm is marked for autoremoval from testing

2015-12-18 Thread Debian testing autoremoval watch
josm 0.0.svn9060+dfsg-2 is marked for autoremoval from testing on 2016-01-24

It (build-)depends on packages with these RC bugs:
807659: libgettext-commons-java: FTBFS:  Error resolving version for plugin 
'org.apache.maven.plugins:maven-eclipse-plugin' 


___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel