Your message dated Mon, 28 Apr 2008 21:17:19 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#466227: fixed in gpsdrive 2.10~pre4-3 has caused the Debian Bug report #466227, regarding gpsdrive-scripts: gpsdrive_mapnik_gentiles searches wrong osm.xml and osm-in.xml with errors to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 466227: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=466227 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems
--- Begin Message ---Package: gpsdrive-scripts Version: 2.10~pre4-1 Severity: normal Tags: patch --- Please enter the report below this line. --- For what is written in the README.Debian from package gpsdrive (~ line 40), gpsdrive_mapnik_gentiles should search osm.xml in user's home directory, when trying to generate tiles. But the hard-coded path present in the script points it to system wide DATA_DIR, which, I think, could be problematic in multi-user environments. Moreover, there is a little problem in osm-in.xml: a color in hexadecimal form lacks of the '#' before. A patch is attached, which should fix these two little issues. Thank you for your work and happy Debianing! Giovanni. --- System information. --- Architecture: i386 Kernel: Linux 2.6.22-3-686 Debian Release: lenny/sid 500 unstable www.debian-multimedia.org 500 unstable ftp.it.debian.org 500 testing security.debian.org 500 testing ftp.it.debian.org 500 stable wine.budgetdedicated.com 500 stable ftp.it.debian.org --- Package information. --- Depends (Version) | Installed =======================================-+-============== gpsdrive | 2.10~pre4-1 perl (>= 5.6.0-16) | 5.8.8-12 python2.5 | 2.5.1-7 python-imaging | 1.1.6-2 python-mapnik | 0.5.0-1 libdbi-perl | 1.602-1 libdbd-mysql-perl | 4.006-1 libdate-manip-perl | 5.48-3 libfile-slurp-perl | 9999.12-2 libmime-base64-perl | libtext-query-perl | 0.07-4 libtime-local-perl | 1.18-1 libwww-curl-perl | 3.02-3 libwww-mechanize-perl | 1.34-1 libxml-parser-perl | 2.36-1 libxml-simple-perl | 2.18-1 libxml-twig-perl | 1:3.32-1 libxml-writer-perl | 0.603-1 perlmagick | perl-tk | 1:804.027-8 -- Giovanni Mascellani <[EMAIL PROTECTED]> Pisa, Italy Web: http://giomasce.altervista.org SIP: [EMAIL PROTECTED] Jabber: [EMAIL PROTECTED] / [EMAIL PROTECTED] GPG: 0x5F1FBF70 (FP: 1EB6 3D43 E201 4DDF 67BD 003F FCB0 BB5C 5F1F BF70)diff -r gpsdrive-2.10~pre4.orig/debian/patches/10-mapnikdir.dpatch gpsdrive-2.10~pre4/debian/patches/10-mapnikdir.dpatch 8,9c8,9 < --- gpsdrive-2.10~pre4~/scripts/mapnik/Makefile.am 2007-09-14 21:47:06.000000000 +0000 < +++ gpsdrive-2.10~pre4/scripts/mapnik/Makefile.am 2007-10-16 08:22:45.000000000 +0000 --- > --- gpsdrive-2.10~pre4~/scripts/mapnik/Makefile.am 2007-09-14 23:47:06.000000000 +0200 > +++ gpsdrive-2.10~pre4/scripts/mapnik/Makefile.am 2008-02-17 11:24:31.000000000 +0100 30,31c30,31 < --- gpsdrive-2.10~pre4~/scripts/mapnik/osm-in.xml 2007-09-14 21:47:06.000000000 +0000 < +++ gpsdrive-2.10~pre4/scripts/mapnik/osm-in.xml 2007-10-16 08:24:20.000000000 +0000 --- > --- gpsdrive-2.10~pre4~/scripts/mapnik/osm-in.xml 2007-09-14 23:47:06.000000000 +0200 > +++ gpsdrive-2.10~pre4/scripts/mapnik/osm-in.xml 2008-02-17 11:25:02.000000000 +0100 130a131,139 > @@ -346,7 +346,7 @@ > <Filter>[amenity] = 'parking'</Filter> > <MaxScaleDenominator>25000</MaxScaleDenominator> > <LineSymbolizer> > - <CssParameter name="stroke">eeeed1</CssParameter> > + <CssParameter name="stroke">#eeeed1</CssParameter> > <CssParameter name="stroke-width">0.3</CssParameter> > </LineSymbolizer> > </Rule> 242,243c251,252 < --- gpsdrive-2.10~pre4~/src/mapnik.cpp 2007-09-14 21:47:13.000000000 +0000 < +++ gpsdrive-2.10~pre4/src/mapnik.cpp 2007-10-16 08:22:45.000000000 +0000 --- > --- gpsdrive-2.10~pre4~/src/mapnik.cpp 2007-09-14 23:47:13.000000000 +0200 > +++ gpsdrive-2.10~pre4/src/mapnik.cpp 2008-02-17 11:24:31.000000000 +0100 diff -r gpsdrive-2.10~pre4.orig/debian/patches/50-scripts.dpatch gpsdrive-2.10~pre4/debian/patches/50-scripts.dpatch 8,9c8,9 < --- gpsdrive-2.10~pre4~/scripts/mapnik/gpsdrive_mapnik_gentiles-in.py 2007-09-15 15:11:59.000000000 +0000 < +++ gpsdrive-2.10~pre4/scripts/mapnik/gpsdrive_mapnik_gentiles-in.py 2007-10-03 13:59:45.000000000 +0000 --- > --- gpsdrive-2.10~pre4~/scripts/mapnik/gpsdrive_mapnik_gentiles-in.py 2007-09-15 17:11:59.000000000 +0200 > +++ gpsdrive-2.10~pre4/scripts/mapnik/gpsdrive_mapnik_gentiles-in.py 2008-02-17 11:23:01.000000000 +0100 15a16,24 > @@ -166,7 +166,7 @@ > > home = os.environ['HOME'] > data = "@DATA_DIR@/mapnik" > - mapfile = data + "/osm.xml" > + mapfile = home + "/.gpsdrive/osm.xml" > tile_dir = home + "/.gpsdrive/maps/mapnik/" > mapkoordfile = home + "/.gpsdrive/maps/map_koord.txt" >signature.asc
Description: PGP signature
--- End Message ---
--- Begin Message ---Source: gpsdrive Source-Version: 2.10~pre4-3 We believe that the bug you reported is fixed in the latest version of gpsdrive, which is due to be installed in the Debian FTP archive: gpsdrive-scripts_2.10~pre4-3_all.deb to pool/main/g/gpsdrive/gpsdrive-scripts_2.10~pre4-3_all.deb gpsdrive_2.10~pre4-3.diff.gz to pool/main/g/gpsdrive/gpsdrive_2.10~pre4-3.diff.gz gpsdrive_2.10~pre4-3.dsc to pool/main/g/gpsdrive/gpsdrive_2.10~pre4-3.dsc gpsdrive_2.10~pre4-3_i386.deb to pool/main/g/gpsdrive/gpsdrive_2.10~pre4-3_i386.deb openstreetmap-map-icons-classic_2.10~pre4-3_all.deb to pool/main/g/gpsdrive/openstreetmap-map-icons-classic_2.10~pre4-3_all.deb openstreetmap-map-icons-scalable_2.10~pre4-3_all.deb to pool/main/g/gpsdrive/openstreetmap-map-icons-scalable_2.10~pre4-3_all.deb openstreetmap-map-icons-square_2.10~pre4-3_all.deb to pool/main/g/gpsdrive/openstreetmap-map-icons-square_2.10~pre4-3_all.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Andreas Putzo <[EMAIL PROTECTED]> (supplier of updated gpsdrive package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Wed, 26 Mar 2008 18:35:38 +0000 Source: gpsdrive Binary: gpsdrive gpsdrive-scripts openstreetmap-map-icons-classic openstreetmap-map-icons-square openstreetmap-map-icons-scalable Architecture: source i386 all Version: 2.10~pre4-3 Distribution: unstable Urgency: low Maintainer: Francesco Paolo Lovergine <[EMAIL PROTECTED]> Changed-By: Andreas Putzo <[EMAIL PROTECTED]> Description: gpsdrive - Car navigation system gpsdrive-scripts - Various scripts for gpsdrive openstreetmap-map-icons-classic - Collection of map icons openstreetmap-map-icons-scalable - Collection of map icons openstreetmap-map-icons-square - Collection of map icons Closes: 466227 472825 Changes: gpsdrive (2.10~pre4-3) unstable; urgency=low . * Fix regression of last upload in the mapnik handling. Mapnik no longer tolerates errors in the map config file. - Add 97-osmxml.dpatch to fix a syntax error and to comment the world_boundaries. (Closes: #472825) - Add 98-mapnik-exception.dpatch to handle errors more gracefully. - Add NEWS file to explain how to handle existing osm.xml files * Updated 50-scripts.dpatch (gpsdrive_mapnik_gentiles.py) to search for osm.xml in user's home directory. Thanks to Giovanni Mascellani. (Closes: #466227) Checksums-Sha1: b9d078a55fac2fb7a8f8a04e0782c9a90861a83d 1450 gpsdrive_2.10~pre4-3.dsc f3f4e8d39c647611c8d6d82732a6d01832ab2ac9 52868 gpsdrive_2.10~pre4-3.diff.gz 977a73dda3d7faf92b226c55011afa6faf56449a 2822568 gpsdrive_2.10~pre4-3_i386.deb 22a05cb0426f7f1b8a6bca989088035a6cd29e7f 151682 gpsdrive-scripts_2.10~pre4-3_all.deb 4f54c0e44f14f661d0bea0ce8600d5db040a2964 307952 openstreetmap-map-icons-classic_2.10~pre4-3_all.deb 6bd58fc76dcbebe73b769836b2c9cae983b0721b 351962 openstreetmap-map-icons-square_2.10~pre4-3_all.deb 678ebd04a6279e5d8b3efd226c03c66dc5d21824 172046 openstreetmap-map-icons-scalable_2.10~pre4-3_all.deb Checksums-Sha256: 93a711f936a1b7fe681943ae0b0b28dcf5a85d5bf01c98f00c0da4eb932f8080 1450 gpsdrive_2.10~pre4-3.dsc 2ce67d8459f8cf8759f5da8e08c26ffd8fde7ca7784e7b6aa5d3f58d858c3b03 52868 gpsdrive_2.10~pre4-3.diff.gz 853f221c361659b9f8c9f01e5cddadbd63b592938e8932464132526b1e3c8fbf 2822568 gpsdrive_2.10~pre4-3_i386.deb 27a52eabfd128f0da17d23158597bbb110b36a764504960099a0e60dc061530f 151682 gpsdrive-scripts_2.10~pre4-3_all.deb 1e3bbbfa65f092bb9ece5d8ab68223fa7b201aa99492c6b627a33abe3ce6f5e0 307952 openstreetmap-map-icons-classic_2.10~pre4-3_all.deb 25d244a7bb89afa1a67670e35851235f39e6282cd4191a8eafb74d085d884aa1 351962 openstreetmap-map-icons-square_2.10~pre4-3_all.deb 7506c1656d052d8a4408dde499fc4c61e07efe3de20ad83408bfd717882e89aa 172046 openstreetmap-map-icons-scalable_2.10~pre4-3_all.deb Files: 7ac690ca03b7b11008c5826f7e625a89 1450 utils optional gpsdrive_2.10~pre4-3.dsc d0683d904cd476e6aa811454f294cc6f 52868 utils optional gpsdrive_2.10~pre4-3.diff.gz 669035d634b12b7c1b8a062aec7d5166 2822568 utils optional gpsdrive_2.10~pre4-3_i386.deb 42a52b2f17590764d019d5df932fdf25 151682 utils optional gpsdrive-scripts_2.10~pre4-3_all.deb c05a33d3861646ff2690b806d398cc38 307952 utils optional openstreetmap-map-icons-classic_2.10~pre4-3_all.deb 5868febf88684f53b6cbaf0ac103f730 351962 utils optional openstreetmap-map-icons-square_2.10~pre4-3_all.deb e0adcb8fdf7b465e33010485522df99d 172046 utils optional openstreetmap-map-icons-scalable_2.10~pre4-3_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFIFjArpFNRmenyx0cRArN4AKCWa2J2tefMzKkwuoRmzqe4H7To/ACg20wI oyUfqb6230Auxu5DYb9FYY8= =DOjt -----END PGP SIGNATURE-----
--- End Message ---