[DebianGIS-dev] [SCM] saga branch, master, updated. 8d77db9c10c3da41cefa89b98ef6c4e858e30f83

2010-05-05 Thread Johan Van de Wauw
The following commit has been merged in the master branch:
commit 8d77db9c10c3da41cefa89b98ef6c4e858e30f83
Author: Johan Van de Wauw johan.vandew...@gmail.com
Date:   Wed May 5 13:37:39 2010 +0200

Fix bug: printf() crashes

upstream commit of 2010-03-24:
saga_api serious bug fix: csg_string::printf() used without argument
list leads potentially to program crash

diff --git a/src/saga_core/saga_api/api_file.cpp 
b/src/saga_core/saga_api/api_file.cpp
index 7237b48..97ebb0c 100644
--- a/src/saga_core/saga_api/api_file.cpp
+++ b/src/saga_core/saga_api/api_file.cpp
@@ -418,7 +418,7 @@ CSG_String  SG_File_Get_Name(const SG_Char 
*full_Path, bool bExtension)
wxFileName  fn(full_Path);
CSG_String  s;
 
-   s.Printf(bExtension ? fn.GetFullName().c_str() : fn.GetName().c_str());
+   s = (bExtension ? fn.GetFullName().c_str() : fn.GetName().c_str());
 
return( s );
 }
diff --git a/src/saga_core/saga_api/dataobject.cpp 
b/src/saga_core/saga_api/dataobject.cpp
index 3ecd3cc..556a1a2 100644
--- a/src/saga_core/saga_api/dataobject.cpp
+++ b/src/saga_core/saga_api/dataobject.cpp
@@ -154,7 +154,7 @@ bool CSG_Data_Object::Destroy(void)
 //-
 void CSG_Data_Object::Set_Name(const SG_Char *Name)
 {
-   m_Name.Printf(Name ? CSG_String(Name).c_str() : LNG([DAT] new) );
+   m_Name = Name ? CSG_String(Name).c_str() : LNG([DAT] new) ;
 }
 
 const SG_Char * CSG_Data_Object::Get_Name(void) const
