Bug#813846: postgis FTBFS on hppa and mips architectures - part two (with patch)

2016-02-05 Thread Helge Deller
Package: postgis
Version: 2.2.1+dfsg-2
Tags: patch

postgis fails to build because the testcases "ticket" and "wkb" fail, e.g.:
https://buildd.debian.org/status/fetch.php?pkg=postgis=hppa=2.2.1%2Bdfsg-2=1453419898

This is a follow-up on debian ticket #810859 and upstream bug 
https://trac.osgeo.org/postgis/ticket/3426

The main problem is, that hppa and mips have different representations of the 
NaN (Not-a-number) floating point values.
This leads to the testcases failing like this:
It expects:
-#1478|0101200100f87ff87f
but gets on hppa (and probably mips):
+#1478|0101200100f77ff77f
 
To solve it "the simple way", the debian package already excluded mips from 
running the testcases in debian/rules.
Attached is a patch which adds hppa to the same exclusion and this is probably 
the easy way to go in the beginning with the debian package.


In addition, of course it would be nice to get this finally fixed cleanly 
upstream so that we can run the testcases on debian for hppa and mips. 
For that I think the testcases "tickets" and "wkb" would need to be rewritten 
somehow (I don't know how though!).
For example, the expected output regress/tickets_expected is generated [e.g. on 
x86_64] by running ./regress/tickets.sql
Maybe changing those tests to not output the hexadecimal representation of 
"empty" points but instead check with postgis sql extensions if a point is 
"valid/empty" or not and then writing e.g. SUCESS/FAILURE into the output (via 
SQL commands if it's possible) and compare those strings instead of hex values ?
 
I can provide a ssh login to a hppa box if someone from the postgis team wants 
to test himself.

Thanks,
Helge



Full failing log:

--- tickets_expected2015-11-25 18:33:54.0 +
+++ /tmp/pgis_reg/test_84_out   2016-01-21 23:40:51.196871793 +
@@ -185,7 +185,7 @@
 #1453.2|f
 #1454|t
 #1414|CURVEPOLYGON Z EMPTY
-#1478|0101200100f87ff87f
+#1478|0101200100f77ff77f
 #745|GEOMETRYCOLLECTION(POLYGON((-72 42 1,-70 43 1,-71 41 1,-72 42 1)))
 #1450|POINT|POLYGON
 #1482|4326
 ### /tmp/pgis_reg/test_87_diff ###
--- wkb_expected2015-06-25 20:23:41.0 +
+++ /tmp/pgis_reg/test_87_out   2016-01-21 23:41:55.676374002 +
@@ -1,7 +1,7 @@
-POINT 
EMPTY|010100f87ff87f|t|017ff87ff8
-POINT Z 
EMPTY|01e903f87ff87ff87f|t|0003e97ff87ff87ff8
-POINT M 
EMPTY|01d107f87ff87ff87f|t|0007d17ff87ff87ff8
-POINT ZM 
EMPTY|01b90bf87ff87ff87ff87f|t|000bb97ff87ff87ff87ff8
+POINT 
EMPTY|010100f77ff77f|t|017ff77ff7
+POINT Z 
EMPTY|01e903f77ff77ff77f|t|0003e97ff77ff77ff7
+POINT M 
EMPTY|01d107f77ff77ff77f|t|0007d17ff77ff77ff7
+POINT ZM 
EMPTY|01b90bf77ff77ff77ff77f|t|000bb97ff77ff77ff77ff7
 POINT(0 
0)|010100|t|01
 POINT Z (1 2 
3)|01e903f03f00400840|t|0003e93ff040004008
 POINT M (1 2 
3)|01d107f03f00400840|t|0007d13ff040004008
@@ -55,8 +55,8 @@
 GEOMETRYCOLLECTION ZM (POINT ZM (0 0 0 0),LINESTRING ZM (0 0 0 0,1 1 1 
1))|01bf0b020001b90b01ba0b0200f03ff03ff03ff03f|t|000bbf0002000bb9000bba00023ff03ff03ff03ff0
 GEOMETRYCOLLECTION M (POINT M (0 0 0),LINESTRING M (0 0 0,1 1 
1))|01d707020001d10701d2070200f03ff03ff03f|t|0007d700020007d10007d200023ff03ff03ff0
 GEOMETRYCOLLECTION M (POINT M (0 0 0),LINESTRING M (0 0 0,1 1 
1),GEOMETRYCOLLECTION M (POINT M (0 0 0),LINESTRING M (0 0 0,1 1 

Processed: Re: Bug#813846: postgis FTBFS on hppa and mips architectures - part two (with patch)

2016-02-05 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 pending
Bug #813846 [postgis] postgis FTBFS on hppa and mips architectures - part two 
(with patch)
Added tag(s) pending.

-- 
813846: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=813846
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#813846: postgis FTBFS on hppa and mips architectures - part two (with patch)

2016-02-05 Thread Sebastiaan Couwenberg
Control: tags -1 pending

Hi Helge,

Thanks for the patch.

I've disabled the tests for hppa in git, and it will be included in the
next upload.

On 05-02-16 23:34, Helge Deller wrote:
> postgis fails to build because the testcases "ticket" and "wkb" fail, e.g.:
> https://buildd.debian.org/status/fetch.php?pkg=postgis=hppa=2.2.1%2Bdfsg-2=1453419898
> 
> This is a follow-up on debian ticket #810859 and upstream bug 
> https://trac.osgeo.org/postgis/ticket/3426
> 
> The main problem is, that hppa and mips have different representations of the 
> NaN (Not-a-number) floating point values.
> This leads to the testcases failing like this:
> It expects:
> -#1478|0101200100f87ff87f
> but gets on hppa (and probably mips):
> +#1478|0101200100f77ff77f
>  
> To solve it "the simple way", the debian package already excluded mips from 
> running the testcases in debian/rules.
> Attached is a patch which adds hppa to the same exclusion and this is 
> probably the easy way to go in the beginning with the debian package.
> 
> 
> In addition, of course it would be nice to get this finally fixed cleanly 
> upstream so that we can run the testcases on debian for hppa and mips. 
> For that I think the testcases "tickets" and "wkb" would need to be rewritten 
> somehow (I don't know how though!).
> For example, the expected output regress/tickets_expected is generated [e.g. 
> on x86_64] by running ./regress/tickets.sql
> Maybe changing those tests to not output the hexadecimal representation of 
> "empty" points but instead check with postgis sql extensions if a point is 
> "valid/empty" or not and then writing e.g. SUCESS/FAILURE into the output 
> (via SQL commands if it's possible) and compare those strings instead of hex 
> values ?
>  
> I can provide a ssh login to a hppa box if someone from the postgis team 
> wants to test himself.

The upstream issue is still open, and this change was recently included:

https://trac.osgeo.org/postgis/changeset/13707

The isnan tests are more reliable than the string representation of the
NaN values. Something like that may be an option.

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


Processing of spatialite_4.3.0a-5_amd64.changes

2016-02-05 Thread Debian FTP Masters
spatialite_4.3.0a-5_amd64.changes uploaded successfully to localhost
along with the files:
  spatialite_4.3.0a-5.dsc
  spatialite_4.3.0a-5.debian.tar.xz
  libspatialite-dbg_4.3.0a-5_amd64.deb
  libspatialite-dev_4.3.0a-5_amd64.deb
  libspatialite7_4.3.0a-5_amd64.deb
  libsqlite3-mod-spatialite_4.3.0a-5_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


[spatialite] tag debian/4.3.0a-5 created (now e2df532)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/4.3.0a-5
in repository spatialite.

at  e2df532   (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/spatialite.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


[spatialite] tag debian/4.4.0.rc0-1.exp3 created (now 1cb71ac)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/4.4.0.rc0-1.exp3
in repository spatialite.

at  1cb71ac   (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/spatialite.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


[spatialite] 02/03: Drop build dependency on liblwgeom-dev to untangle spatialite->postgis->gdal->spatialite circular dependency.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository spatialite.

commit 00af44405bf6888598a6c46b71ef682943a2e66d
Author: Bas Couwenberg 
Date:   Mon Aug 17 22:35:37 2015 +0200

Drop build dependency on liblwgeom-dev to untangle 
spatialite->postgis->gdal->spatialite circular dependency.
---
 debian/NEWS   | 16 
 debian/changelog  |  2 ++
 debian/control|  1 -
 debian/libspatialite7.symbols | 24 
 debian/rules  |  2 +-
 5 files changed, 19 insertions(+), 26 deletions(-)

diff --git a/debian/NEWS b/debian/NEWS
index b351ee6..b1a5f55 100644
--- a/debian/NEWS
+++ b/debian/NEWS
@@ -1,3 +1,19 @@
+spatialite (4.3.0a-5) unstable; urgency=medium
+
+  SpatiaLite 4.3.x is no longer configured to enable liblwgeom, because the
+  spatialite->postgis->gdal->spatialite circular dependency this created
+  caused too many issues with transitions to newer releases of GEOS and GDAL.
+
+  Concerns about the circular dependency were raised in #808606 and elsewhere.
+  Please refer to the following posts for more discussion about this issue:
+
+   * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=808606#5
+   * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=791045#49
+   * https://lists.debian.org/debian-gis/2016/02/msg00017.html
+   * 
https://lists.alioth.debian.org/pipermail/pkg-grass-devel/2016-January/042322.html
+
+ -- Bas Couwenberg   Fri, 05 Feb 2016 15:53:48 +0100
+
 spatialite (4.3.0~rc0-1~exp1) experimental; urgency=medium
 
   SpatiaLite 4.3.x is now configured to enable liblwgeom and GCP options.
diff --git a/debian/changelog b/debian/changelog
index 3de52d9..9509584 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 spatialite (4.3.0a-5) UNRELEASED; urgency=medium
 
   * Update Vcs-Git URL to use HTTPS.
+  * Drop build dependency on liblwgeom-dev to untangle
+spatialite->postgis->gdal->spatialite circular dependency.
 
  -- Bas Couwenberg   Fri, 05 Feb 2016 15:50:00 +0100
 
diff --git a/debian/control b/debian/control
index 0beb1d5..dcea09c 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,6 @@ Build-Depends: debhelper (>= 9),
libreadline-dev,
libexpat1-dev,
libfreexl-dev,
-   liblwgeom-dev (>= 2.2.1),
libxml2-dev,
pkg-config,
zlib1g-dev
diff --git a/debian/libspatialite7.symbols b/debian/libspatialite7.symbols
index fda52c6..dde6bd6 100644
--- a/debian/libspatialite7.symbols
+++ b/debian/libspatialite7.symbols
@@ -178,8 +178,6 @@ libspatialite.so.7 libspatialite7 #MINVER#
  ewktParseFree@Base 3.0.0
  ewkt_point_xyzm@Base 3.0.0
  ewky_yylex@Base 4.0.0
- gaia3DDistance@Base 4.3.0~rc0
- gaia3DMaxDistance@Base 4.3.0~rc0
  gaiaAddControlPoint2D@Base 4.3.0~rc0
  gaiaAddControlPoint3D@Base 4.3.0~rc0
  gaiaAddDbfField@Base 2.4.0
@@ -221,8 +219,6 @@ libspatialite.so.7 libspatialite7 #MINVER#
  gaiaAppendPointZMToDynamicLine@Base 3.0.0
  gaiaAppendPointZToDynamicLine@Base 3.0.0
  gaiaAppendToOutBuffer@Base 3.0.0
- gaiaAsX3D@Base 4.3.0~rc0
- gaiaAzimuth@Base 4.3.0~rc0
  gaiaBoundary@Base 2.4.0
  gaiaBoundary_r@Base 4.2.0
  gaiaBuildCircleMbr@Base 2.4.0
@@ -307,7 +303,6 @@ libspatialite.so.7 libspatialite7 #MINVER#
  gaiaDynamicLineSplitAfter@Base 2.4.0
  gaiaDynamicLineSplitBefore@Base 2.4.0
  gaiaEllipseParams@Base 2.4.0
- gaiaEllipsoidAzimuth@Base 4.3.0~rc0
  gaiaEncodeURL@Base 4.3.0~rc0
  gaiaEndianArch@Base 2.4.0
  gaiaEwkbGetLinestring@Base 4.0.0
@@ -382,8 +377,6 @@ libspatialite.so.7 libspatialite7 #MINVER#
  gaiaFromWkb@Base 2.4.0
  gaiaFullFileNameFromPath@Base 4.3.0~rc0
  gaiaGPKG2Spatialite@Base 4.2.0
- gaiaGeoHash@Base 4.3.0~rc0
- gaiaGeodesicArea@Base 4.3.0~rc0
  gaiaGeodesicDistance@Base 2.4.0
  gaiaGeodesicTotalLength@Base 2.4.0
  gaiaGeomCollArea@Base 2.4.0
@@ -461,8 +454,6 @@ libspatialite.so.7 libspatialite7 #MINVER#
  gaiaGetGpsLatLong@Base 2.4.0
  gaiaGetLayerExtent@Base 4.1.0
  gaiaGetLocaleCharset@Base 2.4.0
- gaiaGetLwGeomErrorMsg@Base 4.3.0~rc0
- gaiaGetLwGeomWarningMsg@Base 4.3.0~rc0
  gaiaGetMbrMaxX@Base 2.4.0
  gaiaGetMbrMaxY@Base 2.4.0
  gaiaGetMbrMinX@Base 2.4.0
@@ -557,9 +548,6 @@ libspatialite.so.7 libspatialite7 #MINVER#
  gaiaMakePointZ@Base 3.0.2~20120302
  gaiaMakePointZM@Base 3.0.2~20120302
  gaiaMakePolygon@Base 4.2.0
- gaiaMakeValid@Base 4.3.0~rc0
- gaiaMakeValidDiscarded@Base 4.3.0~rc0
- gaiaMaxDistance@Base 4.3.0~rc0
  gaiaMbrGeometry@Base 2.4.0
  gaiaMbrLinestring@Base 2.4.0
  gaiaMbrPolygon@Base 2.4.0
@@ -576,7 +564,6 @@ libspatialite.so.7 libspatialite7 #MINVER#
  gaiaMergeGeometries@Base 3.0.0
  gaiaMergeGeometries_r@Base 4.2.0
  gaiaMinDistance@Base 2.4.0
- gaiaNodeLines@Base 4.3.0~rc0
  gaiaNormalizeLonLat@Base 4.0.0
  gaiaOffsetCurve@Base 3.0.2~20120302
  gaiaOffsetCurve_r@Base 4.2.0
@@ -625,7 

[spatialite] branch master updated (14e7178 -> e2df532)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository spatialite.

  from  14e7178   Set distribution to unstable.
   new  1139f79   Update Vcs-Git URL to use HTTPS.
   new  00af444   Drop build dependency on liblwgeom-dev to untangle 
spatialite->postgis->gdal->spatialite circular dependency.
   new  e2df532   Set distribution to unstable.

The 3 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/NEWS   | 16 
 debian/changelog  |  8 
 debian/control|  3 +--
 debian/libspatialite7.symbols | 24 
 debian/rules  |  2 +-
 5 files changed, 26 insertions(+), 27 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/spatialite.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


[spatialite] 01/03: Update Vcs-Git URL to use HTTPS.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository spatialite.

commit 1139f7942b7f31a6686bea3f90246b2183a63596
Author: Bas Couwenberg 
Date:   Sun Jan 24 21:51:15 2016 +0100

Update Vcs-Git URL to use HTTPS.
---
 debian/changelog | 6 ++
 debian/control   | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 32708d2..3de52d9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+spatialite (4.3.0a-5) UNRELEASED; urgency=medium
+
+  * Update Vcs-Git URL to use HTTPS.
+
+ -- Bas Couwenberg   Fri, 05 Feb 2016 15:50:00 +0100
+
 spatialite (4.3.0a-4) unstable; urgency=medium
 
   * Require at least liblwgeom-dev 2.2.1 for postgis mini-transition.
diff --git a/debian/control b/debian/control
index 0fd9f29..0beb1d5 100644
--- a/debian/control
+++ b/debian/control
@@ -20,7 +20,7 @@ Build-Depends: debhelper (>= 9),
zlib1g-dev
 Standards-Version: 3.9.6
 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/spatialite.git
-Vcs-Git: git://anonscm.debian.org/pkg-grass/spatialite.git
+Vcs-Git: https://anonscm.debian.org/git/pkg-grass/spatialite.git
 Homepage: https://www.gaia-gis.it/fossil/libspatialite
 
 Package: libspatialite7

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/spatialite.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


[spatialite] 03/03: Set distribution to unstable.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository spatialite.

commit e2df532dd48753a03b54e6a2fc2577258806b750
Author: Bas Couwenberg 
Date:   Fri Feb 5 16:14:30 2016 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 9509584..255948d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-spatialite (4.3.0a-5) UNRELEASED; urgency=medium
+spatialite (4.3.0a-5) unstable; urgency=medium
 
   * Update Vcs-Git URL to use HTTPS.
   * Drop build dependency on liblwgeom-dev to untangle
 spatialite->postgis->gdal->spatialite circular dependency.
 
- -- Bas Couwenberg   Fri, 05 Feb 2016 15:50:00 +0100
+ -- Bas Couwenberg   Fri, 05 Feb 2016 16:14:18 +0100
 
 spatialite (4.3.0a-4) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/spatialite.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


[spatialite] 02/03: Merge changes from spatialite (4.3.0a-5).

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository spatialite.

commit c62bc5bd373a198e45678e622ebcb5094ce28749
Author: Bas Couwenberg 
Date:   Fri Feb 5 17:24:19 2016 +0100

Merge changes from spatialite (4.3.0a-5).
---
 debian/changelog | 9 +
 1 file changed, 9 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index d960a92..5457a69 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+spatialite (4.4.0~rc0-1~exp3) UNRELEASED; urgency=medium
+
+  * Merge changes from spatialite (4.3.0a-5).
+- Update Vcs-Git URL to use HTTPS.
+- Drop build dependency on liblwgeom-dev to untangle
+  spatialite->postgis->gdal->spatialite circular dependency.
+
+ -- Bas Couwenberg   Fri, 05 Feb 2016 17:23:07 +0100
+
 spatialite (4.4.0~rc0-1~exp2) experimental; urgency=medium
 
   * Merge changes from spatialite (4.3.0a-4).

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/spatialite.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


[spatialite] branch experimental updated (a60e64b -> 1cb71ac)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch experimental
in repository spatialite.

  from  a60e64b   Update Vcs-Git URL to use HTTPS.
  adds  1139f79   Update Vcs-Git URL to use HTTPS.
  adds  00af444   Drop build dependency on liblwgeom-dev to untangle 
spatialite->postgis->gdal->spatialite circular dependency.
  adds  e2df532   Set distribution to unstable.
   new  222f3ea   Merge tag 'debian/4.3.0a-5' into experimental
   new  c62bc5b   Merge changes from spatialite (4.3.0a-5).
   new  1cb71ac   Set distribution to experimental.

The 3 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/NEWS   | 16 
 debian/changelog  | 17 +
 debian/control|  1 -
 debian/libspatialite7.symbols | 24 
 debian/rules  |  2 +-
 5 files changed, 34 insertions(+), 26 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/spatialite.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 spatialite_4.4.0~rc0-1~exp3_amd64.changes

2016-02-05 Thread Debian FTP Masters
spatialite_4.4.0~rc0-1~exp3_amd64.changes uploaded successfully to localhost
along with the files:
  spatialite_4.4.0~rc0-1~exp3.dsc
  spatialite_4.4.0~rc0-1~exp3.debian.tar.xz
  libspatialite-dbg_4.4.0~rc0-1~exp3_amd64.deb
  libspatialite-dev_4.4.0~rc0-1~exp3_amd64.deb
  libspatialite7_4.4.0~rc0-1~exp3_amd64.deb
  libsqlite3-mod-spatialite_4.4.0~rc0-1~exp3_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


[spatialite] 01/03: Merge tag 'debian/4.3.0a-5' into experimental

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository spatialite.

commit 222f3ea967a863c25c428097a2688165d27ed275
Merge: a60e64b e2df532
Author: Bas Couwenberg 
Date:   Fri Feb 5 17:22:59 2016 +0100

Merge tag 'debian/4.3.0a-5' into experimental

Conflicts:
debian/changelog
debian/control
debian/libspatialite7.symbols

 debian/NEWS   | 16 
 debian/changelog  |  8 
 debian/control|  1 -
 debian/libspatialite7.symbols | 24 
 debian/rules  |  2 +-
 5 files changed, 25 insertions(+), 26 deletions(-)

diff --cc debian/changelog
index a78e24b,255948d..d960a92
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,20 -1,11 +1,28 @@@
 +spatialite (4.4.0~rc0-1~exp2) experimental; urgency=medium
 +
 +  * Merge changes from spatialite (4.3.0a-4).
 +- Require at least liblwgeom-dev 2.2.1 for postgis mini-transition.
 +
 + -- Bas Couwenberg   Tue, 12 Jan 2016 21:37:29 +0100
 +
 +spatialite (4.4.0~rc0-1~exp1) experimental; urgency=medium
 +
 +  * New upstream release candidate.
 +  * Drop patches, applied upstream.
 +  * Update copyright file, drop files section for asprintf4win.h.
 +  * Enable parallel builds, disable parallel test execution.
 +  * Update symbols for 4.4.0~rc0.
 +
 + -- Bas Couwenberg   Tue, 15 Dec 2015 22:03:12 +0100
 +
+ spatialite (4.3.0a-5) unstable; urgency=medium
+ 
+   * Update Vcs-Git URL to use HTTPS.
+   * Drop build dependency on liblwgeom-dev to untangle
+ spatialite->postgis->gdal->spatialite circular dependency.
+ 
+  -- Bas Couwenberg   Fri, 05 Feb 2016 16:14:18 +0100
+ 
  spatialite (4.3.0a-4) unstable; urgency=medium
  
* Require at least liblwgeom-dev 2.2.1 for postgis mini-transition.
diff --cc debian/libspatialite7.symbols
index 269ac06,dde6bd6..f4cecbf
--- a/debian/libspatialite7.symbols
+++ b/debian/libspatialite7.symbols
@@@ -215,9 -178,6 +215,7 @@@ libspatialite.so.7 libspatialite7 #MINV
   ewktParseFree@Base 3.0.0
   ewkt_point_xyzm@Base 3.0.0
   ewky_yylex@Base 4.0.0
-  gaia3DDistance@Base 4.3.0~rc0
-  gaia3DMaxDistance@Base 4.3.0~rc0
 + gaia3dLength@Base 4.4.0~rc0
   gaiaAddControlPoint2D@Base 4.3.0~rc0
   gaiaAddControlPoint3D@Base 4.3.0~rc0
   gaiaAddDbfField@Base 2.4.0
@@@ -513,11 -453,7 +506,9 @@@
   gaiaGetGpsCoords@Base 2.4.0
   gaiaGetGpsLatLong@Base 2.4.0
   gaiaGetLayerExtent@Base 4.1.0
 + gaiaGetLinkByPoint@Base 4.4.0~rc0
 + gaiaGetLinkSeed@Base 4.4.0~rc0
   gaiaGetLocaleCharset@Base 2.4.0
-  gaiaGetLwGeomErrorMsg@Base 4.3.0~rc0
-  gaiaGetLwGeomWarningMsg@Base 4.3.0~rc0
   gaiaGetMbrMaxX@Base 2.4.0
   gaiaGetMbrMaxY@Base 2.4.0
   gaiaGetMbrMinX@Base 2.4.0
@@@ -636,24 -564,6 +624,23 @@@
   gaiaMergeGeometries@Base 3.0.0
   gaiaMergeGeometries_r@Base 4.2.0
   gaiaMinDistance@Base 2.4.0
 + gaiaModEdgeHeal@Base 4.4.0~rc0
 + gaiaModEdgeSplit@Base 4.4.0~rc0
 + gaiaModGeoLinkSplit@Base 4.4.0~rc0
 + gaiaModLinkHeal@Base 4.4.0~rc0
 + gaiaModLogLinkSplit@Base 4.4.0~rc0
 + gaiaMoveIsoNetNode@Base 4.4.0~rc0
 + gaiaMoveIsoNode@Base 4.4.0~rc0
 + gaiaNetworkCreate@Base 4.4.0~rc0
 + gaiaNetworkDestroy@Base 4.4.0~rc0
 + gaiaNetworkDrop@Base 4.4.0~rc0
 + gaiaNetworkFromCache@Base 4.4.0~rc0
 + gaiaNetworkFromDBMS@Base 4.4.0~rc0
 + gaiaNewEdgeHeal@Base 4.4.0~rc0
 + gaiaNewEdgesSplit@Base 4.4.0~rc0
 + gaiaNewGeoLinkSplit@Base 4.4.0~rc0
 + gaiaNewLinkHeal@Base 4.4.0~rc0
 + gaiaNewLogLinkSplit@Base 4.4.0~rc0
-  gaiaNodeLines@Base 4.3.0~rc0
   gaiaNormalizeLonLat@Base 4.0.0
   gaiaOffsetCurve@Base 3.0.2~20120302
   gaiaOffsetCurve_r@Base 4.2.0
@@@ -984,7 -799,7 +961,6 @@@
   spatialite_version@Base 2.4.0
   spatialitetargetcpu@Base 4.2.0
   spatialiteversion@Base 2.4.0
-  splitelwgeomversion@Base 4.3.0~rc0
 - splite_connection_pool@Base 4.2.0
   srid_get_axis@Base 4.3.0~rc0
   srid_get_datum@Base 4.3.0~rc0
   srid_get_prime_meridian@Base 4.3.0~rc0

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/spatialite.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


[spatialite] 03/03: Set distribution to experimental.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch experimental
in repository spatialite.

commit 1cb71acbd25a140e94ce118b47313c20fd7efb7c
Author: Bas Couwenberg 
Date:   Fri Feb 5 17:25:54 2016 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 5457a69..f9f01dc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-spatialite (4.4.0~rc0-1~exp3) UNRELEASED; urgency=medium
+spatialite (4.4.0~rc0-1~exp3) experimental; urgency=medium
 
   * Merge changes from spatialite (4.3.0a-5).
 - Update Vcs-Git URL to use HTTPS.
 - Drop build dependency on liblwgeom-dev to untangle
   spatialite->postgis->gdal->spatialite circular dependency.
 
- -- Bas Couwenberg   Fri, 05 Feb 2016 17:23:07 +0100
+ -- Bas Couwenberg   Fri, 05 Feb 2016 17:25:37 +0100
 
 spatialite (4.4.0~rc0-1~exp2) experimental; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/spatialite.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


spatialite_4.3.0a-5_amd64.changes ACCEPTED into unstable

2016-02-05 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 05 Feb 2016 16:14:18 +0100
Source: spatialite
Binary: libspatialite7 libspatialite-dev libspatialite-dbg 
libsqlite3-mod-spatialite
Architecture: source amd64
Version: 4.3.0a-5
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 libspatialite-dbg - Geospatial extension for SQLite - debugging symbols
 libspatialite-dev - Geospatial extension for SQLite - development files
 libspatialite7 - Geospatial extension for SQLite - libraries
 libsqlite3-mod-spatialite - Geospatial extension for SQLite - loadable module
Changes:
 spatialite (4.3.0a-5) unstable; urgency=medium
 .
   * Update Vcs-Git URL to use HTTPS.
   * Drop build dependency on liblwgeom-dev to untangle
 spatialite->postgis->gdal->spatialite circular dependency.
Checksums-Sha1:
 aa245ac2c80b5c39d096e0db3911327cb249f58e 2413 spatialite_4.3.0a-5.dsc
 e0bb0547087031e40cb2cb4c9ffc29760eacadde 23860 
spatialite_4.3.0a-5.debian.tar.xz
 244c910c3ca57e6fd3c3fd1f83ddbeffcdd2e597 4687906 
libspatialite-dbg_4.3.0a-5_amd64.deb
 5b16eae0658e5149d96724a4b689fc4b8b3743a7 1323272 
libspatialite-dev_4.3.0a-5_amd64.deb
 b1d9e1255def7dfad279d39872746c89aa471e0a 1230246 
libspatialite7_4.3.0a-5_amd64.deb
 69f5cba93d8a5d2484ee38c467120001d47ae27f 1204528 
libsqlite3-mod-spatialite_4.3.0a-5_amd64.deb
Checksums-Sha256:
 8956ac845470e3990d44ed0f21b61d03125ed509f48f2dc69ba0849d3c20ef3f 2413 
spatialite_4.3.0a-5.dsc
 ba0b1a4ebfc3ebce091a3275dd55bb6a484366b4d15d1a8fd3b2496695ada1c4 23860 
spatialite_4.3.0a-5.debian.tar.xz
 ea9941edf288dae0947d44931d3d381718a72c59eafdcd6b37468b513c6f32c8 4687906 
libspatialite-dbg_4.3.0a-5_amd64.deb
 c254c662a00d2d8d706e5954db7fa87299f6f138bbc07b2782d390fd5f6f999b 1323272 
libspatialite-dev_4.3.0a-5_amd64.deb
 11a3a61163debf302db95fce95b9ad5a786d425a3d9ea191ec3a69e15da5c24f 1230246 
libspatialite7_4.3.0a-5_amd64.deb
 46dd30c368131ed68f98f9509e8a58d90ebd4d85384c8b340213b8a4cde4c992 1204528 
libsqlite3-mod-spatialite_4.3.0a-5_amd64.deb
Files:
 aee314014ea94a9bd14f03f25b1dfff0 2413 science optional spatialite_4.3.0a-5.dsc
 14f79c617d8435c5977b5dcca986faee 23860 science optional 
spatialite_4.3.0a-5.debian.tar.xz
 2f297f5d9c812320cf0ded4219f681d7 4687906 debug extra 
libspatialite-dbg_4.3.0a-5_amd64.deb
 6ec756db5f5e7c0fcff3251ba077fd3b 1323272 libdevel optional 
libspatialite-dev_4.3.0a-5_amd64.deb
 3a0312876f900d5801a036bc95ebc069 1230246 libs optional 
libspatialite7_4.3.0a-5_amd64.deb
 a9feddacbc85201a197b18362b4f7e13 1204528 libs optional 
libsqlite3-mod-spatialite_4.3.0a-5_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWtMQnAAoJEGdQ8QrojUrxsycP/jozKA5+C47fhFtsgQGm03uC
YZxLfK6nOoBigWS9FkA6dEvh6qWzoP9YOiud1kHqODON0kuZO5pmNeGBatTBbG6z
+6o04YuQKX/3vwRWWTDeEDLeQvQFGTjWBFN2JdY73ER9VHsXiVKapWTcqyElvBUY
1oocBUu1Zh2723zFNCKICQvylb/fLk3e07/J3Vb2m8tfhOnQGI4QWVqGxgQv04DJ
CU8Sg2UfHetK0HIhO0b2G8iT3AkFRL5mX/VTY5iseiuS1px51vBO179sK7R9x9Eu
o4U+0qXHi6CdY7O3IyH9vF5H2nwB1OQsGxusUh/pbzGOTMzBupdBdCDPMN+xT0yK
pJLRNZw5lhRPy1LNxNXOzL9CUfeDu6l5unuo+oq1q1sZdPhe64HaagF2E0UJUaFn
yV0lTLlEaw3NN3RkG9V9rP79zagAFPAhj9sa06fY8O+Zl+69GN5sr4FBrXLsGHkL
RCvbD2VDim+1WuBXwGSOAczQJIMWaz+WFuPMzkLoEMeRejUHq34yyG+grqOSqeaW
od8bXn77cWxBtyrsFh1KSlUcV2bDJ1b9Nb74JwA0sLQ267rliYLAv6LSd/k0lXuH
fspaoW6TEFPiu/J1sX1ycgNAwFVTWkpq38p0/XV8LqDq7YJwdi/aDvFMQiC9jUrZ
TMoSncVIwe4+/0bQW35z
=NpUl
-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#808606: Circular dependencies in Debian GIS packages (Was: Adding build profiles to Debian GIS packages)

2016-02-05 Thread Sebastiaan Couwenberg
Hi John & Bill,

On 23-01-16 04:36, John Paul Adrian Glaubitz wrote:
> I have recently been trying to get a couple of packages like spatiality
> and gdal build on sparc64 which turned out to be extremtely frustrating
> due to the circular dependency chain which seems to affect many of
> your packages.

As mentioned on the debian-gis list [0], I've bit the bullet and dropped
the liblwgeom dependency from spatialite to untangle the
spatialite->postgis->gdal->spatialite circular dependency.

spatialite (4.3.0a-5) has been uploaded to unstable and should be
available in the archive soon. This should unblock the next gdal
transition and also help you with the issues it caused you.

[0] https://lists.debian.org/debian-gis/2016/02/msg00017.html

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


Bug#813873: python-mpop: FTBFS: ImportError: No module named eps_format

2016-02-05 Thread Chris Lamb
Source: python-mpop
Version: 1.0.0-1
Severity: serious
Justification: fails to build from source
User: reproducible-bui...@lists.alioth.debian.org
Usertags: ftbfs
X-Debbugs-Cc: reproducible-bui...@lists.alioth.debian.org

Dear Maintainer,

python-mpop fails to build from source in unstable/amd64.

Also note:

 WARNING: intersphinx inventory 'http://docs.python.org/objects.inv' not 
fetchable due to : 

FTBFS section is:

  [..]

  
  
/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc/source/input.rst:32:
 WARNING: autodoc: failed to import module u'mpop.satin.eps_format'; the 
following exception was raised:
  Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/sphinx/ext/autodoc.py", line 385, in 
import_object
  __import__(self.modname)
  ImportError: No module named eps_format
  
/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc/source/input.rst:41:
 WARNING: autodoc: failed to import module u'mpop.satin.hdfeos_l1b'; the 
following exception was raised:
  Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/sphinx/ext/autodoc.py", line 385, in 
import_object
  __import__(self.modname)
File 
"/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/mpop/satin/hdfeos_l1b.py",
 line 42, in 
  from pyhdf.SD import SD
  ImportError: No module named pyhdf.SD
  
/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc/source/input.rst:50:
 WARNING: autodoc: failed to import module u'mpop.satin.msg_hdf'; the following 
exception was raised:
  Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/sphinx/ext/autodoc.py", line 385, in 
import_object
  __import__(self.modname)
File 
"/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/mpop/satin/msg_hdf.py",
 line 35, in 
  import pyresample.utils
  ImportError: No module named utils
  
/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc/source/input.rst:68:
 WARNING: autodoc: failed to import module u'mpop.satin.hrpt'; the following 
exception was raised:
  Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/sphinx/ext/autodoc.py", line 385, in 
import_object
  __import__(self.modname)
File 
"/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/mpop/satin/hrpt.py",
 line 48, in 
  SATPOS_DIR = 
os.path.sep.join(os.environ["AAPP_PREFIX"].split(os.path.sep)[:-1])
File "/usr/lib/python2.7/UserDict.py", line 40, in __getitem__
  raise KeyError(key)
  KeyError: 'AAPP_PREFIX'
  
/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc/source/input.rst:77:
 WARNING: autodoc: failed to import module u'mpop.satin.eps1a'; the following 
exception was raised:
  Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/sphinx/ext/autodoc.py", line 385, in 
import_object
  __import__(self.modname)
File 
"/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/mpop/satin/eps1a.py",
 line 45, in 
  SATPOS_DIR = 
os.path.sep.join(os.environ["AAPP_PREFIX"].split(os.path.sep)[:-1])
File "/usr/lib/python2.7/UserDict.py", line 40, in __getitem__
  raise KeyError(key)
  KeyError: 'AAPP_PREFIX'
  
/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc/source/pp.rst:96:
 WARNING: Include file 
u'/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/satprod/etc/meteosat07.cfg' 
not found or reading it failed
  
/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc/source/pp.rst:114:
 WARNING: Include file 
u'/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/mpop/instruments/mviri.py'
 not found or reading it failed
  looking for now-outdated files... none found
  pickling environment... done
  checking consistency... done
  preparing documents... done
  writing output... [ 14%] image
  writing output... [ 28%] index
  writing output... [ 42%] input
  writing output... [ 57%] install
  writing output... [ 71%] pp
  writing output... [ 85%] quickstart
  writing output... [100%] saturn
  
  generating indices... genindex py-modindex
  writing additional pages... search
  copying static files... WARNING: html_static_path entry 
u'/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc/source/_static'
 does not exist
  done
  copying extra files... done
  dumping search index in English (code: en) ... done
  dumping object inventory... done
  build succeeded, 9 warnings.
  
  Build finished. The HTML pages are in build/html.
  make[2]: Leaving directory 
'/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0/doc'
  make[1]: Leaving directory 
'/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0'
 debian/rules override_dh_auto_test
  make[1]: Entering directory 
'/home/lamby/temp/cdt.20160206082813.bm9Dtvm7g3/python-mpop-1.0.0'
  pyversions: missing X(S)-Python-Version in control file, fall back to 

spatialite_4.4.0~rc0-1~exp3_amd64.changes ACCEPTED into experimental

2016-02-05 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 05 Feb 2016 17:25:37 +0100
Source: spatialite
Binary: libspatialite7 libspatialite-dev libspatialite-dbg 
libsqlite3-mod-spatialite
Architecture: source amd64
Version: 4.4.0~rc0-1~exp3
Distribution: experimental
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 libspatialite-dbg - Geospatial extension for SQLite - debugging symbols
 libspatialite-dev - Geospatial extension for SQLite - development files
 libspatialite7 - Geospatial extension for SQLite - libraries
 libsqlite3-mod-spatialite - Geospatial extension for SQLite - loadable module
Changes:
 spatialite (4.4.0~rc0-1~exp3) experimental; urgency=medium
 .
   * Merge changes from spatialite (4.3.0a-5).
 - Update Vcs-Git URL to use HTTPS.
 - Drop build dependency on liblwgeom-dev to untangle
   spatialite->postgis->gdal->spatialite circular dependency.
Checksums-Sha1:
 8aa56a42f98b3c992aaa9f9a71c58e41de24a6b6 2470 spatialite_4.4.0~rc0-1~exp3.dsc
 35577f5ef4352809eede010c836bb83b3cf408ba 23964 
spatialite_4.4.0~rc0-1~exp3.debian.tar.xz
 ec0615a69e78b341d2ddce3832b93aec6190b831 4824260 
libspatialite-dbg_4.4.0~rc0-1~exp3_amd64.deb
 ab4ee0771c961379a59f0f83b10dd24fab9859ce 1371920 
libspatialite-dev_4.4.0~rc0-1~exp3_amd64.deb
 4f7b4960f638db32fe0704cd96fa950386392991 1243022 
libspatialite7_4.4.0~rc0-1~exp3_amd64.deb
 be465e11923ac4a105b56108408f0d6012cca019 1217542 
libsqlite3-mod-spatialite_4.4.0~rc0-1~exp3_amd64.deb
Checksums-Sha256:
 63d4a7bcd5c7b79a0b518a474744f62de77f84f8f290a88345504bf5b1506d37 2470 
spatialite_4.4.0~rc0-1~exp3.dsc
 6625a794c43b0804135b77fc490f6f146e2aae6e25c607ce6da3395e038532a0 23964 
spatialite_4.4.0~rc0-1~exp3.debian.tar.xz
 8cc605f8e2491931bb8a4008ab6f61a8c86b87a8a343a0cd5972340c7e1f0759 4824260 
libspatialite-dbg_4.4.0~rc0-1~exp3_amd64.deb
 d3996a42dd51434d9dad511571207ab7f376b63000c450f1e4d74ebca7c1da22 1371920 
libspatialite-dev_4.4.0~rc0-1~exp3_amd64.deb
 6ea45b3873547fb327dba12a2c744712f5bd2e79105935ae2ecf2e84287d2628 1243022 
libspatialite7_4.4.0~rc0-1~exp3_amd64.deb
 52eef5cc9be2712ce5c9256a5c9cd4242e6f8efd8da5eb6a567cf5f361238270 1217542 
libsqlite3-mod-spatialite_4.4.0~rc0-1~exp3_amd64.deb
Files:
 fe6bc283238c0e8b59696ffa02c2f565 2470 science optional 
spatialite_4.4.0~rc0-1~exp3.dsc
 7743f51621bbf3a7ee056242b17d8aa8 23964 science optional 
spatialite_4.4.0~rc0-1~exp3.debian.tar.xz
 8d153d675afce6204dc6fb125508155e 4824260 debug extra 
libspatialite-dbg_4.4.0~rc0-1~exp3_amd64.deb
 1c5ed6835c0edd7c8bed45a9855fbbb8 1371920 libdevel optional 
libspatialite-dev_4.4.0~rc0-1~exp3_amd64.deb
 68f394ddacea8eecce601eee52009329 1243022 libs optional 
libspatialite7_4.4.0~rc0-1~exp3_amd64.deb
 34106064cce9b324ad815ee3a0f7dff2 1217542 libs optional 
libsqlite3-mod-spatialite_4.4.0~rc0-1~exp3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWtNJHAAoJEGdQ8QrojUrxx+MQAIXmI/Ox4uYknPLSgqAOOIpM
zu6B7O44WsKW0pKpt3tvGvns4FRY2GBl2rnOMKXnPTfjqOyeNJR+f7LdjEnnax9I
K5Mu+t/yHJl0b3s1Hq7o8gwBex9jg3/kUfTeBQzIWzngDr6bjKdyJX76IEhQ7OCC
X3MSSZWeR+5qm0Jub2r6T0VGp9JhQaVg5FAnFZOy6fbq5IPRTki6etSBTYMsnIU2
2awGEzBdZkATsNl+YUlLbzDdkxu1U51+Ct0CkI2w/SLh9PzNaMlmb0/pDvBzaffY
oJOTP7AM9E0d0rrSZl6E2g3txnemWCo69HbDrgheuJqjZ8aPicsw2pzbqDbibUoB
PVg5amqzulCqXp0evMcr1k126YgZOIGEdHZpD7BQ7RVwc5v3Qca2ZB5HjtTzG3Ma
KqTk6XT+ljIu0XYXbN81g+dzx1xuheQA0dwo78F8UXu7xpU4skUlhhXKQrn+CPRO
MSaaVMw+C22fqSlv/EpTHSueCrrmSE8Fmukk6ZW6nK50cFvGBaSNY3At/OTEVq1o
MByUvu6RLeunAjtt6Ta0gsvuh5z0r2wvXhiXm8Orl90KUU6APNmOTdoOX73gMN3B
7YV+tmUznBP6J0tGhVQNAOMBFldGMIGuK6USBcl+V7XK67mRiEba8dNzvosVHTNk
SdR1zdOVuekeCraQzzfo
=YztT
-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


Re: [website] 01/01: Improve cowbuilder set up section

2016-02-05 Thread Sebastiaan Couwenberg
Hi Ross,

On 05-02-16 22:12, Ross Gammon wrote:
> Improve cowbuilder set up section
> 
> Move the pbuilder hooks section up so that you don't create the chroot
> without it. Don't use ambiguous ~ for path to hooks. Add information
> about updating the chroot. Add a link to setting up multiple 
> distributions.

I'm not really happy with this change. The flow of the 'Creating the
cowbuilder chroot' section doesn't make sense any more.

Plus the ~ is still used in the example command making it must be the
same as the preceding example setup of the lintian hook.

Using `git-pbuilder` only for the update command also doesn't make
sense. `cowbuilder --update ...` should be used to remain consistent
with the create instructions. git-pbuilder is an alternative that should
be documented as such. The DIST & ARCH env vars should not be included
in the  element and their values should be enclosed in
 tags.

I've pushed some changes to address the above. I've not pushed changes
for the below.

If you want to configure the hooks after creating a chroot, you need to
set the option in ~/.pbuilderc or use the --update and --override-config
options to change the chroot.

The 'Other useful set up tips' section should be merged into the 'Tips &
tricks' section, it doesn't belong in the cowbuilder setup section.

The link to the pbuilder wiki needs to be removed or include a warning
that it documents multiple distributions for pbuilder not cowbuilder as
used by git-buildpackage.

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


[postgis] 01/02: Add changelog entry for Vcs-Git URL change.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository postgis.

commit 797087a624c5991a8b5e0d4ddbf67808bf0711ad
Author: Bas Couwenberg 
Date:   Sat Feb 6 00:04:21 2016 +0100

Add changelog entry for Vcs-Git URL change.
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 898e541..8ed5b0f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+postgis (2.2.1+dfsg-3) UNRELEASED; urgency=medium
+
+  * Update Vcs-Git URL to use HTTPS.
+
+ -- Bas Couwenberg   Fri, 05 Feb 2016 23:58:59 +0100
+
 postgis (2.2.1+dfsg-2) unstable; urgency=medium
 
   [ Bas Couwenberg ]

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/postgis.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


[postgis] branch master updated (d246d93 -> 81bfc4a)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository postgis.

  from  d246d93   Update Vcs-Git URL to use HTTPS.
   new  797087a   Add changelog entry for Vcs-Git URL change.
   new  81bfc4a   Skip tests on hppa, fails the tickets and wkb tests 
because of different NaN representations.

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 | 9 +
 debian/rules | 5 +++--
 2 files changed, 12 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/postgis.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


[postgis] 02/02: Skip tests on hppa, fails the tickets and wkb tests because of different NaN representations.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository postgis.

commit 81bfc4aa97d2802f7faeaf9b41350b0f7fb4a1bb
Author: Bas Couwenberg 
Date:   Sat Feb 6 00:03:38 2016 +0100

Skip tests on hppa, fails the tickets and wkb tests because of different 
NaN representations.
---
 debian/changelog | 3 +++
 debian/rules | 5 +++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 8ed5b0f..0e6a5ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,9 @@
 postgis (2.2.1+dfsg-3) UNRELEASED; urgency=medium
 
   * Update Vcs-Git URL to use HTTPS.
+  * Skip tests on hppa, fails the tickets and wkb tests because of different
+NaN representations.
+(closes: #813846)
 
  -- Bas Couwenberg   Fri, 05 Feb 2016 23:58:59 +0100
 
diff --git a/debian/rules b/debian/rules
index 13a4869..031f6dc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -28,8 +28,9 @@ endif
 # Hurd doesn't implement semaphores; skip regress tests
 # mipsel has persisent buildd issues, skip tests too.
 # armel has no sfcgal support, and fails interrupt_buffer test.
-# kfreebsd-i386 & mips64el are not a release architecture
-ifneq (,$(findstring $(DEB_HOST_ARCH),"hurd-i386 mipsel armel kfreebsd-i386 
mips64el"))
+# kfreebsd-i386 & mips64el are not a release architectures.
+# hppa (and mips*) fails the tickets and wkb tests because of different NaN 
representations.
+ifneq (,$(findstring $(DEB_HOST_ARCH),"hurd-i386 mipsel armel hppa 
kfreebsd-i386 mips64el"))
CHECK =
 endif
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/postgis.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


[website] branch master updated (37f942e -> 008ddb3)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository website.

  from  37f942e   Improve cowbuilder set up section
   new  008ddb3   Improve upon Ross' changes.

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:
 policy.xml | 95 ++
 1 file changed, 58 insertions(+), 37 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/website.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


[website] 01/01: Improve upon Ross' changes.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository website.

commit 008ddb3b168bf8cdc30052013859a75b0060f6fe
Author: Bas Couwenberg 
Date:   Fri Feb 5 23:26:20 2016 +0100

Improve upon Ross' changes.
---
 policy.xml | 95 ++
 1 file changed, 58 insertions(+), 37 deletions(-)

diff --git a/policy.xml b/policy.xml
index 2d6dc0e..b8beed7 100644
--- a/policy.xml
+++ b/policy.xml
@@ -897,13 +897,11 @@ pkg-grass/
   
   cowbuilder is preferred over 
pbuilder by git-buildpackage for its 
increased performance using Copy-On-Write techniques.
 pbuilder can be selected instead by setting the environment 
variable BUILDER to "pbuilder", and
-qemubuilder can be selected by setting 
BUILDER to "qemubuilder".
-  
+qemubuilder can be selected by setting 
BUILDER to "qemubuilder".
   
 Creating the cowbuilder chroot
 Root privileges are required to run 
cowbuilder and pbuilder.
-Configure sudo with visudo 
to allow username passwordless execution of 
cowbuilder and pbuilder using the 
following settings:
-
+Configure sudo with visudo to allow 
username passwordless execution of 
cowbuilder and pbuilder using the 
following settings:
 
 Defaults! PBUILDERS setenv
 
@@ -913,34 +911,6 @@ Cmnd_Alias PBUILDERS=/usr/sbin/pbuilder, 
/usr/sbin/cowbuilder
 # User privilege specification
 username ALL=(root) 
NOPASSWD:PBUILDERS
 
-  
-  
-Configure lintian pbuilder hook
-
-  It's highly recommended to run lintian
-  after every build.
-  pbuilder provides an example
-  lintian hook in
-  /usr/share/doc/pbuilder/examples/B90lintian
-  for this.
-
-
-  Copy this file to your pbuilder hooks
-  directory, and modify it to report all lintian
-  tags and not fail the build if lintian reports issues.
-
-mkdir /var/cache/pbuilder/hook.d/
-cp 
/usr/share/doc/pbuilder/examples/B90lintian /var/cache/pbuilder/hook.d/
-sed -i 's/lintian -I 
--show-overrides/ --pedantic -E/; s/^su /##/; s/^#su /su /' 
/var/cache/pbuilder/hook.d/B90lintian
-
-
-
-  Specify the pbuilder hook directory when
-  creating the chroot to run the hook scripts contained therein.
-
-sudo cowbuilder --create 
--distribution=sid 
--basepath=/var/cache/pbuilder/base-sid.cow
 --hookdir=~/pbuilder-hooks/
-
-
 
   To create distribution specific
   cowbuilder chroots, use:
@@ -967,16 +937,67 @@ Cmnd_Alias PBUILDERS=/usr/sbin/pbuilder, 
/usr/sbin/cowbuilder
 
 
 
-  Remember to update the chroot for 
git-buildpackage regularly:
+  You can also use the
+  http://manpages.debian.org/cgi-bin/man.cgi?query=git-pbuilder;>git-pbuilder
+  wrapper to create (and
+  update)
+  cowbuilder chroots for
+  git-buildpackage:
+
+git-pbuilder create
+
+  This will also create the default chroot for
+  git-buildpackage
+  (/var/cache/pbuilder/base-sid.cow).
+
+
+  Other distributions and architectures can be specified with
+  environment variables:
 
-git-pbuilder update
+DIST=distribution 
ARCH=architecture 
git-pbuilder create
 
-  This will update the default chroot (e.g. base-sid.cow).
+
+  
+  
+Configure lintian pbuilder hook
+
+  It's highly recommended to run lintian
+  after every build.
+  pbuilder provides an example
+  lintian hook in
+  /usr/share/doc/pbuilder/examples/B90lintian
+  for this.
 
 
-  For other architectures and distributions:
+  Copy this file to your pbuilder hooks
+  directory, and modify it to report all lintian
+  tags and not fail the build if lintian reports issues.
+
+mkdir /var/cache/pbuilder/hook.d/
+cp 
/usr/share/doc/pbuilder/examples/B90lintian /var/cache/pbuilder/hook.d/
+sed -i 's/lintian -I 
--show-overrides/ --pedantic -E/; s/^su /##/; s/^#su /su /' 
/var/cache/pbuilder/hook.d/B90lintian
+
+
+
+  Specify the pbuilder hook directory when
+  creating the chroot to run the hook scripts contained therein.
+
+sudo cowbuilder --create 
--distribution=sid 
--basepath=/var/cache/pbuilder/base-sid.cow
 --hookdir=/var/cache/pbuilder/hook.d/
+
+
+  
+  
+Updating cowbuilder chroots
+
+  Remember to update the chroots for
+  git-buildpackage 

[website] branch master updated (e432c7d -> 37f942e)

2016-02-05 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a change to branch master
in repository website.

  from  e432c7d   Use spaces instead of tabs for indenting.
   new  37f942e   Improve cowbuilder set up section

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:
 policy.xml | 92 --
 1 file changed, 59 insertions(+), 33 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/website.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


[website] 01/01: Improve cowbuilder set up section

2016-02-05 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch master
in repository website.

commit 37f942e805ff5de3b181cdb629570f8e7d55ba4b
Author: Ross Gammon 
Date:   Fri Feb 5 22:07:32 2016 +0100

Improve cowbuilder set up section

Move the pbuilder hooks section up so that you don't create the chroot
without it. Don't use ambiguous ~ for path to hooks. Add information
about updating the chroot. Add a link to setting up multiple distributions.
---
 policy.xml | 92 --
 1 file changed, 59 insertions(+), 33 deletions(-)

diff --git a/policy.xml b/policy.xml
index 43ed36c..2d6dc0e 100644
--- a/policy.xml
+++ b/policy.xml
@@ -898,10 +898,12 @@ pkg-grass/
   cowbuilder is preferred over 
pbuilder by git-buildpackage for its 
increased performance using Copy-On-Write techniques.
 pbuilder can be selected instead by setting the environment 
variable BUILDER to "pbuilder", and
 qemubuilder can be selected by setting 
BUILDER to "qemubuilder".
-
-  Root privileges are required to run 
cowbuilder and pbuilder.
-Configure sudo with visudo to allow 
username passwordless execution of 
cowbuilder and pbuilder using the 
following settings:
-
+  
+  
+Creating the cowbuilder chroot
+Root privileges are required to run 
cowbuilder and pbuilder.
+Configure sudo with visudo 
to allow username passwordless execution of 
cowbuilder and pbuilder using the 
following settings:
+
 
 Defaults! PBUILDERS setenv
 
@@ -911,34 +913,9 @@ Cmnd_Alias PBUILDERS=/usr/sbin/pbuilder, 
/usr/sbin/cowbuilder
 # User privilege specification
 username ALL=(root) 
NOPASSWD:PBUILDERS
 
-  
-To create distribution specific
-cowbuilder chroots, use:
-
-sudo cowbuilder --create 
--distribution=distribution 
--basepath=/var/cache/pbuilder/base-distribution.cow
-
-  
-  
-To create architecture
-specific cowbuilder chroots, use:
-
-sudo cowbuilder --create 
--distribution=distribution 
--architecture=architecture 
--basepath=/var/cache/pbuilder/base-distribution-architecture.cow
-
-  
-  
-The default distribution for git-buildpackage
-is sid, other distributions can be specified 
with
-
--git-dist=distribution
-  
-  
-To create the default chroot for 
git-buildpackage:
-
-sudo cowbuilder --create 
--distribution=sid 
--basepath=/var/cache/pbuilder/base-sid.cow
-
-  
+  
   
 Configure lintian pbuilder hook
-
 
   It's highly recommended to run lintian
   after every build.
@@ -952,9 +929,9 @@ Cmnd_Alias PBUILDERS=/usr/sbin/pbuilder, 
/usr/sbin/cowbuilder
   directory, and modify it to report all lintian
   tags and not fail the build if lintian reports issues.
 
-mkdir ~/pbuilder-hooks
-cp 
/usr/share/doc/pbuilder/examples/B90lintian ~/pbuilder-hooks/
-sed -i 's/lintian -I 
--show-overrides/ --pedantic -E/; s/^su /##/; s/^#su /su /' 
~/pbuilder-hooks/B90lintian
+mkdir /var/cache/pbuilder/hook.d/
+cp 
/usr/share/doc/pbuilder/examples/B90lintian /var/cache/pbuilder/hook.d/
+sed -i 's/lintian -I 
--show-overrides/ --pedantic -E/; s/^su /##/; s/^#su /su /' 
/var/cache/pbuilder/hook.d/B90lintian
 
 
 
@@ -964,6 +941,55 @@ Cmnd_Alias PBUILDERS=/usr/sbin/pbuilder, 
/usr/sbin/cowbuilder
 sudo cowbuilder --create 
--distribution=sid 
--basepath=/var/cache/pbuilder/base-sid.cow
 --hookdir=~/pbuilder-hooks/
 
 
+
+  To create distribution specific
+  cowbuilder chroots, use:
+
+sudo cowbuilder --create 
--distribution=distribution 
--basepath=/var/cache/pbuilder/base-distribution.cow
+
+
+
+  To create architecture
+  specific cowbuilder chroots, use:
+
+sudo cowbuilder --create 
--distribution=distribution 
--architecture=architecture 
--basepath=/var/cache/pbuilder/base-distribution-architecture.cow
+
+
+
+  The default distribution for git-buildpackage
+  is sid, other distributions can be specified 
with
+  
--git-dist=distribution
+
+
+  To create the default chroot for 
git-buildpackage:
+
+sudo cowbuilder --create 
--distribution=sid 
--basepath=/var/cache/pbuilder/base-sid.cow
+
+
+
+  Remember to update the chroot for 
git-buildpackage regularly:
+
+git-pbuilder update
+
+  This will update the default chroot (e.g. base-sid.cow).
+
+
+  For other architectures and distributions:
+
+DIST=distribution ARCH=architecture git-pbuilder update
+
+
+  
+  
+   

[pgrouting] branch upstream updated (2cfc5ff -> 228b17f)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch upstream
in repository pgrouting.

  from  2cfc5ff   Imported Upstream version 2.0.0
   new  228b17f   Imported Upstream version 2.1.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:
 .editorconfig  |22 +
 .gitignore | 2 +
 .travis.yml|32 +-
 CMakeLists.txt |   245 +-
 NEWS   |   135 +
 README.md  |49 +-
 VERSION| 2 +-
 Vagrantfile|16 +-
 cmake/FindPostgreSQL.cmake |53 +-
 doc/conf.py.in | 3 +-
 doc/index.html.in  |11 +-
 doc/index.rst  |   176 +-
 doc/index_man.rst  | 2 +-
 doc/src/changelog/2_1_0.rst|71 +
 doc/src/changelog/index.rst| 2 +
 doc/src/developer/index.rst|   151 +-
 doc/src/developer/sampledata.rst   |50 +-
 doc/src/installation/build.rst |   119 +-
 doc/src/installation/index.rst |81 +-
 doc/src/introduction/images/boost-inside.jpeg  |   Bin 0 -> 2089 bytes
 doc/src/introduction/introduction.rst  |18 +-
 .../recipes.rst => recipes/example_recipe.rst} |21 +-
 doc/src/recipes/images/parallelImage.png   |   Bin 0 -> 10091 bytes
 doc/src/recipes/index.rst  |83 +
 doc/src/recipes/parallel_handling.rst  |   221 +
 doc/src/recipes/test/example_recipe.result | 5 +
 doc/src/recipes/test/example_recipe.test.sql   |30 +
 doc/src/recipes/test/parallel_handling.result  |33 +
 doc/src/recipes/test/parallel_handling.test.sql|   121 +
 .../recipes/test/sampledata.data.sql}  | 2 +
 .../src/recipes}/test/test.conf|12 +-
 .../recipes/test/zzz-remove_sampledata.result} | 0
 .../recipes/test/zzz-remove_sampledata.test.sql}   |15 +-
 doc/src/tutorial/custom_query.rst  |57 +-
 doc/src/tutorial/index.rst | 6 -
 doc/src/tutorial/performance.rst   | 7 +
 doc/src/tutorial/tutorial.rst  |12 +-
 .../developers/disconnectEdgeDirected.graphmlz |   Bin 0 -> 1272 bytes
 .../images/developers/disconnectEdgeDirected.png   |   Bin 0 -> 4628 bytes
 .../developers/disconnectEdgeUndirected.graphmlz   |   Bin 0 -> 1083 bytes
 .../images/developers/disconnectEdgeUndirected.png |   Bin 0 -> 4403 bytes
 .../developers/disconnectVertexDirected.graphmlz   |   Bin 0 -> 1562 bytes
 .../images/developers/disconnectVertexDirected.png |   Bin 0 -> 10283 bytes
 .../developers/disconnectVertexUndirected.graphmlz |   Bin 0 -> 1462 bytes
 .../developers/disconnectVertexUndirected.png  |   Bin 0 -> 9007 bytes
 .../{alphashape-any.rest => alphashape-any.result} | 0
 doc/test/alphashape-any.test   |24 -
 doc/test/alphashape-any.test.sql   |24 +
 ...alyzeGraph-any.rest => analyzeGraph-any.result} |62 +-
 ...yzeGraph-any.test => analyzeGraph-any.test.sql} | 0
 ...yzeOneway-any.rest => analyzeOneway-any.result} | 0
 ...eOneway-any.test => analyzeOneway-any.test.sql} | 0
 ...apspJohnson-any.rest => apspJohnson-any.result} | 0
 ...spJohnson-any.test => apspJohnson-any.test.sql} | 0
 ...spWarshall-any.rest => apspWarshall-any.result} | 0
 ...Warshall-any.test => apspWarshall-any.test.sql} | 0
 doc/test/astar-any.rest|10 -
 doc/test/astar-any.result  |10 +
 doc/test/{astar-any.test => astar-any.test.sql}| 0
 .../{bdDijkstra-any.rest => bdDijkstra-any.result} | 0
 ...bdDijkstra-any.test => bdDijkstra-any.test.sql} | 0
 doc/test/{bdstar-any.rest => bdstar-any.result}| 0
 doc/test/{bdstar-any.test => bdstar-any.test.sql}  | 0
 ...Topology-any.rest => createTopology-any.result} |48 +-
 ...pology-any.test => createTopology-any.test.sql} | 5 +-
 ...teVertTab-any.rest => createVertTab-any.result} |46 +-
 ...VertTab-any.test => createVertTab-any.test.sql} | 4 +-
 doc/test/dijkstra-any.rest |12 -
 doc/test/dijkstra-v2.result|12 +
 .../{dijkstra-any.test => dijkstra-v2.test.sql}|23 +-
 

