Bug#471442: Turning Metacity's compositor on or off

2008-10-02 Thread Loïc Minier
On Thu, Oct 02, 2008, Thomas Thurman wrote:
> Since version 2.25.1, Metacity's compositor can be turned on and off 
> from the command line.  --composite turns it on, and --no-composite 
> turns it off.  --composite can be abbreviated to -c.  Could you add this 
> to the README?
> 
> Actually, perhaps I should put it in some upstream file which then gets 
> included in Debian.

 You can also set the gconf key which is what I'd recommend

-- 
Loïc Minier



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



Bug#443747: Progress

2008-10-02 Thread Kurt B. Kaiser
 reopen 443745
 reopen 443747
 thanks

I have a wxRemind package running, but it needs man pages.  yeagtd will follow.

-- 
KBK



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



Bug#483702: #483702: Please get the VirtualBox manual and wiki docs to be free-licensed then ship them

2008-10-02 Thread Jason Spiro
retitle 483702 Please make the VirtualBox manual and wiki docs be
free-licensed then ship them
forwarded 483702 http://www.virtualbox.org/ticket/2364
kthxbye

Today I filed two upstream bugs:

*  http://www.virtualbox.org/ticket/2364  (Please release your
documentation under the GPL)
*  http://www.virtualbox.org/ticket/2365  (Please release your wiki
contents under a GPL and GFDL dual license)

Hopefully soon upstream will listen.



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



Bug#500925: libsane-extras: Please upgrade epkowa

2008-10-02 Thread Alexander Verbovetsky
Package: libsane-extras
Version: 1.0.19.10
Severity: wishlist

The current version of epkowa supports a lot of new scanners,
e.g., GT-2, GT-3, Perfection V500 PHOTO.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing-proposed-updates
  APT policy: (900, 'testing-proposed-updates'), (900, 'testing'), (600, 
'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libsane-extras depends on:
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libltdl3 1.5.26-4A system independent dlopen wrappe
ii  libusb-0.1-4 2:0.1.12-12 userspace USB programming library
ii  udev 0.125-6 /dev/ and hotplug management daemo

libsane-extras recommends no packages.

libsane-extras suggests no packages.

-- no debconf information



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



Bug#500890: [Nsspampgsql-devel] Bug#500890: libnss-pgsql2: Wrong SQL querys in nss-pgsql.conf

2008-10-02 Thread Torsten Irländer
On Thu, Oct 02, 2008 at 04:54:35PM +0100, Stephen Gran wrote:
> severity 500890 normal
> thanks
> This one time, at band camp, Torsten Irländer said:
> > Dear maintainers, 
> > 
> > I run into some problems with the nss-pgsql.conf file comming in this 
> > package
> > which does not work for me out of the box. 
> > 
> > After creating all needed tables and putting the exampe config in place 
> > doing
> > a "getnet group" results in the following errors in the postgres log:
> 
> > --- nss-pgsql.conf.org  2007-11-13 02:03:16.0 +0100
> > +++ nss-pgsql.conf  2008-10-02 13:14:57.0 +0200
> >  
> > @@ -11,9 +11,9 @@
> >  # All users
> >  allusers= SELECT username, passwd, gecos, homedir, shell, uid, gid 
> > FROM passwd_table
> >  # Must return group_name, group_passwd, group_gid
> > -getgrnam= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM usergroups WHERE usergroups.gid = group_table.gid) AS members FROM 
> > group_table WHERE groupname = $1
> > +getgrnam= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM passwd_table WHERE passwd_table.gid = group_table.gid) AS members FROM 
> > group_table WHERE groupname = $1
> >  # Must return group_name, group_passwd, group_gid
> > -getgrgid= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM usergroups WHERE usergroups.gid = group_table.gid) AS members FROM 
> > group_table WHERE gid = $1
> > +getgrgid= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM passwd_table WHERE passwd_table.gid = group_table.gid) AS members FROM 
> > group_table WHERE gid = $1
> >  # Must return gid.  %s MUST appear first for username match in where clause
> > -groups_dyn  = SELECT ug.gid FROM passwd_table JOIN usergroups USING 
> > (uid) where username = $1 and ug.gid <> $2
> > -allgroups   = SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM usergroups WHERE usergroups.gid = group_table.gid) AS members FROM 
> > group_table
> > +groups_dyn  = SELECT ug.gid FROM passwd_table JOIN usergroups ug USING 
> > (uid) where username = $1 and ug.gid <> $2
> > +allgroups   = SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM passwd_table pt JOIN usergroups ug ON ug.uid = pt.uid WHERE ug.gid = 
> > gt.gid ) AS members FROM group_table gt
> 
> You appear to be missing a table.  You need a total of three tables,
> minimally, for this to work.  You need one table with user information 
> (the passwd_table), one table with group information (the group_table),
> and a map table (the usergroups table) to map user to group membership.

No, i'm not missing a table here. The three tables you mentioned are created
correct by the default db-script loctaed in the example folder. The shadow
table is created too, but this isn't needed for the minimal setup.

I think the failure is in the sql query:

> > -getgrnam= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM usergroups WHERE usergroups.gid = group_table.gid) AS members FROM 
> > group_table WHERE groupname = $1
> > +getgrnam= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM passwd_table WHERE passwd_table.gid = group_table.gid) AS members FROM 
> > group_table WHERE groupname = $1

The 'usergroups' table does not have any field named 'username' e.g as this is
the mapping table between users und groups. The second part of the patch deals
with a syntax error and again the error from above:

> >  # Must return gid.  %s MUST appear first for username match in where clause
> > -groups_dyn  = SELECT ug.gid FROM passwd_table JOIN usergroups USING 
> > (uid) where username = $1 and ug.gid <> $2
> > -allgroups   = SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM usergroups WHERE usergroups.gid = group_table.gid) AS members FROM 
> > group_table
> > +groups_dyn  = SELECT ug.gid FROM passwd_table JOIN usergroups ug USING 
> > (uid) where username = $1 and ug.gid <> $2
> > +allgroups   = SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > FROM passwd_table pt JOIN usergroups ug ON ug.uid = pt.uid WHERE ug.gid = 
> > gt.gid ) AS members FROM group_table gt

Here a field ug.gid is referenced which has not been declared in the statement.

> The queries are correct for that.  If the default sql does not create
> the 3 tables, that's a problem that should be addressed.

Well, the queries does not work for me, and because the tables were created
correct IMHO the problems seems to be the query.

Regards, 

Torsten



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



Bug#466350: clusterssh: cssh is not good for looking hostname in .ssh/config

2008-10-02 Thread tony mancill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Vincent,

When you have time, could you see if the most recent upload of clusterssh
3.22-2 addresses the issue you're having?

Thank you,
Tony
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkjk+F0ACgkQpdwBkPlyvgOBOgCffX9Av2FQi2w0aUwsdT0oe6ON
6YgAn0SyOSQJs5M5Im9kOXRcRrDqQPhK
=tELd
-END PGP SIGNATURE-



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



Bug#483702: #483702: Please get the VirtualBox manual and wiki docs to be free-licensed then ship them

2008-10-02 Thread Jason Spiro
retitle 483702 Please ship VirtualBox manual along with package
kthxbye

(I am retitling again since I seem to have trouble setting titles
longer than 60 characters or so long.)



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



Bug#494058: epiphany-browser: Download window is broken

2008-10-02 Thread Josselin Mouette
Le jeudi 02 octobre 2008 à 17:15 +0100, Sam Morris a écrit :
> I can reproduce the hanging problem fairly easily.
> 
>  1. Open Page Info window
>  2. In a new tab, go to about:config
>  3. Try to modify a string value
>  4. Try to close the about:config tab

To me, this looks like #393837, which is triggered whenever you open a
chrome window with parameters.

If this issue is related to #393837, that would explain a lot, and
unfortunately would not ease its fixing...

Cheers,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Bug#500925: libsane-extras: Please upgrade epkowa

2008-10-02 Thread Julien BLACHE
Alexander Verbovetsky <[EMAIL PROTECTED]> wrote:

Hi,

> The current version of epkowa supports a lot of new scanners,
> e.g., GT-2, GT-3, Perfection V500 PHOTO.

Due to compatibility issues with the binary plugins, the new version
actually makes it impossible to work with some scanners.

This is an inacceptable regression that I'm not going to introduce.

And, for the record, I intend to drop epkowa from libsane-extras
post-Lenny, or at least I'll officially stop supporting its use with
the non-free plugins.

JB.

-- 
 Julien BLACHE - Debian & GNU/Linux Developer - <[EMAIL PROTECTED]> 
 
 Public key available on  - 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#331638: bugs fixed in 0.12 ELinks-debian GIT

2008-10-02 Thread Y Giridhar Appaji Nag
tags 331638 + pending
tags 486917 + pending
tags 139984 + pending
tags 428549 - wontfix
tags 428549 + pending
thanks

-- 
Y Giridhar Appaji Nag | http://appaji.net/


signature.asc
Description: Digital signature


Bug#494058: epiphany-browser: Download window is broken

2008-10-02 Thread Sam Morris
On Thu, 2008-10-02 at 18:36 +0200, Josselin Mouette wrote:
> Le jeudi 02 octobre 2008 à 17:15 +0100, Sam Morris a écrit :
> > I can reproduce the hanging problem fairly easily.
> > 
> >  1. Open Page Info window
> >  2. In a new tab, go to about:config
> >  3. Try to modify a string value
> >  4. Try to close the about:config tab
> 
> To me, this looks like #393837, which is triggered whenever you open a
> chrome window with parameters.
> 
> If this issue is related to #393837, that would explain a lot, and
> unfortunately would not ease its fixing...

The backtrace is similar to the one on
 ... but maybe not
similar enough now that I look closely.

-- 
Sam Morris <[EMAIL PROTECTED]>



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



Bug#500926: python-ctypes: Depend or Recommend binutils

2008-10-02 Thread Free Ekanayaka
Package: python-ctypes
Version: 1.0.2-2
Severity: important

Hi,

if you install python-ctypes on a minimal debootstrap system and run
the code:

import ctypes
import ctypes.util
ctypes.util.find_library('c')

you will get an empty string from the find_library function, while the
expected value should be 'libc.so.6'.

To make it work you have to install the binutils package, which I'd
consider a dependency of python-ctypes.

I'm setting priority "important" because this bug makes some part of
python-ctypes unusable. It would be nice to fix this in Lenny as well.

Thanks,

Free Ekanayaka



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



Bug#500552: Module ehci_hcd disables IRQ, drops USB connections!

2008-10-02 Thread Andreas Modinos
I tried the irqpoll option and it helps, sort of: I will still get the error 
'disabling IRQ3', but the disk remains accessible after and does not power off. 
This does not fix the problem though, as any program or process will still 
crash or report read errors when the IRQ gets disabled.

I also tried the 2.6.24 kernel like suggested but ended up with similar 
results. Below is my dmesg output when running fsck.ext3:

