Bug#291156: courier-mta: The file /etc/courier/authmodulelist is deleted by the upgrade script

2005-01-19 Thread Willi Mann
tag 291156 + woody
merge 291156 147285
thanks
Jarle Aase schrieb:
Package: courier-mta
Version: 0.37.3-2.5
Severity: important
When this file is missing, SMTP authentication will not work. Users
that relay on the affected server for outgoing  mail (typically users with
laptops that use one SMTP-server with authentication from 
wherever they access the Internet) will be unable to send email. This
affects the reliability on Debian-servers that are set up for automatic
unattended upgrades (like most of the 30 - 40 servers I'm responsible for).
This is caused by a mistake in a prerm script, and I will also not be fixed 
for woody. (It is fixed in sarge). As temporary solution, you could modify 
the init.d script of courier-mta to ensure the file exists (Copy it from 
another place if it does not exist.)

Something like that at beginning of /etc/init.d/courier-mta:
test -e /etc/courier/authmodulelist || cp \
/etc/courier/authmodulelist.persistent /etc/courier/authmodulelist
Note that automatic upgrades are not recommended. If you have 30 - 40 
servers, you should probably use a more sophisticated method to ensure the 
updates don't break anything. (Use your own repository of tested packages, 
etc..)

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


Bug#291200: mozilla-thunderbird: Thunderbird protocol-handler pref not accepting parameters

2005-01-19 Thread Matthew Exley
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Alexander,
Many thanks for the quick response. Yes, I had selected Debian mode (I
mis-read the help text during the upgrade). dpkg-reconfigure with
mode=GNOME has exactly the intended and desired effect.
In short: There's no bug according to the criteria given. I'd argue
there's a bug or feature-request to Upstream for parameters in the pref,
but now I'm splitting hairs.
Alexander Sack wrote:
| Matthew Exley wrote:
|
|
| Current Thunderbird no longer accepts parameters in the
| network.protocol-handler.app.http preference. I suspect other similar
| prefs (https, ftp etc) are also afflicted but I have not tested this.
|
| It never did. See below.
|
| For example I have Galeon set as my HTTP handler, with the following
| custom start script in Gnome-Desktop Preferences-Advanced-Preferred
| Applications:
| /usr/bin/galeon -n %s
| (launch a new tab not window).
|
|
| This works for me. In order to use the gnome way of setting the browser
| command you have to choose GNOME as mode during installation (try
| dpkg-reconfigure mozilla-thunderbird). I guess you have either Debian
| Mode oder None selected.
|
| Clicking a URL in Thunderbird results in a new Galeon window launching
| instead. This behaviour is duplicated when an explicit override is
| placed in thunderbird user prefs.js:
| user_pref(network.protocol-handler.app.http, /usr/bin/galeon -n);
|
|
| This never worked and will not work in future. Using the protocol
| handler pref just cannot take parameters.
|
|
- --
Matthew Exley[EMAIL PROTECTED]
Sysadmin Interview Questions: How much of your workday would you waste by
reading news?
Currently Listening To: U2 - The Unforgettable Fire
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFB7lfC0tj02rSlysIRAuznAJ9PK5XhJt9TbgN8doIeF3CnQnoicACfazoM
SMfR0XOw2eWkRuRbVg13sBE=
=DOzz
-END PGP SIGNATURE-
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Bug#289818: libpam-radius-auth: Sends out 127.0.0.1 as NAS-IP-Address

2005-01-19 Thread Joost De Cock
On Wed, 2005-01-19 at 13:13 +0100, Fabio Massimo Di Nitto wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Joost De Cock wrote:
 | On Wed, 2005-01-19 at 11:49 +0100, Fabio Massimo Di Nitto wrote:
 |
 
 | eddie:~# hostname
 | eddie
 | eddie:~# cat /etc/hosts
 | 127.0.0.1   localhost.localdomain   localhost   eddie
 
 ermh... hostname eddie would resolv as 127.0.0.1
 
 try this:
 127.0.0.1   localhost.localdomain   localhost
 10.100.1.223eddie
 
 |
 | I've changed the config file as follows:
 | eddie:~# cat /etc/pam.d/common-auth
 | auth   sufficient   /lib/security/pam_radius_auth.so debug
 | client-id=10.100.1.223
 | authrequiredpam_unix.so nullok_secure
 |
 | accountsufficient   /lib/security/pam_radius_auth.so
 |
 
 end the client_id= needs to go or should go in /etc/pam_radius_auth.conf
 
 Please can you test both the changes, one at a time?

Oh boy, this is going to haunt me for the rest of my live. 
I changed the hosts file as you suggested and guess what, it works.
I changed it back and added the client_id parameter, but that didn't
seem to make a difference.

So yes, it works when adding the ip address to the hostfile, and yes I'm
a complete ass (guilty as charged). 
I'll go glue my shattered ego together now ;)