[pgrouting] tag debian/2.1.0-1 created (now 7c7ad30)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to tag debian/2.1.0-1
in repository pgrouting.

at  7c7ad30   (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/pgrouting.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


[pgrouting] 01/01: pristine-tar data for pgrouting_2.1.0.orig.tar.gz

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch pristine-tar
in repository pgrouting.

commit 0cca4dc5c06d1a2de3e410a3192cd86a78a1095c
Author: Bas Couwenberg 
Date:   Fri Feb 5 10:10:10 2016 +0100

pristine-tar data for pgrouting_2.1.0.orig.tar.gz
---
 pgrouting_2.1.0.orig.tar.gz.delta | Bin 0 -> 36679 bytes
 pgrouting_2.1.0.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/pgrouting_2.1.0.orig.tar.gz.delta 
b/pgrouting_2.1.0.orig.tar.gz.delta
new file mode 100644
index 000..5412d24
Binary files /dev/null and b/pgrouting_2.1.0.orig.tar.gz.delta differ
diff --git a/pgrouting_2.1.0.orig.tar.gz.id b/pgrouting_2.1.0.orig.tar.gz.id
new file mode 100644
index 000..cba24f8
--- /dev/null
+++ b/pgrouting_2.1.0.orig.tar.gz.id
@@ -0,0 +1 @@
+7d45af12f7b8abbe494ff4e50a7019be1e43dcde

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pgrouting.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 pgrouting_2.1.0-1_amd64.changes

2016-02-05 Thread Debian FTP Masters
pgrouting_2.1.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  pgrouting_2.1.0-1.dsc
  pgrouting_2.1.0.orig.tar.gz
  pgrouting_2.1.0-1.debian.tar.xz
  postgresql-9.5-pgrouting-dbgsym_2.1.0-1_amd64.deb
  postgresql-9.5-pgrouting-doc_2.1.0-1_all.deb
  postgresql-9.5-pgrouting_2.1.0-1_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


[pgrouting] branch master updated (5736d37 -> 7c7ad30)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch master
in repository pgrouting.

  from  5736d37   Update Vcs-Git URL to use HTTPS.
   new  b23e827   Update watch file to detect 2.1.x releases.
   new  228b17f   Imported Upstream version 2.1.0
   new  20e012a   Merge tag 'upstream/2.1.0'
   new  6d6d0c0   New upstream release.
   new  0aa6789   Update copyright file.
   new  5331a9b   Override dh_install to use --list-missing.
   new  0a405ce   Don't symlink before_node_net1.png, no longer included.
   new  f42cc96   Use libjs-mathjax instead of online version.
   new  215fbd8   Override dh_makeshlibs to exclude usr/lib/postgresql, 
prevents postinst-has-useless-call-to-ldconfig.
   new  3edcbe0   Drop unused lintian override for shlib-calls-exit.
   new  7c7ad30   Set distribution to unstable.

The 11 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:
 .editorconfig  |22 +
 .gitignore | 2 +
 .travis.yml|32 +-
 CMakeLists.txt |   245 +-
 NEWS   |   135 +
 README.md  |49 +-
 VERSION| 2 +-
 Vagrantfile|16 +-
 cmake/FindPostgreSQL.cmake |53 +-
 debian/changelog   |18 +
 debian/control | 4 +-
 debian/control.in  | 4 +-
 debian/copyright   |   150 +-
 .../privacy-breach-uses-embedded-file.patch|15 +
 debian/patches/series  | 1 +
 debian/postgresql-pgrouting.lintian-overrides.in   | 2 -
 debian/rules   |18 +-
 debian/watch   | 6 +-
 doc/conf.py.in | 3 +-
 doc/index.html.in  |11 +-
 doc/index.rst  |   176 +-
 doc/index_man.rst  | 2 +-
 doc/src/changelog/2_1_0.rst|71 +
 doc/src/changelog/index.rst| 2 +
 doc/src/developer/index.rst|   151 +-
 doc/src/developer/sampledata.rst   |50 +-
 doc/src/installation/build.rst |   119 +-
 doc/src/installation/index.rst |81 +-
 doc/src/introduction/images/boost-inside.jpeg  |   Bin 0 -> 2089 bytes
 doc/src/introduction/introduction.rst  |18 +-
 .../recipes.rst => recipes/example_recipe.rst} |21 +-
 doc/src/recipes/images/parallelImage.png   |   Bin 0 -> 10091 bytes
 doc/src/recipes/index.rst  |83 +
 doc/src/recipes/parallel_handling.rst  |   221 +
 doc/src/recipes/test/example_recipe.result | 5 +
 doc/src/recipes/test/example_recipe.test.sql   |30 +
 doc/src/recipes/test/parallel_handling.result  |33 +
 doc/src/recipes/test/parallel_handling.test.sql|   121 +
 .../recipes/test/sampledata.data.sql}  | 2 +
 .../src/recipes}/test/test.conf|12 +-
 .../recipes/test/zzz-remove_sampledata.result} | 0
 .../recipes/test/zzz-remove_sampledata.test.sql}   |15 +-
 doc/src/tutorial/custom_query.rst  |57 +-
 doc/src/tutorial/index.rst | 6 -
 doc/src/tutorial/performance.rst   | 7 +
 doc/src/tutorial/tutorial.rst  |12 +-
 .../developers/disconnectEdgeDirected.graphmlz |   Bin 0 -> 1272 bytes
 .../images/developers/disconnectEdgeDirected.png   |   Bin 0 -> 4628 bytes
 .../developers/disconnectEdgeUndirected.graphmlz   |   Bin 0 -> 1083 bytes
 .../images/developers/disconnectEdgeUndirected.png |   Bin 0 -> 4403 bytes
 .../developers/disconnectVertexDirected.graphmlz   |   Bin 0 -> 1562 bytes
 .../images/developers/disconnectVertexDirected.png |   Bin 0 -> 10283 bytes
 .../developers/disconnectVertexUndirected.graphmlz |   Bin 0 -> 1462 bytes
 .../developers/disconnectVertexUndirected.png  |   Bin 0 -> 9007 bytes
 .../{alphashape-any.rest => alphashape-any.result} | 0
 doc/test/alphashape-any.test   |24 -
 doc/test/alphashape-any.test.sql   |24 +
 ...alyzeGraph-any.rest => analyzeGraph-any.result} |62 +-
 ...yzeGraph-any.test => analyzeGraph-any.test.sql} | 0
 