sd 0:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 1c 00 00 00
sd 0:0:0:0: [sda] Assuming drive cache: write through
sd 0:0:0:0: [sda] 488397168 512-byte hardware sectors (250059 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 1c 00 00 00
sd 0:0:0:0: [sda] Assuming drive cache: write through
 sda: sda1
sd 0:0:0:0: [sda] Attached SCSI disk
kjournald starting.  Commit interval 5 seconds
EXT3 FS on sda1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
irq 3: nobody cared (try booting with the "irqpoll" option)
Pid: 3, comm: ksoftirqd/0 Not tainted 2.6.24-etchnhalf.1-486 #1
 [] __report_bad_irq+0x36/0x75
 [] tick_handle_periodic+0xf/0x5d
 [] note_interrupt+0x1bb/0x1f7
 [] handle_IRQ_event+0x23/0x51
 [] handle_level_irq+0x63/0x85
 [] do_IRQ+0x53/0x6b
 [] common_interrupt+0x23/0x30
 [] scsi_request_fn+0x24d/0x313 [scsi_mod]
 [] blk_remove_plug+0x56/0x62
 [] blk_run_queue+0x3f/0x6a
 [] scsi_next_command+0x25/0x2f [scsi_mod]
 [] scsi_end_request+0xac/0xb6 [scsi_mod]
 [] scsi_io_completion+0x14f/0x301 [scsi_mod]
 [] __switch_to+0x7c/0xed
 [] blk_done_softirq+0x5c/0x67
 [] __do_softirq+0x3e/0x87
 [] ksoftirqd+0x0/0x8d
 [] do_softirq+0x35/0x43
 [] ksoftirqd+0x34/0x8d
 [] kthread+0x36/0x5d
 [] kthread+0x0/0x5d
 [] kernel_thread_helper+0x7/0x10
 ===
handlers:
[] (usb_hcd_irq+0x0/0x4d [usbcore])
[] (yenta_interrupt+0x0/0xb3 [yenta_socket])
[] (usb_hcd_irq+0x0/0x4d [usbcore])
[] (usb_hcd_irq+0x0/0x4d [usbcore])
[] (usb_hcd_irq+0x0/0x4d [usbcore])
Disabling IRQ #3
usb 4-1: reset high speed USB device using ehci_hcd and address 2
usb 4-1: device not accepting address 2, error -110
usb 4-1: reset high speed USB device using ehci_hcd and address 2
usb 4-1: device not accepting address 2, error -110
usb 4-1: reset high speed USB device using ehci_hcd and address 2
usb 4-1: device not accepting address 2, error -110
usb 4-1: reset high speed USB device using ehci_hcd and address 2
usb 4-1: device not accepting address 2, error -110
usb 4-1: USB disconnect, address 2
sd 0:0:0:0: Device offlined - not ready after error recovery
sd 0:0:0:0: [sda] Result: hostbyte=DID_NO_CONNECT 
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 52167697
Buffer I/O error on device sda1, logical block 26083817
Buffer I/O error on device sda1, logical block 26083818
Buffer I/O error on device sda1, logical block 26083819
Buffer I/O error on device sda1, logical block 26083820
Buffer I/O error on device sda1, logical block 26083821
Buffer I/O error on device sda1, logical block 26083822
Buffer I/O error on device sda1, logical block 26083823
Buffer I/O error on device sda1, logical block 26083824
Buffer I/O error on device sda1, logical block 26083825
Buffer I/O error on device sda1, logical block 26083826
sd 0:0:0:0: [sda] Result: hostbyte=DID_NO_CONNECT 
driverbyte=DRIVER_OK,SUGGEST_OK
end_request: I/O error, dev sda, sector 52167937
usb 4-1: new high speed USB device using ehci_hcd and address 3
usb 4-1: device not accepting address 3, error -110
usb 4-1: new high speed USB device using ehci_hcd and address 4
usb 4-1: device not accepting address 4, error -110
usb 4-1: new high speed USB device using ehci_hcd and address 5
usb 4-1: device not accepting address 5, error -110
usb 4-1: new high speed USB device using ehci_hcd and address 6
usb 4-1: device not accepting address 6, error -110

As an additional note, booting the 2.6.24 kernel I get a message about updating 
the driver 'sd'. Modules uhci_hcd, ehci_hcd and yenta_socket share an IRQ but 
then again IRQ4 goes completely unused so to my layman brain this does not seem 
like an IRQ conflict. Bad hardware perhaps, or maybe the overhead required by 
USB2 is too much for my system (a rather old comp). I'm in over my head, let me 
know if I can supply you with any additional info.
- Andreas



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



Bug#500850: openafs-modules-source: General Protection Fault under 2.6.25 and 2.6.26

2008-10-02 Thread Andrew J Perrin

That fixed the problem - I enabled the following in the kernel .config:

CONFIG_KEYS=y
CONFIG_KEYS_DEBUG_PROC_KEYS=y
CONFIG_SECURITY=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_CAPABILITIES=y

and the crash no longer happens.

May I suggest that this be considered a bug such that openafs should check 
at compile time that the current kernel has this capability?


Thanks.



--
Andrew J Perrin - [EMAIL PROTECTED] - http://perrin.socsci.unc.edu
Associate Professor of Sociology; Book Review Editor, _Social Forces_
University of North Carolina - CB#3210, Chapel Hill, NC 27599-3210 USA


On Wed, 1 Oct 2008, Russ Allbery wrote:


Andrew J Perrin <[EMAIL PROTECTED]> writes:


I'm assuming this is "Enable Security Keys", correct? I'll try it soon.


I think so, yes.

--
Russ Allbery ([EMAIL PROTECTED])   





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



Bug#494524: retitle 494524 app-install-data: Use abiword instead of the non-existing abiword-gnome package

2008-10-02 Thread Julian Andres Klode
retitle 494524 app-install-data: Use abiword instead of the
non-existing abiword-gnome package
thanks

-- 
Julian Andres Klode  - Free Software Developer
   Debian Maintainer - Contributing Member of SPI
   Ubuntu Member - Fellow of FSFE

Website: http://jak-linux.org/   XMPP: [EMAIL PROTECTED]
Debian:  http://www.debian.org/  SPI:  http://www.spi-inc.org/
Ubuntu:  http://www.ubuntu.com/  FSFE: http://www.fsfe.org/



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



Bug#498920: fix for lenny

2008-10-02 Thread Andreas Jellinghaus
in both cases maybe take the latest from openct svn?
I think we fixed more entries recently.

Regards, Andreas



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



Bug#500927: gtkdiskfree: hangs, using 100% CPU, when sorting by file system

2008-10-02 Thread l
Package: gtkdiskfree
Version: 1.9.3-11
Severity: important

Trying to sort these file system
(http://forthfreak.net/snap/1222967045039975569.png) by filesystem name, the
program becomes unresponsive, using all CPU. screen updates to the
gtkdiskfree windows cease. Trying to close by "close window" button gives
"gtkdiskfree is not responding". strace is here:
http://forthfreak.net/snap/1222967045039975569.txt
Some of the listed file systems are the result of mount --bind. The machine
is a SSD-only box. Kernel is vanilla, from kernel.org

(


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.27-rc5 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages gtkdiskfree depends on:
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libpango1.0-0 1.20.5-2   Layout and rendering of internatio

gtkdiskfree recommends no packages.

gtkdiskfree suggests no packages.

-- no debconf information



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



Bug#500928: sysv-rc-conf: service name are not displayed in full

2008-10-02 Thread Jari Aalto
Package: sysv-rc-conf
Version: 0.99-6
Severity: normal


$ COLUMNS=140 sysv-rc-conf --lisst

...
ssh  1:off  2:on3:on4:on5:on
stop-bootlog 2:on   3:on4:on5:on
stop-readahe 2:on   3:on4:on5:on
sysklogd 0:off  1:off   2:on3:on4:on5:on6:off
system-tools 0:off  1:off   2:on3:on4:on5:on6:off
tor  0:off  1:off   2:on3:on4:on5:on6:off
uml-utilitie 0:off  1:off   2:on3:on4:on5:on6:off
...

SUGGESTION

Please obey the COLUMNS variable and allow the left hand service names
field to grow as needed to display full service names. It would seem
that the program now has hard coded line length limit 80.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages sysv-rc-conf depends on:
ii  libcurses-ui-perl0.9605-1curses-based OO user interface fra
ii  sysv-rc  2.86.ds1-61 System-V-like runlevel change mech

sysv-rc-conf recommends no packages.

sysv-rc-conf suggests no packages.

-- no debconf information



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



Bug#500731: Default search scope for LDAPServer URLs is 'base'

2008-10-02 Thread John Morrissey
[apologies if you're receiving duplicates of this, Christoph and Frankie;
 I always forget who the BTS copies by default]

This thread on the ProFTPD forums is related:

http://forums.proftpd.org/smf/index.php?topic=3528.0

In a nutshell, RFC 2255 specifies that the default search scope for an LDAP
URL is 'base' (when no scope is explicitly specified). I understand that
'subtree' is generally what people want in this case, but I'm inclined to
follow what's outlined in the RFC. Arguments to the contrary are welcome,
but please keep in mind that I like to adhere to standards as much as
possible. :-)

FWIW, I updated the docs for LDAPServer at the time to mention this:

Note that the default search scope for LDAP URLs is 'base' if a
scope is not explicitly specified in the URL. This behavior differs
from the LDAPSearchScope directive, which defaults to 'subtree'.

john
-- 
John Morrissey  _o/\   __o
[EMAIL PROTECTED]_-< \_  /  \     <  \,
www.horde.net/__(_)/_(_)/\___(_) /_(_)__



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



Bug#500910: CVE-2008-4194 denial of service

2008-10-02 Thread Christian Perrier
Quoting Nico Golde ([EMAIL PROTECTED]):
> Package: pdnsd
> Severity: grave
> Tags: security
> 
> Hi,
> the following CVE (Common Vulnerabilities & Exposures) id was
> published for pdnsd.

If someone fixes this, fixing #490047 would be much appreciated as
well by the l10n folks (and this is certainly not invasive).




signature.asc
Description: Digital signature


Bug#491762: Announce of an upcoming upload for the dhcp3 package

2008-10-02 Thread Christian Perrier
Dear maintainer of dhcp3 and Debian translators,

Some days ago, I sent a notice to the maintainer of the dhcp3 Debian
package, mentioning the status of at least one old po-debconf translation 
update in the BTS.

The package maintainer and I agreed for a translation update round. At
the end of this period, I will send him|her a full patch so that 
an l10n upload can happen.
The full planned schedule is available at the end of this mail.

The package is currently translated to: 
cs de es eu fi fr gl it ja ko nl pt pt_BR ru sk sv ta tr vi

Among these, the following translations are incomplete: pt_BR

If you did any of the, currently incomplete, translations you will get
ANOTHER mail with the translation to update.

Other translators also have the opportunity to create new translations
for this package. Once completed, please send them as a bug report
against the dhcp3 package so I can incorporate them in the build.

The deadline for receiving updates and new translations is Wednesday, October 
08, 2008. If you
are not in time you can always send your translation to the BTS.

The POT file is attached to this mail.

Schedule:

 Thursday, September 25, 2008   : send the first intent to NMU notice to
 the package maintainer.
 Thursday, October 02, 2008   : send this notice
 Wednesday, October 08, 2008   : (midnight) deadline for receiving 
translation updates
 Thursday, October 09, 2008   : Send a summary to the maintainer. 
Maintainer uploads
 when possible.

Thanks for your efforts and time.

-- 


-- 


# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <[EMAIL PROTECTED]>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
"POT-Creation-Date: 2007-05-30 21:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n"
"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: string
#. Description
#: ../dhcp3-relay.templates:2001
msgid "Servers the DHCP relay should forward requests to:"
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-relay.templates:2001
msgid ""
"Please enter the hostname or IP address of at least one DHCP server to which "
"DHCP and BOOTP requests should be relayed."
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-relay.templates:2001
msgid ""
"You can specify multiple server names or IP addresses (in a space-separated "
"list)."
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-relay.templates:3001
msgid "Interfaces the DHCP relay should listen on:"
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-relay.templates:3001
msgid ""
"Please specify which network interface(s) the DHCP relay should attempt to "
"configure. Multiple interface names should be entered as a space-separated "
"list."
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-relay.templates:3001
msgid ""
"Leave this field blank to allow for automatic detection and configuration of "
"network interfaces by the DHCP relay, in which case only broadcast "
"interfaces will be used (if possible)."
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-relay.templates:4001
msgid "Additional options for the DHCP relay daemon:"
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-relay.templates:4001
msgid "Please specify any additional options for the DHCP relay daemon."
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-relay.templates:4001
msgid "For example: '-m replace' or '-a -D'."
msgstr ""

#. Type: note
#. Description
#: ../dhcp3-server.templates:2001
msgid "Manual configuration required after installation"
msgstr ""

#. Type: note
#. Description
#: ../dhcp3-server.templates:2001
msgid ""
"After the DHCP server is installed, you will need to manually configure it "
"by editing the file /etc/dhcp3/dhcpd.conf. Please note that the dhcpd.conf "
"supplied is just a sample, and must be adapted to the network environment."
msgstr ""

#. Type: note
#. Description
#: ../dhcp3-server.templates:2001
msgid "Please configure the DHCP server as soon as the installation finishes."
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-server.templates:3001
msgid "Network interfaces on which the DHCP server should listen:"
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-server.templates:3001
msgid ""
"Please specify on which network interface(s) the DHCP server should listen "
"for DHCP requests. Multiple interface names should be entered as a space-"
"separated list."
msgstr ""

#. Type: string
#. Description
#: ../dhcp3-server.templates:3001
msgid ""
"The interfaces will be automatically detected if this field is left blank."
msgstr ""

#. Type: note
#. Description
#: ../dhcp3-server.templates:4001
msgid "Non-authoritative version of DHCP

Bug#469248: Announce of the upcoming NMU for the apt-listchanges package

2008-10-02 Thread Christian Perrier
Dear maintainer of apt-listchanges and Debian translators,

Some days ago, I sent a notice to the maintainer of the apt-listchanges Debian
package, mentioning the status of at least one old po-debconf translation 
update in the BTS.

I announced the intent to build and possibly upload a non-maintainer upload
for this package in order to fix this long-time pending localization
bug as well as all other pending translations.

The package maintainer agreed for the NMU or did not respond in two
weeks, so I will proceed with the NMU.

The full planned schedule is available at the end of this mail.

The package is currently translated to: 
ca cs da de es eu fi fr gl it ja ko nb nl pl pt pt_BR ru sv vi zh_CN zh_TW

Among these, the following translations are incomplete: ca da ko pl pt_BR zh_CN 
zh_TW

If you did any of the, currently incomplete, translations you will get
ANOTHER mail with the translation to update.

Other translators also have the opportunity to create new translations
for this package. Once completed, please send them as a bug report
against the apt-listchanges package so I can incorporate them in the build.

The deadline for receiving updates and new translations is Wednesday, October 
08, 2008. If you
are not in time you can always send your translation to the BTS.

The POT file is attached to this mail.

If the maintainer objects to this process I will immediately abort my NMU
and send him/her all updates I receive.

Otherwise the following will happen (or already has):

 Wednesday, October 01, 2008   : send the first intent to NMU notice to
 the package maintainer.
 Thursday, October 02, 2008   : send this notice
 Wednesday, October 08, 2008   : (midnight) deadline for receiving 
translation updates
 Thursday, October 09, 2008   : build the package and upload it to 
DELAYED/2-day
 send the NMU patch to the BTS
 Saturday, October 11, 2008   : NMU uploaded to incoming

Thanks for your efforts and time.

-- 


-- 


# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <[EMAIL PROTECTED]>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
"POT-Creation-Date: 2007-12-24 16:37+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n"
"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: select
#. Choices
#: ../templates:2001
msgid "pager"
msgstr ""

#. Type: select
#. Choices
#: ../templates:2001
msgid "browser"
msgstr ""

#. Type: select
#. Choices
#: ../templates:2001
msgid "xterm-pager"
msgstr ""

#. Type: select
#. Choices
#: ../templates:2001
msgid "xterm-browser"
msgstr ""

#. Type: select
#. Choices
#: ../templates:2001
msgid "gtk"
msgstr ""

#. Type: select
#. Choices
#: ../templates:2001
msgid "text"
msgstr ""

#. Type: select
#. Choices
#: ../templates:2001
msgid "mail"
msgstr ""

#. Type: select
#. Choices
#: ../templates:2001
msgid "none"
msgstr ""

#. Type: select
#. Description
#: ../templates:2002
msgid "Method to be used to display changes:"
msgstr ""

#. Type: select
#. Description
#: ../templates:2002
msgid ""
"Changes in packages can be displayed in various ways by apt-listchanges:"
msgstr ""

#. Type: select
#. Description
#: ../templates:2002
msgid ""
" pager: display changes one page at a time;\n"
" browser  : display HTML-formatted changes using a web browser;\n"
" xterm-pager  : like pager, but in an xterm in the background;\n"
" xterm-browser: like browser, but in an xterm in the background;\n"
" gtk  : display changes in a GTK window;\n"
" text : print changes to the terminal (without pausing);\n"
" mail : only send changes via e-mail;\n"
" none : do not run automatically from APT."
msgstr ""

#. Type: select
#. Description
#: ../templates:2002
msgid ""
"This setting can be overridden at execution time. By default, all the "
"options except for 'none' will also send copies by mail."
msgstr ""

#. Type: string
#. Description
#: ../templates:3001
msgid "E-mail address(es) which will receive changes:"
msgstr ""

#. Type: string
#. Description
#: ../templates:3001
msgid ""
"Optionally, apt-listchanges can e-mail a copy of displayed changes to a "
"specified address."
msgstr ""

#. Type: string
#. Description
#: ../templates:3001
msgid ""
"Multiple addresses may be specified, delimited by commas. Leaving this field "
"empty disables mail notifications."
msgstr ""

#. Type: boolean
#. Description
#: ../templates:4001
msgid "Prompt for confirmation after displaying changes?"
msgstr ""

#. Type: boolean
#. Description
#: ../templates:4001
msgid ""
"After displaying the list of changes, apt-listchanges can pause with a "
"confirmation prompt. This is useful when 

Bug#491367: Updated and revised Italian translation

2008-10-02 Thread Christian Perrier
Quoting vince ([EMAIL PROTECTED]):
> Hello
> 
> I enclose the updated and revised Italian translation.


The header lines are still missing final "\n"'s...

Attached is the really fixed version...




it.po
Description: application/gettext


signature.asc
Description: Digital signature


Bug#491764: Announce of an upcoming upload for the fdutils package

2008-10-02 Thread Christian Perrier
Dear maintainer of fdutils and Debian translators,

Some days ago, I sent a notice to the maintainer of the fdutils Debian
package, mentioning the status of at least one old po-debconf translation 
update in the BTS.

The package maintainer and I agreed for a translation update round. At
the end of this period, I will send him|her a full patch so that 
an l10n upload can happen.
The full planned schedule is available at the end of this mail.

The package is currently translated to: 
ca cs de es eu fi fr gl it ja nl pt ru sv vi

Among these, the following translations are incomplete: nl

If you did any of the, currently incomplete, translations you will get
ANOTHER mail with the translation to update.

Other translators also have the opportunity to create new translations
for this package. Once completed, please send them as a bug report
against the fdutils package so I can incorporate them in the build.

The deadline for receiving updates and new translations is Wednesday, October 
08, 2008. If you
are not in time you can always send your translation to the BTS.

The POT file is attached to this mail.

Schedule:

 Sunday, September 28, 2008   : send the first intent to NMU notice to
 the package maintainer.
 Thursday, October 02, 2008   : send this notice
 Wednesday, October 08, 2008   : (midnight) deadline for receiving 
translation updates
 Thursday, October 09, 2008   : Send a summary to the maintainer. 
Maintainer uploads
 when possible.

Thanks for your efforts and time.

-- 


-- 


# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <[EMAIL PROTECTED]>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
"POT-Creation-Date: 2008-01-09 21:08+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n"
"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: boolean
#. Description
#: ../templates:2001
msgid "Should fdmount be installed 'setuid root'?"
msgstr ""

#. Type: boolean
#. Description
#: ../templates:2001
msgid ""
"In order to enable ordinary users to mount a floppy disk, the fdmount "
"program can be installed with the set-user-ID bit set, so that it will run "
"with the permissions of the superuser."
msgstr ""

#. Type: boolean
#. Description
#: ../templates:2001
msgid ""
"Such a setting may have security implications in the case of vulnerabilities "
"in fdmount's code."
msgstr ""


signature.asc
Description: Digital signature


Bug#500929: ikiwiki: [INTL:fr] French program translation update

2008-10-02 Thread Christian Perrier
Package: ikiwiki
Version: N/A
Severity: wishlist
Tags: patch l10n

(this is a standard message, not customized for your package)

Please find attached the french translation of this package's
programs, proofread by the debian-l10n-french mailing list
contributors.

This file should be put as "fr.po" in the appropriate po/
directory. If this package is not a native Debian package, please
don't forget to forward this translation to the upstream maintainer.

Depending on the version of the build tools or the build process used
in the software, you may have to update the LINGUAS variable in the
configure scripts in case the french translation is a *new*
translation for this software/package.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
# ikiwiki, French program tranlation.
# Copyright (C) 2007 Free Soft Software Foundation, Inc
# This file is distributed under the same license as the ikiwiki package.
#
# Jean-Luc Coulon (f5ibh) <[EMAIL PROTECTED]>, 2007.
# Christian Perrier <[EMAIL PROTECTED]>, 2008.
# Cyril Brulebois <[EMAIL PROTECTED]>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-08-28 13:05-0400\n"
"PO-Revision-Date: 2008-09-23 10:00+0100\n"
"Last-Translator: Julien Patriarca <[EMAIL PROTECTED]>\n"
"Language-Team: French <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"

#: ../IkiWiki/CGI.pm:139
msgid "You need to log in first."
msgstr "Vous devez d'abord vous identifier."

#: ../IkiWiki/CGI.pm:171
msgid "login failed, perhaps you need to turn on cookies?"
msgstr "Échec de l'identification, vous devriez peut-être autoriser les cookies."

#: ../IkiWiki/CGI.pm:189
#: ../IkiWiki/CGI.pm:538
msgid "Your login session has expired."
msgstr "Session d'authentification expirée."

#: ../IkiWiki/CGI.pm:210
msgid "Login"
msgstr "S’identifier"

#: ../IkiWiki/CGI.pm:211
msgid "Preferences"
msgstr "Préférences"

#: ../IkiWiki/CGI.pm:212
msgid "Admin"
msgstr "Administrateur"

#: ../IkiWiki/CGI.pm:279
msgid "Preferences saved."
msgstr "Les préférences ont été enregistrées."

#: ../IkiWiki/CGI.pm:338
#, perl-format
msgid "%s is not an editable page"
msgstr "%s n'est pas une page éditable"

#: ../IkiWiki/CGI.pm:449
#: ../IkiWiki/Plugin/brokenlinks.pm:33
#: ../IkiWiki/Plugin/inline.pm:310
#: ../IkiWiki/Plugin/opendiscussion.pm:26
#: ../IkiWiki/Plugin/orphans.pm:37
#: ../IkiWiki/Render.pm:78
#: ../IkiWiki/Render.pm:148
msgid "discussion"
msgstr "Discussion"

#: ../IkiWiki/CGI.pm:505
#, perl-format
msgid "creating %s"
msgstr "Création de %s"

#: ../IkiWiki/CGI.pm:523
#: ../IkiWiki/CGI.pm:551
#: ../IkiWiki/CGI.pm:561
#: ../IkiWiki/CGI.pm:596
#: ../IkiWiki/CGI.pm:641
#, perl-format
msgid "editing %s"
msgstr "Édition de %s"

#: ../IkiWiki/CGI.pm:666
msgid "You are banned."
msgstr "Vous avez été banni."

#: ../IkiWiki/CGI.pm:783
#: ../IkiWiki/CGI.pm:784
#: ../IkiWiki.pm:1117
msgid "Error"
msgstr "Erreur"

#: ../IkiWiki/Plugin/aggregate.pm:80
msgid "Aggregation triggered via web."
msgstr "Agrégation déclenchée via Internet"

#: ../IkiWiki/Plugin/aggregate.pm:89
msgid "Nothing to do right now, all feeds are up-to-date!"
msgstr "Rien à faire pour le moment, tous les flux sont à jour!"

#: ../IkiWiki/Plugin/aggregate.pm:216
#, perl-format
msgid "missing %s parameter"
msgstr "Paramètre %s manquant"

#: ../IkiWiki/Plugin/aggregate.pm:250
msgid "new feed"
msgstr "Nouveau flux"

#: ../IkiWiki/Plugin/aggregate.pm:264
msgid "posts"
msgstr "Articles"

#: ../IkiWiki/Plugin/aggregate.pm:266
msgid "new"
msgstr "Nouveau"

#: ../IkiWiki/Plugin/aggregate.pm:429
#, perl-format
msgid "expiring %s (%s days old)"
msgstr "Fin de validité de %s (date de %s jours)"

#: ../IkiWiki/Plugin/aggregate.pm:436
#, perl-format
msgid "expiring %s"
msgstr "Fin de validité de %s"

#: ../IkiWiki/Plugin/aggregate.pm:463
#, perl-format
msgid "processed ok at %s"
msgstr "A été correctement traité à %s"

#: ../IkiWiki/Plugin/aggregate.pm:467
#, perl-format
msgid "checking feed %s ..."
msgstr "Vérification du flux %s..."

#: ../IkiWiki/Plugin/aggregate.pm:472
#, perl-format
msgid "could not find feed at %s"
msgstr "Impossible de trouver de flux à %s"

#: ../IkiWiki/Plugin/aggregate.pm:487
msgid "feed not found"
msgstr "Flux introuvable "

#: ../IkiWiki/Plugin/aggregate.pm:498
#, perl-format
msgid "(invalid UTF-8 stripped from feed)"
msgstr "(chaîne UTF-8 non valable supprimée du flux)"

#: ../IkiWiki/Plugin/aggregate.pm:504
#, perl-format
msgid "(feed entities escaped)"
msgstr "(échappement des entités de flux)"

#: ../IkiWiki/Plugin/aggregate.pm:510
msgid "feed crashed XML::Feed!"
msgstr "Plantage du flux XML::Feed !"

#: ../IkiWiki/Plugin/aggregate.pm:584
#, perl-

Bug#500910: CVE-2008-4194 denial of service

2008-10-02 Thread Pierre Habouzit
On Thu, Oct 02, 2008 at 04:25:54PM +, Christian Perrier wrote:
> Quoting Nico Golde ([EMAIL PROTECTED]):
> > Package: pdnsd
> > Severity: grave
> > Tags: security
> > 
> > Hi,
> > the following CVE (Common Vulnerabilities & Exposures) id was
> > published for pdnsd.
> 
> If someone fixes this, fixing #490047 would be much appreciated as
> well by the l10n folks (and this is certainly not invasive).

This becomes an habit :P
But Yes I'll fix those at the same time.


-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgppHzE91P52q.pgp
Description: PGP signature


Bug#500925: libsane-extras: Please upgrade epkowa

2008-10-02 Thread Alexander Verbovetsky
On Thu, 2 Oct 2008, Julien BLACHE wrote:

> > The current version of epkowa supports a lot of new scanners,
> > e.g., GT-2, GT-3, Perfection V500 PHOTO.
>
> Due to compatibility issues with the binary plugins, the new version
> actually makes it impossible to work with some scanners.
>
> This is an inacceptable regression that I'm not going to introduce.
>
> And, for the record, I intend to drop epkowa from libsane-extras
> post-Lenny, or at least I'll officially stop supporting its use with
> the non-free plugins.

In my case, I'm interested in GT-2, which doesn't need a
non-free plugin.  Situation is strange: the scanner is perfectly
supported, still I can't use it in debian.  The package
iscan_2.12.0-4_i386.deb from avasys.jp can't be used since it
depends on libsane and conflicts with libsane-extra. But libsane
depends on libsane-extra.



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



Bug#103681: Welcome to the DCSproxy forum v2!

2008-10-02 Thread Akper Gapishko
The\ biggest\ lists\ of:
Hign anon proxies
Anon\ proxies\
Socks5
_Socks 4
_IRC and SSL proxies +
Tutorials and proxy tools

http://DCSPROXYLIST30.TK


Bug#469248: Announce of the upcoming NMU for the apt-listchanges package

2008-10-02 Thread Pierre Habouzit
On Thu, Oct 02, 2008 at 04:03:37PM +, Christian Perrier wrote:
> Dear maintainer of apt-listchanges and Debian translators,
> 
> Some days ago, I sent a notice to the maintainer of the apt-listchanges Debian
> package, mentioning the status of at least one old po-debconf translation 
> update in the BTS.
> 
> I announced the intent to build and possibly upload a non-maintainer upload
> for this package in order to fix this long-time pending localization
> bug as well as all other pending translations.
> 
> The package maintainer agreed for the NMU or did not respond in two
> weeks, so I will proceed with the NMU.

actually no I answered asap and told I would fix it myself :)

This sounds like an abuse of mail templates my dear :)


