Bug#297246: pfe: FTBFS (amd64/gcc-4.0): invalid lvalue in increment

2005-02-27 Thread Andreas Jochens
Package: pfe
Severity: normal
Tags: patch

When building 'pfe' on amd64 with gcc-4.0,
I get the following error:

../../../pfe/core-ext.c:2692: error: invalid lvalue in increment
../../../pfe/core-ext.c:2692: warning: value computed is not used
../../../pfe/core-ext.c: In function 'p4_value_RT_SEE':
../../../pfe/core-ext.c:2748: warning: pointer targets in passing argument 2 of 
'__builtin_strncat' differ in signedness
../../../pfe/core-ext.c: In function 'p4_value_':
../../../pfe/core-ext.c:2770: error: invalid lvalue in increment
../../../pfe/core-ext.c:2770: warning: value computed is not used
../../../pfe/core-ext.c:2771: error: invalid lvalue in increment
../../../pfe/core-ext.c:2771: warning: value computed is not used
../../../pfe/core-ext.c: At top level:
../../../pfe/core-ext.c:2773: warning: pointer targets in initialization differ 
in signedness
make[4]: *** [core-ext.lo] Error 1
make[4]: Leaving directory `/pfe-0.33.34/Release/x86_64-unknown-linux-gnu/pfe'

With the attached patch 'pfe' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/pfe-0.33.34/pfe/def-comp.h ./pfe/def-comp.h
--- ../tmp-orig/pfe-0.33.34/pfe/def-comp.h  2003-09-26 17:16:12.0 
+
+++ ./pfe/def-comp.h2005-02-28 08:34:51.475876485 +
@@ -362,7 +362,7 @@
 #if   ! defined PFE_CALL_THREADING
 #define FX_POP_BODY_ADDR   (P4_WP_PFA)
 #define FX_POP_BODY_ADDR_(VARNAME) register p4cell* VARNAME = FX_POP_BODY_ADDR
-#define FX_POP_BODY_ADDR_p4_BODY   register p4cell* p4_BODY = FX_POP_BODY_ADDR
+#define FX_POP_BODY_ADDR_p4_BODY   p4cell* p4_BODY = FX_POP_BODY_ADDR
 #define FX_POP_BODY_ADDR_UNUSED
 #elif ! defined PFE_SBR_CALL_THREADING
 #define FX_POP_BODY_ADDR   ((p4cell*)(*IP++))
diff -urN ../tmp-orig/pfe-0.33.34/pfe/def-macro.h ./pfe/def-macro.h
--- ../tmp-orig/pfe-0.33.34/pfe/def-macro.h 2003-03-19 15:50:34.0 
+
+++ ./pfe/def-macro.h   2005-02-28 08:27:45.903019899 +
@@ -44,14 +44,7 @@
 #endif
 
 /* inc/decrement, push/pop of arbitrary types with arbitrary pointers */
-#if defined __GNUC__ && !defined __STRICT_ANSI__ && !defined __cplusplus
-/* Use non-ANSI extensions avoiding address-of operator: */
-#define P4_ADD(P,N)((char *)(P) += (N))
-#define P4_INC(P,T)(((T *)(P))++)
-#define P4_DEC(P,T)(--((T *)(P)))
-#define P4_INCR(P,T,N) (((T *)(P)) += (N))
-#define P4_DECR(P,T,N) (((T *)(P)) -= (N))
-#elif defined MSDOS
+#if defined MSDOS
 #define P4_ADD(P,N)((char *huge)(P) += (int)(N))
 #define P4_INC(P,T)(((T *huge)(P))++)
 #define P4_DEC(P,T)(--((T *huge)(P)))
@@ -272,11 +265,7 @@
 #define P4_IF_FP_(X)
 #endif
 
-#if defined __WATCOMC__ || defined _AIX_CC
 #define P4_VAR(_TYPE,_VAR) (*((_TYPE*)&(_VAR)))
-#else
-#define P4_VAR(_TYPE,_VAR)((_TYPE)(_VAR))
-#endif
 
 /[EMAIL PROTECTED]/
 #endif 
diff -urN ../tmp-orig/pfe-0.33.34/pfe/engine-set.c ./pfe/engine-set.c
--- ../tmp-orig/pfe-0.33.34/pfe/engine-set.c2003-10-02 14:59:10.0 
+
+++ ./pfe/engine-set.c  2005-02-28 08:28:14.900422865 +
@@ -601,7 +601,7 @@
p4_evaluate (p, n); /* directly from a C' based */
val = 0;/* application which did */
 default:/* call InitVM before to get */
-   /* an error occurred */ /* a new instance of a PFE */
+   break; /* an error occurred */  /* a new instance of a PFE */
 }   /* being put on hold for */
 PFE_VM_LEAVE(th);   /* being Exec'uted finally */
 return val;
diff -urN ../tmp-orig/pfe-0.33.34/pfe/fpnostack-ext.c ./pfe/fpnostack-ext.c
--- ../tmp-orig/pfe-0.33.34/pfe/fpnostack-ext.c 2003-03-21 12:41:42.0 
+
+++ ./pfe/fpnostack-ext.c   2005-02-28 08:31:56.800592038 +
@@ -670,7 +670,7 @@
  */
 FCode (p4_nofp_f_trunc_to_s)
 {
-double h = *FSP++;
+double h = *FSP; SP = (double *)SP + 1;
 *--SP = (p4cell) h;
 }
 
diff -urN ../tmp-orig/pfe-0.33.34/pfe/option-ext.c ./pfe/option-ext.c
--- ../tmp-orig/pfe-0.33.34/pfe/option-ext.c2003-06-26 16:21:11.0 
+
+++ ./pfe/option-ext.c  2005-02-28 08:28:55.764535337 +
@@ -274,7 +274,7 @@
 xt = p4_create_option (nm, l, sizeof(p4cell), opt);
 if (! xt) return 0; 
P4_XT_VALUE(xt) = FX_GET_RT (p4_value);
-return ((p4cell*) OPT.dp = defval );
+return ( OPT.dp = defval );
 }
 }
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297247: wavemon: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment

2005-02-27 Thread Andreas Jochens
Package: wavemon
Severity: normal
Tags: patch

When building 'wavemon' on amd64 with gcc-4.0,
I get the following error:

make[1]: Entering directory `/wavemon-0.4.0b'
cc -O2 -Wall   -c -o conf.o conf.c
cc -O2 -Wall   -c -o llist.o llist.c
llist.c: In function 'arg2element':
llist.c:355: error: invalid lvalue in assignment
make[1]: *** [llist.o] Error 1
make[1]: Leaving directory `/wavemon-0.4.0b'
make: *** [debian/stamp-makefile-build] Error 2

With the attached patch 'wavemon' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/wavemon-0.4.0b/llist.c ./llist.c
--- ../tmp-orig/wavemon-0.4.0b/llist.c  2002-12-21 14:39:33.0 +
+++ ./llist.c   2005-02-28 08:38:33.424036396 +
@@ -352,7 +352,7 @@
*((int *)l->e) = va_arg(*ap, int);
break;
case 's':   l->e = (void *)malloc(sizeof(char *));
-   (char *)l->e = strdup(va_arg(*ap, char 
*));
+   l->e = strdup(va_arg(*ap, char *));
break;
case 'f':   l->e = (void *)malloc(sizeof(double));
*((double *)l->e) = va_arg(*ap, double);


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297241: gnome-icon-theme: FTBFS: Missing Build-Depends

2005-02-27 Thread Loïc Minier
tags 297241 + fixed-upstream
thanks

Hi,

On Sun, Feb 27, 2005, Daniel Schepler wrote:
> checking for XML::Parser... configure: error: XML::Parser perl module is 
> required for intltool

 thanks, this is fixed in the SVN repo and an upload should follow
 soonish.

   Bye,

-- 
Loïc Minier <[EMAIL PROTECTED]>
"Neutral President: I have no strong feelings one way or the other."



Bug#297245: xserver-xfree86: Hangs on upgrade at Preconfiguring packages stage.

2005-02-27 Thread Thomas M Hughes
Package: xserver-xfree86
Version: 4.3.0.dfsg.1-10
Severity: important


When attempting `apt-get dist-upgrade' or 'apt-get install' for 
xserver-xfree86, apt-get hangs indefinitely making it impossible to 
upgrade the package.

-- Package-specific info:
Contents of /var/lib/xfree86/X.roster:
xserver-xfree86

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxrwxrwx  1 root root 20 2003-10-13 01:00 /etc/X11/X -> /usr/bin/X11/XFree86
-rwxr-xr-x  1 root root 1745740 2004-12-15 11:19 /usr/bin/X11/XFree86

Contents of /var/lib/xfree86/XF86Config-4.roster:
xserver-xfree86

VGA-compatible devices on PCI bus:
:01:05.0 VGA compatible controller: nVidia Corporation NV18 [GeForce4 MX 
440 AGP 8x] (rev a4)

/etc/X11/XF86Config-4 does not match checksum in 
/var/lib/xfree86/XF86Config-4.md5sum.

XFree86 X server configuration file status:
-rw-r--r--  1 root root 3432 2005-01-28 20:03 /etc/X11/XF86Config-4

Contents of /etc/X11/XF86Config-4:
# XF86Config-4 (XFree86 X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 > /var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "Files"
FontPath"unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/lib/X11/fonts/CID"
FontPath"/usr/lib/X11/fonts/Speedo"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"extmod"
Load"glx"
Load"freetype"
Load"int10"
Load"record"
Load"speedo"
Load"type1"
Load"vbe"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "pc104"
Option  "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
Option  "Emulate3Buttons"   "true"
Option  "ZAxisMapping"  "4 5"
EndSection

Section "Device"
Identifier  "nVidia GeForce 4"
Driver  "nvidia"
Screen  0
BusID   "PCI:1:5:0"
EndSection

Section "Device"
Identifier  "nvidia1"
Driver  "nvidia"
Screen  1
BusID   "PCI:1:5:0"
EndSection

Section "Monitor"
Identifier  "Generic Monitor"
HorizSync   30-107
VertRefresh 50-85
Option  "DPMS"
EndSection

Section "Monitor"
Identifier  "Monitor1"
HorizSync   30-50
VertRefresh 60
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "nVidia GeForce 4"
Monitor "Generic Monitor"
DefaultDepth24
SubSection "Display"
Depth   1
Modes   "1600x1200" "1280x1024"
EndSubSection
SubSection "Display"
Depth   4
Modes   "1600x1200" "1280x1024"
EndSubSection
SubSection "Display"
Depth   8
Modes   "1600x1200" "1280x1024"
EndSubSection
SubSection "Display"
Depth   15
Modes   "1600x1200" "1280x1024"
EndSubSection
SubSection "Display"
Depth   16
Modes   "1600x1200" "1280x1024"
EndSubSection
SubSection "Display"
Depth   24
Modes   "1600x1200" "1280x1024"
   

Bug#297191: gnome-media: cddb-slave2 doesn't handle multiple exact CDDB matches

2005-02-27 Thread Loïc Minier
forwarded 297191 http://bugzilla.gnome.org/show_bug.cgi?id=168691
tags 297191 + patch
thanks

