[saga] 01/02: Add updated manfiles

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository saga.

commit 3e6620afd6028d8914f876caa7181b5f20ac7231
Author: Johan Van de Wauw 
Date:   Fri Oct 31 16:45:40 2014 +0100

Add updated manfiles

This reverts commit bf553c528fdf0d39f50a67296cae03b13d628a77.

Conflicts:
debian/rules
---
 debian/rules |  7 ++
 debian/saga.manpages |  1 +
 debian/saga_cmd.pod  | 63 
 debian/saga_gui.pod  | 24 
 4 files changed, 95 insertions(+)

diff --git a/debian/rules b/debian/rules
index ba1066e..d76bff1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,12 +16,19 @@ UPSTREAM_VERSION ?=$(shell uscan --dehs | sed -n 
's/.*\(.*\)<\
 debian/% :: debian/%.in
sed -e 's/@VERSION@/$(VERSION)/' $< >$@
 
+override_dh_build:
+   dh_build
+   pod2man --section=1 --release=$(VERSION) --center " " 
debian/saga_cmd.pod >saga_cmd.1
+   pod2man --section=1 --release=$(VERSION) --center " " 
debian/saga_gui.pod >saga_gui.1
+
 override_dh_python2:
dh_python2 --no-guessing-versions
 
 override_dh_clean:
dh_clean
rm -f src/saga_core/saga_api/saga_api.py
+   rm -f saga_cmd.1
+   rm -f saga_gui.1
 
 override_dh_makeshlibs:
dh_makeshlibs -Xpython-saga
diff --git a/debian/saga.manpages b/debian/saga.manpages
new file mode 100644
index 000..4cf2b61
--- /dev/null
+++ b/debian/saga.manpages
@@ -0,0 +1 @@
+saga_gui.1
diff --git a/debian/saga_cmd.pod b/debian/saga_cmd.pod
new file mode 100644
index 000..80768d3
--- /dev/null
+++ b/debian/saga_cmd.pod
@@ -0,0 +1,63 @@
+=head1 NAME
+
+B - command-line interface to the System for Automated Geoscientific 
Analyses
+ 
+=head1 SYNOPSIS
+
+B [-d, --docs]
+[B=I] B I [I] [B<-silent>] 

+
+B [B<-h, --help>]
+
+=head1 DESCRIPTION
+
+Command line interface to the System for Automated Geoscientific Analyses 
(SAGA). When run without arguments, the module libraries in the current module 
library are listed. This can be specified by setting the environment variable 
I. If this is not specified, the current working directory is used.
+
+SAGA GIS (System for Automated Geoscientific Analysis) is a free and open 
source geographic information system used for editing and analysing spatial 
data. It includes a large number of modules for the analysis of vector, table, 
grid and image data.
+
+=head1 OPTIONS
+
+=over 8
+
+=item [I=dirname]
+ 
+Module libraries are expected to be located in the directory that is specified 
by the environment variable 'SAGA_MLB'. If this is not found the current 
working directory will be searched for instead.
+
+To use the default modules, the environment variable can be set to 
I
+
+=item I [I] 
+
+Specify the library (ie ta_morphometry) and the module (number or name). If no 
module is specified the different modules of a library are listed.
+
+=item B<-h, --help>
+
+Display help and exit
+
+=item B<-d, --docs>
+
+Create tool documentation in the current working directory
+
+=back
+
+=head1 EXAMPLE
+
+export SAGA_MLB=/usr/lib/saga
+
+B ta_morphometry "Local Morphometry" -ELEVATION dem.sgrd -SLOPE 
slope.sgrd -ASPECT aspect.sgrd -METHOD 1
+
+Multiple input files can be specified by seperating them by a semicolon (;).
+
+B libgrid_tools Merging -GRIDS test1.sgrd\;test2.sgrd -GRID_TARGET 
merged.sgrd
+
+=head1 BUGS
+
+On the website of I, a list of known bugs can be 
found and new bug reports can be submitted.
+
+=head1 AUTHORS
+
+B was written by Olaf Conrad with help from a large number of 
contributers. This manual page was written by Johan Van de Wauw.
+Both are released under the GNU General Public License v2.
+
+More info  I
+
+=cut
diff --git a/debian/saga_gui.pod b/debian/saga_gui.pod
new file mode 100644
index 000..b1c17e3
--- /dev/null
+++ b/debian/saga_gui.pod
@@ -0,0 +1,24 @@
+=head1 NAME
+
+B - graphical user interface to the System for Automated 
Geoscientific Analyses
+ 
+=head1 SYNOPSIS
+
+B [I]
+
+=head1 DESCRIPTION
+
+Graphical user interface to the System for Automated Geoscientific Analyses, a 
free and open source geographic information system used for editing and 
analysing spatial data. It includes a large number of modules for the analysis 
of vector, table, grid and image data.
+
+=head1 BUGS
+
+On the project website: I, a list of known bugs can 
be found and new bug reports can be submitted.
+
+=head1 AUTHORS
+
+B was written by Olaf Conrad with help from a large number of 
contributers. This manual page was written by Johan Van de Wauw.
+Both are released under the GNU General Public License v2.
+
+More info  I
+
+=cut

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

___
Pkg-grass-devel mailing list
Pkg-grass-devel@lis

[saga] 02/02: Fix manpages build

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository saga.

commit 80ee139efd103a66d0b825aca33cb774a8463ea2
Author: Johan Van de Wauw 
Date:   Sun Nov 2 22:16:02 2014 +0100

Fix manpages build
---
 debian/rules | 4 ++--
 debian/saga.manpages | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/rules b/debian/rules
index d76bff1..300ddf9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,10 +16,10 @@ UPSTREAM_VERSION ?=$(shell uscan --dehs | sed -n 
's/.*\(.*\)<\
 debian/% :: debian/%.in
sed -e 's/@VERSION@/$(VERSION)/' $< >$@
 
-override_dh_build:
-   dh_build
+override_dh_auto_build:
pod2man --section=1 --release=$(VERSION) --center " " 
debian/saga_cmd.pod >saga_cmd.1
pod2man --section=1 --release=$(VERSION) --center " " 
debian/saga_gui.pod >saga_gui.1
+   dh_auto_build
 
 override_dh_python2:
dh_python2 --no-guessing-versions
diff --git a/debian/saga.manpages b/debian/saga.manpages
index 4cf2b61..5406fde 100644
--- a/debian/saga.manpages
+++ b/debian/saga.manpages
@@ -1 +1,2 @@
 saga_gui.1
+saga_cmd.1

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


[saga] branch master updated (4698bb9 -> 80ee139)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch master
in repository saga.

  from  4698bb9   Fix some errors in debian/copyright
   new  3e6620a   Add updated manfiles
   new  80ee139   Fix manpages build

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/rules |  7 ++
 debian/saga.manpages |  2 ++
 debian/saga_cmd.pod  | 63 
 debian/saga_gui.pod  | 24 
 4 files changed, 96 insertions(+)
 create mode 100644 debian/saga.manpages
 create mode 100644 debian/saga_cmd.pod
 create mode 100644 debian/saga_gui.pod

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


[saga] 05/11: Remove patch (included upstream)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit da6f6f2084bcfe50fe7e5118632d7c7851ae6107
Author: Johan Van de Wauw 
Date:   Fri Oct 31 21:34:03 2014 +0100

Remove patch (included upstream)
---
 .../0001-Fix-gcc-errors-from-upstream.patch| 48 --
 debian/patches/series  |  1 -
 2 files changed, 49 deletions(-)

diff --git a/debian/patches/0001-Fix-gcc-errors-from-upstream.patch 
b/debian/patches/0001-Fix-gcc-errors-from-upstream.patch
deleted file mode 100644
index b748d49..000
--- a/debian/patches/0001-Fix-gcc-errors-from-upstream.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From: Volker Wichmann 
-Subject: errfunc.c: fix bug, refers to bug #191 Missing format strings
-Bug:http://sourceforge.net/p/saga-gis/bugs/191/
-Origin: upstream, http://sourceforge.net/p/saga-gis/code-0/2133/

- src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c | 8 
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c 
b/src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c
-index 959b37f..d229221 100644
 a/src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c
-+++ b/src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c
-@@ -225,7 +225,7 @@ void fehler (int zeile,
-   cp4 = cp2;
-}
- 
--   fprintf (protfile, cp1);
-+   fprintf (protfile, "%s", cp1);
- 
-if (fil -> art == 'E')
-{
-@@ -415,7 +415,7 @@ void error_message (int zeile,
-   cp4 = cp2;
-}
- 
--   sprintf (fmessage + sl_all, cp1);
-+   sprintf (fmessage + sl_all, "%s", cp1);
-sl_all = strlen (fmessage);
-
-sl_alt = strlen (*error_list);
-@@ -577,7 +577,7 @@ void fehler2 (int zeile,
- 
-va_end (ap);
- 
--   fprintf (protfile, cp1);
-+   fprintf (protfile, "%s", cp1);
- 
-if (fil -> art == 'E')
-{
-@@ -756,7 +756,7 @@ void fehler3 (int zeile,
- 
-va_end (ap);
- 
--   sprintf (fmessage + sl_all, cp1);
-+   sprintf (fmessage + sl_all, "%s", cp1);
-sl_all = strlen (fmessage);
-
-sl_alt = strlen (*error_list);
diff --git a/debian/patches/series b/debian/patches/series
index 9c59c65..b2e5377 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
-0001-Fix-gcc-errors-from-upstream.patch
 0002-Remove-references-to-libfire.patch
 0003-Use-debian-version-of-grib2.patch
 0004-Use-qhull-instead-of-triangle.patch

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


[saga] 03/11: Add experimental brancht in vcs-git and gbp.conf

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit 74c3ae99ad7b55db7db43c9dc1dce8d955d9ab57
Author: Johan Van de Wauw 
Date:   Fri Oct 31 21:27:47 2014 +0100

Add experimental brancht in vcs-git and gbp.conf
---
 debian/control  |  2 +-
 debian/gbp.conf | 16 
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 854d773..85af494 100644
--- a/debian/control
+++ b/debian/control
@@ -20,7 +20,7 @@ Build-Depends: libwxgtk3.0-dev,
dh-autoreconf
 Standards-Version: 3.9.5
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-grass/saga.git
-Vcs-Git: git://anonscm.debian.org/pkg-grass/saga.git
+Vcs-Git: git://anonscm.debian.org/pkg-grass/saga.git -b experimental
 Homepage: http://www.saga-gis.org/
 
 Package: saga
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 000..6464eea
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,16 @@
+[DEFAULT]
+
+# The default name for the upstream branch is "upstream".
+# Change it if the name is different (for instance, "master").
+upstream-branch = upstream
+
+# The default name for the Debian branch is "master".
+# Change it if the name is different (for instance, "debian/unstable").
+debian-branch = experimental
+
+# git-import-orig uses the following names for the upstream tags.
+# Change the value if you are not using git-import-orig
+upstream-tag = upstream/%(version)s
+
+# Always use pristine-tar.
+pristine-tar = True

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


[saga] 04/11: Update changelog for 2.1.3

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit e11f0b6439f8cf65e2dbb07f6bfeb458b92bd71a
Author: Johan Van de Wauw 
Date:   Fri Oct 31 21:31:51 2014 +0100

Update changelog for 2.1.3
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index b8a63e7..8e1aaa3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+saga (2.1.3+dfsg-1) UNRELEASED; urgency=medium
+
+  * Update to new upstream version
+
+ -- Johan Van de Wauw   Fri, 31 Oct 2014 21:31:09 
+0100
+
 saga (2.1.2+dfsg-3) unstable; urgency=medium
 
   * Use dep-5 style copyright file

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


[saga] 06/11: Fix manpages build

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit d395fd95c33a9289cd92eff3cd9dd4fb25f77a62
Author: Johan Van de Wauw 
Date:   Sun Nov 2 22:16:02 2014 +0100

Fix manpages build
---
 debian/rules | 4 ++--
 debian/saga.manpages | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/rules b/debian/rules
index df27063..e21db40 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,10 +16,10 @@ UPSTREAM_VERSION ?=$(shell uscan --dehs | sed -n 
's/.*\(.*\)<\
 debian/% :: debian/%.in
sed -e 's/@VERSION@/$(VERSION)/' $< >$@
 
-override_dh_build:
-   dh_build
+override_dh_auto_build:
pod2man --section=1 --release=$(VERSION) --center " " 
debian/saga_cmd.pod >saga_cmd.1
pod2man --section=1 --release=$(VERSION) --center " " 
debian/saga_gui.pod >saga_gui.1
+   dh_auto_build
 
 override_dh_python2:
dh_python2 --no-guessing-versions
diff --git a/debian/saga.manpages b/debian/saga.manpages
index 4cf2b61..5406fde 100644
--- a/debian/saga.manpages
+++ b/debian/saga.manpages
@@ -1 +1,2 @@
 saga_gui.1
+saga_cmd.1

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


[saga] 08/11: Update copyright file

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit a3ec287ccb9c8e75913733be13b4337793e36b74
Author: Johan Van de Wauw 
Date:   Mon Nov 3 08:30:03 2014 +0100

Update copyright file
---
 debian/copyright | 61 +---
 1 file changed, 36 insertions(+), 25 deletions(-)

diff --git a/debian/copyright b/debian/copyright
index 6ae6c9d..8028c5d 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -3,7 +3,7 @@ Upstream-Name: SAGA GIS
 Upstream-Contact: Olaf Conrad 
 Source: http://www.saga-gis.org 
 Comment: Saga is generally licensed using two licenses: LGPL-2.1 for the 
libraries and GPL-2 for the rest of the program. 
-Files-Excluded: src/modules/grid/grid_gridding/nn/triangle.c 
src/modules/grid/grid_gridding/nn/triangle.h 
src/modules/simulation/sim_fire_spreading
+Files-Excluded: src/modules/grid/grid_gridding/nn/triangle.c 
src/modules/grid/grid_gridding/nn/triangle.h 
src/modules/simulation/sim_fire_spreading 
/src/modules/io/io_grid_grib2/g2clib-1.0.4/  
src/modules/imagery/imagery_svm/svm.cpp  src/modules/imagery/imagery_svm/svm.h
 
 Files: *
 Copyright: 2001-2014 Olaf Conrad 
@@ -21,32 +21,15 @@ Copyright: 2001-2014 Olaf Conrad
  2003-2014 Volker Wichmann
 License: LGPL-2.1
 
+Files:src/modules/imagery/imagery_tools/landsat_toar_core.cpp
+Copyright: 2000-2005 Liam Girdwood
+   2006 E. Jorge Tizado
+Comment: Contains code modified from libnova-0.12, grass
+License: GPL-2 
+
 Files: src/saga_core/saga_api/clipper.cpp src/saga_core/saga_api/clipper.hpp
 Copyright: 2010-2011, Angus Johnson
 License: Boost_Software_License
- Boost Software License - Version 1.0 - August 17th, 2003
- .
- Permission is hereby granted, free of charge, to any person or organization
- obtaining a copy of the software and accompanying documentation covered by
- this license (the "Software") to use, reproduce, display, distribute,
- execute, and transmit the Software, and to prepare derivative works of the
- Software, and to permit third-parties to whom the Software is furnished to
- do so, all subject to the following:
- . 
- The copyright notices in the Software and this entire statement, including
- the above license grant, this restriction and the following disclaimer,
- must be included in all copies of the Software, in whole or in part, and
- all derivative works of the Software, unless such copies or derivative
- works are solely in the form of machine-executable object code generated by
- a source language processor.
- . 
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
- SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
- FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- DEALINGS IN THE SOFTWARE.
 
 Files: src/modules/db/db_odbc/otlv4.h
 Copyright: 1996-2010 Sergei Kuchin
@@ -87,6 +70,8 @@ License: GPL-2
 
 Files: src/modules/io/io_esri_e00/e00compr/*
 Copyright: 1998-1999 Frank Warmerdam and Daniel Morisette
+Comment: these files are also part of the package e00compr, it makes sense to 
build
+ a library there
 License: MIT
  Permission is hereby granted, free of charge, to any person obtaining a
  copy of this software and associated documentation files (the "Software"),
@@ -135,7 +120,7 @@ License: BSD-4-clause
  OF SUCH DAMAGE.
 
 Files: debian/*
-Copyright: 2010 Johan Van de Wauw 
+Copyright: 2010-2014 Johan Van de Wauw 
 License: LGPL-2.1+
 
 License: GPL-2
@@ -203,3 +188,29 @@ License: LGPL-2.1+
  On Debian systems, the full text of the GNU General Public
  License version 2 can be found in the file
  `/usr/share/common-licenses/LGPL-2.1'.
+
+
+License: Boost_Software_License
+ Boost Software License - Version 1.0 - August 17th, 2003
+ .
+ Permission is hereby granted, free of charge, to any person or organization
+ obtaining a copy of the software and accompanying documentation covered by
+ this license (the "Software") to use, reproduce, display, distribute,
+ execute, and transmit the Software, and to prepare derivative works of the
+ Software, and to permit third-parties to whom the Software is furnished to
+ do so, all subject to the following:
+ . 
+ The copyright notices in the Software and this entire statement, including
+ the above license grant, this restriction and the following disclaimer,
+ must be included in all copies of the Software, in whole or in part, and
+ all derivative works of the Software, unless such copies or derivative
+ works are solely in the form of machine-executable object code generated by
+ a source language processor.
+ . 
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDIN

[saga] branch experimental created (now 44a1b66)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch experimental
in repository saga.

at  44a1b66   Use debian version of libsvm

This branch includes the following new commits:

   new  3e6620a   Add updated manfiles
   new  96cc85e   Imported Upstream version 2.1.3
   new  5e98366   Merge tag 'upstream/2.1.3'
   new  0816ea2   remove old get-orig-source
   new  74c3ae9   Add experimental brancht in vcs-git and gbp.conf
   new  e11f0b6   Update changelog for 2.1.3
   new  da6f6f2   Remove patch (included upstream)
   new  d395fd9   Fix manpages build
   new  33cb643   Add b/d of svm
   new  a3ec287   Update copyright file
   new  2a9f508   Enable libvigraimpex modules again
   new  02d05be   Further changes saga_cmd manfile
   new  44a1b66   Use debian version of libsvm

The 13 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.


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


[saga] 02/11: remove old get-orig-source

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit 0816ea2a34d4d5124f7f0061371f013df1696584
Author: Johan Van de Wauw 
Date:   Fri Oct 31 21:23:52 2014 +0100

remove old get-orig-source
---
 debian/rules | 8 
 1 file changed, 8 deletions(-)

diff --git a/debian/rules b/debian/rules
index d76bff1..df27063 100755
--- a/debian/rules
+++ b/debian/rules
@@ -35,11 +35,3 @@ override_dh_makeshlibs:
 
 get-orig-source:
uscan --verbose --force-download --repack --compression xz
-   #sources up to version 2.1.2 were created using these commands:
-   #wget $(UPSTREAM_URL)
-   #gunzip *.tar.gz
-   #tar --delete -f saga_$(UPSTREAM_VERSION).tar 
saga-$(UPSTREAM_VERSION)/src/modules/grid/grid_gridding/nn/triangle.c
-   #tar --delete -f saga_$(UPSTREAM_VERSION).tar 
saga-$(UPSTREAM_VERSION)/src/modules/grid/grid_gridding/nn/triangle.h
-   #tar --delete -f saga_$(UPSTREAM_VERSION).tar 
saga-$(UPSTREAM_VERSION)/src/modules/simulation/sim_fire_spreading
-   #gzip -9n saga_$(UPSTREAM_VERSION).tar
-   #mv saga_$(UPSTREAM_VERSION).tar.gz 
../saga_$(UPSTREAM_VERSION)+dfsg.orig.tar.gz 

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


[saga] 01/11: Merge tag 'upstream/2.1.3'

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit 5e98366e9affccf1495c7315f030df6111b7a5a8
Merge: 3e6620a 96cc85e
Author: Johan Van de Wauw 
Date:   Fri Oct 31 21:19:58 2014 +0100

Merge tag 'upstream/2.1.3'

Upstream version 2.1.3

 Makefile.in|   180 +-
 README | 2 +-
 aclocal.m4 |   384 +-
 config.guess   |   373 +-
 config.h.in| 3 -
 config.sub |   210 +-
 configure  | 12877 +++
 configure.ac   | 4 +-
 depcomp|   189 +-
 install-sh |35 +-
 ltmain.sh  |  4027 ++
 m4/libtool.m4  |  2246 ++--
 m4/ltoptions.m4|32 +-
 m4/ltversion.m4|12 +-
 m4/lt~obsolete.m4  |12 +-
 missing|   148 +-
 py-compile |50 +-
 src/Makefile.in|   113 +-
 src/modules/Makefile.in|   113 +-
 src/modules/climate/Makefile.in|   113 +-
 .../climate/climate_tools/MLB_Interface.cpp| 5 +-
 src/modules/climate/climate_tools/Makefile.in  |   114 +-
 src/modules/contrib/Makefile.in|   113 +-
 .../contrib/contrib_peregro/MLB_Interface.cpp  | 5 +-
 src/modules/contrib/contrib_peregro/Makefile.in|   114 +-
 src/modules/db/Makefile.in |   113 +-
 src/modules/db/db_odbc/MLB_Interface.cpp   | 5 +-
 src/modules/db/db_odbc/Makefile.in |   114 +-
 src/modules/db/db_pgsql/MLB_Interface.cpp  | 5 +-
 src/modules/db/db_pgsql/Makefile.in|   114 +-
 src/modules/db/db_pgsql/pgis_shapes.cpp| 5 +-
 src/modules/docs/Makefile.in   |   113 +-
 src/modules/docs/docs_html/MLB_Interface.cpp   | 5 +-
 src/modules/docs/docs_html/Makefile.in |   114 +-
 src/modules/docs/docs_pdf/MLB_Interface.cpp| 5 +-
 src/modules/docs/docs_pdf/Makefile.in  |   114 +-
 src/modules/garden/Makefile.in |   113 +-
 .../garden_3d_viewer/3d_viewer_globe_grid.cpp  |84 +-
 .../garden_3d_viewer/3d_viewer_multiple_grids.cpp  |41 +-
 .../garden/garden_3d_viewer/3d_viewer_tin.cpp  | 6 +-
 .../garden/garden_3d_viewer/MLB_Interface.cpp  | 7 +-
 src/modules/garden/garden_3d_viewer/Makefile.in|   114 +-
 .../garden/garden_fractals/MLB_Interface.cpp   | 5 +-
 src/modules/garden/garden_fractals/Makefile.in |   114 +-
 src/modules/garden/garden_games/MLB_Interface.cpp  | 5 +-
 src/modules/garden/garden_games/Makefile.in|   114 +-
 src/modules/garden/garden_games/Mine_Sweeper.cpp   | 2 +-
 .../garden/garden_learn_to_program/Exercise_05.cpp | 8 +-
 .../garden/garden_learn_to_program/Exercise_06.cpp | 2 +-
 .../garden/garden_learn_to_program/Exercise_10.h   | 2 +
 .../garden_learn_to_program/MLB_Interface.cpp  | 5 +-
 .../garden/garden_learn_to_program/Makefile.in |   114 +-
 .../garden/garden_webservices/MLB_Interface.cpp| 5 +-
 src/modules/garden/garden_webservices/Makefile.in  |   114 +-
 src/modules/grid/Makefile.in   |   113 +-
 .../grid_analysis/Grid_Accumulation_Functions.cpp  | 9 +-
 src/modules/grid/grid_analysis/Grid_IMCORR.cpp |38 +-
 .../grid/grid_analysis/LeastCostPathProfile.cpp| 4 +-
 .../grid_analysis/LeastCostPathProfile_Points.cpp  | 4 +-
 src/modules/grid/grid_analysis/MLB_Interface.cpp   | 7 +-
 src/modules/grid/grid_analysis/Makefile.in |   114 +-
 src/modules/grid/grid_calculus/Grid_Calculator.cpp |61 +-
 src/modules/grid/grid_calculus/Grid_Normalise.cpp  | 4 +-
 .../grid/grid_calculus/Grid_Random_Field.cpp   |37 +-
 src/modules/grid/grid_calculus/MLB_Interface.cpp   | 7 +-
 src/modules/grid/grid_calculus/Makefile.in |   114 +-
 src/modules/grid/grid_calculus/kff_synth.cpp   | 4 +-
 .../grid/grid_calculus_bsl/MLB_Interface.cpp   | 7 +-
 src/modules/grid/grid_calculus_bsl/Makefile.in |   114 +-
 .../grid/grid_calculus_bsl/auswert_zuweisung.cpp   | 4 +-
 src/modules/grid/grid_calculus_bsl/diverses.cpp|38 +-
 src/modules/grid/grid_calculus_bsl/funktion.cpp|10 +-
 src/modules/grid/grid_filter/Filter_LoG.cpp| 4 +-
 .../grid/grid_filter/Filter_Multi

[saga] 09/11: Enable libvigraimpex modules again

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit 2a9f50891bef7ffd93f4cfebae5ddb14c5d519a3
Author: Johan Van de Wauw 
Date:   Mon Nov 3 08:30:49 2014 +0100

Enable libvigraimpex modules again
---
 debian/control | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 757ca4f..1f4fa7c 100644
--- a/debian/control
+++ b/debian/control
@@ -18,7 +18,8 @@ Build-Depends: libwxgtk3.0-dev,
python-dev,
liblas-dev,
dh-autoreconf,
-   libsvm-dev
+   libsvm-dev,
+   libvigraimpex-dev
 Standards-Version: 3.9.5
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-grass/saga.git
 Vcs-Git: git://anonscm.debian.org/pkg-grass/saga.git -b experimental

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


[saga] 07/11: Add b/d of svm

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit 33cb643ad8871ba69a67bb0e4745d8695077593b
Author: Johan Van de Wauw 
Date:   Sun Nov 2 22:36:57 2014 +0100

Add b/d of svm
---
 debian/control | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 85af494..757ca4f 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,8 @@ Build-Depends: libwxgtk3.0-dev,
libhpdf-dev,
python-dev,
liblas-dev,
-   dh-autoreconf
+   dh-autoreconf,
+   libsvm-dev
 Standards-Version: 3.9.5
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-grass/saga.git
 Vcs-Git: git://anonscm.debian.org/pkg-grass/saga.git -b experimental

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


[saga] 10/11: Further changes saga_cmd manfile

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit 02d05becc4d085f16896937e2682ba66efa52bae
Author: Johan Van de Wauw 
Date:   Mon Nov 3 19:45:04 2014 +0100

Further changes saga_cmd manfile
---
 debian/rules|  6 +++--
 debian/saga_cmd.pod | 66 ++---
 2 files changed, 62 insertions(+), 10 deletions(-)

diff --git a/debian/rules b/debian/rules
index e21db40..efc24d1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,10 +16,12 @@ UPSTREAM_VERSION ?=$(shell uscan --dehs | sed -n 
's/.*\(.*\)<\
 debian/% :: debian/%.in
sed -e 's/@VERSION@/$(VERSION)/' $< >$@
 
-override_dh_auto_build:
+override_dh_auto_build: man
+   dh_auto_build
+
+man:
pod2man --section=1 --release=$(VERSION) --center " " 
debian/saga_cmd.pod >saga_cmd.1
pod2man --section=1 --release=$(VERSION) --center " " 
debian/saga_gui.pod >saga_gui.1
-   dh_auto_build
 
 override_dh_python2:
dh_python2 --no-guessing-versions
diff --git a/debian/saga_cmd.pod b/debian/saga_cmd.pod
index 80768d3..92e365b 100644
--- a/debian/saga_cmd.pod
+++ b/debian/saga_cmd.pod
@@ -4,28 +4,37 @@ B - command-line interface to the System for 
Automated Geoscientific A
  
 =head1 SYNOPSIS
 
-B [-d, --docs]
-[B=I] B I [I] [B<-silent>] 

+B [B<-d, --docs>]
+
+B [B<-b, --batch>]
 
 B [B<-h, --help>]
 
-=head1 DESCRIPTION
+B [B<-f, --flags>][=qrsilpxo][-s, --story][=#][-c, --cores][=#] 
I [I] 
 
-Command line interface to the System for Automated Geoscientific Analyses 
(SAGA). When run without arguments, the module libraries in the current module 
library are listed. This can be specified by setting the environment variable 
I. If this is not specified, the current working directory is used.
+B [B<-f, --flags>][=qrsilpxo][-s, --story][=#][-c, --cores][=#] 
I

[saga] 11/11: Use debian version of libsvm

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch experimental
in repository saga.

commit 44a1b669d5caf755f12deba3bd4dc7292ca8d2e7
Author: Johan Van de Wauw 
Date:   Mon Nov 3 20:38:38 2014 +0100

Use debian version of libsvm
---
 ...tch => 0001-Remove-references-to-libfire.patch} |  6 ++---
 ...atch => 0002-Use-debian-version-of-grib2.patch} |  0
 ...ch => 0003-Use-qhull-instead-of-triangle.patch} |  0
 .../0004-Use-debian-version-of-libsvm.patch| 31 ++
 debian/patches/series  |  7 ++---
 5 files changed, 38 insertions(+), 6 deletions(-)

diff --git a/debian/patches/0002-Remove-references-to-libfire.patch 
b/debian/patches/0001-Remove-references-to-libfire.patch
similarity index 93%
rename from debian/patches/0002-Remove-references-to-libfire.patch
rename to debian/patches/0001-Remove-references-to-libfire.patch
index 356ed43..bce6076 100644
--- a/debian/patches/0002-Remove-references-to-libfire.patch
+++ b/debian/patches/0001-Remove-references-to-libfire.patch
@@ -9,7 +9,7 @@ Subject: Remove references to libfire
  3 files changed, 2 insertions(+), 3 deletions(-)
 
 diff --git a/configure.ac b/configure.ac
-index afa2cc7..82dab2a 100755
+index d419561..dff2da2 100755
 --- a/configure.ac
 +++ b/configure.ac
 @@ -276,7 +276,6 @@ AC_OUTPUT(Makefile \
@@ -28,10 +28,10 @@ index 7ec461d..2f378e2 100644
 -SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_fire_spreading sim_hydrology sim_ihacres
 +SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_hydrology sim_ihacres
 diff --git a/src/modules/simulation/Makefile.in 
b/src/modules/simulation/Makefile.in
-index 2f58074..7be1b6a 100644
+index c4823da..2f9e27c 100644
 --- a/src/modules/simulation/Makefile.in
 +++ b/src/modules/simulation/Makefile.in
-@@ -260,7 +260,7 @@ target_alias = @target_alias@
+@@ -236,7 +236,7 @@ target_alias = @target_alias@
  top_build_prefix = @top_build_prefix@
  top_builddir = @top_builddir@
  top_srcdir = @top_srcdir@
diff --git a/debian/patches/0003-Use-debian-version-of-grib2.patch 
b/debian/patches/0002-Use-debian-version-of-grib2.patch
similarity index 100%
rename from debian/patches/0003-Use-debian-version-of-grib2.patch
rename to debian/patches/0002-Use-debian-version-of-grib2.patch
diff --git a/debian/patches/0004-Use-qhull-instead-of-triangle.patch 
b/debian/patches/0003-Use-qhull-instead-of-triangle.patch
similarity index 100%
rename from debian/patches/0004-Use-qhull-instead-of-triangle.patch
rename to debian/patches/0003-Use-qhull-instead-of-triangle.patch
diff --git a/debian/patches/0004-Use-debian-version-of-libsvm.patch 
b/debian/patches/0004-Use-debian-version-of-libsvm.patch
new file mode 100644
index 000..4501f7c
--- /dev/null
+++ b/debian/patches/0004-Use-debian-version-of-libsvm.patch
@@ -0,0 +1,31 @@
+From: Johan Van de Wauw 
+Date: Mon, 3 Nov 2014 20:38:24 +0100
+Subject: Use debian version of libsvm
+
+---
+ src/modules/imagery/imagery_svm/Makefile.am | 6 ++
+ 1 file changed, 2 insertions(+), 4 deletions(-)
+
+diff --git a/src/modules/imagery/imagery_svm/Makefile.am 
b/src/modules/imagery/imagery_svm/Makefile.am
+index a92c3bd..8a87973 100644
+--- a/src/modules/imagery/imagery_svm/Makefile.am
 b/src/modules/imagery/imagery_svm/Makefile.am
+@@ -5,16 +5,14 @@ if SAGA_UNICODE
+ UC_DEFS = -D_SAGA_UNICODE
+ endif
+ DEF_SAGA   = -D_SAGA_LINUX -D_TYPEDEF_BYTE -D_TYPEDEF_WORD
+-CXX_INCS   = -I$(top_srcdir)/src/saga_core
++CXX_INCS   = -I$(top_srcdir)/src/saga_core -I/usr/include/libsvm
+ AM_CXXFLAGS= -fPIC $(CXX_INCS) $(DEF_SAGA) $(UC_DEFS) $(DBGFLAGS) 
$(GOMPFLAGS)
+-AM_LDFLAGS = -fPIC -shared -avoid-version
++AM_LDFLAGS = -fPIC -shared -avoid-version -lsvm
+ pkglib_LTLIBRARIES = libimagery_svm.la
+ libimagery_svm_la_SOURCES =\
+ MLB_Interface.cpp\
+-svm.cpp\
+ svm_grids.cpp\
+ MLB_Interface.h\
+-svm.h\
+ svm_grids.h
+ 
+ libimagery_svm_la_LIBADD = $(top_srcdir)/src/saga_core/saga_api/libsaga_api.la
diff --git a/debian/patches/series b/debian/patches/series
index b2e5377..a6abd65 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
-0002-Remove-references-to-libfire.patch
-0003-Use-debian-version-of-grib2.patch
-0004-Use-qhull-instead-of-triangle.patch
+0001-Remove-references-to-libfire.patch
+0002-Use-debian-version-of-grib2.patch
+0003-Use-qhull-instead-of-triangle.patch
+0004-Use-debian-version-of-libsvm.patch

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


[saga] 03/05: Use debian version of grib2

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/experimental
in repository saga.

commit a1aa2db1369c60df581699cf8021d1203d26c576
Author: Johan Van de Wauw 
Date:   Tue Jul 15 04:28:04 2014 -0400

Use debian version of grib2
---
 src/modules/io/io_grid_grib2/Makefile.am | 50 +---
 1 file changed, 1 insertion(+), 49 deletions(-)

diff --git a/src/modules/io/io_grid_grib2/Makefile.am 
b/src/modules/io/io_grid_grib2/Makefile.am
index 2d6ff24..7e006ae 100644
--- a/src/modules/io/io_grid_grib2/Makefile.am
+++ b/src/modules/io/io_grid_grib2/Makefile.am
@@ -11,57 +11,9 @@ DEF_SAGA   = -D_SAGA_LINUX -D_TYPEDEF_BYTE 
-D_TYPEDEF_WORD -DUSE_JPEG200
 CXX_INCS   = -I$(top_srcdir)/src/saga_core $(LOCAL_INCS)
 AM_CXXFLAGS= -fPIC $(CXX_INCS) $(DEF_SAGA) $(UC_DEFS) $(DBGFLAGS) 
$(GOMPFLAGS)
 #AM_LDFLAGS = -fPIC -shared -avoid-version -lpq -ljasper
-AM_LDFLAGS = -fPIC -shared -avoid-version $(LOCAL_LIBS) -ljasper
+AM_LDFLAGS = -fPIC -shared -avoid-version $(LOCAL_LIBS) -ljasper 
-lgrib2c
 pkglib_LTLIBRARIES = libio_grid_grib2.la
 libio_grid_grib2_la_SOURCES =\
-./g2clib-1.0.4/cmplxpack.c\
-./g2clib-1.0.4/compack.c\
-./g2clib-1.0.4/comunpack.c\
-./g2clib-1.0.4/dec_jpeg2000.c\
-./g2clib-1.0.4/dec_png.c\
-./g2clib-1.0.4/drstemplates.c\
-./g2clib-1.0.4/enc_jpeg2000.c\
-./g2clib-1.0.4/enc_png.c\
-./g2clib-1.0.4/g2_addfield.c\
-./g2clib-1.0.4/g2_addgrid.c\
-./g2clib-1.0.4/g2_addlocal.c\
-./g2clib-1.0.4/g2_create.c\
-./g2clib-1.0.4/g2_free.c\
-./g2clib-1.0.4/g2_getfld.c\
-./g2clib-1.0.4/g2_gribend.c\
-./g2clib-1.0.4/g2_info.c\
-./g2clib-1.0.4/g2_miss.c\
-./g2clib-1.0.4/g2_unpack1.c\
-./g2clib-1.0.4/g2_unpack2.c\
-./g2clib-1.0.4/g2_unpack3.c\
-./g2clib-1.0.4/g2_unpack4.c\
-./g2clib-1.0.4/g2_unpack5.c\
-./g2clib-1.0.4/g2_unpack6.c\
-./g2clib-1.0.4/g2_unpack7.c\
-./g2clib-1.0.4/gbits.c\
-./g2clib-1.0.4/getdim.c\
-./g2clib-1.0.4/getpoly.c\
-./g2clib-1.0.4/gridtemplates.c\
-./g2clib-1.0.4/int_power.c\
-./g2clib-1.0.4/jpcpack.c\
-./g2clib-1.0.4/jpcunpack.c\
-./g2clib-1.0.4/misspack.c\
-./g2clib-1.0.4/mkieee.c\
-./g2clib-1.0.4/pack_gp.c\
-./g2clib-1.0.4/pdstemplates.c\
-./g2clib-1.0.4/pngpack.c\
-./g2clib-1.0.4/pngunpack.c\
-./g2clib-1.0.4/rdieee.c\
-./g2clib-1.0.4/reduce.c\
-./g2clib-1.0.4/seekgb.c\
-./g2clib-1.0.4/simpack.c\
-./g2clib-1.0.4/simunpack.c\
-./g2clib-1.0.4/specpack.c\
-./g2clib-1.0.4/specunpack.c\
-./g2clib-1.0.4/drstemplates.h\
-./g2clib-1.0.4/grib2.h\
-./g2clib-1.0.4/gridtemplates.h\
-./g2clib-1.0.4/pdstemplates.h\
 grib2_import.cpp\
 MLB_Interface.cpp\
 grib2_import.h\

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


[saga] branch patch-queue/master created (now d712728)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch patch-queue/master
in repository saga.

at  d712728   Set distribution to unstable

This branch includes the following new commits:

   new  9564971   Update changelog
   new  b121ce4   errfunc.c: fix bug, refers to bug #191 Missing format 
strings
   new  1885dda   Remove references to libfire
   new  5f29d3d   Use debian version of grib2
   new  c7736a9   Use qhull instead of triangle
   new  d712728   Set distribution to unstable

The 6 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.


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


[saga] 01/06: Update changelog

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/master
in repository saga.

commit 9564971d1a41d8aadf26abb428926d43113f7a20
Author: Johan Van de Wauw 
Date:   Fri Sep 12 21:51:29 2014 +0200

Update changelog
---
 debian/changelog | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 47663a6..856b8bd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+saga (2.1.2+dfsg-3) UNRELEASED; urgency=medium
+
+  * Use dep-5 style copyright file
+  * Enable OpenMP
+
+ -- Johan Van de Wauw   Fri, 12 Sep 2014 21:51:21 
+0200
+
 saga (2.1.2+dfsg-2) unstable; urgency=medium
 
   * Remove unneeded configure option

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


[saga] 02/05: Remove references to libfire

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/experimental
in repository saga.

commit 4c72e2a7cba65e9aa97a2a0eaf51f5b6a4c1a069
Author: Johan Van de Wauw 
Date:   Tue Jul 15 04:24:25 2014 -0400

Remove references to libfire
---
 configure.ac   | 1 -
 src/modules/simulation/Makefile.am | 2 +-
 src/modules/simulation/Makefile.in | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index d419561..dff2da2 100755
--- a/configure.ac
+++ b/configure.ac
@@ -276,7 +276,6 @@ AC_OUTPUT(Makefile \
src/modules/simulation/sim_cellular_automata/Makefile \
src/modules/simulation/sim_ecosystems_hugget/Makefile \
src/modules/simulation/sim_erosion/Makefile \
-   src/modules/simulation/sim_fire_spreading/Makefile \
src/modules/simulation/sim_hydrology/Makefile \
src/modules/simulation/sim_ihacres/Makefile \
src/modules/statistics/Makefile \
diff --git a/src/modules/simulation/Makefile.am 
b/src/modules/simulation/Makefile.am
index 7ec461d..2f378e2 100644
--- a/src/modules/simulation/Makefile.am
+++ b/src/modules/simulation/Makefile.am
@@ -1 +1 @@
-SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_fire_spreading sim_hydrology sim_ihacres
+SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_hydrology sim_ihacres
diff --git a/src/modules/simulation/Makefile.in 
b/src/modules/simulation/Makefile.in
index c4823da..2f9e27c 100644
--- a/src/modules/simulation/Makefile.in
+++ b/src/modules/simulation/Makefile.in
@@ -236,7 +236,7 @@ target_alias = @target_alias@
 top_build_prefix = @top_build_prefix@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
-SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_fire_spreading sim_hydrology sim_ihacres
+SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_hydrology sim_ihacres
 all: all-recursive
 
 .SUFFIXES:

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


[saga] 04/05: Use qhull instead of triangle

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/experimental
in repository saga.

commit 85b21e7a2db9d3cc76c6aae8c556a04d65503b85
Author: Johan Van de Wauw 
Date:   Tue Jul 15 04:30:10 2014 -0400

Use qhull instead of triangle
---
 src/modules/grid/grid_gridding/Makefile.am   | 3 +--
 src/modules/grid/grid_gridding/nn/delaunay.c | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/modules/grid/grid_gridding/Makefile.am 
b/src/modules/grid/grid_gridding/Makefile.am
index 75c79c9..bc55004 100644
--- a/src/modules/grid/grid_gridding/Makefile.am
+++ b/src/modules/grid/grid_gridding/Makefile.am
@@ -13,7 +13,7 @@ endif
 DEF_SAGA   = -D_SAGA_LINUX -D_TYPEDEF_BYTE -D_TYPEDEF_WORD
 CXX_INCS   = -I$(top_srcdir)/src/saga_core
 AM_CXXFLAGS= -fPIC $(CXX_INCS) $(DEP_DEFS) $(DEF_SAGA) $(UC_DEFS) 
$(DBGFLAGS) $(GOMPFLAGS)
-AM_LDFLAGS = -fPIC -shared -avoid-version
+AM_LDFLAGS = -fPIC -shared -avoid-version -lqhull
 pkglib_LTLIBRARIES = libgrid_gridding.la
 libgrid_gridding_la_SOURCES =\
 Interpolation.cpp\
@@ -34,7 +34,6 @@ Shepard.cpp\
 ./nn/nnai.c\
 ./nn/nncommon.c\
 ./nn/nnpi.c\
-./nn/triangle.c\
 Interpolation.h\
 Interpolation_AngularDistance.h\
 Interpolation_InverseDistance.h\
diff --git a/src/modules/grid/grid_gridding/nn/delaunay.c 
b/src/modules/grid/grid_gridding/nn/delaunay.c
index dc98875..e2952fa 100644
--- a/src/modules/grid/grid_gridding/nn/delaunay.c
+++ b/src/modules/grid/grid_gridding/nn/delaunay.c
@@ -24,7 +24,7 @@
  *
  */
 
-//#define USE_QHULL
+#define USE_QHULL
 
 #include 
 #include 

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


[saga] branch patch-queue/experimental created (now f4d457e)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch patch-queue/experimental
in repository saga.

at  f4d457e   Use debian version of libsvm

This branch includes the following new commits:

   new  3e6620a   Add updated manfiles
   new  96cc85e   Imported Upstream version 2.1.3
   new  5e98366   Merge tag 'upstream/2.1.3'
   new  0816ea2   remove old get-orig-source
   new  74c3ae9   Add experimental brancht in vcs-git and gbp.conf
   new  e11f0b6   Update changelog for 2.1.3
   new  da6f6f2   Remove patch (included upstream)
   new  d395fd9   Fix manpages build
   new  33cb643   Add b/d of svm
   new  a3ec287   Update copyright file
   new  2a9f508   Enable libvigraimpex modules again
   new  02d05be   Further changes saga_cmd manfile
   new  765e528   Use debian version of libsvm
   new  4c72e2a   Remove references to libfire
   new  a1aa2db   Use debian version of grib2
   new  85b21e7   Use qhull instead of triangle
   new  f4d457e   Use debian version of libsvm

The 17 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.


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


[saga] 01/05: Use debian version of libsvm

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/experimental
in repository saga.

commit 765e528da37d258bb4a06d3c3a812ea1320552d0
Author: Johan Van de Wauw 
Date:   Mon Nov 3 20:00:20 2014 +0100

Use debian version of libsvm
---
 ...tch => 0001-Remove-references-to-libfire.patch} |  6 ++---
 ...atch => 0002-Use-debian-version-of-grib2.patch} |  0
 ...ch => 0003-Use-qhull-instead-of-triangle.patch} |  0
 .../0004-Use-debian-version-of-libsvm.patch| 31 ++
 debian/patches/series  |  7 ++---
 5 files changed, 38 insertions(+), 6 deletions(-)

diff --git a/debian/patches/0002-Remove-references-to-libfire.patch 
b/debian/patches/0001-Remove-references-to-libfire.patch
similarity index 93%
rename from debian/patches/0002-Remove-references-to-libfire.patch
rename to debian/patches/0001-Remove-references-to-libfire.patch
index 356ed43..bce6076 100644
--- a/debian/patches/0002-Remove-references-to-libfire.patch
+++ b/debian/patches/0001-Remove-references-to-libfire.patch
@@ -9,7 +9,7 @@ Subject: Remove references to libfire
  3 files changed, 2 insertions(+), 3 deletions(-)
 
 diff --git a/configure.ac b/configure.ac
-index afa2cc7..82dab2a 100755
+index d419561..dff2da2 100755
 --- a/configure.ac
 +++ b/configure.ac
 @@ -276,7 +276,6 @@ AC_OUTPUT(Makefile \
@@ -28,10 +28,10 @@ index 7ec461d..2f378e2 100644
 -SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_fire_spreading sim_hydrology sim_ihacres
 +SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_hydrology sim_ihacres
 diff --git a/src/modules/simulation/Makefile.in 
b/src/modules/simulation/Makefile.in
-index 2f58074..7be1b6a 100644
+index c4823da..2f9e27c 100644
 --- a/src/modules/simulation/Makefile.in
 +++ b/src/modules/simulation/Makefile.in
-@@ -260,7 +260,7 @@ target_alias = @target_alias@
+@@ -236,7 +236,7 @@ target_alias = @target_alias@
  top_build_prefix = @top_build_prefix@
  top_builddir = @top_builddir@
  top_srcdir = @top_srcdir@
diff --git a/debian/patches/0003-Use-debian-version-of-grib2.patch 
b/debian/patches/0002-Use-debian-version-of-grib2.patch
similarity index 100%
rename from debian/patches/0003-Use-debian-version-of-grib2.patch
rename to debian/patches/0002-Use-debian-version-of-grib2.patch
diff --git a/debian/patches/0004-Use-qhull-instead-of-triangle.patch 
b/debian/patches/0003-Use-qhull-instead-of-triangle.patch
similarity index 100%
rename from debian/patches/0004-Use-qhull-instead-of-triangle.patch
rename to debian/patches/0003-Use-qhull-instead-of-triangle.patch
diff --git a/debian/patches/0004-Use-debian-version-of-libsvm.patch 
b/debian/patches/0004-Use-debian-version-of-libsvm.patch
new file mode 100644
index 000..bf514bd
--- /dev/null
+++ b/debian/patches/0004-Use-debian-version-of-libsvm.patch
@@ -0,0 +1,31 @@
+From: Johan Van de Wauw 
+Date: Mon, 3 Nov 2014 19:56:26 +0100
+Subject: Use debian version of libsvm
+
+---
+ src/modules/imagery/imagery_svm/Makefile.am | 6 ++
+ 1 file changed, 2 insertions(+), 4 deletions(-)
+
+diff --git a/src/modules/imagery/imagery_svm/Makefile.am 
b/src/modules/imagery/imagery_svm/Makefile.am
+index a92c3bd..deeb91c 100644
+--- a/src/modules/imagery/imagery_svm/Makefile.am
 b/src/modules/imagery/imagery_svm/Makefile.am
+@@ -5,16 +5,14 @@ if SAGA_UNICODE
+ UC_DEFS = -D_SAGA_UNICODE
+ endif
+ DEF_SAGA   = -D_SAGA_LINUX -D_TYPEDEF_BYTE -D_TYPEDEF_WORD
+-CXX_INCS   = -I$(top_srcdir)/src/saga_core
++CXX_INCS   = -I$(top_srcdir)/src/saga_core -I/usr/include/libsvm
+ AM_CXXFLAGS= -fPIC $(CXX_INCS) $(DEF_SAGA) $(UC_DEFS) $(DBGFLAGS) 
$(GOMPFLAGS)
+-AM_LDFLAGS = -fPIC -shared -avoid-version
++AM_LDFLAGS = -fPIC -shared -avoid-version -Lsvm
+ pkglib_LTLIBRARIES = libimagery_svm.la
+ libimagery_svm_la_SOURCES =\
+ MLB_Interface.cpp\
+-svm.cpp\
+ svm_grids.cpp\
+ MLB_Interface.h\
+-svm.h\
+ svm_grids.h
+ 
+ libimagery_svm_la_LIBADD = $(top_srcdir)/src/saga_core/saga_api/libsaga_api.la
diff --git a/debian/patches/series b/debian/patches/series
index b2e5377..a6abd65 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
-0002-Remove-references-to-libfire.patch
-0003-Use-debian-version-of-grib2.patch
-0004-Use-qhull-instead-of-triangle.patch
+0001-Remove-references-to-libfire.patch
+0002-Use-debian-version-of-grib2.patch
+0003-Use-qhull-instead-of-triangle.patch
+0004-Use-debian-version-of-libsvm.patch

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


[saga] 03/06: Remove references to libfire

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/master
in repository saga.

commit 1885dda6ce33c827120f639a86f5ec57de970b88
Author: Johan Van de Wauw 
Date:   Tue Jul 15 04:24:25 2014 -0400

Remove references to libfire
---
 configure.ac   | 1 -
 src/modules/simulation/Makefile.am | 2 +-
 src/modules/simulation/Makefile.in | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index afa2cc7..82dab2a 100755
--- a/configure.ac
+++ b/configure.ac
@@ -276,7 +276,6 @@ AC_OUTPUT(Makefile \
src/modules/simulation/sim_cellular_automata/Makefile \
src/modules/simulation/sim_ecosystems_hugget/Makefile \
src/modules/simulation/sim_erosion/Makefile \
-   src/modules/simulation/sim_fire_spreading/Makefile \
src/modules/simulation/sim_hydrology/Makefile \
src/modules/simulation/sim_ihacres/Makefile \
src/modules/statistics/Makefile \
diff --git a/src/modules/simulation/Makefile.am 
b/src/modules/simulation/Makefile.am
index 7ec461d..2f378e2 100644
--- a/src/modules/simulation/Makefile.am
+++ b/src/modules/simulation/Makefile.am
@@ -1 +1 @@
-SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_fire_spreading sim_hydrology sim_ihacres
+SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_hydrology sim_ihacres
diff --git a/src/modules/simulation/Makefile.in 
b/src/modules/simulation/Makefile.in
index 2f58074..7be1b6a 100644
--- a/src/modules/simulation/Makefile.in
+++ b/src/modules/simulation/Makefile.in
@@ -260,7 +260,7 @@ target_alias = @target_alias@
 top_build_prefix = @top_build_prefix@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
-SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_fire_spreading sim_hydrology sim_ihacres
+SUBDIRS = sim_cellular_automata sim_ecosystems_hugget sim_erosion 
sim_hydrology sim_ihacres
 all: all-recursive
 
 .SUFFIXES:

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


[saga] 04/06: Use debian version of grib2

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/master
in repository saga.

commit 5f29d3dfd370b7365681bc1dbc1c91fd1f24294d
Author: Johan Van de Wauw 
Date:   Tue Jul 15 04:28:04 2014 -0400

Use debian version of grib2
---
 src/modules/io/io_grid_grib2/Makefile.am | 50 +---
 1 file changed, 1 insertion(+), 49 deletions(-)

diff --git a/src/modules/io/io_grid_grib2/Makefile.am 
b/src/modules/io/io_grid_grib2/Makefile.am
index 2d6ff24..7e006ae 100644
--- a/src/modules/io/io_grid_grib2/Makefile.am
+++ b/src/modules/io/io_grid_grib2/Makefile.am
@@ -11,57 +11,9 @@ DEF_SAGA   = -D_SAGA_LINUX -D_TYPEDEF_BYTE 
-D_TYPEDEF_WORD -DUSE_JPEG200
 CXX_INCS   = -I$(top_srcdir)/src/saga_core $(LOCAL_INCS)
 AM_CXXFLAGS= -fPIC $(CXX_INCS) $(DEF_SAGA) $(UC_DEFS) $(DBGFLAGS) 
$(GOMPFLAGS)
 #AM_LDFLAGS = -fPIC -shared -avoid-version -lpq -ljasper
-AM_LDFLAGS = -fPIC -shared -avoid-version $(LOCAL_LIBS) -ljasper
+AM_LDFLAGS = -fPIC -shared -avoid-version $(LOCAL_LIBS) -ljasper 
-lgrib2c
 pkglib_LTLIBRARIES = libio_grid_grib2.la
 libio_grid_grib2_la_SOURCES =\
-./g2clib-1.0.4/cmplxpack.c\
-./g2clib-1.0.4/compack.c\
-./g2clib-1.0.4/comunpack.c\
-./g2clib-1.0.4/dec_jpeg2000.c\
-./g2clib-1.0.4/dec_png.c\
-./g2clib-1.0.4/drstemplates.c\
-./g2clib-1.0.4/enc_jpeg2000.c\
-./g2clib-1.0.4/enc_png.c\
-./g2clib-1.0.4/g2_addfield.c\
-./g2clib-1.0.4/g2_addgrid.c\
-./g2clib-1.0.4/g2_addlocal.c\
-./g2clib-1.0.4/g2_create.c\
-./g2clib-1.0.4/g2_free.c\
-./g2clib-1.0.4/g2_getfld.c\
-./g2clib-1.0.4/g2_gribend.c\
-./g2clib-1.0.4/g2_info.c\
-./g2clib-1.0.4/g2_miss.c\
-./g2clib-1.0.4/g2_unpack1.c\
-./g2clib-1.0.4/g2_unpack2.c\
-./g2clib-1.0.4/g2_unpack3.c\
-./g2clib-1.0.4/g2_unpack4.c\
-./g2clib-1.0.4/g2_unpack5.c\
-./g2clib-1.0.4/g2_unpack6.c\
-./g2clib-1.0.4/g2_unpack7.c\
-./g2clib-1.0.4/gbits.c\
-./g2clib-1.0.4/getdim.c\
-./g2clib-1.0.4/getpoly.c\
-./g2clib-1.0.4/gridtemplates.c\
-./g2clib-1.0.4/int_power.c\
-./g2clib-1.0.4/jpcpack.c\
-./g2clib-1.0.4/jpcunpack.c\
-./g2clib-1.0.4/misspack.c\
-./g2clib-1.0.4/mkieee.c\
-./g2clib-1.0.4/pack_gp.c\
-./g2clib-1.0.4/pdstemplates.c\
-./g2clib-1.0.4/pngpack.c\
-./g2clib-1.0.4/pngunpack.c\
-./g2clib-1.0.4/rdieee.c\
-./g2clib-1.0.4/reduce.c\
-./g2clib-1.0.4/seekgb.c\
-./g2clib-1.0.4/simpack.c\
-./g2clib-1.0.4/simunpack.c\
-./g2clib-1.0.4/specpack.c\
-./g2clib-1.0.4/specunpack.c\
-./g2clib-1.0.4/drstemplates.h\
-./g2clib-1.0.4/grib2.h\
-./g2clib-1.0.4/gridtemplates.h\
-./g2clib-1.0.4/pdstemplates.h\
 grib2_import.cpp\
 MLB_Interface.cpp\
 grib2_import.h\

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


[saga] 05/05: Use debian version of libsvm

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/experimental
in repository saga.

commit f4d457e93a5bcdaf47222633ab21a676ab0985c3
Author: Johan Van de Wauw 
Date:   Mon Nov 3 20:38:24 2014 +0100

Use debian version of libsvm
---
 src/modules/imagery/imagery_svm/Makefile.am | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/modules/imagery/imagery_svm/Makefile.am 
b/src/modules/imagery/imagery_svm/Makefile.am
index a92c3bd..8a87973 100644
--- a/src/modules/imagery/imagery_svm/Makefile.am
+++ b/src/modules/imagery/imagery_svm/Makefile.am
@@ -5,16 +5,14 @@ if SAGA_UNICODE
 UC_DEFS = -D_SAGA_UNICODE
 endif
 DEF_SAGA   = -D_SAGA_LINUX -D_TYPEDEF_BYTE -D_TYPEDEF_WORD
-CXX_INCS   = -I$(top_srcdir)/src/saga_core
+CXX_INCS   = -I$(top_srcdir)/src/saga_core -I/usr/include/libsvm
 AM_CXXFLAGS= -fPIC $(CXX_INCS) $(DEF_SAGA) $(UC_DEFS) $(DBGFLAGS) 
$(GOMPFLAGS)
-AM_LDFLAGS = -fPIC -shared -avoid-version
+AM_LDFLAGS = -fPIC -shared -avoid-version -lsvm
 pkglib_LTLIBRARIES = libimagery_svm.la
 libimagery_svm_la_SOURCES =\
 MLB_Interface.cpp\
-svm.cpp\
 svm_grids.cpp\
 MLB_Interface.h\
-svm.h\
 svm_grids.h
 
 libimagery_svm_la_LIBADD = $(top_srcdir)/src/saga_core/saga_api/libsaga_api.la

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


[saga] 02/06: errfunc.c: fix bug, refers to bug #191 Missing format strings

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/master
in repository saga.

commit b121ce441f68a439027dc5fe0618484744b84c37
Author: Volker Wichmann 
Date:   Sun Sep 28 21:04:30 2014 +0200

errfunc.c: fix bug, refers to bug #191 Missing format strings
---
 src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c 
b/src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c
index 959b37f..d229221 100644
--- a/src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c
+++ b/src/modules/grid/grid_filter/geodesic_morph_rec/errfunc.c
@@ -225,7 +225,7 @@ void fehler (int zeile,
   cp4 = cp2;
}
 
-   fprintf (protfile, cp1);
+   fprintf (protfile, "%s", cp1);
 
if (fil -> art == 'E')
{
@@ -415,7 +415,7 @@ void error_message (int zeile,
   cp4 = cp2;
}
 
-   sprintf (fmessage + sl_all, cp1);
+   sprintf (fmessage + sl_all, "%s", cp1);
sl_all = strlen (fmessage);

sl_alt = strlen (*error_list);
@@ -577,7 +577,7 @@ void fehler2 (int zeile,
 
va_end (ap);
 
-   fprintf (protfile, cp1);
+   fprintf (protfile, "%s", cp1);
 
if (fil -> art == 'E')
{
@@ -756,7 +756,7 @@ void fehler3 (int zeile,
 
va_end (ap);
 
-   sprintf (fmessage + sl_all, cp1);
+   sprintf (fmessage + sl_all, "%s", cp1);
sl_all = strlen (fmessage);

sl_alt = strlen (*error_list);

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


[saga] 05/06: Use qhull instead of triangle

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/master
in repository saga.

commit c7736a9568b52b692de1320390403a2ffab2b33b
Author: Johan Van de Wauw 
Date:   Tue Jul 15 04:30:10 2014 -0400

Use qhull instead of triangle
---
 src/modules/grid/grid_gridding/Makefile.am   | 3 +--
 src/modules/grid/grid_gridding/nn/delaunay.c | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/modules/grid/grid_gridding/Makefile.am 
b/src/modules/grid/grid_gridding/Makefile.am
index 75c79c9..bc55004 100644
--- a/src/modules/grid/grid_gridding/Makefile.am
+++ b/src/modules/grid/grid_gridding/Makefile.am
@@ -13,7 +13,7 @@ endif
 DEF_SAGA   = -D_SAGA_LINUX -D_TYPEDEF_BYTE -D_TYPEDEF_WORD
 CXX_INCS   = -I$(top_srcdir)/src/saga_core
 AM_CXXFLAGS= -fPIC $(CXX_INCS) $(DEP_DEFS) $(DEF_SAGA) $(UC_DEFS) 
$(DBGFLAGS) $(GOMPFLAGS)
-AM_LDFLAGS = -fPIC -shared -avoid-version
+AM_LDFLAGS = -fPIC -shared -avoid-version -lqhull
 pkglib_LTLIBRARIES = libgrid_gridding.la
 libgrid_gridding_la_SOURCES =\
 Interpolation.cpp\
@@ -34,7 +34,6 @@ Shepard.cpp\
 ./nn/nnai.c\
 ./nn/nncommon.c\
 ./nn/nnpi.c\
-./nn/triangle.c\
 Interpolation.h\
 Interpolation_AngularDistance.h\
 Interpolation_InverseDistance.h\
diff --git a/src/modules/grid/grid_gridding/nn/delaunay.c 
b/src/modules/grid/grid_gridding/nn/delaunay.c
index dc98875..e2952fa 100644
--- a/src/modules/grid/grid_gridding/nn/delaunay.c
+++ b/src/modules/grid/grid_gridding/nn/delaunay.c
@@ -24,7 +24,7 @@
  *
  */
 
-//#define USE_QHULL
+#define USE_QHULL
 
 #include 
 #include 

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


[saga] annotated tag upstream/2.1.3 created (now 028cb4b)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to annotated tag upstream/2.1.3
in repository saga.

at  028cb4b   (tag)
   tagging  96cc85e5886ce1b7b4125c52bab148ec4403b3c3 (commit)
  replaces  upstream/2.1.2+dfsg
 tagged by  Johan Van de Wauw
on  Fri Oct 31 21:19:58 2014 +0100

- Log -
Upstream version 2.1.3

Johan Van de Wauw (1):
  Imported Upstream version 2.1.3

---

No new revisions were added by this update.

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


[saga] 06/06: Set distribution to unstable

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch patch-queue/master
in repository saga.

commit d7127280daefaca9b2e74a452077ec46b72d589a
Author: Johan Van de Wauw 
Date:   Sun Sep 28 21:05:49 2014 +0200

Set distribution to unstable
---
 debian/changelog | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index 856b8bd..2026a22 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-saga (2.1.2+dfsg-3) UNRELEASED; urgency=medium
+saga (2.1.2+dfsg-3) unstable; urgency=medium
 
   * Use dep-5 style copyright file
   * Enable OpenMP

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


[python-affine] branch master updated (3a3f47a -> f5ae9b8)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch master
in repository python-affine.

  from  3a3f47a   touch changelog timestamp
   new  f5ae9b8   Add test configuration

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/patches/0001-Add-test-configuration.patch | 23 +++
 debian/patches/series|  1 +
 2 files changed, 24 insertions(+)
 create mode 100644 debian/patches/0001-Add-test-configuration.patch
 create mode 100644 debian/patches/series

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


[saga] tag debian/2.1.2+dfsg+2 created (now be925c8)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to tag debian/2.1.2+dfsg+2
in repository saga.

at  be925c8   (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/saga.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


[python-affine] 01/01: Add test configuration

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository python-affine.

commit f5ae9b84a0892885dca5cb9f5faeb5b45a9753df
Author: Johan Van de Wauw 
Date:   Mon Nov 3 09:17:07 2014 +0100

Add test configuration
---
 debian/patches/0001-Add-test-configuration.patch | 23 +++
 debian/patches/series|  1 +
 2 files changed, 24 insertions(+)

diff --git a/debian/patches/0001-Add-test-configuration.patch 
b/debian/patches/0001-Add-test-configuration.patch
new file mode 100644
index 000..ade8af5
--- /dev/null
+++ b/debian/patches/0001-Add-test-configuration.patch
@@ -0,0 +1,23 @@
+From: Johan Van de Wauw 
+Date: Mon, 3 Nov 2014 09:16:46 +0100
+Subject: Add test configuration
+
+---
+ setup.cfg | 8 
+ 1 file changed, 8 insertions(+)
+ create mode 100644 setup.cfg
+
+diff --git a/setup.cfg b/setup.cfg
+new file mode 100644
+index 000..182a031
+--- /dev/null
 b/setup.cfg
+@@ -0,0 +1,8 @@
++[nosetests]
++tests=affine/tests
++nocapture=True
++verbosity=3
++logging-filter=affine
++logging-level=DEBUG
++with-coverage=1
++cover-package=affine
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..b98ad29
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Add-test-configuration.patch

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


[saga] tag debian/2.1.2-3 created (now 4698bb9)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to tag debian/2.1.2-3
in repository saga.

at  4698bb9   (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/saga.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#767972: unblock: ossim/1.8.16-3

2014-11-03 Thread Bas Couwenberg
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ossim

The recent upload to unstable contains only the targeted fix for the
FTBFS reported in #767738.

unblock ossim/1.8.16-4
diff -Nru ossim-1.8.16/debian/changelog ossim-1.8.16/debian/changelog
--- ossim-1.8.16/debian/changelog	2014-11-02 11:44:34.0 +0100
+++ ossim-1.8.16/debian/changelog	2014-11-02 13:33:17.0 +0100
@@ -1,3 +1,11 @@
+ossim (1.8.16-3) unstable; urgency=medium
+
+  * Team upload.
+  * Update geotiff Multi-Arch library path.
+(closes: #767738)
+
+ -- Bas Couwenberg   Sun, 02 Nov 2014 13:33:15 +0100
+
 ossim (1.8.16-2) unstable; urgency=medium
 
   * Removed Geos C++ b-d.
diff -Nru ossim-1.8.16/debian/rules ossim-1.8.16/debian/rules
--- ossim-1.8.16/debian/rules	2014-11-02 11:44:34.0 +0100
+++ ossim-1.8.16/debian/rules	2014-11-02 13:12:44.0 +0100
@@ -3,6 +3,8 @@
 OSSIM_VERSION=$(shell dpkg-parsechangelog|grep Version:|cut -d' ' -f2|cut -d- -f1)
 OSSIM_VERSION_TAG=$(subst .,_,$(OSSIM_VERSION))
 
+DEB_HOST_MULTIARCH?=$(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 CFLAGS += -O0
 OPTFLAG =
@@ -32,7 +34,7 @@
 	   -DGEOTIFF_INCLUDE_DIR=/usr/include/geotiff \
-DCMAKE_MODULE_PATH=$(CURDIR)/CMakeModules \
 	   -DFREETYPE_INCLUDE_DIRS=/usr/include/freetype2 \
-	   -DGEOTIFF_LIBRARY=/usr/lib/libgeotiff.so
+	   -DGEOTIFF_LIBRARY=/usr/lib/$(DEB_HOST_MULTIARCH)/libgeotiff.so
 
 override_dh_auto_configure:
 	[ -d debian/build ] || mkdir debian/build
___
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

[python-affine] branch master updated (f5ae9b8 -> 68fe609)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch master
in repository python-affine.

  from  f5ae9b8   Add test configuration
   new  68fe609   Use python3:Depends for Python 3

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/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[python-affine] 01/01: Use python3:Depends for Python 3

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository python-affine.

commit 68fe6090220164e31a4e7f4d11be4b8990e15d7f
Author: Johan Van de Wauw 
Date:   Mon Nov 3 22:44:56 2014 +0100

Use python3:Depends for Python 3
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index b118d5d..348cd2d 100644
--- a/debian/control
+++ b/debian/control
@@ -31,7 +31,7 @@ Description: Python Library for handling affine 
transformations of the plane
 Package: python3-affine
 Architecture: all
 Depends: ${misc:Depends},
- ${python:Depends}
+ ${python3:Depends}
 Description: Python 3 Library for handling affine transformations of the plane
  This library contains functions for handling affine transformations of the
  plane.

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


[rasterio] 01/01: Fix debian/control: use python3: Depends

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository rasterio.

commit 4a43e11f41f624be20067c9e80848148f20917d7
Author: Johan Van de Wauw 
Date:   Mon Nov 3 22:49:41 2014 +0100

Fix debian/control: use python3: Depends
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 1329108..a9f3bfc 100644
--- a/debian/control
+++ b/debian/control
@@ -42,7 +42,7 @@ Package: python3-rasterio
 Architecture: any
 Depends: ${shlibs:Depends},
  ${misc:Depends},
- ${python:Depends}
+ ${python3:Depends}
 Description: Python 3 API for using geospatial raster data with Numpy
  Rasterio reads and writes geospatial raster datasets.
  .

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


[rasterio] branch master updated (be0564b -> 4a43e11)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch master
in repository rasterio.

  from  be0564b   python:Depends - correct spelling
   new  4a43e11   Fix debian/control: use python3: Depends

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/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[fiona] 01/01: use python3:depends

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository fiona.

commit 225b9117457c9d676e5f5df935e3816f92a12002
Author: Johan Van de Wauw 
Date:   Mon Nov 3 22:50:28 2014 +0100

use python3:depends
---
 debian/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 2aa4460..eb29a9c 100644
--- a/debian/control
+++ b/debian/control
@@ -40,7 +40,7 @@ Description: Python API for reading/writing vector geospatial 
data
 
 Package: python3-fiona
 Architecture: any
-Depends: ${python:Depends},
+Depends: ${python3:Depends},
  ${misc:Depends},
  ${shlibs:Depends}
 Description: Python 3 API for reading/writing vector geospatial data

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


[fiona] branch master updated (64a5005 -> 225b911)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch master
in repository fiona.

  from  64a5005   build manfile during build
   new  225b911   use python3:depends

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/control | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

2014-11-03 Thread Debian FTP Masters
python-affine_1.0.1-1_amd64.changes uploaded successfully to localhost
along with the files:
  python-affine_1.0.1-1.dsc
  python-affine_1.0.1.orig.tar.gz
  python-affine_1.0.1-1.debian.tar.xz
  python-affine_1.0.1-1_all.deb
  python3-affine_1.0.1-1_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


python-affine_1.0.1-1_amd64.changes is NEW

2014-11-03 Thread Debian FTP Masters
binary:python-affine is NEW.
binary:python3-affine is NEW.
source:python-affine is NEW.

Your package has been put into the NEW queue, which requires manual action
from the ftpteam to process. The upload was otherwise valid (it had a good
OpenPGP signature and file hashes are valid), so please be patient.

Packages are routinely processed through to the archive, and do feel
free to browse the NEW queue[1].

If there is an issue with the upload, you will recieve an email from a
member of the ftpteam.

If you have any questions, you may reply to this email.

[1]: https://ftp-master.debian.org/new.html

___
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 qgis_2.6.0-1~exp1_amd64.changes

2014-11-03 Thread Debian FTP Masters
qgis_2.6.0-1~exp1_amd64.changes uploaded successfully to localhost
along with the files:
  qgis_2.6.0-1~exp1.dsc
  qgis_2.6.0.orig.tar.bz2
  qgis_2.6.0-1~exp1.debian.tar.xz
  qgis_2.6.0-1~exp1_amd64.deb
  qgis-common_2.6.0-1~exp1_all.deb
  libqgis-core2.6.0_2.6.0-1~exp1_amd64.deb
  libqgis-gui2.6.0_2.6.0-1~exp1_amd64.deb
  libqgis-analysis2.6.0_2.6.0-1~exp1_amd64.deb
  libqgis-networkanalysis2.6.0_2.6.0-1~exp1_amd64.deb
  libqgisgrass2.6.0_2.6.0-1~exp1_amd64.deb
  libqgispython2.6.0_2.6.0-1~exp1_amd64.deb
  libqgis-customwidgets2.6.0_2.6.0-1~exp1_amd64.deb
  libqgis-dev_2.6.0-1~exp1_amd64.deb
  qgis-plugin-grass_2.6.0-1~exp1_amd64.deb
  qgis-plugin-grass-common_2.6.0-1~exp1_all.deb
  qgis-plugin-globe_2.6.0-1~exp1_amd64.deb
  qgis-plugin-globe-common_2.6.0-1~exp1_all.deb
  python-qgis_2.6.0-1~exp1_amd64.deb
  python-qgis-common_2.6.0-1~exp1_all.deb
  qgis-providers_2.6.0-1~exp1_amd64.deb
  qgis-providers-common_2.6.0-1~exp1_all.deb
  qgis-server_2.6.0-1~exp1_amd64.deb
  qgis-api-doc_2.6.0-1~exp1_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


qgis_2.6.0-1~exp1_amd64.changes is NEW

2014-11-03 Thread Debian FTP Masters
binary:libqgis-analysis2.6.0 is NEW.
binary:libqgis-core2.6.0 is NEW.
binary:libqgis-customwidgets2.6.0 is NEW.
binary:libqgis-gui2.6.0 is NEW.
binary:libqgis-networkanalysis2.6.0 is NEW.
binary:libqgisgrass2.6.0 is NEW.
binary:libqgispython2.6.0 is NEW.
binary:qgis-server is NEW.

Your package has been put into the NEW queue, which requires manual action
from the ftpteam to process. The upload was otherwise valid (it had a good
OpenPGP signature and file hashes are valid), so please be patient.

Packages are routinely processed through to the archive, and do feel
free to browse the NEW queue[1].

If there is an issue with the upload, you will recieve an email from a
member of the ftpteam.

If you have any questions, you may reply to this email.

[1]: https://ftp-master.debian.org/new.html

___
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 geographiclib_1.37-2.1_amd64.changes

2014-11-03 Thread Debian FTP Masters
geographiclib_1.37-2.1_amd64.changes uploaded successfully to localhost
along with the files:
  geographiclib_1.37-2.1.dsc
  geographiclib_1.37-2.1.debian.tar.xz
  geographiclib-tools_1.37-2.1_amd64.deb
  libgeographic13_1.37-2.1_amd64.deb
  libgeographic-dev_1.37-2.1_amd64.deb
  python-geographiclib_1.37-2.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


Bug#766984: geographiclib: fix symbols for mips64(el) and ppc64el

2014-11-03 Thread YunQiang Su
On Mon, 27 Oct 2014 20:06:34 +0800 YunQiang Su  wrote:
> Package: geographiclib
> Version: 1.37-2
>
> libgeographic13's symbol file has an error for mips64(el) and
> a warning for both mips64(el) and ppc64el
>
> diff -Nru geographiclib-1.37/debian/libgeographic13.symbols
> geographiclib-1.37/debian/libgeographic13.symbols
> --- geographiclib-1.37/debian/libgeographic13.symbols 2014-09-30
> 14:10:09.0 +0800
> +++ geographiclib-1.37/debian/libgeographic13.symbols 2034-12-21
> 17:17:57.0 +0800
> @@ -221,7 +221,7 @@
>   _ZN13GeographicLib7Utility3strIcEESsT_i@Base 1.37
>   _ZN13GeographicLib7Utility3strIiEESsT_i@Base 1.37
>   _ZN13GeographicLib7Utility5fractIdEET_RKSs@Base 1.37
> - (arch=armel armhf mips mipsel
> powerpc)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37-1
> + (arch=armel armhf mips mipsel mips64 mips64el powerpc
> ppc64el)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37-1
>   _ZN13GeographicLib7Utility9ParseLineERKSsRSsS3_@Base 1.37
>   _ZN13GeographicLib8Geodesic12SinCosSeriesEbddPKdi@Base 1.37
>   _ZN13GeographicLib8Geodesic3C1fEdPd@Base 1.37
> @@ -440,7 +440,7 @@
>   _ZNSt6vectorItSaItEEaSERKS1_@Base 1.37
>   _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EOS6_S7_@Base 1.37
>   _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_@Base 1.37
> - (arch=!hurd-i386 !i386
> !kfreebsd-i386)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base
> 1.37
> + (arch=!hurd-i386 !i386 !kfreebsd-i386 !mips64
> !mips64el)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base
> 1.37
>   _ZTIN13GeographicLib13GeographicErrE@Base 1.37
>   _ZTSN13GeographicLib13GeographicErrE@Base 1.37
>   _ZTVN13GeographicLib13GeographicErrE@Base 1.37
>

I NMUed this package with the attached patch.

> --
> YunQiang Su
>
>


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

avce00 2.0.0-3 MIGRATED to testing

2014-11-03 Thread Debian testing watch
FYI: The status of the avce00 source package
in Debian's testing distribution has changed.

  Previous version: 2.0.0-2
  Current version:  2.0.0-3

-- 
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#766984: geographiclib: fix symbols for mips64(el) and ppc64el

2014-11-03 Thread Ross Gammon
On 11/03/2014 10:43 AM, YunQiang Su wrote:

>> 
> 
> I NMUed this package with the attached patch.
> 
>> -- YunQiang Su
>> 

Thanks for taking care of this.

I was away for a few days, and I did not help the team by leaving a
half-finished update to the latest version (1.38) on alioth.

I had been working on fixing some issues with the symbols and some
other lintian warnings, but found an unexpected ABI breakage without
SONAME bump. I hit the pause button when I released it was too late
for Jessie.

Thanks again.

Ross

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


[qgis] tag debian/2.6.0-1.exp1 created (now d9b1a4d)

2014-11-03 Thread Bas Couwenberg
This is an automated email from the git hooks/post-receive script.

sebastic-guest pushed a change to tag debian/2.6.0-1.exp1
in repository qgis.

at  d9b1a4d   (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/qgis.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


[geographiclib] 06/12: Update symbols for other ports

2014-11-03 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 geographiclib.

commit 5c1ed7c438faeb966754b8b13c1b011330c734da
Author: Ross Gammon 
Date:   Mon Oct 6 20:28:22 2014 +0200

Update symbols for other ports
---
 debian/libgeographic13.symbols | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/debian/libgeographic13.symbols b/debian/libgeographic13.symbols
index 6e26791..379bf2e 100644
--- a/debian/libgeographic13.symbols
+++ b/debian/libgeographic13.symbols
@@ -221,7 +221,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZN13GeographicLib7Utility3strIcEESsT_i@Base 1.37
  _ZN13GeographicLib7Utility3strIiEESsT_i@Base 1.37
  _ZN13GeographicLib7Utility5fractIdEET_RKSs@Base 1.37
- (arch=armel armhf mips mipsel 
powerpc)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37
+ (arch=armel armhf m68k mips mipsel 
powerpc)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37
  _ZN13GeographicLib7Utility9ParseLineERKSsRSsS3_@Base 1.37
  _ZN13GeographicLib8Geodesic12SinCosSeriesEbddPKdi@Base 1.37
  _ZN13GeographicLib8Geodesic3C1fEdPd@Base 1.37
@@ -362,7 +362,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZNK13GeographicLib23TransverseMercatorExact9sigmainv0EddRdS1_@Base 1.37
  _ZNK13GeographicLib5Geoid10CacheClearEv@Base 1.37
  _ZNK13GeographicLib5Geoid6heightEddbRdS1_@Base 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNK13GeographicLib5Geoid6rawvalEii@Base 1.37
+ (arch=armel armhf hurd-i386 i386 kfreebsd-i386 m68k mips mipsel 
powerpc)_ZNK13GeographicLib5Geoid6rawvalEii@Base 1.37
  _ZNK13GeographicLib5Geoid9CacheAreaE@Base 1.37
  _ZNK13GeographicLib5Rhumb10DIsometricEdd@Base 1.37
  _ZNK13GeographicLib5Rhumb11DRectifyingEdd@Base 1.37
@@ -423,24 +423,24 @@ libGeographic.so.13 libgeographic13 #MINVER#
  
_ZNSt6vectorIN13GeographicLib17SphericalHarmonicESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_@Base
 1.37
  _ZNSt6vectorIS_IdSaIdEESaIS1_EED1Ev@Base 1.37
  _ZNSt6vectorIS_IdSaIdEESaIS1_EED2Ev@Base 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel powerpc 
sparc)_ZNSt6vectorIS_ItSaItEESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_@Base
 1.37
- (arch=!armel !armhf !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc 
!sparc)_ZNSt6vectorIS_ItSaItEESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEmRKS1_@Base
 1.37
+ (arch=armel armhf hppa hurd-i386 i386 kfreebsd-i386 m68k mips mipsel powerpc 
sh4 sparc 
x32)_ZNSt6vectorIS_ItSaItEESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_@Base
 1.37
+ (arch=!armel !armhf !hurd-i386 !hppa !i386 !kfreebsd-i386 !m68k !mips !mipsel 
!powerpc !sh4 !sparc 
!x32)_ZNSt6vectorIS_ItSaItEESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEmRKS1_@Base
 1.37
  _ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIISsEEEvDpOT_@Base 1.37
  _ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIJSsEEEvDpOT_@Base 1.37
  _ZNSt6vectorIdSaIdEE12emplace_backIIdEEEvDpOT_@Base 1.37
  _ZNSt6vectorIdSaIdEE12emplace_backIJdEEEvDpOT_@Base 1.37
- (arch=!armel !armhf !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc 
!sparc)_ZNSt6vectorIdSaIdEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPdS1_EEmRKd@Base
 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel powerpc 
sparc)_ZNSt6vectorIdSaIdEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPdS1_EEjRKd@Base
 1.37
+ (arch=!armel !armhf !hurd-i386 !hppa !i386 !kfreebsd-i386 !m68k !mips !mipsel 
!powerpc !sh4 !sparc 
!x32)_ZNSt6vectorIdSaIdEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPdS1_EEmRKd@Base
 1.37
+ (arch=armel armhf hppa hurd-i386 i386 kfreebsd-i386 m68k mips mipsel powerpc 
sh4 sparc 
z32)_ZNSt6vectorIdSaIdEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPdS1_EEjRKd@Base
 1.37
  _ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIIRKdEEEvDpOT_@Base 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIIdEEEvDpOT_@Base 1.37
+ (arch=armel armhf hurd-i386 i386 kfreebsd-i386 m68k mips mipsel 
powerpc)_ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIIdEEEvDpOT_@Base 1.37
  _ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIJRKdEEEvDpOT_@Base 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIJdEEEvDpOT_@Base 1.37
+ (arch=armel armhf hurd-i386 i386 kfreebsd-i386 m68k mips mipsel 
powerpc)_ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIJdEEEvDpOT_@Base 1.37
  _ZNSt6vectorIdSaIdEED1Ev@Base 1.37
  _ZNSt6vectorIdSaIdEED2Ev@Base 1.37
  _ZNSt6vectorItSaItEEaSERKS1_@Base 1.37
  _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EOS6_S7_@Base 1.37
  _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_@Base 1.37
- (arch=!hurd-i386 !i386 
!kfreebsd-i386)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.37
+ (arch=!hppa !hurd-i386 !i386 !kfreebsd-i386 
!sh4)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.37
  _ZTI

[geographiclib] 09/12: Update symbols file with new symbols

2014-11-03 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 geographiclib.

commit db5f711b81b48fe41de1b9eb88e4a9e8b4d5184b
Author: Ross Gammon 
Date:   Tue Oct 28 22:17:02 2014 +0100

Update symbols file with new symbols
---
 debian/libgeographic13.symbols | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/libgeographic13.symbols b/debian/libgeographic13.symbols
index 379bf2e..d576727 100644
--- a/debian/libgeographic13.symbols
+++ b/debian/libgeographic13.symbols
@@ -363,6 +363,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZNK13GeographicLib5Geoid10CacheClearEv@Base 1.37
  _ZNK13GeographicLib5Geoid6heightEddbRdS1_@Base 1.37
  (arch=armel armhf hurd-i386 i386 kfreebsd-i386 m68k mips mipsel 
powerpc)_ZNK13GeographicLib5Geoid6rawvalEii@Base 1.37
+ (arch=amd64)_ZNK13GeographicLib5Geoid6rawvalEii@Base 1.38
  _ZNK13GeographicLib5Geoid9CacheAreaE@Base 1.37
  _ZNK13GeographicLib5Rhumb10DIsometricEdd@Base 1.37
  _ZNK13GeographicLib5Rhumb11DRectifyingEdd@Base 1.37
@@ -441,6 +442,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EOS6_S7_@Base 1.37
  _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_@Base 1.37
  (arch=!hppa !hurd-i386 !i386 !kfreebsd-i386 
!sh4)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.37
+ (arch=!amd64)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.38
  _ZTIN13GeographicLib13GeographicErrE@Base 1.37
  _ZTSN13GeographicLib13GeographicErrE@Base 1.37
  _ZTVN13GeographicLib13GeographicErrE@Base 1.37

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


[geographiclib] branch master updated (3710b32 -> 34fd1f8)

2014-11-03 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 geographiclib.

  from  3710b32   Set distribution to unstable
   new  cccf5cb   Imported Upstream version 1.38
   new  129e5ce   Merge tag 'upstream/1.38'
   new  9546489   Fix lintian error about debian version in symbols file
   new  075596d   Refresh patches
   new  439b360   Update copyright dates
   new  5c1ed7c   Update symbols for other ports
   new  00d1d0a   Add gbp.conf file
   new  1cf6451   Update changelog
   new  db5f711   Update symbols file with new symbols
   new  1a5b7f3   Install new manuals for download scripts
   new  5727015   Update changelog
   new  34fd1f8   Incorporate nmu into v1.38 update

The 12 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:
 CMakeLists.txt|  43 +-
 Makefile.am   |   2 +-
 Makefile.in   |   2 +-
 NEWS  |  21 +-
 README.md |   4 +
 cmake/CMakeLists.txt  |   8 +-
 cmake/project-config.cmake.in |   2 +-
 config.guess  | 313 --
 config.sub|  56 +-
 configure |  24 +-
 configure.ac  |   6 +-
 debian/changelog  |  20 +
 debian/copyright  |   2 +-
 debian/gbp.conf   |  16 +
 debian/geographiclib-tools.install|   1 +
 debian/libgeographic13.symbols|  20 +-
 debian/patches/privacy.patch  |  28 -
 doc/GeographicLib.dox | 668 --
 doc/Makefile.am   |  12 +
 doc/Makefile.in   |  12 +
 doc/NETGeographicLib.dox  |   2 +-
 doc/scripts/GeographicLib/DMS.js  |   3 +-
 doc/scripts/geod-calc.html|   6 +-
 doc/scripts/geod-google-instructions.html |   6 +-
 dotnet/NETGeographicLib/CMakeLists.txt|  30 +-
 dotnet/NETGeographicLib/NormalGravity.h   |   2 -
 dotnet/examples/ManagedCPP/CMakeLists.txt |   2 +-
 dotnet/examples/ManagedCPP/example-Rhumb.cpp  |   3 +-
 dotnet/examples/ManagedCPP/example-RhumbLine.cpp  |   2 +-
 dotnet/examples/ManagedCPP/example-UTMUPS.cpp |   2 +-
 examples/CMakeLists.txt   |  12 -
 include/GeographicLib/AlbersEqualArea.hpp |   2 +-
 include/GeographicLib/Config.h|   4 +-
 include/GeographicLib/Ellipsoid.hpp   |   4 +-
 include/GeographicLib/EllipticFunction.hpp|   8 +-
 include/GeographicLib/GeoCoords.hpp   |   2 +
 include/GeographicLib/Geocentric.hpp  |   2 +-
 include/GeographicLib/Geodesic.hpp|   2 +-
 include/GeographicLib/GeodesicExact.hpp   |   2 +-
 include/GeographicLib/Geoid.hpp   |   3 +-
 include/GeographicLib/LambertConformalConic.hpp   |   2 +-
 include/GeographicLib/MGRS.hpp|   2 +-
 include/GeographicLib/Math.hpp|   2 +-
 include/GeographicLib/OSGB.hpp|   2 +-
 include/GeographicLib/PolarStereographic.hpp  |   2 +-
 include/GeographicLib/TransverseMercator.hpp  |   2 +-
 include/GeographicLib/TransverseMercatorExact.hpp |   2 +-
 include/GeographicLib/UTMUPS.hpp  |   2 +-
 man/CMakeLists.txt|  14 +
 man/CartConvert.1 |   2 +-
 man/CartConvert.usage |   2 +-
 man/ConicProj.1   |   2 +-
 man/ConicProj.usage   |   2 +-
 man/GeoConvert.1  |   2 +-
 man/GeoConvert.usage  |   2 +-
 man/GeodSolve.1   |   2 +-
 man/GeodSolve.usage   |   2 +-
 man/GeodesicProj.1|   2 +-
 man/GeodesicProj.usage|   2 +-
 man/GeoidEval.1   |   2 +-
 man/GeoidEval.usage   |   2 +-
 man/Gravity.1 |   2 +-
 man/Gravity.usage |   2 +-
 man/MagneticField.1   |   2 +-
 man/MagneticField.usage   |   2 +-
 man/Makefile.am

[geographiclib] 03/12: Fix lintian error about debian version in symbols file

2014-11-03 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 geographiclib.

commit 954648929e470d4278f090ca07c7f8f2fb1e353a
Author: Ross Gammon 
Date:   Mon Oct 6 19:05:39 2014 +0200

Fix lintian error about debian version in symbols file
---
 debian/libgeographic13.symbols | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/debian/libgeographic13.symbols b/debian/libgeographic13.symbols
index 042ee56..6e26791 100644
--- a/debian/libgeographic13.symbols
+++ b/debian/libgeographic13.symbols
@@ -221,7 +221,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZN13GeographicLib7Utility3strIcEESsT_i@Base 1.37
  _ZN13GeographicLib7Utility3strIiEESsT_i@Base 1.37
  _ZN13GeographicLib7Utility5fractIdEET_RKSs@Base 1.37
- (arch=armel armhf mips mipsel 
powerpc)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37-1
+ (arch=armel armhf mips mipsel 
powerpc)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37
  _ZN13GeographicLib7Utility9ParseLineERKSsRSsS3_@Base 1.37
  _ZN13GeographicLib8Geodesic12SinCosSeriesEbddPKdi@Base 1.37
  _ZN13GeographicLib8Geodesic3C1fEdPd@Base 1.37
@@ -362,7 +362,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZNK13GeographicLib23TransverseMercatorExact9sigmainv0EddRdS1_@Base 1.37
  _ZNK13GeographicLib5Geoid10CacheClearEv@Base 1.37
  _ZNK13GeographicLib5Geoid6heightEddbRdS1_@Base 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNK13GeographicLib5Geoid6rawvalEii@Base 1.37-1
+ (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNK13GeographicLib5Geoid6rawvalEii@Base 1.37
  _ZNK13GeographicLib5Geoid9CacheAreaE@Base 1.37
  _ZNK13GeographicLib5Rhumb10DIsometricEdd@Base 1.37
  _ZNK13GeographicLib5Rhumb11DRectifyingEdd@Base 1.37
@@ -423,18 +423,18 @@ libGeographic.so.13 libgeographic13 #MINVER#
  
_ZNSt6vectorIN13GeographicLib17SphericalHarmonicESaIS1_EE19_M_emplace_back_auxIJS1_EEEvDpOT_@Base
 1.37
  _ZNSt6vectorIS_IdSaIdEESaIS1_EED1Ev@Base 1.37
  _ZNSt6vectorIS_IdSaIdEESaIS1_EED2Ev@Base 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel powerpc 
sparc)_ZNSt6vectorIS_ItSaItEESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_@Base
 1.37-1
+ (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel powerpc 
sparc)_ZNSt6vectorIS_ItSaItEESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEjRKS1_@Base
 1.37
  (arch=!armel !armhf !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc 
!sparc)_ZNSt6vectorIS_ItSaItEESaIS1_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS1_S3_EEmRKS1_@Base
 1.37
  _ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIISsEEEvDpOT_@Base 1.37
  _ZNSt6vectorISsSaISsEE19_M_emplace_back_auxIJSsEEEvDpOT_@Base 1.37
  _ZNSt6vectorIdSaIdEE12emplace_backIIdEEEvDpOT_@Base 1.37
  _ZNSt6vectorIdSaIdEE12emplace_backIJdEEEvDpOT_@Base 1.37
  (arch=!armel !armhf !hurd-i386 !i386 !kfreebsd-i386 !mips !mipsel !powerpc 
!sparc)_ZNSt6vectorIdSaIdEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPdS1_EEmRKd@Base
 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel powerpc 
sparc)_ZNSt6vectorIdSaIdEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPdS1_EEjRKd@Base
 1.37-1
+ (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel powerpc 
sparc)_ZNSt6vectorIdSaIdEE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPdS1_EEjRKd@Base
 1.37
  _ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIIRKdEEEvDpOT_@Base 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIIdEEEvDpOT_@Base 1.37-1
+ (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIIdEEEvDpOT_@Base 1.37
  _ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIJRKdEEEvDpOT_@Base 1.37
- (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIJdEEEvDpOT_@Base 1.37-1
+ (arch=armel armhf hurd-i386 i386 kfreebsd-i386 mips mipsel 
powerpc)_ZNSt6vectorIdSaIdEE19_M_emplace_back_auxIJdEEEvDpOT_@Base 1.37
  _ZNSt6vectorIdSaIdEED1Ev@Base 1.37
  _ZNSt6vectorIdSaIdEED2Ev@Base 1.37
  _ZNSt6vectorItSaItEEaSERKS1_@Base 1.37

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


[geographiclib] 12/12: Incorporate nmu into v1.38 update

2014-11-03 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 geographiclib.

commit 34fd1f88e6df761de6ec189e4d21a3c8fe00790e
Author: Ross Gammon 
Date:   Mon Nov 3 20:01:22 2014 +0100

Incorporate nmu into v1.38 update
---
 debian/changelog   | 7 +++
 debian/libgeographic13.symbols | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 0b1d8fa..9e23e7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,6 +11,13 @@ geographiclib (1.38-1) UNRELEASED; urgency=medium
 
  -- Ross Gammon   Mon, 06 Oct 2014 20:29:10 +0200
 
+geographiclib (1.37-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix symbols file for mips64(el) and ppc64el (Closes: #766984).
+
+ -- YunQiang Su   Mon, 03 Nov 2014 09:15:36 +
+
 geographiclib (1.37-2) unstable; urgency=medium
 
   * Update symbols file to fix FTBFS on 32 bit arches (Closes: #762485)
diff --git a/debian/libgeographic13.symbols b/debian/libgeographic13.symbols
index d576727..e81d14c 100644
--- a/debian/libgeographic13.symbols
+++ b/debian/libgeographic13.symbols
@@ -221,7 +221,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZN13GeographicLib7Utility3strIcEESsT_i@Base 1.37
  _ZN13GeographicLib7Utility3strIiEESsT_i@Base 1.37
  _ZN13GeographicLib7Utility5fractIdEET_RKSs@Base 1.37
- (arch=armel armhf m68k mips mipsel 
powerpc)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37
+ (arch=armel armhf m68k mips mipsel mips64 mips64el powerpc 
ppc64el)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37
  _ZN13GeographicLib7Utility9ParseLineERKSsRSsS3_@Base 1.37
  _ZN13GeographicLib8Geodesic12SinCosSeriesEbddPKdi@Base 1.37
  _ZN13GeographicLib8Geodesic3C1fEdPd@Base 1.37
@@ -441,7 +441,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZNSt6vectorItSaItEEaSERKS1_@Base 1.37
  _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EOS6_S7_@Base 1.37
  _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_@Base 1.37
- (arch=!hppa !hurd-i386 !i386 !kfreebsd-i386 
!sh4)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.37
+ (arch=!hppa !hurd-i386 !i386 !kfreebsd-i386 !mips64 !mips64el 
!sh4)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.37
  (arch=!amd64)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.38
  _ZTIN13GeographicLib13GeographicErrE@Base 1.37
  _ZTSN13GeographicLib13GeographicErrE@Base 1.37

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


[geographiclib] branch pristine-tar updated (d1b34d5 -> 78d7420)

2014-11-03 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a change to branch pristine-tar
in repository geographiclib.

  from  d1b34d5   Merge branch 'pristine-tar' of 
git+ssh://git.debian.org/git/pkg-grass/geographiclib into pristine-tar
   new  78d7420   pristine-tar data for geographiclib_1.38.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:
 geographiclib_1.38.orig.tar.gz.delta | Bin 0 -> 35799 bytes
 geographiclib_1.38.orig.tar.gz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 geographiclib_1.38.orig.tar.gz.delta
 create mode 100644 geographiclib_1.38.orig.tar.gz.id

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


[geographiclib] 01/01: Incorporate symbols fix nmu

2014-11-03 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch nmu
in repository geographiclib.

commit 10c9b5d96ba22db9b382b3baa77d436003a82bea
Author: Ross Gammon 
Date:   Mon Nov 3 19:49:42 2014 +0100

Incorporate symbols fix nmu
---
 debian/changelog   | 7 +++
 debian/libgeographic13.symbols | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 467df0f..5ceab14 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+geographiclib (1.37-2.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix symbols file for mips64(el) and ppc64el (Closes: #766984).
+
+ -- YunQiang Su   Mon, 03 Nov 2014 09:15:36 +
+
 geographiclib (1.37-2) unstable; urgency=medium
 
   * Update symbols file to fix FTBFS on 32 bit arches (Closes: #762485)
diff --git a/debian/libgeographic13.symbols b/debian/libgeographic13.symbols
index 042ee56..a862367 100644
--- a/debian/libgeographic13.symbols
+++ b/debian/libgeographic13.symbols
@@ -221,7 +221,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZN13GeographicLib7Utility3strIcEESsT_i@Base 1.37
  _ZN13GeographicLib7Utility3strIiEESsT_i@Base 1.37
  _ZN13GeographicLib7Utility5fractIdEET_RKSs@Base 1.37
- (arch=armel armhf mips mipsel 
powerpc)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37-1
+ (arch=armel armhf mips mipsel mips64 mips64el powerpc 
ppc64el)_ZN13GeographicLib7Utility6lookupERKSsc@Base 1.37-1
  _ZN13GeographicLib7Utility9ParseLineERKSsRSsS3_@Base 1.37
  _ZN13GeographicLib8Geodesic12SinCosSeriesEbddPKdi@Base 1.37
  _ZN13GeographicLib8Geodesic3C1fEdPd@Base 1.37
@@ -440,7 +440,7 @@ libGeographic.so.13 libgeographic13 #MINVER#
  _ZNSt6vectorItSaItEEaSERKS1_@Base 1.37
  _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EOS6_S7_@Base 1.37
  _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_@Base 1.37
- (arch=!hurd-i386 !i386 
!kfreebsd-i386)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.37
+ (arch=!hurd-i386 !i386 !kfreebsd-i386 !mips64 
!mips64el)_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_@Base 1.37
  _ZTIN13GeographicLib13GeographicErrE@Base 1.37
  _ZTSN13GeographicLib13GeographicErrE@Base 1.37
  _ZTVN13GeographicLib13GeographicErrE@Base 1.37

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


[geographiclib] 02/12: Merge tag 'upstream/1.38'

2014-11-03 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 geographiclib.

commit 129e5ce6db4cace90c4fa4598e7eaa088daf2173
Merge: 3710b32 cccf5cb
Author: Ross Gammon 
Date:   Sun Oct 5 19:48:44 2014 +0200

Merge tag 'upstream/1.38'

Upstream version 1.38

# gpg: Signature made Sun 05 Oct 2014 07:48:22 PM CEST
# gpg:using RSA key 0x733E6BF93CE8F6D9
# gpg: Good signature from "Ross Gammon (Rosco) "
# Primary key fingerprint: FBEE 0190 904F 1EA0 BA6A  300E 53FE 7BBD A689 
10FC
#  Subkey fingerprint: 7AEE BC7A 44AB 8B90 5CA7  8FC6 733E 6BF9 3CE8 
F6D9

 CMakeLists.txt|  43 +-
 Makefile.am   |   2 +-
 Makefile.in   |   2 +-
 NEWS  |  21 +-
 README.md |   4 +
 cmake/CMakeLists.txt  |   8 +-
 cmake/project-config.cmake.in |   2 +-
 config.guess  | 313 --
 config.sub|  56 +-
 configure |  24 +-
 configure.ac  |   6 +-
 doc/GeographicLib.dox | 668 --
 doc/Makefile.am   |  12 +
 doc/Makefile.in   |  12 +
 doc/NETGeographicLib.dox  |   2 +-
 doc/scripts/GeographicLib/DMS.js  |   3 +-
 doc/scripts/geod-calc.html|   6 +-
 doc/scripts/geod-google-instructions.html |   6 +-
 dotnet/NETGeographicLib/CMakeLists.txt|  30 +-
 dotnet/NETGeographicLib/NormalGravity.h   |   2 -
 dotnet/examples/ManagedCPP/CMakeLists.txt |   2 +-
 dotnet/examples/ManagedCPP/example-Rhumb.cpp  |   3 +-
 dotnet/examples/ManagedCPP/example-RhumbLine.cpp  |   2 +-
 dotnet/examples/ManagedCPP/example-UTMUPS.cpp |   2 +-
 examples/CMakeLists.txt   |  12 -
 include/GeographicLib/AlbersEqualArea.hpp |   2 +-
 include/GeographicLib/Config.h|   4 +-
 include/GeographicLib/Ellipsoid.hpp   |   4 +-
 include/GeographicLib/EllipticFunction.hpp|   8 +-
 include/GeographicLib/GeoCoords.hpp   |   2 +
 include/GeographicLib/Geocentric.hpp  |   2 +-
 include/GeographicLib/Geodesic.hpp|   2 +-
 include/GeographicLib/GeodesicExact.hpp   |   2 +-
 include/GeographicLib/Geoid.hpp   |   3 +-
 include/GeographicLib/LambertConformalConic.hpp   |   2 +-
 include/GeographicLib/MGRS.hpp|   2 +-
 include/GeographicLib/Math.hpp|   2 +-
 include/GeographicLib/OSGB.hpp|   2 +-
 include/GeographicLib/PolarStereographic.hpp  |   2 +-
 include/GeographicLib/TransverseMercator.hpp  |   2 +-
 include/GeographicLib/TransverseMercatorExact.hpp |   2 +-
 include/GeographicLib/UTMUPS.hpp  |   2 +-
 man/CMakeLists.txt|  14 +
 man/CartConvert.1 |   2 +-
 man/CartConvert.usage |   2 +-
 man/ConicProj.1   |   2 +-
 man/ConicProj.usage   |   2 +-
 man/GeoConvert.1  |   2 +-
 man/GeoConvert.usage  |   2 +-
 man/GeodSolve.1   |   2 +-
 man/GeodSolve.usage   |   2 +-
 man/GeodesicProj.1|   2 +-
 man/GeodesicProj.usage|   2 +-
 man/GeoidEval.1   |   2 +-
 man/GeoidEval.usage   |   2 +-
 man/Gravity.1 |   2 +-
 man/Gravity.usage |   2 +-
 man/MagneticField.1   |   2 +-
 man/MagneticField.usage   |   2 +-
 man/Makefile.am   |  38 +-
 man/Makefile.in   | 103 +++-
 man/Planimeter.1  |   2 +-
 man/Planimeter.usage  |   2 +-
 man/RhumbSolve.1  |   2 +-
 man/RhumbSolve.usage  |   2 +-
 man/TransverseMercatorProj.1  |   2 +-
 man/TransverseMercatorProj.usage  |   2 +-
 man/dummy.usage.in|   2 +-
 man/script.8.in   |  17 +
 matlab/CMakeLists.txt |   2 +-
 matlab/Makefile.am|   5 +-
 matlab/Makefile.in

[geographiclib] tag debian/1.37-2.1 created (now 10c9b5d)

2014-11-03 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a change to tag debian/1.37-2.1
in repository geographiclib.

at  10c9b5d   (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/geographiclib.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


[geographiclib] branch nmu created (now 10c9b5d)

2014-11-03 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a change to branch nmu
in repository geographiclib.

at  10c9b5d   Incorporate symbols fix nmu

This branch includes the following new commits:

   new  10c9b5d   Incorporate symbols fix nmu

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.


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


[geographiclib] 08/12: Update changelog

2014-11-03 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 geographiclib.

commit 1cf64515f77fc46a10c43c0d521ed2352a0c00a0
Author: Ross Gammon 
Date:   Mon Oct 6 20:33:54 2014 +0200

Update changelog
---
 debian/changelog | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 467df0f..dd4ba85 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+geographiclib (1.38-1) UNRELEASED; urgency=medium
+
+  * Imported Upstream version 1.38
+  * Fix lintian error about debian version in symbols file
+  * Refresh patches
+  * Update copyright dates
+  * Update symbols for other ports
+  * Add gbp.conf file
+
+ -- Ross Gammon   Mon, 06 Oct 2014 20:29:10 +0200
+
 geographiclib (1.37-2) unstable; urgency=medium
 
   * Update symbols file to fix FTBFS on 32 bit arches (Closes: #762485)

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


[geographiclib] branch upstream updated (39112a0 -> cccf5cb)

2014-11-03 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a change to branch upstream
in repository geographiclib.

  from  39112a0   Imported Upstream version 1.37
   new  cccf5cb   Imported Upstream version 1.38

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:
 CMakeLists.txt|  43 +-
 Makefile.am   |   2 +-
 Makefile.in   |   2 +-
 NEWS  |  21 +-
 README.md |   4 +
 cmake/CMakeLists.txt  |   8 +-
 cmake/project-config.cmake.in |   2 +-
 config.guess  | 313 --
 config.sub|  56 +-
 configure |  24 +-
 configure.ac  |   6 +-
 doc/GeographicLib.dox | 668 --
 doc/Makefile.am   |  12 +
 doc/Makefile.in   |  12 +
 doc/NETGeographicLib.dox  |   2 +-
 doc/scripts/GeographicLib/DMS.js  |   3 +-
 doc/scripts/geod-calc.html|   6 +-
 doc/scripts/geod-google-instructions.html |   6 +-
 dotnet/NETGeographicLib/CMakeLists.txt|  30 +-
 dotnet/NETGeographicLib/NormalGravity.h   |   2 -
 dotnet/examples/ManagedCPP/CMakeLists.txt |   2 +-
 dotnet/examples/ManagedCPP/example-Rhumb.cpp  |   3 +-
 dotnet/examples/ManagedCPP/example-RhumbLine.cpp  |   2 +-
 dotnet/examples/ManagedCPP/example-UTMUPS.cpp |   2 +-
 examples/CMakeLists.txt   |  12 -
 include/GeographicLib/AlbersEqualArea.hpp |   2 +-
 include/GeographicLib/Config.h|   4 +-
 include/GeographicLib/Ellipsoid.hpp   |   4 +-
 include/GeographicLib/EllipticFunction.hpp|   8 +-
 include/GeographicLib/GeoCoords.hpp   |   2 +
 include/GeographicLib/Geocentric.hpp  |   2 +-
 include/GeographicLib/Geodesic.hpp|   2 +-
 include/GeographicLib/GeodesicExact.hpp   |   2 +-
 include/GeographicLib/Geoid.hpp   |   3 +-
 include/GeographicLib/LambertConformalConic.hpp   |   2 +-
 include/GeographicLib/MGRS.hpp|   2 +-
 include/GeographicLib/Math.hpp|   2 +-
 include/GeographicLib/OSGB.hpp|   2 +-
 include/GeographicLib/PolarStereographic.hpp  |   2 +-
 include/GeographicLib/TransverseMercator.hpp  |   2 +-
 include/GeographicLib/TransverseMercatorExact.hpp |   2 +-
 include/GeographicLib/UTMUPS.hpp  |   2 +-
 man/CMakeLists.txt|  14 +
 man/CartConvert.1 |   2 +-
 man/CartConvert.usage |   2 +-
 man/ConicProj.1   |   2 +-
 man/ConicProj.usage   |   2 +-
 man/GeoConvert.1  |   2 +-
 man/GeoConvert.usage  |   2 +-
 man/GeodSolve.1   |   2 +-
 man/GeodSolve.usage   |   2 +-
 man/GeodesicProj.1|   2 +-
 man/GeodesicProj.usage|   2 +-
 man/GeoidEval.1   |   2 +-
 man/GeoidEval.usage   |   2 +-
 man/Gravity.1 |   2 +-
 man/Gravity.usage |   2 +-
 man/MagneticField.1   |   2 +-
 man/MagneticField.usage   |   2 +-
 man/Makefile.am   |  38 +-
 man/Makefile.in   | 103 +++-
 man/Planimeter.1  |   2 +-
 man/Planimeter.usage  |   2 +-
 man/RhumbSolve.1  |   2 +-
 man/RhumbSolve.usage  |   2 +-
 man/TransverseMercatorProj.1  |   2 +-
 man/TransverseMercatorProj.usage  |   2 +-
 man/dummy.usage.in|   2 +-
 man/script.8.in   |  17 +
 matlab/CMakeLists.txt |   2 +-
 matlab/Makefile.am|   5 +-
 matlab/Makefile.in|   5 +-
 matlab/gedistance.m   | 108 
 matlab/gedoc.m| 129 +
 matlab/geoddoc.m   

[geographiclib] 07/12: Add gbp.conf file

2014-11-03 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 geographiclib.

commit 00d1d0afd8a79e89a582e0998f9b9c9e4a88d0f4
Author: Ross Gammon 
Date:   Mon Oct 6 20:32:08 2014 +0200

Add gbp.conf file
---
 debian/gbp.conf | 16 
 1 file changed, 16 insertions(+)

diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 000..21d0417
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,16 @@
+[DEFAULT]
+
+# The default name for the upstream branch is "upstream".
+# Change it if the name is different (for instance, "master").
+upstream-branch = upstream
+
+# The default name for the Debian branch is "master".
+# Change it if the name is different (for instance, "debian/unstable").
+debian-branch = master
+
+# git-import-orig uses the following names for the upstream tags.
+# Change the value if you are not using git-import-orig
+upstream-tag = upstream/%(version)s
+
+# Always use pristine-tar.
+pristine-tar = True

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


[geographiclib] 01/01: pristine-tar data for geographiclib_1.38.orig.tar.gz

2014-11-03 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a commit to branch pristine-tar
in repository geographiclib.

commit 78d7420b379311aabc9025009447a27696f5164b
Author: Ross Gammon 
Date:   Sun Oct 5 19:48:22 2014 +0200

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

diff --git a/geographiclib_1.38.orig.tar.gz.delta 
b/geographiclib_1.38.orig.tar.gz.delta
new file mode 100644
index 000..e63cbbe
Binary files /dev/null and b/geographiclib_1.38.orig.tar.gz.delta differ
diff --git a/geographiclib_1.38.orig.tar.gz.id 
b/geographiclib_1.38.orig.tar.gz.id
new file mode 100644
index 000..a193c20
--- /dev/null
+++ b/geographiclib_1.38.orig.tar.gz.id
@@ -0,0 +1 @@
+7115b01a29104a009396b15b5e4e49965f295756

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


[geographiclib] 04/12: Refresh patches

2014-11-03 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 geographiclib.

commit 075596d9a1fcd50812539932a4d297912e7918f3
Author: Ross Gammon 
Date:   Mon Oct 6 19:54:37 2014 +0200

Refresh patches

A couple were applied upstream
---
 debian/patches/privacy.patch | 28 
 1 file changed, 28 deletions(-)

diff --git a/debian/patches/privacy.patch b/debian/patches/privacy.patch
index 8c0c9b8..50b3127 100644
--- a/debian/patches/privacy.patch
+++ b/debian/patches/privacy.patch
@@ -50,31 +50,3 @@ Author: Ross Gammon 
  
  # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
  # implemented using a PHP enabled web server instead of at the web client
 geographiclib.orig/doc/scripts/geod-calc.html
-+++ geographiclib/doc/scripts/geod-calc.html
-@@ -462,10 +462,6 @@
-   mailto:char...@karney.com";>
-   (2011-08-04)
- 
--http://geographiclib.sourceforge.net";>
--  http://sourceforge.net/sflogo.php?group_id=283628&type=9";
--   border="0" height="15" width="80" alt="SourceForge.net" />
--
-+http://geographiclib.sourceforge.net";>Geographiclib 
Sourceforge
-   
- 
 geographiclib.orig/doc/scripts/geod-google-instructions.html
-+++ geographiclib/doc/scripts/geod-google-instructions.html
-@@ -109,10 +109,6 @@
-   mailto:char...@karney.com";>
-   (2011-08-02)
- 
--http://geographiclib.sourceforge.net";>
--  http://sourceforge.net/sflogo.php?group_id=283628&type=9";
--   border="0" height="15" width="80" alt="SourceForge.net" />
--
-+http://geographiclib.sourceforge.net";>Geographiclib 
Sourceforge
-   
- 

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


[geographiclib] 11/12: Update changelog

2014-11-03 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 geographiclib.

commit 5727015799c5f2c309fe6b110d61e6a5231df343
Author: Ross Gammon 
Date:   Tue Oct 28 23:27:57 2014 +0100

Update changelog
---
 debian/changelog | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index dd4ba85..0b1d8fa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,13 @@
 geographiclib (1.38-1) UNRELEASED; urgency=medium
 
-  * Imported Upstream version 1.38
+  * New upstream release
   * Fix lintian error about debian version in symbols file
   * Refresh patches
   * Update copyright dates
   * Update symbols for other ports
   * Add gbp.conf file
+  * Update symbols file with new symbols
+  * Install new manuals for download scripts
 
  -- Ross Gammon   Mon, 06 Oct 2014 20:29:10 +0200
 

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


[geographiclib] 05/12: Update copyright dates

2014-11-03 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 geographiclib.

commit 439b360fb65208dfcefc5e62662181c12aa1e860
Author: Ross Gammon 
Date:   Mon Oct 6 20:03:21 2014 +0200

Update copyright dates
---
 debian/copyright | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/copyright b/debian/copyright
index f58f73b..970b7f9 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ Upstream-Contact: Charles Karney 
 Source: http://geographiclib.sf.net/
 
 Files: *
-Copyright: 2008-2013, Charles Karney  
+Copyright: 2008-2014, Charles Karney  
2009, Francesco Paolo Lovergine 
   Mathieu Peyréga 
   2012 Andrew MacIntyre 

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

[geographiclib] 10/12: Install new manuals for download scripts

2014-11-03 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 geographiclib.

commit 1a5b7f33e2281b4fae386a9f3dd09dfa6299
Author: Ross Gammon 
Date:   Tue Oct 28 22:31:11 2014 +0100

Install new manuals for download scripts
---
 debian/geographiclib-tools.install | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/geographiclib-tools.install 
b/debian/geographiclib-tools.install
index 16018a9..9b5ccc6 100644
--- a/debian/geographiclib-tools.install
+++ b/debian/geographiclib-tools.install
@@ -1,6 +1,7 @@
 usr/share/doc/geographiclib/html
 usr/share/doc/geographiclib/scripts
 usr/share/man/man1
+usr/share/man/man8
 usr/bin/CartConvert
 usr/bin/ConicProj
 usr/bin/GeoConvert

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


[geographiclib] annotated tag upstream/1.38 created (now 73cf131)

2014-11-03 Thread Ross Gammon
This is an automated email from the git hooks/post-receive script.

ross-guest pushed a change to annotated tag upstream/1.38
in repository geographiclib.

at  73cf131   (tag)
   tagging  cccf5cbb2b5b723feec632179ad2444c26c5ba0c (commit)
  replaces  upstream/1.37
 tagged by  Ross Gammon
on  Sun Oct 5 19:48:22 2014 +0200

- Log -
Upstream version 1.38
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCgAGBQJUMYRmAAoJEHM+a/k86PbZi0cP/0t+P00jt/SNulRGLcBD7O2V
Cg5TnmA5G/5J5aeGoDZVMc8lu7QSAxZTAnaYGsXMtKg5mqGjSLdFAvBZAK540sIH
welxllgeMqd3YpWsdj3fJq9M59PrBylOVgf+2g6ikOvlnx8XuFJSb6yntFsvIOZr
ed0hzV2FuGDlDVHE05xllUzKlhevQNpKwbTjsGx/XjuPZ81D2ftNjPkg0RE796UC
zAPBcNkNsoLJEgWlrTxdKx4vnMK2oNALIWsx3OCMjotafJoNBGG4zqTNqb/Hv4tL
ilLDEJlE0IayOsf0RDo+6MdwCakrnWFe0MIXjEjWPJnYyBjeMqwBzj5qByxHJ1Pv
G4lzkPVoWy4NSi7AfmyXQ/mQQFGNbxe4G1qKlE8YV5qunJOV3vJ2NEgS+qJkV9bU
VhVYHHeji/iDvA+t1N6NtsA8tDyfPNpiXqtaopWvegHcKHVEL8zgDAMj+1lU3ahz
Hbyya8TYtpOqJew7fQlpce/UuOgpsZAVlmu5c4EjBVu1I5smFPZjvj3lKy24nP+x
hfgBMefLQYYOujS7F9dXoX6/Pw8kdBT9KYkRzvjjfKFCI4SU1AWt0/KGEuPOKjV1
By6jUD9WTNmW1WiZ5NeNN38fN+B2fS1Algz+zkWt+TMra7DSVll/hbfoBOKgkHKE
ofvRU090D9e9jjX1zXO9
=RPkY
-END PGP SIGNATURE-

Ross Gammon (1):
  Imported Upstream version 1.38

---

No new revisions were added by this update.

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


[saga] 01/01: pristine-tar data for saga_2.1.3.orig.tar.xz

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch pristine-tar
in repository saga.

commit 8678c3fcf370e256d1944f8bdf0c6e1aeb21ace8
Author: Johan Van de Wauw 
Date:   Fri Oct 31 21:19:58 2014 +0100

pristine-tar data for saga_2.1.3.orig.tar.xz
---
 saga_2.1.3.orig.tar.xz.delta | Bin 0 -> 99369 bytes
 saga_2.1.3.orig.tar.xz.id|   1 +
 2 files changed, 1 insertion(+)

diff --git a/saga_2.1.3.orig.tar.xz.delta b/saga_2.1.3.orig.tar.xz.delta
new file mode 100644
index 000..0284afa
Binary files /dev/null and b/saga_2.1.3.orig.tar.xz.delta differ
diff --git a/saga_2.1.3.orig.tar.xz.id b/saga_2.1.3.orig.tar.xz.id
new file mode 100644
index 000..74b9820
--- /dev/null
+++ b/saga_2.1.3.orig.tar.xz.id
@@ -0,0 +1 @@
+8c0a4a554cfd3454a71bd4d56eb1b975d06a88cb

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


[saga] branch pristine-tar updated (d3d0b23 -> 8678c3f)

2014-11-03 Thread Johan Van de Wauw
This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a change to branch pristine-tar
in repository saga.

  from  d3d0b23   pristine-tar data for saga_2.1.2+dfsg.orig.tar.gz
   new  8678c3f   pristine-tar data for saga_2.1.3.orig.tar.xz

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:
 saga_2.1.3.orig.tar.xz.delta | Bin 0 -> 99369 bytes
 saga_2.1.3.orig.tar.xz.id|   1 +
 2 files changed, 1 insertion(+)
 create mode 100644 saga_2.1.3.orig.tar.xz.delta
 create mode 100644 saga_2.1.3.orig.tar.xz.id

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