-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgp3LFSslGpid.pgp
Description: PGP signature


Bug#103681: ! Dear DCS forum member!

2008-10-02 Thread Rafolina

Exclusive lists with:
_Hign anon proxies
Anon proxies,
Socks 5
Socks4
_IRC and SSL proxies +
-Tutorials and proxy tools

http://DCSPROXYLIST27.TK




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



Bug#289954: emacs terminal causes package installs using ucf/debconf to hang

2008-10-02 Thread Sven Joachim
reassign 289954 debconf
forcemerge 497357 289954
thanks

[ A bit belated reply, I hope it is still useful. ]

On 2005-12-26 23:16 +0100, Ross Boylan wrote:

> I'm still seeing this problem in a current testing system.  In the
> latest incarnation, xserver-xorg was prompting for responses
> (specifically for the device to use for the mouse) and, no matter what
> I typed, it just asked again.  When I just hit enter, it proceeded.
>
> The X stuff has shifted over to using debconf.  Again, I was running
> inside an emacs shell in a virtual terminal (i.e., not inside an X
> session).
>
> This is a significant problem, as it interferes with installation.
>
> I'm not entirely convinced this is really emacs's "fault;" it seems
> the problem might be with debconf.  But the only thing I know for sure
> is the symptoms.

This is indeed a debconf problem, see #497357.

> P.S. I don't usually run apt-get inside an emacs shells.  However, I
> don't seem to see this problem consistently even when I do.

The suggested solution mentioned in #497357 is to install the
libterm-readline-gnu-perl package.  However, "dpkg-reconfigure dash"
did not work for me; it printed the default value, but changing it had
no effect, YMMV.

Cheers,
   Sven



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



Bug#477972: Status of ITP?

2008-10-02 Thread Martin Stigge
Hi,

what's the status of the packaging efforts? I saw that upstream
maintains a debian/ in the svn repository. Looks like it's directed at
Ubuntu, but maybe forces should be joined..

Regards,
Martin


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


Bug#499931: gdc-4.2: diff for NMU version 0.25-4.2.4-3.1

2008-10-02 Thread Thomas Viehmann
tags 499931 + patch pending
thanks

Dear maintainer,

I've prepared an NMU for gdc-4.2 (versioned as 0.25-4.2.4-3.1) will
upload provided that it builds correctly. Note that the maintainer
should look into pruning unneeded information from debian/copyright.

Kind regards

T.

diff -u gdc-4.2-0.25-4.2.4/debian/copyright gdc-4.2-0.25-4.2.4/debian/copyright
--- gdc-4.2-0.25-4.2.4/debian/copyright
+++ gdc-4.2-0.25-4.2.4/debian/copyright
@@ -1,3 +1,141 @@
+These is the D compiler frontend for GCC. See below for information
+how to obtain the source. The upstream version is at
+  http://dgcc.sourceforge.net/
+
+D Frontend to gcc and parts of the runtime libary (phobos):
+
+   Copyright (C) 2004, 2007 David Friedman
+   
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+ 
+   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.
+ 
+Digital Mars has kindly licensed the contents of the dmd and dmd2
+directories under the GNU General Public License version 1 or above or
+the artistic license, this extends the license grant indicated in the
+source tarball.
+Below is his mail to this end (irrelevant parts edited at [...]).
+
+  Subject: Re: D compiler front end license
+  From: Walter Bright [...]
+  Date: Wed, 01 Oct 2008 17:55:07 -0700
+  Message-ID: <[EMAIL PROTECTED]>
+  To: Thomas Viehmann <[EMAIL PROTECTED]>
+
+  I agree to it. You have my permission to forward it there. Thanks, -Walter 
Bright
+
+  Thomas Viehmann wrote:
+  [...]
+  > How about the one below?
+  [...]
+  > If you could mail the two bugs at [EMAIL PROTECTED],
+  > [EMAIL PROTECTED] with it (to create a public record), or permit me
+  > to forward it there, it would be most helpful.
+  [...]
+  > 
+  >
+  > Digital Mars licenses
+  > The D Programming Language
+  > Compiler Front End Source
+  > Copyright (c) 1999-2008, by Digital Mars
+  >
+  > as free software; you can redistribute it and/or modify
+  > it under the terms of the GNU General Public License as published by
+  > the Free Software Foundation; either version 1 of the License, or
+  > (at your option) any later version, or alternatively under the Artistic
+  > License (distributed with the source as artistic.txt).
+  >
+  > 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
+  > license you choose for details.
+  >
+  > This grant of license also applies to previously published versions of
+  > the D Programming Language Compiler Front End Source.
+
+
+On Debian GNU/Linux the GNU General Public License systems can be
+found in `/usr/share/common-licenses/GPL'.
+
+
+The D runtime library (phobos) is copyrighted and licensed as follows:
+
+  Copyright (C) 2004-2005 by Digital Mars, www.digitalmars.com
+ Written by Walter Bright
+  Copyright (C) 2003-2004,2005 by Matthew Wilson and Synesis Software
+ Written by Matthew Wilson
+  Copyright (C) 2004-2005 by Christopher E. Miller
+
+  This software is provided 'as-is', without any express or implied
+  warranty. In no event will the authors be held liable for any damages
+  arising from the use of this software.
+
+  Permission is granted to anyone to use this software for any purpose,
+  including commercial applications, and to alter it and redistribute it
+  freely, in both source and binary form, subject to the following
+  restrictions:
+
+  o  The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+  o  Altered source versions must be plainly marked as such, and must not
+ be misrepresented as being the original software.
+  o  This notice may not be removed or altered from any source
+ distribution.
+
+d/phobos/std/stream.d:
+  Copyright (c) 2001-2005
+  Pavel "EvilOne" Minayev
+   with buffering and endian support added by Ben Hinkle
+   with buffered readLine performance improvements by Dave Fladebo
+   with opApply inspired by (and mostly copied from) Regan Heath
+   with bug fixes and MemoryStream/SliceStream enhancements by Derick Eddington
+ 
+  Permission to use, copy, modify, distribute and sell this software
+  and its documentation for any purpose is hereby granted without fee,
+  provided that the above copyright notice appear in all copies and
+  that both that copyright notice and this permission notice appear
+  in supporting documentation.  Author 

Bug#500703: urxvtcd: increments $SHLVL for daemon process

2008-10-02 Thread Decklin Foster
martin f krafft writes:

> Anyway, I am not sure at this moment whether my patch is actually
> the right thing to do, so give me a few days to make sure it is
> actually doing the right thing. I am now starting to think that
> a terminal emulator should always start shells with SHLVL=0...

Well, upstream doesn't seem to like it:
http://lists.schmorp.de/pipermail/rxvt-unicode/2008q4/000721.html

I realize I should have pointed out (to you) that urxvtc does send its
environment to the new terminal that urxvtd creates. That may or may not
be useful. (OK not really, what we would like here is for urxvtcd to
Just Work out-of-the-box...)

Ultimately I think using a login shell for this (as mentioned in the
thread) would be the way to go. Since not all users want every terminal
to be a login shell (I don't), I'd have to leave the default as off,
and make it a FAQ... and then we'd have to ensure that bash and zsh
correctly set SHLVL to some known value for login shells (which seems
like what one wants here) -- it seems to me that they should anyway.
You want to count the number of shells from the "login" shell, right?

(OTOH, if Debian's /etc/bashrc fixes this up and other distributions
don't... meh.)

-- 
things change.
[EMAIL PROTECTED]



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



Bug#400066: NMU diff

2008-10-02 Thread Thiemo Seufer
After talking with Jose I NMU'ed lcdproc to allow building on
almost all architectures again. Appended is the full diff.


Thiemo


lcdproc (0.5.2-1.2) unstable; urgency=low

  * Non-maintainer upload.
  * Support all architectures except s390.
  * Add support for kfreebsd, thanks Cyril Brulebois. (Closes: #416261)


Index: lcdproc-0.5.2/debian/control
===
--- lcdproc-0.5.2.orig/debian/control   2008-10-02 08:59:44.0 +0200
+++ lcdproc-0.5.2/debian/control2008-10-02 09:02:06.0 +0200
@@ -8,7 +8,7 @@
 Standards-Version: 3.7.3
 
 Package: lcdproc
-Architecture: i386 amd64 armel
+Architecture: alpha amd64 arm armel hppa hurd-i386 i386 ia64 kfreebsd-amd64 
kfreebsd-i386 m68k mips mipsel powerpc sparc
 Depends: lsb-base, ${shlibs:Depends}, debconf | debconf-2.0
 Description: LCD display driver daemon and clients
  This is a client/server suite including drivers for all kinds of
Index: lcdproc-0.5.2/clients/lcdproc/machine_Linux.c
===
--- lcdproc-0.5.2.orig/clients/lcdproc/machine_Linux.c  2007-04-14 
16:38:15.0 +0200
+++ lcdproc-0.5.2/clients/lcdproc/machine_Linux.c   2008-10-02 
09:03:55.0 +0200
@@ -1,5 +1,5 @@
 
-#ifdef linux
+#if defined(linux) || defined(__GLIBC__)
 
 #include 
 #include 



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



Bug#499662: Proposed changes for #499662

2008-10-02 Thread Josselin Mouette
tag 499662 + patch
thanks

Le jeudi 02 octobre 2008 à 16:38 +0100, Neil Williams a écrit :
> > This would really be the very same version of the library, with more
> > symbols. Nothing can break more than when you simply upgrade the library
> > to a new version.
> 
> Except that the diversion can also be undone and the symbols removed -
> akin to downgrading the library to the old version. Anyway, I'm not
> sure we need the diversion.

Anyway, the diversion approach doesn’t work. As documented in
dpkg-divert(1), ldconfig throws away any diversions made to shared
libraries.

So here is a patch for the simple approach, consisting of adding a hard
dependency on libdirectfb. Note that it does not modify the size of the
default desktop install, since it is already pulled by the following
dependency chain: g-d-e -> ekiga -> libpt -> SDL -> directfb.

I have checked these changes work at least for the runtime, I just have
to check whether changes are required to the GTK+ build. (I don’t think
there are, but you never know.)

Cheers,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.
reverted:
--- cairo-1.6.4/debian/libcairo-directfb2.install
+++ cairo-1.6.4.orig/debian/libcairo-directfb2.install
@@ -1 +0,0 @@
-debian/dist-directfb/usr/lib/libcairo-directfb/lib/libcairo.so.* 
/usr/lib/libcairo-directfb/lib
diff -u cairo-1.6.4/debian/libcairo2.symbols 
cairo-1.6.4/debian/libcairo2.symbols
--- cairo-1.6.4/debian/libcairo2.symbols
+++ cairo-1.6.4/debian/libcairo2.symbols
@@ -17,6 +17,7 @@
  [EMAIL PROTECTED] 1.2.4
  [EMAIL PROTECTED] 1.2.4
  [EMAIL PROTECTED] 1.2.4
+ [EMAIL PROTECTED] 1.6.4-6.1~
  [EMAIL PROTECTED] 1.2.4
  [EMAIL PROTECTED] 1.2.4
  [EMAIL PROTECTED] 1.2.4
@@ -240,10 +241,10 @@
  [EMAIL PROTECTED] 1.2.4
  [EMAIL PROTECTED] 1.2.4
  [EMAIL PROTECTED] 1.2.4
- [EMAIL PROTECTED] 1.6.4-5
- [EMAIL PROTECTED] 1.6.4-5
- [EMAIL PROTECTED] 1.6.4-5
- [EMAIL PROTECTED] 1.6.4-5
+ [EMAIL PROTECTED] 1.6.4-5~
+ [EMAIL PROTECTED] 1.6.4-5~
+ [EMAIL PROTECTED] 1.6.4-5~
+ [EMAIL PROTECTED] 1.6.4-5~
  [EMAIL PROTECTED] 1.2.4
  [EMAIL PROTECTED] 1.2.4
  [EMAIL PROTECTED] 1.2.4
diff -u cairo-1.6.4/debian/control cairo-1.6.4/debian/control
--- cairo-1.6.4/debian/control
+++ cairo-1.6.4/debian/control
@@ -4,17 +4,17 @@
 Maintainer: Dave Beckett <[EMAIL PROTECTED]>
 Uploaders: Sebastian Dröge <[EMAIL PROTECTED]>
 Build-Depends: debhelper (>= 5.0.22), dpkg-dev (>= 1.14.13), autotools-dev, 
pkg-config (>= 0.19), libfontconfig1-dev, libfreetype6-dev (>= 2.1.10), 
libxrender-dev (>= 0.6.0), libx11-dev, libpng12-dev, libdirectfb-dev (>= 
0.9.25), libsm-dev, xutils-dev, libxt-dev, dpatch, libpixman-1-dev (>= 0.10.0), 
libxcb1-dev (>= 0.9.92), libxcb-render0-dev (>= 0.9.92), libxcb-render-util0-dev
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Homepage: http://cairographics.org/
 
 Package: libcairo2-dev
 Provides: libcairo-dev
-Conflicts: libcairo-dev, libcairo0.5.1-dev, libcairo0.6.0-dev, 
libcairo0.9.0-dev
+Conflicts: libcairo-dev, libcairo0.5.1-dev, libcairo0.6.0-dev, 
libcairo0.9.0-dev, libcairo-directfb2-dev (<< 1.6.4-6.1)
 Replaces: libcairo0.5.1-dev, libcairo0.6.0-dev, libcairo0.9.0-dev
 Suggests: libcairo2-doc
 Section: libdevel
 Architecture: any
-Depends: libcairo2 (= ${binary:Version}), libfontconfig1-dev, libfreetype6-dev 
(>= 2.1.10), libxrender-dev (>= 0.6.0), libpng12-dev, libsm-dev, 
libpixman-1-dev (>= 0.10.0), libxcb1-dev, libxcb-render0-dev, 
libxcb-render-util0-dev
+Depends: libcairo2 (= ${binary:Version}), libfontconfig1-dev, libfreetype6-dev 
(>= 2.1.10), libxrender-dev (>= 0.6.0), libpng12-dev, libdirectfb-dev (>= 
0.9.25), libsm-dev, libpixman-1-dev (>= 0.10.0), libxcb1-dev, 
libxcb-render0-dev, libxcb-render-util0-dev
 Description: Development files for the Cairo 2D graphics library
  Cairo is a multi-platform library providing anti-aliased
  vector-based rendering for multiple target backends.
@@ -86,25 +86,25 @@
-Depends: ${shlibs:Depends}
+Depends: libcairo2 (= ${binary:Version})
 Provides: libcairo-directfb
 Conflicts: libcairo2-directfb
 Replaces: libcairo2-directfb
-Description: The Cairo 2D vector graphics library DirectFB build
+Description: The Cairo 2D vector graphics library DirectFB build (dummy 
package)
  Cairo is a multi-platform library providing anti-aliased
  vector-based rendering for multiple target backends.
  .
- This is version of cairo with only the DirectFB backend enabled.
- Use libcairo2 for the full backend choice.
+ This is a legacy compatibility package that provides files at locations 
+ that are deprecated now. Anything required to run Cairo+DirectFB 
+ binaries is in the libcairo2 package.
 
 Package: libcairo-directfb2-dev
 Section: libdevel
 Architecture: any
 Conflicts: libcairo2-directfb-dev
 Replaces: libcairo2-directfb-dev
-Depends: libcairo-directfb2 (= ${binary:Version}), libfontconfig1-dev, 
libfreetype6-dev (>= 2.1.10

Bug#372692: confirm

2008-10-02 Thread Xavier Douville
I can confirm what Henrik said :

I use synaptics 0.14.7~git20070706-3 (from testing).

Here is my config :

Section "InputDevice"
Identifier  "Synaptics Touchpad"
Driver  "synaptics"
Option  "SendCoreEvents""true"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "auto-dev"
Option  "HorizScrollDelta"  "0"
Option "Buttons" "7"
Option "ButtonMapping" "1 2 3 4 5"
Option  "VertTwoFingerScroll"   "true"
Option  "HorizTwoFingerScroll"  "true"
Option  "RTCornerButton""0"
Option  "RBCornerButton""0"
EndSection

So I have SHMconfig OFF (nothing can interfere). When I start X with
invoke-rc.d kdm start, all my settings work (I especially hate right and
middle button mapped to right top and right bottom).

But I tried to reload the psmouse module and now my settings no longer
work. It means that when I load psmouse after X is started, the touchpad
stays in its default config (with R*CornerButton mapped).

Xavier Douville



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



Bug#499931: gdc-4.2: diff for NMU version 0.25-4.2.4-3.1

2008-10-02 Thread Arthur Loiret
On Thu, Oct 02, 2008 at 08:14:31PM +0200, Thomas Viehmann wrote:
> tags 499931 + patch pending
> thanks
> 
> Dear maintainer,
> 
> I've prepared an NMU for gdc-4.2 (versioned as 0.25-4.2.4-3.1) will
> upload provided that it builds correctly. Note that the maintainer
> should look into pruning unneeded information from debian/copyright.

Please upload.

Thanks for your work,
Arthur.


signature.asc
Description: Digital signature


Bug#500930: wormux: new upstream release

2008-10-02 Thread Daniel Baumann
Package: wormux
Severity: wishlist

Hi,

please upload 0.8.1 (to experimental).

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#149341: emacs21: show-paren-mode cannot handle a very long line

2008-10-02 Thread Sven Joachim
retitle 149341 emacs21: Please document that `show-paren-mode' is influenced by 
`blink-matching-paren-distance'
severity 149341 wishlist
thanks

[ Please forgive the "slightly" delayed response.  I hope it's still
  useful. ]

On 2002-06-07 21:54 +0200, Oohara Yuuma wrote:

> Package: emacs21
> Version: 21.1-7
> Severity: normal
>
> show-paren-mode cannot handle a very long line.  For example:
>
> perl -e 'print "{"; print "p" x 20; print "}"' > foo.txt
>
> These {} do match, but show-paren-mode says "Mismatched parentheses".

The reason is not the long line, but rather the large number of
characters between the brackets.  For performance reasons, Emacs limits
the search for the matching paren to 25600 characters by default, see
the customizable variable `blink-matching-paren-distance'.

