Your message dated Sun, 20 Jun 2010 16:03:58 +0000
with message-id <[email protected]>
and subject line Bug#512282: fixed in filerunner 2.5.1-21
has caused the Debian Bug report #512282,
regarding filerunner: [PATCH] crashes selecting entry font with space in name
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.)


-- 
512282: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=512282
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: filerunner
Version: 2.5.1-20
Severity: minor

hi,

I wanted 'bitstream vera ...' and fr crashed. 
Seems attached patch does fix the problem.

thx
-- 
 paolo
 
 GPG/PGP id:0x3A47DE45  - B5F9 AAA0 44BD 2B63 81E0  971F C6C0 0B87 3A47 DE45
 - 9/11: the outrageous deception & coverup: http://journalof911studies.com -
--- /usr/bin/fr 2008-03-09 03:24:29.000000000 +0100
+++ /tmp/fr     2009-01-17 23:50:53.000000000 +0100
@@ -302,7 +302,7 @@
   listbox $w.top.list \
     -yscrollcommand "$w.top.scrollvert set" \
     -xscrollcommand "$w.top.scrollhoriz set" \
-    -font $config(gui,font) \
+    -font "$config(gui,font)" \
     -background $config(gui,color_bg) -foreground $config(gui,color_fg) \
     -selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg) \
     -width 70 \
@@ -399,7 +399,7 @@
   }
   if {$config(gui,font) != $glob(gui,font)} {
     foreach k $glob(gui,color_xx,winlist) {
-      catch {$k configure -font $config(gui,font)}
+      catch {$k configure -font "$config(gui,font)"}
     }
     set glob(gui,font) $config(gui,font)
   }
@@ -470,7 +470,7 @@
   listbox $w.top.list \
     -yscrollcommand "$w.top.scrollvert set" \
     -xscrollcommand "$w.top.scrollhoriz set" \
-    -font $config(gui,font) \
+    -font "$config(gui,font)" \
     -background $config(gui,color_bg) -foreground $config(gui,color_fg) \
     -selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg) \
     -width 70 \
@@ -566,18 +566,18 @@
   frame $glob(win,bottom).fcmdwin$inst
   set w $glob(win,bottom).fcmdwin$inst
 
-  text $w.text -relief sunken -bd 2 -yscrollcommand "$w.fr.scroll set" -height 
$config(shell,height,$inst) -font $config(gui,font) -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -selectbackground 
$config(gui,color_select_bg) -selectforeground $config(gui,color_select_fg)
+  text $w.text -relief sunken -bd 2 -yscrollcommand "$w.fr.scroll set" -height 
$config(shell,height,$inst) -font "$config(gui,font)" -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -selectbackground 
$config(gui,color_select_bg) -selectforeground $config(gui,color_select_fg)
   lappend glob(gui,color_xx,winlist) $w.text
   frame $w.fr -bd 0
   scrollbar $w.fr.scroll -command "$w.text yview" 
   frame $w.bot -bd 0
-  entry $w.bot.entry -relief ridge -font $config(gui,font) -background 
$config(gui,color_bg) \
+  entry $w.bot.entry -relief ridge -font "$config(gui,font)" -background 
$config(gui,color_bg) \
       -foreground $config(gui,color_fg) -selectbackground 
$config(gui,color_select_bg) -selectforeground $config(gui,color_select_fg) 
-highlightthickness 1 
   lappend glob(gui,color_xx,winlist) $w.bot.entry
   $w.text tag configure command -background $config(gui,color_cmd)
   lappend glob(gui,color_cmd,winlist) $w.text
   $w.text tag configure complete -background $config(gui,color_select_bg) 
-foreground $config(gui,color_select_fg)
-  label $w.bot.label -textvariable glob($inst,pwd) -font $config(gui,font) 
-relief ridge -padx 5
+  label $w.bot.label -textvariable glob($inst,pwd) -font "$config(gui,font)" 
-relief ridge -padx 5
   button $w.bot.max -bitmap @/usr/share/filerunner/bitmaps/max.bit \
     -command "MaxWin $w $inst" -bd 1
   button $w.bot.smaller -bitmap @/usr/share/filerunner/bitmaps/smaller.bit \
@@ -1122,7 +1122,7 @@
       -command "DoProtCmd \"set glob(forceupdate) 1; FTP_InvalidateCache; 