On Sun, Feb 27, 2005, Lorenzo Colitti wrote:
> [Also submitted to GNOME as http://bugzilla.gnome.org/show_bug.cgi?id=168691 ]
> 
> If I use gnome-cd to play a CD which has multiple exact matches in the CDDB
> database, gnome-cd does not show the name of the CD. This is because
> cddb-slave2 does not handle the "multiple exact matches" response (code 210 in
> the CDDB protocol). It handles the "multiple inexact matches" response (code
> 211) fine and correctly prompts the user to choose.
> 
> Examples of discs affected are:
> 
> Selling England by the Pound (Genesis)
> Fugazi(Marillion)
> etc.
> 
> The attached patch fixes the problem for me.
> 
> -- System Information:
> Debian Release: 3.1
>   APT prefers unstable
>   APT policy: (500, 'unstable')
> Architecture: i386 (i686)
> Kernel: Linux 2.6.11-rc4-swsusp-2.1.7
> Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
> 
> Versions of packages gnome-media depends on:
> ii  gstreamer0.8-alsa [g 0.8.7-3 ALSA plugin for GStreamer
> ii  gstreamer0.8-artsd [ 0.8.7-3 aRtsd plugin for GStreamer
> ii  gstreamer0.8-esd [gs 0.8.7-3 Enlightened Sound Daemon plugin 
> fo
> ii  gstreamer0.8-jack [g 0.8.7-3 JACK plugin for GStreamer
> ii  gstreamer0.8-misc0.8.7-3 Collection of various GStreamer 
> pl
> ii  gstreamer0.8-oss [gs 0.8.7-3 OSS plugin for GStreamer
> ii  libart-2.0-2 2.3.17-1Library of functions for 2D 
> graphi
> ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
> ii  libaudiofile00.2.6-5 Open-source version of SGI's 
> audio
> ii  libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
> ii  libbonoboui2-0   2.8.1-1 The Bonobo UI library
> ii  libc62.3.2.ds1-20GNU C Library: Shared libraries 
> an
> ii  libesd-alsa0 [libesd 0.2.35-2Enlightened Sound Daemon (ALSA) 
> - 
> ii  libgail-common   1.8.2-1 GNOME Accessibility 
> Implementation
> ii  libgail171.8.2-1 GNOME Accessibility 
> Implementation
> ii  libgconf2-4  2.8.1-4 GNOME configuration database 
> syste
> ii  libgcrypt11  1.2.0-11LGPL Crypto library - runtime 
> libr
> ii  libglade2-0  1:2.4.2-1   library to load .glade files at 
> ru
> ii  libglib2.0-0 2.6.2-1 The GLib library of C routines
> ii  libgnome-keyring00.4.1-1 GNOME keyring services library
> ii  libgnome2-0  2.8.1-2 The GNOME 2 library - runtime 
> file
> ii  libgnomecanvas2-02.8.0-1 A powerful object-oriented 
> display
> ii  libgnomeui-0 2.8.1-1 The GNOME 2 libraries (User 
> Interf
> ii  libgnomevfs2-0   2.8.4-1 The GNOME virtual file-system 
> libr
> ii  libgnutls11  1.0.16-13   GNU TLS library - runtime library
> ii  libgpg-error01.0-1   library for common error values 
> an
> ii  libgstreamer-gconf0. 0.8.7-3 GConf support for GStreamer
> ii  libgstreamer-plugins 0.8.7-3 Various GStreamer libraries and 
> li
> ii  libgstreamer0.8-00.8.9-1 Core GStreamer libraries, 
> plugins,
> ii  libgtk2.0-0  2.6.2-3 The GTK+ graphical user 
> interface 
> ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
> ii  libjpeg626b-9The Independent JPEG Group's 
> JPEG 
> ii  liborbit21:2.10.5-0.1libraries for ORBit2 - a CORBA 
> ORB
> ii  libpango1.0-01.8.0-3 Layout and rendering of 
> internatio
> ii  libpopt0 1.7-5   lib for parsing cmdline 
> parameters
> ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session 
> Management
> ii  libtasn1-2   0.2.10-4Manage ASN.1 structures (runtime)
> ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client 
> li
> ii  libxml2  2.6.16-3GNOME XML library
> ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) 
> configu
> ii  zlib1g   1:1.2.2-4   compression library - runtime
> 
> -- no debconf information



-- 
Loïc Minier <[EMAIL PROTECTED]>
"Neutral President: I have no strong feelings one way or the other."



Bug#297244: libgtk2.0-dev: new version 2.6.2-3 contains static libs with debug info

2005-02-27 Thread Fabien COUTANT
Package: libgtk2.0-dev
Version: 2.4.14-2
Severity: normal


When I examined upgrading Gtk+ to 2.6.x yesterday, I got stopped by seeing
it required 30MB more than the previous (2.4.x) version.
After investigating I tracked this down to the libgtk2.0-dev package, which
contains huge lib*.a files, far bigger than their equivalents in the 2.4
version.  Those files must have been built with debug information, because
I don't think Gtk has grown so much between 2.4 and 2.6 series.
Debug libraries should go to libgtk2.0-dbg, not -dev.  -dev should contain
static libraries, but without debug info so they keep a reasonable size.

Faulty version (since I didn't upgrade the report doesn't show useful
info):  2.6.2-3

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-1-k7-smp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libgtk2.0-dev depends on:
ii  libatk1.0-dev1.8.0-4 Development files for the ATK acce
ii  libglib2.0-dev   2.6.2-1 Development files for the GLib lib
ii  libgtk2.0-0  2.4.14-2The GTK+ graphical user interface 
ii  libpango1.0-dev  1.8.0-3 Development files for the Pango
ii  libx11-dev   4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext-dev  4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  pkg-config   0.15.0-4Manage compile and link flags for 
ii  xlibs-dev4.3.0.dfsg.1-10 X Window System client library dev

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#294175: unable to remove package

2005-02-27 Thread Steve Langasek
Hi Cesar,

> Here: 
> http://users.evtek.fi/~k0400388/debian/mozilla-firefox-locale-all/1.0lang20041216/

> there is updated packages that solve this bug. Please, feel free to upload 
> them if you are a Debian developer.

$ wget 
http://users.evtek.fi/~k0400388/debian/mozilla-firefox-locale-all/1.0lang20041216/mozilla-firefox-locale-all_1.0lang20041216-3.diff.gz
--22:45:21--
http://users.evtek.fi/%7Ek0400388/debian/mozilla-firefox-locale-all/1.0lang20041216/mozilla-firefox-locale-all_1.0lang20041216-3.diff.gz
   => `mozilla-firefox-locale-all_1.0lang20041216-3.diff.gz'
Resolving users.evtek.fi... 195.148.144.3
Connecting to users.evtek.fi[195.148.144.3]:80... connected.
HTTP request sent, awaiting response... 403 Forbidden
22:45:22 ERROR 403: Forbidden.
$

Thanks,
-- 
Steve Langasek
postmodern programmer


signature.asc
Description: Digital signature


Bug#297243: lirc-modules-source: can't build atiusb module

2005-02-27 Thread Todd Courtnage
Package: lirc-modules-source
Version: 0.7.1pre1-2
Severity: normal

There is no ability to build the atiusb module.  Debconf doesn't offer 
the option to build the atiusb module.  The Makefile doesn't have atiusb 
as a build target.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages lirc-modules-source depends on:
ii  debconf [debconf-2.0] 1.4.46 Debian configuration management sy
ii  debhelper 4.2.31 helper programs for debian/rules
ii  debianutils   2.13.0 Miscellaneous utilities specific t

-- debconf information:
  lirc-modules-source/use_lirc_hints: true
  lirc-modules-source/parallel_irq: 7
* lirc-modules-source/do-build: false
  lirc-modules-source/parallel_timer: 65536
  lirc-modules-source/serial_transmitter: true
  lirc-modules-source/not_needed:
  lirc-modules-source/serial_port: 0x2f8
* lirc-modules-source/drivers:
  lirc-modules-source/serial_irq: 3
  lirc-modules-source/serial_type: Other
  lirc-modules-source/kernel-source: /usr/src/linux/
  lirc-modules-source/sir_port: 0x2f8
  lirc-modules-source/parallel_port: 0x378
* lirc-modules-source/what_next:
  lirc-modules-source/sir_type: Other
  lirc-modules-source/serial_softcarrier: false
  lirc-modules-source/kernel-source-not-found:
  lirc-modules-source/sir_irq: 3


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297080: gauche-gl: Gauche-gl in testing installs for different version than others / gauche

2005-02-27 Thread NIIBE Yutaka
On Sun, 27 Feb 2005 00:50:36 +0200
Harri Haataja <[EMAIL PROTECTED]> wrote:
 > All other packages seem to fill 0.7.4.2, but gauche-gl uses 0.8.3.
 > 
 > I suppose this is some kind of an api version mixup in the builds.
 > I'm afraid I can't figure out what, if anything, README.Debian is
 > saying about this.
 > Any way, it would be nice to be able to load the extension like the
 > docs say. Or at least have this and a workaround explained in the docs.

Sorry for your inconvenience.  Let me explain the sisutation.

YAEGASHI Takeshi has tried to upload newer gauche 0.8.3, and we talked
that the impact will be minimum when we upload together newer gauche
and packages which depends on gauche at the same time.

I built gauche-gl and gauche-gtk with newer gauche (0.8.3), and asked
Takeshi to upload them.

However, with new upload policy, newer gauche has put into new queue
because of the change of packaging (split to -dbm, -dev, and -doc
packages), while only gauche-gtk and gauche-gl went normally.

So, we intended less impact, but in fact, caused the mess.

I should have waited the newer gauche upload, and I should have
specified build dependency and/or dependency to newer gauche.

I wish the newer gauche will be available soon.  Then, this bug
will be closed.
-- 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297039: (no subject)

2005-02-27 Thread Nikolai Prokoschenko
On Feb 27, 2005 at 12:56:45PM +, Christian Mack wrote:

> >browser language detection and redirection using Netscape's and
> >Microsoft's proprietary (as is 'not part of standard') JavaScript objects
> >navigator.browserLanguage and navigator.language.
> Uurgh, don't do this!
> Think of all people which disable JavaScript (or use lynx ;-)

That's why probably the combination of both should be used.

> Does this work with Opera at all?

According to Google, yes. I know it's not a good thing to support
non-conforming elements though, but in this case we do not have a choice.


-- 
Nikolai Prokoschenko 
[EMAIL PROTECTED] / Jabber: [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#296403: Bug#297198: does not restart after upgrade

2005-02-27 Thread sean finney
hi guys,

i looked a little more into this...

On Sun, Feb 27, 2005 at 08:31:27PM -0500, Joe Drew wrote:
> + '[' -f /etc/mysql/dpkg__mysql_should_be_started ']'
> + exit 0

so that file wasn't there because it's only created by the preinst
script during fresh installs.  

christian:  i looked through README.maintainer and i'm still not
quite sure why we need this test logic at all.  if we really do need
it, i think the following would fix it:

--- mysql-server-4.1.preinst.old2005-02-28 00:56:51.0
-0500
+++ mysql-server-4.1.preinst2005-02-28 00:57:16.0 -0500
@@ -101,7 +101,7 @@
   | xargs -0 --no-run-if-empty chgrp mysql
 
 # See debian/README.Maintainer for explanations.
-if [ "$1" = "install" ]; then
+if [ "$1" = "install" -o "$1" = "upgrade" ]; then
   touch /etc/mysql/dpkg__mysql_should_be_started
 fi

though you would know better than i.


sean

-- 


signature.asc
Description: Digital signature


Bug#297242: menu: [INTL:zh_TW] Programs translation to Traditional Chinese

2005-02-27 Thread kanru chen
Package: apt-listchanges
Version: N/A
Severity: wishlist
Tags: patch l10n

Please find attached the Traditional Chinese program translation.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=zh_TW.UTF-8, LC_CTYPE=zh_TW.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to zh_TW.UTF-8)
# Traditional Chinese translation to apt-listchanges
# Kanru Chen <[EMAIL PROTECTED]>, 2005
#
msgid ""
msgstr ""
"Project-Id-Version: apt-listchanges\n"
"POT-Creation-Date: Sun Feb 17 01:09:48 2002\n"
"PO-Revision-Date: 2005-02-28 13:48+0800\n"
"Last-Translator: Kanru Chen <[EMAIL PROTECTED]>\n"
"Language-Team: Chinese/Traditional <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.4\n"


#: ../apt-listchanges:109
msgid "%s: will be newly installed"
msgstr "%sïåèåæåè"

#: ../apt-listchanges:121
msgid "%s: Version %s has already been seen"
msgstr "%sï%s çæåçèçéä"

#: ../apt-listchanges:147
msgid "Changes for %s"
msgstr "%s çæè"

#: ../apt-listchanges:156
msgid "Informational notes"
msgstr "èæåå"

#: ../apt-listchanges:177
msgid "didn't find any valid .deb archives"
msgstr "æææåääææç .deb ææ"

#: ../apt_listchanges.py:184
msgid ""
"Wrong or missing VERSION from apt pipeline\n"
"(is Dpkg::Tools::Options::/usr/bin/apt-listchanges::Version set to 2?)\n"
msgstr ""
"å apt åäçèæçåçæèææååéèççæè\n"
"(Dpkg::Tools::Options::/usr/bin/apt-listchanges::Version èèç 2 äåï)\n"

#: ../apt_listchanges.py:225
msgid "Mailing changelogs to %s"
msgstr "åæèçé(changelogs)åç %s"

#: ../apt_listchanges.py:228
msgid "apt-listchanges output for %s"
msgstr "%s ç apt-listchanges èå"

#: ../apt_listchanges.py:239
msgid "The newt frontend is deprecated, using pager"
msgstr "newt äéåèåéïæçåéå"

#: ../apt_listchanges.py:266
msgid "Do you want to continue? [Y/n]? "
msgstr "ææççåï[Y/n]ï"

#: ../apt_listchanges.py:275 ../apt_listchanges.py:301
#: ../apt_listchanges.py:306
msgid "Reading changelogs"
msgstr "èåæèçé(changelogs)"

#: ../apt_listchanges.py:306
msgid "Done"
msgstr "åæ"

#: ../apt_listchanges.py:343
msgid "%s exited with status %d"
msgstr "%s äçæ %d éå"



Bug#297101: Activates "find" when I type a single quote

2005-02-27 Thread Daniel Burrows
On Sunday 27 February 2005 11:46 pm, Eric Dorland wrote:
> Pressing ' does indeed start a search for me as well, but not when I
> have a test field focused. Are you sure that's the behavior you're
> seeing? What do you have set in your advanced preferences related to
> find?

  Yes -- I'll be typing along in a text field and end up with "it" in the text 
field and "s a real nuisance" in the search bar.  It doesn't seem to happen 
all the time, though; last time it happened was yesterday when I was 
submitting a bug report in Bugzilla (but I just pulled up another Bugzilla 
page and couldn't reproduce it).

  Daniel

-- 
/- Daniel Burrows <[EMAIL PROTECTED]> -\
|   "Debian developers have many superpowers, but   |
|time travel is not one of them."   |
|  -- Richard Braakman  |
\ Evil Overlord, Inc: http://www.eviloverlord.com --/


pgpajP4twrKtM.pgp
Description: PGP signature


Bug#297205: gaim X usage idle time missing

2005-02-27 Thread Robert McQueen
Sean Egan wrote:
As Ari pointed out, this is a compile-time option. The only possibility
is that he's not using the Gaim package, but a self-compiled Gaim.
-s.
He *is* using the Gaim package, I've compiled it incorrectly. :(
Regards,
Rob
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#297241: gnome-icon-theme: FTBFS: Missing Build-Depends

2005-02-27 Thread Daniel Schepler
Package: gnome-icon-theme
Version: 2.8.0-3
Severity: serious

>From my build log (reproduced using pbuilder in an i386 chroot):

...
checking whether to enable maintainer-specific portions of Makefiles... no
checking for perl... /usr/bin/perl
checking for XML::Parser... configure: error: XML::Parser perl module is 
required for intltool
make: *** [config.status] Error 1

This means you're missing a Build-Depends on either intltool or
libxml-parser-perl, depending on whom you talk to.

-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.9-9-amd64-k8
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8)

Versions of packages gnome-icon-theme depends on:
ii  hicolor-icon-theme0.7-1  default fallback theme for FreeDes

-- no debconf information

-- 
Daniel Schepler  "Please don't disillusion me.  I
[EMAIL PROTECTED]haven't had breakfast yet."
 -- Orson Scott Card


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#257384: please split out feature request

2005-02-27 Thread Janusz S. Bień
On Tue, 22 Feb 2005  Barak Pearlmutter <[EMAIL PROTECTED]> wrote:

> I'm in the process of adding the patch above to the man pages.
> When this uploads, it will close this bug report.

OK


> If you want to keep the "feature request" part of this alive, please
> refile it separately.  You might be better off filing it upstream
> though; it is much more likely to get attention there.

OK, but first I will wait for the answers to the more important
questions posted on sourceforge forum recently.

Best regards

Janusz

-- 
 ,   
dr hab. Janusz S. Bien, prof. UW -  Uniwersytet Warszawski (Katedra Lingwistyki 
Formalnej)
Prof. Janusz S. Bien - Warsaw Uniwersity (Chair of Formal Linguistics)
[EMAIL PROTECTED], [EMAIL PROTECTED], http://www.mimuw.edu.pl/~jsbien/, 
http://www.klf.uw.edu.pl


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#295680: libc6: getgrname returns a result that doesn't belong to /etc/group

2005-02-27 Thread Vincent Lefevre
On 2005-02-28 10:12:14 +0900, GOTO Masanori wrote:
> At Thu, 17 Feb 2005 13:37:25 +0100,
> Vincent Lefevre wrote:
> > The getgrname(3) man page says:
> > 
> >   The getgrnam() function returns a pointer to a structure containing the
> >   group information from /etc/group for the entry that matches the  group
> >   name name.
> > 
> > But here, the getgrname function returns a result that doesn't belong
> > to /etc/group, which seems to lead by side effects to a security hole
> > (more details below).
> 
> Does this manpage say correctly?  i.e. Is getgrnam tightly coupled
> with /etc/group?

What do you mean?

> > It gives here, where slocate is group 21 in NIS:
> > 
> > $ ./grname slocate
> > 21 (slocate)
> > $ grep slocate /etc/group
> > zsh: exit 1 grep slocate /etc/group
> > $ grep 21 /etc/group
> > fax:x:21:
> > 
> > As a consequence:
> > 
> > # touch blah
> > # chown root.slocate blah
> > # ls -l blah
> > -rw-r--r--  1 root fax 0 2005-02-17 13:30:13 blah
> >^^^
> > 
> > This could also explain why groupadd (to add a group to /etc/group)
> > fails if a group with the same name exists via NIS.
> 
> I guess you specify in /etc/nsswitch.conf that nis is prior than
> files for group lookup.

My /etc/nsswitch.conf contains:

group:  files nis

-- 
Vincent Lefèvre <[EMAIL PROTECTED]> - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / SPACES project at LORIA


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297240: PCMCIA WLAN card not registering - fix included.

2005-02-27 Thread Mike Hoye
Package: hotplug
Version: 0.0.20040329-17

Description: Plugging in my Asus W-100 Wireless lan card does not result
in a working network connection. Cardinfo can tell that it's there, 
dmesg doesn't report that it's been plugged in.

The source of the problem is that /etc/pcmcia/config contains the
correct card information, as follows:

card "ASUS SpaceLink WL-100"
  manfid 0x02aa, 0x0002
  bind "orinoco_cs"

but in when it gets to the fifth from last line, 

source ./*.conf 

that correct information is superceded by this information in
wlan-ng.conf, which is incorrect:

card "ASUS WL-100 802.11b WLAN  PC Card"
  version "ASUS", "802_11b_PC_CARD_25"
  bind "prism2_cs"

I only have the orinoco modules, not the prism modules, on my system;
my understanding was that the Orinoco modules had completely replaced
the older prism2 modules. 

Deleting those last three lines from wlan-ng.conf and restarting 
the hotplug services solves the problem, and now my wireless lan 
works correctly right away.

My laptop is a Knoppix-3.7 install that has been upgraded to 
Debian Sid.

-- 
Mike Hoye


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297101: Activates "find" when I type a single quote

2005-02-27 Thread Eric Dorland
* Daniel Burrows ([EMAIL PROTECTED]) wrote:
> Package: mozilla-firefox
> Version: 1.0+dfsg.1-6
> Severity: normal
> 
>   For some reason, mozilla-firefox has started entering "find" mode when I 
> type a single quote/apostrophe (ie, ').  This is very annoying, as it makes 
> it almost impossible to type English into text entry fields, as every time 
> you need to apostrophize something the Find bar pops up and steals focus.

Pressing ' does indeed start a search for me as well, but not when I
have a test field focused. Are you sure that's the behavior you're
seeing? What do you have set in your advanced preferences related to
find?

-- 
Eric Dorland <[EMAIL PROTECTED]>
ICQ: #61138586, Jabber: [EMAIL PROTECTED]
1024D/16D970C6 097C 4861 9934 27A0 8E1C  2B0A 61E9 8ECF 16D9 70C6

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS d- s++: a-- C+++ UL+++ P++ L++ E++ W++ N+ o K- w+ 
O? M++ V-- PS+ PE Y+ PGP++ t++ 5++ X+ R tv++ b+++ DI+ D+ 
G e h! r- y+ 
--END GEEK CODE BLOCK--


signature.asc
Description: Digital signature


Bug#297238: Doesn't install menu entry for `dotty'

2005-02-27 Thread Kero-Chan
Package: graphviz
Version: all

The package doesn't add the entry for `dotty' to the menu(3). Dotty is
a visual graph editor included with graphviz.

Thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297239: Doesn't install menu entry

2005-02-27 Thread Kero-Chan
Package: sunclock
Version: all

The package doesn't add an entry to the menu(3). Sunclock shows the
current illumination of Earth.

Thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#295523: mozilla-firefox: colors changed when exporting to a machine of different endiannes

2005-02-27 Thread Eric Dorland
* Santiago Garcia Mantinan ([EMAIL PROTECTED]) wrote:
> > I don't really understand how this is an issue with firefox. Isn't
> > this more a bug in the X server? 
> 
> Well, if all the other programs behave well, and firefox is the only one
> that doesn't, to me it looks like it is a problem with firefox, but I really
> cannot tell.

Did you check the X bugs for anything similar? 

-- 
Eric Dorland <[EMAIL PROTECTED]>
ICQ: #61138586, Jabber: [EMAIL PROTECTED]
1024D/16D970C6 097C 4861 9934 27A0 8E1C  2B0A 61E9 8ECF 16D9 70C6

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS d- s++: a-- C+++ UL+++ P++ L++ E++ W++ N+ o K- w+ 
O? M++ V-- PS+ PE Y+ PGP++ t++ 5++ X+ R tv++ b+++ DI+ D+ 
G e h! r- y+ 
--END GEEK CODE BLOCK--


signature.asc
Description: Digital signature


Bug#297237: moodle: World-readable password

2005-02-27 Thread Jeroen Vermeulen
Package: moodle
Version: 1.4.3-1
Severity: normal


Configuration stored in /etc/moodle/config.php includes a database
password.  The file is installed as readable by all users.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-truffle1
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages moodle depends on:
ii  apache2-mpm-prefork [httpd]   2.0.53-4   traditional model for Apache2
ii  debconf [debconf-2.0] 1.4.45 Debian configuration management sy
ii  mimetex   1.50-1 LaTeX math expressions to anti-ali
ii  php4  4:4.3.10-7 server-side, HTML-embedded scripti
ii  php4-gd   4:4.3.10-7 GD module for php4
ii  php4-pgsql3:4.3.10-2 PostgreSQL module for php4
ii  wget  1.9.1-10   retrieves files from the web
ii  wwwconfig-common  0.0.42 Debian web auto configuration

-- debconf information excluded


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#293810: FIREFOX_DSP="esddsp" does not work and will hang Firefox on closing pages with sound

2005-02-27 Thread Eric Dorland
* EspeonEefi ([EMAIL PROTECTED]) wrote:
> On Sun, 2005-02-06 at 01:45 -0500, Eric Dorland wrote:
> > Works fine for me. Are you sure esd is running? Do you have
> > esound-clients installed? Does sound work in other apps?
> > 
> 
> I do have esound-clients installed. I'm almost certain esd is running,
> as sound works for other apps, including general GNOME sounds,
> Evolution, Gaim, and gstreamer, which I've set to use esdsink.
> 
> >From Googling, I know at least in the semi-recent past, people have had
> the same problem. For example,
> http://lists.debian.org/debian-user/2004/08/msg06171.html is an August
> 2004 post to debian-user detailing one person's workaround for this bug.
> http://lists.debian.org/debian-user/2005/01/msg02240.html is the most
> recent thread that Google can find for this; this thread is from the
> middle of January. (The Google search used was "site:lists.debian.org
> firefox debian esd flash".)
> 
> Hmm...I do have udev installed, if that makes any difference.
> 
> Feel free to ask for any other information you might want.

Just to refresh my memory, is this a flash issue as well or more
general? 

-- 
Eric Dorland <[EMAIL PROTECTED]>
ICQ: #61138586, Jabber: [EMAIL PROTECTED]
1024D/16D970C6 097C 4861 9934 27A0 8E1C  2B0A 61E9 8ECF 16D9 70C6

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS d- s++: a-- C+++ UL+++ P++ L++ E++ W++ N+ o K- w+ 
O? M++ V-- PS+ PE Y+ PGP++ t++ 5++ X+ R tv++ b+++ DI+ D+ 
G e h! r- y+ 
--END GEEK CODE BLOCK--


signature.asc
Description: Digital signature


Bug#297236: evolution: Help shows contact groups can be created, but they can't.

2005-02-27 Thread David Creelman
Package: evolution
Version: 2.0.3-1.2
Severity: minor


Click on Help
Go to Contacts->Organizing Your Contacts->Contact Groups
Mentions a concept of Contact Groups that doesn't seem to exist in the software.

Suggest removing this concept from the help as it is misleading to users.

Is the concept of a contact group something that was turned off ? It seems 
useful.

Thanks
David


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages evolution depends on:
ii  evolution-data-serve 1.0.3-2 evolution database backend server
ii  gconf2   2.8.1-4 GNOME configuration database syste
ii  gnome-icon-theme 2.8.0-2 GNOME Desktop icon theme
ii  gtkhtml3.2   3.2.4-1 HTML rendering/editing library - b
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libaudiofile00.2.6-5 Open-source version of SGI's audio
ii  libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.1-1 The Bonobo UI library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libcompfaceg11989.11.11-24   Compress/decompress images for mai
ii  libdb4.2 4.2.52-18   Berkeley v4.2 Database Libraries [
ii  libebook81.0.3-2 Client library for evolution addre
ii  libecal6 1.0.3-2 Client library for evolution calen
ii  libedataserver3  1.0.3-2 Utily library for evolution data s
ii  libegroupwise6   1.0.3-2 Client library for accessing group
ii  libesd0  0.2.35-2Enlightened Sound Daemon - Shared 
ii  libfontconfig1   2.2.3-4 generic font configuration library
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgail-common   1.8.2-1 GNOME Accessibility Implementation
ii  libgail171.8.2-1 GNOME Accessibility Implementation
ii  libgal2.2-1  2.2.4-1 G App Libs (run time library)
ii  libgal2.2-common 2.2.4-1 G App Libs (common files)
ii  libgconf2-4  2.8.1-4 GNOME configuration database syste
ii  libgcrypt11  1.2.0-11LGPL Crypto library - runtime libr
ii  libglade2-0  1:2.4.2-1   library to load .glade files at ru
ii  libglib2.0-0 2.6.2-1 The GLib library of C routines
ii  libgnome-keyring00.4.1-1 GNOME keyring services library
ii  libgnome-pilot2  2.0.12-1.1  Support libraries for gnome-pilot
ii  libgnome2-0  2.8.1-2 The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.8.0-1 A powerful object-oriented display
ii  libgnomeprint2.2-0   2.8.2-1 The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0 2.8.2-2 GNOME 2.2 print architecture User 
ii  libgnomeui-0 2.8.1-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.8.4-1 The GNOME virtual file-system libr
ii  libgnutls11  1.0.16-13   GNU TLS library - runtime library
ii  libgpg-error01.0-1   library for common error values an
ii  libgtk2.0-0  2.6.2-3 The GTK+ graphical user interface 
ii  libgtkhtml3.2-11 3.2.4-1 HTML rendering/editing library - r
ii  libhowl0 0.9.8-2 Library for Zeroconf service disco
ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
ii  libjpeg626b-9The Independent JPEG Group's JPEG 
ii  libldap2 2.1.30-3OpenLDAP libraries
ii  libnspr4 2:1.7.5-1   Netscape Portable Runtime Library
ii  libnss3  2:1.7.5-1   Network Security Service Libraries
ii  liborbit21:2.10.5-0.1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.0-3 Layout and rendering of internatio
ii  libpisock8   0.11.8-10   Library for communicating with a P
ii  libpisync0   0.11.8-10   Synchronization library for PalmOS
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session Management
ii  libsoup2.2-7 2.2.2-1 an HTTP library implementation in 
ii  libtasn1-2   0.2.10-4Manage ASN.1 structures (runtime)
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxml2  2.6.16-3GNOME XML library
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension

Bug#226973: xserver-xfree86: [glint] second card at wrong resolution

2005-02-27 Thread Clint Adams
> Hello, Clint. Do you know anything else about this subject? You did a 
> lot of development, any success?

I still don't have it working on the initial X startup.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297225: savelog: breaks on files that start with hyphens when -p given

2005-02-27 Thread Clint Adams
> I don't know much about the lives of Debian maintainers, but does the
> debianutils package have any sort of unit tests?  If so, it'd be great
> to add test cases to catch regressions of this bug and the previous
> ones.  I'd be happy to help write them.
> 
> Unfortunately, I searched for information to see if there was any
> testing framework for Debian packages but found none, so I'm guessing
> the answer to my question is going to be "no."

Nothing so formalized.  What I'd recommend is implementing some "Simple
Tests" via automake.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297235: ITP: duhdraw -- A ANSI Editor for Linux similar to TheDraw.

2005-02-27 Thread Nelson A. de Oliveira
Package: wnpp
Severity: wishlist
Owner: "Nelson A. de Oliveira" <[EMAIL PROTECTED]>


* Package name: duhdraw
  Version : 2.7.7
  Upstream Author : Walt Stoneburner <[EMAIL PROTECTED]>
* URL : http://www.cs.helsinki.fi/u/penberg/duhdraw/
* License : GNU Copyleft
  Description : A ANSI Editor for Linux similar to TheDraw.

DuhDraw is a program which almost perfectly simulates TheDraw for DOS.
Back in the good old BBSing days, TheDraw was a program used by a SysOp
in order to draw ANSI screens, the only graphics available on BBSes for
quite a while. However, for a long time, nobody considered Linux, as
Linux BBSes were uncommon. Other applications of the software include
login screens, and mud screens.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-mm3-biolinux1
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1) (ignored: LC_ALL set to 
pt_BR)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297234: pdksh: bind is not working for delete

2005-02-27 Thread James D Strandboge
Package: pdksh
Version: 5.2.14-16
Severity: normal


Please let me know if I am doing something wrong (and how to actually
do this if I am), but when using pdksh in emacs mode, I cannot properly
bind my delete key to 'delete-char-forward'.

My delete key is '^[[3~' (ie 'ESC [ 3 ~'), therefore terminfo et al
are setup correctly.

So I try:
$ bind | grep delete-char-forward
$
$ bind '^[[3~'=delete-char-forward
$ bind | grep delete-char-forward
^X3 = delete-char-forward

This looks good at first, except that if I use the delete key,
it does delete forward, but then adds a '~' in its place (ie,
I type in 'abcde', move the cursor to the 'c', press delete,
and end up with 'ab~de').  The bind took the '^[[3' portion, but 
not the full '^[[3~'.

I am at a loss on how to do this.  'man pdksh' say that 'some'
mutli-character strings are supported with the bind command, but
either this one isn't supported (should be IMO), or I just don't
know what I am doing (very possible!).

This affects the console as well as X.  I do use gnome-terminal,
so I can use a non-default, gnome-terminal workaround of sending 
'^H' when delete is pressed, and bind that instead.

I googled for hours, but couldn't find anything (again, maybe 
I am just missing something).

Thanks,
Jamie 

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages pdksh depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297233: ITP: wmansied -- An ANSI/ASCII editor.

2005-02-27 Thread Nelson A. de Oliveira
Package: wnpp
Severity: wishlist
Owner: "Nelson A. de Oliveira" <[EMAIL PROTECTED]>


* Package name: wmansied
  Version : 0.4
  Upstream Author : Walter Schreppers <[EMAIL PROTECTED]>
* URL : http://www.win.ua.ac.be/~wschrep/ansied/
* License : GNU General Public Licence version 2
  Description : An ANSI/ASCII editor.

WMAnsiEd is an ANSI editor with functions like line drawing, ellipse,
box, etc., written in Qt. All IBM ANSI and ASCII characters are
included. Saved ANSI files can be shown in standard text Linux
terminals, konsole, or gnome-terminal with VGA as the font setting.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-mm3-biolinux1
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1) (ignored: LC_ALL set to 
pt_BR)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297232: kernel-image-2.6.10-1-k7: kernel panic on boot, now all installed kernels fail (backup recovery required)

2005-02-27 Thread Oliver Lange
Package: kernel-image
Version: 2.6.10-1-k7

Hello everyone,

After installing kernel-image-2.6.10-1-k7, i tried to reboot, but the following
error occurs:

  pivot_root: No such file or directory
  /sbin/init: 431: cannot open dev/console: No such file
  kernel panic: Attempted to kill init!

The serious thing: after rebooting, i tried to boot the old 
kernel-image-2.6.8-2-686
(still the one from base-install), which now fails with the same error!
In a nutshell: i cannot boot anymore and need to restore my system backup!

After booting a rescue system, i found pivot_root in /mnt/hda1/sbin and console
in /mnt/hda1/dev, where /mnt/hda1 is the root partition of the system in 
question,
so the files are indeed present, but the kernel somehow couldn't find them.

I've already read something similar somewhere, but can't remember where.
Perhaps my hardware/software report might help. I have installed the same
system (same package versions etc.) on a second machine (little older, other
mainboard), where 2.6.10-1-k7 runs fine.

The machine in question is equipped with an ASUS A7N8X-Deluxe mainboard,
CPU is Athlon-XP, chipset is nForce2, including a SiliconImage SATA controller.
Graphics device is a GeForce4 (MSI TI-4200). No further cards, all pci slots 
are empty.

The installed system is Debian-unstable, all packages up-to-date, as of 
2005-2-28.
I have not installed any kernel module yet, my /usr/src directory still 
contains nothing.

Linux is installed on a normal IDE harddisk, and a second harddisk is SATA,
where a Win32 and my backup system (Knoppix) is installed on. All Linux 
patritions
are formatted with ext3. None of the SATA partitions is mounted at Debian boot 
(with
the 'auto' mount option in /etc/fstab), because fsck always fails on them, even 
with
kernel-image-2.6.8-2-686, but this is another topic. I can live with mounting 
them later,
which works fine because the SiliconImage SATA driver is loaded/initialized 
somewhen
later - after fsck..

If i may help, i'll do what i can.

Regards,

Oliver 'Bloody' Lange.





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#257468: progress?

2005-02-27 Thread Rafael Jesus Alcantara Perez
Hi:

The 0.92 release is out, are there any plans for packaging this application? 
It seems a very cool use of P2P networks and GPG.
-- 
+--
| Rafael Jesus Alcantara Perez.
| Email: mailto:[EMAIL PROTECTED]
| Registered Linux User: #45989
| PGP: http://pgp.rediris.es:11371/pks/lookup?op=index&search=0x53F330AB
+-
"For every complex problem there is a solution that is concise, clear, simple, 
and wrong."
(H. L. Mencken)


pgpE5Xsfq8jJ4.pgp
Description: PGP signature


Bug#297010: linux-kernel-header: O_NOATIME needed for lvm

2005-02-27 Thread Goswin von Brederlow
GOTO Masanori <[EMAIL PROTECTED]> writes:

> At Sat, 26 Feb 2005 14:40:33 +0100,
> Goswin Brederlow wrote:
>> Package: linux-kernel-headers
>> Version: 2.5.999-test7-bk-17
>> Severity: critical
>> File: linux-kernel-header
>> Justification: breaks the whole system
>> 
>> Hi,
>> 
>> when one tries to run pvmove or lvsnapshot on / the lvm will deadlock
>> itself due to atime updates on /dev/ being blocked while the LVM is
>> locked. Sine any read/write access to / will be blocked the system
>> breaks.
>> 
>> To prevent this lvm uses O_NOATIME where available, which is still not
>> the case in current linux-kernel-headers.
>
> I couldn't understand why this problem is occured.  O_NOATIME was
> introduced in 2.6.7.  Is the root of problem to upgrading lvm package?
> Bastian's patch adds only O_NOATIME flag - this means that lvm can fix
> using O_NOATIME in your new package.  In other words, lvm is
> "severity: critical", but glibc is not.  lvm is kernel related
> package, so depending on libc6 header sometimes causes problems.

The docs (man 2 open) document O_NOATIME but the headers are lacking
behind in carrying the implementation. So you got stuck with it as
primary package. Notice that lvm2 is secondary. If lvm adds a
workaround the priority drops but you are still missing documented
behaviour, behaviour the sarge kernel (2.6.8) has.

Bastian's patch is just a workaround around the bug not its solution.

> So I recommend that lvm should use O_NOATIME definition in your
> package for a while.

The while is getting realy long, I mentioned this issue several month
ago already and it is still not fixed.

> Regards,
> -- gotom

MfG
Goswin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297230: lapack3-doc: replace lapack-doc not enough, should conflict too ?

2005-02-27 Thread browaeys . alban
Package: lapack3-doc
Version: 3.0.2531a-5
Severity: normal

Hi

i have lapack-doc and lapack3-doc from an old times when they
where seemingly not conflicting. 

Since a few monthes i have let it go by holding the package (i
did not know if lapack and lapack3 where both supposed to reach
sarge).

When letting it upgrade i end up with :
Preparing to replace lapack-doc 3.0.2531a-25 (using
.../lapack-doc_3.0.2531a-26_all.deb) ...
Document `lapack-doc.qref' is not installed, cannot remove.
Document `lapack-doc.release' is not installed, cannot remove.
Document `lapack-doc.faq' is not installed, cannot remove.
Document `lapack-doc.lug' is not installed, cannot remove.
Unpacking replacement lapack-doc ...
dpkg: error processing
/var/cache/apt/archives/lapack-doc_3.0.2531a-26_all.deb
(--unpack):
 trying to overwrite `/usr/share/man/man3/cgbequ.3.gz', which is
also in package lapack3-doc
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/lapack-doc_3.0.2531a-26_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)



But lapack3-doc is now in testing when lapack-doc is already in
sarge.
As i don't know the severity for a will happen bug in sarge, i
let it on normal ...

Most package that i knwo which Replace another also conflict with it.
Maybe this could be used for lapack3-doc (i don't know if
lapack-doc should also replace/conflict lapack3-doc, but it looks
safer to me as both will end up in the stable release).

Please close the bug if i misunderstood your plan. I don't really
understand why both atlas2/lapack3 and atlas3/lapack end up in
the stable release .

Regards
Alban


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-rc5-mm.1
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297231: hotplug failure trying to load rtc on sis746 based machines

2005-02-27 Thread Matt Taggart
Package: hotplug
Version: 0.0.20040329-17

I have an FIC brand AMD K7 sis746 based mainboard and I've discovered that 
/etc/hotplug/isapnp.rc determines that it needs to load the rtc driver and 
that doesn't work,

===
   isapnp  
modprobe: FATAL: Error inserting rtc (/lib/modules/2.6.10-1-k7/kernel/drivers/c
har/rtc.ko): No such device

 rtc: can't be loaded
===

In my case it's /sys/bus/pnp/devices/00:03/id = PNP0b00 that generates the 
dependency on rtc. The only useful info from sysfs is the resources file,

  state = active
  io 0x70-0x73
  irq 8

I don't know what that is, but I guess it's something that rtc is supposed to 
handle.
For now I have blacklisted the rtc driver on this machine.

Another developer ([EMAIL PROTECTED]) reports the same problem on his ECS 
sis746 based mainboard as well.
I also have a Gigabyte sis748 (note: 74_8_) based mainboard, but it does NOT 
have the problem.

I'm not sure if hotplug should be responsible for not loading in this case 
(although I'm not sure how it would determine that) or if the rtc driver needs 
to be enhanced to support this thing that hotplug is seeing via sysfs.

What do you think?
Let me know if you'd like me to try anything.

Thanks,

-- 
Matt Taggart
[EMAIL PROTECTED]




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297218: Good!

2005-02-27 Thread Seo Sanghyeon
This works great with my Compaq Presario 2800 laptop. Two comments:

1) I think this should depend on pciutils.

2) My ACPI setup:

/etc/acpi/events/lid:

event=button/lid
action=/etc/acpi/lid.sh

/etc/acpi/lid.sh:

if grep -q closed /proc/acpi/button/lid/*/state; then
/usr/sbin/radeontool light off
else
/usr/sbin/radeontool light on
fi

Seo Sanghyeon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#295690: leafnode 1.11 release candidate with fetchnews IPv6 support

2005-02-27 Thread Matthias Andree
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Greetings,

leafnode-1.11.0rc1 with fetchnews IPv6 support has been released, it is
available from http://home.pages.de/~mandree/leafnode/. No other
relevant changes have been made.

Please test this release candidate and report success or failure with
your operating system and version (for example: Fedora Core 3, FreeBSD
5.3, Solaris 10) and your machine/CPU type (for example: SPARCv9, ix86)

Testing is not supposed to be limited to the systems mentioned!

Thanks in advance,

- -- 
Matthias Andree
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (GNU/Linux)

iD8DBQFCIn7YvmGDOQUufZURAqyOAJ9lYONvJrcCcxQO09u5lgKiBVL5egCfX0jI
BhTkGP5tntC54Vzoe6GThts=
=rev2
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#295690: [leafnode-list] leafnode 1.11 release candidate with fetchnews IPv6 support

2005-02-27 Thread Matthias Andree
Matthias Andree <[EMAIL PROTECTED]> writes:

> leafnode-1.11.0rc1 with fetchnews IPv6 support has been released, it is
> available from http://home.pages.de/~mandree/leafnode/. No other
> relevant changes have been made.

BTW, as some users never read manuals: you need to use

./configure --with-ipv6

otherwise you'll be building an IPv4-only version.

-- 
Matthias Andree


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#291700: Proposing stable PostgreSQL bugfixes

2005-02-27 Thread Steve Langasek
Martin,

On Sun, Feb 27, 2005 at 10:28:27PM +0100, Martin Pitt wrote:
> In the light of #291700 I prepared a new PostgreSQL stable upload. It
> fixes a grave misbehaviour if a database is called "peer", and fixes
> the calling of dpkg --compare-versions which caused the help screen to
> be printed when installing the package from scratch.

> Would you accept the following debdiff for stable-proposed-updates?

This needs to be approved by the Stable Release Manager, Joey Schulze.  I
don't know if Joey follows this list.

Thanks,
-- 
Steve Langasek
postmodern programmer


signature.asc
Description: Digital signature


Bug#297155: cupsys-driver-gimpprint: Bad rasterization of some PS data to HP 4L printer

2005-02-27 Thread Daniel Nilsson
On Mon, Feb 28, 2005 at 02:52:26AM +0100, Bernhard Walle wrote:
> > By setting the PRINT_COMMAND to CUPS I no longer see this issue, I can
> > print 2-up and get good quality results. From your comment above this
> > seems to imply a bug in psnup which is in the package psutils. Should
> > I move this bug to the psutils package then or is it still an issue
> > with the way muttprint uses psnup ?
> 
> Try it out:
> 
> PAPERSAVE="off"
> PRINTER="TO_FILE:/tmp/test.ps"
> 
> And then
> 
> cat /tmp/test.ps | psnup -2 -q | lpr


I tried is both ways, with and without pipeing it through psnup and it
only gives errors when piped through psnup so I seems like you are
correct and the problem is with psnup. I'll reassign this bug to the
psutils package then.

Thanks
-- 
Daniel Nilsson
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#274852: Bug #274852: But in which upstream version?

2005-02-27 Thread David MartÃnez Moreno
El Lunes, 28 de Febrero de 2005 02:23, GOTO Masanori escribiÃ:
> At Wed, 16 Feb 2005 12:36:23 +0100,
>
> David Martínez Moreno wrote:
> > [EMAIL PROTECTED]:~$ xmms
> > libmikmod.so.2: cannot open shared object file: No such file or directory
> > Inconsistency detected by ld.so: ../sysdeps/generic/dl-tls.c: 72:
> > _dl_next_tls_modid: Assertion `result <= _rtld_local._dl_tls_max_dtv_idx'
> > failed!
> >
> > GOTO, in your last message to this bug you state that the next
> > libc6 release you will include a fix for this, but I have the
> > latest (-20) from Dec and I have this problem.

Hello, GOTO.

> I'm sorry that my previous statement was in accurate - "the next glibc
> update" means we use the new upstream version - ex: glibc-2.3.4.  So I
> tagged it as "fixed-upstream".

Oh, *that* glibc update. :-)

> > Also, the bug says that is fixed upstream. If, as Daniel says in
> > #207872, the patch was rejected upstream, you should remove the tag.
>
> I guess upstream did the another way to fix this issue.  Daniel, did
> you know about it more?

Yes, please. Because if upstream fixed this, we could backport the 
changes to current glibc, because I do not think that this problem of not 
being able to run certain programs is very desirable for sarge. I will wait 
for Daniel's answer.

Thank you very much for your reply- Best regards,


Ender.
-- 
Network engineer
Debian Developer


pgpopXwVCbBhh.pgp
Description: PGP signature


Bug#296970: O: kernel-patch-redhat -- Redhat patch to the kernel

2005-02-27 Thread Jeroen van Wolffelaar
reassign 296970 ftp.debian.org
retitle 296970 RM: kernel-patch-redhat -- RoM; dead upstream
tags 296970 confirmed
thanks

On Sun, Feb 27, 2005 at 10:39:32AM -0500, Dan Weber wrote:
> >I think this package is then better removed. Do you agree?
> 
> Yes

--Jeroen

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED] (also for Jabber & MSN; ICQ: 33944357)
http://Jeroen.A-Eskwadraat.nl


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297155: cupsys-driver-gimpprint: Bad rasterization of some PS data to HP 4L printer

2005-02-27 Thread Bernhard Walle
* Daniel Nilsson [28.02.2005 02:42]:
> On Mon, Feb 28, 2005 at 02:29:04AM +0100, Bernhard Walle wrote:
> 
>I reassigned this bug to the muttprint package, I guess we will have
>to figure out from there where things are broken. Thanks for your
>help.

It's probable psnup, if you use muttprint with non-cups setup.
>>>
>>>Hmm, not sure I understand what non-cups setup means in this case. I
>>>do use a CUPS printer system on my box...
>>>
>>>My print command in .muttprintrc is:
>>>
>>>PRINT_COMMAND="lp -d $PRINTER"
>>>
>>>I see something mentioned regarding CUPS in the comment above the
>>>print command so I assume this is what you are referring to. In the
>>>man page is says that "CUPS support could be activated by CUPS" but I
>>>don't understand what that means. Should I set PRINT_COMMAND to CUPS
>>>as in:
>>>
>>>PRINT_COMMAND="CUPS" ?
> 
> 
> By setting the PRINT_COMMAND to CUPS I no longer see this issue, I can
> print 2-up and get good quality results. From your comment above this
> seems to imply a bug in psnup which is in the package psutils. Should
> I move this bug to the psutils package then or is it still an issue
> with the way muttprint uses psnup ?

Try it out:

PAPERSAVE="off"
PRINTER="TO_FILE:/tmp/test.ps"

And then

cat /tmp/test.ps | psnup -2 -q | lpr



Regards,
Bernhard


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297155: cupsys-driver-gimpprint: Bad rasterization of some PS data to HP 4L printer

2005-02-27 Thread Daniel Nilsson
On Mon, Feb 28, 2005 at 02:29:04AM +0100, Bernhard Walle wrote:
> >>>
> >>>I reassigned this bug to the muttprint package, I guess we will have
> >>>to figure out from there where things are broken. Thanks for your
> >>>help.
> >>
> >>It's probable psnup, if you use muttprint with non-cups setup.
> > 
> > Hmm, not sure I understand what non-cups setup means in this case. I
> > do use a CUPS printer system on my box...
> > 
> > My print command in .muttprintrc is:
> > 
> > PRINT_COMMAND="lp -d $PRINTER"
> > 
> > I see something mentioned regarding CUPS in the comment above the
> > print command so I assume this is what you are referring to. In the
> > man page is says that "CUPS support could be activated by CUPS" but I
> > don't understand what that means. Should I set PRINT_COMMAND to CUPS
> > as in:
> > 
> > PRINT_COMMAND="CUPS" ?

By setting the PRINT_COMMAND to CUPS I no longer see this issue, I can
print 2-up and get good quality results. From your comment above this
seems to imply a bug in psnup which is in the package psutils. Should
I move this bug to the psutils package then or is it still an issue
with the way muttprint uses psnup ?

Thanks
-- 
Daniel Nilsson
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297229: xwrits: Treats synthetic X send_events as actual typing activity

2005-02-27 Thread James T Kirk
Package: xwrits
Version: 2.21-3
Severity: normal
Tags: patch


I use LIRC to control Mythtv via the irxevent program, which sends
synthetic xevents to x clients. Xwrits treats these as actually typing
activity, and pops up the annoybox window when I am using my remote
to watch TV.

The attached patch fixes xwrits to ignore all synthetic events.



--- xwrits.orig/rest.c  2002-05-06 19:31:11.0 -0500
+++ xwrits-2.21/rest.c  2005-02-27 19:33:01.0 -0600
@@ -15,6 +15,10 @@
   
   if (e->type == KeyPress || e->type == MotionNotify
   || e->type == ButtonPress) {
+
+if(e->xany.send_event) // this is a syntheitc send_event
+  return(TRAN_REST); //whatever tran_rest means it ignores the event
+
 xwSUBTIME(diff, *now, last_key_time);
 last_key_time = *now;
 


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ck5
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages xwrits depends on:
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#274852: Bug #274852: But in which upstream version?

2005-02-27 Thread Daniel Jacobowitz
On Mon, Feb 28, 2005 at 10:23:14AM +0900, GOTO Masanori wrote:
> At Wed, 16 Feb 2005 12:36:23 +0100,
> David Mart?nez Moreno wrote:
> > [EMAIL PROTECTED]:~$ xmms
> > libmikmod.so.2: cannot open shared object file: No such file or directory
> > Inconsistency detected by ld.so: ../sysdeps/generic/dl-tls.c: 72: 
> > _dl_next_tls_modid: Assertion `result <= _rtld_local._dl_tls_max_dtv_idx' 
> > failed!
> > 
> > GOTO, in your last message to this bug you state that the next
> > libc6 release you will include a fix for this, but I have the
> > latest (-20) from Dec and I have this problem.
> 
> I'm sorry that my previous statement was in accurate - "the next glibc
> update" means we use the new upstream version - ex: glibc-2.3.4.  So I
> tagged it as "fixed-upstream".
> 
> > Also, the bug says that is fixed upstream. If, as Daniel says in
> > #207872, the patch was rejected upstream, you should remove the tag.
> 
> I guess upstream did the another way to fix this issue.  Daniel, did
> you know about it more?

No, sorry - I don't know if or how it was fixed.

-- 
Daniel Jacobowitz
CodeSourcery, LLC


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#296968: xmame: dpkg error procesing

2005-02-27 Thread Bruno Barrera C.
On Fri, 2005-02-25 at 23:14 +, David Roguin wrote:
> Package: xmame
> Version: 0.90-1
> Severity: important

[...]

Could you please stop reporting bugs with respect to unofficial
packages?
-- 
Bruno Barrera C.
Debian Developer


signature.asc
Description: This is a digitally signed message part


Bug#297198: does not restart after upgrade

2005-02-27 Thread Joe Drew
sean finney wrote:
could you throw a "set -x" in the top of the postinst script and
send us the output?
Sure can!
[EMAIL PROTECTED]:~# /var/lib/dpkg/info/mysql-server-4.1.postinst configure
+ export 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/sbin:/usr/sbin:/bin:/usr/bin
+ 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/sbin:/usr/sbin:/bin:/usr/bin
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ exec /usr/share/debconf/frontend 
/var/lib/dpkg/info/mysql-server-4.1.postinst configure
+ export 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/sbin:/usr/sbin:/bin:/usr/bin:/sbin:/usr/sbin:/bin:/usr/bin
+ 
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/sbin:/usr/sbin:/bin:/usr/bin:/sbin:/usr/sbin:/bin:/usr/bin
+ . /usr/share/debconf/confmodule
++ '[' '!' 1 ']'
++ '[' -z '' ']'
++ exec
++ DEBCONF_REDIR=1
++ export DEBCONF_REDIR
+ ERR_LOGGER=logger -p daemon.err -t mysqld_safe -i
+ set +e
+ invoke stop
+ '[' -x /usr/sbin/invoke-rc.d ']'
+ invoke-rc.d mysql stop
Stopping MySQL database server: mysqld.
+ set -e
+ mysql_datadir=/usr/share/mysql
+ mysql_statedir=/var/lib/mysql
+ mysql_rundir=/var/run/mysqld
+ mysql_logdir=/var/log
+ mysql_cfgdir=/etc/mysql
+ mysql_newlogdir=/var/log/mysql
+ '[' '!' -d /var/lib/mysql -a '!' -L /var/lib/mysql ']'
+ '[' '!' -d /var/lib/mysql/mysql -a '!' -L /var/lib/mysql/mysql ']'
+ '[' '!' -d /var/lib/mysql/test -a '!' -L /var/lib/mysql/test ']'
+ '[' '!' -d /var/log/mysql -a '!' -L /var/log/mysql ']'
+ set +e
+ chown -R 0.0 /usr/share/mysql
+ chown -R mysql /var/lib/mysql
+ chown -R mysql /var/run/mysqld
+ chown -R mysql:adm /var/log/mysql
+ chmod 2750 /var/log/mysql
+ touch /var/log/mysql.log
+ chown mysql:adm /var/log/mysql.log
+ chmod 0640 /var/log/mysql.log
+ touch /var/log/mysql.err
+ chown mysql:adm /var/log/mysql.err
+ chmod 0640 /var/log/mysql.err
+ set -e
+ touch /var/lib/mysql/debian-4.1.flag
+ set +e
+ /bin/bash /usr/bin/mysql_install_db --rpm
+ logger -p daemon.err -t mysqld_safe -i
+ '[' 0 '!=' 0 ']'
+ set -e
+ dc=/etc/mysql/debian.cnf
+ '[' -e /etc/mysql/debian.cnf ']'
++ sed -n 's/password *= *// p' /etc/mysql/debian.cnf
+ pass=dwxbwsJT3q6D1WjJ
+ chown 0:0 /etc/mysql/debian.cnf
+ chmod 0600 /etc/mysql/debian.cnf
+ MYSQL_BOOTSTRAP=/usr/sbin/mysqld --bootstrap --user=mysql 
--skip-grant-tables  --skip-bdb  --skip-innodb
++ /bin/echo -e 'USE mysql\n' 'ALTER TABLE user CHANGE password Password 
varchar(41) collate utf8_bin NOT NULL default '\'''\'''
+ password_column_fix_query=USE mysql
 ALTER TABLE user CHANGE password Password varchar(41) collate utf8_bin 
NOT NULL default ''
++ /bin/echo -e 'USE mysql\n' 'REPLACE INTO user SET ' ' 
host='\''localhost'\'', user='\''debian-sys-maint'\'', 
password=password('\''dwxbwsJT3q6D1WjJ'\''), ' '  Select_priv='\''Y'\'', 
Insert_priv='\''Y'\'', Update_priv='\''Y'\'', Delete_priv='\''Y'\'', ' ' 
 Create_priv='\''Y'\'', Drop_priv='\''Y'\'', Reload_priv='\''Y'\'', 
Shutdown_priv='\''Y'\'', ' '  Process_priv='\''Y'\'', 
File_priv='\''Y'\'', Grant_priv='\''Y'\'', References_priv='\''Y'\'', ' 
'  Index_priv='\''Y'\'', Alter_priv='\''Y'\'' __EXTRA_PRIVS__'
+ replace_query=USE mysql
 REPLACE INTO user SEThost='localhost', user='debian-sys-maint', 
password=password('dwxbwsJT3q6D1WjJ'),Select_priv='Y', 
Insert_priv='Y', Update_priv='Y', Delete_priv='Y',Create_priv='Y', 
Drop_priv='Y', Reload_priv='Y', Shutdown_priv='Y',Process_priv='Y', 
 File_priv='Y', Grant_priv='Y', References_priv='Y',Index_priv='Y', 
Alter_priv='Y' __EXTRA_PRIVS__
++ /bin/echo -e ', Show_db_priv='\''Y'\'' ' ', Super_priv='\''Y'\'' ' ', 
Create_tmp_table_priv='\''Y'\'' ' ', Lock_tables_priv='\''Y'\'' ' ', 
Execute_priv='\''Y'\'' ' ', Repl_slave_priv='\''Y'\'' ' ', 
Repl_client_priv='\''Y'\'' '
+ extra_privs=, Show_db_priv='Y'  , Super_priv='Y'  , 
Create_tmp_table_priv='Y'  , Lock_tables_priv='Y'  , Execute_priv='Y'  , 
Repl_slave_priv='Y'  , Repl_client_priv='Y'
+ echo 'USE mysql
 ALTER TABLE user CHANGE password Password varchar(41) collate utf8_bin 
NOT NULL default '\'''\'''
+ /usr/sbin/mysqld --bootstrap --user=mysql --skip-grant-tables 
--skip-bdb --skip-innodb
+ logger -p daemon.err -t mysqld_safe -i
+ echo 'USE mysql
 REPLACE INTO user SEThost='\''localhost'\'', 
user='\''debian-sys-maint'\'', 
password=password('\''dwxbwsJT3q6D1WjJ'\''),Select_priv='\''Y'\'', 
Insert_priv='\''Y'\'', Update_priv='\''Y'\'', Delete_priv='\''Y'\'', 
Create_priv='\''Y'\'', Drop_priv='\''Y'\'', Reload_priv='\''Y'\'', 
Shutdown_priv='\''Y'\'',Process_priv='\''Y'\'', 
File_priv='\''Y'\'', Grant_priv='\''Y'\'', References_priv='\''Y'\'', 
 Index_priv='\''Y'\'', Alter_priv='\''Y'\'' __EXTRA_PRIVS__'
+ sed s/__EXTRA_PRIVS__//
+ /usr/sbin/mysqld --bootstrap --user=mysql --skip-grant-tables 
--skip-bdb --skip-innodb
+ logger -p daemon.err -t mysqld_safe -i
+ set +e
+ echo 'US

Bug#297205: gaim X usage idle time missing

2005-02-27 Thread Sean Egan
On Sun, 2005-02-27 at 19:52 -0500, Luke Schierer wrote:
>okay, that's why you don't have the option, Now the question is, which 
>I can't answer, why it was not discovered.  do you have x.org rather 
>than xfree86? the newest version of x.org puts stuff in /usr rather 
>than /usr/X11R6, and gaim can't handle that.

As Ari pointed out, this is a compile-time option. The only possibility
is that he's not using the Gaim package, but a self-compiled Gaim.

-s.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297155: cupsys-driver-gimpprint: Bad rasterization of some PS data to HP 4L printer

2005-02-27 Thread Bernhard Walle
Hello,

* Daniel Nilsson [28.02.2005 02:21]:
> On Mon, Feb 28, 2005 at 02:00:55AM +0100, Bernhard Walle wrote:
>>* Daniel Nilsson [28.02.2005 01:35]:
>>>On Sun, Feb 27, 2005 at 11:43:23PM +, Roger Leigh wrote:
>I guess that issue is with muttprint then, or possibly latex.

I'm not familiar with muttprint, so I can't really comment.  The page
looks like it's come directly from dvips, but the 2-up pages must have
come from somewhere, and that's presumably what caused the problem.
>>>
>>>I reassigned this bug to the muttprint package, I guess we will have
>>>to figure out from there where things are broken. Thanks for your
>>>help.
>>
>>It's probable psnup, if you use muttprint with non-cups setup.
> 
> Hmm, not sure I understand what non-cups setup means in this case. I
> do use a CUPS printer system on my box...
> 
> My print command in .muttprintrc is:
> 
> PRINT_COMMAND="lp -d $PRINTER"
> 
> I see something mentioned regarding CUPS in the comment above the
> print command so I assume this is what you are referring to. In the
> man page is says that "CUPS support could be activated by CUPS" but I
> don't understand what that means. Should I set PRINT_COMMAND to CUPS
> as in:
> 
> PRINT_COMMAND="CUPS" ?

Yes.


Regards,
Bernhard


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#274852: Bug #274852: But in which upstream version?

2005-02-27 Thread GOTO Masanori
At Wed, 16 Feb 2005 12:36:23 +0100,
David Martínez Moreno wrote:
> [EMAIL PROTECTED]:~$ xmms
> libmikmod.so.2: cannot open shared object file: No such file or directory
> Inconsistency detected by ld.so: ../sysdeps/generic/dl-tls.c: 72: 
> _dl_next_tls_modid: Assertion `result <= _rtld_local._dl_tls_max_dtv_idx' 
> failed!
> 
> GOTO, in your last message to this bug you state that the next
> libc6 release you will include a fix for this, but I have the
> latest (-20) from Dec and I have this problem.

I'm sorry that my previous statement was in accurate - "the next glibc
update" means we use the new upstream version - ex: glibc-2.3.4.  So I
tagged it as "fixed-upstream".

> Also, the bug says that is fixed upstream. If, as Daniel says in
> #207872, the patch was rejected upstream, you should remove the tag.

I guess upstream did the another way to fix this issue.  Daniel, did
you know about it more?

Regards,
-- gotom



Bug#199527: xscreensaver: popup windows appear on top of screensaver

2005-02-27 Thread Jamie Zawinski
This behavior is controlled by the window manager, not by xscreensaver.
It's in the FAQ: http://www.jwz.org/xscreensaver/faq.html#popup-windows


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297155: cupsys-driver-gimpprint: Bad rasterization of some PS data to HP 4L printer

2005-02-27 Thread Daniel Nilsson
On Mon, Feb 28, 2005 at 02:00:55AM +0100, Bernhard Walle wrote:
> Hello,
> 
> * Daniel Nilsson [28.02.2005 01:35]:
> > On Sun, Feb 27, 2005 at 11:43:23PM +, Roger Leigh wrote:
> > 
> >>>I guess that issue is with muttprint then, or possibly latex.
> >>
> >>I'm not familiar with muttprint, so I can't really comment.  The page
> >>looks like it's come directly from dvips, but the 2-up pages must have
> >>come from somewhere, and that's presumably what caused the problem.
> > 
> > 
> > I reassigned this bug to the muttprint package, I guess we will have
> > to figure out from there where things are broken. Thanks for your
> > help.
> 
> It's probable psnup, if you use muttprint with non-cups setup.

Hmm, not sure I understand what non-cups setup means in this case. I
do use a CUPS printer system on my box...

My print command in .muttprintrc is:

PRINT_COMMAND="lp -d $PRINTER"

I see something mentioned regarding CUPS in the comment above the
print command so I assume this is what you are referring to. In the
man page is says that "CUPS support could be activated by CUPS" but I
don't understand what that means. Should I set PRINT_COMMAND to CUPS
as in:

PRINT_COMMAND="CUPS" ?


Thanks
-- 
Daniel Nilsson
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297205: gaim X usage idle time missing

2005-02-27 Thread D. Hilley
Luke Schierer <[EMAIL PROTECTED]> writes:
> okay, that's why you don't have the option, Now the question is, which 
> I can't answer, why it was not discovered.  do you have x.org rather 
> than xfree86? the newest version of x.org puts stuff in /usr rather 
> than /usr/X11R6, and gaim can't handle that.

No, I still use XFree86 (4.3.0.dfsg1-10).

-- 
D. Hilley ([EMAIL PROTECTED])


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297155: cupsys-driver-gimpprint: Bad rasterization of some PS data to HP 4L printer

2005-02-27 Thread Bernhard Walle
Hello,

* Daniel Nilsson [28.02.2005 01:35]:
> On Sun, Feb 27, 2005 at 11:43:23PM +, Roger Leigh wrote:
> 
>>>I guess that issue is with muttprint then, or possibly latex.
>>
>>I'm not familiar with muttprint, so I can't really comment.  The page
>>looks like it's come directly from dvips, but the 2-up pages must have
>>come from somewhere, and that's presumably what caused the problem.
> 
> 
> I reassigned this bug to the muttprint package, I guess we will have
> to figure out from there where things are broken. Thanks for your
> help.

It's probable psnup, if you use muttprint with non-cups setup.


Regards,
Bernhard (original muttprint author but not longer maintainer)




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#295680: libc6: getgrname returns a result that doesn't belong to /etc/group

2005-02-27 Thread GOTO Masanori
At Thu, 17 Feb 2005 13:37:25 +0100,
Vincent Lefevre wrote:
> The getgrname(3) man page says:
> 
>   The getgrnam() function returns a pointer to a structure containing the
>   group information from /etc/group for the entry that matches the  group
>   name name.
> 
> But here, the getgrname function returns a result that doesn't belong
> to /etc/group, which seems to lead by side effects to a security hole
> (more details below).

Does this manpage say correctly?  i.e. Is getgrnam tightly coupled
with /etc/group?

> It gives here, where slocate is group 21 in NIS:
> 
> $ ./grname slocate
> 21 (slocate)
> $ grep slocate /etc/group
> zsh: exit 1 grep slocate /etc/group
> $ grep 21 /etc/group
> fax:x:21:
> 
> As a consequence:
> 
> # touch blah
> # chown root.slocate blah
> # ls -l blah
> -rw-r--r--  1 root fax 0 2005-02-17 13:30:13 blah
>^^^
> 
> This could also explain why groupadd (to add a group to /etc/group)
> fails if a group with the same name exists via NIS.

I guess you specify in /etc/nsswitch.conf that nis is prior than
files for group lookup.

Regards,
-- gotom


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#293297: attraction: Ball Mass and Ball Count not independently controllable

2005-02-27 Thread Jamie Zawinski
Fixed in xscreensaver 4.17.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#292673: additional info

2005-02-27 Thread Daniel Jacobowitz
On Thu, Feb 24, 2005 at 02:17:44PM -0800, David Mosberger wrote:
> While there hasn't been any discussion for glibc bugzilla report #685
> [1], private communication with one of the glibc maintainers indicates
> that this issue is not considered to be a glibc bug because,
> officially, glibc supports only one thread library at a time:
> LinuxThreads _or_ NPTL, but not both at the same time.  Of course,
> every distro I know of ships both NPTL and LinuxThreads and the
> apparently accepted workaround appears to be to use the ld.so that was
> built for NPTL rather than the one that was built for LinuxThreads
> (more precisely, the ld.so should be used which uses larger thread
> descriptors).  Thus, I strongly suspect Debian should do the same.
> Since this bug results in memory corruption that can be very hard to
> track down, I hope this can be fixed quickly.  As a temporary
> workaround, just doing:
> 
>   # mv /lib/tls/ld-2.3.2.so /lib/
> 
> should cure the problem.

ISTR that Red Hat has a patch for this in their glibc RPMs already.

-- 
Daniel Jacobowitz
CodeSourcery, LLC


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#280652: analogtv code (used by apple2, bsod, pong, xanalogtv) broken on systems where char is unsigned by default

2005-02-27 Thread Jamie Zawinski
Fixed in xscreensaver 4.19.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#260160: xscreensaver: Barcode garbled on MIPS (SGI Indy), possible edianness issue.

2005-02-27 Thread Jamie Zawinski
Fixed in xscreensaver 4.17.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#237661: kscreensaver: XScreensaver is called with wrong parameters

2005-02-27 Thread Jamie Zawinski
xscreensaver.kss has been removed from the xscreensaver distribution
as of xscreensaver 4.20.

http://www.jwz.org/xscreensaver/faq.html#kde


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#222734: xscreensaver: pyro has buggy explosions

2005-02-27 Thread Jamie Zawinski
Thanks, this patch will be in xscreensaver 4.21.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297228: swf-player: browser plugin : entirely black/grey display for all sites tested

2005-02-27 Thread Filipus Klutiero
Package: swf-player
Version: 0.3.2-2
Severity: important

All sites I tested with swf-player only show a black frame instead of
the Flash content. When I switch to another window and come back, the
frame is grey (or if the Flash frame isn't initially visible at
pageload, or if I scroll it out of the part of the page I see, then back
in). This is tested in galeon, mozilla, mozilla-firefox. The two desktop
Sarge
installs I have access to have this problem. This report is from the
oldest one (from a 2004-12-17 snapshot dist-upgraded on 20040226). I'm 
providing a list of URLs I
have verified the problem to be affecting (compared with Macromedia's
player). Several of these I tested in several browsers and/or both
affected PCs, but they all failed in all the contexts they were tested
on.

http://www.t45ol.com/play_flash.php?ID=1082
http://www.t45ol.com/play_flash.php?ID=1151
http://movies.yahoo.com
http://macromedia.com/shockwave/welcome/
http://www.flashadvisor.com/movie/swf/flashpc_dc_179.swf
http://www.flashadvisor.com/movie/swf/maple_leaf_navy_240.swf

That last one fails nevertheless eating 80%+ of my Barton, problem
reported in 285135.

This extremely simple swf won't work neither :
http://www.actionscripts.org/email_hider/no_spam.swf?firstBit=sweetguy79&domain=care2.com

Direct access to the swf's URL allows to see the animation on one of the 
2 PCs affected (another report about that will follow).
I see there is some similarity with 193731 in the "grey rectangle" part.

I'm going to suggest keeping the package from Sarge if there's no 
evolution for this bug in 1 week.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-k7
Locale: LANG=fr_CA, LC_CTYPE=fr_CA (charmap=ISO-8859-1)

Versions of packages swf-player depends on:
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libc6 2.3.2.ds1-20   GNU C Library: Shared libraries an
ii  libglib2.0-0  2.6.2-1The GLib library of C routines
ii  libgtk2.0-0   2.6.2-3The GTK+ graphical user interface 
ii  libmad0   0.15.1b-1  MPEG audio decoder library
ii  libsdl1.2debi 1.2.7+1.2.8cvs20041007-4.1 Simple DirectMedia Layer
ii  libswfdec0.3  0.3.2-2SWF (Macromedia Flash) decoder lib
ii  libxt64.3.0.dfsg.1-10X Toolkit Intrinsics
ii  xlibs 4.3.0.dfsg.1-10X Keyboard Extension (XKB) configu
ii  zlib1g1:1.2.2-3  compression library - runtime

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#269381: Xplanet screensaver has OBOE in longitude code setting

2005-02-27 Thread Jamie Zawinski
Fixed in xscreensaver 4.18.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#277085: gnochm Debian package

2005-02-27 Thread pabs
On Mon, 2005-02-28 at 12:33 +1300, Carlos Liu wrote:

> > I'm tidying up the wnpp bugs on the Debian BTS by looking for "inactive" 
> > ITPs.
> > I saw that some time ago you filed an ITP for gnochm, so I'd like to know
> > if you still intend to package it.

Its good to hear that this happens, the wnpp sometimes depresses me when
I look at it.

> Yes, I packaged it several month before, and still maintain it.
> Currently, I'm preparing the package for the new release. It will be
> available before next Monday. The repository is
> http://chinese.alioth.debian.org/gnochm . I filed a RFS in December
> 2004, but no sponsors are interesting in it. :( Maybe, I should try
> again.

Try again, and then expand your search to other lists (perhaps the
python and gtk/gnome lists), you also might ask the chmlib/xchm
maintainer to sponsor the uploads.

> > Please also notice that "pabs <[EMAIL PROTECTED]>" has already packaged 
> > gnochm  
> > (see bugs #288353 and #290262), so you may want to contact him in order
> > to avoid duplicate efforts.

I didn't know about Carlos' RFS until after I had done the packaging to
close those two RFPs. My latest packages are on mentors.debian.net, If
you want to check them out and grab them to maybe merge the changes with
your version Carlos.

Also, the reasons for people wanting gnochm on those bugs were that it
used wxWidgets 2.4 (and GTK1) at that time. The debian package now uses
wxWidgets 2.5 (and thus GTK2), so those RFP bugs can probly be
ignored/closed.

I'm going offline for a bit soon, so I won't be updating the packages
any more, I think Carlos' packages should go into debian anyway, I
didn't intend to send an RFS cause my life is a little unstable at the
moment. It certainly was a good learning experience though.

-- 
bye,
pabs


signature.asc
Description: This is a digitally signed message part


Bug#78961: i emailed you earlier

2005-02-27 Thread Nell Pilger







 The politicians dislike playing all day long.
 Every child communicates in some form whether it be by crying, body language, facial expressions or verbalization. Some children talk early, some late, some with augmentative communication devices, some not at all. As a teacher I wanted to facilitate the child learning language.
 Wasn't Dick missing talking on the street?
 2
 A cynic is a man who knows the price of everything, and the value of nothing.	Oscar Wilde
 Luke is missing jumping today.




Bug#296973: [Pkg-octave-devel] Bug#296973: octave-forge: weekday has incorrect documentation

2005-02-27 Thread Paul Kienzle
Applied.
Thanks,
- Paul
On Feb 27, 2005, at 7:41 AM, Rafael Laboissiere wrote:
package octave-forge
tags 296973 upstream
forwarded 296973 [EMAIL PROTECTED]
thanks
- Forwarded message from Bill Denney <[EMAIL PROTECTED]> -
From: Bill Denney <[EMAIL PROTECTED]>
Subject: [Pkg-octave-devel] Bug#296973: octave-forge: weekday has 
incorrect documentation
Date: Fri, 25 Feb 2005 23:54:30 -0500
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Reply-To: Bill Denney <[EMAIL PROTECTED]>, [EMAIL PROTECTED]

Package: octave-forge
Version: 2004.11.16-3
Severity: minor
The weekday function has incorrect documentation.  Its documentation
appears to be a copy of datevec's documentation.  The doc at the
beginning should read something like:
--- Begin Documentation
## -*- texinfo -*-
## @deftypefn {Function File} {[d,s] =} weekday(date, [P])
## Takes a date (in either datenum format or a string that datenum can
## parse) and returns the number for the day of the week (0 = "Sun",
## 1 = "Mon", ... , "Sat")
##
## The parameter @code{P} is needed to convert date strings with 2 
digit
## years into dates with 4 digit years.  2 digit years are assumed to 
be
## between @code{P} and @code{P+99}. If @code{P} is not given then the
## current year - 50 is used, so that dates are centered on the 
present.
## For birthdates, you would want @code{P} to be current year - 99.  
For
## appointments, you would want @code{P} to be current year.
##
## @seealso{date,clock,now,datestr,datenum,datevec,calendar}
## @end deftypefn
--- End Documentation

Hopefully, I'll be able to submit a patch that will help with making
datevec accept strings soon, too.
Bill
-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Versions of packages octave-forge depends on:
ii  atlas3-base [liblapack.s 3.6.0-19Automatically Tuned 
Linear Algebra
ii  fftw33.0.1-11Library for computing 
Fast Fourier
ii  libc62.3.2.ds1-20GNU C Library: Shared 
libraries an
ii  libcln3  1.1.9-1 Class Library for Numbers 
(C++)
ii  libg2c0  1:3.3.5-8   Runtime library for GNU 
Fortran 77
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libginac1.3  1.3.0-2 The GiNaC framework 
(runtime libra
ii  libgmp3  4.1.4-5 Multiprecision arithmetic 
library
ii  libgsl0  1.6-1   The GNU Scientific 
Library (GSL) -
ii  libhdf5-serial-1.6.2-0 [ 1.6.2-3 Hierarchical Data Format 
5 (HDF5)
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange 
library
ii  libjpeg626b-9The Independent JPEG 
Group's JPEG
ii  libncurses5  5.4-4   Shared libraries for 
terminal hand
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqhull52003.1-1Calculate convex hulls 
and related
ii  libreadline4 4.3-11  GNU readline and history 
libraries
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session 
Management
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ 
Library v3
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol 
client li
ii  octave2.12.1.64-1The GNU Octave language 
for numeri
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension 
(XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - 
runtime

-- no debconf information
___
Pkg-octave-devel mailing list
[EMAIL PROTECTED]
http://lists.alioth.debian.org/mailman/listinfo/pkg-octave-devel

- End forwarded message -
--
Rafael
___
Pkg-octave-devel mailing list
[EMAIL PROTECTED]
http://lists.alioth.debian.org/mailman/listinfo/pkg-octave-devel

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#219041: xscreensaver: TV-Emulation fails on Alpha (affects pong, apple2, xanalogtv)

2005-02-27 Thread Jamie Zawinski
This was fixed in xscreensaver 4.15.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#165619: not answering calls anymore?

2005-02-27 Thread Minerva O. Wiley







 tomorrow i will wash my hair and go to the salon
 Have you missed reading recently?
 Haven't the photographers already disliked praying?
 I am missing working right now.
 A cynic is a man who knows the price of everything, and the value of nothing.	Oscar Wilde
 You are always missing reading.




Bug#11147: not answering calls anymore?

2005-02-27 Thread Mark G. Black, II







 i need to get a pedicure. my feet smell and itch
 I get from most parents is ?Can you teach my child to talk?? This question has haunted me for years.
 That flight attendant is not missing playing below the bridge at this exact moment.
 We've tried to include features in the program for students with many disabilities. I needed Spanish in my classroom, so Spanish was added. I wanted something to engage students who are not interested in language, thus musical interludes and movement were incorporated. I wanted to be able to change the prompts (music,movements, etc.) on-the-fly. We wanted to provide for those requiring augmentative communication device and so the Mayer-Johnson symbols are included and can morph from the photographs. I wanted a cause-and-effect program for my students who didn't understand the automatic scan. The Switch-On-Picts activity was developed. We realized more types of scans would be advantageous. Three types of scanning routines have been added. I wanted 2 and 3 piece puzzles. Here they are. One of my parents wanted Dr. Seuss types of stories with real pictures. We wrote some 'ditties' and here's StoryTime.
 Do the right thing. It will gratify some people and astonish the rest.	-Mark Twain [Samuel Langhornne Clemens] (1835-1910)
 I get from most parents is ?Can you teach my child to talk?? This question has haunted me for years.




Bug#297226: hotplug is still too verbose

2005-02-27 Thread Matt Taggart
Package: hotplug
Version: 0.0.20040329-17
Severity: wishlist

hotplug is still very verbose on boot and the problem is only getting worse as 
more drivers are added. I think the messages about loading module and 
blacklisted modules are useful, but a lot of the output (at least on my 
system) is for modules that are "already loaded". Could hotplug.functions not 
print this stuff unless some sort of debug flag is on? I think it would help 
increase the signal to noise ratio.

Thanks,

-- 
Matt Taggart
[EMAIL PROTECTED]




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297227: perl: segfaults when $FORMAT_TOP_NAME is undefined

2005-02-27 Thread Peter Palfrader
Package: perl
Version: 5.8.4-6
Severity: normal

Hi,

this snippet triggers a segfault on at least i386 and amd64:


#!/usr/bin/perl

format FOO =
@@
23
.
$~ = FOO;

undef $^;
write;


It probably shouldn't segfault :)

-- 
Peter


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#149278: i tried calling last night

2005-02-27 Thread Latisha J. Kinsella







 Toren came to me at age 32 months. He had 2 words: Ma Ma and Bye Bye. He could not focus, but ran around the room. His mother was convinced I was going to have him cured by his third birthday. I told her I was no miracle worker, but we'd do what we could during the next 4 months. Immediately we started structuring Toren's day. I went home and worked up a program called 'Toren's Nouns'. The first day I showed Toren the program, he looked at it for 10-15 seconds and then left the computer. The next day he stayed about 30 seconds. Each day he built up more time at the computer. By the second week, he would sit on my lap for 10 minutes pressing whichever word he wanted to hear. But he spoke no sounds, no words. Three weeks passed. I began berating myself. 'See, Jo, you thought this noun program was so great. Look at Toren, he's not learning anything.' The fourth week Toren walked over to the computer, picked up the overlay from the IntelliKeys keyboard, pointed to 10 different words
  and approximated each word. That day, I cried.
 Have you already loved sleeping?
 But, I spent the next three weeks making a piece of simple software for her son to her specifications. While I was at it, I put 4-8 pictures on the screen as well. The simple program was finished and ready for her child to see. As I was presenting it, the other children in my classroom were pushing each other to get to the computer screen to touch that Touch Window and hear the word spoken again and again. I looked at these kids and was amazed. There was no music, no animation, nothing cute about this program at all, just real pictures with real words. I was stunned. I just watched the children. Within 10 minutes, several children who had never said a word in their life, made approximations of several words. I was hooked.
 Hasn't Buddy ever liked swimming?
 Do just once what others say you can't do, and you will never pay attention to their limitations again.	-James R. Cook
 Donna's daughter hasn't practiced playing yet.




Bug#295573: Bug#233308: Esperanto translations?

2005-02-27 Thread GOTO Masanori
At Thu, 17 Feb 2005 14:30:23 +0100,
Christian Perrier wrote:
> Quoting Edmund GRIMLEY EVANS ([EMAIL PROTECTED]):
> > > While I'm at it, something VERY important that slept out in this
> > > discussionï: the list of supported languages for sarge is
> > > *closed*. For size constraints, and for being sure that we don't
> > > induce problems with initrd size for D-I RC2 and now RC3, Joey Hess
> > > has requested that we stop adding languages to sarge-targeted D-I.
> > 
> > It would still be nice to have the Esperanto locale in sarge, if that
> > can be arranged.
> 
> Sure.
> 
> gotom and locales/glibc maintainers, any status about this old bugï?
> 
> Is it delayed post-sarge, ignored (if so, it should be tagged
> "wontfix", imho) or possible to be included in sarge?
> 
> There's a chance that a translation begins for Esperanto in Debian
> Installer and we at least to have some visibility about the locale
> name.
> 
> I personnally tend to favour eo_XX. Edmind has suggested eo_AQ
> (Antarctica), based on the special status of this territory as part of
> mankind's patrimonium. Others (in -esperanto) have suggested eo_EU
> which I don't think is appropriate for a universal language...

Paul Eggert suggested to use "eo":

http://sources.redhat.com/ml/libc-alpha/2002-07/msg00147.html

I think "eo" is the nice choice instead of eo_XX because AA_BB means
AA: langugage, BB: region.  If we want to use the regional information
with "eo" locale, we can override it with LC_* (ex: LC_MONETARY and so
on) over LANG environment variable.  How about this idea?

Regards,
-- gotom



Bug#295618: broken /etc/init.d/devpts.sh script won't work

2005-02-27 Thread GOTO Masanori
tags 295618 woody
thanks

At Thu, 17 Feb 2005 12:52:10 +1300,
John R. McPherson <[EMAIL PROTECTED]> wrote:
> (Debian stable, with 2.6 kernel)
> 
> /etc/init.d/devpts.sh contains the following:
> 
> ##
> devpts_avail=`grep -qci '[<[:space:]]devpts' /proc/filesystems || true`
> devpts_mounted=`grep -qci '/dev/pts' /proc/mounts || true`
> devfs_mounted=`grep -qci '[<[:space:]]/dev[>[:space:]].*devfs' /proc/mounts 
> || true`
> 
> if [ $devfs_mounted = 0 ] && [ $devpts_avail != 0 ]
> then
> ##
> 
> However, surely this is wrong, as `` backticks are used for recording
> the stdout of the command, not the return value. because grep -q || true
> doesn't print anything, this variable is assigned an empty string.
> 
> bash then complains with "[: =: unary operator expected" because it tries
> to do
> if [ = 0 ]
> which is a syntax error. The end result is my devpts isn't mounted and
> I can't run programs that want a pts like screen.
> 
> Furthermore, adding || true to each of those tests seems to make the
> tests redundant, since ` anything || true ` will return 0 (true).
> 
> I think you probably want something like
>grep -qci '[<[:space:]]devpts' /proc/filesystems 
>devpts_avail=$?
> (etc)

Yes, IIRC, this problem was reported and fixed during the development
of the sarge's glibc.  Please check /etc/init.d/mountkernfs file in
the latest sarge.  I tagged it as woody.

Regards,
-- gotom


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297205: gaim X usage idle time missing

2005-02-27 Thread Luke Schierer
> XScreenSaver support:  No

okay, that's why you don't have the option, Now the question is, which 
I can't answer, why it was not discovered.  do you have x.org rather 
than xfree86? the newest version of x.org puts stuff in /usr rather 
than /usr/X11R6, and gaim can't handle that.

luke



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297155: cupsys-driver-gimpprint: Bad rasterization of some PS data to HP 4L printer

2005-02-27 Thread Daniel Nilsson
On Sun, Feb 27, 2005 at 11:43:23PM +, Roger Leigh wrote:
> 
> > I guess that issue is with muttprint then, or possibly latex.
> 
> I'm not familiar with muttprint, so I can't really comment.  The page
> looks like it's come directly from dvips, but the 2-up pages must have
> come from somewhere, and that's presumably what caused the problem.

I reassigned this bug to the muttprint package, I guess we will have
to figure out from there where things are broken. Thanks for your
help.

/Daniel


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#296403: mysql-server: confirm the problem, but no problem with the server

2005-02-27 Thread Martin Lohmeier
Package: mysql-server
Version: 4.0.23-7
Followup-For: Bug #296403

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I can confirm the problem. I upgraded from the testing verison (i think it was 
4.0.23-4).
I updatet three boxes (one ppc and two i386) and on all three mysql did not 
restart
after update.
syslog:

Feb 28 01:27:58 localhost mysqld[2099]: 050228  1:27:58 /usr/sbin/mysqld: 
Normal shutdown
Feb 28 01:27:58 localhost mysqld[2099]: 
Feb 28 01:27:58 localhost mysqld[2099]: 050228  1:27:58  InnoDB: Starting 
shutdown...
Feb 28 01:28:00 localhost mysqld[2099]: 050228  1:28:00  InnoDB: Shutdown 
completed
Feb 28 01:28:00 localhost mysqld[2099]: 050228  1:28:00 /usr/sbin/mysqld: 
Shutdown Complete
Feb 28 01:28:00 localhost mysqld[2099]: 
Feb 28 01:28:00 localhost mysqld_safe[3217]: ended
Feb 28 01:28:24 localhost mysqld_safe[3399]: Installing all prepared tables
Feb 28 01:28:24 localhost mysqld_safe[3399]: 050228  1:28:24 /usr/sbin/mysqld: 
Shutdown Complete
Feb 28 01:28:24 localhost mysqld_safe[3399]: 
Feb 28 01:28:24 localhost mysqld_safe[3399]: 
Feb 28 01:28:24 localhost mysqld_safe[3399]: PLEASE REMEMBER TO SET A PASSWORD 
FOR THE MySQL root USER !
Feb 28 01:28:24 localhost mysqld_safe[3399]: To do so, start the server, then 
issue the following commands:
Feb 28 01:28:24 localhost mysqld_safe[3399]: /usr/bin/mysqladmin -u root 
password 'new-password'
Feb 28 01:28:24 localhost mysqld_safe[3399]: /usr/bin/mysqladmin -u root -h 
small password 'new-password'
Feb 28 01:28:24 localhost mysqld_safe[3399]: See the manual for more 
instructions.
Feb 28 01:28:24 localhost mysqld_safe[3399]: 
Feb 28 01:28:24 localhost mysqld_safe[3399]: NOTE:  If you are upgrading from a 
MySQL <= 3.22.10 you should run
Feb 28 01:28:24 localhost mysqld_safe[3399]: the 
/usr/bin/mysql_fix_privilege_tables. Otherwise you will not be
Feb 28 01:28:24 localhost mysqld_safe[3399]: able to use the new GRANT command!
Feb 28 01:28:24 localhost mysqld_safe[3399]: 
Feb 28 01:28:24 localhost mysqld_safe[3399]: Please report any problems with 
the /usr/bin/mysqlbug script!
Feb 28 01:28:24 localhost mysqld_safe[3399]: 
Feb 28 01:28:24 localhost mysqld_safe[3399]: The latest information about MySQL 
is available on the web at
Feb 28 01:28:24 localhost mysqld_safe[3399]: http://www.mysql.com
Feb 28 01:28:24 localhost mysqld_safe[3399]: Support MySQL by buying 
support/licenses at https://order.mysql.com
Feb 28 01:28:24 localhost mysqld_safe[3399]: 
Feb 28 01:28:25 localhost mysqld_safe[3423]: 050228  1:28:25 /usr/sbin/mysqld: 
Shutdown Complete
Feb 28 01:28:25 localhost mysqld_safe[3423]: 
Feb 28 01:28:25 localhost mysqld_safe[3429]: 050228  1:28:25 /usr/sbin/mysqld: 
Shutdown Complete
Feb 28 01:28:25 localhost mysqld_safe[3429]: 

and the output of apt-get upgrade:

[snip]
Preparing to replace mysql-server 4.0.23-4 (using 
.../mysql-server_4.0.23-7_i386.deb) ...
Stopping MySQL database server: mysqld.
Unpacking replacement mysql-server ...
[snip]
Setting up mysql-server (4.0.23-7) ...
Installing new version of config file /etc/init.d/mysql ...
Installing new version of config file /etc/logrotate.d/mysql-server ...
Installing new version of config file /etc/mysql/debian-start ...
Installing new version of config file /etc/mysql/debian-log-rotate.conf ...
Installing new version of config file /etc/cron.daily/mysql-server ...
Installing new version of config file 
/etc/logcheck/ignore.d.workstation/mysql-server ...
Installing new version of config file 
/etc/logcheck/ignore.d.server/mysql-server ...
Installing new version of config file 
/etc/logcheck/ignore.d.paranoid/mysql-server ...
Stopping MySQL database server: mysqld.
 System startup links for /etc/init.d/mysql already exist.

[snip]

by, Martin


- -- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.29
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages mysql-server depends on:
ii  adduser  3.59Add and remove users and groups
ii  debconf  1.4.30.11   Debian configuration management sy
ii  gawk 1:3.1.4-2   GNU awk, a pattern scanning and pr
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libdbi-perl  1.46-6  Perl5 database interface by Tim Bu
ii  libmysqlclient12 4.0.23-7mysql database client library
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libwrap0 7.6.dbs-6   Wietse Venema's TCP wrappers libra
ii  mailx1:8.1.2-0.20040524cvs-4 A simple mail user agent
ii  mysql-client 4.0.23-7mysql database client binaries
ii  mysql-common 4.0.23-7mysql database common files (e.g. 
ii  passwd   1:4.0.3-30.9change and administer password and
ii  perl 5.8.4-6 Larry Wall's Practical Extrac

Bug#292673: additional info

2005-02-27 Thread GOTO Masanori
At Thu, 24 Feb 2005 14:17:44 -0800,
David Mosberger wrote:
> While there hasn't been any discussion for glibc bugzilla report #685
> [1], private communication with one of the glibc maintainers indicates
> that this issue is not considered to be a glibc bug because,
> officially, glibc supports only one thread library at a time:
> LinuxThreads _or_ NPTL, but not both at the same time.  Of course,
> every distro I know of ships both NPTL and LinuxThreads and the
> apparently accepted workaround appears to be to use the ld.so that was
> built for NPTL rather than the one that was built for LinuxThreads
> (more precisely, the ld.so should be used which uses larger thread
> descriptors).  Thus, I strongly suspect Debian should do the same.
> Since this bug results in memory corruption that can be very hard to
> track down, I hope this can be fixed quickly.  As a temporary
> workaround, just doing:

David, does this problem only occurs on ia64?  Or i686?  To be honest,
I have concerned this kind of problem - the incompatibility between
nptl and linuxthreads.

>   # mv /lib/tls/ld-2.3.2.so /lib/
> 
> should cure the problem.

I'm hard to decide to introduce this kind of workaround into the
package.  We have two choices - (1) increasing the size of
linuxthreads' thread descriptors (2) we don't load nptl library using
/lib/ld.so.  Taking choice (1) is nice idea - because (2) needs
another consideration about the kernel version capability.  Some
distributions (ex: SuSE/FC) provides the fixed kernel version - OTOH,
debian has two kernel version series - 2.4 (linuxthreads) and 2.6
(nptl).  If we can fix this problem with (1), we don't need to be care
about (2) modifications.

Regards,
-- gotom


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297225: savelog: breaks on files that start with hyphens when -p given

2005-02-27 Thread Alan Sundell
Package: debianutils
Version: 2.13.0
Severity: normal
File: /usr/bin/savelog
Tags: patch


The fix for 295850 broke hyphens with -p.

# touch -- -a
# chown -- mail.adm -a
# /usr/bin/savelog -p -c 10 -- -a
chown: invalid option -- a
Try `chown --help' for more information.
chmod: invalid option -- .
Try `chmod --help' for more information.
Rotated `-a' at Sun Feb 27 16:14:52 PST 2005.
-rw---  1 root root 0 Feb 27 16:14 -a
-rw---  1 mail adm  0 Feb 27 16:14 -a.0

The problem with the patch I provided for 295021 was that I stupidly put
the '--' between an option and that option's argument (I was thinking of
it as a regular argument because it was a filename).  Of course, it
should go after all options.

The new patch (attached) does just that.  (I also put the '=' in to
match the usage given in the manual and to make someone less likely to
make my mistake of separating those two words in the future.)  The
results:

# touch foo
# chown mail.adm foo
# ./savelog -p -c 10 foo
Rotated `foo' at Sun Feb 27 16:16:26 PST 2005.
# ls -l foo*
-rw---  1 mail adm 0 Feb 27 16:16 foo
-rw---  1 mail adm 0 Feb 27 16:16 foo.0

# touch -- -a
# chown -- mail.adm -a
# ./savelog -p -c 10 -- -a
Rotated `-a' at Sun Feb 27 16:16:40 PST 2005.
# ls -l -- -a*
-rw---  1 mail adm 0 Feb 27 16:16 -a
-rw---  1 mail adm 0 Feb 27 16:16 -a.0


I don't know much about the lives of Debian maintainers, but does the
debianutils package have any sort of unit tests?  If so, it'd be great
to add test cases to catch regressions of this bug and the previous
ones.  I'd be happy to help write them.

Unfortunately, I searched for information to see if there was any
testing framework for Debian packages but found none, so I'm guessing
the answer to my question is going to be "no."

Thanks!

--Alan

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages debianutils depends on:
ii  coreutils   5.2.1-2  The GNU core utilities
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an

-- no debconf information
--- savelog.orig2005-02-27 15:59:58.683172248 -0800
+++ savelog 2005-02-27 16:02:06.582606010 -0800
@@ -266,8 +266,8 @@
if [ -n "$preserve" ]; then
(umask 077
 touch -- "$filename.new"
-chown --reference "$filename" "$filename.new"
-chmod --reference "$filename" "$filename.new")
+chown --reference="$filename" -- "$filename.new"
+chmod --reference="$filename" -- "$filename.new")
filenew=1
elif [ -n "$touch$user$group$mode" ]; then
touch -- "$filename.new"


Bug#297224: kmahjongg: Theme, tileset, background, and layout settings are not saved

2005-02-27 Thread Julian Mehnle
Package: kmahjongg
Version: 4:3.3.2-1
Severity: normal

When I select a theme, tileset, background, or layout, KMahjongg does
not save my selection and returns to the defaults when I close and
restart the program.  Thus I always have to choose my preferred
background and tileset manually when starting KMahjongg. :-(

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (600, 'testing'), (90, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages kmahjongg depends on:
ii  kdelibs44:3.3.2-1KDE core libraries
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-6GCC support library
ii  libkdegames14:3.3.2-1KDE games library and common files
ii  libqt3c102-mt   3:3.3.3-8Qt GUI Library (Threaded runtime v
ii  libstdc++5  1:3.3.5-8The GNU Standard C++ Library v3

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#268583: pciehp hotplug error

2005-02-27 Thread Matt Taggart
I'm also seeing the problem with hotplug trying to load pciehp/shpchp.

  pciehp: acpi_pciehprm:\_SB_.PCI0 evaluate _BBN fail=0x5
  pciehp: acpi_pciehprm:get_device PCI ROOT HID fail=0x5
   pciehp: can't be loaded
  missing kernel or user mode driver pciehp 
  shpchp: acpi_shpchprm:\_SB_.PCI0 evaluate _BBN fail=0x5
  shpchp: acpi_shpchprm:get_device PCI ROOT HID fail=0x5
   shpchp: can't be loaded
  missing kernel or user mode driver shpchp

kernel: kernel-image-2.6.10-1-k7  version: 2.6.10-4
hotplug version:0.0.20040329-17
system: FIC K7/sis746 based mainboard (with no PCI Express)
lspci:
:00:00.0 Host bridge: Silicon Integrated Systems [SiS] 746 Host (rev 10)
:00:01.0 PCI bridge: Silicon Integrated Systems [SiS] SG86C202
:00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS963 [MuTIOL Media 
IO] (rev 25)
:00:02.1 SMBus: Silicon Integrated Systems [SiS]: Unknown device 0016
:00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE]
:00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] 
Sound Controller (rev a0)
:00:03.0 USB Controller: Silicon Integrated Systems [SiS] USB 1.0 
Controller (rev 0f)
:00:03.1 USB Controller: Silicon Integrated Systems [SiS] USB 1.0 
Controller (rev 0f)
:00:03.3 USB Controller: Silicon Integrated Systems [SiS] USB 2.0 
Controller
:00:08.0 RAID bus controller: 3ware Inc 3ware 7000-series ATA-RAID (rev 01)
:00:0a.0 Ethernet controller: Intel Corp. 82540EM Gigabit Ethernet 
Controller (rev 02)
:00:0c.0 Ethernet controller: Realtek Semiconductor Co., Ltd. 
RTL-8139/8139C/8139C+ (rev 10)
:01:00.0 VGA compatible controller: Matrox Graphics, Inc. MGA G400 AGP 
(rev 04)

Why is hotplug trying to load this stuff?

-- 
Matt Taggart
[EMAIL PROTECTED]




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#295331: maintenance of fetchmail package

2005-02-27 Thread Graham Wilson
On Mon, Feb 21, 2005 at 05:45:02PM +0100, Nico Golde wrote:
> * Graham Wilson <[EMAIL PROTECTED]> [2005-02-21 17:06]:
> > Well, it seems like that is the prevailing opinion at this point. So
> > I'll just let you guys create the Alioth project.
> 
> Ok i created the alioth project named fetchmail. Within 72
> hours we will get a reply if it is ok by the admins.

Have you heard back from the Alioth admins yet?

-- 
gram


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297218: ITP: radeontool -- utility to control ATI Radeon backlight functions on laptops

2005-02-27 Thread Luigi Gangitano
Il giorno lun, 28-02-2005 alle 00:10 +0100, Luigi Gangitano ha scritto:
> Package: wnpp
> Severity: wishlist
> Owner: Luigi Gangitano <[EMAIL PROTECTED]>
> 
> * Package name: radeontool
>   Version : 1.5
>   Upstream Author : Frederick Dean <[EMAIL PROTECTED]>
> * URL : http://fdd.com/software/radeon/
> * License : zlib license
>   Description : utility to control ATI Radeon backlight functions on 
> laptops

You can find (and review) a preliminary package at

  http://people.debian.org/~luigi/radeontool

Regards,

-- 
 Luigi Gangitano -- <[EMAIL PROTECTED]> -- <[EMAIL PROTECTED]>
 GPG: 1024D/924C0C26: 12F8 9C03 89D3 DB4A 9972  C24A F19B A618 924C 0C26


signature.asc
Description: Questa parte del messaggio =?ISO-8859-1?Q?=E8?= firmata


Bug#297205: oops

2005-02-27 Thread Robert McQueen
tags 297205 -unreproducible
thanks
He's right, it's not compiled with XSS.
Regards,
Rob
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#297074: Temporary file created by poedit sould be of the same encoding as the file being edited

2005-02-27 Thread Marcin Owsiany
On Mon, Feb 28, 2005 at 12:55:11AM +0100, Boris Yakobowski wrote:
> On Sun, Feb 27, 2005 at 11:26:06PM +0100, Marcin Owsiany wrote:
> > As far as I know, potool knows nothing about encodings, so it should be
> > completly transparent to them, and just pass text from the po file in
> > whatever encoding it is, unchanged, to the temp file, and back. But I
> > may be wrong.
> 
> Yes

Ah, so the issue is not that poedit performs some inappropriate
recoding, but that $EDITOR decides to interpret a file containing just
US-ASCII file as iso-8859-15, and not as UTF-8. But then after you input
some non-us-ascii characters (which emacs encodes as iso-8859-15),
poedit merges a UTF-8 and an iso-8859-15 file.

> but I find the current behavior unsatisfactory because it is the
> responsibility of the user to set the correct encoding for the temporary
> file. Otherwise it is appended as is, in an incorrect way; in my case emacs
> saw the temporary file as an iso-8859-15 file (which was technically
> correct), and then poedit merged it as is with the original utf8 po file.

The problem is that the temporary file which poedit creates does not
have any metadata which would indicate its encoding. Therefore emacs is
free to choose whatever encoding it feels is appropriate. And since on
creation the file contains pure US-ASCII, emacs chooses iso-8859-15.

> So
> there are two ways to correct this in my opinion :
> - the temporary file is created with the correct encoding

What do you mean by "with the correct encoding"? The problem is exactly
that for pure US-ASCII input, its iso-8859-15 and UTF-8 representations
are _exactly_ the same. So technically speaking, it _does_ have the
correct encoding.

> - the temporary file is converted after it has been saved, before being
> merged.

Since automagic detection of encoding (based just on the data) seems a
very risky business, in order to perform a conversion, two things would
be needed:
 - a specification of the target encoding (could be easily retrieved
   from the original po file Content-Type: header)
 - a specification of the source encoding, i.e. "what encoding $EDITOR
   chose to save your input in". I can't see how that could be done for
   any editor in general.

However, I can see a third possibility, namely to have poedit prepend a
Content-Type header, which would hopefully force $EDITOR into using
correct (i.e. matching the initial po file) encoding for the following
input.

> I think just about anything would work ; besides it is highly locales and
> emacs/whatever dependent unfortunately...

By the way, doesn't something like:

LC_CTYPE=fr_FR.UTF-8 poedit blah.po

provide a workaround? I guess that should force into using UTF-8 as the
tempfile encoding..

Marcin
-- 
Marcin Owsiany <[EMAIL PROTECTED]> http://marcin.owsiany.pl/
GnuPG: 1024D/60F41216  FE67 DA2D 0ACA FC5E 3F75  D6F6 3A0D 8AA0 60F4 1216


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297059: libgcj5-awt: java.awt.IllegalComponentStateException with konqueror java applet viewer

2005-02-27 Thread Riku Voipio
On Sun, Feb 27, 2005 at 10:03:05PM +0100, Matthias Klose wrote:
> yes, known, ... please install the libgcj6,-dev package as well. fixed
> for the next upload.

With libgcj6-dev installed, a similar backtrace comes than with
gij-3.4:

Something bad happened in createApplet:
java.awt.IllegalComponentStateException
Backtrace:
java.awt.IllegalComponentStateException
   at java.awt.Frame.setUndecorated(boolean) (/usr/lib/libgcj.so.6.0.0)
   at org.kde.kjas.server.KJASAppletStub.createApplet() (Unknown Source)
   at
org.kde.kjas.server.KJASAppletContext.createApplet(java.lang.String,
java.lang.String,java.lang.String, java.lang.String, java.lang.String,
java.lang.String, java.lang.String, java.lang.String, java.lang.String,
java.lang.String, java.lang.String, java.lang.String,
java.util.Hashtable) (Unknown Source)
   at org.kde.kjas.server.KJASProtocolHandler.processCommand(byte[])
(Unknown Source)
   at org.kde.kjas.server.KJASProtocolHandler.commandLoop() (Unknown
Source)
   at org.kde.kjas.server.Main.main(java.lang.String[]) (Unknown Source)

In java/awt/Frame.java of gcc-4.0 libjava, the documentation and
actual check appear to be mixed... : 

 /**
   * Disables or enables decorations for this frame. This method can
   * only be
   * called while the frame is not displayable.
   * 
   * @exception IllegalComponentStateException If this frame is
   * displayable.
   * 
   * @since 1.4
   */
  public void setUndecorated (boolean undecorated)
  {
if (!isDisplayable ())
  throw new IllegalComponentStateException ();

this.undecorated = undecorated;
  }



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#294895: Patch for a2ps

2005-02-27 Thread Richard Lewis
Frank Küster writes:

>> When doing a "apt-get dist-upgrade" (from version 1:4.13b-4)
>> I got the following error
>>
>> dpkg: dependency problems prevent configuration of a2ps:
>>  a2ps depends on emacsen-common; however:
>>Package emacsen-common is not configured yet.
>>dpkg: error processing a2ps (--configure):
>> dependency problems - leaving unconfigured
>> 
>> re-running "apt-get dist-upgrade" fixed things.
>> emacsen-common was upgraded from 1.4.15 -> 1.4.16
>
> Richard, do you remember any error messages prior to this?  The most
> likely cause for this error is that dpkg tried to configure
> emacsen-common first (as dictated by the declared dependencies), but
> failed for some reason. 
>

no errors were displayed.  I've got a transcript of the whole upgrade
(both the first run that gave the error, and the second that
succeeded) which I could provide if needed.




Bug#297010: linux-kernel-header: O_NOATIME needed for lvm

2005-02-27 Thread GOTO Masanori
At Sat, 26 Feb 2005 14:40:33 +0100,
Goswin Brederlow wrote:
> Package: linux-kernel-headers
> Version: 2.5.999-test7-bk-17
> Severity: critical
> File: linux-kernel-header
> Justification: breaks the whole system
> 
> Hi,
> 
> when one tries to run pvmove or lvsnapshot on / the lvm will deadlock
> itself due to atime updates on /dev/ being blocked while the LVM is
> locked. Sine any read/write access to / will be blocked the system
> breaks.
> 
> To prevent this lvm uses O_NOATIME where available, which is still not
> the case in current linux-kernel-headers.

I couldn't understand why this problem is occured.  O_NOATIME was
introduced in 2.6.7.  Is the root of problem to upgrading lvm package?
Bastian's patch adds only O_NOATIME flag - this means that lvm can fix
using O_NOATIME in your new package.  In other words, lvm is
"severity: critical", but glibc is not.  lvm is kernel related
package, so depending on libc6 header sometimes causes problems.

So I recommend that lvm should use O_NOATIME definition in your
package for a while.

Regards,
-- gotom


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#294933: $PS1 set for non-interactive shells too

2005-02-27 Thread Marco d'Itri
On Feb 27, Gerrit Pape <[EMAIL PROTECTED]> wrote:

> > > Do you have an example where such a test on $PS1 is used?  I'm unsure
> > Yes, I have a script which must behave differently if started from init
> > or by an user from the shell. $- does not work.
> Hm, I fail to see how this works if I start a bash script from bash
> login shell, PS1 is unset just as $- doesn't contain an i, what am I
> missing?:
Interesting... looks like I was partially wrong and this only worked
with dash.
I still think that this would be a nice thing to have, but it's
obviously not much relevant anymore.

> Wouldn't it be better to check for the environment provided by sysvinit
> (RUNLEVEL, PREVLEVEL, INIT_VERSION), or to check $PPID?
No, because AFAIK these variables are not a standard. In the end I
checked `tty` = "/dev/console", which also has other useful properties.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#297221: tiobench: column descriptions are gone

2005-02-27 Thread Christian
Package: tiobench
Version: 0.3.3-4
Severity: minor


the descriptions of the columns in tiobench's output are gone, it looked
like this:

http://nerdbynature.de/bench/prinz/2.6.0-test5/prinz-2.6.0-test5-xfs.txt

now it looks like this:

http://nerdbynature.de/bench/prinz/2.6.6/prinz-2.6.6-xfs.txt

i've noticed the error only now, but the resultfile from above is from
06/2004 and so the bug is somewhat old. 

luckily the maintainer of tiobench is always online and so (after
blaming perl of course) we managed to find a fix for this behaviour:

--- /usr/bin/tiobench   2004-04-25 15:39:51.0 +0200
+++ /home/evil/tiobench 2005-02-28 00:40:31.0 +0100
@@ -197,7 +197,7 @@
 $report{'RAND_WRITES'}  = "Random Writes";

  foreach my $title ('SEQ_READS', 'RAND_READS', 'SEQ_WRITES',
  'RAND_WRITES') {
  -   $-=0; $~="$title"; $^L=''; # reporting variables
  +   $-=0; $~="$title"; $^='SEQ_READS_TOP'; $^L=''; # reporting
  variables
  print "\n$report{$title}\n";
  foreach $size (@sizes) {
 foreach $block (@blocks) {
 

(applies with -p0)

thanks,
Christian.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-rc2-bk10
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages tiobench depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  perl [perl5]5.8.4-6  Larry Wall's Practical Extraction 

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297220: f-prot-installer: incorrect download size in user prompt

2005-02-27 Thread Stuart Prescott
Package: f-prot-installer
Version: 0.5.13
Severity: minor

In the prompt to download the new version of f-prot, the script says:

I'm going to download the new version now.
Download size is approximately 1.8 MByte.

However, the actual (current) download is 2.8 MiB (2,912,664 bytes). 

Not a problem for me (fast connection etc), but others might get a shock
when the download is considerably larger than expected!

thanks for a really useful script!

Stuart



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (600, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages f-prot-installer depends on:
ii  debconf   1.4.30.12  Debian configuration management sy
ii  debianutils   2.8.4  Miscellaneous utilities specific t
pn  libwww-perl  Not found.
ii  unzip 5.51-2 De-archiver for .zip files
ii  wget  1.9.1-8retrieves files from the web

-- debconf information:
  f-prot-installer/action: Download and install
* f-prot-installer/configured: false
  f-prot-installer/note_cron:
  f-prot-installer/where_are_files: /tmp
* f-prot-installer/renamed:
  f-prot-installer/reinstall: true
  f-prot-installer/failed:
* f-prot-installer/update_defs: true
  f-prot-installer/install_later:


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297222: Tagging the same version twice messes up tag dir

2005-02-27 Thread Tobias Grimm
Package: svn-buildpackage
Version: 0.5.12
Severity: normal

When invoking "svn-buildpackage --svn-tag" twice, the second
call will mess up the tag like this:

test/
branches/
tags/
0.0.1-1/
debian/
trunk/
test
trunk/


The problem is test/tags/0.0.1-1/trunk, which is created
there, because the directory 0.0.1-1 already exists when
copying trunk to 0.0.1-1.

I suggest, that the tag is simply deleted before it is
created.

Another possibility would be to check, if the tag already
exists and in this case abort svn-buildpackage. But then
there should be an option like "--svn-replace-tag" to
make it possible to delete any existing tag before copying
the new one.

Tobias



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297223: Thread Safety

2005-02-27 Thread Kasper Schoonman
Package: php4
Version: 4.3.10-3
Since we upgraded php4 from 4.3.10-2 tot 4.3.10-3 some PHP modules 
don't work anymore. For me the most important is PDFLib. Since we have 
a lot of Dynamic generated PDF scripts using PDFLib because of it's 
speed which is incomparable with fPDF.

I contacted PDFLib GmbH to ask them if there's an Thread Safety enabled 
version of the PDFLib, their answer: 'there is not, and there won't be 
a 'Thread Safety Enabled version'.

So I had to downgrade to 4.3.10-2 again to make all the scripts work 
again, since even the new version of php4 (4.3.10-8) has this thread 
safety option on, it seems that the package maintainers have chosen for 
this option.

Since this 'Thread Safety' option also makes a few other modules (like 
render accelerators / cachers) unusable; 'Why not make both, 
php4-threadsafe and a regular php4 package'.

With Kind Regards,
Kasper Schoonman

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#295777: hicolor-icon-theme: (ppc) Package is almost empty : there are only generic icons on my desktop after update.

2005-02-27 Thread Valentin Descamps

On Sun, Feb 27, 2005, Valentin Descamps wrote:
 

I tried your last solution also but it didn't work.
   

 rm -f /usr/share/icons/*/icon-theme.cache
 

I made a typo in my first message, and mentionned icon-theme-cache
instead of icon-theme.cache.  the above command should really work.
  Bye,
 

Wonderful, it worked :)
Thank you very much.
Bye
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#297074: Temporary file created by poedit sould be of the same encoding as the file being edited

2005-02-27 Thread Boris Yakobowski
On Sun, Feb 27, 2005 at 11:26:06PM +0100, Marcin Owsiany wrote:
> As far as I know, potool knows nothing about encodings, so it should be
> completly transparent to them, and just pass text from the po file in
> whatever encoding it is, unchanged, to the temp file, and back. But I
> may be wrong.

Yes, but I find the current behavior unsatisfactory because it is the
responsibility of the user to set the correct encoding for the temporary
file. Otherwise it is appended as is, in an incorrect way; in my case emacs
saw the temporary file as an iso-8859-15 file (which was technically
correct), and then poedit merged it as is with the original utf8 po file. So
there are two ways to correct this in my opinion :
- the temporary file is created with the correct encoding
- the temporary file is converted after it has been saved, before being
merged.

Of course if poedit does not currently use encodings, this will be a bit of
work. But this bug is a wish after all :-)

> Could you provide an example file which could demonstrate this behavior?

I think just about anything would work ; besides it is highly locales and
emacs/whatever dependent unfortunately...

-- 
Boris


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297155: cupsys-driver-gimpprint: Bad rasterization of some PS data to HP 4L printer

2005-02-27 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Daniel Nilsson <[EMAIL PROTECTED]> writes:

> On Sun, Feb 27, 2005 at 06:53:10PM +, Roger Leigh wrote:
>> After printing, are there errors in /var/log/cups/error_log?
>> Something like:
>> 
>>   WARNING: Gimp-Print detected broken job options.
>>   Output quality is degraded.  Are you using psnup or non-ADSC PostScript?
>
> Indeed, that warning is present in that logfile.
>
>> If this is the case, the PostScript is buggy, and this is causing
>> problems with the pstops filter.  At this point, the raster data is
>> broken, and we print the best we can (the alternative is printing
>> nothing, which is a little less friendly).
>
> Ok, I thought that since I could view the PS data with ghostview and
> get a high quality display on the screen that I should be able to get
> high quality on the printer as well. But that is probably a false
> assumption...

You can if you print a little more "manually".  You could, for
example, run the file through gs using ijsgimpprint (in the
ijsgimpprint package; there's examples in the manpage), which will
give you a "raw" print file.  The raw print file may then be printed
with "lpr -o raw".

This bypasses the CUPS PostScript filtering (which got confused
somehow by the non-standard PostScript and mangled the job options,
resulting in a 1/8 wide raster which we detected and manually reexpand
at the cost of much reduced quality).

> I guess that issue is with muttprint then, or possibly latex.

I'm not familiar with muttprint, so I can't really comment.  The page
looks like it's come directly from dvips, but the 2-up pages must have
come from somewhere, and that's presumably what caused the problem.

> Should I open a new bug with the muttprint package or can this bug
> be reassigned ?

You can reassign by sending mail to control (at) bugs.debian.org
containing

  reassign bugnumber package

in the body (http://www.debian.org/Bugs/server-control).


Regards,
Roger

- -- 
Roger Leigh
Printing on GNU/Linux?  http://gimp-print.sourceforge.net/
Debian GNU/Linuxhttp://www.debian.org/
GPG Public Key: 0x25BFB848.  Please sign and encrypt your mail.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8 

iD4DBQFCIlsZVcFcaSW/uEgRAntpAKCC8+04t7bhgmQeHkyK4DaT7EW5XwCWMpap
VsZgxHdBhqbWQAm03lkoig==
=un35
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#277085: gnochm Debian package

2005-02-27 Thread Carlos Liu
On Sun, Feb 27, 2005 at 05:06:02PM +0100, Tommaso Moroni wrote:
> Hi!
> 
Hello, I CC my reply to the BTS and [EMAIL PROTECTED] as well, hope you
wouldn't mind.

> I'm tidying up the wnpp bugs on the Debian BTS by looking for "inactive" ITPs.
> I saw that some time ago you filed an ITP for gnochm, so I'd like to know
> if you still intend to package it.
> 
Yes, I packaged it several month before, and still maintain it.
Currently, I'm preparing the package for the new release. It will be
available before next Monday. The repository is
http://chinese.alioth.debian.org/gnochm . I filed a RFS in December
2004, but no sponsors are interesting in it. :( Maybe, I should try
again.

> Please also notice that "pabs <[EMAIL PROTECTED]>" has already packaged 
> gnochm  
> (see bugs #288353 and #290262), so you may want to contact him in order
> to avoid duplicate efforts.
> 

-- 
 Best Regards,
 Carlos


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#276800: do you want to fix erlang?

2005-02-27 Thread Frank Lichtenheld
On Sat, Feb 26, 2005 at 04:04:03PM +0100, Torsten Werner wrote:
> reassign 294992 erlang
> merge 294992 276800

Hmm, why did you do that merge? From the bug reports I can't see any
connection between them. Apart from the fact that 294992 was tagged
"sarge" and 276800 "sid", so I really don't see, how they could belong
together.

Gruesse,
-- 
Frank Lichtenheld <[EMAIL PROTECTED]>
www: http://www.djpig.de/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#297205: gaim X usage idle time missing

2005-02-27 Thread D. Hilley
Luke Schierer <[EMAIL PROTECTED]> writes:
> in help->about, please paste the section
> "Gaim was compiled with the following:"

Gaim was compiled with the following:

Arguments to ./configure: '--build=i386-linux' '--prefix=/usr'
'--includedir=${prefix}/include' '--mandir=${prefix}/share/man'
'--infodir=${prefix}/share/info' '--sysconfdir=/etc'
'--localstatedir=/var' '--libexecdir=${prefix}/lib/gaim' '--srcdir=.'
'--disable-maintainer-mode' '--disable-nas' '--disable-nss'
'--disable-perl' '--disable-silc' '--with-zephyr=/usr' 'CC=cc'
'CFLAGS=-g -Wall -O2' 'CXXFLAGS=-g -Wall -O2' 'CXX=g++'
'build_alias=i386-linux'

Print debugging messages:  No
Binary relocation:  Disabled
Plugins:  Enabled
SSL:  Gaim was compiled with SSL support
GNUTLS:  Enabled
NSS:  Disabled
Tcl: Yes
Tk:  Yes
External libzephyr:  Yes
Zephyr uses Kerberos: No
AO:  Yes
NAS Audio:  No
GtkSpell:  Enabled
XScreenSaver support:  No
X SM support:  Yes

-- 
D. Hilley ([EMAIL PROTECTED])


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



  1   2   3   4   >