[DebianGIS-dev] Processed: severity of 489603 is minor

2008-07-06 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.33
> # bashisms in example scripts are not that important
> severity 489603 minor
Bug#489603: gpsdrive: bashism in /bin/sh script
Severity set to `minor' from `important'

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


___
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#489603: severity of 489603 is minor

2008-07-06 Thread Paul Wise
# Automatically generated email from bts, devscripts version 2.10.33
# bashisms in example scripts are not that important
severity 489603 minor




___
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#489603: gpsdrive: bashism in /bin/sh script

2008-07-06 Thread Raphael Geissert
Package: gpsdrive
Severity: important
Version: 2.10~pre4-3
User: [EMAIL PROTECTED]
Usertags: goal-dash

Hello maintainer,

While performing an archive wide checkbashisms (from the 'devscripts' package) 
check I've found your package containing one or more /bin/sh scripts making 
use of bashisms.

checkbashisms' output:
> possible bashism in ./usr/share/doc/gpsdrive/examples/wpget line 35
> (alternative test command ([[ foo ]] should be [ foo ])):
> if [[ ${#opt} != "3" && ${#opt} != "12" ]]; then

Not using bash (or a Debian Policy conformant shell interpreter which does 
provide such an extra feature) as /bin/sh is likely to lead to errors or 
unexpected behaviours.
Please be aware that although bash is currently the default /bin/sh there's a 
release goal for Lenny to make dash the default /bin/sh[1].

If you want more information about dash as /bin/sh, you can read:
http://lists.debian.org/debian-release/2008/01/msg00189.html

For more information please refer to the Debian Policy section 10.4 supporting 
this argument at:
http://www.debian.org/doc/debian-policy/ch-files.html#s-scripts

Hints about how to fix bashisms:
Sometimes these bugs are already fixed in Ubuntu, look at the PTS.
If not already fixed you can read:
https://wiki.ubuntu.com/DashAsBinSh

[1]http://release.debian.org/lenny/goals.txt

Thank you,
-- 
Atomo64 - Raphael

Please avoid sending me Word, PowerPoint or Excel attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html



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


[DebianGIS-dev] r1699 - packages/osm-map-icons/trunk/debian

2008-07-06 Thread nd-guest
Author: nd-guest
Date: 2008-07-06 21:44:18 + (Sun, 06 Jul 2008)
New Revision: 1699

Modified:
   packages/osm-map-icons/trunk/debian/changelog
   packages/osm-map-icons/trunk/debian/rules
Log:
Add get-orig-source target.
Remove some cruft.


Modified: packages/osm-map-icons/trunk/debian/changelog
===
--- packages/osm-map-icons/trunk/debian/changelog   2008-07-06 21:26:00 UTC 
(rev 1698)
+++ packages/osm-map-icons/trunk/debian/changelog   2008-07-06 21:44:18 UTC 
(rev 1699)
@@ -1,5 +1,5 @@
-osm-map-icons (0.0.0.20080705-1) unstable; urgency=low
+osm-map-icons (0.0.0.20080706-1) unstable; urgency=low
 
   * Initial Release. (Closes: #439676)
 
- -- Andreas Putzo <[EMAIL PROTECTED]>  Sun, 06 Jul 2008 12:48:46 +
+ -- Andreas Putzo <[EMAIL PROTECTED]>  Sun, 06 Jul 2008 21:38:32 +

Modified: packages/osm-map-icons/trunk/debian/rules
===
--- packages/osm-map-icons/trunk/debian/rules   2008-07-06 21:26:00 UTC (rev 
1698)
+++ packages/osm-map-icons/trunk/debian/rules   2008-07-06 21:44:18 UTC (rev 
1699)
@@ -8,7 +8,9 @@
 # This has to be exported to make some magic below work.
 export DH_OPTIONS
 
-DESTDIR := $(CURDIR)/debian/tmp
+SVNREPO := http://svn.openstreetmap.org/applications/share/map-icons
+SVNREV := 8426
+DATE := $(shell date +%Y%m%d)
 
 build: build-arch build-indep
 
@@ -41,7 +43,6 @@
find $(CURDIR)/debian/osm-map-icons-scalable/usr/share/icons/map-icons/ 
-type f |xargs chmod 644
find $(CURDIR)/debian/osm-map-icons-square/usr/share/icons/map-icons/ 
-type f | xargs chmod 644
 
-
 install-arch:
 
 binary-common:
@@ -64,4 +65,23 @@
 binary-arch: build-arch install-arch
 
 binary: binary-arch binary-indep
-.PHONY: build clean binary-indep binary-arch binary install install-indep 
install-arch #PHONY_CONFIGURE#
+
+get-orig-source:
+   dh_testdir
+   test -d ../tarballs/. || mkdir -p ../tarballs
+   @echo Downloading osm-map-icons from $(SVNREPO)
+   svn -r $(SVNREV) export $(SVNREPO) 
../tarballs/osm-map-icons-0.0.0.$(DATE)
+   @echo Removing directories: debian nickw japan
+   rm -rf ../tarballs/osm-map-icons-0.0.0.$(DATE)/debian
+   rm -rf ../tarballs/osm-map-icons-0.0.0.$(DATE)/nickw
+   rm -rf ../tarballs/osm-map-icons-0.0.0.$(DATE)/japan
+   @echo Building snapshot tarball
+   tar czf ../tarballs/osm-map-icons_0.0.0.$(DATE).orig.tar.gz -C 
../tarballs osm-map-icons-0.0.0.$(DATE)
+   @echo Cleaning up
+   rm -rf ../tarballs/osm-map-icons-0.0.0.$(DATE)
+   @echo .
+   @echo To update debian/changelog type
+   @echo dch -v 0.0.0.$(DATE)-1
+   @echo .
+
+.PHONY: build clean binary-indep binary-arch binary install install-indep 
install-arch


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


[DebianGIS-dev] r1698 - in packages/osm-map-icons/trunk: . debian

2008-07-06 Thread nd-guest
Author: nd-guest
Date: 2008-07-06 21:26:00 + (Sun, 06 Jul 2008)
New Revision: 1698

Added:
   packages/osm-map-icons/trunk/debian/
   packages/osm-map-icons/trunk/debian/changelog
   packages/osm-map-icons/trunk/debian/compat
   packages/osm-map-icons/trunk/debian/control
   packages/osm-map-icons/trunk/debian/copyright
   packages/osm-map-icons/trunk/debian/osm-map-icons-classic.dirs
   packages/osm-map-icons/trunk/debian/osm-map-icons-classic.install
   packages/osm-map-icons/trunk/debian/osm-map-icons-common.docs
   packages/osm-map-icons/trunk/debian/osm-map-icons-common.examples
   packages/osm-map-icons/trunk/debian/osm-map-icons-scalable.dirs
   packages/osm-map-icons/trunk/debian/osm-map-icons-scalable.install
   packages/osm-map-icons/trunk/debian/osm-map-icons-square.dirs
   packages/osm-map-icons/trunk/debian/osm-map-icons-square.install
   packages/osm-map-icons/trunk/debian/rules
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: packages/osm-map-icons/trunk/debian
___
Name: mergeWithUpstream
   + 1

Added: packages/osm-map-icons/trunk/debian/changelog
===
--- packages/osm-map-icons/trunk/debian/changelog   
(rev 0)
+++ packages/osm-map-icons/trunk/debian/changelog   2008-07-06 21:26:00 UTC 
(rev 1698)
@@ -0,0 +1,5 @@
+osm-map-icons (0.0.0.20080705-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #439676)
+
+ -- Andreas Putzo <[EMAIL PROTECTED]>  Sun, 06 Jul 2008 12:48:46 +

Added: packages/osm-map-icons/trunk/debian/compat
===
--- packages/osm-map-icons/trunk/debian/compat  (rev 0)
+++ packages/osm-map-icons/trunk/debian/compat  2008-07-06 21:26:00 UTC (rev 
1698)
@@ -0,0 +1 @@
+5

Added: packages/osm-map-icons/trunk/debian/control
===
--- packages/osm-map-icons/trunk/debian/control (rev 0)
+++ packages/osm-map-icons/trunk/debian/control 2008-07-06 21:26:00 UTC (rev 
1698)
@@ -0,0 +1,57 @@
+Source: osm-map-icons
+Section: utils
+Priority: optional
+Maintainer: Debian GIS Project 
+Uploaders: Andreas Putzo <[EMAIL PROTECTED]>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.8.0
+Homepage: http://wiki.osm.org/index.php/map-icons
+Vcs-Browser: 
http://svn.debian.org/viewsvn/pkg-grass/packages/osm-map-icons/trunk
+Vcs-Svn: svn://svn.debian.org/svn/pkg-grass/packages/osm-map-icons/trunk
+
+Package: osm-map-icons-common
+Architecture: all
+Recommends: osm-map-icons-classic, osm-map-icons-square, osm-map-icons-scalable
+Description: Collection of map icons
+ This package provides a set of icons intended to be used
+ together with maps. Several point-of-interest categories
+ are covered like accommodation, education, food, health,
+ geocache, places, religion, shopping, etc.
+ .
+ This package contains files that are common for all icon sets.
+
+Package: osm-map-icons-classic
+Architecture: all
+Suggests: osm-map-icons-common
+Description: Collection of map icons
+ This package provides a set of icons intended to be used
+ together with maps. Several point-of-interest categories
+ are covered like accommodation, education, food, health,
+ geocache, places, religion, shopping, etc.
+ .
+ This package contains the classic set from the OpenStreetMap
+ project.
+
+Package: osm-map-icons-square
+Architecture: all
+Suggests: osm-map-icons-common
+Description: Collection of map icons
+ This package provides a set of icons intended to be used
+ together with maps. Several point-of-interest categories
+ are covered like accommodation, education, food, health,
+ geocache, places, religion, shopping, etc.
+ .
+ This package contains the square set from the OpenStreetMap
+ project.
+
+Package: osm-map-icons-scalable
+Architecture: all
+Suggests: osm-map-icons-common
+Description: Collection of map icons
+ This package provides a set of icons intended to be used
+ together with maps. Several point-of-interest categories
+ are covered like accommodation, education, food, health,
+ geocache, places, religion, shopping, etc.
+ .
+ This package contains the scalable set from the OpenStreetMap
+ project.

Added: packages/osm-map-icons/trunk/debian/copyright
===
--- packages/osm-map-icons/trunk/debian/copyright   
(rev 0)
+++ packages/osm-map-icons/trunk/debian/copyright   2008-07-06 21:26:00 UTC 
(rev 1698)
@@ -0,0 +1,17 @@
+This package was debianized by Andreas Putzo <[EMAIL PROTECTED]> on
+Sun Jul  6 14:04:17 UTC 2008
+
+It was downloaded using svn from
+http://svn.openstreetmap.org/applications/share/map-icons/>.
+
+The debian/ dir has been removed from the tarball.
+The directories japan/ and nickw/ have been removed from the tarball
+bec

[DebianGIS-dev] r1697 - packages/osm-map-icons

2008-07-06 Thread nd-guest
Author: nd-guest
Date: 2008-07-06 21:25:48 + (Sun, 06 Jul 2008)
New Revision: 1697

Added:
   packages/osm-map-icons/trunk/
Log:
Creating trunk directory


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


[DebianGIS-dev] r1696 - in packages: . osm-map-icons

2008-07-06 Thread nd-guest
Author: nd-guest
Date: 2008-07-06 21:25:35 + (Sun, 06 Jul 2008)
New Revision: 1696

Added:
   packages/osm-map-icons/
   packages/osm-map-icons/tags/
Log:
Creating osm-map-icons/tags/ directory.


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