I'm really sorry to bother you like this. I just didn't realize he was
resolving the host name (C is like german to me, I understand enough to
realize I don't get any of it).

kind regards,

joost



DISCLAIMER
This e-mail and any attached files are confidential and may be legally 
privileged. If you are not the addressee, any disclosure, reproduction, 
copying, distribution, or other dissemination or use of this communication is 
strictly prohibited. If you have received this transmission in error please 
notify A.S.T.R.I.D.  nv/sa immediately and then delete this e-mail.



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



Bug#289732: Bug#218530: Conditional command execution

2005-01-19 Thread Tollef Fog Heen
* Thomas Hood 

| What is the best way to run a command if and only if it is on the PATH?

findcommand() {
while [ $# -ge 1 ]; do
P=$PATH
while [ $P ]; do
D=${P%%:*}
P=${P#*:}
if [ $D = $P ]; then
P=
fi
if [ -z $D ]; then
D=.
fi
if [ -x $D/$1 ]; then
echo $D/$1
return
fi
done
shift
done
}

should do what command -v does.  (Actually, it does a bit more, as it
can do stuff like:

: [EMAIL PROTECTED] ~  findcommand foo bar baz xterm
/usr/X11R6/bin/xterm

(which is _very_ useful for me when I'm doing something approaching
per-user cross-host alternatives (similar to what update-alternatives
provides).)

-- 
Tollef Fog Heen,''`.
UNIX is user friendly, it's just picky about who its friends are  : :' :
  `. `' 
`-  


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



Bug#284182: nvidia-kernel-2.4.27-1-686: unresolved symbols

2005-01-19 Thread Steve Langasek
Hi Randy,

As you may already know, a recent security update to the kernel packages
broke the kernel ABI; it seems likely that this is the cause of this bug.
If not, then that would make it yet *another* reason the current binaries
are broken, since there are no longer kernel-image-2.4.27-1-* packages in
the archive at all for i386.  Please rebuild this package against the
current kernel-build-2.4.27-2 package.

Since the current nvidia-modules-i386 packages are not usable with the
2.4.27-2 kernels in the archive, I've gone ahead and hinted this package for
removal from testing for the time being.

Thanks,
-- 
Steve Langasek
postmodern programmer


signature.asc
Description: Digital signature


Bug#291211: mdadm and Promise RAID controller

2005-01-19 Thread Paul Coray
Package: mdadm
Version: 1.8.1-1
This seems related to Bug#286118, as the same happens to me after 
upgrading mdadm from 1.7.0-2:

I run two Serverblades:
Dual P III 1 GHz
2 GB RAM
RAID Controller: Promise Technology, Inc. PDC20270 (FastTrak100 
LP/TX2/TX4) (rev 02)
attached 2 5400 RPM 40 GB HDs

I install Sarge with the latest Debian installer (rc2) with the install 
kernel 2.6.8-1-386. The Promise RAID controller is crap, no drivers for 
Kernel 2.6 are availble, and it is no real HW-RAID, so i need to 
configure software RAID 1 for mirroring the 2 disks during install.

Then I want to boot self-compiled kernels (for SMP and with NFS-ACL 
patches, with the md modules compiled in, so I don't need initrd no longer).

Strange enough with my own compiled kernels, the disk nodes changed from 
hde to hda and from hdg to hdc, but md wouldn't complain when booting. I 
saw other reports of this behavior with this RAID controller.

This was no problem until I updated mdadm from 1.7.0-2 to 1.8.1-1. Then 
I was no longer able to boot the Debian Packaged Kernels. There were 
several types of errors:

EXT3-fs: unable to read superblock
raid personality 3 not loaded
So I had to reinstall and set the mdadm selection to 'hold'.
Thanks for your attention
Paul
--
Paul Coray
Administrator Server und Netzwerk
Oeffentliche Bibliothek der Universitaet Basel
EDV-Abteilung
Schoenbeinstrasse 18-20
CH-4056 Basel
Tel: +41 61 267 05 13
Fax: +41 61 267 31 03
mailto:[EMAIL PROTECTED]
http://www.ub.unibas.ch
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Bug#291212: kernel-patch-mppe: patch apply correct ?!?

2005-01-19 Thread Antonio Biasio
Package: kernel-patch-mppe
Version: 2.4.2+20040216-3
Severity: important


I have apply mppe patch on my kernel-2.6.10 but this is error:

START applying mppe patch (MPPE encryption support for PPP)
Testing whether MPPE encryption support for PPP patch for 2.6.10
applies (dry run):
MPPE encryption support for PPP patch for 2.6.10 succeeded
Removing empty files:
Done.
grep-dctrl: improvvisa fine della riga.  --- ???
Patch /usr/src/kernel-patches/all/apply/mppe  failed.
Hit return to Continue


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-686-smp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages kernel-patch-mppe depends on:
ii  bash  3.0-13 The GNU Bourne Again SHell
ii  grep-dctrl2.1.8  Grep Debian package information
ii  gzip  1.3.5-9The GNU compression utility
ii  patch 2.5.9-2Apply a diff file to an original

-- no debconf information


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



Bug#130397: Bug 130397

2005-01-19 Thread David Kastrup
Kenichi Handa [EMAIL PROTECTED] writes:

 PS. I personally feel it's a waste of time to struggle with
 charset matters in ispell that much because emacs-unicode
 should not have such a problem.

Oh, but in the 5+ years until it gets released, people might still be
glad to have a fix.

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum


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



Bug#291213: findutils: locate [manual] Change updatedb(1L) = updatedb(1)

2005-01-19 Thread Jari Aalto
Package: findutils
Version: 4.1.20-5
Severity: minor


There is no  updatedb(1L) manual page in debian. Please change this to
updatedb(1) 

   $ man 1L updatedb
   No manual entry for updatedb in section 1L

See at:

   ...
   The file name databases contain lists of files that were on  the  system
   when  the  databases  were  last  updated.  The system administrator can
   choose the file name of the default database, the frequency  with  which
   the  databases  are  updated, and the directories for which they contain
 entries; see updatedb(1L).

OPTIONS
   -d path, --database=path
  Instead of searching the default file name database,  search  the



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US)

Versions of packages findutils 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#291210: bidwatcher: My mistake please close

2005-01-19 Thread George B.
Package: bidwatcher
Version: 1.3.16-1
Followup-For: Bug #291210


Oops, this is just me being stupid (had a browser window open in 
another workspace). Please close this bug.

.George Borisov.


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

Versions of packages bidwatcher depends on:
ii  libc6 2.3.2.ds1-20   GNU C Library: Shared libraries an
ii  libgcc1   1:3.4.3-4  GCC support library
ii  libglib1.21.2.10-9   The GLib library of C routines
ii  libgtk1.2 1.2.10-17  The GIMP Toolkit set of widgets fo
ii  libstdc++51:3.3.5-3  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-9 X Window System protocol client li
ii  libxext6  4.3.0.dfsg.1-9 X Window System miscellaneous exte
ii  libxi64.3.0.dfsg.1-9 X Window System Input extension li
ii  xlibs 4.3.0.dfsg.1-9 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#291209: csmash window black !

2005-01-19 Thread Justin Pryzby
tag 291209 confirmed
thanks

On my laptop, the window is not black, but mostly white.  The top of
the window looks distorted.  Sound seems to be okay.

Justin

On Wed, Jan 19, 2005 at 01:54:16PM +0100, vu-ngoc.san wrote:
 Package: csmash
 Version: 0.6.6-5
 Severity: grave
 Justification: renders package unusable
 
 
 since update 0.6.6-5 the playing window is totally black !
 otherwise the game seems to be running ok :-)
 
 this holds with or without fullscreen and on both of my machines
 (a desktop PC with linux 2.6.7 and a laptop with 2.4.27)
 
 
 -- System Information:
 Debian Release: 3.1
   APT prefers testing
   APT policy: (500, 'testing')
 Architecture: i386 (i686)
 Kernel: Linux 2.6.7-1-k7
 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
 
 Versions of packages csmash depends on:
 ii  csmash-data 0.6.6-5  data files for the CannonSmash 
 gam
 ii  libatk1.0-0 1.8.0-4  The ATK accessibility toolkit
 ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries 
 an
 ii  libgcc1 1:3.4.3-6GCC support library
 ii  libglib2.0- 2.4.8-1  The GLib library of C routines
 ii  libgtk2.0-0 2.4.14-2 The GTK+ graphical user 
 interface 
 ii  libice6 4.3.0.dfsg.1-10  Inter-Client Exchange library
 ii  libpango1.0 1.6.0-3  Layout and rendering of 
 internatio
 ii  libsdl-imag 1.2.3-6  image loading library for Simple 
 D
 ii  libsdl-mixe 1.2.5-9  mixer library for Simple 
 DirectMed
 ii  libsdl1.2de 1.2.7+1.2.8cvs20041007-3.0.1 Simple DirectMedia Layer
 ii  libstdc++5  1:3.3.5-5The GNU Standard C++ Library v3
 ii  libx11-64.3.0.dfsg.1-10  X Window System protocol client 
 li
 ii  libxext64.3.0.dfsg.1-10  X Window System miscellaneous 
 exte
 ii  libxi6  4.3.0.dfsg.1-10  X Window System Input extension 
 li
 ii  libxmu6 4.3.0.dfsg.1-10  X Window System miscellaneous 
 util
 ii  libxt6  4.3.0.dfsg.1-10  X Toolkit Intrinsics
 ii  xlibmesa-gl 4.3.0.dfsg.1-10  Mesa OpenGL utility library 
 [XFree
 ii  xlibs   4.3.0.dfsg.1-10  X Keyboard Extension (XKB) 
 configu
 ii  zlib1g  1:1.2.2-3compression library - runtime
 
 -- no debconf information
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 

-- 
Justin
aptitude install task-iraf saods9 eclipse sextractor x11iraf wcstools
http://www.justinpryzby.com/debian/

References

[0] 


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



Bug#291215: gnome-session fails to load gdesklets on startup

2005-01-19 Thread rp_
Package: gdesklets
Version: 0.33.1-1
Severity: normal

Hi!

I'm sorry to bring this back once again, but after the upgrade to 0.32
gnome-session fails to load gdesklets upon startup.
After calling gdesklets manually it runs fine.

Best regards,

/rp


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-mh3
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages gdesklets depends on:
ii  gconf2   2.8.1-4 GNOME configuration database syste
ii  libart-2.0-2 2.3.16-6Library of functions for 2D graphi
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libbonobo2-0 2.8.0-4 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.0-2 The Bonobo UI library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libgconf2-4  2.8.1-4 GNOME configuration database syste
ii  libgcrypt11  1.2.0-11LGPL Crypto library - runtime libr
ii  libglib2.0-0 2.6.1-2 The GLib library of C routines
ii  libgnome2-0  2.8.0-6 The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.8.0-1 A powerful object-oriented display
ii  libgnomeui-0 2.8.0-3 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.8.3-9 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.4.14-2The GTK+ graphical user interface 
ii  libgtop2-2   2.6.0-4 Libraries for gtop system monitori
ii  libhowl0 0.9.8-2 Library for Zeroconf service disco
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  liborbit21:2.10.2-1.1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.6.0-3 Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  librsvg2-2   2.8.1-2 SAX-based renderer library for SVG
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libtasn1-2   0.2.10-4Manage ASN.1 structures (runtime)
ii  libxml2  2.6.11-5GNOME XML library
ii  python-gnome22.6.1-1 Python bindings for the GNOME desk
ii  python-gtk2  2.4.1-2 Python bindings for the GTK+ widge
ii  python-numeric   23.6-3  Numerical (matrix-oriented) Mathem
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#291217: support of NFS-ACL

2005-01-19 Thread Paul Coray
Package: kernel-image-2.6.8-1-686-smp
Version: 2.6.8-10
Patches for support of NFS-ACLs from Andreas Gruenbacher 
(http://acl.bestbits.at/) should be included in Debian kernels.

Cheers
Paul
--
Paul Coray
Administrator Server und Netzwerk
Oeffentliche Bibliothek der Universitaet Basel
EDV-Abteilung
Schoenbeinstrasse 18-20
CH-4056 Basel
Tel: +41 61 267 05 13
Fax: +41 61 267 31 03
mailto:[EMAIL PROTECTED]
http://www.ub.unibas.ch
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Bug#290614: ITP: bazaar -- arch-based distributed revision control system

2005-01-19 Thread Steve Greenland
(This is kind of nitpicky, but...)

On 15-Jan-05, 04:36 (CST), Rob Weir [EMAIL PROTECTED] wrote: 
   Description : arch-based distributed revision control system

This, to me, was confusing: my first thought was but arch *is* a
distributed RCS. The long description clarified (and reminded me that I
had previously read about bazaar). Perhaps

Description: alternate implementation of arch with a superior UI

would be better? Perhaps not... I agree that it's hard to describe
in 80 chars.

Regards,
Steve Random Thoughts R Us  Greenland 

-- 
Steve Greenland
The irony is that Bill Gates claims to be making a stable operating
system and Linus Torvalds claims to be trying to take over the
world.   -- seen on the net


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



Bug#290894: e2fsprogs: resize2fs creates errors in file system

2005-01-19 Thread Theodore Ts'o
Oh, instead of waiting for the Debian mirrors to propagate, you could
also download the e2fsprogs 1.36-rc2 sources, and then apply the
following patch...

But, I think I will need the e2image dump in order to figure out what
happened.  Thanks!!

- Ted

# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
#   2005/01/19 00:26:43-05:00 [EMAIL PROTECTED] 
#   e2image.c, e2image.8.in: Add support for the -s option which
#   scrambles directory entries for raw image files.
# 
# misc/e2image.c
#   2005/01/19 00:26:43-05:00 [EMAIL PROTECTED] +105 -6
#   e2image.c, e2image.8.in: Add support for the -s option which
#   scrambles directory entries for raw image files.
# 
# misc/e2image.8.in
#   2005/01/19 00:26:43-05:00 [EMAIL PROTECTED] +51 -31
#   e2image.c, e2image.8.in: Add support for the -s option which
#   scrambles directory entries for raw image files.
# 
# misc/ChangeLog
#   2005/01/19 00:26:43-05:00 [EMAIL PROTECTED] +5 -0
#   Update log
# 
diff -Nru a/misc/ChangeLog b/misc/ChangeLog
--- a/misc/ChangeLog2005-01-19 08:15:54 -05:00
+++ b/misc/ChangeLog2005-01-19 08:15:54 -05:00
@@ -1,3 +1,8 @@
+2005-01-18  Theodore Ts'o  [EMAIL PROTECTED]
+
+   * e2image.c, e2image.8.in: Add support for the -s option which
+   scrambles directory entries for raw image files.
+
 2005-01-17  Theodore Ts'o  [EMAIL PROTECTED]
 
* tune2fs.c: On Solaris, defining _XOPEN_SOURCE inexplicably
diff -Nru a/misc/e2image.8.in b/misc/e2image.8.in
--- a/misc/e2image.8.in 2005-01-19 08:15:54 -05:00
+++ b/misc/e2image.8.in 2005-01-19 08:15:54 -05:00
@@ -8,7 +8,7 @@
 .SH SYNOPSIS
 .B e2image
 [
-.B \-rI
+.B \-rsI
 ]
 .I device
 .I image-file
@@ -45,10 +45,41 @@
 pipe.  This restriction will hopefully be lifted in a future version of
 .BR e2image .)
 .PP
+It is a very good idea to periodically (at boot time and 
+every week or so) to create image files for all of
+filesystems on a system, as well as saving the partition
+layout (which can be generated using the using
+.B fdisk \-l
+command).  Ideally the image file should be stored on some filesystem
+other that
+the filesystem whose data it contains, to ensure that its data is
+accessible in the case where the filesystem has been badly damaged.
+.PP
+To save disk space, 
+.B e2image
+creates the image file as a sparse file.  
+Hence, if the image file
+needs to be copied to another location, it should
+either be compressed first or copied using the 
+.B \-\-sparse=always
+option to GNU version of 
+.BR cp .  
+.PP
+The size of an ext2 image file depends primarily on the size of the
+filesystems and how many inodes are in use.  For a typical 10 gigabyte
+filesystem, with 200,000 inodes in use out of 1.2 million inodes, the
+image file be approximately 35 megabytes; a 4 gigabyte filesystem with
+15,000 inodes in use out of 550,000 inodes will result in a 3 megabyte
+image file.  Image files tend to be quite
+compressible; an image file taking up 32 megabytes of space on
+disk will generally compress down to 3 or 4 megabytes.
+.PP
+.SH RESTORING FILESYSTEM METADATA USING AN IMAGE FILE
+.PP
 The 
 .B \-I 
 option will cause e2image to install the metadata stored in the image
-file to the device.It can be used to restore the filesystem metadata
+file back to the device.It can be used to restore the filesystem metadata
 back to the device in emergency situations.
 .PP
 .B WARNING
@@ -62,6 +93,7 @@
 backup of the filesystem first, in case you wish to try other recovery
 strategies afterwards.
 .PP
+.SH RAW IMAGE FILES
 The 
 .B \-r
 option will create a raw image file instead of a normal image file.  
@@ -74,37 +106,25 @@
 compressing/decompressing this file with utilities that don't understand
 how to create sparse files; the file will become as large as the
 filesystem itself!)  Secondly, the raw image file also includes indirect
-blocks and data blocks, which the current image file does not have,
+blocks and directory blocks, which the standard image file does not have,
 although this may change in the future.
 .PP
-It is a very good idea to periodically (at boot time and 
-every week or so) to create image files for all of
-filesystems on a system, as well as saving the partition
-layout (which can be generated using the using
-.B fdisk \-l
-command).  Ideally the image file should be stored on some filesystem
-other that
-the filesystem whose data it contains, to ensure that its data is
-accessible in the case where the filesystem has been badly damaged.
-.PP
-To save disk space, 
-.B e2image
-creates the image file as a sparse file.  
-Hence, if the image file
-needs to be copied to another location, it should
-either be compressed first or copied using the 
-.B \-\-sparse=always
-option to GNU version of 
-.BR cp .  
-.PP
-The size of an ext2 image file depends primarily on the size of the
-filesystems and how many inodes are in use.  For a typical 10 gigabyte
-filesystem, with 

Bug#290894: e2fsprogs: resize2fs creates errors in file system

2005-01-19 Thread Walter Hofmann
On Wed, 19 Jan 2005, Theodore Ts'o wrote:

 Oh, instead of waiting for the Debian mirrors to propagate, you could
 also download the e2fsprogs 1.36-rc2 sources, and then apply the
 following patch...

I took e2fsprogs and -libs from incoming.debian.org. It's currently 
creating the image. I hope it will be finished this evening.

Walter


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



Bug#291221: emacs21: pcl-cvs doesn't work correctly with new cvs versions

2005-01-19 Thread Igor B. Poretsky
Package: emacs21
Version: 21.3+1-8
Severity: normal

It seems that pcl-cvs fails to parse cvs messages after performing
some commands, such as cvs commit, for instance. It appeared with
new versions of cvs found in Sarge distribution.

-- System Information:
Debian Release: 3.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-1-686
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages emacs21 depends on:
ii  emacs21-bin-common21.3+1-8   The GNU Emacs editor's shared, arc
ii  libc6 2.3.2.ds1-18   GNU C Library: Shared libraries an
ii  libice6   4.3.0.dfsg.1-8 Inter-Client Exchange library
ii  libjpeg62 6b-5   The Independent JPEG Group's JPEG 
ii  libncurses5   5.4-4  Shared libraries for terminal hand
ii  libpng12-01.2.8beta5-2   PNG library - runtime
ii  libsm64.3.0.dfsg.1-8 X Window System Session Management
ii  libtiff4  3.6.1-3Tag Image File Format library
ii  libungif4g4.1.3-1shared library for GIF images (run
ii  libx11-6  4.3.0.dfsg.1-8 X Window System protocol client li
ii  libxext6  4.3.0.dfsg.1-8 X Window System miscellaneous exte
ii  libxmu6   4.3.0.dfsg.1-8 X Window System miscellaneous util
ii  libxpm4   4.3.0.dfsg.1-8 X pixmap library
ii  libxt64.3.0.dfsg.1-8 X Toolkit Intrinsics
ii  xaw3dg1.5+E-8Xaw3d widget set
ii  xlibs 4.3.0.dfsg.1-8 X Window System client libraries m
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#291220: gtkam: still seeing errors from /etc/cron.monthly/scrollkeeper

2005-01-19 Thread Calum Mackay
Package: gtkam
Version: 0.1.12-2.1
Severity: normal

I'm seeing what looks like:

#271133: Parser error when running /etc/cron.monthly/scrollkeeper

yet that bug is marked fixed.

I'm seeing this from anacron:

/etc/cron.monthly/scrollkeeper:
/usr/share/gnome/help/gtkam/C/gtkam.xml:186: parser error : Comment must
not contain '--' (double-hyphen)
!--FIXME comand line --switches --
^
/usr/share/gnome/help/gtkam/C/gtkam.xml:207: parser error : Opening and
ending tag mismatch: phrase line 206 and textobject
/textobject 
 ^
/usr/share/gnome/help/gtkam/C/gtkam.xml:208: parser error : Opening and
ending tag mismatch: textobject line 205 and mediaobject
  /mediaobject 
^
/usr/share/gnome/help/gtkam/C/gtkam.xml:209: parser error : Opening and
ending tag mismatch: mediaobject line 201 and screenshot
/screenshot 
 ^
/usr/share/gnome/help/gtkam/C/gtkam.xml:210: parser error : Opening and
ending tag mismatch: screenshot line 200 and figure
  /figure
   ^
/usr/share/gnome/help/gtkam/C/gtkam.xml:246: parser error : Opening and
ending tag mismatch: figure line 198 and sect2
/sect2
^
/usr/share/gnome/help/gtkam/C/gtkam.xml:247: parser error : Opening and
ending tag mismatch: sect2 line 193 and sect1
  /sect1
  ^
/usr/share/gnome/help/gtkam/C/gtkam.xml:545: parser error : Opening and
ending tag mismatch: sect1 line 161 and article
/article
  ^
/usr/share/gnome/help/gtkam/C/gtkam.xml:546: parser error : Premature
end of data in tag article line 24

^


cheers,
calum.



-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages gtkam depends on:
ii  libatk1.0-0 1.8.0-4  The ATK accessibility toolkit
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libexif-gtk40.3.3-6  Library providing GTK+ widgets to 
ii  libexif10   0.6.9-4  The EXIF library allows you to par
ii  libglib2.0-02.4.8-1  The GLib library of C routines
ii  libgphoto2-22.1.5-2  The gphoto2 digital camera library
ii  libgphoto2-port02.1.5-2  The gphoto2 digital camera port li
ii  libgtk2.0-0 2.4.14-2 The GTK+ graphical user interface 
ii  libpango1.0-0   1.6.0-3  Layout and rendering of internatio

-- no debconf information


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



Bug#291219: cvs: Doesn't work correctly with pcl-cvs in Emacs

2005-01-19 Thread Igor B. Poretsky
Package: cvs
Version: 1:1.12.9-9
Severity: normal

It seems that pcl-cvs fails to parse some messages received from cvs
after performing some commands, such as cvs commit.

-- System Information:
Debian Release: 3.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-1-686
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages cvs depends on:
ii  debconf 1.4.30.10Debian configuration management sy
ii  libc6   2.3.2.ds1-18 GNU C Library: Shared libraries an
ii  libpam-runtime  0.76-22  Runtime support for the PAM librar
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  zlib1g  1:1.2.2-3compression library - runtime

-- debconf information:
  cvs/pserver_repos_individual: true
  cvs/pserver_setspawnlimit: false
  cvs/rotatekeep: 7
* cvs/badrepositories: create
  cvs/pserver_warning:
  cvs/rotatekeep_individual: 7
  cvs/pserver_repos: all
* cvs/pserver: true
  cvs/cvs_conf_is_dead:
* cvs/repositories: /var/lib/cvs
  cvs/rotatekeep_nondefault: no
  cvs/rotate_individual: true
  cvs/pserver_spawnlimit: 400
  cvs/rotatehistory: no


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



Bug#288754: Fixed in 3.3.2-0pre1

2005-01-19 Thread Elmar Haneke
The problem does not exist in kfax 3.3.2-0pre1, but there are other 
problems introduced by that beta, e.g. it cannot print after the page 
is rotated.

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


Bug#291039: kernel-patch-debian-2.6.10: bashism in apply file

2005-01-19 Thread Kenshi Muto
Hi,

At Wed, 19 Jan 2005 16:15:26 +0900,
Horms wrote:
 On Tue, Jan 18, 2005 at 07:48:38PM +0900, Kenshi Muto wrote:
  Package: kernel-patch-debian-2.6.10
  Severity: normal
  Version: 2.6.10-3

  I'm using dash as sh.
  I think patch-code should use #!/bin/bash or be fixed for plain bourne 
  shell.
 
 Agreed, could you take a moment to see if the
 attached patch resolves your problem.

I found a problem in your patch :-)

-   for base in $((cd $home/series/  ls -d *) | sort -rnt- -k 2); do
+   for base in `(cd $home/series/  ls -d *) | sort -rnt- -k 2`; do
 ^
  you missed 
this :-)

After I added semi-colon, it worked.

Thanks,
-- 
Kenshi Muto
[EMAIL PROTECTED]


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



Bug#291205: exim4: fix for the AUTH LOGIN problem

2005-01-19 Thread Maik Broemme
Package: exim4
Version: 4.34-4
Followup-For: Bug #291205


The problem with the AUTH LOGIN can be solved by adding the following
line to /etc/exim4/conf.d/auth/30_exim4-config_examples

Original configuration file:

login_saslauthd:
  driver = plaintext
  public_name = LOGIN
  # don't send system passwords over unencrypted connections
  server_advertise_condition = ${if eq{$tls_cipher}{}{0}{1}}
  server_condition = ${if saslauthd{{$1}{$2}}{1}{0}}
  server_set_id = $1

The changed version to get AUTH LOGIN working.
login_saslauthd:
  driver = plaintext
  public_name = LOGIN
  # don't send system passwords over unencrypted connections
  server_advertise_condition = ${if eq{$tls_cipher}{}{0}{1}}
  server_prompts = Username:: : Password::
  server_condition = ${if saslauthd{{$1}{$2}}{1}{0}}
  server_set_id = $1

I guess this should be added to default configuration.

-- Package-specific info:
Exim version 4.34 #1 built 27-Jul-2004 18:08:18
Copyright (c) University of Cambridge 2004
Berkeley DB: Sleepycat Software: Berkeley DB 3.2.9: (May 26, 2004)
Support for: iconv() IPv6 PAM Perl GnuTLS
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch 
ldap ldapdn ldapm mysql nis nis0 passwd pgsql
Authenticators: cram_md5 plaintext spa
Routers: accept dnslookup ipliteral iplookup manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
Contains exiscan-acl patch revision 21 (c) Tom Kistner 
[http://duncanthrax.net/exiscan/]
Configuration file is /var/lib/exim4/config.autogenerated
# /etc/exim4/update-exim4.conf.conf
#
# Edit this file and /etc/mailname by hand and execute update-exim4.conf
# yourself or use 'dpkg-reconfigure exim4-config'

dc_eximconfig_configtype='internet'
dc_other_hostnames='/etc/exim4/confixx/confixx-domains:vs160127.vserver.de:vs160127:vs160127.vserver.de'
dc_local_interfaces='127.0.0.1:62.75.160.127'
dc_readhost=''
dc_relay_domains=''
dc_minimaldns='true'
dc_relay_nets=''
dc_smarthost=''
CFILEMODE='644'
dc_use_split_config='true'
dc_hide_mailname=''
dc_mailname_in_oh='true'
mailname:vs160127.vserver.de

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.20-021stab026.5.777-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages exim4 depends on:
ii  exim4-base4.34-4 EXperimental Internal Mailer -- a 
ii  exim4-daemon-heavy4.34-4 Exim (v4) with extended features, 

-- no debconf information


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



Bug#291194: dpkg should handle tar posix format

2005-01-19 Thread Samuel Thibault
unmerge 291194 287152
thanks

Scott James Remnant, le mer 19 jan 2005 11:35:51 +, a dit :
 On Wed, 2005-01-19 at 12:02 +0100, Samuel Thibault wrote:
 
  So as to have proper file name encoding, I'm used to have
  TAR_OPTIONS=--format=posix
  But then built packages don't work:
  
 I think this is a dup of the above bug.  If that patch doesn't work,
 please unmerge these bugs.

It doesn't. Doing some gdb showed me that the first tar entry has
h.Type 'x', which is unknown. Here is the printing of the first header:
(gdb) p *(TarHeader *)block
$10 = {Name = ./PaxHeaders.28427/., '\0' repeats 79 times, 
  Mode = 644, UserID = 000, GroupID = 000, 
  Size = 074, ModificationTime = 10173457171, 
  Checksum = 012311\000 , LinkFlag = 120 'x', 
  LinkName = '\0' repeats 99 times, MagicNumber = ustar\0, 
  UserName = '\0' repeats 31 times, GroupName = '\0' repeats 31 times, 
  MajorDevice = 000, MinorDevice = 000}

Regards,
Samuel


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



Bug#291223: ITP: libphp-clam -- PHP bindings for libclamav

2005-01-19 Thread Neil McGovern
Package: wnpp
Severity: wishlist


  Package name: libphp-clam
  Version : 0.3.0
  Upstream Author : Gareth Ardron [EMAIL PROTECTED]
  URL : http://freshmeat.net/projects/php-clam/
  License : GPL
  Description : PHP bindings for libclamav

A small module that implements a limited subset of the libclamav API in
order to scan buffers and files from within PHP.

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


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



Bug#291177: [PROPOSAL] Policy for user/groups creation/removal in package maintainer scripts

2005-01-19 Thread Henrique de Moraes Holschuh
On Wed, 19 Jan 2005, Javier Fernández-Sanguino Peña wrote:
 On Wed, Jan 19, 2005 at 09:54:50AM -0200, Henrique de Moraes Holschuh wrote:
  On Wed, 19 Jan 2005, Javier Fernández-Sanguino Peña wrote:
   There is currently no policy on how should per-package users be created 
   and 
   removed. Eeven though the 'UID and GID classes' sections determines that 
   packages _should_ use adduser --system in some occasions it doesn't 
  
  Make it *must* use adduser --system, *if* they add an user at all.
 
 Some packages might need to use a hardcoded UID (and there's a UID range
 for those) those don't use 'adduser --system'

Then they *must* request that UID to be statically allocated to them, and
add a proper versioned dep to the base-passwd package providing it.  This is
an old, old rule, if it is not a must yet, it is about time it becomes
one...

  Maintainer scripts can ask about an already existing user *if and only if*
  it is not a system user...  no more useless, aggravating postinst prompts,
  please.
 
 True. I would love to see a sample for that so that postinst scripts would 
 reuse that. Actually, it could even be integrated into a dh_adduser script, 
 couldn't it?

Yes, it could.  For a sample, please see the amavisd-new or cyrus21-imapd
packages.  Both do it.  I do not claim they do it in the best possible way,
but it works.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh



Bug#254004: update-menus didn't work

2005-01-19 Thread Anton
Personaly I use russian locale:

$ locale
LANG=ru_RU.KOI8-R
LC_CTYPE=ru_RU.KOI8-R
LC_NUMERIC=ru_RU.KOI8-R
LC_TIME=ru_RU.KOI8-R
LC_COLLATE=ru_RU.KOI8-R
LC_MONETARY=ru_RU.KOI8-R
LC_MESSAGES=ru_RU.KOI8-R
LC_PAPER=ru_RU.KOI8-R
LC_NAME=ru_RU.KOI8-R
LC_ADDRESS=ru_RU.KOI8-R
LC_TELEPHONE=ru_RU.KOI8-R
LC_MEASUREMENT=ru_RU.KOI8-R
LC_IDENTIFICATION=ru_RU.KOI8-R
LC_ALL=

Something in xfce desktop menu in russian and something in english
(Help, settings, web browser, file manager, terminal, run program,
Desktop menu).

There are no russian, but french is:
/etc/X11/xfce4/menu.xml
/etc/X11/xfce4/menu.xml.az
/etc/X11/xfce4/menu.xml.ca
/etc/X11/xfce4/menu.xml.de
/etc/X11/xfce4/menu.xml.fr
/etc/X11/xfce4/menu.xml.hu
/etc/X11/xfce4/menu.xml.it
/etc/X11/xfce4/menu.xml.nl
/etc/X11/xfce4/menu.xml.ta
/etc/X11/xfce4/menu.xml.tr
/etc/X11/xfce4/menu.xml.vi
/etc/X11/xfce4/menu.xml.zh_CN
/etc/X11/xfce4/menu.xml.zh_TW

Please add other languages as well if they exist.



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



Bug#291169: gallery: Directory import no longer works

2005-01-19 Thread Michael Schultheiss
tags 291169 + moreinfo unreproducible
thanks

Nick Moffitt wrote:
 Package: gallery
 Version: 1.4.4-pl4-6
 Severity: normal
 
 
 When doing the URL mechanism for importing images into gallery, the
 method of entering a local directory on the server hosting gallery no
 longer works.  
 
 If I type in /tmp/images, it does just fine generating the list of
 files to be included for the checkbox list.  However, once I have
 become satisfied with the files to be included and move on to the next
 form window, it complains that it can't find
 http://tmp/images/file1.jpeg; etc.  For some reason the second stage
 of this thing prepends a URI protocol heading when the first stage
 obviously didn't need it.
 
 This was not always the case, as I was able to import lots of images
 into gallery just a year ago.  

I'm unable to reproduce this bug.  I created a /tmp/images directory on
my webserver, copied some images into that directory and uploaded them
to my gallery using the URL mechanism and had no trouble adding those
images to the gallery.

-- 

Michael Schultheiss
E-mail: [EMAIL PROTECTED]


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



Bug#291194: dpkg should handle tar posix format

2005-01-19 Thread Adam D. Barratt
On Wednesday, January 19, 2005 1:38 PM, Samuel Thibault
[EMAIL PROTECTED] wrote:

 Scott James Remnant, le mer 19 jan 2005 11:35:51 +, a dit :
 On Wed, 2005-01-19 at 12:02 +0100, Samuel Thibault wrote:

 So as to have proper file name encoding, I'm used to have
 TAR_OPTIONS=--format=posix
 But then built packages don't work:

 I think this is a dup of the above bug.  If that patch doesn't work,
 please unmerge these bugs.

 It doesn't. Doing some gdb showed me that the first tar entry has
 h.Type 'x', which is unknown. Here is the printing of the first
 header: (gdb) p *(TarHeader *)block
 $10 = {Name = ./PaxHeaders.28427/., '\0' repeats 79 times,

GNU tar indeed does not understand `x' (or any other lower-case letter) as a
valid file type. See the thread starting at
http://lists.debian.org/debian-devel/2004/04/msg01376.html for a fuller
discussion.

Regards,

Adam



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



Bug#291228: arping 2.03-1 interpretes some IP adresses as MAC adresses; IP such as xxx.yyy.zzz.www won`t pass is_mac_addr() function

2005-01-19 Thread Dawid Mentel
Package: arping
Version: 2.01-3
Severity: normal



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-k7
Locale: LANG=C, LC_CTYPE=C

Versions of packages arping depends on:
ii  libc6   2.3.2.ds1-18 GNU C Library: Shared libraries an
ii  libnet1 1.1.2.1-1Library for the construction and h
ii  libpcap0.7  0.7.2-7  System interface for user-level pa

-- no debconf information


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



Bug#291227: Patches nv.c, but no permission granted

2005-01-19 Thread Matthew Garrett
Package: nvidia-kernel-source
Severity: normal

The source code in the nvidia provided kernel module has the following 
copyright text:

/* _NVRM_COPYRIGHT_BEGIN_
 *
 * Copyright 2001 by NVIDIA Corporation.  All rights reserved.  All
 * information contained herein is proprietary and confidential to NVIDIA
 * Corporation.  Any use, reproduction, or disclosure without the written
 * permission of NVIDIA Corporation is prohibited.
 *
 * _NVRM_COPYRIGHT_END_
 */

This provides no permission to modify the code, so distribution of 
modified code is likely to be a copyright violation. I can't find 
any grant of permission to modify in the other license files. Is there 
somewhere else that provides this permission?

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (600, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-2-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)


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



Bug#291221: emacs21: pcl-cvs doesn't work correctly with new cvs versions

2005-01-19 Thread Romain Francoise
Igor B. Poretsky [EMAIL PROTECTED] writes:

 It seems that pcl-cvs fails to parse cvs messages after performing
 some commands, such as cvs commit, for instance. It appeared with
 new versions of cvs found in Sarge distribution.

See #252202 for more details, PCL-CVS from Emacs CVS understands the new
format and the fix needs to be ported in Debian...

-- 
  ,''`.
 : :' :Romain Francoise [EMAIL PROTECTED]
 `. `' http://people.debian.org/~rfrancoise/
   `-


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



Bug#291230: LDAPObject passwd()/passwd_s() should accept None for oldpw and/or newpw

2005-01-19 Thread Fumitoshi UKAI
Package: python-ldap
Version: 2.0.4-1
Severity: wishlist

python-ldap requires some strings for LDAPObject passwd() and/or passwd_s().
I try to pass None, but it was rejected.
For example, Demo/passwd_ext_op.py actually failed to modify passwd.
It doesn't raise any error, but if you change passwd to passwd_s, then
you can get error response from server side.

However, slapd will reject passwd mofity request if oldpasswd is set.
(at least back-bdb and back-ldbm).
And slapd will generate new passwd for passwd modify request if newpasswd is
NULL.  

So, if oldpw and/or newpw for passwd() and/or passwd_s() are used,
NULL should be used as argument for ldap_passwd().

Regards,
Fumitoshi UKAI


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



Bug#291229: hotplug: PCMCIA GPRS/EDGE modem not detected anymore

2005-01-19 Thread Robert Alexander
Package: hotplug
Version: 0.0.20040329-16
Severity: important


Running a 2.6.10 kernel Debian unstable with hotplug/udev.

Since a few days (I do not use it very often) I discovered that my PCMCIA 
Sony/Ericsson GC85 GPRS/EDGE modem card was not recognized anymore by hotplug.

Upon insertion/removal of the card, no activity took place int tail -f 
/var/log/syslog|messages or in dmesg.

To debug I installed the pcmcia-cs package and everything works fine.
cardmgr modprobes the serial_cs module and makes udev create the
releveant /dev/ttyS2 device and relative symbolic /dev/modem link.

The wvdial procedure now works just as always.

Uninstalling pcmcia-cs again nothing works.

Please note that with the same kernel and environment hotplug must have
worked (some weeks ago) since I used this modem from now and then
without needing to install the pcmcia-cs package.

Thank you for any help and for you work for us Debian lovers :)

Bob

PS FWIW here is the output of the card working with pcmcia-cs
an 19 14:48:48 localhost cardmgr[7100]: socket 1: Serial or Modem
Jan 19 14:48:48 localhost cardmgr[7100]: executing: 'modprobe serial_cs'
Jan 19 14:48:48 localhost udev[7790]: removing device node '/dev/ttyS2'
Jan 19 14:48:48 localhost kernel: ttyS2 at I/O 0x3e8 (irq = 11) is a
16550A
Jan 19 14:48:48 localhost cardmgr[7100]: executing: './serial start
ttyS2'
Jan 19 14:48:48 localhost udev[7799]: creating device node '/dev/ttyS2'
Jan 19 14:50:19 localhost kernel: CSLIP: code copyright 1989 Regents of
the University of California
Jan 19 14:50:19 localhost udev[7883]: creating device node '/dev/ppp'
Jan 19 14:50:19 localhost kernel: PPP generic driver version 2.4.2
Jan 19 14:50:19 localhost pppd[7839]: pppd 2.4.2 started by bob, uid
1000
Jan 19 14:50:19 localhost pppd[7839]: Using interface ppp0
Jan 19 14:50:19 localhost pppd[7839]: Connect: ppp0 -- /dev/ttyS2
Jan 19 14:50:24 localhost pppd[7839]: Remote message: PAP access OK
Jan 19 14:50:24 localhost pppd[7839]: PAP authentication succeeded
Jan 19 14:50:24 localhost kernel: PPP BSD Compression module registered
Jan 19 14:50:24 localhost kernel: PPP Deflate Compression module
registered
Jan 19 14:50:26 localhost pppd[7839]: not replacing default route to
eth0 [192.168.174.241]
Jan 19 14:50:26 localhost pppd[7839]: Cannot determine ethernet address
for proxy ARP
Jan 19 14:50:26 localhost pppd[7839]: local  IP address 217.201.7.238
Jan 19 14:50:26 localhost pppd[7839]: remote IP address 217.201.7.0
Jan 19 14:50:26 localhost pppd[7839]: primary   DNS address
213.230.130.222
Jan 19 14:50:26 localhost pppd[7839]: secondary DNS address
213.230.155.94
Jan 19 14:50:54 localhost pppd[7839]: Terminating on signal 15.
Jan 19 14:50:54 localhost pppd[7839]: Connect time 0.5 minutes.
Jan 19 14:50:54 localhost pppd[7839]: Sent 0 bytes, received 0 bytes.
Jan 19 14:50:54 localhost pppd[7839]: Connection terminated.
Jan 19 14:51:32 localhost udev[8094]: removing device node '/dev/ttyS2'
Jan 19 14:51:33 localhost udev[8103]: creating device node '/dev/ttyS2'
Jan 19 14:51:33 localhost cardmgr[7100]: executing: './serial stop
ttyS2'
Jan 19 14:51:33 localhost cardmgr[7100]: executing: 'modprobe -r
serial_cs'
Jan 19 14:51:43 localhost cardmgr[7100]: socket 1: Serial or Modem
Jan 19 14:51:44 localhost cardmgr[7100]: executing: 'modprobe serial_cs'
Jan 19 14:51:44 localhost udev[8182]: removing device node '/dev/ttyS2'
Jan 19 14:51:44 localhost kernel: ttyS2 at I/O 0x3e8 (irq = 11) is a
16550A
Jan 19 14:51:44 localhost cardmgr[7100]: executing: './serial start
ttyS2'
Jan 19 14:51:44 localhost udev[8191]: creating device node '/dev/ttyS2'
Jan 19 14:52:17 localhost pppd[8400]: pppd 2.4.2 started by bob, uid
1000
Jan 19 14:52:17 localhost pppd[8400]: Using interface ppp0
Jan 19 14:52:17 localhost pppd[8400]: Connect: ppp0 -- /dev/ttyS2
Jan 19 14:52:23 localhost pppd[8400]: Remote message: PAP access OK
Jan 19 14:52:23 localhost pppd[8400]: PAP authentication succeeded
Jan 19 14:52:24 localhost pppd[8400]: not replacing default route to
eth0 [192.168.174.241]
Jan 19 14:52:24 localhost pppd[8400]: Cannot determine ethernet address
for proxy ARP
Jan 19 14:52:24 localhost pppd[8400]: local  IP address 217.201.0.129
Jan 19 14:52:24 localhost pppd[8400]: remote IP address 217.201.0.0
Jan 19 14:52:24 localhost pppd[8400]: primary   DNS address
213.230.130.222
Jan 19 14:52:24 localhost pppd[8400]: secondary DNS address
213.230.155.94
Jan 19 14:59:36 localhost pppd[8400]: Terminating on signal 15.

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

Versions of packages hotplug depends on:
ii  debconf  1.4.42  Debian configuration management sy
ii  grep 2.5.1.ds1-4 GNU grep, egrep and fgrep
ii  module-init-tools3.1-rel-2   tools for managing Linux kernel mo
ii  modutils 

Bug#291231: hmake: Does not handle proprocessor flags

2005-01-19 Thread John Goerzen
Package: hmake
Version: 3.08-7
Severity: normal

Although its manpage implies that hmake handles proprocessor flags
automatically in all cases, it dies compiling files that use HaXml
because it tries to process the GHC code (which happens to occur first)
instead of the nhc98 code.  As far as I can tell, it doesn't even manage
to invoke nhc98.

I even tried:

HFLAGS=-cpp hmake -cpp -IHaXml-1.12/src -nhc98 -o dtmconv dtmconv.hs

It made no difference.

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

Versions of packages hmake depends on:
ii  ghc55.04.3-9 GHC - the Glasgow Haskell Compilat
ii  ghc66.2.2-2  GHC - the Glasgow Haskell Compilat
ii  haskell-utils   1.6  Utilities used by the Debian Haske
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgmp3 4.1.4-5  Multiprecision arithmetic library
ii  libncurses5 5.4-4Shared libraries for terminal hand
ii  libreadline44.3-15   GNU readline and history libraries
ii  nhc98   1.16-14  aNother Haskell Compiler (the nhc9

-- no debconf information


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



Bug#291232: kernel-source-2.6.10: Cannot burn DVD as normal user

2005-01-19 Thread Christoph Hellwig
On Wed, Jan 19, 2005 at 09:44:23AM -0500, Brian Pack wrote:
 Package: kernel-source-2.6.10
 Version: 2.6.10-4
 Severity: important
 Tags: patch
 
 When running as normal user with kernel 2.6.10, growisofs gives the
 following error when attempting to burn a DVD:
 
 Executing 'builtin_dd if=/dev/fd/0 of=/dev/hdc obs=32k seek=0'
 :-( unable to PREVENT MEDIA REMOVAL: Operation not permitted
 
 Running as root works fine.
 
 I found this patch on LKML, and can now burn as normal user:

The patch is not correct, though.  I'll put in the correct fix.



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



Bug#291233: mozilla-firefox: does not start (seg fault)

2005-01-19 Thread Andres Junge
Package: mozilla-firefox
Version: 1.0+dfsg.1-2
Severity: grave
Justification: renders package unusable

Just seg faults when I try to start it.

[EMAIL PROTECTED]:~$ firefox -V
FIREFOX_DSP=
APPLICATION_ID=firefox
CMDLINE_DISPLAY=
DISPLAY=:0.0
REMOTE=0
TRY_USE_EXIST=0
OPTIONS=
DEBUG=0
DEBUGGER=
Running: /usr/lib/mozilla-firefox/firefox-bin -a firefox -remote
'ping()'
/usr/bin/firefox: line 352:  8096 Violación de segmento
DISPLAY=${CMDLINE_DISPLAY} ${MOZ_PROGRAM} -remote 'ping()' /dev/null
21
PING_STATUS=139
Running: /usr/lib/mozilla-firefox/firefox-bin -a firefox
Violación de segmento


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=es_CL, LC_CTYPE=es_CL (charmap=ISO-8859-1) (ignored: LC_ALL set to 
es_CL)

Versions of packages mozilla-firefox depends on:
ii  debianutils  2.8.4   Miscellaneous utilities specific t
ii  fontconfig   2.2.3-4 generic font configuration library
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfontconfig1   2.2.3-4 generic font configuration library
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libglib2.0-0 2.4.8-1 The GLib library of C routines
ii  libgtk2.0-0  2.4.14-2The GTK+ graphical user interface 
ii  libidl0  0.8.3-1 library for parsing CORBA IDL file
ii  libjpeg626b-9The Independent JPEG Group's JPEG 
ii  libkrb53 1.3.6-1 MIT Kerberos runtime libraries
ii  libpango1.0-01.6.0-3 Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libstdc++5   1:3.3.5-5   The GNU Standard C++ Library v3
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  libxft2  2.1.2-6 FreeType-based font drawing librar
ii  libxp6   4.3.0.dfsg.1-10 X Window System printing extension
ii  libxrender1  0.8.3-7 X Rendering Extension client libra
ii  libxt6   4.3.0.dfsg.1-10 X Toolkit Intrinsics
ii  psmisc   21.5-1  Utilities that use the proc filesy
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


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



Bug#290339: supercollider: [m68k s390 mips sparc arm] FTBFS

2005-01-19 Thread Paul Brossier
In version 040926-3 i added a run test in debian/rules to ensure the
package build was failing when built on 64bits architectures. It appears
it fails running on many other architectures.

I already asked for removal (#276212) on 64bits architectures and will
soon do so on all the missing ones. It would be nice if someone could
try to investigate on one of [m68k s390 mips sparc arm].

cheers, piem


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



Bug#278471: [debian-openldap] Bug#278471: ldap-utils: Assertion `lc-lconn_sasl_ctx == ((void *)0)' failed

2005-01-19 Thread Stephen Frost
* Pietro Abate ([EMAIL PROTECTED]) wrote:
 I'm using ldap together with kerberos (that works ok). After installing
 the following packages libnss-ldap libdb3-util libsasl7 I get

Something about that doesn't add up- why are you installing libsasl7?
Everything should be using libsasl2.  Can you please do:

ldd /usr/bin/ldapsearch

and send us the results?

Thanks,

Stephen


signature.asc
Description: Digital signature


Bug#289545: ITP: gromit -- GTK based tool to make annotations on screen

2005-01-19 Thread Aurelien Jarno
On Tue, Jan 18, 2005 at 11:59:05PM +1100, Andrew Lau wrote:
 Hi Pierre,
 
 Just when I was about to get the package uploaded I discovered this ITP.
 My finished packages for the Debian GNOME Team are currently available
 at http://www.cse.unsw.edu.au/~alau/debian/ and
 http://svn.debian.org/wsvn/pkg-gnome/packages/gromit
 
 What now? Would you mind if this were to be uploaded now? I won't mind
 co-maintaining this package with you in future. Sorry for the
 inconvenience!

Pierre's packages are also ready. I am his sponsor, and he asked me to
upload his packages two or three days ago. I didn't have the time the
last days, because I was at a meeting, but I will do that during the
afternoon.

Bye,
Aurelien

-- 
  .''`.  Aurelien Jarno   GPG: 1024D/F1BCDB73
 : :' :  Debian GNU/Linux developer | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Bug#289340: supercollider: New CVS snapshot?

2005-01-19 Thread Paul Brossier
Hi Mario.

Thanks for the ping. I have put up preliminary packages at
http://piem.org/~piem/debian/supercollider/ Let me know how it goes.

Bye, Paul

On Sat, Jan 08, 2005 at 05:41:09PM +0100, Mario Lang wrote:
 Package: supercollider
 Version: 040926-2
 Severity: wishlist
 
 There have been numberous changes/fixes and additions in SuperCollider
 CVS since the last Debian package release.  Just to name a few,
 the pattern system was slightly changed and extended,
 midi event handling has been extended,
 several new UGens were added, like the Chaos and Demand Ugens
 the .asFraction method was added,
 a python extension to access SC was added,
 support for zeroconf (libhowl) (only client-side right now AFAIR) was added,
 SynthDef variant support was added,
 many fixes and additions to the Help system,
 and various other things.
 
 I think the list has grown long enough to warrant to try to do
 a new snapshot. Especially the pattern changes (Pmono etc.) and synthdef
 variants lead to some example code from the sc-users list no longer working
 with the Debian package.
 
 -- System Information:
 Debian Release: 3.1
   APT prefers unstable
   APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
 Architecture: i386 (i686)
 Kernel: Linux 2.6.9
 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
 
 Versions of packages supercollider depends on:
 ii  libasound2   1.0.7-4 ALSA library
 ii  libc62.3.2.ds1-20GNU C Library: Shared libraries 
 an
 ii  libgcc1  1:3.4.3-6   GCC support library
 ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
 ii  libjack0.80.0-0  0.99.0-2JACK Audio Connection Kit 
 (librari
 ii  libsm6   4.3.0.dfsg.1-10 X Window System Session 
 Management
 ii  libsndfile1  1.0.10-2Library for reading/writing 
 audio 
 ii  libstdc++5   1:3.3.5-5   The GNU Standard C++ Library v3
 ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client 
 li
 ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) 
 configu
 
 -- 
 Thanks,
   Mario




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



Bug#291234: parted: No Implementation: This ext2 filesystem has a rather strange layout! Parted No Implementation: This ext2 filesystem has a rather strange layout!

2005-01-19 Thread Joel Soete
Package: parted
Version: 1.6.11-9
Severity: normal

Hello all,

I am running a debian  unstable' (today updated) with a developement kernel
2.6.11-rc1-pa3 on hppa box (b2000).
This system own 2 Disk: one boot disk of 9gb and a 'data' disk of 36Gb.

the boot disk sda has the following slicing schema (cfdisk):
Disk /dev/sda: 9100 MB, 9100044288 bytes
64 heads, 32 sectors/track, 8678 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   1  61   62448   f0  Linux/PA-RISC boot
/dev/sda2  62 306  250880   82  Linux swap / Solaris
/dev/sda3 307 367   62464   83  Linux
/dev/sda4 3688557 83865605  Extended
/dev/sda5 3681953 1624048   83  Linux
/dev/sda619542197  249840   83  Linux
/dev/sda721982319  124912   83  Linux
/dev/sda823202441  124912   83  Linux
/dev/sda924424394 1999856   83  Linux
/dev/sda10   43956347 1999856   83  Linux
/dev/sda11   63488300 1999856   83  Linux
/dev/sda12   83018557  263152   83  Linux

And the second disk:
Disk /dev/sdb: 36.4 GB, 36420075520 bytes
64 heads, 32 sectors/track, 34732 cylinders
Units = cylinders of 2048 * 512 = 1048576 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/sdb1   1   3473235565552   83  Linux

As I don't need any more to have the full disk for a data slice on this disk,
I would like to use parted to re-partition as:
/dev/sdb1   1  61   62448   f0  Linux/PA-RISC boot
/dev/sdb2  62 306  250880   82  Linux swap / Solaris
/dev/sdb3 307 367   62464   83  Linux
/dev/sdb4 3688557 83865605  Extended
/dev/sdb5 3681953 1624048   83  Linux
/dev/sdb619542197  249840   83  Linux
/dev/sdb721982319  124912   83  Linux
/dev/sdb823202441  124912   83  Linux
/dev/sdb924424394 1999856   83  Linux
/dev/sdb10   43956347 1999856   83  Linux
/dev/sdb11   63488300 1999856   83  Linux
/dev/sdb12   8301   3473235565552   83  Linux

(for mirroring with raid1)

(in summary:
parted
resize 1 0.016 26432.000 (i.e. 34732 - 8300)
move 1 0.016 8300.000

then create sdb[1..11] )

but when I asked 'parted' to check the disk slice 1:
# ./parted/parted /dev/sdb
[...]
Using /dev/sdb
(parted) p

Disk geometry for /dev/sdb: 0.000-34732.890 megabytes
Disk label type: msdos
MinorStart   End Type  Filesystem  Flags
1  0.016  34732.000  primary   ext3
(parted) check 1

No Implementation: This ext2 filesystem has a rather strange layout!  Parted
can't resize this (yet).

So am I not very confident to go ahead ;-)

As sudgested on gnu site I grab the last 1.6.21 release which I build
# ../configure --prefix=/usr --sbindir=/sbin --mandir=\${prefix}/share/man
--infodir=\${prefix}/share/info --enable-mtrace --disable-shared  
--build=hppa-linux
--host=hppa-linux
(as debian debug pkg would do?)

but the pb is the same:
# ./parted/parted /dev/sdb

GNU Parted 1.6.21
Copyright (C) 1998 - 2004 Free Software Foundation, Inc.
This program is free software, covered by the GNU General Public License.

This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Public License for more details.

Using /dev/sdb
(parted) p

Disk geometry for /dev/sdb: 0.000-34732.890 megabytes
Disk label type: msdos
MinorStart   End Type  Filesystem  Flags
1  0.016  34732.000  primary   ext3
(parted) check 1

No Implementation: This ext2 filesystem has a rather strange layout!  Parted
can't resize this (yet).

OTC with the other disk no pb:
# parted /dev/sda
Warning: Unable to determine if partitions are mounted via /proc/mounts or
/etc/mtab.  Make sure you don't attempt to resize or
modify mounted file systems.  (Even read-only mounted)
Ignore/Cancel? i

GNU Parted 1.6.11 with HFS shrink patch 12.5
Copyright (C) 1998 - 2004 Free Software Foundation, Inc.
This program is free software, covered by the GNU General Public License.

This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Public License for more details.

Using /dev/sda
(parted) check 11

Information: The ext2 filesystem passed a basic check.  For a more comprehensive
check, use the e2fsck program.

Thanks in advance for your attention,
Joel



Bug#290187: www.debian.org: packages.debian.org recently got uglier in non-CSS browsers

2005-01-19 Thread Frank Lichtenheld
On Wed, Jan 19, 2005 at 10:55:01AM +0100, Frank Lichtenheld wrote:
 On Tue, Jan 18, 2005 at 09:42:02PM +0100, Denis Barbier wrote:
  This also applies for the download table, it is much longer than before
 
 Huh? The download table is the only that that didn't change at all...

Ok, I realised this isn't true. I added a p to get valid HTML
(input is not allowed directly in form). I will replace that
with div which should fix this (the longer than before part).

 So how did it get much longer than before? (Aside from the fact that
 this is a pure lynx bug, all other text browser render the table
 sufficiently)

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#290941: how to show dot-files

2005-01-19 Thread Jeff Abrahamson
On Wed, Jan 19, 2005 at 02:11:59PM +, Jon Dowland wrote:
   [2 lines, 23 words, 145 characters]  Top characters: ethniocd
 
 Right-click on the right-hand pane, the one showing the contents of the
 current directory, and select the item 'show hidden files' that appears.

Thanks, that works.  I also found that launching it inside a dot
directory effectively solved the problem.

It would be a nice feature to have a checkbox instead of a relatively
hidden menu.  I'm not sure where that should go as a minor feature
request, though.  Gtk+ ?

-- 
 Jeff

 Jeff Abrahamson  http://www.purple.com/jeff/+1 215/837-2287
 GPG fingerprint: 1A1A BA95 D082 A558 A276  63C6 16BF 8C4C 0D1D AE4B


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



Bug#285404: Reassiging mozilla bug to mozilla

2005-01-19 Thread Loïc Minier
forwarded 285404 https://bugzilla.mozilla.org/show_bug.cgi?id=270878
reassign 285404 mozilla
tags 285404 + patch
thanks

Hi,

 #285404 is a Mozilla bug in the libmozjs library and the submitter,
 Juergen Kreileder, was kind enough to write a patch.

 Please consider the attached patch for the next Debian Mozilla package
 as it seems to break Galeon on ppc64 kernels.

   Thanks,

-- 
Loïc Minier [EMAIL PROTECTED]
Neutral President: I have no strong feelings one way or the other.
--- mozilla/js/src/jsarena.h.orig   2005-01-19 14:28:45.342935093 +0100
+++ mozilla/js/src/jsarena.h2005-01-19 14:09:39.517551239 +0100
@@ -120,12 +120,10 @@ struct JSArenaPool {
 JSArena *_a = (pool)-current;\
 size_t _nb = JS_ARENA_ALIGN(pool, nb);\
 jsuword _p = _a-avail;   \
-jsuword _q = _p + _nb;\
-JS_ASSERT(_q = _p);  \
-if (_q  _a-limit)   \
+if (_p  _a-limit - _nb) \
 _p = (jsuword)JS_ArenaAllocate(pool, _nb);\
 else  \
-_a-avail = _q;   \
+_a-avail = _p + _nb; \
 p = (type) _p;\
 JS_ArenaCountAllocation(pool, nb);\
 JS_END_MACRO
@@ -136,11 +134,10 @@ struct JSArenaPool {
 #define JS_ARENA_GROW_CAST(p, type, pool, size, incr) \
 JS_BEGIN_MACRO\
 JSArena *_a = (pool)-current;\
-if (_a-avail == (jsuword)(p) + JS_ARENA_ALIGN(pool, size)) { \
+if (_a-avail - JS_ARENA_ALIGN(pool, size) == (jsuword)(p)) { \
 size_t _nb = (size) + (incr); \
-jsuword _q = (jsuword)(p) + JS_ARENA_ALIGN(pool, _nb);\
-if (_q = _a-limit) {\
-_a-avail = _q;   \
+if ((jsuword)(p) = _a-limit - JS_ARENA_ALIGN(pool, _nb)) {  \
+_a-avail = (jsuword)(p) + JS_ARENA_ALIGN(pool, _nb); \
 JS_ArenaCountInplaceGrowth(pool, size, incr); \
 } else if ((jsuword)(p) == _a-base) {\
 p = (type) JS_ArenaRealloc(pool, p, size, incr);  \
--- mozilla/js/src/jsarena.c.orig   2005-01-19 14:29:28.102175520 +0100
+++ mozilla/js/src/jsarena.c2005-01-19 13:59:41.487473885 +0100
@@ -161,7 +161,7 @@ JS_ArenaAllocate(JSArenaPool *pool, size
 
 /* Search pool from current forward till we find or make enough space. */
 JS_ASSERT((nb  pool-mask) == 0);
-for (a = pool-current; a-avail + nb  a-limit; pool-current = a) {
+for (a = pool-current; a-avail  a-limit - nb; pool-current = a) {
 ap = a-next;
 if (!*ap) {
 /* Not enough space in pool -- try to reclaim a free arena. */


Bug#284102: Bug#284103: gsl-doc-pdf should be similarly named as gsl-ref-psdoc

2005-01-19 Thread Bas Zoetekouw
Hi Dirk!

You wrote:

 Did you ever try pretty-fying the pdf issue (your other bug report)?  Should
 we ask some TeX / fonts wizards?  And / or maybe stop building the pdf again
 and point to an external copy, or repackage it?  I'm just thinking out loud
 here ...

Hmm, the problem seem to have went away in a recent build.  The fonts I
get in a local build are now the same as the fonts in the package.  

So, I'm guessing that the problem is being caused by a missing
build-dependency on some TeX packages that includes the good fonts.

-- 
Kind regards,
++
| Bas Zoetekouw  | GPG key: 0644fab7 |
|| Fingerprint: c1f5 f24c d514 3fec 8bf6 |
| [EMAIL PROTECTED], [EMAIL PROTECTED] |  a2b1 2bae e41f 0644 fab7 |
++ 


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



Bug#280565: acknowledged by developer (Fixed)

2005-01-19 Thread Gerfried Fuchs
reopen 280565
thanks

* Debian Bug Tracking System [EMAIL PROTECTED] [2005-01-16 15:33]:
 This bug has been fixed in the latest 1.2.7+1.2.8cvs20041007 version, so 
 I am closing this report.

 I can't reproduce your analysis. I find nothing in the changelog for
1.2.7+1.2.8cvs20041007-4 verion of libsdl1.2debian-oss package (I hope
you are refering to that revision, because you didn't name it). I've
installed this -oss package on my sarge system and still get the same
messages and no sound:

SDL: Audio timeout - buggy audio driver? (disabled)
audio: Bad file descriptor

 Sorry, but I can't call that fixed. If you need any further
informations about my system feel free to request it (it would be
helpful if you tell me what you need, I can send strace or whatever, I
would even install some debug enabled package to get you the
informations you need to get it fixed). But pretty please don't close
the bugreport when it is not repaired.

 So long.
Alfie
-- 
So ist das Leben eben: Es muss Beben geben, ab und zu.
Noch eben standst Du in der Sonne -- uuh, da kommt der Regen
  -- Seeed, Tide Is High


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



Bug#289545: ITP: gromit -- GTK based tool to make annotations on screen

2005-01-19 Thread Andrew Lau
On Wed, Jan 19, 2005 at 03:55:35PM +0100, Aurelien Jarno wrote:
 Pierre's packages are also ready. I am his sponsor, and he asked me to
 upload his packages two or three days ago. I didn't have the time the
 last days, because I was at a meeting, but I will do that during the
 afternoon.

Before you do that, please ask Pierre to take a look at my packages and
see if there's anything in here he might want to use (eg. GNOME/Debian
menu entry and icon) -- don't want my effort to goto total waste = )

Cheers,
Andrew Netsnipe Lau

-- 
---
Andrew Netsnipe Lau   http://www.cse.unsw.edu.au/~alau/
 Debian GNU/Linux Maintainer  UNSW Computing Students' Society President
 -
  Nobody expects the Debian Inquisition!
 Our two weapons are fear and surprise...and ruthless efficiency!
---


signature.asc
Description: Digital signature


Bug#290284: aptitude: Chinese translation isn't match with APT's translation, big confuse!

2005-01-19 Thread Rex Tsai
Christian Perrier wrote:
tags 290284 moreinfo l10n
thanks
Quoting Andrew Lee ([EMAIL PROTECTED]):
Package: aptitude
Version: 0.2.15.8-1
Severity: minor
Hi guys,
We have a mistranslated report in APT recently, and I found these
translations aren't matched in aptitude, it is quite confusing our
users, any idea for jump out of this mess?
Please refer to apt's bug 218232
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=218232
For Daniel (the aptitude package maintainer), 218232 is about the
translation of Hit in Traditional Chinese (zh_TW) in apt.
The original bug submitter mentioned that the current translation is
quite strange. Though Matt Zimmerman requested for more information,
namely a suggestion, no answer was received.
I recently jumped in APT development for helping in handling l10n,
just like I'm doing for aptitude. Then I revived this bug report and
requested to a few people, including the probably appropriate mailing
list, for their advice.
The discussion in 218232 is currently going on (the consensus still
needs to be reached). I guess that later on, aptitude's translation
will need to be adapted of course. 

apt has:  
aptitude has:  

Ambrose Li proposed:

As Rex Tsai is aptitude's translator, I guess the some input from him
is appropriate. Anyway, I suggest that users of zh_TW localisation
discuss together these various issues and then later propose a new PO
file for aptitude and another one for APT (please remember that the
current one for APT is still incomplete).
After discussion, the attachment is the updated version of PO and HELP 
files for aptitude. Kanru Chen submited the complete translation PO file 
for apt. (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=291178)

-Rex


Bug#291223: ITP: libphp-clam -- PHP bindings for libclamav

2005-01-19 Thread Peter Eisentraut
Neil McGovern wrote:
   Package name: libphp-clam

In spite of inconsistent current practice, the proposed PHP policy is in 
favor of naming such packages php-clam.


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



Bug#291194: dpkg should handle tar posix format

2005-01-19 Thread Samuel Thibault
Adam D. Barratt, le mer 19 jan 2005 14:22:48 -, a dit :
 On Wednesday, January 19, 2005 1:38 PM, Samuel Thibault
 [EMAIL PROTECTED] wrote:
 
  Scott James Remnant, le mer 19 jan 2005 11:35:51 +, a dit :
  On Wed, 2005-01-19 at 12:02 +0100, Samuel Thibault wrote:
 
  So as to have proper file name encoding, I'm used to have
  TAR_OPTIONS=--format=posix
  But then built packages don't work:
 
  I think this is a dup of the above bug.  If that patch doesn't work,
  please unmerge these bugs.
 
  It doesn't. Doing some gdb showed me that the first tar entry has
  h.Type 'x', which is unknown. Here is the printing of the first
  header: (gdb) p *(TarHeader *)block
  $10 = {Name = ./PaxHeaders.28427/., '\0' repeats 79 times,
 
 GNU tar indeed does not understand `x' (or any other lower-case letter) as a
 valid file type.

Indeed, that seems to be a posix type that testing and unstable tars
produce. Dpkg should be prepared to handle that some day.

Regards,
Samuel


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



Bug#291237: tomcat4-admin: admin context does not work because it has symlinked jar files

2005-01-19 Thread Alessandro Polverini
Package: tomcat4-admin
Version: 4.1.31-2
Severity: grave
Justification: renders package unusable

The struts.jar in /usr/share/tomcat4/server/webapps/admin/WEB-INF/lib
directory is symlinked to the jar /usr/share/struts1.1/struts.jar of the
package libstruts1.1-java.

This makes the admin context not work because tomcat is unable to use
jar files symlinked to other locations.

The solution is to copy the real jar in WEB-INF/lib instead to use a
symlink.

Of course if it would be possible to tell tomcat to follow symbolic
links it would be much better, but I don't know if this is possible.

Alex

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

Versions of packages tomcat4-admin depends on:
ii  libstruts1.1-java 1.1-2  Java Framework for MVC web applica
ii  tomcat4   4.1.31-2   Java Servlet 2.3 engine with JSP 1

-- no debconf information


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



Bug#291236: mailscanner: Error in docs for Exim4 (sendmail = /usr/sbin/exim4 -DOUTGOING)

2005-01-19 Thread Jason Cormie
Package: mailscanner
Version: 4.37.7-1
Severity: normal


in /usr/share/doc/mailscanner/README.exim4 

it says 
 Sendmail = /usr/sbin/exim4 -DOUTGOING

 this would run the incoming queue with the same options as the outgoing
 queue???
it should be
 Sendmail = /usr/sbin/exim4

or left at the package default of 
 Sendmail = /usr/lib/sendmail 




-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686-smp
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages mailscanner depends on:
ii  debconf   1.4.30.11  Debian configuration management sy
ii  exim4 4.34-10An MTA (Mail Transport Agent)
ii  exim4-daemon-light [mail-tran 4.34-10Lightweight version of the Exim (v
ii  libarchive-zip-perl   1.14-1 Module for manipulation of ZIP arc
ii  libcompress-zlib-perl 1.33-3 Perl module for creation and manip
ii  libconvert-binhex-perl1.119-2Perl5 module for extracting data f
ii  libconvert-tnef-perl  0.17-4 Perl module to read TNEF files
ii  libhtml-parser-perl   3.36-1 A collection of modules that parse
ii  libmime-perl  5.415-1Perl5 modules for MIME-compliant m
ii  libnet-cidr-perl  0.10-1 Manipulate IPv4/IPv6 netblocks in 
ii  perl  5.8.4-5Larry Wall's Practical Extraction 
ii  spamassassin  3.0.2-1Perl-based spam filter using text 
ii  ucf   1.13   Update Configuration File: preserv
ii  unzip 5.51-2 De-archiver for .zip files
ii  wget  1.9.1-8retrieves files from the web

-- debconf information excluded


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



Bug#291235: RFP: libcgrep -- Library for Fast and Flexible Word Searching on Compressed Text

2005-01-19 Thread Jari Aalto
Package: wnpp
Severity: wishlist


* Package name: libcgrep
  Version : x.y.z
  Upstream Author : Paolo Ferragina [EMAIL PROTECTED]
* URL : http://roquefort.di.unipi.it/~ferrax/CompressedSearch/
* License : GPL
  Description : Search through compressed file (fast)

Summary:

- In summary,CGrep is about four times faster than ZGrep, and
  additionally it supports fast advanced IR-searches that are
  completely absent in the Grep-family tools.

Preconditions:

- doxygen
- agrep

Following programs are included:

- huffw; to (de)compress a textual file according to the Huffword paradigm
- cgrep; search for complicated patterns over the Huffword-compressed files

Following libraries are included:

Huffword Library: This library offers some algorithms and data
structures for the efficient (de)compression of textual files. The
compression paradigm is a variant of the Huffman algorithm, here
adapted to be byte-aligned, tagged and word oriented. More
precisely, the tokens are alphanumeric words, and the codewords
are byte sequences with some tagged bits that allow to guarantee
synchronization. The tagging is obtained as follows: the Huffman
tree has fan-out 128, and the arc labels of 7 bits are stored in
the least significant bits of a byte; the codeword is finally
constructed by setting the first bit of the first byte to 1, and
the first bit of each other byte to 0. This compression paradigm
can be improved by removing each single space that occurs between
two alphanumeric tokens, hereafter called Spaceless Model.

 CGrep Library: This library offers all the pattern-matching
functionalities that allow to search over Huffword compressed
files. Actually the search consists of three steps: first the
complex pattern query (possibly involving errors, reg exp, )
is resolved against the dictionary of tokens, built at compression
time by the Huffword algorithm. The tokens that satisfy the query
are coded and then their codewords are searched directly onto the
compressed file (note that this is an exact multiple-patterns
search). This approach induces a twofold speedup: the search cost
is actually proportional to the length of the compressed file, no
decompression at all is required; and the search cost for
complicated patterns (like reg exp, errors,) depends on the
dictionary size, which is small compared to the entire file. The
features that we have implemented in addition to the original
paper are: proximity query, arbitrary number of query-patters each
with its search options, snippet extraction.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US)


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



Bug#291238: Running strip on sun-jdk1.5 binaries prevents new tools attaching to java processes.

2005-01-19 Thread Alex Winawer
Package: java-package
Version: 0.18

Sorry I don't have the output anymore but if you try jmap PID of java app 
you will see the problem. It is looking for some g... symbol that has been 
removed by the strip.

Not sure of the benefit of the strip operation but if we are going to install 
these new programs then we probably shouldn't break them.

I assume the alternatives mentioned in #272923 are to be added.

Alex Winawer


pgpSR4W3e3Hdv.pgp
Description: PGP signature


Bug#291239: KDM ignores host aliases in Xaccess

2005-01-19 Thread Christoph Barbian
Package: kdm
Version: 3.3.1-4
--
KDM ignores host aliases of the form
%mylist host-a host-b
*   CHOOSER %mylist
in Xaccess file. It logs
Jan 19 15:00:26 dhcp kdm_config[12163]: Host %mylist not found
--
I think there is a typo in kdm_config.c:
In line 1010 of kdm/kfrontend/kdm_config.c we have
#define PARSE_NO_ALIAS  3
but I assume (not sure) it should be
#define PARSE_NO_ALIAS 4
(I tried it and now at least Xaccess parsing works as it should).
--
Running Debian GNU/Linux 3.1 (testing)
Kernel 2.4.27-1-686-smp and libc-2.3.2.so
--
Cheers
  Christoph Barbian
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Bug#143399: xhangglider: Black traces on the root window

2005-01-19 Thread Rudy Godoy
El da 18/01/2005 a 12:49 Moray Allan escribio ...

 Hi,
 
 You've tagged this bug 'upstream', but as far as I know there's been no
 upstream release since 1999 -- is
 http://www.netfort.gr.jp/~take/linux/xhang-en.html still the correct
 upstream download page?


Yes, it is.
 
 Is the upstream author still maintaining the code?  The length of time
 since the last release suggests that he's not.  If he's not, then you
 either need to take responsibility for all bugs yourself (including ones
 in the upstream code) or find help with / orphan the package.
 

I was trying to contact him for several times, I think he's MIA. I'was
figuring out this bug to get it fixed. Debian-Jr still wants it in the
archive, so I'm willing to work on it at all levels, will tag it help
too.

regards,
Rudy


signature.asc
Description: Digital signature


Bug#291167: mozilla-firefox: please package dfsg patches as debian-firefox-patches

2005-01-19 Thread Eric Dorland
* William Ballard ([EMAIL PROTECTED]) wrote:
 Package: mozilla-firefox
 Severity: wishlist
 
 I've become aware of the Trademark/naming debate concerning Firefox and 
 Thunderbird.  I compile Firefox from source.
 
 It would be nice to be able to apply debian patches to a vanilla Firefox 
 source to get a Debian-branded Firefox.

What's stopping you? Just apply the .diff.gz and put --enable-branding
in the configure line and you're done. Did I miss something?

Also there are unofficial branding packages out there too.

-- 
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#291234: parted: No Implementation: This ext2 filesystem has a rather strange layout! Parted No Implementation: This ext2 filesystem has a rather strange layout!

2005-01-19 Thread Sven Luther
tags 291234 + upstream help
thanks
On Wed, Jan 19, 2005 at 03:47:11PM +0100, Joel Soete wrote:
 Package: parted
 Version: 1.6.11-9
 Severity: normal
 
 Hello all,
 
 I am running a debian  unstable' (today updated) with a developement kernel
 2.6.11-rc1-pa3 on hppa box (b2000).
 This system own 2 Disk: one boot disk of 9gb and a 'data' disk of 36Gb.
 
 the boot disk sda has the following slicing schema (cfdisk):
 Disk /dev/sda: 9100 MB, 9100044288 bytes
 64 heads, 32 sectors/track, 8678 cylinders
 Units = cylinders of 2048 * 512 = 1048576 bytes
 
Device Boot  Start End  Blocks   Id  System
 /dev/sda1   1  61   62448   f0  Linux/PA-RISC boot
 /dev/sda2  62 306  250880   82  Linux swap / Solaris
 /dev/sda3 307 367   62464   83  Linux
 /dev/sda4 3688557 83865605  Extended
 /dev/sda5 3681953 1624048   83  Linux
 /dev/sda619542197  249840   83  Linux
 /dev/sda721982319  124912   83  Linux
 /dev/sda823202441  124912   83  Linux
 /dev/sda924424394 1999856   83  Linux
 /dev/sda10   43956347 1999856   83  Linux
 /dev/sda11   63488300 1999856   83  Linux
 /dev/sda12   83018557  263152   83  Linux
 
 And the second disk:
 Disk /dev/sdb: 36.4 GB, 36420075520 bytes
 64 heads, 32 sectors/track, 34732 cylinders
 Units = cylinders of 2048 * 512 = 1048576 bytes
 
Device Boot  Start End  Blocks   Id  System
 /dev/sdb1   1   3473235565552   83  Linux
 
 As I don't need any more to have the full disk for a data slice on this disk,
 I would like to use parted to re-partition as:
 /dev/sdb1   1  61   62448   f0  Linux/PA-RISC boot
 /dev/sdb2  62 306  250880   82  Linux swap / Solaris
 /dev/sdb3 307 367   62464   83  Linux
 /dev/sdb4 3688557 83865605  Extended
 /dev/sdb5 3681953 1624048   83  Linux
 /dev/sdb619542197  249840   83  Linux
 /dev/sdb721982319  124912   83  Linux
 /dev/sdb823202441  124912   83  Linux
 /dev/sdb924424394 1999856   83  Linux
 /dev/sdb10   43956347 1999856   83  Linux
 /dev/sdb11   63488300 1999856   83  Linux
 /dev/sdb12   8301   3473235565552   83  Linux
 
 (for mirroring with raid1)
 
 (in summary:
 parted
 resize 1 0.016 26432.000 (i.e. 34732 - 8300)
 move 1 0.016 8300.000
 
 then create sdb[1..11] )
 
 but when I asked 'parted' to check the disk slice 1:
 # ./parted/parted /dev/sdb
 [...]
 Using /dev/sdb
 (parted) p
 
 Disk geometry for /dev/sdb: 0.000-34732.890 megabytes
 Disk label type: msdos
 MinorStart   End Type  Filesystem  Flags
 1  0.016  34732.000  primary   ext3
 (parted) check 1
 
 No Implementation: This ext2 filesystem has a rather strange layout!  Parted
 can't resize this (yet).

Parted cannot handle newer ext2/3 filesystems, and this results in the message
you see. upstream knows about this, but i didn't see any clear intentions to
solve this, so i don't think there will be a quick fix for this.

Friendly,

Sven Luther



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



Bug#290682: lletters: Port to GTK2

2005-01-19 Thread Rudy Godoy
El da 18/01/2005 a 12:49 Moray Allan escribio ...


 lletters uses the obsolete GTK1 library.  Using GTK2 would, among other 
 things, 
 provide much better accessibility support, which would seem very useful for
 this package.
 

This is something that I have on my todo list for this package, I'm
willing to work on it since I'm very interested in the software.

thanks,
Rudy


signature.asc
Description: Digital signature


Bug#256517: Pcmcia bug with preemptive patch

2005-01-19 Thread Aurélien Jarno
zze-Beta Testeur LABROSSE A ext RD-CSRD-GRE wrote:
Hi list,
Hi Aurélien,
	I try to reproduce the bug with:
	kernel-source-2.4.24 2.4.24-3
	kernel-patch-2.4-lowlatency  20040516 
	and a Cisco wifi PC-Card.
Thanks for this test, however, it seems that the problem was caused byt 
the kernel-patch-2.4-preempt. Did you also added this patch?

Kernel was builded with make-kpkg --initrd --config menuconfig
--added_patch preempt
The card was recognised by the system, even if the drivers
needs third party firmare, and i get no ready network interface.

I used the 'cardctl status' command to show if the card was
listed, and it was.
Ok
Aurélien
--
  .''`.  Aurelien Jarno   GPG: 1024D/F1BCDB73
 : :' :  Debian GNU/Linux developer | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Bug#289545: ITP: gromit -- GTK based tool to make annotations on screen

2005-01-19 Thread Andrew Lau
On Wed, Jan 19, 2005 at 04:39:52PM +0100, Pierre Chifflier wrote:
 Andrew, if you agree, we should try to merge your package and the work
 I've done, there are interesting things in both. In particular, you've
 created some icons which I haven't, and I've created a manpage
 reviewed by the maintainer and a small patch to use a global config
 file.
 
 If the delay is short for that, I propose that we use the packages
 I've done for the initial upload, and that we merge your work just
 after ?
 Of course, if you want, I'm not against co-maintaining the package
 (although is seems a bit strange for a so small package ;)

No need to co-maintain. You don't seem like a green NM, so take it. = P
I've got enough GNOME and XFCE4 packages to deal with right now.

Cheers,
Andrew Netsnipe Lau

-- 
---
Andrew Netsnipe Lau   http://www.cse.unsw.edu.au/~alau/
 Debian GNU/Linux Maintainer  UNSW Computing Students' Society President
 -
  Nobody expects the Debian Inquisition!
 Our two weapons are fear and surprise...and ruthless efficiency!
---


signature.asc
Description: Digital signature


Bug#290551: gedit: Crash on opening /usr/share/mime/packages/glade.xml

2005-01-19 Thread Loïc Minier
Hi,

 (I used the attached file to try reproducing.)

 Here it is

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


glade.xml
Description: application/xml


Bug#256517: Pcmcia bug with preemptive patch

2005-01-19 Thread zze-Beta Testeur LABROSSE A ext RD-CSRD-GRE
Hi,

A little mistake in a copy paste. 
You may read : 
kernel-patch-2.4-preempt 20040321-2
In place of 
kernel-patch-2.4-lowlatency  20040516


Aurelien 

-Message d'origine-
De : Aurélien Jarno [mailto:[EMAIL PROTECTED] 
Envoyé : mercredi 19 janvier 2005 16:22
À : zze-Beta Testeur LABROSSE A ext RD-CSRD-GRE; [EMAIL PROTECTED]
Objet : Re: Bug#256517: Pcmcia bug with preemptive patch

zze-Beta Testeur LABROSSE A ext RD-CSRD-GRE wrote:
 Hi list,
Hi Aurélien,

   I try to reproduce the bug with:
   kernel-source-2.4.24 2.4.24-3
   kernel-patch-2.4-lowlatency  20040516 
   and a Cisco wifi PC-Card.
Thanks for this test, however, it seems that the problem was caused byt the 
kernel-patch-2.4-preempt. Did you also added this patch?

 
   Kernel was builded with make-kpkg --initrd --config menuconfig 
 --added_patch preempt
 
   The card was recognised by the system, even if the drivers
   needs third party firmare, and i get no ready network interface.
   
   I used the 'cardctl status' command to show if the card was listed, 
 and it was.
Ok

Aurélien


-- 
   .''`.  Aurelien Jarno   GPG: 1024D/F1BCDB73
  : :' :  Debian GNU/Linux developer | Electrical Engineer
  `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
`-people.debian.org/~aurel32 | www.aurel32.net



Bug#290683: lletters: Alpha software warning

2005-01-19 Thread Rudy Godoy
El da 18/01/2005 a 12:49 Moray Allan escribio ...

 The lletters package description warns, THIS IS ALPHA SOFTWARE, use it
 at your own risk.  However, the upstream download site at
 http://sourceforge.net/projects/lln/ does not list any new releases
 since June 2000. 
 
 Is the program still being maintained upstream?  It seems likely that
 either the warning should be removed from the package description (if
 it's no longer true), or the package should be removed from the 
 archive (if the warning is serious, but the program is no longer
 maintained).


Upstream seems MIA although there was some people
working/contributing, which patches I've incorporated to the package.
Program has been worked out for several people and IMHO one can't
label it alpha anymore, so I'm going to remove that warning in next
revision.

thanks,
Rudy
 


signature.asc
Description: Digital signature


Bug#291136: capi4hylafax: FTBFS: Missing build dependencies

2005-01-19 Thread Jay Berkenbilt

I'll prepare a fix today with urgency high.  (There are only three
days left before tiff was to enter testing anyway, so, assuming a
day's delay from sponsorship, this won't unduly speed up the
transition of this new upstream release.  If you prefer, I can use
medium.)

--Jay


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



Bug#290680: lletters: Disables key repeat when run

2005-01-19 Thread Rudy Godoy
El da 18/01/2005 a 12:49 Moray Allan escribio ...

 Package: lletters
 Version: 0.1.95-7
 Severity: important
 
 lletters disables key repeat on the X display where it is run.  This is
 bad -- it should instead deal properly internally with multiple key press/
 release events for the same key.
 
 (It has code internally to restore key repeat, but after I closed the 
 window repeat was left disabled -- even if this worked, though, programs
 should not change user settings unasked in this way.)
 

I've reproduced it and I had success on key repeat restore after
window close (XFCE4). However, I'll try to reproduce it on another desktop
environments, and work on the fix for the key repeat disable while it
runs.

regards,
Rudy


signature.asc
Description: Digital signature


Bug#280864: turck-mmcache licensing

2005-01-19 Thread Andres Salomon
FYI, here's the contact info Dmitry gave me:

Hr. Helmut Turck is the owner of Turck Software:
[EMAIL PROTECTED]


I've tried emailing, but have not gotten a response.

-- 
Andres Salomon [EMAIL PROTECTED]


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


Bug#290284: aptitude: Chinese translation isn't match with APT's translation, big confuse!

2005-01-19 Thread Christian Perrier
tags 290284 -moreinfo pending
thanks

Quoting Rex Tsai ([EMAIL PROTECTED]):
 After discussion, the attachment is the updated version of PO and HELP 
 files for aptitude. Kanru Chen submited the complete translation PO file 
 for apt. (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=291178)
 
 oops, I forgot the files.

Commited to SVN




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



Bug#291255: wings3d do not work

2005-01-19 Thread picca frederic
Package: wings3d
Version: 0.98.26-1
Severity: grave
Justification: renders package unusable


Hello

I put here a log of the output when I try to run wingd3d on my computer.
Good luck :)


Have a nice day

Frederic



Erlang (BEAM) emulator version 5.3.6.3 [source] [hipe] [threads:0]

{error_logger,{{2005,1,19},{18,37,3}},'~s~n',['beam/beam_load.c(1091):
Error loading module user_default:\n  use of opcode 112; this emulator
supports only up to 108\n']}
{error_logger,{{2005,1,19},{18,37,3}},'Loading of ~s failed:
~p\n',['/usr/lib/erlang/lib/wings-0.98.24/ebin/user_default.beam',badfile]}
Eshell V5.3.6.3  (abort with ^G)
1 
=ERROR REPORT 19-Jan-2005::18:37:03 ===
beam/beam_load.c(1091): Error loading module user_default:
  use of opcode 112; this emulator supports only up to 108


  =ERROR REPORT 19-Jan-2005::18:37:03 ===
  Loading of /usr/lib/erlang/lib/wings-0.98.24/ebin/user_default.beam
  failed: badfile

  =ERROR REPORT 19-Jan-2005::18:37:03 ===
  beam/beam_load.c(1091): Error loading module wings_lang:
use of opcode 112; this emulator supports only up to 108


=ERROR REPORT 19-Jan-2005::18:37:03 ===
Loading of /usr/lib/erlang/lib/wings-0.98.24/ebin/wings_lang.beam
failed: badfile

=ERROR REPORT 19-Jan-2005::18:37:03 ===
beam/beam_load.c(1091): Error loading module wings_lang:
  use of opcode 112; this emulator supports only up to 108


  =ERROR REPORT 19-Jan-2005::18:37:03 ===
  Loading of /usr/lib/erlang/lib/wings-0.98.24/ebin/wings_lang.beam
  failed: badfile

  

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

Versions of packages wings3d depends on:
ii  erlang   1:9.2.2-6   A real-time, concurrent and distri
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libsdl-erlang0.94.0615-1 Erlang bindings to the Simple Dire
ii  xlibmesa-gl [libgl1] 4.3.0.dfsg.1-10 Mesa 3D graphics library [XFree86]
ii  xlibmesa-glu [libglu1]   4.3.0.dfsg.1-10 Mesa OpenGL utility library [XFree

-- no debconf information


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



Bug#291253: utf-8 text fails to display only in screen

2005-01-19 Thread Luke Schierer
Package: screen
Version: 4.0.2-4.1
Severity: important
Tags: l10n


before starting screen, a zcat of the UTF-8-demo.txt.gz from
http://melkor.dnp.fmph.uniba.sk/~garabik/debian-utf8/HOWTO/howto.html 
works as expected, almost everything, including the line drawing stuff
at the bottom, works, except where I know that I don't have fonts
related. 

after starting screen, the same zcat command prints tons of garbage to
the screen, and doesn't produce a prompt untill I hit control-c or
type reset (interestingly, both work. i can't see myself typing, but
hitting enter produces an effect, so i'm obviously at a command line.
but control-c also produces a command line that i can see, and visibly
type at). 

last time i started screen, a few weeks ago (yes, I leave screen
sessions open for a long time), this worked, I could zcat the demo
file.

I noticed this bug because the line drawing characters in mutt stopped
working, whereas whereas previously they had been working.

luke

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.23
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=locale: Cannot set 
LC_ALL to default locale: No such file or directory
UTF-8)

Versions of packages screen depends on:
ii  base-passwd 3.5.9Debian base system master password
ii  debconf 1.4.30.11Debian configuration management sy
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libncursesw55.4-4Shared libraries for terminal hand
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  passwd  1:4.0.3-30.7 Change and administer password and

-- debconf information:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LC_TIME = %a %b %e %H:%M:%S %Z %Y,
LANG = en_US.UTF-8
are supported and installed on your system.
perl: warning: Falling back to the standard locale (C).
locale: Cannot set LC_ALL to default locale: No such file or directory
  screen/old_upgrade_prompt: false


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



Bug#291254: Doesn't work with the latest kernel-source-2.6.8

2005-01-19 Thread Aurelien Jarno
Package: kernel-patch-2.6.8-hppa
Version: 2.6.8-4
Severity: serious

It seems that kernel-patch-2.6.8-hppa doesn't work with
kernel-source-2.6.8 (ie version 2.6.8-12), so it is simply unuseable:

START applying hppa_2_6_8 patch (hppa architecture)
Testing whether hppa architecture patch for 2.6.8 applies (dry run):
1 out of 1 hunk FAILED -- saving rejects to file drivers/serial/8250.c.rej
hppa architecture patch for 2.6.8 does not apply cleanly
Patch /usr/src/kernel-patches/hppa/apply/hppa_2_6_8  failed.

Seems to be due to the following change in kernel-source-2.6.8 version 
2.6-8-9:

  * Adding drivers-serial-8250-ioremap-fix.dpatch: a patch from Alex
Williamson that prevents setserial from crashing the kernel.
See:
http://marc.theaimsgroup.com/?l=linux-kernelm=109913237604338w=2
(Dann Frazier)


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: hppa (parisc)
Kernel: Linux 2.6.8-1-32
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages kernel-patch-2.6.8-hppa depends on:
ii  bash  2.05b-24   The GNU Bourne Again SHell
ii  grep-dctrl2.1.8  Grep Debian package information
ii  patch 2.5.9-2Apply a diff file to an original

-- no debconf information


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



Bug#291252: specimen: Uninstallable on sid - library dependency does not exist.

2005-01-19 Thread Chris Metzler
Package: specimen
Version: 0.4.3-1
Severity: grave
Justification: renders package unusable


specimen is in sid with an apparent dependency on libphat0,
which does not exist.

# apt-get -t unstable install specimen
Reading Package Lists... Done
Building Dependency Tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  specimen: Depends: libphat0 but it is not installable
E: Broken packages
#



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

Versions of packages specimen depends on:
ii  ladcca2 0.4.0-4  LADCCA shared library files
ii  libart-2.0-22.3.16-6 Library of functions for 2D graphi
ii  libasound2  1.0.7-4  ALSA library
ii  libatk1.0-0 1.8.0-4  The ATK accessibility toolkit
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libglib2.0-02.4.8-1  The GLib library of C routines
ii  libgnomecanvas2-0   2.8.0-1  A powerful object-oriented display
ii  libgtk2.0-0 2.4.14-2 The GTK+ graphical user interface 
ii  libjack0.80.0-0 0.99.0-2 JACK Audio Connection Kit (librari
ii  libpango1.0-0   1.6.0-3  Layout and rendering of internatio
ii  libsamplerate0  0.1.1-2  audio rate conversion library
ii  libsndfile1 1.0.10-2 Library for reading/writing audio 
ii  libuuid11.35-6   Universally unique id library
ii  libxml2 2.6.11-5 GNOME XML library
ii  zlib1g  1:1.2.2-3compression library - runtime

-- no debconf information


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



Bug#291247: psi: invalid CA certificate dialog is almost useless

2005-01-19 Thread Peter Palfrader
Package: psi
Version: 0.9.3-1
Severity: normal

Hi,

when psi connects to a jabber server for which it cannot verify the
certificate (because the package stomped over my root-certificates file
again), then I'm informed that, well, the certificate is invalid.

 ( Clicking on details doesn't show much more than some details about
   subject and issuer, not the fingerprint however, which would be
   far more important )


What it really should do, is

1.) print the fingerprint right there in the Sever Authentication dialog
where it informs me of the cert being bad.
and
2.) instead of just allowing Continue (upon others), it should have
Accept Once and Accept Forever.  Using the latter would of course
save the cert somewhere so it can be remembered as having been
accepted before - no need to ask then.

-- 
Peter


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



Bug#291240: guile-1.6: segfaults on invalid syntax

2005-01-19 Thread Rafael vila de Espndola
Package: guile-1.6
Version: 1.6.7-1
Severity: normal

guile segfaults if [EMAIL PROTECTED] (without the commas) is evaluated.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages guile-1.6 depends on:
ii  guile-1.6-libs  1.6.7-1  Main Guile libraries
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libguile-ltdl-1 1.6.7-1  Guile's patched version of libtool

-- no debconf information


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



Bug#291245: CAN-2005-0064: Arbitrary code execution in gpdf

2005-01-19 Thread Martin Schulze
Package: koffice
Tags: security sarge sid

This problem also affects koffice:

URL: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-0064

Reference: IDEFENSE:20050118 Multiple Unix/Linux Vendor Xpdf makeFileKey2 Stack 
Overflow
Reference: 
URL:http://www.idefense.com/application/poi/display?id=186type=vulnerabilities
Reference: CONFIRM:ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.00pl3.patch

Buffer overflow in the Decrypt::makeFileKey2 function in Decrypt.cc
for xpdf 3.00 and earlier allows remote attackers to execute arbitrary
code via a PDF file with a large /Encrypt /Length keyLength value.

You'll find the patch in the source of xpdf 3.00-12 which I'm attaching.

Regards,

Joey

-- 
Ten years and still binary compatible.  -- XFree86

Please always Cc to me when replying to me on the lists.
diff -u xpdf-3.00/debian/changelog xpdf-3.00/debian/changelog
--- xpdf-3.00/debian/changelog
+++ xpdf-3.00/debian/changelog
@@ -1,3 +1,12 @@
+xpdf (3.00-12) unstable; urgency=high
+
+  * SECURITY UPDATE: Fixed buffer overflow that could overwrite the stack 
+and hence cause the execution of arbitrary code as reported by 
+iDEFENSE (xpdf/Decrypt.cc)
+  * References: CAN-2005-0064
+
+ -- Hamish Moffatt [EMAIL PROTECTED]  Wed, 19 Jan 2005 23:48:56 +1100
+
 xpdf (3.00-11) unstable; urgency=high
 
   * SECURITY UPDATE: fix potential buffer overflow
only in patch2:
--- xpdf-3.00.orig/xpdf/Decrypt.cc
+++ xpdf-3.00/xpdf/Decrypt.cc
@@ -73,6 +73,11 @@
   Guchar fx, fy;
   int len, i, j;
 
+  // check whether we have non-zero keyLength
+  if ( !keyLength ) {
+return gFalse;
+  }
+
   // try using the supplied owner password to generate the user password
   *ownerPasswordOk = gFalse;
   if (ownerPassword) {
@@ -98,7 +103,7 @@
 } else {
   memcpy(test2, ownerKey-getCString(), 32);
   for (i = 19; i = 0; --i) {
-   for (j = 0; j  keyLength; ++j) {
+   for (j = 0; j  keyLength  j  16; ++j) {
  tmpKey[j] = test[j] ^ i;
}
rc4InitKey(tmpKey, keyLength, fState);
@@ -135,6 +140,11 @@
   int len, i, j;
   GBool ok;
 
+  // check whether we have non-zero keyLength
+  if ( !keyLength ) {
+return gFalse;
+  }
+
   // generate file key
   buf = (Guchar *)gmalloc(68 + fileID-getLength());
   if (userPassword) {
@@ -172,7 +182,7 @@
   } else if (encRevision == 3) {
 memcpy(test, userKey-getCString(), 32);
 for (i = 19; i = 0; --i) {
-  for (j = 0; j  keyLength; ++j) {
+  for (j = 0; j  keyLength  j  16; ++j) {
tmpKey[j] = fileKey[j] ^ i;
   }
   rc4InitKey(tmpKey, keyLength, fState);


Bug#291248: hexedit doesn't work with files 2GB

2005-01-19 Thread Walter Hofmann
Package: hexedit
Version: 1.2.2-1
Severity: normal

If go go to a file offset past 2GB, hexedit will display wrong data.
Also, the search function doesn't find matches past 2GB.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-15) (ignored: LC_ALL set to [EMAIL 
PROTECTED])

Versions of packages hexedit depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libncurses5 5.4-4Shared libraries for terminal hand

-- no debconf information


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



Bug#291251: CAN-2005-0064: Arbitrary code execution in kpdf

2005-01-19 Thread Martin Schulze
Package: kpdf
Severity: grave
Tags: security sarge sid

This problem also affects kpdf:

URL: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-0064

Reference: IDEFENSE:20050118 Multiple Unix/Linux Vendor Xpdf makeFileKey2 Stack 
Overflow
Reference: 
URL:http://www.idefense.com/application/poi/display?id=186type=vulnerabilities
Reference: CONFIRM:ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.00pl3.patch

Buffer overflow in the Decrypt::makeFileKey2 function in Decrypt.cc
for xpdf 3.00 and earlier allows remote attackers to execute arbitrary
code via a PDF file with a large /Encrypt /Length keyLength value.

You'll find the patch in the source of xpdf 3.00-12 which I'm attaching.

Regards,

Joey

-- 
Ten years and still binary compatible.  -- XFree86

Please always Cc to me when replying to me on the lists.
diff -u xpdf-3.00/debian/changelog xpdf-3.00/debian/changelog
--- xpdf-3.00/debian/changelog
+++ xpdf-3.00/debian/changelog
@@ -1,3 +1,12 @@
+xpdf (3.00-12) unstable; urgency=high
+
+  * SECURITY UPDATE: Fixed buffer overflow that could overwrite the stack 
+and hence cause the execution of arbitrary code as reported by 
+iDEFENSE (xpdf/Decrypt.cc)
+  * References: CAN-2005-0064
+
+ -- Hamish Moffatt [EMAIL PROTECTED]  Wed, 19 Jan 2005 23:48:56 +1100
+
 xpdf (3.00-11) unstable; urgency=high
 
   * SECURITY UPDATE: fix potential buffer overflow
only in patch2:
--- xpdf-3.00.orig/xpdf/Decrypt.cc
+++ xpdf-3.00/xpdf/Decrypt.cc
@@ -73,6 +73,11 @@
   Guchar fx, fy;
   int len, i, j;
 
+  // check whether we have non-zero keyLength
+  if ( !keyLength ) {
+return gFalse;
+  }
+
   // try using the supplied owner password to generate the user password
   *ownerPasswordOk = gFalse;
   if (ownerPassword) {
@@ -98,7 +103,7 @@
 } else {
   memcpy(test2, ownerKey-getCString(), 32);
   for (i = 19; i = 0; --i) {
-   for (j = 0; j  keyLength; ++j) {
+   for (j = 0; j  keyLength  j  16; ++j) {
  tmpKey[j] = test[j] ^ i;
}
rc4InitKey(tmpKey, keyLength, fState);
@@ -135,6 +140,11 @@
   int len, i, j;
   GBool ok;
 
+  // check whether we have non-zero keyLength
+  if ( !keyLength ) {
+return gFalse;
+  }
+
   // generate file key
   buf = (Guchar *)gmalloc(68 + fileID-getLength());
   if (userPassword) {
@@ -172,7 +182,7 @@
   } else if (encRevision == 3) {
 memcpy(test, userKey-getCString(), 32);
 for (i = 19; i = 0; --i) {
-  for (j = 0; j  keyLength; ++j) {
+  for (j = 0; j  keyLength  j  16; ++j) {
tmpKey[j] = fileKey[j] ^ i;
   }
   rc4InitKey(tmpKey, keyLength, fState);


Bug#291258: gtfp chmod function broken in gftp 2.0.18rc1

2005-01-19 Thread Moritz Naumann
Distribution: Debian 3.1
Package: gftp
Severity: normal
Version: GNOME2.8.1 2.0.18
Gnome-Distributor: Debian
Synopsis: gtfp chmod function broken in gftp 2.0.18rc1
Bugzilla-Product: gftp
Bugzilla-Component: general
Bugzilla-Version: 2.0.18
Description:
Description of Problem:
It's impossible to chmod directories on a remote server to mode 777.
gftp also seems to change modes incorrectly in some cases.
Steps to reproduce the problem:
1. Connect to remote server
2. Attempt to chmod a remote directory to 777
3. Refresh directory listing and check actually set permissions.
Actual Results:
u+rwx,g+rw,o+rwx
Expected Results:
u+rwx,g+rwx,o+rwx
How often does this happen?
This is reproducible.
Additional Information:
The remote server this was observed on is a ProFTPD 1.2.5rc1
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Bug#291259: xfonts-artwiz: FTBFS: Missing build dependency.

2005-01-19 Thread Kurt Roeckx
Package: xfonts-artwiz
Version: 1:1.3-1
Severity: serious

Hi,

Your package if failing to build with the following error:
cd /usr/src/xfonts-artwiz-1.3/upstream  tar -xvjf
artwiz_src.tar.bz2  cd artwiz  \
for font in *.bdf; do \
bdftopcf ${font} | \
gzip  
/usr/src/xfonts-artwiz-1.3/debian/xfonts-artwiz/usr/X11R6/lib/X11/fonts/misc/${font%.bdf}.pcf.gz;
 \
done
tar: bzip2: Cannot exec: No such file or directory

You need to add a build dependency on bzip2.


Kurt



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



Bug#291263: ITP: gaim-otr -- Off-the-Record (OTR) Messaging plugin for gaim

2005-01-19 Thread Thibaut VARENE
Package: wnpp
Severity: wishlist

* Package name: gaim-otr
  Version : 1.0.3
  Upstream Authors: Nikita Borisov and Ian Goldberg [EMAIL PROTECTED]
* URL : http://www.cypherpunks.ca/otr/
* License : GPL v2
  Description : Off-the-Record (OTR) Messaging plugin for gaim

This gaim plugin enables Off-the-Record (OTR) messaging.
.
 OTR allows you to have private conversations over IM by providing:
  - Encryption
- No one else can read your instant messages.
  - Authentication
- You are assured the correspondent is who you think it is.
  - Deniability
- The messages you send do _not_ have digital signatures that are
  checkable by a third party.  Anyone can forge messages after a
  conversation to make them look like they came from you.  However,
  _during_ a conversation, your correspondent is assured the messages
  he sees are authentic and unmodified.
  - Perfect forward secrecy
- If you lose control of your private keys, no previous conversation
  is compromised.


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (90, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.11-rc1-mm1
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Bug#291265: gnumeric: Silent data loss when saving in a directory with iso8859-1 name

2005-01-19 Thread Nicolas Boulenguez
Package: gnumeric
Version: 1.4.1-1
Severity: critical
Justification: causes serious data loss


Hello.

Save a file, say Book1.gnumeric, in a directory named é. In the
window dedicated to save, it is named \351 (iso8859-1, octal) in
the saving dialog. Nothing seems unusual, I heard that gnome uses
UTF8. Except the file has a size of 0, and the data is lost.

It does not lose data, but it seems related:
- The same works correctly if I create the directory with gnumeric (it
uses an unicode filename, with ugly two-letters results).
- Loading a file with an é in its name crashes gnumeric.

Maybe it is not worth the mess, because UTF8 is the future and few
users use the command line and gnumeric. But a save your data
elsewhere message would be nice.


PS: Do not cry for my data, I printed before s(h)aving them
accidently.

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

Versions of packages gnumeric depends on:
ii  gconf2   2.8.1-4 GNOME configuration database syste
ii  gnumeric-common  1.4.1-1 Common files for Gnumeric, the GNO
ii  gsfonts  8.14+v8.11-0.1  Fonts for the Ghostscript interpre
ii  libart-2.0-2 2.3.16-6Library of functions for 2D graphi
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libbonobo2-0 2.8.0-4 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.0-2 The Bonobo UI library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libgconf2-4  2.8.1-4 GNOME configuration database syste
ii  libglade2-0  1:2.4.1-1   Library to load .glade files at ru
ii  libglib2.0-0 2.4.8-1 The GLib library of C routines
ii  libgnome2-0  2.8.0-6 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.1-1 The GNOME 2.2 print architecture U
ii  libgnomeui-0 2.8.0-3 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.8.3-8 The GNOME virtual file-system libr
ii  libgsf-1 1.11.1-1Structured File Library - runtime 
ii  libgsf-gnome-1   1.11.1-1Structured File Library - runtime 
ii  libgtk2.0-0  2.4.14-2The GTK+ graphical user interface 
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  liborbit21:2.10.2-1.1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.6.0-3 Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libxml2  2.6.11-5GNOME XML library
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



Bug#291266: vulnerable to CAN-2005-0064

2005-01-19 Thread Joey Hess
Package: xpdf-reader
Version: 3.00-11
Severity: grave
Tags: patch security

xpdf is vulnerable to a buffer overflow that can be exploited by
malicious pdfs to execute arbitrary code. The hole is described here:
http://www.idefense.com/application/poi/display?id=186type=vulnerabilitiesflashstatus=false

I've attached a patch that adds bounds checking to close the hole.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.27
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages xpdf depends on:
ii  xpdf-common   3.00-11Portable Document Format (PDF) sui
ii  xpdf-reader   3.00-11Portable Document Format (PDF) sui
ii  xpdf-utils3.00-11Portable Document Format (PDF) sui

Versions of packages xpdf-reader depends on:
ii  gsfonts  8.14+v8.11-0.1  Fonts for the Ghostscript interpre
ii  lesstif2 1:0.93.94-11OSF/Motif 2.1 implementation relea
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-7   GCC support library
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libpaper11.1.14-3Library for handling paper charact
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libstdc++5   1:3.3.5-6   The GNU Standard C++ Library v3
ii  libt1-5  5.0.2-3 Type 1 font rasterizer library - r
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  libxp6   4.3.0.dfsg.1-10 X Window System printing extension
ii  libxpm4  4.3.0.dfsg.1-10 X pixmap library
ii  libxt6   4.3.0.dfsg.1-10 X Toolkit Intrinsics
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  xpdf-common  3.00-11 Portable Document Format (PDF) sui
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information

-- 
see shy jo
*** XRef.cc.origWed Jan 12 17:10:53 2005
--- XRef.cc Wed Jan 12 17:11:22 2005
***
*** 793,798 
--- 793,801 
} else {
  keyLength = 5;
}
+   if (keyLength  16) {
+ keyLength = 16;
+   }
permFlags = permissions.getInt();
if (encVersion = 1  encVersion = 2 
encRevision = 2  encRevision = 3) {


signature.asc
Description: Digital signature


Bug#291241: svn-buildpackage: Problems handling filenames with spaces

2005-01-19 Thread Lucas Wall
Package: svn-buildpackage
Version: 0.5.11
Severity: normal
Tags: patch

While building a package I noticied one of the files had disapeared. I tracked
down the problem to the parsing of the 'svn status -v'. The problem is that
the regular expresion will only return the last part of the filename, if the
filename has a space.

I modified that regular expresion and everything worked ok. I'm sending you a
patch with the re I changed, but I think this new re can still have problems.
The real problem is that filenames can be anything and basing the re matching
logic to the end of the line is not a good idea.

K.


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

Versions of packages svn-buildpackage depends on:
ii  devscripts2.8.10 Scripts to make the life of a Debi
ii  perl  5.8.4-5Larry Wall's Practical Extraction 
ii  subversion1.1.1-2Advanced version control system (a
ii  subversion-tools  1.1.1-2Assorted tools related to Subversi

-- no debconf information

-- 
.''`. | Lucas Wall [EMAIL PROTECTED]
   : :' : | Buenos Aires, Argentina
   `. `'  | http://www.kadath.com.ar
 `-   | PGP: 1024D/84FB46D6
   Debian Developer   |  5D25 528A 83AB 489B 356A
http://www.debian.org |  4087 BC9B 4733 84FB 46D6
--- svn-buildpackage.orig   2005-01-19 04:26:59.0 -0300
+++ svn-buildpackage2005-01-19 12:55:49.0 -0300
@@ -269,7 +269,7 @@
 print STDERR Creating file list...\n if $opt_verbose;
 open($stat, svn status -v |);
 while($stat) {
-   if(/^[^\?].*\s+(\S+)\n/) {
+   if(/^[^\?].*\d+\s+\d+\s+\S+\s+(.*)\n/) {
   $_=$1;
   if ($_ ne .) {
  if(-d $_) {


signature.asc
Description: Digital signature


Bug#126502: Matching Profile #914-67805

2005-01-19 Thread Hidden Secrets Inc.

Neighbourhood ID:  22057

Cheating-Wives in Your Neighbourhood

1. Amanda Howe
   -  Age:29
   -  Height: 5' 8
   -  Weight: 115 LBS
   -  Hair:   Blonde
   -  Palce to Meet:  Her House

Available From Jan 19th to Jan 25th


2. Danielle Reid
   - Age:32
   - Height: 5'6
   - Weight: 110 LBS
   - Hair:   Burnette
   - Place to Meet:  Hotel/Your House
   
Available From Jan 20th to Jan 24th

TO Book Appointments or View Pics and Videos:
http://adoredearest.com/d/6.php


Don't Want to Meet Cheating-Wives?
http://adoredearest.com/out/


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



Bug#291237: Problem solved...

2005-01-19 Thread Alessandro Polverini
Responding to myself.
I didn't knew that using :

Resources className=org.apache.naming.resources.FileDirContext
allowLinking=true /

inside the admin context could solve the problem also for jars.

Please close the bug since it's not relevant any more.

Sorry,
Alex




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



Bug#291202: hplip_toolbox depends on python-kde3

2005-01-19 Thread $B4ZC#BQ(B

torsten The qt module is in fact provided by python-qt3 which is enough to run
torsten hplip_toolbox on my system.

It's even better: apparently I only need python2.3-sip4-qt3.  That
saves me around 40MB.  :D
So perhaps put python2.3-sip4-qt3 in the Suggest or Recommend field?


torsten That seems to be just the Qt version which is installed into the Gnome
torsten menu. 

I see.  Then it was just wishful thinking of me.  ;)



Danai SAE-HAN


--
:
:







Bug#291129: toursst: Please provide an option for specifying an alternative Maildir

2005-01-19 Thread Micah Anderson
On Wed, 19 Jan 2005, Tommi Virtanen wrote:

 Micah Anderson wrote:
 It would be nice if there was a --maildir option to toursst that
 can be used to specify an alternative maildir besides ~/Maildir. 
 
 toursst maildir --help will tell you of a --maildir= option.
 Closing this bug.

This is definately not documented anywhere. If you type
toursst --help it will tell you of the --help option, but it leads you
to believe that this is the last and final help:

  --help  Display this help and exit.

It is not documented in a man page, a README or even in the command
usage. It 

Additionally, the --help output is incorrect, it should indicate that
a command is required (if you run it without a command it seems to
do nothing). I would suggest something of the order:

Usage: toursst [options] command 

toursst --help should say not only have the command as a required
option, but it should also state specifically that --help command will
provide you more specific information. I suggest the following (see
both the change in the --help option, as well as the Commands:
section):

Usage: toursst [options] command

Options:
  --force-refresh Force refresh on all feeds
  --list-writers  List plugins to write the RSS items
  --bookmark-file=Location of XBEL bookmarks [default:
  /home/micah/.galeon/bookmarks.xbel]
  --bookmark-folder=  Bookmark folder RSS bookmarks are in (empty string for
  top folder) [default: RSS]
  --mirror=   Directory that stores pre-mirrored RSS feeds.
  --help [command]Display this help and exit.
  -q, --quiet Be less verbose
  --version   
  -v, --verbose   Be more verbose
Commands:
Type toursst [options] --help command for help on a specific option.
maildir  Writes RSS items as mails in maildirs.
stdout   Writes RSS items to standard output.



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



Bug#291039: kernel-patch-debian-2.6.10: bashism in apply file

2005-01-19 Thread Gerrit Pape
On Wed, Jan 19, 2005 at 04:15:26PM +0900, Horms wrote:
 On Tue, Jan 18, 2005 at 07:48:38PM +0900, Kenshi Muto wrote:
  When I tried to build kernel 2.6.10 from debian source, I got
  following message.
  
  /usr/src/kernel-patches/all/2.6.10/apply/debian 2.6.10-3
  /usr/src/kernel-patches/all/2.6.10/apply/debian: 160: Syntax error: Missing 
  '))'
  
  I'm using dash as sh.  I think patch-code should use #!/bin/bash or
  be fixed for plain bourne shell.

I agree that this may be a problem in dash.  Anyway, there's a simple
workaround, the only problem is this line

 for base in $((cd $home/series/  ls -d *) | sort -rnt- -k 2); do

and to make it the parser easier, simply put a space between the two '(':

 for base in $( (cd $home/series/  ls -d *) | sort -rnt- -k 2); do

With some good will you can read this from:
 
http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_03
---
  If the command substitution consists of a single subshell, such as:
  
  $( (command) )
  
  a conforming application shall separate the $( and '(' into two tokens
  (that is, separate them with white space). This is required to avoid any
  ambiguities with arithmetic expansion.
---

Cc Herbert.

Regards, Gerrit.


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



Bug#290753: ITP: dgap -- driver for Digi Acceleport PCI multiport serial cards

2005-01-19 Thread Julien BLACHE
Julien BLACHE [EMAIL PROTECTED] wrote:

 This will go into contrib; the sources up on Digi's support site also contain
 the firmwares needed by the cards. I'll split the firmware files from the
 source package to put them in non-free, where they belong. I'm currently
 verifying that we can redistribute the files, as there's no mention of 
 anything concerning the firmware files in the source package.

Update: Digi informed me that the firmware files are released under
the GPL.

ISTR this is the case of the eagle-usb firmwares too, and they're in
main. Am i correct ?

If so, I'll upload the packages to main.

JB.

-- 
 Julien BLACHE - Debian  GNU/Linux Developer - [EMAIL PROTECTED] 
 
 Public key available on http://www.jblache.org - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 


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



Bug#290268: saxon-catalog: FTBFS: Missing Build-Depends on 'fastjar'

2005-01-19 Thread Steve Langasek
Hi Mark,

I've prepared a 0-day NMU for this bug that will be uploaded shortly.  The
short patch is attached; verified to build in a pbuilder chroot once fastjar
is listed as a build dependency.

Thanks,
-- 
Steve Langasek
postmodern programmer
diff -Nru /var/tmp/7xIZY0pKEP/saxon-catalog-20020210/debian/changelog 
/var/tmp/TVz8xCk3Pq/saxon-catalog-20020210/debian/changelog
--- /var/tmp/7xIZY0pKEP/saxon-catalog-20020210/debian/changelog 2003-09-17 
00:30:20.0 -0700
+++ /var/tmp/TVz8xCk3Pq/saxon-catalog-20020210/debian/changelog 2005-01-19 
09:10:44.0 -0800
@@ -1,3 +1,11 @@
+saxon-catalog (20020210-0.2) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * High-urgency upload for sarge-targetted RC bugfix.
+  * Add missing build-dependency on fastjar.  (Closes: #290268)
+
+ -- Steve Langasek [EMAIL PROTECTED]  Wed, 19 Jan 2005 09:10:05 -0800
+
 saxon-catalog (20020210-0.1) unstable; urgency=low
 
   * Non maintainer upload (0-day NMU policy)
diff -Nru /var/tmp/7xIZY0pKEP/saxon-catalog-20020210/debian/control 
/var/tmp/TVz8xCk3Pq/saxon-catalog-20020210/debian/control
--- /var/tmp/7xIZY0pKEP/saxon-catalog-20020210/debian/control   2003-09-17 
00:29:41.0 -0700
+++ /var/tmp/TVz8xCk3Pq/saxon-catalog-20020210/debian/control   2005-01-19 
09:21:36.0 -0800
@@ -2,7 +2,7 @@
 Section: contrib/text
 Priority: optional
 Maintainer: Mark Johnson [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper (= 4), arbortext-catalog, libsaxon-java (= 
6.5.4), jikes-classpath
+Build-Depends-Indep: debhelper (= 4), arbortext-catalog, libsaxon-java (= 
6.5.4), jikes-classpath, fastjar
 Standards-Version: 3.6.1
 
 Package: saxon-catalog


signature.asc
Description: Digital signature


Bug#289470: totem crash

2005-01-19 Thread Ing. Vladimir M. Kerka
Sebastien Bacher wrote:
Le lundi 17 janvier 2005 à 17:39 +0100, Ing. Vladimir M. Kerka a écrit :
Sebastien Bacher wrote:
Update situation:
I
dsputil_mmx.c:633: error: can't find a register in class `GENERAL_REGS' 
while reloading `asm'

Any hint?

Hi,
Thanks again for the help to debug. No real idea on the build fail, but
I'm pretty sure that the issue is due to a gconf key set to a wrong
value or no set somewhere so rebuilding xine is probably not really
needed.
Could you rebuild orbit with this workaround and make me know if you
still get the crash ?
http://bugzilla.gnome.org/attachment.cgi?id=34814action=view
I've compiled orbit2 with mentioned patch, totem is still crashing.
Sorry.
Cheers,
V.M.Kerka
--
Ing. Vladimir M. Kerka
Klukovicka 1530
155 00 Praha 5 - Stodulky
Czech Republic
e-mail: [EMAIL PROTECTED]
[EMAIL PROTECTED]
web:www.dinmont.cz
NOTE: rm -rf /bin/ladin
Nedostavam a nerozesilam viry, protoze nepouzivam M$ Windows

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


Bug#288754: Fixed in 3.3.2-0pre1

2005-01-19 Thread Adeodato Simó
* Elmar Haneke [Wed, 19 Jan 2005 14:36:13 +0100]:
 The problem does not exist in kfax 3.3.2-0pre1, but there are other 
 problems introduced by that beta, e.g. it cannot print after the page 
 is rotated.

  Please file separate bug reports for them. Thanks.

-- 
Adeodato Simó
EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621
Listening to: Pasión Vega - Desnuda tengo el alma
 
Mankind are very odd creatures: one half censure what they practice, the
other half practice what they censure; the rest always say and do as
they ought.
-- Michel de Montaigne



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



Bug#287499: Thanks for improving the usability of alsa-base debian package

2005-01-19 Thread AKL. Mantas Kriauciunas
Hi,

I just got bitten by this alsa-base bug on a sarge system, after
spending about 3 hours digging throug /etc folder :(
(My friend's laptop has both - 2.4 and 2.6 kernels and most of the time he
uses 2.4 because suspend doesn't work on 2.6 :( )

On 16 Jan 2005, Jordi Mallach [EMAIL PROTECTED] wrote:
 Changes:
  alsa-driver (1.0.8-1) unstable; urgency=low
[..]
   - /etc/mod(utils|probe.d)/alsa-base
 + Don't alias OSS module names to off.  This was creating
   too much confusion.  (Closes: #287499, #290663)
[..] 

Thanks for removing these evil aliases - they couse only hard to find
problems on systems with 2.4 kernels :(
In future make at least a debconf prompt for changes like this, because
now after upgrade my friend got system with not working sound (sound
modules were specified in /etc/modules ) and it was very hard to find
why modprobe i810_audio doesn't work :(

The best solution in this case would be runtime autodetecting if alsa 
modules for booting kernel exit and disable oss modules only in such
a case.

-- 
Good luck,
Mantas Kriauinas [EMAIL PROTECTED]  Jabber ID: [EMAIL PROTECTED]
Public organization Open Source for Lithuania - www.akl.lt



Bug#286387: clarifying the scope of exploit of this bug

2005-01-19 Thread Joey Hess
I don't understand how these bugs can be exploited. Both programs
contain code like this:

set -e

tmpdir=/tmp/$program.$$

  trap /bin/rm -rf $tmpdir 0 1 2 3 13 15

mkdir $tmpdir

Since the script is set -e, the mkdir will make it exit if $tmpdir already
exists. It's true that it might rm -rf some other program's $tmpdir on
exit, but since the directory is in /tmp, it's unlikely that this will
delete anything important, or even anything that does not belong to the
person running the program. And rm doesn't follow sylinks, so an
attacker cannot even use a symlink attack to make it remove some other
directory.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#284096: openoffice.org: same problem here, under gnome

2005-01-19 Thread Alexandre Fayolle
Package: openoffice.org
Version: 1.1.3-4
Followup-For: Bug #284096

Hi there, 

I read your discussion on the bug tracker. I'm experiencing the same
problem as described here and on bug #289715, using OOImpress and Gnome. 

If required I can send a document on which this occures, in case this is
caused by some corruption in the document metadata or similar thing. 

Sorry for not being more helpful right now. 

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages openoffice.org depends on:
ii  dictionaries-common [openoffi 0.24.5 Common utilities for spelling dict
ii  openoffice.org-bin1.1.3-4OpenOffice.org office suite binary
ii  openoffice.org-debian-files   1.1.3-3+1  Debian specific parts of OpenOffic
ii  openoffice.org-l10n-en [openo 1.1.3-4English (US) language package for 
ii  ttf-opensymbol1.1.3-4The OpenSymbol TrueType font

-- no debconf information


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



Bug#282492: iproute: ip -4 neigh flush dev eth0 hangs up

2005-01-19 Thread Wilfried Weissmann
hi,
kernel-image-2.6.10-1-686 2.6.10-4 works for me. the fw-builder script 
and the ip flush command do not hang anymore.

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


Bug#281871: licq-plugin-osd does not respect the configuration settings for timeout and delaypercharacter

2005-01-19 Thread Martin MAURER
Hi, 

the problem this bug report refers to was a problem of libxosd which is
used by licq-osd. With recent (debian unstable) versions of libxosd2
this problem should no longer persist. Please tell me if this still
happens. 

greetings
Martin (licq-osd upstream author)

 Package: licq-plugin-osd
 Version: 1.3.0-2
 Severity: important
 
 it is often the case that the OSD text is stuck on the screen and is
 not 
 removed until the next event appears. Sometimes the same message is
 stuck 
 forever (until licq restart) rendering that part of the screen hardly
 usable,
 this makes the plugin anoying and useless.



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


Bug#254207: /usr/games/civclient-xaw3d: crashes when opening city worklist

2005-01-19 Thread Jordi Mallach
Hi Mikael,

On Sun, Jun 13, 2004 at 07:19:14PM +0200, Mikael Åkersund wrote:
 When opening the city worklist menu the xaw3d client crashes before it 
 finishes drawing the menu. 
 -- Error Message: 
 X Error of failed request:  BadDrawable (invalid Pixmap or Window 
 parameter)
   Major opcode of failed request:  53 (X_CreatePixmap)
   Resource id in failed request:  0x0
   Serial number of failed request:  23530
   Current serial number in output stream:  24096

I wonder if you can reproduce this with the Freeciv 2.0 prepackages
available in  http://people.debian.org/~jordi/debian/ .

I guess if you're still on Sparc you'll need to compile them, though.

Thanks for trying,
Jordi
-- 
Jordi Mallach Pérez  --  Debian developer http://www.debian.org/
[EMAIL PROTECTED] [EMAIL PROTECTED] http://www.sindominio.net/
GnuPG public key information available at http://oskuro.net/~jordi/


signature.asc
Description: Digital signature


Bug#269080: are you awake?

2005-01-19 Thread Zack Cerza
Ping...? This bug is 4 months old and has a patch. An acknowledgement
would be nice, maybe.



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



Bug#236198: Norton AntiVirus detected a virus in a message you sent. The inf ected attachment was deleted.

2005-01-19 Thread NAV for Microsoft Exchange-EMAIL
Recipient of the infected attachment:  Lineadipartenza\Posta in arrivo
Subject of the message:  Re: Test
One or more attachments were deleted
  Attachment msg.zip was Deleted for the following reasons:
Virus [EMAIL PROTECTED] was found.
Virus [EMAIL PROTECTED] was found in details.txt
.pif.
application/ms-tnef

<    1   2   3   4   5   >