The docstring of show-paren-mode should probably mention that variable,
see also #473917.

Cheers,
   Sven



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



Bug#499662: Proposed changes for #499662

2008-10-02 Thread Dave Beckett
The patch looks OK although I cannot test any directfb stuff, or do
any cairo work today.

One reason the directfb was NOT enabled in the main cairo package
by me is that it is unsupported upstream.  The customer for debian
is really just the installer, so limiting the packages for that
was a goal, and also to make the udeb minimal size.  Any
reported bugs on directfb outside the installer are unlikely to
get any resolution from me or upstream.

So the larger issue is the release-affecting consequences of
this change.  Please can somebody confirm that's it's approved
by release team BEFORE any packaging is done.

Dave



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



Bug#500741: approval for planned upload of ps-watcher 1.06-11

2008-10-02 Thread Jan Wagner
Hi Adeodato 

On Thursday 02 October 2008 16:51, Adeodato Simó wrote:
> * Jan Wagner [Wed, 01 Oct 2008 11:19:06 +0200]:
> > ps-watcher (1.06-11) unstable; urgency=low
> >
> >   * removed use of pidof from restart|force-reload init-script target,
> > since daemon has pidfile support and it never worked anyways
> > (Closes: #500741)
>
> So, is the "ps-watcher does not create a pidfile on its own" statement
> from the bug report false? If so, then yes, please upload.

This is the case for the version in etch, pidfile support was added with 
1.06-9, just the restart target of the init-script did overwrite the pidfile, 
which is fixed with 1.06-11. I just upload the package.

With kind regards, Jan.
-- 
Never write mail to <[EMAIL PROTECTED]>, you have been warned!
-BEGIN GEEK CODE BLOCK-
Version: 3.1
GIT 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--


pgpIoND7macIG.pgp
Description: PGP signature


Bug#500883: dmraid: boot fails after upgrading to 1.0.0.rc14-4

2008-10-02 Thread Giuseppe Iuculano
Hi Peter,


Can you paste the output of dmraid -r please?

Giuseppe.



signature.asc
Description: OpenPGP digital signature


Bug#497978: install built-in Help

2008-10-02 Thread Leo 'costela' Antunes
[EMAIL PROTECTED] wrote:
> I hate/fear all that gnome stuff, and hope transmission just can be
> one process group...

That is up for discussion with upstream.

> $ dlocate gconfd
> libgconf2-4: /usr/lib/libgconf2-4/gconfd-2

Scratch that.
I did some further testing here mimicking your setup (xdm, icewm, xterm,
etc). Please try installing xdg-utils and give it another try.

Cheers

-- 
Leo "costela" Antunes
[insert a witty retort here]



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



Bug#466350: clusterssh: cssh is not good for looking hostname in .ssh/config

2008-10-02 Thread Vincent Danjean
  Hi,

tony mancill wrote:
> Vincent,
> 
> When you have time, could you see if the most recent upload of clusterssh
> 3.22-2 addresses the issue you're having?

It works (ie I connect to all machines). However, I got a warning in the
initial shell (where I type 'cssh ...') AND in each opened terminal...

Adding entries in /etc/hosts is not a solution for me (too many fake hostnames
to add in several computers): I prefer to hack cssh itself :-)

