Your message dated Sun, 26 Nov 2006 15:22:12 +0100 (CET)
with message-id <[EMAIL PROTECTED]>
has caused the Debian Bug report #400187,
regarding gettext: xgettext segfaults on .lisp files
to be marked as having been forwarded to the upstream software
author(s) [EMAIL PROTECTED]
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Hello.
I received this from the debian bug system.
The bug seems fixed in 0.16, but as we would like to release debian 4.0
sometime in December, I can't just upload 0.16 for debian unstable.
Would you happen to have a fix for this for gettext 0.15?
---------- Forwarded message ----------
From: Martin Pitt <[EMAIL PROTECTED]>
To: Debian BTS Submit <[EMAIL PROTECTED]>
Date: Fri, 24 Nov 2006 12:17:26 +0100
Subject: Bug#400187: gettext: xgettext segfaults on .lisp files
Package: gettext
Severity: important
Version: 0.15-2
While examining the FTBFS of uim:
../intltool-update fr.po
ERROR: xgettext failed to generate PO template file. Please consult
error message above if there is any.
I tracked this down to xgettext segfaulting while processing a .lisp
file. I tried it with several .lisp files, all of them caused a crash.
I attach an example file from uim, and stripped down the command for
reproducing:
$ xgettext --keyword=_ test.lisp
Segmentation fault (core dumped)
Thanks,
Martin
--
Martin Pitt http://www.piware.de
Ubuntu Developer http://www.ubuntu.com
Debian Developer http://www.debian.org
In a world without walls and fences, who needs Windows and Gates?
;;; generic-key-custom.scm: Customization variables for generic key bindings
;;;
;;; Copyright (c) 2003-2006 uim Project http://uim.freedesktop.org/
;;;
;;; All rights reserved.
;;;
;;; Redistribution and use in source and binary forms, with or without
;;; modification, are permitted provided that the following conditions
;;; are met:
;;; 1. Redistributions of source code must retain the above copyright
;;; notice, this list of conditions and the following disclaimer.
;;; 2. Redistributions in binary form must reproduce the above copyright
;;; notice, this list of conditions and the following disclaimer in the
;;; documentation and/or other materials provided with the distribution.
;;; 3. Neither the name of authors nor the names of its contributors
;;; may be used to endorse or promote products derived from this software
;;; without specific prior written permission.
;;;
;;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
IS'' AND
;;; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
;;; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
LIABLE
;;; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
;;; OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
;;; HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
;;; LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
;;; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
;;; SUCH DAMAGE.
;;;;
(require "i18n.scm")
(define-custom-group 'global-keys1
(_ "Global key bindings 1")
(_ "long description will be here."))
(define-custom-group 'global-keys2
(_ "Global key bindings 2")
(_ "long description will be here."))
(define-custom 'generic-on-key '("zenkaku-hankaku" "<Shift> ")
'(global-keys1)
'(key)
(_ "[Global] on")
(_ "long description will be here"))
(define-custom 'generic-off-key '("zenkaku-hankaku" "<Shift> ")
'(global-keys1)
'(key)
(_ "[Global] off")
(_ "long description will be here"))
(define-custom 'generic-begin-conv-key '(" ")
'(global-keys1)
'(key)
(_ "[Global] begin conversion")
(_ "long description will be here"))
(define-custom 'generic-commit-key '("<IgnoreCase><Control>j"
generic-return-key)
'(global-keys1)
'(key)
(_ "[Global] commit")
(_ "long description will be here"))
(define-custom 'generic-cancel-key '("escape" "<Control>["
"<IgnoreCase><Control>g")
'(global-keys1)
'(key)
(_ "[Global] cancel")
(_ "long description will be here"))
(define-custom 'generic-next-candidate-key '(" " "down"
"<IgnoreCase><Control>n")
'(global-keys1)
'(key)
(_ "[Global] next candidate")
(_ "long description will be here"))
(define-custom 'generic-prev-candidate-key '("up" "<IgnoreCase><Control>p")
'(global-keys1)
'(key)
(_ "[Global] previous candidate")
(_ "long description will be here"))
(define-custom 'generic-next-page-key '("next")
'(global-keys1)
'(key)
(_ "[Global] next page of candidate window")
(_ "long description will be here"))
(define-custom 'generic-prev-page-key '("prior")
'(global-keys1)
'(key)
(_ "[Global] previous page of candidate window")
(_ "long description will be here"))
;;
;; advanced
;;
(define-custom 'generic-beginning-of-preedit-key '("home"
"<IgnoreCase><Control>a")
'(global-keys2)
'(key)
(_ "[Global] beginning of preedit")
(_ "long description will be here"))
(define-custom 'generic-end-of-preedit-key '("end" "<IgnoreCase><Control>e")
'(global-keys2)
'(key)
(_ "[Global] end of preedit")
(_ "long description will be here"))
(define-custom 'generic-kill-key '("<IgnoreCase><Control>k")
'(global-keys2)
'(key)
(_ "[Global] erase after cursor")
(_ "long description will be here"))
(define-custom 'generic-kill-backward-key '("<IgnoreCase><Control>u")
'(global-keys2)
'(key)
(_ "[Global] erase before cursor")
(_ "long description will be here"))
(define-custom 'generic-backspace-key '("backspace" "<IgnoreCase><Control>h")
'(global-keys2)
'(key)
(_ "[Global] backspace")
(_ "long description will be here"))
(define-custom 'generic-delete-key '("delete" "<IgnoreCase><Control>d")
'(global-keys2)
'(key)
(_ "[Global] delete")
(_ "long description will be here"))
(define-custom 'generic-go-left-key '("left" "<IgnoreCase><Control>b")
'(global-keys2)
'(key)
(_ "[Global] go left")
(_ "long description will be here"))
(define-custom 'generic-go-right-key '("right" "<IgnoreCase><Control>f")
'(global-keys2)
'(key)
(_ "[Global] go right")
(_ "long description will be here"))
(define-custom 'generic-return-key '("return" "<IgnoreCase><Control>m")
'(global-keys2)
'(key)
(_ "[Global] return")
(_ "long description will be here"))
--- End Message ---