[DebianGIS-dev] r1831 - packages/gpsdrive/branches/etch/debian

2008-12-26 Thread nd-guest
Author: nd-guest
Date: 2008-12-26 22:05:14 + (Fri, 26 Dec 2008)
New Revision: 1831

Modified:
   packages/gpsdrive/branches/etch/debian/changelog
   packages/gpsdrive/branches/etch/debian/rules
Log:
use mktemp in ge-code, remove geo-nearest,
base changelog on correct etch version   


Modified: packages/gpsdrive/branches/etch/debian/changelog
===
--- packages/gpsdrive/branches/etch/debian/changelog2008-12-26 22:03:56 UTC 
(rev 1830)
+++ packages/gpsdrive/branches/etch/debian/changelog2008-12-26 22:05:14 UTC 
(rev 1831)
@@ -1,10 +1,11 @@
-gpsdrive (2.09-2.2) unstable; urgency=low
+gpsdrive (2.09-2.1+etch1) unstable; urgency=high
 
-  * Porter NMU.
-  * Update config.guess/config.sub. Closes: #317323.
-  * Update po/de.po. Closes: #314065.
+  * Patch geo-code to use mktemp to fix a potential symlink
+attack (CVE-2008-5380). (Closes: #508595)
+  * Remove /usr/bin/geo-nearest. Script no longer works with
+geocaching.com and uses insecure temporary files.
 
- -- Aurelien Jarno   Sun, 10 Dec 2006 23:24:43 +0100
+ -- Andreas Putzo   Fri, 26 Dec 2008 18:26:11 +
 
 gpsdrive (2.09-2.1) unstable; urgency=low
 

Modified: packages/gpsdrive/branches/etch/debian/rules
===
--- packages/gpsdrive/branches/etch/debian/rules2008-12-26 22:03:56 UTC 
(rev 1830)
+++ packages/gpsdrive/branches/etch/debian/rules2008-12-26 22:05:14 UTC 
(rev 1831)
@@ -52,6 +52,8 @@
 
# Remove gpsd, since debian has an own gpsd package
rm $(destdir)/bin/gpsd
+   # Remove geo-nearest (#508595)
+   rm $(destdir)/bin/geo-nearest
# add old manpages
#cp -r $(CURDIR)/debian/man/ $(destdir)/share/
 


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


[DebianGIS-dev] r1830 - in packages/gpsdrive/branches/etch: . man src src/mysql

2008-12-26 Thread nd-guest
Author: nd-guest
Date: 2008-12-26 22:03:56 + (Fri, 26 Dec 2008)
New Revision: 1830

Modified:
   packages/gpsdrive/branches/etch/README.SQL
   packages/gpsdrive/branches/etch/configure
   packages/gpsdrive/branches/etch/man/gpsdrive.1
   packages/gpsdrive/branches/etch/src/friendsd.c
   packages/gpsdrive/branches/etch/src/gpsdrive.c
   packages/gpsdrive/branches/etch/src/gpsdrive.h
   packages/gpsdrive/branches/etch/src/mysql/mysql.h
Log:
forgot to apply diff.gz


Modified: packages/gpsdrive/branches/etch/README.SQL
===
--- packages/gpsdrive/branches/etch/README.SQL  2008-12-26 14:30:20 UTC (rev 
1829)
+++ packages/gpsdrive/branches/etch/README.SQL  2008-12-26 22:03:56 UTC (rev 
1830)
@@ -7,7 +7,7 @@
 Compiling:
 --
 There is no MySQL needed for compiling, the needed library
-libmysqlclient.so.10 will be loaded at runtime, if found.
+libmysqlclient.so.15 will be loaded at runtime, if found.
 
 Running and first initialization:
 -

Modified: packages/gpsdrive/branches/etch/configure
===
--- packages/gpsdrive/branches/etch/configure   2008-12-26 14:30:20 UTC (rev 
1829)
+++ packages/gpsdrive/branches/etch/configure   2008-12-26 22:03:56 UTC (rev 
1830)
@@ -9511,20 +9511,6 @@
 
 echo "Using $CC compiler"
 
-if test "$CC" = "gcc" ; then
-
-if $CC -dumpversion|egrep -q "^3\.*"; then
-echo "GCC ok"
-else
-echo "*"
-echo "You need a gcc >= 3.x to compile GpsDrive"
-echo "*"
-exit
-fi
-
-fi
-
-
 UNAMEP=`uname -p`
 ARCHP=`arch`
 CFLAGS="$CFLAGS"

Modified: packages/gpsdrive/branches/etch/man/gpsdrive.1
===
--- packages/gpsdrive/branches/etch/man/gpsdrive.1  2008-12-26 14:30:20 UTC 
(rev 1829)
+++ packages/gpsdrive/branches/etch/man/gpsdrive.1  2008-12-26 22:03:56 UTC 
(rev 1830)
@@ -633,7 +633,7 @@
 menu.
 
 GpsDrive use MySQL automatically if it finds the shared library 
-.I libmysqlclient.so.10 
+.I libmysqlclient.so.15 
 and the MySQL Server is running and a connection to the database is possible. 
For first use you have to run 
 .B create.sql
 once.

Modified: packages/gpsdrive/branches/etch/src/friendsd.c
===
--- packages/gpsdrive/branches/etch/src/friendsd.c  2008-12-26 14:30:20 UTC 
(rev 1829)
+++ packages/gpsdrive/branches/etch/src/friendsd.c  2008-12-26 22:03:56 UTC 
(rev 1830)
@@ -364,7 +364,7 @@
fprintf (stderr, "%d clients, last: %s[%s]:\n",
 listnum, hname, fromaddr);
 
- fprintf (stderr, txt);
+ fprintf (stderr, "%s", txt);
 /*   printf ("sende\n%s, L�nge %d, clilen %d", txt, l,clilen);  */
  if ((nosent = sendto (sockfd, txt, l, 0, pcli_addr, clilen)) != l)
{

Modified: packages/gpsdrive/branches/etch/src/gpsdrive.c
===
--- packages/gpsdrive/branches/etch/src/gpsdrive.c  2008-12-26 14:30:20 UTC 
(rev 1829)
+++ packages/gpsdrive/branches/etch/src/gpsdrive.c  2008-12-26 22:03:56 UTC 
(rev 1830)
@@ -10496,22 +10496,22 @@
   if (!handle)
handle = dlopen ("libmysqlclient.so", RTLD_LAZY);
   if (!handle)
-   handle = dlopen ("libmysqlclient.so.10", RTLD_LAZY);
+   handle = dlopen ("libmysqlclient.so.15", RTLD_LAZY);
   if (!handle)
-   handle = dlopen ("/opt/lib/mysql/libmysqlclient.so.10", RTLD_LAZY);
+   handle = dlopen ("/opt/lib/mysql/libmysqlclient.so.15", RTLD_LAZY);
   if (!handle)
-   handle = dlopen ("/opt/mysql/lib/libmysqlclient.so.10", RTLD_LAZY);
+   handle = dlopen ("/opt/mysql/lib/libmysqlclient.so.15", RTLD_LAZY);
   if (!handle)
-   handle = dlopen ("/usr/lib/mysql/libmysqlclient.so.10", RTLD_LAZY);
+   handle = dlopen ("/usr/lib/mysql/libmysqlclient.so.15", RTLD_LAZY);
   if (!handle)
-   handle = dlopen ("/usr/lib/libmysqlclient.so.10", RTLD_LAZY);
+   handle = dlopen ("/usr/lib/libmysqlclient.so.15", RTLD_LAZY);
   if (!handle)
handle =
- dlopen ("/usr/local/lib/mysql/libmysqlclient.so.10", RTLD_LAZY);
+ dlopen ("/usr/local/lib/mysql/libmysqlclient.so.15", RTLD_LAZY);
   if (!handle)
-   handle = dlopen ("/usr/local/mysql/libmysqlclient.so.10", RTLD_LAZY);
+   handle = dlopen ("/usr/local/mysql/libmysqlclient.so.15", RTLD_LAZY);
   if (!handle)
-   handle = dlopen ("/usr/local/lib/libmysqlclient.so.10", RTLD_LAZY);
+   handle = dlopen ("/usr/local/lib/libmysqlclient.so.15", RTLD_LAZY);
   if (!handle)
handle = dlopen ("/sw/lib/libmysqlclient.dylib", RTLD_LAZY);
 

Modified: packages/gpsdrive/branches/etch/src/gpsdrive.h
===
--- packages/gpsdrive/branches/etch/s

[DebianGIS-dev] Bug#509826: josm: please upgrade and make the use of plugins more easy

2008-12-26 Thread Petter Reinholdtsen
[Torsten Wiebke]
> please put a newer version in the debian rep and find a way to
> install and use plugins more comfortable.

Hi.

What do you mean by "find a way to install and use plugins more
comfortable"?

Happy hacking,
-- 
Petter Reinholdtsen



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


[DebianGIS-dev] Bug#509826: josm: please upgrade and make the use of plugins more easy

2008-12-26 Thread Torsten Wiebke
Package: josm
Version: 0.0.0.20080713-1
Severity: normal

Hallo,
please put a newer version in the debian rep and find a way to install and use 
plugins more comfortable. 
Thank You


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (90, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages josm depends on:
ii  libgettext-commons-ja 0.9-1  Java classes for internationalizat
ii  libmetadata-extractor 2.3.1+dfsg-1   JPEG metadata extraction framework
ii  openjdk-6-jre 6b11-9 OpenJDK Java runtime, using Hotspo
ii  openstreetmap-map-ico 1:0.0.0.20080713-1 Collection of map icons

Versions of packages josm recommends:
ii  josm-plugins0.0.0.20080413-2 Plugins for JOSM

josm suggests no packages.

-- no debconf information



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


[DebianGIS-dev] Bug#470159: libhdf5-serial-1.6.6-0: I support this, please add the fotran bindings support

2008-12-26 Thread Micha
Package: libhdf5-serial-1.6.6-0
Version: 1.6.6-4
Followup-For: Bug #470159


enabling the fortran bindings will be very useful for this package

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.28-rc9 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libhdf5-serial-1.6.6-0 depends on:
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1 GCC support library
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

libhdf5-serial-1.6.6-0 recommends no packages.

libhdf5-serial-1.6.6-0 suggests no packages.

-- no debconf information



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


[DebianGIS-dev] qgis debian packages uploaded (for ubuntu)

2008-12-26 Thread Jürgen E . Fischer
Hi Tim,

On Sat, 20. Dec 2008 at 22:41:46 +0200, Tim Sutton wrote:
> Please do not commit anything to the branch except packaging related
> tweaks.

I updated the debian/ tree a bit.  I added files that integrate QGIS and
related files into GNOME+XFCE+KDE filemanagers.  Maybe some more
debian-packaging-savvy people than me care to review the current state
of the package.

Afterwards I updated our Launchpad PPA.
https://launchpad.net/~qgis/+archive now carries 1.0.0 packages for
Ubuntu Gutsy, Hardy and Intrepid.


Jürgen

PS: Unfortunatly I noticed only after uploading the sources, that I
updated the german translation in my tree.  The updated files are
available http://www.norbit.de/~jef/qgis_de.{ts,qm,diff}.

-- 
Jürgen E. Fischer norBIT GmbH   Tel. +49-4931-918175-20
Dipl.-Inf. (FH)   Rheinstraße 13Fax. +49-4931-918175-50
Software Engineer D-26506 Norden   http://www.norbit.de

-- 
norBIT Gesellschaft fuer Unternehmensberatung und Informationssysteme mbH
Rheinstrasse 13, 26506 Norden
GF: Jelto Buurman, HR: Amtsgericht Emden, HRB 5502


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


[DebianGIS-dev] r1829 - packages/josm/trunk/debian/patches

2008-12-26 Thread gmascellani-guest
Author: gmascellani-guest
Date: 2008-12-26 14:30:20 + (Fri, 26 Dec 2008)
New Revision: 1829

Modified:
   packages/josm/trunk/debian/patches/20_bts.dpatch
Log:
Version, Debian release and last commit date are shown in the "About" dialog


Modified: packages/josm/trunk/debian/patches/20_bts.dpatch
===
--- packages/josm/trunk/debian/patches/20_bts.dpatch2008-12-24 17:11:09 UTC 
(rev 1828)
+++ packages/josm/trunk/debian/patches/20_bts.dpatch2008-12-26 14:30:20 UTC 
(rev 1829)
@@ -6,18 +6,58 @@
 
 @DPATCH@
 diff -urNad 
josm-0.0.svn1137~/src/org/openstreetmap/josm/actions/AboutAction.java 
josm-0.0.svn1137/src/org/openstreetmap/josm/actions/AboutAction.java
 josm-0.0.svn1137~/src/org/openstreetmap/josm/actions/AboutAction.java  
2008-12-23 11:56:50.0 +0100
-+++ josm-0.0.svn1137/src/org/openstreetmap/josm/actions/AboutAction.java   
2008-12-23 11:57:49.0 +0100
-@@ -55,7 +55,7 @@
-   if(u == null) u = 
Main.class.getResource("/META-INF/MANIFEST.MF");
+--- josm-0.0.svn1137~/src/org/openstreetmap/josm/actions/AboutAction.java  
2008-12-25 12:19:43.0 +0100
 josm-0.0.svn1137/src/org/openstreetmap/josm/actions/AboutAction.java   
2008-12-25 12:20:52.0 +0100
+@@ -12,6 +12,7 @@
+ import java.io.IOException;
+ import java.io.InputStream;
+ import java.io.InputStreamReader;
++import java.net.MalformedURLException;
+ import java.net.URL;
+ import java.util.Map.Entry;
+ import java.util.regex.Matcher;
+@@ -46,19 +47,31 @@
+ public class AboutAction extends JosmAction {
+ 
+   public static final String version;
++  public static final String debianRelease;
+ 
+   private final static JTextArea revision;
+   private static String time;
+ 
+   static {
+   URL u = Main.class.getResource("/REVISION");
+-  if(u == null) u = 
Main.class.getResource("/META-INF/MANIFEST.MF");
++if(u == null) {
++try {
++u = new URL("jar:" + 
Main.class.getProtectionDomain().getCodeSource().getLocation().toString() 
+++ "!/META-INF/MANIFEST.MF");
++} catch (MalformedURLException e) {
++e.printStackTrace();
++}
++}
revision = loadFile(u);
  
 -  Pattern versionPattern = 
Pattern.compile(".*?(?:Revision|Main-Version): ([0-9]*).*", 
Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
-+  Pattern versionPattern = 
Pattern.compile(".*?(?:Revision|Main-Version): ([[0-9].-]*).*", 
Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
++  Pattern versionPattern = 
Pattern.compile(".*?(?:Revision|Main-Version): ([0-9]*(?: SVN)?).*", 
Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
Matcher match = versionPattern.matcher(revision.getText());
version = match.matches() ? match.group(1) : tr("UNKNOWN");
  
-@@ -86,7 +86,7 @@
++  Pattern debianReleasePattern = 
Pattern.compile(".*?(?:Debian-Release): ([^\n]*).*", 
Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
++  match = debianReleasePattern.matcher(revision.getText());
++  debianRelease = match.matches() ? match.group(1) : 
tr("UNKNOWN");
++
+   Pattern timePattern = Pattern.compile(".*?(?:Last Changed 
Date|Main-Date): ([^\n]*).*", Pattern.CASE_INSENSITIVE|Pattern.DOTALL);
+   match = timePattern.matcher(revision.getText());
+   time = match.matches() ? match.group(1) : tr("UNKNOWN");
+@@ -80,13 +93,14 @@
+ 
+   JPanel info = new JPanel(new GridBagLayout());
+   info.add(new JLabel(tr("Java OpenStreetMap Editor Version 
{0}",version)), GBC.eol().fill(GBC.HORIZONTAL));
++  info.add(new JLabel(tr("Debian release: {0}",debianRelease)), 
GBC.eol().fill(GBC.HORIZONTAL));
+   info.add(new JLabel(tr("last change at {0}",time)), 
GBC.eol().fill(GBC.HORIZONTAL));
+   info.add(new JLabel(tr("Java Version 
{0}",System.getProperty("java.version"))), GBC.eol().fill(GBC.HORIZONTAL));
+   info.add(GBC.glue(0,10), GBC.eol());
info.add(new JLabel(tr("Homepage")), 
GBC.std().insets(0,0,10,0));
info.add(new UrlLabel("http://josm.openstreetmap.de";), 
GBC.eol().fill(GBC.HORIZONTAL));
info.add(new JLabel(tr("Bug Reports")), 
GBC.std().insets(0,0,10,0));
@@ -27,8 +67,8 @@
info.add(new UrlLabel("http://www.opengeodata.org/?cat=17";), 
GBC.eol().fill(GBC.HORIZONTAL));
  
 diff -urNad 
josm-0.0.svn1137~/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
 
josm-0.0.svn1137/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
 
josm-0.0.svn1137~/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
  2008-12-23 11:56:50.0 +0100
-+++ 
josm-0.0.svn1137/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
   2008-12-23 11:56:59.0