[Sorry to not have answered before your previous mails but I do not subscribe
to the bug I report (and the BTS does not subscribe the submitter automatically 
:-( )
so I did not see them before]

  Regards,
Vincent

> Thank you,
> Tony
-- 
Vincent Danjean Adresse: Laboratoire d'Informatique de Grenoble
Téléphone:  +33 4 76 61 20 11ENSIMAG - antenne de Montbonnot
Fax:+33 4 76 61 20 99ZIRST 51, avenue Jean Kuntzmann
Email: [EMAIL PROTECTED]   38330 Montbonnot Saint Martin



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



Bug#500932: /usr/bin/debchange: [debchange] while renaming upstream directory name, it should also rename "*.orig.tar.*" symlink

2008-10-02 Thread Eugene V. Lyubimkin
Package: devscripts
Version: 2.10.38
Severity: normal
File: /usr/bin/debchange

I had a package with wrong version field in debian/changelog entry.
I used debchange to correct it, and debchange kindly renamed current
directory then:

-8<-
dch warning: your current directory has been renamed to:
../libpqxx-3.0.0~svn1401
->8-

But then package will be build as native package because ".orig.tar.*"
symlink have the previous name, and dpkg-buildpackage failed to find it.

I guess correct behavior is renaming this symlink too.


-- Package-specific info:

--- /etc/devscripts.conf ---

--- ~/.devscripts ---
Not present

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages devscripts depends on:
ii  dpkg-dev  1.14.22Debian package development tools
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  perl  5.10.0-14  Larry Wall's Practical Extraction 

Versions of packages devscripts recommends:
ii  at 3.1.10.2  Delayed job execution and batch pr
ii  bsd-mailx [mailx]  8.1.2-0.20071201cvs-3 A simple mail user agent
ii  curl   7.18.2-7  Get a file from an HTTP, HTTPS or 
ii  dctrl-tools2.13.0Command-line tools to process Debi
ii  debian-keyring 2008.07.22GnuPG (and obsolete PGP) keys of D
ii  debian-maintainers 1.42  GPG keys of Debian maintainers
ii  dupload2.6.6 utility to upload Debian packages
pn  equivs (no description available)
ii  fakeroot   1.9.7 Gives a fake root environment
ii  gnupg  1.4.9-3   GNU privacy guard - a free PGP rep
ii  iceweasel [www-bro 3.0.1-1   lightweight web browser based on M
ii  konqueror [www-bro 4:4.1.0-1 KDE 4's advanced file manager, web
ii  libauthen-sasl-per 2.12-1Authen::SASL - SASL Authentication
ii  libcrypt-ssleay-pe 0.57-1+b1 Support for https protocol in LWP
ii  libparse-debcontro 2.005-2   Easy OO parsing of Debian control-
ii  libsoap-lite-perl  0.710.08-1Client and server side SOAP implem
ii  libterm-size-perl  0.2-4+b1  Perl extension for retrieving term
ii  libtimedate-perl   1.1600-9  Time and date functions for Perl
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  libwww-perl5.813-1   WWW client/server library for Perl
ii  libyaml-syck-perl  1.05-1Fast, lightweight YAML loader and 
ii  lintian2.0.0 Debian package checker
ii  lsb-release3.2-19Linux Standard Base version report
ii  lynx-cur [www-brow 2.8.7dev10-1  Text-mode WWW Browser with NLS sup
ii  man-db 2.5.2-2   on-line manual pager
ii  openssh-client [ss 1:5.1p1-2 secure shell client, an rlogin/rsh
ii  opera [www-browser 9.50-20080422.2   The Opera Web Browser
ii  patch  2.5.9-5   Apply a diff file to an original
ii  patchutils 0.2.31-4  Utilities to work with patches
ii  strace 4.5.17+cvs080723-2A system call tracer
ii  subversion 1.5.1dfsg1-1  Advanced version control system
ii  unzip  5.52-12   De-archiver for .zip files
ii  wdiff  0.5-18Compares two files word by word
ii  wget   1.11.4-2  retrieves files from the web

Versions of packages devscripts suggests:
ii  build-essential   11.4   Informational list of build-essent
pn  cvs-buildpackage   (no description available)
pn  devscripts-el  (no description available)
ii  gnuplot   4.2.3-1A command-line driven interactive 
pn  libfile-desktopentry-perl  (no description available)
pn  libnet-smtp-ssl-perl   (no description available)
pn  mutt   (no description available)
pn  svn-buildpackage   (no description available)

-- no debconf information



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



Bug#470165: cabal:bdeps

2008-10-02 Thread Marco Túlio Gontijo e Silva
tags 470165 moreinfo
thanks

Hello David,

I couldn't understand your patch build-deps.patch .  Where are
cabal:bdeps:* defined?

Greetings.

-- 
marcot
Página: http://marcotmarcot.iaaeee.org/
Blog: http://marcotmarcot.blogspot.com/
Correio: [EMAIL PROTECTED]
XMPP: [EMAIL PROTECTED]
IRC: [EMAIL PROTECTED]
Telefone: 25151920
Celular: 98116720
Endereço:
  Rua Turfa, 639/701
  Prado 30410-370
  Belo Horizonte/MG Brasil





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



Bug#500854: rss-0.91.dtd URL change (old URL is gone)

2008-10-02 Thread Jeremiah C. Foster
> Package: libxml-rss-perl
> Version: 1.33-1
> Tags: patch
> 
>  On this announce
> 
> http://www.rssboard.org/news/181/rss-090-091-moving-rss-advisory-board
> 

I see.
 
>  RSS v0.9 and v0.91 are moveing to RSS advisorry board. DTD url was
> changed at that time and old url is alread gone at Aug 2008 (perhaps..
> currently can not access the old url anymore)
> 
>  libxml-rss-perl-1.33/lib/XML/RSS/Private/Output/V0_91.pm only
> contains old URL and it is invalid. So, RSS v0.91 support is broken
> without DTD url update.

If I understand you correctly, you mean to say that this Document
Type Definition; 

http://search.cpan.org/src/SHLOMIF/XML-RSS-1.35/lib/XML/RSS/Private/Output/V0_91.pm

I will forward this bug to RT to inform upstream about the problem.

Regards,
Jeremiah


> -- 
> ISHIKAWA Mutsumi
>   <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>



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



Bug#500931: flydraw: Fails to load existing jpeg image.

2008-10-02 Thread Robert Thompson
Package: flydraw
Version: 3.60-6
Severity: important

Flydraw either does not build all tools necessary to its functionality or 
misreports its
recommended/dependent packages.

The bug can be provoked by starting a fly script with "existing
some.jpg". It will complain about convert not found, then return a file
not existing bogus error. Additionally, the way it's apparently
launching convert might be a security risk.

blah$ flydraw << EOF
existing image.jpg
sh: convert: command not found
file_not_exist -10



-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.24-etchnhalf.1-686-bigmem
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages flydraw depends on:
ii  libc6  2.3.6.ds1-13etch7 GNU C Library: Shared libraries
ii  libgd2-xpm 2.0.33-5.2etch1   GD Graphics Library version 2

flydraw recommends no packages.

-- no debconf information



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



Bug#291734: Move to wastbin on different partitions silently deletes the file

2008-10-02 Thread Benjamin Mesing
severity 291734 minor
thanks 

My sincere apologies the mistake was on my side. I've tried the same
under another account, and the behaviour is as expected. It seems that
somewhen in the past I must have checked the do not ask again box.
After figuring that out, I was able to reenabled the confirmation-dialog
by modifiying the gconf database settings.

Best regards 

Ben

On Wed, 2008-10-01 at 23:04 +0200, David Paleino wrote:
> fixed 291734 3:2.11.0~svn2319-1
> fixed 291734 3:2.10.8-1
> tags 291734 moreinfo unreproducible
> thanks
> 
> On Wed, 01 Oct 2008 21:53:33 +0200, Benjamin Mesing wrote:
> 
> > severity 291734 grave
> > thanks
> > 
> > Justification for severity: Causes data loss
> 
> Hello,
> 
> > The Move to wastebin operation is supposed to move data to the wastebin.
> > If this is not possible, it should *not* delete the data silently,
> > because people might rely on the data to be available.
> > In fact, I have lost a file today, because I've disabled "confirm
> > delete", relying on gthumb to move deleted images to the wastebin. Today
> > acidently hitting "Del" for a file on an external left me no way to
> > restore it. A sound response to being unable to move to wastebin would
> > be a dialog asking how to proceed ("Delete Image" or "Cancel").
> 
> I can't really reproduce the bug. I tried both with the versions in unstable
> and in experimental branches (see the version numbers above), and none of them
> shows the bug. This is what I did:
> 
> ~$ mount | grep -e " / " -e "/home" 
> /dev/sda1 on / type reiserfs (rw,notail,user_xattr)
> /dev/sda6 on /home type reiserfs (rw,user_xattr)
> ~$ 
> ~$ # the above are two different partitions, right?
> ~$ 
> ~$ pwd
> /home/neo/
> ~$ sudo cp image.jpg /
> ~$ ls /*.jpg
> /image.jpg
> ~$ cd /
> /$ gthumb .
> [..]
> 
> I hit "Delete" and I get:
> 
> "The selected images will be moved to the Trash, are you sure?"
> 
> I click on "Move", it then appears:
> 
> "The images cannot be moved to the Trash. Do you want to delete them
> permanently?"
> 
> with a checkbox "Do not display this message again". I can click "Cancel" or
> "Delete" then. Cancel keeps the image, Delete deletes it.
> I believe this is the desired behaviour in this bug, no?
> 
> Please, try to be more specific on the steps to do to reproduce the bug. I
> don't have any disk space to set up a brand new Debian just to triage this 
> bug.
> 
> Kindly,
> David
> 




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



Bug#499927: gdc-4.1: diff for NMU version 0.25-20080616-4.1.2-23.2

2008-10-02 Thread Thomas Viehmann
tags 499927 + patch pending
thanks

Hi Arthur,

here is the corresponding NMUdiff for gdc-4.1 (versioned as
0.25-20080616-4.1.2-23.2).

Kind regards

T.

diff -u gdc-4.1-0.25-20080616-4.1.2/debian/changelog 
gdc-4.1-0.25-20080616-4.1.2/debian/changelog
--- gdc-4.1-0.25-20080616-4.1.2/debian/changelog
+++ gdc-4.1-0.25-20080616-4.1.2/debian/changelog
@@ -1,3 +1,11 @@
+gdc-4.1 (0.25-20080616-4.1.2-23.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix debian/copyright, include info on license obtained from Digital
+Mars. Thanks to Walter Bright. Closes: #499927
+
+ -- Thomas Viehmann <[EMAIL PROTECTED]>  Thu, 02 Oct 2008 20:50:10 +0200
+
 gdc-4.1 (0.25-20080616-4.1.2-23.1) unstable; urgency=low
 
   * Non-Maintainer Upload
diff -u gdc-4.1-0.25-20080616-4.1.2/debian/copyright 
gdc-4.1-0.25-20080616-4.1.2/debian/copyright
--- gdc-4.1-0.25-20080616-4.1.2/debian/copyright
+++ gdc-4.1-0.25-20080616-4.1.2/debian/copyright
@@ -1,3 +1,141 @@
+These is the D compiler frontend for GCC. See below for information
+how to obtain the source. The upstream version is at
+  http://dgcc.sourceforge.net/
+
+D Frontend to gcc and parts of the runtime libary (phobos):
+
+   Copyright (C) 2004, 2007 David Friedman
+   
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+ 
+   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.
+ 
+Digital Mars has kindly licensed the contents of the dmd and dmd2
+directories under the GNU General Public License version 1 or above or
+the artistic license, this extends the license grant indicated in the
+source tarball.
+Below is his mail to this end (irrelevant parts edited at [...]).
+
+  Subject: Re: D compiler front end license
+  From: Walter Bright [...]
+  Date: Wed, 01 Oct 2008 17:55:07 -0700
+  Message-ID: <[EMAIL PROTECTED]>
+  To: Thomas Viehmann <[EMAIL PROTECTED]>
+
+  I agree to it. You have my permission to forward it there. Thanks, -Walter 
Bright
+
+  Thomas Viehmann wrote:
+  [...]
+  > How about the one below?
+  [...]
+  > If you could mail the two bugs at [EMAIL PROTECTED],
+  > [EMAIL PROTECTED] with it (to create a public record), or permit me
+  > to forward it there, it would be most helpful.
+  [...]
+  > 
+  >
+  > Digital Mars licenses
+  > The D Programming Language
+  > Compiler Front End Source
+  > Copyright (c) 1999-2008, by Digital Mars
+  >
+  > as free software; you can redistribute it and/or modify
+  > it under the terms of the GNU General Public License as published by
+  > the Free Software Foundation; either version 1 of the License, or
+  > (at your option) any later version, or alternatively under the Artistic
+  > License (distributed with the source as artistic.txt).
+  >
+  > 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
+  > license you choose for details.
+  >
+  > This grant of license also applies to previously published versions of
+  > the D Programming Language Compiler Front End Source.
+
+
+On Debian GNU/Linux the GNU General Public License systems can be
+found in `/usr/share/common-licenses/GPL'.
+
+
+The D runtime library (phobos) is copyrighted and licensed as follows:
+
+  Copyright (C) 2004-2005 by Digital Mars, www.digitalmars.com
+ Written by Walter Bright
+  Copyright (C) 2003-2004,2005 by Matthew Wilson and Synesis Software
+ Written by Matthew Wilson
+  Copyright (C) 2004-2005 by Christopher E. Miller
+
+  This software is provided 'as-is', without any express or implied
+  warranty. In no event will the authors be held liable for any damages
+  arising from the use of this software.
+
+  Permission is granted to anyone to use this software for any purpose,
+  including commercial applications, and to alter it and redistribute it
+  freely, in both source and binary form, subject to the following
+  restrictions:
+
+  o  The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+  o  Altered source versions must be plainly marked as such, and must not
+ be misrepresented as being the original software.
+  o  This notice may not be removed or altered from any source
+ distribution.
+
+d/phobos/std/stream.d:
+  Copyright (c) 2001-2005
+  Pavel "EvilOne" Minayev
+   with buffering and endian support added by Ben Hinkle
+   with buffered readLine perfo

Bug#500795: Etch SPARC install fails to sync monitor.

2008-10-02 Thread Don Pellegrino
Thanks for the quick response.  I have tried your ideas with the following 
results:

boot: install fb=false
Allocated 8 Megs of memory at 0x4000 for kernel
Loaded kernel version 2.6.18
Loading initial ramdisk (3881967 bytes at 0x3F80200 phys, 0x40C0 virt)...
-
Remapping the kernel... done.
Booting Linux...
"Input Signal Out of Range" reported by the monitor.

This is as expected.  The fb=false parameter should be the default as per the 
installation manual: "Because of display problems on some systems, framebuffer 
support is disabled by default for SPARC 
(http://www.debian.org/releases/stable/sparc/ch05s02.html.en)."

I then tried to specify the video mode as suggested in 
http://tldp.org/HOWTO/Framebuffer-HOWTO-5.html#ss5.6:

boot: install video=atyfb:mode:1280x1024-60,font:SUN12x22
Allocated 8 Megs of memory at 0x4000 for kernel
Loaded kernel version 2.6.18
Loading initial ramdisk (3881967 bytes at 0x3F80200 phys, 0x40C0 virt)...
-
Remapping the kernel... done.
Booting Linux...
"Input Signal Out of Range" reported by the monitor.

I also tried:

boot: install video=fbcon:mode:1280x1024-60
Allocated 8 Megs of memory at 0x4000 for kernel
Loaded kernel version 2.6.18
Loading initial ramdisk (3881967 bytes at 0x3F80200 phys, 0x40C0 virt)...
-
Remapping the kernel... done.
Booting Linux...
"Input Signal Out of Range" reported by the monitor.

boot: install fb=false video=atyfb:mode:1280x1024-60,font:SUN12x22 vga=0x31B
Allocated 8 Megs of memory at 0x4000 for kernel
Loaded kernel version 2.6.18
Loading initial ramdisk (3881967 bytes at 0x3F80200 phys, 0x40C0 virt)...
-
Remapping the kernel... done.
Booting Linux...
"Input Signal Out of Range" reported by the monitor.

boot: install fb=true video=atyfb:mode:1280x1024-60,font:SUN12x22 vga=775
Allocated 8 Megs of memory at 0x4000 for kernel
Loaded kernel version 2.6.18
Loading initial ramdisk (3881967 bytes at 0x3F80200 phys, 0x40C0 virt)...
-
Remapping the kernel... done.
Booting Linux...
"Input Signal Out of Range" reported by the monitor.

boot: install fb=false vga=normal
Allocated 8 Megs of memory at 0x4000 for kernel
Loaded kernel version 2.6.18
Loading initial ramdisk (3881967 bytes at 0x3F80200 phys, 0x40C0 virt)...
-
Remapping the kernel... done.
Booting Linux...
"Input Signal Out of Range" reported by the monitor.

boot: install fb=true vga=775
Allocated 8 Megs of memory at 0x4000 for kernel
Loaded kernel version 2.6.18
Loading initial ramdisk (3881967 bytes at 0x3F80200 phys, 0x40C0 virt)...
-
Remapping the kernel... done.
Booting Linux...
"Input Signal Out of Range" reported by the monitor.

I also tried booting and hitting CTRL+ALT+- and CTRL+ATL++ a couple of time and 
that didn't do anything either.  The monitor stayed out of sync.

So I seem to be out of ideas.  Let me know if you have any other suggestions.  
Thanks.

-Original Message-
From: Frans Pop [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 02, 2008 5:43 AM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: Bug#500795: Etch SPARC install fails to sync monitor.

The installer does not really do anything. The problem is more likely to 
be in the kernel.

One option you can try is 'fb=false', but that is unlikely to work.

You have a better chance of success by trying to explicitly set the video 
mode for the framebuffer driver your graphics controller uses.
That would be 'video=:', or maybe
'.='.

You'll have to check the kernel's Documentation/fb directory and possibly 
google around a bit for the correct settings.

Cheers,
FJP




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



Bug#500574: [Pkg-alsa-devel] Bug#500574: Further info

2008-10-02 Thread Elimar Riesebieter
* William Roe [081002 00:30 +0200]
> After some further investigation, it seems that the sound only
> disappears when using gnome. Using Fluxbox avoids the problem.
> Starting gnome-settings-daemon destroys sound again. I can't work out
> what exactly gnome is doing to mess it up, but it's definitely the
> culprit.

Gnome uses esound - Enlightened Sound Daemon. What tells
$ dpkg -l | grep -i enlight
?

Elimar

-- 
  Alles was viel bedacht wird ist bedenklich!;-)
 Friedrich Nietzsche



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



Bug#499568: Not just Emacs

2008-10-02 Thread Steve Cotton
Bug #484305 reports the same problem in Vim, X-Chat,
Gnumeric, python-nautilus and gedit.



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



Bug#500883: dmraid: boot fails after upgrading to 1.0.0.rc14-4

2008-10-02 Thread Peter
On Thursday 02 October 2008 20.38.50 Giuseppe Iuculano wrote:
> Hi Peter,
>
>
> Can you paste the output of dmraid -r please?
>
> Giuseppe.

Sure:

# dmraid -r
/dev/sdb: ddf1, ".ddf1_disks", GROUP, ok, 390361088 sectors, data@ 0
/dev/sda: ddf1, ".ddf1_disks", GROUP, ok, 390361088 sectors, data@ 0

Right now I'm wondering why it has the "ddf1" type, as there is also an "asr" 
type available, and I'm sure I do have an Adaptec Hostraid controller:

# dmraid -l
asr : Adaptec HostRAID ASR (0,1,10)
ddf1: SNIA DDF1 (0,1,4,5,linear)
...

I have also compiled udev-129, but it's vol_id utility gives the same result 
(I can't install udev-129 to the whole system, as I'm not that expert).

Peter



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



Bug#499662: Proposed changes for #499662

2008-10-02 Thread Luk Claes
Dave Beckett wrote:
> The patch looks OK although I cannot test any directfb stuff, or do
> any cairo work today.
> 
> One reason the directfb was NOT enabled in the main cairo package
> by me is that it is unsupported upstream.  The customer for debian
> is really just the installer, so limiting the packages for that
> was a goal, and also to make the udeb minimal size.  Any
> reported bugs on directfb outside the installer are unlikely to
> get any resolution from me or upstream.
> 
> So the larger issue is the release-affecting consequences of
> this change.  Please can somebody confirm that's it's approved
> by release team BEFORE any packaging is done.

Cc-ed debian-boot to be sure it does no harm on the installer nor the
installation.

Cheers

Luk



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



Bug#500931: Acknowledgement (flydraw: Fails to load existing jpeg image.)

2008-10-02 Thread Robert Thompson
Additional information. The problem seems to be around line 65 of objects.c in 
the src/Flydraw directory in the wims-3.60.tgz. Line 66 is a system() call.
Guessing from the wims src/configure line 3187, this is ImageMagick's convert, 
so Flydraw should probably have Recommended or Depended on imagemagick.

From: Debian BTS [EMAIL PROTECTED] On Behalf Of Debian Bug Tracking System 
[EMAIL PROTECTED]
Sent: Thursday, October 02, 2008 1:51 PM
To: Robert Thompson
Subject: Bug#500931: Acknowledgement (flydraw: Fails to load existing jpeg 
image.)

Thank you for filing a new Bug report with Debian.

This is an automatically generated reply to let you know your message
has been received.

Your message is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

Your message has been sent to the package maintainer(s):
 Georges Khaznadar <[EMAIL PROTECTED]>

If you wish to submit further information on this problem, please
send it to [EMAIL PROTECTED], as before.

Please do not send mail to [EMAIL PROTECTED] unless you wish
to report a problem with the Bug-tracking system.


--
500931: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=500931
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems





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



Bug#500070: plan for #500070 - darkstat.db is replaced every time darkstat is restarted

2008-10-02 Thread Thomas Viehmann
Hi Rene,

so what is your plan regarding #500070? It is showing up on the NMU
target (>= 7 days old bugs) list by now. Could you upload a fixed
version or comment on when you will?

Kind regards

T.
-- 
Thomas Viehmann, http://thomas.viehmann.net/



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



Bug#500933: developer.php doesn't show my pacakge using my login.

2008-10-02 Thread Kurt Roeckx
Package: qa.debian.org

Hi,

When looking at:
http://qa.debian.org/developer.php?login=kroeckx&comaint=yes

It doesn't show any of my packages, it's all in the list of packages
I sponsor.  Only a few of those are sponsored.

On the other you have:
http://qa.debian.org/[EMAIL PROTECTED]&comaint=yes

Which only list packages I maintain, but doesn't show the sponsored
packages.

Atleast the MIA database seems to know that kroeckx and [EMAIL PROTECTED]
are the same.


Kurt




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



Bug#500935: wesnoth-all, wesnoth: Rename wesnoth packages.

2008-10-02 Thread Alexander van Gessel
Package: wesnoth-all
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

To stop the flood of confused users who have installed 'wesnoth', but
find the campaigns don't work, I propose renaming the packages.

wesnoth-all -> wesnoth
wesnoth -> wesnoth-core

This (or something similar) should make the package names a bit more
intuitive.

- -- System Information:
Debian Release: post-lenny

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

iQIVAwUBSOUce+0or+AHBBofAQLGow//fxQXdLfWpSLHdOeyo3FaEbyqRMlVdB5n
exm3033H1ubGYgUlUfXfYb/tOgxlKiPMw+CJ+4IADbEAiq9Bg/ve5V7hETkXElK4
lMvKWHR10uwslJIhQX+LfO/5B7JLhiBZm6wohTxcd5WJMGElyrh0gDwbl0EkQM2l
HFIeEmbXIvmvxXMJMx08XD5u2E8nzK1rUGTlSumCrgq1kN8T2ggtiL8aWMvzkz5d
IX7cwjez9qvbfOACHXIwkoUeaMIOIDV/nlR4ugL3KUkYmkyXm8q06By1hQ/hiIKI
Xw6FyzJRe4k1VfPIOeZmANyVwT7DP3srhCC1ZPxnTD/HnIfCu6dnj6h8ppEPOmmn
baODUMROmkP8g2JjVpcqlyy8sIjj6yrH+9+o3lSr9jFXBRvDc3UpGd6JEDjZvOOu
lE5saGOnwGUckTP6EuAWrc12ZexxA7RpipPlr+vO00j68qm2IowzWqfRX9XsNlIi
gyxxD7K8Mc/v8mg7vv2jmJvaEo489mlEqx+wcRTYJrYnmVIvOwb9UoMhn3wH8LGD
24+nUD5jiObFSj3mQE2sY+p3ehZWk66Ctz43cQqd71Ro4TUXswwE8UULQmotA/pE
cFtt3Hrr/odvWjL5Qj8lHzSmoNHLfT/84m+0WKxxNi1y3TgV4XWJq/aYPXT6AOhV
/TOJvyn2mfQ=
=WIGl
-END PGP SIGNATURE-



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



Bug#500934: Please add ttk headers

2008-10-02 Thread David Voit
Package: tk8.5-dev

Hi,

The tk8.5-dev package does miss ttk header files just as ttkDecls.h
and ttkTheme.h (maybe not all - just need these two).

I need this to develop custom themes for the new theming api of tk8.5.

Thanks for your work.

David



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



Bug#500936: Amanda-server comes without standard Configuration files

2008-10-02 Thread Gem. Leopoldshöhe
Package: amanda-server
Version: 1:2.5.2p1-4

Lenny

After an installation of amanda-server amanda-common and amanda-client there 
are no standard configuration files except amandahostlist file or something 
like this in /etc. But /etc/amanda/ is completely empty. 

Any reason for this behaviour ?


Mit freundlichen Grüßen
Torben Klassen

Gemeinde Leopoldshöhe
Tel.: 05208-991-281
Tel GSN.: 05208-991-282
Fax: 05208-991-44281
E-Mail: [EMAIL PROTECTED]
http://www.leopoldshoehe.de


Bug#500070: plan for #500070 - darkstat.db is replaced every time darkstat is restarted

2008-10-02 Thread Rene Mayorga
tags 500070 + pending

On Thu, Oct 02, 2008 at 09:02:53PM +0200, Thomas Viehmann wrote:
> Hi Rene,

Hi Thomas
> 
> so what is your plan regarding #500070? It is showing up on the NMU
> target (>= 7 days old bugs) list by now. Could you upload a fixed
> version or comment on when you will?
> 

I'm just waiting my sponsor to upload the fixed version, therefore I'm
tagging this as pending.

Cheers
-- 
Rene Mauricio Mayorga   |  jabber: [EMAIL PROTECTED]
http://rmayorga.org |  
--
08B6 58AB A691 DD56 C30B  8D37 8040 19FA A209 C305


signature.asc
Description: Digital signature


Bug#500751: acpi-support ships file and deletes it in postinst

2008-10-02 Thread Bart Samwel

Hi Paul,

Paul Wise schreef:

acpi-support ships /etc/modprobe.d/thinkpad_acpi.modprobe and deletes it
in postinst when upgrading from versions before 0.109-1 or just
installing from scratch.

I detected this because I occasionally run the cruft program.


Ohhh, this may actually be a problem for lenny, because the version of 
acpi-support in the previous release was before 0.109-1. I'll have to 
check once I get back to my own computer... Thanks for reporting!


Cheers,
Bart



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



Bug#367261: listings-style fails to continue counting correctly

2008-10-02 Thread Joachim Breitner
Hi,

Am Montag, den 15.09.2008, 13:25 +0200 schrieb Hilmar Preusse:
> On 14.05.06 Joachim Breitner ([EMAIL PROTECTED]) wrote:
> 
> Hi Joachim,
> 
> http://bugs.debian.org/367261
> 
> > I try to use the listings style with continued counting, i.e.
> > firstnumber=last. Unfortunately, it is not counting correctly. The
> > minimal file attached shows that is is off by one at the beginning
> > of the next section, in a larger document the offset is even
> > larger, but always the wrong numbers at the beginning of a
> > lstlisting section are too low.
> > 
> Meanwhile we have a new version of listings in TeX Live, i.e. Debian
> unstable. Would you be so kind to check, if the bug still applies?

yes, it is still present in texlive-latex-recommended (= 2007.dfsg.1-4),
as can be checked using the two test cases from
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=367261#23

I assume the bug should be re-assined to texlive-latex-recommended,
right?

Thanks,
Joachim
-- 
Joachim "nomeata" Breitner
Debian Developer
  [EMAIL PROTECTED] | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: [EMAIL PROTECTED] | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#499191: apache2-suexec-custom: Allow execution of programs owned by root

2008-10-02 Thread Alexander Prinsier
Stefan Fritsch wrote:
>> So the actual item for the wishlist is to be able to specify a user
>> (or more than one) that are considered trusted. Suexec will then
>> allow files owned by either the target user, or by a trusted user,
>> to be executed.
> 
> First of all, have you looked at
> 
> suphp
> sbox-dtc
> cgiwrap/php-cgiwrap
> 
> to see if any of them meet your needs? I don't know any of them but 
> maybe one of them already has the feature you need.

Yes, I've looked at them. The problem is that libapache2-mod-fastcgi is
written in mind to be used together with suexec. The calling convention
usually is different for other programs like suphp.

> 
> Second, you could use "chattr +i" to prevent users from changing the 
> wrapper. This is somewhat fragile, though, because backup programs 
> usually will not restore the immutable flag.

I've tried that approach, and it is indeed fragile. Certainly when I
want the cgi script itself to be autogenerated by another script, which
takes into account user preferences etc.

> 
> Apart from that, allowing scripts owned by root to be executed as any 
> user would certainly create (local) security issues. Using a 
> dedicated user might be possible, though.

Why would running a root-owned script as a local user create a security
issue?

> 
> But I intend to keep apache2-suexec-custom as close as possible to the 
> normal suexec and would prefer to not add any more features.

I understand that. The patch is quite trivial though. Are there any
other options besides maintaining my local patch?

It's unfortunate I have to maintain this local patch. I know many people
have the same setup as me, and also have to patch suexec themselves.

Thanks,

Alexander



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



Bug#500938: /dev/cdrom link created, but not /dev/dvd or /dev/cdrw

2008-10-02 Thread Joachim Breitner
Package: udev
Version: 0.125-6
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

since a while (but can’t exactly spot it), I don’t have the /dev/dvd and
/dev/cdrw symlinks any more, although I do have the /dev/cdrom. It used
to work before.

I tried to delete /etc/udev/rules.d/70-persistent-cd.rules and re-boot.
The file gets re-created with what looks good to me:

ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-:00:1f.1-ide-1:0", 
SYMLINK+="cdrom", ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-:00:1f.1-ide-1:0", SYMLINK+="cdrw", 
ENV{GENERATED}="1"
ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-:00:1f.1-ide-1:0", SYMLINK+="dvd", 
ENV{GENERATED}="1"

Also the output of cdrom_id looks fine to me:

$ /lib/udev/cdrom_id /dev/hdc
ID_CDROM=1
ID_CDROM_CD_R=1
ID_CDROM_CD_RW=1
ID_CDROM_DVD=1
ID_CDROM_MRW=1
ID_CDROM_MRW_W=1

so I don’t know where to continue debugging this. Can you help me here?

Greetings and thanks,
Joachim

- -- Package-specific info:
- -- /etc/udev/rules.d/:
/etc/udev/rules.d/:
insgesamt 228
- -rw-r--r-- 1 root root  1547 17. Jul 00:38 024_hpmud.rules
lrwxrwxrwx 1 root root20 24. Aug 22:59 025_libchipcard.rules -> 
../libchipcard.rules
lrwxrwxrwx 1 root root19  3. Jan 2008  025_libgphoto2.rules -> 
../libgphoto2.rules
- -rw-r--r-- 1 root root   115 17. Jul 00:38 45-hplip.rules
- -rw-r--r-- 1 root root  3586  7. Aug 01:48 50-udev.rules
- -rw-r--r-- 1 root root   115 17. Jul 00:38 55-hpmud.rules
- -rw-r--r-- 1 root root  1543  7. Jul 13:04 60-persistent-input.rules
- -rw-r--r-- 1 root root  4554  4. Aug 12:33 60-persistent-storage.rules
- -rw-r--r-- 1 root root  1582 11. Jul 15:40 60-persistent-storage-tape.rules
- -rw-r--r-- 1 root root   523  7. Jul 13:04 60-persistent-v4l.rules
- -rw-r--r-- 1 root root  1083 19. Jul 01:48 65_dmsetup.rules
- -rw-r--r-- 1 root root   607  2. Okt 21:15 70-persistent-cd.rules
- -rw-r--r-- 1 root root   638 20. Feb 2007  70-persistent-net.rules
- -rw-r--r-- 1 root root   452  7. Jul 13:04 75-cd-aliases-generator.rules
- -rw-r--r-- 1 root root  3081 30. Jul 01:07 75-persistent-net-generator.rules
- -rw-r--r-- 1 root root  2282 20. Jul 19:08 80-drivers.rules
lrwxrwxrwx 1 root root15  3. Jan 2008  85-pcmcia.rules -> ../pcmcia.rules
- -rw-r--r-- 1 root root82 17. Aug 20:15 90-hal.rules
- -rw-r--r-- 1 root root  4247 20. Jul 19:08 91-permissions.rules
- -rw-r--r-- 1 root root   593 30. Jul 01:07 95-late.rules
- -rw-r--r-- 1 root root72 24. Apr 2006  cardreader.rules
- -rw-r--r-- 1 root root67 24. Apr 2006  cdrecorder.rules
- -rw-r--r-- 1 root root44 14. Apr 2006  chipcard.rules
- -rw-r--r-- 1 root root   140 29. Apr 2006  maxtor.rules
- -rw-r--r-- 1 root root87 24. Apr 2006  n770.rules
- -rw-r--r-- 1 root root92 30. Apr 2006  panasonic.rules-disabled
- -rw-r--r-- 1 root root   102 24. Apr 2006  pentax.rules
- -rw-r--r-- 1 root root   250 10. Feb 2006  plextor.rules
- -rw-r--r-- 1 root root53  6. Mai 2006  samsung.rules
lrwxrwxrwx 1 root root19  3. Jan 2008  z60_alsa-utils.rules -> 
../alsa-utils.rules
- -rw-r--r-- 1 root root  2079 22. Jul 02:53 z60_gpsd.rules
lrwxrwxrwx 1 root root15  3. Jan 2008  z60_hdparm.rules -> ../hdparm.rules
- -rw-r--r-- 1 root root39 18. Mär 2008  z60_ifplugd.rules
- -rw-r--r-- 1 root root  2656  3. Jan 2008  z60_libpisock9.rules
- -rw-r--r-- 1 root root 14883  1. Mär 2008  z60_libsane-extras.rules
- -rw-r--r-- 1 root root 72908  6. Jun 18:17 z60_libsane.rules
- -rw-r--r-- 1 root root80  6. Jun 15:46 z60_virtualbox-ose.rules
- -rw-r--r-- 1 root root  6661  2. Dez 2007  z60_xserver-xorg-input-wacom.rules

- -- /sys/:
/sys/block/dm-0/dev
/sys/block/dm-1/dev
/sys/block/dm-2/dev
/sys/block/dm-3/dev
/sys/block/dm-4/dev
/sys/block/hda/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hdc/dev
/sys/block/ram0/dev
/sys/block/ram10/dev
/sys/block/ram11/dev
/sys/block/ram12/dev
/sys/block/ram13/dev
/sys/block/ram14/dev
/sys/block/ram15/dev
/sys/block/ram1/dev
/sys/block/ram2/dev
/sys/block/ram3/dev
/sys/block/ram4/dev
/sys/block/ram5/dev
/sys/block/ram6/dev
/sys/block/ram7/dev
/sys/block/ram8/dev
/sys/block/ram9/dev
/sys/class/cardman_4000/cmm0/dev
/sys/class/drm/card0/dev
/sys/class/graphics/fb0/dev
/sys/class/input/input0/event0/dev
/sys/class/input/input1/event1/dev
/sys/class/input/input2/event2/dev
/sys/class/input/input3/event3/dev
/sys/class/input/input4/event4/dev
/sys/class/input/input5/event5/dev
/sys/class/input/input6/event6/dev
/sys/class/input/input7/event7/dev
/sys/class/input/input7/mouse0/dev
/sys/class/input/input8/event8/dev
/sys/class/input/input8/mouse1/dev
/sys/class/input/mice/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/cpu_dma_latency/dev
/sys/class/misc/device-mapper/dev
/sys/class/misc/hpet/dev
/sys/class/misc/network_latency/dev
/sys/class/misc/network_throughput/dev
/sys/class/misc/nvram/dev
/sys/class/misc/psaux/dev
/sys/class/misc/snapshot/dev
/sys/class/misc/tun/dev
/sys/class/misc/watchdog/dev
/sys/class/ppdev/parport0/d

Bug#500933: developer.php doesn't show my pacakge using my login.

2008-10-02 Thread Lucas Nussbaum
On 02/10/08 at 21:03 +0200, Kurt Roeckx wrote:
> Package: qa.debian.org
> 
> Hi,
> 
> When looking at:
> http://qa.debian.org/developer.php?login=kroeckx&comaint=yes
> 
> It doesn't show any of my packages, it's all in the list of packages
> I sponsor.  Only a few of those are sponsored.
> 
> On the other you have:
> http://qa.debian.org/[EMAIL PROTECTED]&comaint=yes
> 
> Which only list packages I maintain, but doesn't show the sponsored
> packages.
> 
> Atleast the MIA database seems to know that kroeckx and [EMAIL PROTECTED]
> are the same.

DDPO doesn't use carnivore to merge identities (unlike MIA).

I personally use
http://qa.debian.org/[EMAIL PROTECTED]&uploader=0x023B3F4F
, which has the advantage of listing both packages I maintain and
packages I sponsor.
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



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



Bug#500182: Additional Information

2008-10-02 Thread Orion

Hi

Thanks for the information Andrew. That was a very informative
response. I appreciate the effort you put in. 

Having a more helpful message from rdiff-backup would be very
useful to others who encounter this problem later. In the meantime,
I'll take option 2 from your list of solutions. I'll also file an
upgrade request on the encfs package. Hopefully this bug should become
redundant pretty soon. 

I'll update this bug with any new information I receive. 

Thanks again.

Orion.



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



Bug#500796: black-box: new upstream version available

2008-10-02 Thread Javier Serrano Polo
> I'm likely to upgrade to 1.4.7.

Done. Bugs are still present.




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



Bug#500939: gdc-4.2-compiled test.d segfaults when it works on gdc-4.1

2008-10-02 Thread Thomas Viehmann
Package: gdc-4.2
Version: 0.25-4.2.4-3
Severity: important

Hi Arthur, D maintainers,

testing gdc-4.2 with the attached test.d (a minimal testcase for a
segfault that also happens with the hello world on the digital mars D
intro page[1]), the result segfaults. This does not happen with gdc-4.1.

$ gdc-4.1 x.d  ; ./a.out
a
0
b
$ gdc-4.2 x.d  ; ./a.out
a
Segmentation fault
$

This is on today's sid on amd64.

Kind regards

T.

1. http://digitalmars.com/d/
-- 
Thomas Viehmann, http://thomas.viehmann.net/
import std.stdio;

struct a
{
  int b;
}

void main(string[] args)
{
writefln("a");

a *t = new a;
writefln("%d",t.b);
writefln("b");
}



Bug#500837: libsane's udev rules not recognised

2008-10-02 Thread Dave Page
On Thursday 02 October 2008 09:40:03 Julien BLACHE wrote:

> > I had to manually restart udev to get it to read the rules file; after
> > that (and unplugging and replugging the scanner) the permissions were
> > correct and everything was fine.

> Actually, udev watches for changes to the rules files (and for
> additions/deletions) and reloads them on the fly.

Perhaps this bug should be reassigned to udev then, because it clearly did not 
do this for me.

> > libsane should do this for you when it is installed so installation is
> > more transparent.

> Triggering a coldplug is not recommended AFAIK.

I'm not sure what you mean by "triggering a coldplug", sorry.

Dave
-- 
Dave Page <[EMAIL PROTECTED]>
Jabber: [EMAIL PROTECTED]



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



Bug#500940: [mlview] segfaults when saving in tree view

2008-10-02 Thread Simon Wenner
Package: mlview
Version: 0.9.0-2.1
Severity: grave

Mlview segfaults when I save a file in the tree view.

1. create a new file with root 'test'
2. go to 'tools'->'new view'->'tree view'
3. save the file
4. segfault



--- System information. ---
Architecture: i386
Kernel: Linux 2.6.26-1-686

Debian Release: lenny/sid
900 testing security.debian.org
900 testing mirror.switch.ch
900 testing debian.netcologne.de
500 stable mirror.switch.ch
500 hardy wine.budgetdedicated.com

--- Package information. ---
Depends (Version) | Installed
=-+-
libart-2.0-2 (>= 2.3.18) | 2.3.20-2
libatk1.0-0 (>= 1.20.0) | 1.22.0-1
libbonobo2-0 (>= 2.15.0) | 2.22.0-1
libbonoboui2-0 (>= 2.15.1) | 2.22.0-1
libc6 (>= 2.7-1) | 2.7-13
libcairo2 (>= 1.4.0) | 1.6.4-6
libcairomm-1.0-1 (>= 1.4.0) | 1.6.0-1
libfontconfig1 (>= 2.4.0) | 2.6.0-1
libfreetype6 (>= 2.3.5) | 2.3.7-2
libgcc1 (>= 1:4.1.1-21) | 1:4.3.1-9
libgconf2-4 (>= 2.13.5) | 2.22.0-1
libglade2-0 (>= 1:2.6.1) | 1:2.6.2-1
libglademm-2.4-1c2a (>= 2.6.0) | 2.6.6-1
libglib2.0-0 (>= 2.16.0) | 2.16.5-1
libglibmm-2.4-1c2a (>= 2.16.0) | 2.16.4-1
libgnome2-0 (>= 2.17.3) | 2.20.1.1-1
libgnomecanvas2-0 (>= 2.11.1) | 2.20.1.1-1
libgnomeprint2.2-0 (>= 2.17.0) | 2.18.4-1
libgnomeui-0 (>= 2.17.1) | 2.20.1.1-1
libgnomevfs2-0 (>= 1:2.17.90) | 1:2.22.0-5
libgtk2.0-0 (>= 2.12.0) | 2.12.11-3
libgtkmm-2.4-1c2a (>= 1:2.12.0) | 1:2.12.7-1
libgtksourceview1.0-0 (>= 1.7.2) | 1.8.5-1
libice6 (>= 1:1.0.0) | 2:1.0.4-1
liborbit2 (>= 1:2.14.10) | 1:2.14.13-0.1
libpango1.0-0 (>= 1.20.1) | 1.20.5-2
libpng12-0 (>= 1.2.13-4) | 1.2.27-1
libpopt0 (>= 1.10) | 1.14-4
libsigc++-2.0-0c2a (>= 2.0.2) | 2.0.18-2
libsm6 | 2:1.0.3-2
libstdc++6 (>= 4.2.1-4) | 4.3.1-9
libvte9 (>= 1:0.16.9) | 1:0.16.14-3
libx11-6 | 2:1.1.5-1
libxft2 (>> 2.1.1) | 2.1.12-3
libxml2 (>= 2.6.27) | 2.6.32.dfsg-4
libxrender1 | 1:0.9.4-2
libxslt1.1 (>= 1.1.18) | 1.1.24-2
zlib1g (>= 1:1.1.4) | 1:1.2.3.3.dfsg-12
gconf2 (>= 2.10.1-2) | 2.22.0-1


GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "i486-linux-gnu"...
(no debugging symbols found)
(gdb) run
Starting program: /usr/bin/mlview 
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 0xb6623700 (LWP 6600)]
mlview-debug: in void mlview::PluginPriv::load() : in file mlview-plugin.cc :  
line 72 : condition (module) failed; raising exception 

mlview-debug: in void 
mlview::PluginManager::load_all_plugins_from_default_plugins_dir() : in file 
mlview-plugin-manager.cc :  line 106 : catched exception: Assertion failed

mlview-debug: in MlViewStatus mlview::SourceView::set_default_language() : in 
file mlview-source-view.cc :  line 539 : mime_type: text/xml
mlview-debug: in MlViewStatus 
mlview::SourceView::set_language_from_mime_type(const mlview::UString&) : in 
file mlview-source-view.cc :  line 515 : language associated to 'text/xml'mime 
type: 0x8c95a10
[New Thread 0xb5c37b90 (LWP 6614)]
[New Thread 0xb5436b90 (LWP 6615)]
[Thread 0xb5436b90 (LWP 6615) exited]
[New Thread 0xb5436b90 (LWP 6616)]
[Thread 0xb5436b90 (LWP 6616) exited]
[Thread 0xb5c37b90 (LWP 6614) exited]
[New Thread 0xb5c37b90 (LWP 6618)]
[New Thread 0xb5436b90 (LWP 6619)]
[Thread 0xb5436b90 (LWP 6619) exited]
[Thread 0xb5c37b90 (LWP 6618) exited]
[New Thread 0xb5c37b90 (LWP 6620)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb6623700 (LWP 6600)]
0xb72e2b45 in IA__gtk_widget_get_parent (widget=0x8d0b518)
at /build/buildd/gtk+2.0-2.12.11/gtk/gtkwidget.c:5551
5551/build/buildd/gtk+2.0-2.12.11/gtk/gtkwidget.c: No such file or 
directory.
in /build/buildd/gtk+2.0-2.12.11/gtk/gtkwidget.c
(gdb) bt
#0  0xb72e2b45 in IA__gtk_widget_get_parent (widget=0x8d0b518)
at /build/buildd/gtk+2.0-2.12.11/gtk/gtkwi

Bug#500939: not so minimal...

2008-10-02 Thread Thomas Viehmann
Well, maybe it'S the writefln:

import std.stdio;

int main()
{

writefln("%d", 1);
return 0;
}

segfaults as well.

Kind regards

T.
-- 
Thomas Viehmann, http://thomas.viehmann.net/



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



Bug#496954: bind9: 496954: more info needed

2008-10-02 Thread Maykel Moya
On jue, 2008-10-02 at 12:23 +0800, Paul Wise wrote:
> On Wed, 2008-10-01 at 16:13 -0400, Maykel Moya wrote:
> 
> > With respect to the data at the point of the crash
> > 
> > ...
> 
> I suspected as much. I don't know enough about the bind code to know if
> it is correct, but I suspect this should fix the crash:
> 
> --- bind9-9.5.0.dfsg.P2.orig/lib/dns/acl.c
> +++ bind9-9.5.0.dfsg.P2/lib/dns/acl.c
> @@ -219,7 +219,7 @@
>   result = isc_radix_search(acl->iptable->radix, &node, &pfx);
>  
>   /* Found a match. */
> - if (result == ISC_R_SUCCESS && node != NULL) {
> + if (result == ISC_R_SUCCESS && node != NULL && 
> node->data[ISC_IS6(family)] != NULL) {
>   if (node->bit == 0)
>   family = AF_INET;
>   match_num = node->node_num[ISC_IS6(family)];
> 
> Upstream should be consulted about the validity of this.

I applied the patch and bind is working now.

Regards,
maykel





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



Bug#500941: rdiff-backup does not function with current unstable version of encfs

2008-10-02 Thread Orion
Package: encfs
Version: 1.4.2-2
Severity: critical
Justification: breaks unrelated software


Hi

The current unstable version of encfs causes rdiff-backup to break when the
remote volume is encfs. The cause appears to be that the latest version of
encfs does not follow the specifications for the getxattr(2) system call.
The problem may be fixed in the upstream 1.5.0 release.

The information for this comes from another bug release, as linked below:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=500182

Thanks

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686-bigmem (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages encfs depends on:
ii  fuse-utils2.7.4-1Filesystem in USErspace (utilities
ii  libboost-serialization1.34.1  1.34.1-11  serialization library for C++
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libfuse2  2.7.4-1Filesystem in USErspace library
ii  libgcc1   1:4.3.2-1  GCC support library
ii  librlog1c2a   1.3.7-1.2  flexible message logging library
ii  libssl0.9.8   0.9.8g-13  SSL shared libraries
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3

encfs recommends no packages.

encfs suggests no packages.

-- no debconf information



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



Bug#500942: python-twisted-core: Permission denied: '/usr/lib/python2.5/site-packages/twisted/plugins/dropin.cache.new'

2008-10-02 Thread Martin Geisler
Package: python-twisted-core
Version: 8.1.0-3
Severity: normal

I get the following traceback when I run trial:

Traceback (most recent call last):
  File "/usr/lib/python2.5/site-packages/twisted/python/usage.py", line 241, in 
parseOptions
self.postOptions()
  File "/usr/lib/python2.5/site-packages/twisted/scripts/trial.py", line 293, 
in postOptions
self['reporter'] = self._loadReporterByName(self['reporter'])
  File "/usr/lib/python2.5/site-packages/twisted/scripts/trial.py", line 279, 
in _loadReporterByName
for p in plugin.getPlugins(itrial.IReporter):
  File "/usr/lib/python2.5/site-packages/twisted/plugin.py", line 200, in 
getPlugins
allDropins = getCache(package)
---  ---
  File "/usr/lib/python2.5/site-packages/twisted/plugin.py", line 179, in 
getCache
dropinPath.setContent(pickle.dumps(dropinDotCache))
  File "/usr/lib/python2.5/site-packages/twisted/python/filepath.py", line 574, 
in setContent
sib.open('w').write(content)
  File "/usr/lib/python2.5/site-packages/twisted/python/filepath.py", line 384, 
in open
return open(self.path, mode+'b')
exceptions.IOError: [Errno 13] Permission denied: 
'/usr/lib/python2.5/site-packages/twisted/plugins/dropin.cache.new'

Luckily, trial continues after the error and tests my software fine.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-twisted-core depends on:
ii  python2.5.2-2An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt
ii  python-twisted-bin8.1.0-3Event-based framework for internet
ii  python-zopeinterface  3.3.1-7The implementation of interface de

Versions of packages python-twisted-core recommends:
ii  python-openssl [python-pyopen 0.7-2  Python wrapper around the OpenSSL 
ii  python-pam0.4.2-12   A Python interface to the PAM libr
pn  python-serial  (no description available)

Versions of packages python-twisted-core suggests:
ii  python-glade2 2.12.1-6   GTK+ bindings: Glade support
ii  python-gtk2   2.12.1-6   Python bindings for the GTK+ widge
ii  python-profiler   2.5.2-1deterministic profiling of any Pyt
ii  python-qt33.17.4-1   Qt3 bindings for Python
ii  python-tk 2.5.2-1Tkinter - Writing Tk applications 
pn  python-wxgtk2.8 | python-wxgt  (no description available)

-- no debconf information

-- 
Martin Geisler

VIFF (Virtual Ideal Functionality Framework) brings easy and efficient
SMPC (Secure Multi-Party Computation) to Python. See: http://viff.dk/.


pgpAhyRYw74S7.pgp
Description: PGP signature


Bug#500781: CVE-2008-4297: privilege escalation

2008-10-02 Thread Vincent Danjean
  Hi,

Steffen Joeris wrote:
> Hi,
> the following CVE (Common Vulnerabilities & Exposures) id was
> published for mercurial.
> 
> CVE-2008-4297[0]:
> | Mercurial before 1.0.2 does not enforce the allowpull permission
> | setting for a pull operation from hgweb, which allows remote attackers
> | to read arbitrary files from a repository via an "hg pull" request.
> 
> I am not sure about the severity of this issue, could you please investigate 
> it?

I saw it when mercurial 1.0.2 have been published. But I did not find any
specific changeset linked to this issue. If anyone (co-maintainer, user, ...)
can point me to the changeset, I can prepare a patch with it. I can also
package the whole 1.0.2 (I was waiting the lenny release to do it: RM
told me they would probably not accept this update without strong reasons [1]).
But, I'm sorry to tell that I will not have enough free time now to
look more closely to this issue and to search into the mercurial development
tree until a few weeks (too much real work for now).

  Regards,
Vincent

[1] http://lists.debian.org/debian-release/2008/08/msg01341.html

-- 
Vincent Danjean   GPG key ID 0x9D025E87 [EMAIL PROTECTED]
GPG key fingerprint: FC95 08A6 854D DB48 4B9A  8A94 0BF7 7867 9D02 5E87
Unofficial pacakges: http://www-id.imag.fr/~danjean/deb.html#package
APT repo:  deb http://perso.debian.org/~vdanjean/debian unstable main




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



Bug#500837: libsane's udev rules not recognised

2008-10-02 Thread Julien BLACHE
Dave Page <[EMAIL PROTECTED]> wrote:

Hi,

>> Actually, udev watches for changes to the rules files (and for
>> additions/deletions) and reloads them on the fly.
>
> Perhaps this bug should be reassigned to udev then, because it clearly did 
> not 
> do this for me.

Reloading the rules does not mean processing/applying them.

>> Triggering a coldplug is not recommended AFAIK.
>
> I'm not sure what you mean by "triggering a coldplug", sorry.

Applying the rules on the system in its current state, outside of an
hotplug event.

The current policy regarding udev is to install the rules without
triggering a coldplug event.

JB.

-- 
 Julien BLACHE - Debian & GNU/Linux Developer - <[EMAIL PROTECTED]> 
 
 Public key available on  - 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#500837: libsane's udev rules not recognised

2008-10-02 Thread Dave Page
On Thursday 02 October 2008 20:52:27 Julien BLACHE wrote:

> >> Triggering a coldplug is not recommended AFAIK.
> >
> > I'm not sure what you mean by "triggering a coldplug", sorry.

> Applying the rules on the system in its current state, outside of an
> hotplug event.
>
> The current policy regarding udev is to install the rules without
> triggering a coldplug event.

That's fair enough. But after installing libsane, and before I restarted udev, 
unplugging the USB scanner and plugging it back in (which should trigger a 
hotplug event?) did not allow me to see the scanner as a non-root user in 
group saned. After I restarted udev, I could.

Dave
-- 
Dave Page <[EMAIL PROTECTED]>
Jabber: [EMAIL PROTECTED]



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



Bug#499740: Can't reproduce the FTBFS of libwx-perl

2008-10-02 Thread Damyan Ivanov
tags 499740 unreproducible
thanks

I can't reproduce the FTBFS in my amd64 sid cowbuilder. Also no FTBFS 
in the i386 sid cowbuilder. Both were non-parallel builds.

Bastian, can you (or anyone else) still reproduce it?


dam

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=bg_BG.UTF-8, LC_CTYPE=bg_BG.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libwx-perl depends on:
ii  libalien-wxwidgets-perl  0.39-1  building, finding and using wxWidg
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.2-1   GCC support library
ii  libstdc++6   4.3.2-1 The GNU Standard C++ Library v3
ii  libwxbase2.8-0   2.8.7.1-1.1 wxBase library (runtime) - non-GUI
ii  libwxgtk2.8-02.8.7.1-1.1 wxWidgets Cross-platform C++ GUI t
ii  perl 5.10.0-15   Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]   5.10.0-15   minimal Perl system

-- 
damJabberID: [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#500943: RM: fuzzyocr3/experimental -- ROM; superseded in unstable

2008-10-02 Thread A Mennucc
Package: ftp.debian.org
Severity: normal

hi,

I uploaded 'fuzzyocr' 3.5.1+svn135-1 in unstable, and then 'fuzzyocr3'
in experimental is useless; please rm

a.


signature.asc
Description: Digital signature


Bug#500944: libmowgli2: short description should not contain 'a' by policy

2008-10-02 Thread Eugene V. Lyubimkin
Package: libmowgli2
Severity: minor




-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#500837: libsane's udev rules not recognised

2008-10-02 Thread Julien BLACHE
Dave Page <[EMAIL PROTECTED]> wrote:

Hi,

> That's fair enough. But after installing libsane, and before I restarted 
> udev, 
> unplugging the USB scanner and plugging it back in (which should trigger a 
> hotplug event?) did not allow me to see the scanner as a non-root user in 
> group saned. After I restarted udev, I could.

The best thing would be to try to reproduce this and confirm it's a
udev issue.

Try commenting out the rule for your scanner, then restart udev, then
uncomment it and plug your scanner. Check the permissions on the
device node.

If it doesn't work, rinse, repeat while running udevadm monitor.


strace()ing udevd and touching a file under /etc/udev/rules.d shows
udev reloading the rules just fine.

JB.

-- 
 Julien BLACHE <[EMAIL PROTECTED]>  |  Debian, because code matters more 
 Debian & GNU/Linux Developer|   
 Public key available on  - 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#499568: Not just Emacs

2008-10-02 Thread Sven Joachim
On 2008-10-02 20:56 +0200, Steve Cotton wrote:

> Bug #484305 reports the same problem in Vim, X-Chat,
> Gnumeric, python-nautilus and gedit.

And there are very likely dozens of other applications affected where
the problem just isn't known yet.  Unfortunately the Python guys don't
seem to be willing to fix their gross design flaw, if I interpret
http://bugs.python.org/issue946373 correctly.

So yeah, we're going to enjoy more CVEs and DSAs like this one. :-/

Sven



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



Bug#500075: more info?

2008-10-02 Thread Thomas Viehmann
Hi Christoph,

it seems that without more info (unless you are able to get some
hardware to reproduce this to someone who wants to debug this, but you
don't seem to live near Bonn, Germany ;) ), we would have difficulties
to fix this bug.

Could you try to build a debug-enabled package and get a backtrace so
outsiders can try to come up with a patch? Instructions are on the
Debian wiki[1], searching the internet, I suspect you do have the
requisite knowledge, but don't hesitate to ask if I can be of assistance.

Kind regards

T.

1. http://wiki.debian.org/HowToGetABacktrace
-- 
Thomas Viehmann, http://thomas.viehmann.net/



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



Bug#500917: rhythmbox: Jamendo download album should use gnome-btdownload if available

2008-10-02 Thread Sven Arvidsson
On Thu, 2008-10-02 at 17:11 +0200, Damien Laniel wrote:
> Currently, when I click "download album" in rhythmbox with Jamendo plugin, it 
> opens the torrent link in epiphany, then I click "open" (and not "save as", 
> which would seem more logical), then it opens the torrent file with 
> gnome-btdownload. It works fine but... Rhythmbox could give the torrent link 
> to gnome-btdownload directly, without passing though Epiphanyso the workflow 
> would be more fluent for the user.
> 
> This could be done this way :
> 
> if gnome-btdownload is installed (check if binary exists):
>open the link with gnome-btdownload
> else:
>open the link with default web browser (as currently)

Hi,

It would probably be better to directly download the .torrent file and
then open it with the users preferred bittorrent app, instead of hard
coding it.

Anyway, it looks like there's a way to download albums directly from
Jamendo now, so the bittorrent solution might go away:
http://bugzilla.gnome.org/show_bug.cgi?id=527994

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#500574: Further info

2008-10-02 Thread William Roe
I have ESD installed, but it isn't running. I always make sure it is
turned off (in Sound Preferences) and try to ensure only alsa is being
used (PulseAudio doesn't work on this machine).
When the problem is evident, I try to find processes that might be
using the sound card like this:
sudo lsof | grep dsp
But nothing appears there.

Thanks



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



Bug#500890: [Nsspampgsql-devel] Bug#500890: libnss-pgsql2: Wrong SQL querys in nss-pgsql.conf

2008-10-02 Thread Stephen Gran
This one time, at band camp, Torsten Irländer said:
> On Thu, Oct 02, 2008 at 04:54:35PM +0100, Stephen Gran wrote:
> > severity 500890 normal
> > thanks
> > This one time, at band camp, Torsten Irländer said:
> > > Dear maintainers, 
> > > 
> > > I run into some problems with the nss-pgsql.conf file comming in this 
> > > package
> > > which does not work for me out of the box. 
> > > 
> > > After creating all needed tables and putting the exampe config in place 
> > > doing
> > > a "getnet group" results in the following errors in the postgres log:
> > 
> > > --- nss-pgsql.conf.org2007-11-13 02:03:16.0 +0100
> > > +++ nss-pgsql.conf2008-10-02 13:14:57.0 +0200
> > >  
> > > @@ -11,9 +11,9 @@
> > >  # All users
> > >  allusers= SELECT username, passwd, gecos, homedir, shell, uid, 
> > > gid FROM passwd_table
> > >  # Must return group_name, group_passwd, group_gid
> > > -getgrnam= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > > FROM usergroups WHERE usergroups.gid = group_table.gid) AS members FROM 
> > > group_table WHERE groupname = $1
> > > +getgrnam= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > > FROM passwd_table WHERE passwd_table.gid = group_table.gid) AS members 
> > > FROM group_table WHERE groupname = $1
> > >  # Must return group_name, group_passwd, group_gid
> > > -getgrgid= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > > FROM usergroups WHERE usergroups.gid = group_table.gid) AS members FROM 
> > > group_table WHERE gid = $1
> > > +getgrgid= SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > > FROM passwd_table WHERE passwd_table.gid = group_table.gid) AS members 
> > > FROM group_table WHERE gid = $1
> > >  # Must return gid.  %s MUST appear first for username match in where 
> > > clause
> > > -groups_dyn  = SELECT ug.gid FROM passwd_table JOIN usergroups USING 
> > > (uid) where username = $1 and ug.gid <> $2
> > > -allgroups   = SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > > FROM usergroups WHERE usergroups.gid = group_table.gid) AS members FROM 
> > > group_table
> > > +groups_dyn  = SELECT ug.gid FROM passwd_table JOIN usergroups ug 
> > > USING (uid) where username = $1 and ug.gid <> $2
> > > +allgroups   = SELECT groupname, passwd, gid, ARRAY(SELECT username 
> > > FROM passwd_table pt JOIN usergroups ug ON ug.uid = pt.uid WHERE ug.gid = 
> > > gt.gid ) AS members FROM group_table gt
> > 
> > You appear to be missing a table.  You need a total of three tables,
> > minimally, for this to work.  You need one table with user information 
> > (the passwd_table), one table with group information (the group_table),
> > and a map table (the usergroups table) to map user to group membership.
> 
> No, i'm not missing a table here. The three tables you mentioned are created
> correct by the default db-script loctaed in the example folder. The shadow
> table is created too, but this isn't needed for the minimal setup.

You have changed a query that does a join between the user table, the
group table, and the map table into one that doesn't include the map
table.  That is not the same query - you are missing the usergroup map
table.

from your follow up, I do see some issues in the queries.  Unfortunately,
your patch severely breaks the semantics of several of the lookups.
I'll take a look at it and see what I come up with.

Cheers,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#500946: apf-server: consumes lots of cpu in busy loop

2008-10-02 Thread José Carlos Benfati
Package: apf-server
Version: 0.8.2-1
Severity: normal
Tags: patch

Consumes lots of cpu while waiting for bytes from the afclient connection.
Strace shows a select, a read of 5 bytes from the afclient socket and then a
loop of read(2) returning EAGAIN.

The following patch to src/network.c tries to fix the problem, but isn't a
perfect solution. With this patch afserver will not react to other sockets
while waiting for one afclient to send all data it needs.

545a546,549
> fd_set rfd;
> FD_ZERO(&rfd);
> FD_SET(fd, &rfd);
> select(fd+1, &rfd, NULL, NULL, NULL);

As far as I could check the source file, the problem happens with the lenny
version also.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.24-1-686
Locale: LANG=pt_BR.ISO8859-1, LC_CTYPE=pt_BR.ISO8859-1 (charmap=ISO-8859-1)

Versions of packages apf-server depends on:
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libssl0.9.80.9.8g-13 SSL shared libraries
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

apf-server recommends no packages.

-- no debconf information



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



Bug#500945: debsums: [INTL:pt] Updated Portuguese translation for debconf messages

2008-10-02 Thread "Traduz" - Portuguese Translation Team
Package: debsums
Version: 2.0.28
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for debsums's debconf messages.
Translator: Carlos Lisboa <[EMAIL PROTECTED]>,
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .


-- 
Best regards,

Miguel Figueiredo
"Traduz" - Portuguese Translation Team
http://www.DebianPT.org


# Portuguese translation of debsums's debconf messages.
# 2005, Rui Branco <[EMAIL PROTECTED]>>
# 2008 Carlos Lisboa <[EMAIL PROTECTED]>
#
msgid ""
msgstr ""
"Project-Id-Version: debsums 2.0.38\n"
"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
"POT-Creation-Date: 2008-09-25 21:05+1200\n"
"PO-Revision-Date: 2008-10-02 20:50+0100\n"
"Last-Translator: Carlos Lisboa <[EMAIL PROTECTED]>\n"
"Language-Team: Portuguese <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: boolean
#. Description
#: ../templates:1001
msgid "Should md5sum files be automatically generated by apt-get?"
msgstr "Deverão os ficheiros md5sum ser gerados automaticamente pelo apt-get?"

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"Not all packages contain md5sum information as is.  However, debsums can be "
"installed so that apt will automatically generate md5sum files of installed "
"packages.  This may be useful for checking system integrity later, though it "
"should not be relied on as a security measure."
msgstr ""
"Nem todos os pacotes contêm informação md5sum.  No entanto, o pacote debsums "
"pode ser instalado para que o apt automaticamente gere ficheiros md5sum dos "
"pacotes instalados.  Isto pode ser útil para verificar mais tarde a "
"integridade do sistema, apesar disso não deve ser confiado como uma medida de "
"segurança."

#. Type: boolean
#. Description
#: ../templates:2001
msgid "Run daily debsums security check?"
msgstr "Correr, diariamente, a verificação de segurança dos debsums?"

#. Type: boolean
#. Description
#: ../templates:2001
msgid ""
"By default, a cronjob will verify every package's checksum information every "
"night to make sure that none of the files have changed since the package was "
"installed."
msgstr ""
"Por omissão, o 'cronjob' irá verificar a informação de checksum de cada "
"pacote todas as noites para se ter a certeza que nenhum dos ficheiros foi "
"alterado desde que o pacote foi instalado."

#. Type: boolean
#. Description
#: ../templates:2001
msgid "This security check takes some time to run but is highly recommended."
msgstr "Esta verificação de segurança deverá levar algum tempo a correr, mas é "
"recomendada."


Bug#492370: German man page translation for Debconf

2008-10-02 Thread Helge Kreutzmann
Hello Christian,
Florian made huge progress, so please add him to the addendum: 
doc/man/po4a/add_de/addendum.man.de:
s/Helge Kreutzmann <[EMAIL PROTECTED]>/Florian Rehnisch
<[EMAIL PROTECTED]> und Helge Kreutzmann <[EMAIL PROTECTED]>/

Then change the header in doc/man/po4a/po/de.po to:
# Translation of debconf manpages to German
# Copyright (C) Helge Kreutzmann <[EMAIL PROTECTED]>, 2008.
# Copyright (C) Florian Rehnisch <[EMAIL PROTECTED]>, 2008.
# This file is distributed under the same license as the debconf
# package.

I also proofread the man page. 
Christian: Please apply the attached patch.
Florian: Please check if all changes are ok with you, if not, please
contact me off-bug so we can work out the open issues.

Looking at debian/changelog I see lots of pending translation work.
Are you going to push it into Lenny?

Greetings

  Helge
-- 
  Dr. Helge Kreutzmann [EMAIL PROTECTED]
   Dipl.-Phys.   http://www.helgefjell.de/debian.php
64bit GNU powered gpg signed mail preferred
   Help keep free software "libre": http://www.ffii.de/
--- de.po.orig	2008-10-02 19:18:43.986806000 +0200
+++ de.po	2008-10-02 22:31:16.998305076 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: debconf\n"
 "Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
 "POT-Creation-Date: 2008-10-01 02:04+0200\n"
-"PO-Revision-Date: 2008-08-03 00:33+0200\n"
+"PO-Revision-Date: 2008-10-02 22:31+0200\n"
 "Last-Translator: Florian 'eix' Rehnisch <[EMAIL PROTECTED]>\n"
 "Language-Team: de <[EMAIL PROTECTED]>\n"
 "MIME-Version: 1.0\n"
@@ -75,7 +75,7 @@
 "overview and documentation for sysadmins, see L (in the debconf-"
 "doc package)."
 msgstr ""
-"Debconf ist ein Konfigurationssystem für Debianpakete. Lesen Sie L (im Paket debconf-doc) für einen Überblick und die Dokumentation von "
 "Debconf für Systemadministratoren."
 
@@ -281,7 +281,6 @@
 
 # type: textblock
 #: ../../Debconf/Client/ConfModule.pm:27
-#, fuzzy
 msgid ""
 "The design is that each command in the protocol is represented by one "
 "function in this module (with the name lower-cased).  Call the function and "
@@ -449,7 +448,7 @@
 "unpraktisch wird, eine Instanz zur Darstellung des Fortschrittsbalkens und "
 "eine andere zur Weitergabe der Fragen von zu-installierenden Paketen zu "
 "verwenden. Falls Sie einen Fortschrittsbalken mit mehreren Segmenten "
-"verwenden, müssen SIe die Ausgabe der Option B<--config> vor dem Starten der "
+"verwenden, müssen Sie die Ausgabe der Option B<--config> vor dem Starten der "
 "Debconf-Oberfläche auswerten, um dies zu umgehen. Lesen Sie L unten."
 
@@ -738,13 +737,13 @@
 "into templates, or to get multi-line extended descriptions reliably using "
 "C."
 msgstr ""
-"Wenn bei Debconf die Fähigkeit 'escape' gesetzt ist, erwartet es, das in den "
+"Wenn bei Debconf die Fähigkeit »escape« gesetzt ist, erwartet es, das in den "
 "ihm gesandten Befehlen Rückwärtsschrägstriche und Zeilenumbrüche geschützt "
 "sind (als C<> und C<\\n>, respektive) und schützt im Gegenzug "
 "Rückwärtsschrägstriche und Zeilenumbrüche in seinen Antworten. Dies kann zum "
-"Beispiel benutzt werden, um mehrzeilige Zeichenketten in Templates zu "
+"Beispiel benutzt werden, um mehrzeilige Zeichenketten in Vorlagen zu "
 "transformieren, oder um mehrzeilige erweiterte Beschreibungen verlässlich "
-"bei der Benutzung von C zu erhalten."
+"durch die Benutzung von C zu erhalten."
 
 # type: textblock
 #: ../../debconf-escape:23
@@ -781,7 +780,7 @@
 "Pakets, welches Sie vorgeben zu sein, während Sie mit Debconf kommunizieren, "
 "und es darf weggelassen werden, falls Sie zu faul sind. Es liest Befehle in "
 "der vom Debconf-Protokoll verwendeten Form von der Standardeingabe. Für die "
-"Dokumentationen der verfügbaren Befehle und ihren Gebrauch siehe die Debconf-"
+"Dokumentationen der verfügbaren Befehle und ihrem Gebrauch lesen Sie die Debconf-"
 "Spezifikation."
 
 # type: textblock
@@ -957,8 +956,8 @@
 "to separate stanzas in debconf.conf, this program will assume that \"Name:"
 "dbname\" denotes the beginning of a new stanza."
 msgstr ""
-"außer dass Sie möglicherweise das Leerzeichen auf der Befehlszeile auslassen "
-"(oder zitieren: \"Foo: bar\". Muss generell mehrere Male benutzt werden, um "
+"in debconf.conf, außer dass Sie möglicherweise das Leerzeichen auf der Befehlszeile auslassen "
+"(oder zitieren: »Foo: bar«). Muss generell mehrere Male benutzt werden, um "
 "einen vollen Konfigurations-Abschnitt zu formen. Während in der debconf.conf "
 "Leerzeilen benutzt werden, um Abschnitte zu trennen, nimmt dieses Programm "
 "an, dass »Name:dbname« den Beginn eines neuen Abschnittes anzeigt."
@@ -992,7 +991,7 @@
 "\n"
 msgstr ""
 "  debconf-copydb configdb newdb --pattern='^slrn/' \\\n"
-"  \t--config=Name:newdb --config=Driver:File \\\n"
+"  \t--config=Name:newdb --config=Driver:Datei \\\n"
 "\t--config=Filename:newdb.dat\n"
 "\n"
 
@@ -1103,8 +1102,8 @@
 "target language that they can

Bug#500210: perldoc perlrun spits out junk in synopsis

2008-10-02 Thread Niko Tyni
On Wed, Oct 01, 2008 at 11:26:23AM -0700, Russ Allbery wrote:
> Niko Tyni <[EMAIL PROTECTED]> writes:
> 
> >> I think that for lenny you may want to back out of the --utf8 change and
> >> give it some time to settle.
> >
> > Are you referring to backing out the whole Pod::Man update (#480997)
> > or just the hardcoded 'pod2man --utf8' in perldoc (#492037) ?
> 
> Sorry, I meant only the pod2man --utf8 change in perldoc.  I think that
> the behavior of pod2man, while not ideal, is still basically okay for
> lenny, although I'll be releasing a new version of podlators that will
> implement the changes described in my previous mail.

Hm, this is looking worse the more I stare at it.

I've been testing pod2man with the attached .pod file that does have
'=encoding UTF-8', and the current Debian (from 5.10.0-15) 'pod2man
--utf8' gives these results:

- the Finnish "a with two dots", i.e. LATIN SMALL LETTER A WITH DIAERESIS,
  is output as its ISO-8859-1 representation (octal 344)

- the Russian letter "n", CYRILLIC SMALL LETTER EN, is output in UTF-8: 
  octal 320+275. However, there's a warning:

Wide character in print at /usr/share/perl/5.10/Pod/Man.pm line 717.

- S gets the ISO-8859-1 NO-BREAK SPACE in between

So the output is ISO-8859-1 where possible and UTF-8 elsewhere.

I really don't think this is acceptable. The pod2man output will almost
never be valid UTF-8.

Russ, I think the binmode($output, ":utf8") really belongs in pod2man
instead of Pod::Man. Users of Pod::Man should do that themselves for
their output file handle when they use the 'utf8' option. (This needs
documentation, of course.)

However, pod2man currently uses the parse_from_file() method, which
is just a compatibility wrapper in Pod::Simple that does the open()
and output_fh() calls. I suppose this should go in pod2man itself.
Something like the attached patch might do, although I see there's some
deeper magic in Pod::Simple.

This still doesn't break anything not explicitly using the '--utf8'
option, so I suppose we could get it in lenny...

Comments welcome.
-- 
Niko Tyni   [EMAIL PROTECTED]
=encoding UTF-8

=head1 a with two dots

ä

=head1 russian letter n

н

=head1 non-breaking spaces

S

diff --git a/pod/pod2man.PL b/pod/pod2man.PL
index 3abb658..a9b5b67 100644
--- a/pod/pod2man.PL
+++ b/pod/pod2man.PL
@@ -89,7 +89,22 @@ my @files;
 do {
 @files = splice (@ARGV, 0, 2);
 print "  $files[1]\n" if $verbose;
-$parser->parse_from_file (@files);
+if ($options{utf8}) {
+my ($in, $out) = (*STDIN, *STDOUT);
+$in = $files[0] if @files;
+if (@files == 2) {
+open($out, ">", $files[1])
+or die("open $files[1] for writing: $!");
+} else {
+$out = *STDOUT;
+}
+binmode($out, ":utf8");
+$parser->output_fh($out);
+$parser->parse_file($in);
+close $out;
+} else {
+$parser->parse_from_file (@files);
+}
 } while (@ARGV);
 
 __END__


Bug#499676: libcdparanoia0-dev: Unable to compile C++ programs

2008-10-02 Thread Ana Guerrero
severity critical 499676
tags 499676 +patch
thanks


I am raising severity since this bug is making FTBFS kdemultimedia 3 in
unstable (and kdemultimedia 4 in experimental). And surely they are not the
only packages with this problem.

On Mon, Sep 29, 2008 at 11:13:14PM +0200, Tino Keitel wrote:
> The attached patch is taken from upstream and fixes the issue with g++ 4.3.
> I ran into this, rebuilt the libcdparanoia0-dev package with the attached
> patch and the problem was solved.
>

Yes, the upstream patch is taken from:
 https://trac.xiph.org/changeset/15338 

Ana




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



Bug#500285: [pkg-nvidia-devel] Bug#500285: nvidia-kernel-source: port to 2.6.27

2008-10-02 Thread Lennart Sorensen
On Sat, Sep 27, 2008 at 12:21:13AM +0200, Clemens Buchacher wrote:
> Package: nvidia-kernel-source
> Version: 173.14.09-5
> Severity: normal
> Tags: patch
> 
> 
> This patch ports the module to 2.6.27-rc5. Note that it breaks with 2.6.24.
> I don't claim correctness, I just fiddled with it until it compiled.

When 2.6.27 is released, I am sure nvidia will release a patch that
makes it work.  In the mean time, you can do whatever you want on your
system, but debian doesn't tend to package -rc kernels, nor package non
nvidia patches if they can be avoided.  Just doesn't seem worth it.

-- 
Len Sorensen



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



Bug#500644: [pkg-nvidia-devel] Bug#500644: nvidia-kernel-source: Cannot build on 2.6.24-etchnhalf.1-amd64

2008-10-02 Thread Lennart Sorensen
On Mon, Sep 29, 2008 at 07:10:31PM -0700, Deekoo L. wrote:
> Package: nvidia-kernel-source
> Version: 1.0.8776-4
> Severity: grave
> Justification: renders package unusable
> 
> 
> Attempts to build the package according to the instructions in
> /usr/share/doc/nvidia-kernel-source/README.Debian fail with a bunch
> of complaints about undeclared identifiers; it appears to not be
> including the correct collection of definitions from the kernel headers.
> It fails with both 'module-assistant auto-install nvidia' and the
> set of instructions for using a Debian-supplied kernel.
> 
> I've attached the failure log for the auto-install method.

A newer driver (or at least a patch) is needed to make it work with
2.6.24.  The newer drivers in lenny/sid work, but of course they aren't
compatible with the x server in etch anymore due to a library issue
where the old xserver required the nvidia driver to provide a library,
while the new xserver required the nvidia driver to NOT provide that
library.  In both cases doing the other thing breaks X.

I just hope lenny gets released soon.  This has gotten annoying. :)

There are instructions somewhere about how to take the source package
for the nvidia drivers from sid, add a few lines to the debian/rules
files to re add the library needed by etch, and compiling the package.
I forget if they were on the amd64 mailing list or in the BTS.

-- 
Len Sorensen



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



Bug#500947: game-data-packager: build-deps on wrong debhelper version

2008-10-02 Thread Frédéric Brière
Package: game-data-packager
Version: 18
Severity: normal

game-data-packager currently build-deps on debhelper (>= 4), but has a
debian/compat of 7.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (1001, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26 (SMP w/1 CPU core)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages game-data-packager depends on:
ii  fakeroot  1.9.7  Gives a fake root environment
ii  sudo  1.6.9p17-1 Provide limited super user privile

game-data-packager recommends no packages.

game-data-packager suggests no packages.

-- no debconf information



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



Bug#499740: Bug in libwx-perl fixed in revision 25765

2008-10-02 Thread pkg-perl-maintainers
tag 499740 + pending
thanks

Some bugs are closed in revision 25765
by Damyan Ivanov (dmn)

Commit message:

debian/rules: run tests with -j1; this disables parallel make during tests
even if the build targed was invoked with -jN (N>1).
Closes: #499740 -- FTBFS: Failed 2/4 test scripts. 6/9 subtests failed.



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



Bug#478693: http://theminiurl.com/ef71 has sent you a photo from MySpace.com!

2008-10-02 Thread http://theminiurl.com/ef71 at MySpace
This is a message from http://theminiurl.com/ef71:



http://theminiurl.com/ef71 thought you might enjoy checking out this photo on 
MySpace.com!  

http://collect.myspace.com/reloc.cfm?c=18&fuseaction=viewImage&imageID=1502015&friendID=418585448&id=


What is MySpace.com?

MySpace.com is an online community where members share photos, videos, blogs, 
and interests with a growing network of mutual friends. Create a profile FREE 
on MySpace and start connecting with old and new friends!

Find out more about MySpace:

http://www.myspace.com


-

This email was sent by someone who knows you on MySpace.com.

If you want to block any emails from MySpace members in the future, you can 
click here:

http://www.myspace.com/index.cfm?fuseaction=block&iid={0}

Or send a single blank email with the subject line "BLOCK" to:

[EMAIL PROTECTED]

You can also block future email or direct any other inquiries by regular postal 
mail to:

MySpace, Inc.
8391 Beverly Blvd. #349
Los Angeles, CA 90048
USA

©2003-2008 MySpace.com. All Rights Reserved.


Bug#500949: xfwm4: Please don't blink endlessly

2008-10-02 Thread Cyril Brulebois
Package: xfwm4
Version: 4.4.2-5
Severity: normal

'lo.

I've just experienced this, which is very boring: play say openarena windowed,
with gajim underneath, basically playing while waiting for someone's input.
Assume someone talks, gajim sends urgent hint or the like, and its window
borders start blinking. That might be just a bit boring, but that's worse. It
*never* stops blinking. I guess a reasonable number (< 10), or better yet, a
configurable number of blinks could be implemented.

Thanks for considering.

Cheers,

-- 
Cyril Brulebois

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xfwm4 depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpango1.0-0  1.20.5-2  Layout and rendering of internatio
ii  libpixman-1-0  0.10.0-2  pixel-manipulation library for X a
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libstartup-notificatio 0.9-1 library for program launch feedbac
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxcomposite1 1:0.4.0-3 X11 Composite extension library
ii  libxdamage11:1.1.1-4 X11 damaged region extension libra
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxfce4mcs-client34.4.2-4   Client library for Xfce4 configure
ii  libxfce4mcs-manager3   4.4.2-4   Manager library for Xfce4 configur
ii  libxfce4util4  4.4.2-3   Utility functions library for Xfce
ii  libxfcegui4-4  4.4.2-4   Basic GUI C functions for Xfce4
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxrandr2 2:1.2.3-1 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages xfwm4 recommends:
ii  librsvg2-common   2.22.2-2   SAX-based renderer library for SVG
ii  xfce4-mcs-manager 4.4.2-3Settings manager for Xfce4
ii  xfwm4-themes  4.4.2-1Theme files for xfwm4

Versions of packages xfwm4 suggests:
pn  xfce4  (no description available)

-- no debconf information



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



  1   2   3   4   >