@@ -167,7 +167,7 @@ void CSG_Data_Object::Set_File_Name(const SG_Char 
*File_Name)
 {
if( File_Name )
{
-   m_File_Name.Printf(File_Name);
+   m_File_Name = File_Name;
 
m_Name  = SG_File_Get_Name(File_Name, false);
 
diff --git a/src/saga_core/saga_api/grid.cpp b/src/saga_core/saga_api/grid.cpp
index 3d45403..c208cfc 100644
--- a/src/saga_core/saga_api/grid.cpp
+++ b/src/saga_core/saga_api/grid.cpp
@@ -360,7 +360,7 @@ void CSG_Grid::_Set_Properties(TSG_Data_Type Type, int NX, 
int NY, double Cellsi
 //-
 void CSG_Grid::Set_Description(const SG_Char *String)
 {
-   m_Description.Printf(String ? String : SG_T());
+   m_Description = String ? String : SG_T();
 }
 
 const SG_Char * CSG_Grid::Get_Description(void) const
@@ -371,7 +371,7 @@ const SG_Char * CSG_Grid::Get_Description(void) const
 //-
 void CSG_Grid::Set_Unit(const SG_Char *String)
 {
-   m_Unit.Printf(String ? String : SG_T());
+   m_Unit = String ? String : SG_T();
 }
 
 const SG_Char * CSG_Grid::Get_Unit(void) const
diff --git a/src/saga_core/saga_api/grid_io.cpp 
b/src/saga_core/saga_api/grid_io.cpp
index 29cdbb1..914a3c9 100644
--- a/src/saga_core/saga_api/grid_io.cpp
+++ b/src/saga_core/saga_api/grid_io.cpp
@@ -786,7 +786,7 @@ int CSG_Grid::_Load_Native_Get_Key(CSG_File Stream, 
CSG_String Value)
 
if( Stream.Read_Line(sLine)  (i = sLine.Find('='))  0 )
{
-   Value.Printf(sLine.AfterFirst('='));
+   Value = sLine.AfterFirst('=');
Value.Trim();
 
sLine.Remove(i);
diff --git a/src/saga_core/saga_api/grid_memory.cpp 
b/src/saga_core/saga_api/grid_memory.cpp
index 7dcbc0e..be86f3c 100644
--- a/src/saga_core/saga_api/grid_memory.cpp
+++ b/src/saga_core/saga_api/grid_memory.cpp
@@ -84,7 +84,7 @@ void  
SG_Grid_Cache_Set_Directory(const SG_Char *Directory)
 {
if( SG_Dir_Exists(Directory) )
{
-   gSG_Grid_Cache_Directory.Printf(Directory);
+   gSG_Grid_Cache_Directory = Directory;
}
 }
 
@@ -584,7 +584,7 @@ bool CSG_Grid::_Cache_Create(const SG_Char *FilePath, 
TSG_Data_Type File_Type, l
 {
if( m_System.is_Valid()  m_Type != SG_DATATYPE_Undefined  
m_Memory_Type == GRID_MEMORY_Normal )
{
-   Cache_Path.Printf(FilePath);
+   Cache_Path =FilePath;
 
if( m_Type == File_Type
  (   Cache_Stream.Open(Cache_Path, SG_FILE_RWA, true)
diff --git a/src/saga_core/saga_api/module.cpp 
b/src/saga_core/saga_api/module.cpp
index 6b09b46..5dd2d05 100644
--- a/src/saga_core/saga_api/module.cpp
+++ b/src/saga_core/saga_api/module.cpp
@@ -160,7 +160,7 @@ void CSG_Module::Set_Author(const SG_Char *String)
 {
if( String )
{
-   m_Author.Printf(String);
+   m_Author = String;
}
else
{
diff --git a/src/saga_core/saga_api/parameter_data.cpp 
b/src/saga_core/saga_api/parameter_data.cpp
index e8b3d83..7a90f32 100644
--- a/src/saga_core/saga_api/parameter_data.cpp
+++ b/src/saga_core/saga_api/parameter_data.cpp
@@ -853,7 +853,7 @@ bool CSG_Parameter_String::Set_Value(void *Value)
{
if( m_String.Cmp((SG_Char *)Value) )
{
-   m_String.Printf((SG_Char *)Value);
+ 

[DebianGIS-dev] [SCM] gpsprune branch, master, updated. debian/9-2-6-g9895e71

2010-05-05 Thread David Paleino
The following commit has been merged in the master branch:
commit 250c32b510516a08de276e8a6c09c7a3a6378892
Merge: f214c62ad5af4a9bcaa774cf8bebca7c8d76bbb0 
e2bc01d405a2385ffd76779f576bfa8d17d6f3f8
Author: David Paleino da...@debian.org
Date:   Wed May 5 20:41:17 2010 +0200

Merge commit 'upstream/10'


-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] [SCM] gpsprune branch, master, updated. debian/9-2-6-g9895e71

2010-05-05 Thread David Paleino
The following commit has been merged in the master branch:
commit fbf08e279553d827aa2c08923eca9e70f507588b
Author: David Paleino da...@debian.org
Date:   Wed May 5 23:20:19 2010 +0200

New upstream version

diff --git a/debian/changelog b/debian/changelog
index c928d95..1f411d0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+gpsprune (10-1) UNRELEASED; urgency=low
+
+  * New upstream version
+
+ -- David Paleino da...@debian.org  Wed, 05 May 2010 23:20:04 +0200
+
 gpsprune (9-2) unstable; urgency=low
 
   * debian/control:

-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] [SCM] gpsprune branch, master, updated. debian/9-2-6-g9895e71

2010-05-05 Thread David Paleino
The following commit has been merged in the master branch:
commit 09d0ac77c9246aed85ca92752cff96d0f2e0b582
Author: David Paleino da...@debian.org
Date:   Wed May 5 23:25:31 2010 +0200

debian/copyright: updated to include new info about files in 
tim/prune/function/srtm/gen/

diff --git a/debian/changelog b/debian/changelog
index 1f411d0..9b1f162 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
 gpsprune (10-1) UNRELEASED; urgency=low
 
   * New upstream version
+  * debian/copyright:
+- updated to include new info about files in
+  tim/prune/function/srtm/gen/
 
- -- David Paleino da...@debian.org  Wed, 05 May 2010 23:20:04 +0200
+ -- David Paleino da...@debian.org  Wed, 05 May 2010 23:24:59 +0200
 
 gpsprune (9-2) unstable; urgency=low
 
diff --git a/debian/copyright b/debian/copyright
index 404d3ed..96b510a 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -5,6 +5,21 @@ Files: debian/*
 Copyright: © 2010, David Paleino da...@debian.org
 License: GPL-2
 
+Files: tim/prune/function/srtm/gen/tiles*.txt
+ tim/prune/function/srtm/gen/srtmtiles.dat
+License: PD
+ srtmtiles.dat is generated by GenerateTileLookup.java, in the same
+ directory, from the data available in the tiles*.txt files. This data
+ is gathered from directory listings of a US government website, so it's
+ PD.
+ The website states:
+   Most U.S. Geological Survey (USGS) information resides in the public domain
+   and may be used without restriction. There is no legal requirement for users
+   to acknowledge or credit USGS as the source for public domain information,
+   but they may wish to do so as a courtesy.
+ The tiles*.txt files can be re-generated with the debian/scripts/get-tiles.py
+ script.
+
 Files: *
 Copyright: © 2006-2010, activityworkshop.net m...@activityworkshop.net
 License: GPL-2

-- 
Tool to visualize, edit, convert and prune GPS data

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

[DebianGIS-dev] [SCM] gpsprune branch, master, updated. debian/9-2-6-g9895e71

2010-05-05 Thread David Paleino
The following commit has been merged in the master branch:
commit 8a6378c5aa63d1f82f7ca20f5c3418f68a7c37af
Author: David Paleino da...@debian.org
Date:   Wed May 5 23:26:07 2010 +0200

debian/scripts/get-tiles.py added, can be used to re-generate tiles*.txt 
files (see debian/copyright)

diff --git a/debian/changelog b/debian/changelog
index 9b1f162..7960205 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,10 @@ gpsprune (10-1) UNRELEASED; urgency=low
   * debian/copyright:
 - updated to include new info about files in
   tim/prune/function/srtm/gen/
+  * debian/scripts/get-tiles.py added, can be used to re-generate
+tiles*.txt files (see debian/copyright)
 
- -- David Paleino da...@debian.org  Wed, 05 May 2010 23:24:59 +0200
+ -- David Paleino da...@debian.org  Wed, 05 May 2010 23:25:37 +0200
 
 gpsprune (9-2) unstable; urgency=low
 
diff --git a/debian/scripts/get-tiles.py b/debian/scripts/get-tiles.py
new file mode 100755
index 000..1f2dda1
--- /dev/null
+++ b/debian/scripts/get-tiles.py
@@ -0,0 +1,24 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+# © 2010, David Paleino da...@debian.org
+#
+# This script is released under the GNU General Public License, version 2.
+
+from urllib2 import urlopen
+import re
+
+base = http://dds.cr.usgs.gov/srtm/version2_1/SRTM3/%s/;
+regions = [Eurasia, North_America, Australia, Islands, 
South_America, Africa]
+
+for reg in regions:
+url = base % reg
+tiles = []
+for line in urlopen(url).readlines():
+if line.startswith(li):
+match = re.match(^li.* ([^]*).*, line)
+if match:
+tiles.append(match.group(1).replace(.hgt.zip, ))
+f = open(tiles%s.txt % (regions.index(reg)+1), w)
+f.write('\n'.join([reg] + tiles))
+f.close()

-- 
Tool to visualize, edit, convert and prune GPS data

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

[DebianGIS-dev] [SCM] gpsprune branch, pristine-tar, updated. b03561ef76cc09e0fca44288cada16e3fb3e78d9

2010-05-05 Thread David Paleino
The following commit has been merged in the pristine-tar branch:
commit b03561ef76cc09e0fca44288cada16e3fb3e78d9
Author: David Paleino da...@debian.org
Date:   Wed May 5 20:41:14 2010 +0200

pristine-tar data for gpsprune_10.orig.tar.bz2

diff --git a/gpsprune_10.orig.tar.bz2.delta b/gpsprune_10.orig.tar.bz2.delta
new file mode 100644
index 000..0f3a90e
Binary files /dev/null and b/gpsprune_10.orig.tar.bz2.delta differ
diff --git a/gpsprune_10.orig.tar.bz2.id b/gpsprune_10.orig.tar.bz2.id
new file mode 100644
index 000..227d8cc
--- /dev/null
+++ b/gpsprune_10.orig.tar.bz2.id
@@ -0,0 +1 @@
+e2bc01d405a2385ffd76779f576bfa8d17d6f3f8

-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] [SCM] gpsprune annotated tag, upstream/10, created. upstream/10

2010-05-05 Thread David Paleino
The annotated tag, upstream/10 has been created
at  3814ddd579023a908c0f2cbd22a473aa861f9621 (tag)
   tagging  e2bc01d405a2385ffd76779f576bfa8d17d6f3f8 (commit)
  replaces  upstream/8
 tagged by  David Paleino
on  Wed May 5 20:41:14 2010 +0200

- Shortlog 
Upstream version 10
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAkvhu8oACgkQ5qqQFxOSsXTIugCguVZBgUsHYdvg63iCxzXRqtcW
ULQAn011oRyLmk5HMlIpZYhQGfV1GEwq
=W26C
-END PGP SIGNATURE-

David Paleino (3):
  Imported Upstream version 9
  Imported Upstream version 09
  Imported Upstream version 10

---

-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] [SCM] gpsprune branch, master, updated. debian/9-2-7-g0b31172

2010-05-05 Thread David Paleino
The following commit has been merged in the master branch:
commit 0b31172a13de8ff72a658baa6c537b548e2dbd5a
Author: David Paleino da...@debian.org
Date:   Wed May 5 23:42:50 2010 +0200

debian/rules: added srtmtiles target; re-build the srtmtiles.dat binary 
file at build-time

diff --git a/debian/changelog b/debian/changelog
index 0e4ba05..fdd9d28 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,8 +6,11 @@ gpsprune (10-1) UNRELEASED; urgency=low
   tim/prune/function/srtm/
   * debian/scripts/get-tiles.py added, can be used to re-generate
 tiles*.txt files (see debian/copyright)
+  * debian/rules:
+- added srtmtiles target; re-build the srtmtiles.dat binary file
+  at build-time
 
- -- David Paleino da...@debian.org  Wed, 05 May 2010 23:25:37 +0200
+ -- David Paleino da...@debian.org  Wed, 05 May 2010 23:42:21 +0200
 
 gpsprune (9-2) unstable; urgency=low
 
diff --git a/debian/rules b/debian/rules
index 65f4ebf..2dbb676 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,7 +9,13 @@ export 
CLASSPATH=/usr/share/java/j3dcore.jar:/usr/share/java/j3dutils.jar:/usr/s
 
 export JH_JAR_EXTRA=$(shell find tim/prune/lang/ tim/prune/gui/images -type f)
 
-override_jh_build:
+srtmtiles:
+   javac tim/prune/function/srtm/gen/GenerateTileLookup.java
+   CLASSPATH=. java tim.prune.function.srtm.gen.GenerateTileLookup
+   mv $(CURDIR)/srtmtiles.dat tim/prune/function/srtm/
+   rm -rf tim/prune/function/srtm/gen/GenerateTileLookup.class
+
+override_jh_build: srtmtiles
jh_build --no-javadoc
 
 override_jh_depends:

-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] [SCM] gpsprune branch, master, updated. debian/9-2-8-gd4e2211

2010-05-05 Thread David Paleino
The following commit has been merged in the master branch:
commit d4e22113c6d9a597173553d91368c4c1097bc906
Author: David Paleino da...@debian.org
Date:   Wed May 5 23:45:03 2010 +0200

debian/patches/00-fix_readme_in_about.patch removed, merged upstream

diff --git a/debian/changelog b/debian/changelog
index fdd9d28..1200485 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,8 +9,9 @@ gpsprune (10-1) UNRELEASED; urgency=low
   * debian/rules:
 - added srtmtiles target; re-build the srtmtiles.dat binary file
   at build-time
+  * debian/patches/00-fix_readme_in_about.patch removed, merged upstream
 
- -- David Paleino da...@debian.org  Wed, 05 May 2010 23:42:21 +0200
+ -- David Paleino da...@debian.org  Wed, 05 May 2010 23:44:52 +0200
 
 gpsprune (9-2) unstable; urgency=low
 
diff --git a/debian/patches/00-fix_readme_in_about.patch 
b/debian/patches/00-fix_readme_in_about.patch
deleted file mode 100644
index cbabeaa..000
--- a/debian/patches/00-fix_readme_in_about.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-From: David Paleino da...@debian.org
-Subject: read the text needed for the About Screen from the installed
- readme.txt.gz rather than from the one embedded in the .jar (missing
- in the Debian one)
-Forwarded: no
-

- tim/prune/function/AboutScreen.java |   40 
+++-
- 1 file changed, 35 insertions(+), 5 deletions(-)
-
 gpsprune.orig/tim/prune/function/AboutScreen.java
-+++ gpsprune/tim/prune/function/AboutScreen.java
-@@ -11,7 +11,12 @@ import java.awt.event.ActionEvent;
- import java.awt.event.ActionListener;
- import java.awt.event.KeyEvent;
- import java.awt.event.KeyListener;
-+
- import java.io.InputStream;
-+import java.io.FileInputStream;
-+import java.io.ByteArrayOutputStream;
-+import java.io.OutputStream;
-+import java.util.zip.GZIPInputStream;
- 
- import javax.swing.BorderFactory;
- import javax.swing.BoxLayout;
-@@ -283,15 +288,40 @@ public class AboutScreen extends Generic
-   {
-   // For some reason using ../readme.txt doesn't work, so 
need absolute path
-   InputStream in = 
AboutScreen.class.getResourceAsStream(/tim/prune/readme.txt);
--  if (in != null) {
--  byte[] buffer = new byte[in.available()];
--  in.read(buffer);
--  return new String(buffer);
--  }
-+
-+  byte[] buffer = new byte[in.available()];
-+  in.read(buffer);
-+  return new String(buffer);
-   }
-   catch (java.io.IOException e) {
-   System.err.println(Exception trying to get readme :  
+ e.getMessage());
-   }
-+  catch (java.lang.NullPointerException e) {
-+  GZIPInputStream in = null;
-+  OutputStream out = null;
-+
-+  try {
-+  String readme = 
/usr/share/doc/gpsprune/readme.txt.gz;
-+  in = new GZIPInputStream(new 
FileInputStream(readme));
-+  out = new ByteArrayOutputStream();
-+  String ret = ;
-+
-+  byte[] buffer = new byte[8 * 1024];
-+  int count = 0;
-+  do {
-+  out.write(buffer, 0, count);
-+  count = in.read(buffer, 0, 
buffer.length);
-+  } while (count != -1);
-+
-+  ret = out.toString();
-+  out.close();
-+  in.close();
-+  return ret;
-+  }
-+  catch (java.io.IOException ex) {
-+  System.err.println(Exception trying to get 
readme :  + ex.getMessage());
-+  }
-+  }
-   return I18nManager.getText(error.readme.notfound);
-   }
- 
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index cb27725..000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-00-fix_readme_in_about.patch

-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] [SCM] gpsprune branch, master, updated. debian/9-2-9-g9205f95

2010-05-05 Thread David Paleino
The following commit has been merged in the master branch:
commit 9205f95d33f7094a917ac6ccb68849c82e446192
Author: David Paleino da...@debian.org
Date:   Thu May 6 00:02:17 2010 +0200

debian/rules: added tim/prune/function/srtm/srtmtiles.dat to JH_JAR_EXTRA

diff --git a/debian/changelog b/debian/changelog
index 1200485..f2a2b84 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,9 +9,10 @@ gpsprune (10-1) UNRELEASED; urgency=low
   * debian/rules:
 - added srtmtiles target; re-build the srtmtiles.dat binary file
   at build-time
+- added tim/prune/function/srtm/srtmtiles.dat to JH_JAR_EXTRA
   * debian/patches/00-fix_readme_in_about.patch removed, merged upstream
 
- -- David Paleino da...@debian.org  Wed, 05 May 2010 23:44:52 +0200
+ -- David Paleino da...@debian.org  Thu, 06 May 2010 00:02:02 +0200
 
 gpsprune (9-2) unstable; urgency=low
 
diff --git a/debian/rules b/debian/rules
index 2dbb676..4588fa9 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,7 +7,7 @@
 export JAVA_HOME=/usr/lib/jvm/default-java
 export 
CLASSPATH=/usr/share/java/j3dcore.jar:/usr/share/java/j3dutils.jar:/usr/share/java/vecmath.jar:/usr/share/java/metadata-extractor.jar
 
-export JH_JAR_EXTRA=$(shell find tim/prune/lang/ tim/prune/gui/images -type f)
+export JH_JAR_EXTRA=$(shell find tim/prune/lang/ tim/prune/gui/images -type f) 
tim/prune/function/srtm/srtmtiles.dat
 
 srtmtiles:
javac tim/prune/function/srtm/gen/GenerateTileLookup.java

-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] [SCM] gpsprune branch, master, updated. debian/9-2-10-g3fbcc27

2010-05-05 Thread David Paleino
The following commit has been merged in the master branch:
commit 3fbcc27223eb45619b08040124f47e28865d42bb
Author: David Paleino da...@debian.org
Date:   Thu May 6 00:19:32 2010 +0200

Releasing to sid

diff --git a/debian/changelog b/debian/changelog
index f2a2b84..9b7e1e9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-gpsprune (10-1) UNRELEASED; urgency=low
+gpsprune (10-1) unstable; urgency=low
 
   * New upstream version
   * debian/copyright:
@@ -12,7 +12,7 @@ gpsprune (10-1) UNRELEASED; urgency=low
 - added tim/prune/function/srtm/srtmtiles.dat to JH_JAR_EXTRA
   * debian/patches/00-fix_readme_in_about.patch removed, merged upstream
 
- -- David Paleino da...@debian.org  Thu, 06 May 2010 00:02:02 +0200
+ -- David Paleino da...@debian.org  Thu, 06 May 2010 00:08:17 +0200
 
 gpsprune (9-2) unstable; urgency=low
 

-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] [SCM] gpsprune annotated tag, debian/10-1, created. debian/10-1

2010-05-05 Thread David Paleino
The annotated tag, debian/10-1 has been created
at  a0531ed0accc927921d7c376ad8654a5577b61a9 (tag)
   tagging  3fbcc27223eb45619b08040124f47e28865d42bb (commit)
  replaces  debian/9-2
 tagged by  David Paleino
on  Thu May 6 00:19:39 2010 +0200

- Shortlog 
Debian release
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEABECAAYFAkvh7vsACgkQ5qqQFxOSsXQGiACgkhicTwhb75kY3rC8qjnZdopx
Aa0AoKmKtTb7et4RtkYI5NBARilsln/Y
=7baT
-END PGP SIGNATURE-

David Paleino (10):
  Imported Upstream version 10
  Merge commit 'upstream/10'
  New upstream version
  debian/copyright: updated to include new info about files in 
tim/prune/function/srtm/gen/
  debian/scripts/get-tiles.py added, can be used to re-generate tiles*.txt 
files (see debian/copyright)
  Fix changelog entry
  debian/rules: added srtmtiles target; re-build the srtmtiles.dat binary 
file at build-time
  debian/patches/00-fix_readme_in_about.patch removed, merged upstream
  debian/rules: added tim/prune/function/srtm/srtmtiles.dat to JH_JAR_EXTRA
  Releasing to sid

---

-- 
Tool to visualize, edit, convert and prune GPS data

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


[DebianGIS-dev] Processing of gpsprune_10-1_i386.changes

2010-05-05 Thread Archive Administrator
gpsprune_10-1_i386.changes uploaded successfully to localhost
along with the files:
  gpsprune_10-1.dsc
  gpsprune_10.orig.tar.bz2
  gpsprune_10-1.debian.tar.gz
  gpsprune_10-1_all.deb

Greetings,

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

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