[pgrouting] 03/11: Merge tag 'upstream/2.1.0'

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pgrouting.

commit 20e012a269b9979ed044d46b8d4109d98fa0fade
Merge: b23e827 228b17f
Author: Bas Couwenberg 
Date:   Fri Feb 5 10:10:10 2016 +0100

Merge tag 'upstream/2.1.0'

Upstream version 2.1.0

 .editorconfig  |22 +
 .gitignore | 2 +
 .travis.yml|32 +-
 CMakeLists.txt |   245 +-
 NEWS   |   135 +
 README.md  |49 +-
 VERSION| 2 +-
 Vagrantfile|16 +-
 cmake/FindPostgreSQL.cmake |53 +-
 doc/conf.py.in | 3 +-
 doc/index.html.in  |11 +-
 doc/index.rst  |   176 +-
 doc/index_man.rst  | 2 +-
 doc/src/changelog/2_1_0.rst|71 +
 doc/src/changelog/index.rst| 2 +
 doc/src/developer/index.rst|   151 +-
 doc/src/developer/sampledata.rst   |50 +-
 doc/src/installation/build.rst |   119 +-
 doc/src/installation/index.rst |81 +-
 doc/src/introduction/images/boost-inside.jpeg  |   Bin 0 -> 2089 bytes
 doc/src/introduction/introduction.rst  |18 +-
 .../recipes.rst => recipes/example_recipe.rst} |21 +-
 doc/src/recipes/images/parallelImage.png   |   Bin 0 -> 10091 bytes
 doc/src/recipes/index.rst  |83 +
 doc/src/recipes/parallel_handling.rst  |   221 +
 doc/src/recipes/test/example_recipe.result | 5 +
 doc/src/recipes/test/example_recipe.test.sql   |30 +
 doc/src/recipes/test/parallel_handling.result  |33 +
 doc/src/recipes/test/parallel_handling.test.sql|   121 +
 .../recipes/test/sampledata.data.sql}  | 2 +
 .../src/recipes}/test/test.conf|12 +-
 .../src/recipes/test/zzz-remove_sampledata.result  | 0
 .../recipes/test/zzz-remove_sampledata.test.sql}   |15 +-
 doc/src/tutorial/custom_query.rst  |57 +-
 doc/src/tutorial/index.rst | 6 -
 doc/src/tutorial/performance.rst   | 7 +
 doc/src/tutorial/tutorial.rst  |12 +-
 .../developers/disconnectEdgeDirected.graphmlz |   Bin 0 -> 1272 bytes
 .../images/developers/disconnectEdgeDirected.png   |   Bin 0 -> 4628 bytes
 .../developers/disconnectEdgeUndirected.graphmlz   |   Bin 0 -> 1083 bytes
 .../images/developers/disconnectEdgeUndirected.png |   Bin 0 -> 4403 bytes
 .../developers/disconnectVertexDirected.graphmlz   |   Bin 0 -> 1562 bytes
 .../images/developers/disconnectVertexDirected.png |   Bin 0 -> 10283 bytes
 .../developers/disconnectVertexUndirected.graphmlz |   Bin 0 -> 1462 bytes
 .../developers/disconnectVertexUndirected.png  |   Bin 0 -> 9007 bytes
 .../{alphashape-any.rest => alphashape-any.result} | 0
 doc/test/alphashape-any.test   |24 -
 doc/test/alphashape-any.test.sql   |24 +
 ...alyzeGraph-any.rest => analyzeGraph-any.result} |62 +-
 ...yzeGraph-any.test => analyzeGraph-any.test.sql} | 0
 ...yzeOneway-any.rest => analyzeOneway-any.result} | 0
 ...eOneway-any.test => analyzeOneway-any.test.sql} | 0
 ...apspJohnson-any.rest => apspJohnson-any.result} | 0
 ...spJohnson-any.test => apspJohnson-any.test.sql} | 0
 ...spWarshall-any.rest => apspWarshall-any.result} | 0
 ...Warshall-any.test => apspWarshall-any.test.sql} | 0
 doc/test/astar-any.rest|10 -
 doc/test/astar-any.result  |10 +
 doc/test/{astar-any.test => astar-any.test.sql}| 0
 .../{bdDijkstra-any.rest => bdDijkstra-any.result} | 0
 ...bdDijkstra-any.test => bdDijkstra-any.test.sql} | 0
 doc/test/{bdstar-any.rest => bdstar-any.result}| 0
 doc/test/{bdstar-any.test => bdstar-any.test.sql}  | 0
 ...Topology-any.rest => createTopology-any.result} |48 +-
 ...pology-any.test => createTopology-any.test.sql} | 5 +-
 ...teVertTab-any.rest => createVertTab-any.result} |46 +-
 ...VertTab-any.test => createVertTab-any.test.sql} | 4 +-
 doc/test/dijkstra-any.rest |12 -
 doc/test/dijkstra-v2.result|12 +
 .../{dijkstra-any.test => dijkstra-v2.test.sql}|23 +-
 doc/test/drivingDistance-any.rest  | 9 -
 doc/test/issue-353.test.sql| 8 +
 .../{kdijkstra-any.rest => 

[pgrouting] 04/11: New upstream release.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pgrouting.

commit 6d6d0c0ff00cbceb1abc6e235e3623f1eded1c04
Author: Bas Couwenberg 
Date:   Fri Feb 5 10:50:13 2016 +0100

New upstream release.
---
 debian/changelog | 5 +++--
 debian/rules | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 6f4890e..ac3b36b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-pgrouting (2.0.0-6) UNRELEASED; urgency=medium
+pgrouting (2.1.0-1) UNRELEASED; urgency=medium
 
   * Update watch file to detect 2.1.x releases.
+  * New upstream release.
 
- -- Bas Couwenberg   Fri, 05 Feb 2016 10:05:15 +0100
+ -- Bas Couwenberg   Fri, 05 Feb 2016 10:50:07 +0100
 
 pgrouting (2.0.0-5) unstable; urgency=medium
 
diff --git a/debian/rules b/debian/rules
index cd45dff..41706e9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -46,7 +46,7 @@ override_dh_sphinxdoc-indep:
 override_dh_sphinxdoc-arch:
 
 override_dh_installchangelogs:
-   dh_installchangelogs doc/src/changelog/2_0.rst
+   dh_installchangelogs doc/src/changelog/2_1_0.rst
 
 override_dh_lintian:
set -e; \

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pgrouting.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


[pgrouting] 06/11: Override dh_install to use --list-missing.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pgrouting.

commit 5331a9bb3406c6247ed18e9f29002b54994ebb4b
Author: Bas Couwenberg 
Date:   Fri Feb 5 10:53:39 2016 +0100

Override dh_install to use --list-missing.
---
 debian/changelog | 1 +
 debian/rules | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index b653c61..72daa89 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,7 @@ pgrouting (2.1.0-1) UNRELEASED; urgency=medium
 - Group copyright holders by license
 - Simplify glob patterns for CC-BY-SA-3.0 licensed documentation
 - Add license & copyright for new files
+  * Override dh_install to use --list-missing.
 
  -- Bas Couwenberg   Fri, 05 Feb 2016 10:50:07 +0100
 
diff --git a/debian/rules b/debian/rules
index 41706e9..ff0d5e0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,6 +45,9 @@ override_dh_sphinxdoc-indep:
 
 override_dh_sphinxdoc-arch:
 
+override_dh_install:
+   dh_install --list-missing
+
 override_dh_installchangelogs:
dh_installchangelogs doc/src/changelog/2_1_0.rst
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pgrouting.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


[pgrouting] branch pristine-tar updated (0f05b1b -> 0cca4dc)

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a change to branch pristine-tar
in repository pgrouting.

  from  0f05b1b   pristine-tar data for pgrouting_2.0.0.orig.tar.gz
   new  0cca4dc   pristine-tar data for pgrouting_2.1.0.orig.tar.gz

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:
 pgrouting_2.1.0.orig.tar.gz.delta | Bin 0 -> 36679 bytes
 pgrouting_2.1.0.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 pgrouting_2.1.0.orig.tar.gz.delta
 create mode 100644 pgrouting_2.1.0.orig.tar.gz.id

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pgrouting.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


[pgrouting] 10/11: Drop unused lintian override for shlib-calls-exit.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pgrouting.

commit 3edcbe0dec16016f88818eab89f553d0f05f23b1
Author: Bas Couwenberg 
Date:   Fri Feb 5 12:47:10 2016 +0100

Drop unused lintian override for shlib-calls-exit.
---
 debian/changelog | 1 +
 debian/postgresql-pgrouting.lintian-overrides.in | 2 --
 debian/rules | 7 ---
 3 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ac97007..749660c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,7 @@ pgrouting (2.1.0-1) UNRELEASED; urgency=medium
   * Use libjs-mathjax instead of online version.
   * Override dh_makeshlibs to exclude usr/lib/postgresql,
 prevents postinst-has-useless-call-to-ldconfig.
+  * Drop unused lintian override for shlib-calls-exit.
 
  -- Bas Couwenberg   Fri, 05 Feb 2016 10:50:07 +0100
 
diff --git a/debian/postgresql-pgrouting.lintian-overrides.in 
b/debian/postgresql-pgrouting.lintian-overrides.in
deleted file mode 100644
index bc726ad..000
--- a/debian/postgresql-pgrouting.lintian-overrides.in
+++ /dev/null
@@ -1,2 +0,0 @@
-# exit() ist called in a helper method that is never called by the plugin.
-postgresql-PGVERSION-pgrouting: shlib-calls-exit 
usr/lib/postgresql/PGVERSION/lib/librouting_ksp.so
diff --git a/debian/rules b/debian/rules
index 7e0a0ae..b649cbd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -53,10 +53,3 @@ override_dh_installchangelogs:
 override_dh_makeshlibs:
dh_makeshlibs -Xusr/lib/postgresql
 
-override_dh_lintian:
-   set -e; \
-   for v in $$(pg_buildext supported-versions); do \
-   mkdir -p 
debian/postgresql-$$v-pgrouting/usr/share/lintian/overrides; \
-   sed "s,PGVERSION,$$v,g" 
debian/postgresql-$$v-pgrouting/usr/share/lintian/overrides/postgresql-$$v-pgrouting;
 \
-   done
-   dh_lintian

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pgrouting.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


[pgrouting] 09/11: Override dh_makeshlibs to exclude usr/lib/postgresql, prevents postinst-has-useless-call-to-ldconfig.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pgrouting.

commit 215fbd8c4cbc9c006204e12d2a4d5632c2006b22
Author: Bas Couwenberg 
Date:   Fri Feb 5 12:45:09 2016 +0100

Override dh_makeshlibs to exclude usr/lib/postgresql, prevents 
postinst-has-useless-call-to-ldconfig.
---
 debian/changelog | 2 ++
 debian/rules | 3 +++
 2 files changed, 5 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 734f786..ac97007 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,8 @@ pgrouting (2.1.0-1) UNRELEASED; urgency=medium
   * Override dh_install to use --list-missing.
   * Don't symlink before_node_net1.png, no longer included.
   * Use libjs-mathjax instead of online version.
+  * Override dh_makeshlibs to exclude usr/lib/postgresql,
+prevents postinst-has-useless-call-to-ldconfig.
 
  -- Bas Couwenberg   Fri, 05 Feb 2016 10:50:07 +0100
 
diff --git a/debian/rules b/debian/rules
index b8eef59..7e0a0ae 100755
--- a/debian/rules
+++ b/debian/rules
@@ -50,6 +50,9 @@ override_dh_install:
 override_dh_installchangelogs:
dh_installchangelogs doc/src/changelog/2_1_0.rst
 
+override_dh_makeshlibs:
+   dh_makeshlibs -Xusr/lib/postgresql
+
 override_dh_lintian:
set -e; \
for v in $$(pg_buildext supported-versions); do \

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pgrouting.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


[pgrouting] 05/11: Update copyright file.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pgrouting.

commit 0aa6789b37537585b967adb8dd35e93d8a4495e2
Author: Bas Couwenberg 
Date:   Fri Feb 5 10:51:43 2016 +0100

Update copyright file.

Changes:
- Group copyright holders by license
- Simplify glob patterns for CC-BY-SA-3.0 licensed documentation
- Add license & copyright for new files
---
 debian/changelog |   4 ++
 debian/copyright | 150 +--
 2 files changed, 38 insertions(+), 116 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index ac3b36b..b653c61 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,10 @@ pgrouting (2.1.0-1) UNRELEASED; urgency=medium
 
   * Update watch file to detect 2.1.x releases.
   * New upstream release.
+  * Update copyright file, changes:
+- Group copyright holders by license
+- Simplify glob patterns for CC-BY-SA-3.0 licensed documentation
+- Add license & copyright for new files
 
  -- Bas Couwenberg   Fri, 05 Feb 2016 10:50:07 +0100
 
diff --git a/debian/copyright b/debian/copyright
index 3489f2a..2760ab6 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -5,141 +5,59 @@ Source: http://pgrouting.org/download.html
 
 Files: *
 Copyright: 2013, pgRouting Contributors
+   2015, Celia Virginia Vergara Castillo
+   2014, Manikata Kondeti
+  2011-2013, Stephen Woodbridge
+   2013, Khondoker Md. Razequl Islam
+  2011-2012, Dave Potts
+   2011, J Kishore Kumar
+   2011, Jay Mahadeokar
+  2006-2007, Anton A. Patrushev, Orkney, Inc.
+   2006, Mario H. Basa, Orkney, Inc.
+   2005, Sylvain Pasche
 License: GPL-2+
 
-Files: doc/index.rst
-   doc/index_man.rst
-   doc/src/changelog/1_x.rst
-   doc/src/changelog/2_0.rst
-   doc/src/changelog/index.rst
-   doc/src/developer/discontinued.rst
-   doc/src/developer/index.rst
-   doc/src/developer/sampledata.rst
-   doc/src/installation/build.rst
-   doc/src/installation/index.rst
-   doc/src/introduction/index.rst
-   doc/src/introduction/introduction.rst
-   doc/src/introduction/support.rst
-   doc/src/tutorial/analytics.rst
-   doc/src/tutorial/custom_query.rst
-   doc/src/tutorial/custom_wrapper.rst
-   doc/src/tutorial/index.rst
-   doc/src/tutorial/performance.rst
-   doc/src/tutorial/recipes.rst
-   doc/src/tutorial/topology.rst
-   doc/src/tutorial/tutorial.rst
-   src/apsp_johnson/doc/index.rst
-   src/apsp_warshall/doc/index.rst
-   src/astar/doc/index.rst
-   src/bd_astar/doc/index.rst
-   src/bd_dijkstra/doc/index.rst
-   src/common/doc/functions/analyze_graph.rst
-   src/common/doc/functions/analyze_oneway.rst
-   src/common/doc/functions/create_topology.rst
-   src/common/doc/functions/create_vert_table.rst
-   src/common/doc/functions/index.rst
-   src/common/doc/functions/node_network.rst
-   src/common/doc/index.rst
-   src/common/doc/legacy.rst
-   src/common/doc/types/cost_result.rst
-   src/common/doc/types/geom_result.rst
-   src/common/doc/types/index.rst
-   src/common/doc/utilities/end_point.rst
-   src/common/doc/utilities/get_column_name.rst
-   src/common/doc/utilities/get_table_name.rst
-   src/common/doc/utilities/index.rst
-   src/common/doc/utilities/is_column_in_table.rst
-   src/common/doc/utilities/is_column_indexed.rst
-   src/common/doc/utilities/point_to_id.rst
-   src/common/doc/utilities/quote_ident.rst
-   src/common/doc/utilities/start_point.rst
-   src/common/doc/utilities/version.rst
-   src/common/doc/utilities/versionless.rst
-   src/dijkstra/doc/index.rst
-   src/driving_distance/doc/dd_alphashape.rst
-   src/driving_distance/doc/dd_driving_distance.rst
-   src/driving_distance/doc/dd_points_as_polygon.rst
-   src/driving_distance/doc/index.rst
-   src/index.rst
-   src/kdijkstra/doc/index.rst
-   src/ksp/doc/index.rst
-   src/trsp/doc/index.rst
-   src/tsp/doc/index.rst
+Files: doc/*.rst
+   doc/src/*/*.rst
+   doc/src/recipes/test/example_recipe.test.sql
+   src/*.rst
+   src/*/doc/*.rst
+   src/*/doc/*/*.rst
 Copyright: 2013, pgRouting Contributors
 License: CC-BY-SA-3.0
 
-Files: src/apsp_johnson/src/apsp_johnson*.*
-Copyright: 2011, J Kishore Kumar
-License: GPL-2+
-
-Files: src/apsp_warshall/src/apsp.c
-Copyright: 2011, Jay Mahadeokar
-License: GPL-2+
-
-Files: src/apsp_warshall/src/apsp.h
-   src/apsp_warshall/src/apsp_boost_wrapper.cpp
-   src/astar/sql/astar.sql
-   src/bd_dijkstra/src/bdsp.h
-   src/common/sql/pgrouting_legacy.sql
-   src/dijkstra/sql/dijkstra.sql
-   src/dijkstra/src/boost_wrapper.cpp
-   src/dijkstra/src/boost_wrapper.cpp
-   

[pgrouting] 11/11: Set distribution to unstable.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pgrouting.

commit 7c7ad30a75cd31d18ef962cb0dfa5ec05e1ffa45
Author: Bas Couwenberg 
Date:   Fri Feb 5 12:55:38 2016 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 749660c..09bfc90 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-pgrouting (2.1.0-1) UNRELEASED; urgency=medium
+pgrouting (2.1.0-1) unstable; urgency=medium
 
+  * Team upload.
   * Update watch file to detect 2.1.x releases.
   * New upstream release.
   * Update copyright file, changes:
@@ -13,7 +14,7 @@ pgrouting (2.1.0-1) UNRELEASED; urgency=medium
 prevents postinst-has-useless-call-to-ldconfig.
   * Drop unused lintian override for shlib-calls-exit.
 
- -- Bas Couwenberg   Fri, 05 Feb 2016 10:50:07 +0100
+ -- Bas Couwenberg   Fri, 05 Feb 2016 12:55:23 +0100
 
 pgrouting (2.0.0-5) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pgrouting.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


[pgrouting] 01/11: Update watch file to detect 2.1.x releases.

2016-02-05 Thread Sebastiaan Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository pgrouting.

commit b23e82708f4e75387e15e4f96cddc4eeae4519dd
Author: Bas Couwenberg 
Date:   Fri Feb 5 10:09:15 2016 +0100

Update watch file to detect 2.1.x releases.
---
 debian/changelog | 6 ++
 debian/watch | 6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1c5e8bb..6f4890e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pgrouting (2.0.0-6) UNRELEASED; urgency=medium
+
+  * Update watch file to detect 2.1.x releases.
+
+ -- Bas Couwenberg   Fri, 05 Feb 2016 10:05:15 +0100
+
 pgrouting (2.0.0-5) unstable; urgency=medium
 
   * Team upload.
diff --git a/debian/watch b/debian/watch
index b23f13e..d850a27 100644
--- a/debian/watch
+++ b/debian/watch
@@ -1,7 +1,7 @@
 version=3
 opts=\
 dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\
-uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/,\
-filenamemangle=s/.+\/v?(\d\S*)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/pgrouting-$1.$2/
 \
+uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\
+filenamemangle=s/(?:.*?)?(?:rel|v|pgrouting)?[\-\_]?(\d\S+)\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))/pgrouting-$1.$2/
 \
 https://github.com/pgRouting/pgrouting/releases \
-/pgRouting/pgrouting/archive/v([\d.]+(?:-rc\d+)?)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
+(?:.*?/)?(?:rel|v|pgrouting)?[\-\_]?(\d[\d\-\.]+)\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/pgrouting.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


pgrouting_2.1.0-1_amd64.changes ACCEPTED into unstable

2016-02-05 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 05 Feb 2016 12:55:23 +0100
Source: pgrouting
Binary: postgresql-9.5-pgrouting postgresql-9.5-pgrouting-doc
Architecture: source amd64 all
Version: 2.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project 
Changed-By: Bas Couwenberg 
Description:
 postgresql-9.5-pgrouting - basic routing functionality support for PostgreSQL 
9.5
 postgresql-9.5-pgrouting-doc - basic routing functionality support for 
PostgreSQL 9.5 (Documenta
Changes:
 pgrouting (2.1.0-1) unstable; urgency=medium
 .
   * Team upload.
   * Update watch file to detect 2.1.x releases.
   * New upstream release.
   * Update copyright file, changes:
 - Group copyright holders by license
 - Simplify glob patterns for CC-BY-SA-3.0 licensed documentation
 - Add license & copyright for new files
   * Override dh_install to use --list-missing.
   * Don't symlink before_node_net1.png, no longer included.
   * Use libjs-mathjax instead of online version.
   * Override dh_makeshlibs to exclude usr/lib/postgresql,
 prevents postinst-has-useless-call-to-ldconfig.
   * Drop unused lintian override for shlib-calls-exit.
Checksums-Sha1:
 31de2ded63a434b743629aa5b58bd9bd303bcee7 2146 pgrouting_2.1.0-1.dsc
 40bb7ec355f59f7ffd7d26825fe941b1d31bb164 6405831 pgrouting_2.1.0.orig.tar.gz
 d80f8c2ec3358c1b1e74ccedb2412aac47e5f85f 8564 pgrouting_2.1.0-1.debian.tar.xz
 ddcbdd9c2b782eedd29be6618b5644360c61476e 3326488 
postgresql-9.5-pgrouting-dbgsym_2.1.0-1_amd64.deb
 9d904cdc527357bcc176e7e1d79299d268d9cbc6 438706 
postgresql-9.5-pgrouting-doc_2.1.0-1_all.deb
 656045974d8f9440c07b50c049e9099108bf630b 241306 
postgresql-9.5-pgrouting_2.1.0-1_amd64.deb
Checksums-Sha256:
 9308fd107923dc536fa1b4f7bc531f4f2b9ba976f0d75bf0d2fe1027eed06454 2146 
pgrouting_2.1.0-1.dsc
 36a6d77ed7f682ca9af79b390f5b8194bdb42e005f19a49624d369e16755f86b 6405831 
pgrouting_2.1.0.orig.tar.gz
 2b61c0d8bd9d1b64a076bacc02b68ecd8eac9a4bd0ccd0e67ff654e0a264af42 8564 
pgrouting_2.1.0-1.debian.tar.xz
 f79b3ff2d8a750cb134bf56a8006c092ea38ca198424f084381544b2b8807f4f 3326488 
postgresql-9.5-pgrouting-dbgsym_2.1.0-1_amd64.deb
 bad64a64fbca43cc6eb4c16fb4198dfbb02dee1e5ca4904f309e5de56784541f 438706 
postgresql-9.5-pgrouting-doc_2.1.0-1_all.deb
 77b235f6c4288648a10aa1774d7b858974c5fbd038f267058cc7140d85e5f15d 241306 
postgresql-9.5-pgrouting_2.1.0-1_amd64.deb
Files:
 536520653bfba976a7f2e39cc7332121 2146 misc optional pgrouting_2.1.0-1.dsc
 c500b11d63893ba295ff6ef8ed255093 6405831 misc optional 
pgrouting_2.1.0.orig.tar.gz
 73664c2f77c329701ddc476d45aaaef8 8564 misc optional 
pgrouting_2.1.0-1.debian.tar.xz
 5eff9e460e1d000be0fcf9302729396f 3326488 debug extra 
postgresql-9.5-pgrouting-dbgsym_2.1.0-1_amd64.deb
 0a6920a343082b42d686ec6d5a2b4e74 438706 doc optional 
postgresql-9.5-pgrouting-doc_2.1.0-1_all.deb
 bd44b201d1ad6e14b55739f8d9cbcc85 241306 misc optional 
postgresql-9.5-pgrouting_2.1.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJWtJALAAoJEGdQ8QrojUrxsXMQAMvB8dSz2q/ThT9G715a0bS7
28x6ZMsMwTaWQFajSqL3IHP6mHymcOsPCmkjr0Wfj2bqm4OYA6CD2tmHYHb76cMZ
KlAAQGmhgLukS/mEV2/XPTbqaJ7hE+sXZXAN50rb9qJy1Qw+HBmzlxXEQRy5n5K9
AvSbxP32pKKE+j6P8ZrubYunUkVLPSh3sG7eK4pRTr7tx6j998rLb5jkbtxY3Iz2
3L3YPQvYO1ZQbWDtg90QdVklekzfhJTUFGRtdBvZUR0vJtzFYM+Hye+uGS+kSP8H
dR/DAU26roXIaEltag8Cn/20xnGQDvg3cONPMZH5bIhkUkOm2H+13/j9y5j09g8/
GhIcpKiyL+fN5jV1rtdP97BXJbVtxkIXRsNaAR+CwBfAxDFUvSa05yvxGJ8CbDWB
NTzWt4z0BukxW4zGWJWl3LYSkVd0QneoH1JiEkgOGX75UzbPndI7atMGCOxuFsb6
k/ELJGSOD5myI9q+T5Nb8V367ZyCMyxxj2fSUo5eVkUttn9dbTwfRy65ywnv+/gS
v3s31lbzmp//SLzpZyQaRk8z27tIYiTTR2T2tMq5pbs8pD89wo/9Ti3kGhiU3ApJ
XJQ5OMzV6YPNUakv1m3Y7tjuIgKW/F1PJZzn50ml943R6Ec6oXCf/ZyzMbpA+P1y
k8iEwNxW7fVBhnHhgAxz
=oNDp
-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


ruby-hdfeos5 is marked for autoremoval from testing

2016-02-05 Thread Debian testing autoremoval watch
ruby-hdfeos5 1.2-5 is marked for autoremoval from testing on 2016-03-14

It (build-)depends on packages with these RC bugs:
813160: hdf-eos5: FTBFS: configure:19095: error: HDF5 was linked with SZIP, but 
--with-szlib was not given


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