UpdateWindow $inst; set glob(forceupdate) 0\""
 
 
-  entry $glob(win,$inst).entry_dir -relief {ridge} -font $config(gui,font) \
+  entry $glob(win,$inst).entry_dir -relief {ridge} -font "$config(gui,font)" \
       -selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg) -background $config(gui,color_bg) \
       -foreground $config(gui,color_fg) -highlightthickness 1 
   lappend glob(gui,color_xx,winlist) $glob(win,$inst).entry_dir
@@ -1139,7 +1139,7 @@
     -xscrollcommand "$glob(win,$inst).frame_listb.scroll_horiz set" \
     -yscrollcommand "$glob(win,$inst).frame_listb.right.scroll_vert set" \
     -selectmode extended \
-    -font $config(gui,font) \
+    -font "$config(gui,font)" \
     -background $config(gui,color_bg) -foreground $config(gui,color_fg) \
     -selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
   lappend glob(gui,color_xx,winlist) $glob(win,$inst).frame_listb.listbox1
@@ -2378,7 +2378,7 @@
   wm geometry $w $config(geometry,textviewer)
 
   text $w.text -relief sunken -bd 2 -yscrollcommand "$w.fr.scroll set" 
-setgrid 1 \
-      -height 30 -font $config(gui,font) -background $config(gui,color_bg) \
+      -height 30 -font "$config(gui,font)" -background $config(gui,color_bg) \
       -foreground $config(gui,color_fg) -selectbackground 
$config(gui,color_select_bg) \
       -selectforeground $config(gui,color_select_fg) -highlightthickness 0
   frame $w.fr -borderwidth 0
@@ -2460,7 +2460,7 @@
   wm geometry $w $config(geometry,qedit)
 
   text $w.text -relief sunken -bd 2 -yscrollcommand "$w.fr.scroll set" 
-setgrid 1 \
-       -highlightthickness 0 -height 30 -font $config(gui,font) -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -selectbackground 
$config(gui,color_select_bg) -selectforeground $config(gui,color_select_fg)
+       -highlightthickness 0 -height 30 -font "$config(gui,font)" -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -selectbackground 
$config(gui,color_select_bg) -selectforeground $config(gui,color_select_fg)
   frame $w.fr -borderwidth 0
   scrollbar $w.fr.scroll -command "$w.text yview" 
   button $w.fr.quit -bitmap @/usr/share/filerunner/bitmaps/cross.bit -command 
"EditTextCheckPoint [Esc $filename] $w \"$scriptWhenDone\"" \
@@ -2527,7 +2527,7 @@
   wm transient $w [winfo toplevel [winfo parent $w]]
 
   frame $w.bot
-  entry $w.entry -highlightthickness 1 -font $config(gui,font) -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
+  entry $w.entry -highlightthickness 1 -font "$config(gui,font)" -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
   $w.entry delete 0 end
   $w.entry insert end $start_entry
 
@@ -2637,7 +2637,7 @@
   label $w.us -text Username:
   pack $w.us -side top -anchor w -padx 8
 
-  entry $w.entry -highlightthickness 1 -font $config(gui,font) -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
+  entry $w.entry -highlightthickness 1 -font "$config(gui,font)" -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
   $w.entry delete 0 end
   $w.entry insert end $start_entry
   pack $w.entry -anchor w -side top -padx 8 -pady 4 -expand 1 -fill x
@@ -2645,7 +2645,7 @@
   label $w.pw -text Password:
   pack $w.pw -side top -anchor w -padx 8
 
-  entry $w.entry2 -highlightthickness 1 -show "*" -font $config(gui,font) 
-background $config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
+  entry $w.entry2 -highlightthickness 1 -show "*" -font "$config(gui,font)" 
-background $config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
   $w.entry2 delete 0 end
   $w.entry2 insert end ""
   pack $w.entry2 -anchor w -side top -padx 8 -pady 4 -expand 1 -fill x
@@ -2731,7 +2731,7 @@
   label $w.info_text -justify left -text $info_text1 -wraplength 7i
   pack $w.info_text -anchor w -side top -padx 8 -pady 5
 
-  entry $w.entry -highlightthickness 1 -font $config(gui,font) -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
+  entry $w.entry -highlightthickness 1 -font "$config(gui,font)" -background 
$config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
   $w.entry delete 0 end
   $w.entry insert end $start_entry1
   pack $w.entry -anchor w -side top -padx 8 -pady 4 -expand 1 -fill x
