[DebianGIS-dev] r1385 - in packages/gpsdrive/trunk/debian: . patches
frankie at alioth.debian.org
frankie at alioth.debian.org
Wed Feb 20 15:13:14 UTC 2008
Author: frankie
Date: 2008-02-20 15:13:12 +0000 (Wed, 20 Feb 2008)
New Revision: 1385
Added:
packages/gpsdrive/trunk/debian/patches/97-bashism.dpatch
Modified:
packages/gpsdrive/trunk/debian/changelog
packages/gpsdrive/trunk/debian/control
packages/gpsdrive/trunk/debian/patches/00list
Log:
Fixing #464982
Modified: packages/gpsdrive/trunk/debian/changelog
===================================================================
--- packages/gpsdrive/trunk/debian/changelog 2008-02-20 14:48:03 UTC (rev 1384)
+++ packages/gpsdrive/trunk/debian/changelog 2008-02-20 15:13:12 UTC (rev 1385)
@@ -31,8 +31,11 @@
instead of the embedded lib path. This is suboptimal because
it should be autoconfiscated instead in gpsdrive bulding system.
But it works :)
+ * Fixed bashism in geo-nearest.
+ (closes: #464982)
+ * Policy bumped to 3.7.3, without changes.
- -- Francesco Paolo Lovergine <frankie at debian.org> Wed, 20 Feb 2008 15:02:48 +0100
+ -- Francesco Paolo Lovergine <frankie at debian.org> Wed, 20 Feb 2008 16:12:09 +0100
gpsdrive (2.10~pre4-1) unstable; urgency=low
Modified: packages/gpsdrive/trunk/debian/control
===================================================================
--- packages/gpsdrive/trunk/debian/control 2008-02-20 14:48:03 UTC (rev 1384)
+++ packages/gpsdrive/trunk/debian/control 2008-02-20 15:13:12 UTC (rev 1385)
@@ -3,8 +3,8 @@
Priority: optional
Maintainer: Debian GIS Project <pkg-grass-devel at lists.alioth.debian.org>
Uploaders: Andreas Putzo <andreas at putzo.net>
-Build-Depends: debhelper (>= 5), automake1.9, libtool, pkg-config, libpcre3-dev, libgtk2.0-dev,libart-2.0-dev, libxml2-dev, libmysqlclient15-dev, autotools-dev, dpatch, libmapnik-dev, libboost-dev, libboost-filesystem-dev, libboost-serialization-dev, libdbus-glib-1-dev
-Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 5), automake1.9, libtool, pkg-config, libpcre3-dev, libgtk2.0-dev,libart-2.0-dev, libxml2-dev, libmysqlclient15-dev, autotools-dev, dpatch, libmapnik-dev (>= 0.5~svn638-1), libboost-dev, libboost-filesystem-dev, libboost-serialization-dev, libdbus-glib-1-dev
+Standards-Version: 3.7.3
Homepage: http://gpsdrive.de
Package: gpsdrive
Modified: packages/gpsdrive/trunk/debian/patches/00list
===================================================================
--- packages/gpsdrive/trunk/debian/patches/00list 2008-02-20 14:48:03 UTC (rev 1384)
+++ packages/gpsdrive/trunk/debian/patches/00list 2008-02-20 15:13:12 UTC (rev 1385)
@@ -12,3 +12,4 @@
90-usage
95-newapi
96-mapnik-plugins-dir
+97-bashism
Added: packages/gpsdrive/trunk/debian/patches/97-bashism.dpatch
===================================================================
--- packages/gpsdrive/trunk/debian/patches/97-bashism.dpatch (rev 0)
+++ packages/gpsdrive/trunk/debian/patches/97-bashism.dpatch 2008-02-20 15:13:12 UTC (rev 1385)
@@ -0,0 +1,30 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 97-bashism.dpatch by Francesco Paolo Lovergine <frankie at debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+ at DPATCH@
+diff -urNad gpsdrive-2.10~pre4~/scripts/geo-nearest gpsdrive-2.10~pre4/scripts/geo-nearest
+--- gpsdrive-2.10~pre4~/scripts/geo-nearest 2007-09-14 23:47:07.000000000 +0200
++++ gpsdrive-2.10~pre4/scripts/geo-nearest 2008-02-20 16:07:42.000000000 +0100
+@@ -265,8 +265,8 @@
+ filter1=cat
+ filter2=cat
+ fi
+-((start=0))
+-while ((start < NUM)); do
++$((start=0))
++while $((start < NUM)); do
+ #
+ # Fetch the page of closest caches and scrape the cache ID's
+ #
+@@ -308,7 +308,7 @@
+ exit
+ fi
+
+- ((start=start+25))
++ $((start=start+25))
+ done
+
+ #
Property changes on: packages/gpsdrive/trunk/debian/patches/97-bashism.dpatch
___________________________________________________________________
Name: svn:executable
+ *
More information about the Pkg-grass-devel
mailing list