@@ -2739,7 +2739,7 @@
   label $w.info_text2 -text $info_text2 -justify left -wraplength 7i
   pack $w.info_text2 -side top -anchor w -padx 8 -pady 5
 
-  entry $w.entry2 -highlightthickness 1 -show "*" -font $config(gui,font) 
-background $config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
+  entry $w.entry2 -highlightthickness 1 -show "*" -font "$config(gui,font)" 
-background $config(gui,color_bg) -foreground $config(gui,color_fg) -width 70 
-selectbackground $config(gui,color_select_bg) -selectforeground 
$config(gui,color_select_fg)
   $w.entry2 delete 0 end
   $w.entry2 insert end $start_entry2
   pack $w.entry2 -anchor w -side top -padx 8 -pady 4 -expand 1 -fill x
@@ -2968,7 +2968,7 @@
     set text "$text\n\n...etc..."
   }
   label $w.msg -justify left -text $text \
-      -font $config(gui,font) -wraplength 700 -bg white
+      -font "$config(gui,font)" -wraplength 700 -bg white
   #-Adobe-Times-Medium-R-Normal--*-180-*-*-*-*-*-*
   pack $w.msg -in $w.top -side right -expand 1 -fill both -padx 3m -pady 3m
   if {$bitmap != ""} {

--- End Message ---
--- Begin Message ---
Source: filerunner
Source-Version: 2.5.1-21

We believe that the bug you reported is fixed in the latest version of
filerunner, which is due to be installed in the Debian FTP archive:

filerunner_2.5.1-21.debian.tar.gz
  to main/f/filerunner/filerunner_2.5.1-21.debian.tar.gz
filerunner_2.5.1-21.dsc
  to main/f/filerunner/filerunner_2.5.1-21.dsc
filerunner_2.5.1-21_amd64.deb
  to main/f/filerunner/filerunner_2.5.1-21_amd64.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.
Neil Williams <[email protected]> (supplier of updated filerunner 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: Sun, 20 Jun 2010 14:12:42 +0100
Source: filerunner
Binary: filerunner
Architecture: source amd64
Version: 2.5.1-21
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[email protected]>
Changed-By: Neil Williams <[email protected]>
Description: 
 filerunner - X-Based FTP program and file manager
Closes: 512282
Changes: 
 filerunner (2.5.1-21) unstable; urgency=low
 .
   * QA upload.
   * Migrate to 3.0 quilt to handle existing changes and add
     new patches.
   * Bump to debhelper compat 5.
   * Apply patch to prevent crash when selecting entry font with
     space in font name. (Closes: #512282)
   * Drop watch file and homepage field, no such site.
Checksums-Sha1: 
 d425c035cdfc09b036cda6a107563ca460c77002 1029 filerunner_2.5.1-21.dsc
 2394043204608b6238ac1b279ddbadf50ed84f44 16348 
filerunner_2.5.1-21.debian.tar.gz
 ce8a7336237b57cf7d2f1f2838637cb0a23cb848 142166 filerunner_2.5.1-21_amd64.deb
Checksums-Sha256: 
 38c1f30f4428cb8e8cad39450c0037489500d5bef1b3ce3a475b2e0005248f66 1029 
filerunner_2.5.1-21.dsc
 910b5f92c06f2490b1a90967091fff2329e6456395b239f284fd875521b0570c 16348 
filerunner_2.5.1-21.debian.tar.gz
 350fd782ea653e3391e6b709e090aaa139b08993ec0306e27c890f91f2b549d4 142166 
filerunner_2.5.1-21_amd64.deb
Files: 
 cadeecea21fa77eca191562f83d2f33f 1029 net optional filerunner_2.5.1-21.dsc
 c11e79e4754e9c19746d010e86797e18 16348 net optional 
filerunner_2.5.1-21.debian.tar.gz
 aad7975716b8d9cbcfe7cdcc772e0489 142166 net optional 
filerunner_2.5.1-21_amd64.deb

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

iEYEARECAAYFAkweH58ACgkQiAEJSii8s+MMeACgp2QR9PEeZ8O3iA5cb2I7Iody
a8UAn2of6E339fmKI8jfXXJii/wuOCej
=wahz
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to