Bug#452318: dpkg-dev: new dpkg-shlibdeps spews insane amount of warnings

2007-11-22 Thread Raphael Hertzog
On Wed, 21 Nov 2007, Sune Vuorela wrote:
 Package: dpkg-dev
 Version: 1.14.9
 Severity: normal
 
 
 When building kdebase - after using quite some time to get
 --ignore-missing-info to go thru the build system, I now get a insane
 unreadable amount of warnings. The only thing it does is cluttering the
 build log and make it hard to try to locate anything important.

Well, I wouldn't print them if they were not meant to be brought to the
maintainer's attention?

 Please don't print the 
 dpkg-shlibdeps: warning: symbol _ZN7QWidget7setMaskERK7QRegion used by
 debian/kdebase-bin/usr/lib/libkdeinit_kxkb.so found in none of the
 libraries.

Somewhat like the other failures that you suffered from, if this was
properly identified as a plugin (i.e. without SONAME), you wouldn't see
it.

There's another alternative: make sure the plugin is linked against
libraries it really uses... fix the build system to pass the proper -lqt
flag or whatever (I haven't checked which precise library provide this
symbol).

 lines unless some --debug flag is added.

I don't think that's an option for me. I might add some code to
rate-limit the display of those messages... maybe after 5 for each
binary it stops printing them unless some verbose flag is set.

But they are meant to be displayed by default.

Cheers,
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/




Bug#452312: Iceweasel FTBFS in current sid

2007-11-22 Thread Cyril Brulebois
On 21/11/2007, peter green wrote:
 package: iceweasel
 version: 2.0.0.9-1
 severity: serious
 
 I tried to reproduce in my amd64 sid chroot but instead of the failure from
 the buildd I got a different failure:
 
 dpkg-shlibdeps: failure: couldn't find library libxpcom_core.so (note: only
 packages with 'shlibs' files are looked into).

Hi.

You might want to have a look at the dpkg-dev bug page.

Cheers,

-- 
Cyril Brulebois


pgpBCwPV6Py8g.pgp
Description: PGP signature


Bug#452339: dpkg-dev: fails to parse some shlibs files

2007-11-22 Thread Raphael Hertzog
On Thu, 22 Nov 2007, Aurelien Jarno wrote:
 Package: dpkg-dev
 Version: 1.14.9
 Severity: serious
 
 From my build log:
 
 dh_compress -pkzenexplorer -X .dcl -X .docbook -X -license -X .tag -X .sty -X 
 .el
 dh_fixperms -pkzenexplorer
 dh_makeshlibs -pkzenexplorer
 dh_installdeb -pkzenexplorer
 dh_perl -pkzenexplorer
 dh_shlibdeps -pkzenexplorer
 dpkg-shlibdeps: failure: No dependency information found for libusb-0.1.so.4 
 (used by debian/kzenexplorer/usr/bin/kzenexplorer).
 dh_shlibdeps: command returned error code 65280
 make: *** [binary-predeb-IMPL/kzenexplorer] Error 1
 
 But libusb-0.1.so.4 has a shlib file:
 
 [volta:~]$ cat /var/lib/dpkg/info/libusb-0.1-4.shlibs
 libusb-0.1 4 libusb-0.1-4 (= 2:0.1.12)
 udeb: libusb-0.1 4 libusb-0.1-udeb (= 2:0.1.12)

I can't reproduce this on i386 while building kzenexplorer_0.6-1. I fear
that the lookup of the library on amd64 provides a name which is not the
real name but somehow a symlink lib like /usr/lib64/libusb-0.1-4 since
we're now respecting ld.so.conf properly with includes.

Can you apply the attached patch to dpkg-shlibdeps and re-run the build after
adding -v to dpkg-shlibdeps (use dh_slibdeps -- -v for this), that way
I'll have all the required information.

Please also paste me /etc/ld.so.conf and /etc/ld.so.conf.d/*

Thanks,
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/
diff --git a/scripts/dpkg-shlibdeps.pl b/scripts/dpkg-shlibdeps.pl
index 8902b94..800460d 100755
--- a/scripts/dpkg-shlibdeps.pl
+++ b/scripts/dpkg-shlibdeps.pl
@@ -100,7 +100,8 @@ foreach my $file (keys %exec) {
failure(_g(couldn't find library %s (note: only packages with  .
   'shlibs' files are looked into).), $soname)
unless defined($lib);
-   $libfiles{$lib} = $soname if defined($lib);
+   $libfiles{$lib} = $soname;
+   print Library $soname found in $lib\n if $debug;
 }
 my $file2pkg = find_packages(keys %libfiles);
 my $symfile = Dpkg::Shlibs::SymbolFile-new();
@@ -114,6 +115,7 @@ foreach my $file (keys %exec) {
# Empty package name will lead to consideration of symbols
# file from the package being built only
$file2pkg-{$lib} = [];
+   print No associated package found for $lib\n if $debug;
}
 
# Load symbols/shlibs files from packages providing libraries
@@ -327,6 +329,7 @@ Dependency fields recognised are:
 
 sub add_shlibs_dep {
 my ($soname, $pkg) = @_;
+print Looking up shlibs dependency of $soname provided by '$pkg'\n if 
$debug;
 foreach my $file ($shlibslocal, $shlibsoverride, @pkg_shlibs,
$admindir/info/$pkg.shlibs,
$shlibsdefault)
@@ -334,12 +337,14 @@ sub add_shlibs_dep {
next if not -e $file;
my $dep = extract_from_shlibs($soname, $file);
if (defined($dep)) {
+   print Found $dep in $file\n if $debug;
foreach (split(/,\s*/, $dep)) {
$dependencies{$cur_field}{$_} = 1;
}
return 1;
}
 }
+print Found nothing\n if $debug;
 return 0;
 }
 


Bug#447727: closed by Tobias Toedter [EMAIL PROTECTED] (Bug#447727: fixed in iso-codes 1.6-2)

2007-11-22 Thread Tobias Toedter
On Wed, 21 Nov 2007 20:10:07 +0100
Martin Pitt [EMAIL PROTECTED] wrote:

 * Remove bzip2 compression from debian/rules, as this requires a
   Pre-Depends on dpkg (= 1.10.24)
 
 Ah, so Debian still checks that (bah, that check shuold be removed).
 However, why did you back out the change instead of just adding the
 Pre-Dependency?  oldstable has 1.10.28, so it does not change
 behaviour at all.

Hi Martin, hi Raphael,

thanks to both of you for pointing this out. I was a little bit scared
about the need for a Pre-Depends, because Policy says that it should
best be avoided. Therefore, I wanted to investigate this further while
not delaying the upload.

I'll add this again for the next release, which will happen in about a
month.

Regards,
Tobias

-- 
Tobias Toedter   | AMAZING BUT TRUE ...
Hamburg, Germany |   If you took all the veins from your body and laid
 |   them together end to end, you'd die.


signature.asc
Description: PGP signature


Bug#452361: please include '-fPIC' in standard CFLAGS

2007-11-22 Thread Fabian Greffrath

Package: cdbs
Version: 0.4.50
Severity: wishlist

Dear cdbs-developers,

I have observed several times that shared libraries build without PIC 
code if the compiler is not run with the optional '-fPIC'. Lintian then 
throws the following error:

 http://lintian.debian.org/reports/Tshlib-with-non-pic-code.html

Simply adding
 CFLAGS += -fPIC
in debian/rules often solves the problem.

I don't know if this option is dangerous for static objects, but if not, 
please consider including it in the standard CFLAGS.


Thank you!

Cheers,
Fabian



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



Bug#452360: /etc/init.d/lvm2 stop hangs during shutdown/reboot

2007-11-22 Thread Norbert Kiesel
Package: lvm2
Version: 2.02.26-1+b1
Severity: normal

I have all filesystems besides /boot on lvm2 (i.e. /var, /usr, /,
/home).  During system shutdown/reboot, my machine hangs after printing
Shutting down LVM Volume Groups.  I assume that happens because it
tries to make the lvms unavailable, but is executing this from a
lvm-mounted filesystem.


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

Kernel: Linux 2.6.23.8
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 lvm2 depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libdevmapper1.02.12:1.02.20-2The Linux Kernel Device Mapper use
ii  libncurses5   5.6+20071103-1 Shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libselinux1   2.0.15-2+b1SELinux shared libraries
ii  libsepol1 2.0.3-1+b1 Security Enhanced Linux policy lib

lvm2 recommends no packages.

-- debconf information:
  lvm2/snapshots:
  lvm2/kernel:



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



Bug#452318: dpkg-dev: new dpkg-shlibdeps spews insane amount of warnings

2007-11-22 Thread Sune Vuorela
On Thursday 22 November 2007, Raphael Hertzog wrote:
 On Wed, 21 Nov 2007, Sune Vuorela wrote:
  Package: dpkg-dev
  Version: 1.14.9
  Severity: normal
 
 
  When building kdebase - after using quite some time to get
  --ignore-missing-info to go thru the build system, I now get a insane
  unreadable amount of warnings. The only thing it does is cluttering the
  build log and make it hard to try to locate anything important.

 Well, I wouldn't print them if they were not meant to be brought to the
 maintainer's attention?

well.. the effect is that anything in the build log gets ignored.

$ wc --lines kdebase_3.5.8.dfsg.1-2_i386.build
68584 kdebase_3.5.8.dfsg.1-2_i386.build

$ grep -v dpkg-shlibdeps: warning: symbol 
kdebase_3.5.8.dfsg.1-2_i386.build  | wc --lines
21850

And in sizes, it is 10mb for the build log - and 3.3mb for the filtered 
buildlog

/Sune
-- 
Do you know how may I load the space bar of a mousepad from AutoCAD 7.2 and 
from the preferences inside Windows?

You have to log from a connection for booting from the laser icon.



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



Bug#388863: raggle: Unobtrusive Javascript Drop down selection

2007-11-22 Thread Rakesh 'arky' Ambati
Package: raggle
Version: 0.4.4-3
Followup-For: Bug #388863

Adding a submit button wrapped with noscript/noscript element makes feed 
selection work in line browsers like Elinks and GUI browsers with Javascript 
disabled.

4628,4629c4628
   ret  /select\n
 
---
  ret  /select\n noscriptinput type=\submit\ value=\go\ 
 //noscript\n


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

Kernel: Linux 2.6.22.9
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 raggle depends on:
ii  elinks [www-browser] 0.11.1-1.5  advanced text-mode WWW browser
ii  iceweasel [www-browser]  2.0.0.9-1   lightweight web browser based on M
ii  irb  1.8.2-1 Interactive Ruby (irb)
ii  libncurses-ruby1.8   1.1-2   ruby Extension for the ncurses C l
pn  librexml-ruby1.8 none  (no description available)
ii  libruby1.8 [libyaml-ruby1.8] 1.8.6.111-2 Libraries necessary to run Ruby 1.
ii  lynx [www-browser]   2.8.6-2 Text-mode WWW Browser
ii  ruby 1.8.2-1 An interpreter of object-oriented 

raggle recommends no packages.

-- no debconf information



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



Bug#452362: unnecessarily Build-Depends on libsndfile1-dev

2007-11-22 Thread Fabian Greffrath

Package: faad2
Version 2.6-1
Severity: minor

Dear faad2-maintainer,

none of the files in the source tarball include any header from 
libsndfile1-dev and none of the binaries is linked against the 
libsndfile library.


The faad package builds fine without libsndfile1-dev installed.

If I didn't miss something, please remove it from the Build-Deps.

Cheers,
Fabian



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



Bug#452338: dpkg-dev: should ignore private libraries

2007-11-22 Thread Raphael Hertzog
tag 452338 pending
thanks

On Thu, 22 Nov 2007, Aurelien Jarno wrote:
 libR.so is a private library that has no SONAME, and that is installed
 in /usr/lib/R/lib/. It should be ignored by dpkg-dev has it was the
 cases in the previous versions.

That was the intent from the beginning. However a bug slipped through that
made it incorrectly detect private libs as public libs. This was fixed
yesterday in git's repo (after discussion on -devel). So it will be fixed
in 1.14.10.

Cheers,
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/




Bug#397440: Fwd: Accepted hplip 2.7.10-2 (source i386 all)

2007-11-22 Thread Fabian Greffrath

Hi,

well, I still think that 'hpijs-ppds | linuxprinting.org-ppds' should be 
recommended to prevent people from downloading two huge (at least 
lp.o-ppds is huge) packages when they most certainly will only need one 
of those.


Thanks,
Fabian


Mark Purcell schrieb:

Hello,

At once stage you submitted a bug report against hplip, and in some cases that 
was for very old versions (0.8, 0.9, 1.6).


hplip 2.7.10 has now been uploaded to Debian unstable.

Could I ask you to verify that you are still having your reported problem with 
the latest version of hplip.


If you feel the issue has been resolved, could you please forward a short note 
to [EMAIL PROTECTED] outlining that the issue has been resolved. If 
you still have the issue, then please send a short email to 
[EMAIL PROTECTED] and state that you still are having problems with that 
issue, or even better could ask you to use the reportbug package for 
followups. reportbug makes it easy to know which version of libraries you 
have installed and which version you are following up for.


Thanks,
Mark





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



Bug#440653: Please consider adding Venezuela's future currency VEF

2007-11-22 Thread Tobias Toedter
package iso-codes
tag 440653 pending
thanks

On Mon, 03 Sep 2007 09:24:17 -0400
José Miguel Parrella Romero [EMAIL PROTECTED] wrote:

 Venezuela will have a new currency, starting Jan 1 2008. The currency
 is named 'Bolívar Fuerte', letter code VEF, number code 937.
 Obviously, ISO has already granted a number code (which is 937) for
 the new currency, but official sources might be found in spanish at
 [1].
 
 Please find attached the proposed diff for iso_4127.xml for your
 review and consideration.

Hi Jose,

we've just committed your fix to SVN. Thanks a lot for your work.

Regards,
Tobias

-- 
Tobias Toedter   | It's not an optical illusion, it just looks like one.
Hamburg, Germany |


signature.asc
Description: PGP signature


Bug#451945: Accepted: libsvg 0.1.4-3ubuntu1 (source)

2007-11-22 Thread Raphael Hertzog
On Wed, 21 Nov 2007, Matt Zimmerman wrote:
 I see someone has already suggested this to the maintainer without success:
 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=451945
 
 He even acknowledges that Ubuntu has worked around this problem, but doesn't
 seem to want to apply the same workaround in Debian.
 
 Rene, can you explain why?  The problem is obviously caused by someone
 else's broken package, but it seems harmless to add this workaround for the
 benefit of users.

Full ack. Rene, it doesn't cost us much and avoids troubles for users.
It's nice to have clean dependencies, but it's best when Debian just works
for users (even for users who like to follow new stuff like beryl).

Cheers,
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/




Bug#452363: /init: .: 150: Can't open /scripts/live

2007-11-22 Thread Rafał Krypa
Package: fai-server
Version: 3.2.1
Severity: normal

--- Please enter the report below this line. ---
After setting up FAI with fai-setup, hosts fail to boot with the following 
error:


Begin: Mounting root file system... ...
/init: .: 150: Can't open /scripts/live
Kernel panic - not syncing: Attempted to kill init!


Indeed, there is no
/srv/fai/nfsroot/live/filesystem.dir/usr/share/initramfs-tools/scripts/live 
file.

It seems to be related to package live-initramfs missing in Etch, DebianLive FAQ
suggests Add latest live-initramfs deb package into 
config/chroot_local-packages
directory and rebuild for exactly this problem and fai-setup complains about
unknown package live-initramfs.

Here comes the full output of fai-setup:

Creating FAI nfsroot in /srv/fai/nfsroot/live/filesystem.dir.
By default it needs more than 330 MBytes disk space.
This may take a long time.
/srv/fai/nfsroot/live/filesystem.dir already exists. Removing 
/srv/fai/nfsroot/live/filesystem.dir
Creating base system using debootstrap version 
Calling debootstrap etch /srv/fai/nfsroot/live/filesystem.dir 
http://ftp.debian.org/debian
Creating base.tgz
Upgrading /srv/fai/nfsroot/live/filesystem.dir
Making a key pair for cfengine, please wait, this could take a minute...
Writing private key to /var/lib/cfengine2/ppkeys/localhost.priv
Writing public key to /var/lib/cfengine2/ppkeys/localhost.pub
Checking for services that may need to be restarted...done.
Checking init scripts...
Nothing to restart.
install_packages: reading config files from directory /etc/fai
WARNING: These unknown packages are removed from the installation list: 
live-initramfs
Adding additional packages to /srv/fai/nfsroot/live/filesystem.dir:
fai-nfsroot module-init-tools dhcp3-client ssh rdate lshw portmap bootpc rsync 
lftp
rsh-client less dump reiserfsprogs ext2resize usbutils hwinfo psmisc pciutils 
hdparm
smartmontools parted mdadm lvm2 dnsutils ntpdate dosfstools cvs jove xfsprogs 
xfsdump
sysutils dialog discover mdetect console-tools console-common expect iproute 
udev
subversion cfengine2 libapt-pkg-perl grub lilo read-edid linux-image-486
unionfs-modules-2.6-486 
install_packages: reading config files from directory /etc/fai
WARNING: These unknown packages are removed from the installation list: 
live-initramfs
Extracting templates from packages: 100%
Done.
Looking for keymap to install:
NONE
Looking for keymap to install:
NONE
/sys/class/net/ is not available, persistent interface names not saved.

 Hmm. The package shipped with a symbolic link /lib/modules/2.6.18-5-486/source
 However, I can not read the target: No such file or directory
 Therefore, I am deleting /lib/modules/2.6.18-5-486/source

Running depmod.
Finding valid ramdisk creators.
Using mkinitramfs-kpkg to build the ramdisk.
W: mkconf: MD subsystem is not loaded, thus I cannot scan for arrays.
W: mdadm: failed to auto-generate the mdadm.conf file.
W: mdadm: please read /usr/share/doc/mdadm/README.upgrading-2.5.3.gz .
W: mdadm: no configuration file available.
W: mdadm: falling back to emergency procedure in initramfs.
Backing up any LVM2 metadata that may exist...done.
Checking available versions of rmt, updating links in /etc/alternatives ...
(You may modify the symlinks there yourself if desired - see `man ln'.)
Updating rmt (/usr/sbin/rmt) to point to /usr/sbin/rmt-dump.
Updating rmt.8.gz (/usr/share/man/man8/rmt.8.gz) to point to 
/usr/share/man/man8/rmt-dump.8.gz.
W: mdadm: failed to load MD subsystem.
Generating array device nodes... done.
Creating SSH2 RSA key; this may take some time ...
Creating SSH2 DSA key; this may take some time ...
`/etc/fai/apt' - `/srv/fai/nfsroot/live/filesystem.dir/etc/fai/apt'
`/etc/fai/apt/sources.list' - 
`/srv/fai/nfsroot/live/filesystem.dir/etc/fai/apt/sources.list'
`/etc/fai/fai.conf' - `/srv/fai/nfsroot/live/filesystem.dir/etc/fai/fai.conf'
`/etc/fai/make-fai-nfsroot.conf' - 
`/srv/fai/nfsroot/live/filesystem.dir/etc/fai/make-fai-nfsroot.conf'
`/etc/fai/menu.lst' - `/srv/fai/nfsroot/live/filesystem.dir/etc/fai/menu.lst'
`/etc/fai/NFSROOT' - `/srv/fai/nfsroot/live/filesystem.dir/etc/fai/NFSROOT'
Shadow passwords are now on.
Removing `local diversion of /usr/sbin/update-initramfs to 
/usr/sbin/update-initramfs.distrib'
update-initramfs: Generating /boot/initrd.img-2.6.18-5-486
W: mdadm: unchecked configuration file: /etc/mdadm/mdadm.conf
W: mdadm: please read /usr/share/doc/mdadm/README.upgrading-2.5.3.gz .
W: mkconf: MD subsystem is not loaded, thus I cannot scan for arrays.
W: mdadm: failed to auto-generate temporary mdadm.conf file.
W: mdadm: no configuration file available.
W: mdadm: falling back to emergency procedure in initramfs.
`/srv/fai/nfsroot/live/filesystem.dir/boot/vmlinuz-2.6.18-5-486' - 

Bug#452282: gstreamer0.10: Crackling sound after upgrade

2007-11-22 Thread Sebastian Dröge
reassign 452282 gstreamer0.10-alsa
forwarded 452282 http://bugzilla.gnome.org/show_bug.cgi?id=498928
tags 452282 + upstream
thanks

Am Donnerstag, den 22.11.2007, 00:13 +0100 schrieb Mathias Brodala:
 Hi.
 
 Sebastian Dröge, 21.11.2007 19:23:
  Am Mittwoch, den 21.11.2007, 16:46 +0100 schrieb Mathias Brodala:
  After upgrading to the latest version playing any file results in cracks 
  during
  playback. Downgrading all gstreamer0.10 related packages to the Testing 
  version
  fixes this problem for now. I’m using a soundcard with the CMI8783 chipset.
  
  can you do
  GST_DEBUG=5 GST_DEBUG_NO_COLOR=1 gst-launch-0.10 playbin
  uri=file:///path/to/file  log
  
  and attach the log (bzipped) to this bugreport?
 
 I did that including the output for the Testing packages for comparison
 purposes. I canceled the playback a few seconds after the cracks appeared to
 keep the logfile small. (And approx. the same time for the Testing 
 packages.)
 
 Since my mail was rejected because of its size, you can find both logfiles 
 here:
 
 http://download.noctus.net/logfiles/dbts/gst_0.10.14-2.log.bz2
 
 http://download.noctus.net/logfiles/dbts/gst_0.10.15-1.log.bz2

Thanks, I've forwarded your bug upstream:
http://bugzilla.gnome.org/show_bug.cgi?id=498928




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



Bug#380081: bug not fixed yet

2007-11-22 Thread Hilmar Preusse
reopen 380081
found 380081 0.8
stop

Hi,

I'm afraid the bug is not fixed yet. Maybe my analysis I wrote into
the original bug report is wrong. Sorry, if this is the case.

[EMAIL PROTECTED]:~ $ dlocate vmlinuz-2.6.21-1-686 vmlinuz-2.6.22-1-686
linux-image-2.6.22-1-686: /boot/vmlinuz-2.6.22-1-686
[EMAIL PROTECTED]:~ $ dlocate vmlinuz-2.6.22-1-686 vmlinuz-2.6.21-1-686
linux-image-2.6.21-1-686: /boot/vmlinuz-2.6.21-1-686
[EMAIL PROTECTED]:~ $ dlocate vmlinuz-2.6.22-1-686
linux-image-2.6.22-1-686: /boot/vmlinuz-2.6.22-1-686

I'm pretty sure the dlocate db update run successfully tonight.

H.
-- 
sigmentation fault



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



Bug#451047: gcc-4.2: [hppa] ICE in reload_cse_simplify_operands, at postreload.c:392

2007-11-22 Thread Julien Cristau
On Thu, Nov 22, 2007 at 08:00:18 +0100, Martin Michlmayr wrote:

 * Martin Michlmayr [EMAIL PROTECTED] [2007-11-14 09:54]:
  * Julien Cristau [EMAIL PROTECTED] [2007-11-13 10:12]:
   Still ICE with -O1.  Runs ok with -O0.
  This is now PR34091.
 
 Upstream writes:
 
 | I view this as a critical target bug.  However, if we find a fix, I
 | don't think it should be applied to 4.2 and earlier since it's very likely
 | to break something else.
 
 so I suggest you put in a workaround to build with -O0 on hppa (if you
 haven't done so already).

Thanks, I've done that shortly after filing the report (as this FTBFS
was keeping libgl1-mesa-dev uninstallable on hppa).

Cheers,
Julien



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



Bug#452364: double free'ing heap

2007-11-22 Thread Tomas Pospisek
Package: lordsawar
Version: 0.0.4-1
Severity: minor

The following bug could be correlated to the segfault () and swap storm
ones () however since it didn't hurt I'm assigning it a minor severity.
This happened between saving the game and exiting it not much later:

GameScenario.cpp: 192: The Filename is well formed
action.cpp: 306: Action_Split::fillData()
sound.cpp: 271: Sound::nextPiece
GameScenario.cpp: 197: The Filename lacks the extension -- bla1
sound.cpp: 249: disabling background music
sound.cpp: 122: Sound destructor
sound.cpp: 218: stopping music
sound.cpp: 271: Sound::nextPiece
sound.cpp: 249: disabling background music
*** glibc detected *** lordsawar: double free or corruption (out): 0x08badad0 
***
=== Backtrace: =
/lib/i686/cmov/libc.so.6[0xb7005cf5]
/lib/i686/cmov/libc.so.6(cfree+0x90)[0xb7009790]
/usr/lib/libSDL_mixer-1.2.so.0(Mix_FreeMusic+0x11f)[0xb7e609eb]
lordsawar[0x80fa8e3]
lordsawar[0x80faae9]
lordsawar[0x818bcb0]
lordsawar[0x8134c41]
lordsawar[0x8134118]
lordsawar[0x80dd233]
/lib/i686/cmov/libc.so.6(__libc_start_main+0xe0)[0xb6fb2050]
lordsawar[0x8056dc1]
=== Memory map: 
08048000-08203000 r-xp  03:06 557163 /usr/games/lordsawar
08203000-08204000 rw-p 001bb000 03:06 557163 /usr/games/lordsawar
08204000-0d412000 rw-p 08204000 00:00 0  [heap]
b5b0-b5b21000 rw-p b5b0 00:00 0
b5b21000-b5c0 ---p b5b21000 00:00 0
b5c98000-b5ca9000 r--s  03:06 491180 /usr/share/mime/mime.cache
b5ca9000-b5cb9000 r--p  03:06 1191034
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraIt.ttf
b5cb9000-b5cba000 rw-p b5cb9000 00:00 0
b5e44000-b5e45000 rw-p b5e44000 00:00 0
b5f71000-b5fd1000 rw-s  00:09 269385738  /SYSV (deleted)
b5fd1000-b5fe r--p  03:06 1191033
/usr/share/fonts/truetype/ttf-bitstream-vera/VeraBd.ttf
b5fe-b5fe4000 r-xp  03:06 212576 
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
b5fe4000-b5fe5000 rw-p 3000 03:06 212576 
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
b5fe6000-b6046000 rw-s  00:09 269352969  /SYSV (deleted)
b6046000-b6057000 r--p  03:06 1191031
/usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf
b6057000-b6059000 r-xp  03:06 537890 
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
b6059000-b605a000 rw-p 1000 03:06 537890 
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so
b605a000-b605e000 r--s  03:05 130415 
/var/cache/fontconfig/6ee2b8e37b10e16e6b408624412814c5-x86.cache-2
b605e000-b6064000 r--s  03:05 130413 
/var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-x86.cache-2
b6064000-b6067000 r--s  03:05 130400 
/var/cache/fontconfig/1011fb4a522639248932a3f2b9ca-x86.cache-2
b6067000-b6068000 r--s  03:05 130398 
/var/cache/fontconfig/cc350556a40230a43bbdf28d7b7e2141-x86.cache-2
b6068000-b6086000 r--s  03:05 130388 
/var/cache/fontconfig/f408d08d2fce062ab660f628db78bf96-x86.cache-2
b6086000-b608c000 r--s  03:07 2301514
/home/tpo/.fontconfig/6d41288fd70b0be22e8c3a91e032eec0-x86.cache-2
b608c000-b608e000 r--s  03:05 130386 
/var/cache/fontconfig/de156ccd2eddbdc19d37a45b8b2aac9c-x86.cache-2
b608e000-b608f000 r--s  03:05 130380 
/var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-x86.cache-2
b608f000-b60a6000 r--s  03:05 130372 
/var/cache/fontconfig/365b55f210c0a22e9a19e35191240f32-x86.cache-2
b60a6000-b60ac000 r--s  03:05 130369 
/var/cache/fontconfig/d52a8644073d54c13679302ca1180695-x86.cache-2
b60ac000-b60bc000 r--s  03:05 130354 
/var/cache/fontconfig/cabbd14511b9e8a55e92af97fb3a0461-x86.cache-2
b60bc000-b60c9000 r--s  03:05 130347 
/var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-x86.cache-2
b60c9000-b6109000 r--s  03:05 130345 
/var/cache/fontconfig/eeebfc908bd29a90773fd860017aada4-x86.cache-2
b6109000-b6149000 r--s  03:05 130343 
/var/cache/fontconfig/21a99156bb11811cef641abeda519a45-x86.cache-2
b6149000-b614a000 r--s  03:05 130499 
/var/cache/fontconfig/bf1f9632594a1fa28e2cf4d7888deffe-x86.cache-2
b614a000-b614c000 r--s  03:05 130497 
/var/cache/fontconfig/b8613a33de00eecd32d5a94c3c617829-x86.cache-2
b614c000-b614f000 r--s  03:05 130491 
/var/cache/fontconfig/b21a91cee725896328b8cee8091cf747-x86.cache-2
b614f000-b6154000 r--s  03:05 130489 
/var/cache/fontconfig/fd9416c4b92f07c6f59a3a8cf496e9dc-x86.cache-2
b6154000-b6155000 r--
[2]+  Aborted lordsawar



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

Kernel: Linux 2.6.22-2-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages lordsawar depends on:
ii  libatk1.0-0 1.20.0-1 The ATK accessibility 

Bug#452363: /init: .: 150: Can't open /scripts/live

2007-11-22 Thread Henning Sprang
Rafał Krypa wrote:
 [...]
 It seems to be related to package live-initramfs missing in Etch, DebianLive 
 FAQ
 suggests Add latest live-initramfs deb package into 
 config/chroot_local-packages
 directory and rebuild for exactly this problem and fai-setup complains about
 unknown package live-initramfs.


Yes, you are missing the live-initramfs in your nfsroot.

To get it, even in an etch nfsroot, you have to add the fai
developer/unstable repository to your /etc/fai/apt/sources.list.

Until some days before, we were missing an howto for people trying the
latest FAI versions on etch, but I added this to the wiki:
http://faiwiki.informatik.uni-koeln.de/index.php/FAI_3.2_Usage_Changes


As for this bug, I think it's invalid for the debian BTS: here should
belong either bugs for the stable fai version in the stable debian
version, or results from testing the unstable fai version with the
unstable(or testing) Debian version.

Problems with combining stable Debian versions with unstable fai
versions, especially when it's more or less a configuration issue, are
not really bugs in terms of this BTS, I think.
Anyway - it will be automatically fixed, when a user tries fai 3.2.1
on debian testing/ustable, anmd should be close therefore, IMHO.

Still, hope the hint above helps you :)

Henning



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



Bug#452365: tar -cO . | tar -xC ../newplace - results in a killed symlinks

2007-11-22 Thread Dmitry I. Kulagin
Package: tar
Version: 1.19-1
Severity: important


Yesterday trying to move my root fs to a new location, while doing these
steps:

mount -o bind,ro / /mnt/mnt
cd /mnt/mnt
tar -cO . | tar -xC ../newplace

The result was about fifty or more persent of symlinks were damaged at a 
new location. In a place of symlink there was a file with the same name 
and a zero size. After the second try I saw that symlink do not damages 
regulary and those were killed in the first try can be copied in the 
second but not the all.

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/1 CPU core)
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 tar depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries

tar recommends no packages.

-- no debconf information



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



Bug#452366: tomcat5.5-admin: manager servlet requires commons-io to upload WAR files

2007-11-22 Thread Marcus Better
Package: tomcat5.5-admin
Version: 5.5.25-1
Severity: important

When uploading a WAR file with the manager servlet, it throws an exception:

ALLVARLIG: Servlet.service() for servlet HTMLManager threw exception
java.lang.NoClassDefFoundError: org/apache/commons/io/output/DeferredFileOutputS
tream
at org.apache.commons.fileupload.DefaultFileItemFactory.createItem(Defau
ltFileItemFactory.java:103)
at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadB
ase.java:350)
at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadB
ase.java:302)
at org.apache.catalina.manager.HTMLManagerServlet.doPost(HTMLManagerServ
let.java:157)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244
)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:2
76)
at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.
java:162)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:262)
at org.apache.catalina.core.ApplicationFilterChain.access$0(ApplicationF

...

Turns out the manager servlet needs commons-io to be symlinked from its lib/ 
directory:

~$ ls -l /usr/share/tomcat5.5/server/webapps/manager/WEB-INF/lib/commons-io.jar
lrwxrwxrwx 1 root root 30 2007-11-01 14:29 
/usr/share/tomcat5.5/server/webapps/manager/WEB-INF/lib/commons-io.jar - 
/usr/share/java/commons-io.jar

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

Kernel: Linux 2.6.23-rc3-lg (PREEMPT)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tomcat5.5-admin depends on:
ii  libcommons-beanutils-java 1.7.0-5utility for manipulating JavaBeans
ii  libcommons-collections3-java  3.1a-3.1   A set of abstract data type interf
ii  libcommons-digester-java  1.8-1  Rule based XML Java object mapping
ii  libcommons-fileupload-java1.2-2  File upload capability to your ser
ii  libstruts1.2-java 1.2.9-3Java Framework for MVC web applica
ii  tomcat5.5 5.5.25-1   Servlet and JSP engine

tomcat5.5-admin recommends no packages.

-- no debconf information



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



Bug#444204: scons: version 0.97.0d20070918-1 fails to clean csound 5.06 but 0.97.0d20070809-1 doesn't

2007-11-22 Thread Mark Brown
On Wed, Nov 21, 2007 at 10:08:09PM -0300, Felipe Sateler wrote:

 Any schedule on when this fix will be included in debian? This is preventing 
 a 
 security fix on ardour [1]. Note that there is no explicit mention in the bug 
 log but there was some talk at debian-multimedia about it (scons fails while 
 checking for pkgconfig).

According to schedule upstream should have released a fix for this about
a month ago.  However, they are currently working on fixing another bug
(and have been since the time they fixed this one).  I'll hassle them
again and consider packaging a snapshot of my own for Debian.

-- 
You grabbed my hand and we fell into it, like a daydream - or a fever.


signature.asc
Description: Digital signature


Bug#397440: Fwd: Accepted hplip 2.7.10-2 (source i386 all)

2007-11-22 Thread Henrique de Moraes Holschuh
On Thu, 22 Nov 2007, Fabian Greffrath wrote:
 well, I still think that 'hpijs-ppds | linuxprinting.org-ppds' should be 
 recommended to prevent people from downloading two huge (at least lp.o-ppds 
 is huge) packages when they most certainly will only need one of those.

The PPDs are not guaranteed to be the same.  And, frankly,
linuxprinting.org-ppds should remove the hpijs and hplip ppds from itself,
and let hpijs/hplip ship those.   The PPDs shipped by the hplip/hpijs
package are known to work well with that particular version of hplip/hpijs,
and yes, there have been incompatible changes before.

I don't know if the new packages do it yet, but the old hplip package did
some post-processing on the PPDs and normalized their names, too.

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



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



Bug#452368: hal: recommends unknown packages

2007-11-22 Thread Benoît Dejean
Package: hal
Version: 0.5.9.1-6
Severity: normal

uswsusp vbetool are recommends but are unknown to apt-cache show.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.22.10-ibook
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages hal depends on:
ii  adduser  3.105   add and remove users and groups
ii  dbus 1.1.1-3 simple interprocess messaging syst
ii  hal-info 20070618-1  Hardware Abstraction Layer - fdi f
ii  libc62.6.1-6 GNU C Library: Shared libraries
ii  libdbus-1-3  1.1.1-3 simple interprocess messaging syst
ii  libdbus-glib-1-2 0.74-1  simple interprocess messaging syst
ii  libexpat11.95.8-4XML parsing C library - runtime li
ii  libglib2.0-0 2.14.2-1The GLib library of C routines
ii  libhal-storage1  0.5.10-2Hardware Abstraction Layer - share
ii  libhal1  0.5.10-2Hardware Abstraction Layer - share
ii  libusb-0.1-4 2:0.1.12-7  userspace USB programming library
ii  libvolume-id00.114-2 libvolume_id shared library
ii  lsb-base 3.1-24  Linux Standard Base 3.1 init scrip
ii  pciutils 1:2.2.4-1.1 Linux PCI Utilities
ii  udev 0.114-2 /dev/ and hotplug management daemo
ii  usbutils 0.73-4  Linux USB utilities

Versions of packages hal recommends:
ii  eject 2.1.5-6ejects CDs and operates CD-Changer

-- no debconf information



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



Bug#452367: hal: can no longer suspend

2007-11-22 Thread Benoît Dejean
Package: hal
Version: 0.5.10-2
Severity: grave
Justification: renders package unusable

hal can no longer suspend my laptop.
gnome-power-manager no longer shows the suspend option and

$ sudo /usr/sbin/pm-suspend
Error: kernel cannot suspend to ram.

Going back to 0.5.9.1-6 re-enables suspend.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.22.10-ibook
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages hal depends on:
ii  adduser  3.105   add and remove users and groups
ii  dbus 1.1.1-3 simple interprocess messaging syst
ii  hal-info 20070618-1  Hardware Abstraction Layer - fdi f
ii  libc62.6.1-6 GNU C Library: Shared libraries
ii  libdbus-1-3  1.1.1-3 simple interprocess messaging syst
ii  libdbus-glib-1-2 0.74-1  simple interprocess messaging syst
ii  libexpat11.95.8-4XML parsing C library - runtime li
ii  libglib2.0-0 2.14.2-1The GLib library of C routines
ii  libhal-storage1  0.5.10-2Hardware Abstraction Layer - share
ii  libhal1  0.5.10-2Hardware Abstraction Layer - share
ii  libusb-0.1-4 2:0.1.12-7  userspace USB programming library
ii  libvolume-id00.114-2 libvolume_id shared library
ii  lsb-base 3.1-24  Linux Standard Base 3.1 init scrip
ii  mount2.13-12 Tools for mounting and manipulatin
ii  pciutils 1:2.2.4-1.1 Linux PCI Utilities
ii  pm-utils 0.99.2-3utilities and scripts for power ma
ii  udev 0.114-2 /dev/ and hotplug management daemo
ii  usbutils 0.73-4  Linux USB utilities

Versions of packages hal recommends:
ii  eject 2.1.5-6ejects CDs and operates CD-Changer

-- no debconf information



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



Bug#380081: bug not fixed yet

2007-11-22 Thread Craig Sanders
On Thu, Nov 22, 2007 at 09:58:24AM +0100, Hilmar Preusse wrote:
 reopen 380081
 found 380081 0.8
 stop
 
 Hi,
 
 I'm afraid the bug is not fixed yet. Maybe my analysis I wrote into
 the original bug report is wrong. Sorry, if this is the case.
 
 [EMAIL PROTECTED]:~ $ dlocate vmlinuz-2.6.21-1-686 vmlinuz-2.6.22-1-686
 linux-image-2.6.22-1-686: /boot/vmlinuz-2.6.22-1-686
 [EMAIL PROTECTED]:~ $ dlocate vmlinuz-2.6.22-1-686 vmlinuz-2.6.21-1-686
 linux-image-2.6.21-1-686: /boot/vmlinuz-2.6.21-1-686
 [EMAIL PROTECTED]:~ $ dlocate vmlinuz-2.6.22-1-686
 linux-image-2.6.22-1-686: /boot/vmlinuz-2.6.22-1-686
 
 I'm pretty sure the dlocate db update run successfully tonight.

i fixed it in 0.6 then unfixed it in 0.7 to fix something else.

really fixed it properly this time (the option handling of dlocate is
really crappy. i'm planning a complete rewrite. unfortunately, fixing it
will break backwards compatibility. i'm not sure how to handle that yet
- probably by making a dlocate2 package).

will uploaded the new version soon.

if you're in a hurry, here's a patch:

--- /usr/bin/dlocate2007-11-22 06:42:01.279578385 +1100
+++ ./dlocate   2007-11-22 20:31:19.578266498 +1100
@@ -62,14 +62,14 @@
   exit
 }
 
-OPTION=$1
-shift
-
-case $OPTION in
+case $1 in
   ''|'-h'|'-H'|'--help') dlocate_help ;;
-  -v|-V|--version)  dlocate_version ;;
+  '-v'|'-V'|'--version')  dlocate_version ;;
+  
'-S'|'-L'|'-l'|'-s'|'-ls'|'-du'|'-conf'|'-lsconf'|'-md5sum'|'-md5check'|'-man'|'-lsman'|'-lsbin')
  OPTION=$1 ; shift ;;
+  *) OPTION=DEFAULT ;;
 esac
 
+
 PKGS_REGEXP=$(echo $* | sed -e 's/ /|/g')
 [ -z $PKGS_REGEXP ]  PKGS_REGEXP='^$'
 

craig

-- 
craig sanders [EMAIL PROTECTED]

BOFH excuse #209:

Only people with names beginning with 'A' are getting mail this week (a la 
Microsoft)



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



Bug#452363: /init: .: 150: Can't open /scripts/live

2007-11-22 Thread Rafał Krypa
On Thu, 2007-11-22 at 10:15 +0100, Henning Sprang wrote:
 Yes, you are missing the live-initramfs in your nfsroot.
 
 To get it, even in an etch nfsroot, you have to add the fai
 developer/unstable repository to your /etc/fai/apt/sources.list.
 
 Until some days before, we were missing an howto for people trying the
 latest FAI versions on etch, but I added this to the wiki:
 http://faiwiki.informatik.uni-koeln.de/index.php/FAI_3.2_Usage_Changes
 
 
 As for this bug, I think it's invalid for the debian BTS: here should
 belong either bugs for the stable fai version in the stable debian
 version, or results from testing the unstable fai version with the
 unstable(or testing) Debian version.
 
 Problems with combining stable Debian versions with unstable fai
 versions, especially when it's more or less a configuration issue, are
 not really bugs in terms of this BTS, I think.
 Anyway - it will be automatically fixed, when a user tries fai 3.2.1
 on debian testing/ustable, anmd should be close therefore, IMHO.

But I am using FAI 3.2.1 on Debian testing. It seems that default FAI
configuration is lacking, because fai-setup uses packages from Etch to
create its environment and required package live-initramfs is not there.
Adding 'deb http://www.backports.org/debian etch-backports main contrib
non-free' to /etc/fai/apt/sources.list solves this problem for me.



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



Bug#450707: reassign 450707 to rhythmbox, closing 450707

2007-11-22 Thread Jon Dowland
# Automatically generated email from bts, devscripts version 2.10.11
reassign 450707 rhythmbox 
# I can't file this against pidgin-rhythmbox since it hasn't been uploaded yet
close 450707 




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



Bug#452370: tomcat5.5: build libservlet2.4-java package from Tomcat sources

2007-11-22 Thread Marcus Better
Package: tomcat5.5
Version: 5.5.25-1
Severity: normal

The libservlet2.4-java{-gcj} packages are currently built from source
package libservlet2.4-java, which contains only sources extracted from
Tomcat. This leads to source duplication which is a Bad Thing. (I
believe the reason for doing this was to break dependency cycles, but
now that Tomcat is in the archive there is no reason to do this.)

Unless someone opposes this, I am going to have tomcat5.5 build those
packages instead. Then the libservlet2.4-java source package can be
removed.

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

Kernel: Linux 2.6.24-rc3-lg (PREEMPT)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tomcat5.5 depends on:
ii  adduser  3.105   add and remove users and groups
ii  gij-4.1 [java2-runti 4.1.2-16The GNU Java bytecode interpreter
ii  gij-4.2 [java2-runti 4.2.1-5 The GNU Java bytecode interpreter
ii  java-gcj-compat-dev  1.0.76-5Java runtime environment with GCJ
ii  jsvc 1.0.2~svn20061127-6 wrapper to launch Java application
ii  libecj-java  3.3.0+0728-2Eclipse Java compiler (library)
ii  libtomcat5.5-java5.5.25-1Java Servlet engine -- core librar
ii  sun-java6-jre [java2 6-03-2  Sun Java(TM) Runtime Environment (

tomcat5.5 recommends no packages.

-- no debconf information



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



Bug#431883: dcraw license changed

2007-11-22 Thread Patrice Vetsel
The text licence changed, can we close this bug ?



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



Bug#452282: gstreamer0.10: Crackling sound after upgrade

2007-11-22 Thread Sebastian Dröge
Am Donnerstag, den 22.11.2007, 00:13 +0100 schrieb Mathias Brodala:
 Hi.
 
 Sebastian Dröge, 21.11.2007 19:23:
  Am Mittwoch, den 21.11.2007, 16:46 +0100 schrieb Mathias Brodala:
  After upgrading to the latest version playing any file results in cracks 
  during
  playback. Downgrading all gstreamer0.10 related packages to the Testing 
  version
  fixes this problem for now. I’m using a soundcard with the CMI8783 chipset.
  
  can you do
  GST_DEBUG=5 GST_DEBUG_NO_COLOR=1 gst-launch-0.10 playbin
  uri=file:///path/to/file  log
  
  and attach the log (bzipped) to this bugreport?
 
 I did that including the output for the Testing packages for comparison
 purposes. I canceled the playback a few seconds after the cracks appeared to
 keep the logfile small. (And approx. the same time for the Testing 
 packages.)
 
 Since my mail was rejected because of its size, you can find both logfiles 
 here:
 
 http://download.noctus.net/logfiles/dbts/gst_0.10.14-2.log.bz2
 
 http://download.noctus.net/logfiles/dbts/gst_0.10.15-1.log.bz2

Also, could you try:

gst-launch-0.10 filesrc location=/path/to/file ! decodebin !
audioconvert ! alsasink

and

gst-launch-0.10 filesrc location=/path/to/file ! decodebin !
audioconvert ! audio/x-raw-int,width=16,depth=16 ! alsasink

(both in one line of course).

I'd assume that the first involves crackling and the second doesn't, can
you confirm that?




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



Bug#452369: ITP: libgtk2-ex-printdialog-perl -- a pure-perl alternative to the Gnome2::Print libraries

2007-11-22 Thread Jeffrey Ratcliffe
Package: wnpp
Severity: wishlist

* Package name: libgtk2-ex-printdialog-perl
 Version : 0.03
  Upstream Author : Gavin Brown (gavin dot brown at uk dot com)
* URL :
http://search.cpan.org/~gbrown/Gtk2-Ex-PrintDialog-0.03/lib/Gtk2/Ex/PrintDialog.pm
* License : Perl
 Programming Lang: Perl
  Description : a pure-perl alternative to the Gnome2::Print libraries

This module implements a dialog widget that can be used to print
PostScript data. It is intended to be a lightweight and pure-perl
alternative to the Gnome2::Print libraries.



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



Bug#452174: libgstreamer-plugins-base0.10-0: hangs at the end of tracks

2007-11-22 Thread Sebastian Dröge
Am Mittwoch, den 21.11.2007, 16:20 +0100 schrieb Sebastian Dröge:
 forwarded 452174 http://bugzilla.gnome.org/show_bug.cgi?id=498767
 reassign 452174 gstreamer0.10
 tags 452174 + confirmed upstream
 thanks
 
 Am Dienstag, den 20.11.2007, 20:46 +0100 schrieb Adeodato Simó:
  Package: gstreamer0.10-plugins-ugly
  Version: 0.10.15-1
  Severity: normal
  Tags: upstream
  
  Hello.
  
  After upgrading libgstreamer-plugins-base0.10-0 to the latest version, I
  noticed that my media player, which uses GStreamer via PyGST, would hang
  at the end of each song. It would not hang indefinitely, but still, for
  a long long while.
  
  Attached is a minimal python program that exhibits the problem: with
  libgstreamer-plugins-base0.10-0 0.10.14-4 it starts a new track after
  the previous one finishes, but with 0.10.15 it hangs. You should be able
  to check the difference with the files at [1], which are 1 second long
  each: the stops will be short, but noticeable. Use longer tracks for the
  effect to become more evident.
  
[1] http://chistera.yi.org/~adeodato/tmp/2007-11-20/gstbug/
  
  I hope you can reproduce the problem.
 
 Yes, I can confirm this. Updating only gstreamer core from 0.10.14 to
 0.10.15 makes the problem visible already so reassigning to that.
 
 Also it's forwarded upstream now: 
 http://bugzilla.gnome.org/show_bug.cgi?id=498767

And it's already fixed upstream... I'll probably cherry-pick some
upstream fixes in the next days unless there's a bugfix release.




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



Bug#452339: dpkg-dev: fails to parse some shlibs files

2007-11-22 Thread Aurelien Jarno
On Thu, Nov 22, 2007 at 09:11:50AM +0100, Raphael Hertzog wrote:
 On Thu, 22 Nov 2007, Aurelien Jarno wrote:
  Package: dpkg-dev
  Version: 1.14.9
  Severity: serious
  
  From my build log:
  
  dh_compress -pkzenexplorer -X .dcl -X .docbook -X -license -X .tag -X .sty 
  -X .el
  dh_fixperms -pkzenexplorer
  dh_makeshlibs -pkzenexplorer
  dh_installdeb -pkzenexplorer
  dh_perl -pkzenexplorer
  dh_shlibdeps -pkzenexplorer
  dpkg-shlibdeps: failure: No dependency information found for 
  libusb-0.1.so.4 (used by debian/kzenexplorer/usr/bin/kzenexplorer).
  dh_shlibdeps: command returned error code 65280
  make: *** [binary-predeb-IMPL/kzenexplorer] Error 1
  
  But libusb-0.1.so.4 has a shlib file:
  
  [volta:~]$ cat /var/lib/dpkg/info/libusb-0.1-4.shlibs
  libusb-0.1 4 libusb-0.1-4 (= 2:0.1.12)
  udeb: libusb-0.1 4 libusb-0.1-udeb (= 2:0.1.12)
 
 I can't reproduce this on i386 while building kzenexplorer_0.6-1. I fear
 that the lookup of the library on amd64 provides a name which is not the
 real name but somehow a symlink lib like /usr/lib64/libusb-0.1-4 since
 we're now respecting ld.so.conf properly with includes.
 
 Can you apply the attached patch to dpkg-shlibdeps and re-run the build after
 adding -v to dpkg-shlibdeps (use dh_slibdeps -- -v for this), that way
 I'll have all the required information.

Scanning debian/kzenexplorer/usr/bin/kzenexplorer (for Depends field)
Library libkutils.so.1 found in /usr/lib/libkutils.so.1
Library libkio.so.4 found in /usr/lib/libkio.so.4
Library libkdeui.so.4 found in /usr/lib/libkdeui.so.4
Library libkdesu.so.4 found in /usr/lib/libkdesu.so.4
Library libkwalletclient.so.1 found in /usr/lib/libkwalletclient.so.1
Library libkdecore.so.4 found in /usr/lib/libkdecore.so.4
Library libDCOP.so.4 found in /usr/lib/libDCOP.so.4
Library libresolv.so.2 found in /lib/libresolv.so.2
Library libutil.so.1 found in /lib/libutil.so.1
Library libart_lgpl_2.so.2 found in /usr/lib/libart_lgpl_2.so.2
Library libidn.so.11 found in /usr/lib/libidn.so.11
Library libkdefx.so.4 found in /usr/lib/libkdefx.so.4
Library libqt-mt.so.3 found in /usr/lib/libqt-mt.so.3
Library libaudio.so.2 found in /usr/lib/libaudio.so.2
Library libXt.so.6 found in /usr/lib/libXt.so.6
Library libjpeg.so.62 found in /usr/lib/libjpeg.so.62
Library libXi.so.6 found in /usr/lib/libXi.so.6
Library libXrandr.so.2 found in /usr/lib/libXrandr.so.2
Library libXcursor.so.1 found in /usr/lib/libXcursor.so.1
Library libXinerama.so.1 found in /usr/lib/libXinerama.so.1
Library libXft.so.2 found in /usr/lib/libXft.so.2
Library libfreetype.so.6 found in /usr/lib/libfreetype.so.6
Library libfontconfig.so.1 found in /usr/lib/libfontconfig.so.1
Library libdl.so.2 found in /lib/libdl.so.2
Library libpng12.so.0 found in /usr/lib/libpng12.so.0
Library libXext.so.6 found in /usr/lib/libXext.so.6
Library libX11.so.6 found in /usr/lib/libX11.so.6
Library libSM.so.6 found in /usr/lib/libSM.so.6
Library libICE.so.6 found in /usr/lib/libICE.so.6
Library libpthread.so.0 found in /lib/libpthread.so.0
Library libXrender.so.1 found in /usr/lib/libXrender.so.1
Library libfam.so.0 found in /usr/lib/libfam.so.0
Library libacl.so.1 found in /lib/libacl.so.1
Library libattr.so.1 found in /lib/libattr.so.1
Library libtag.so.1 found in /usr/lib/libtag.so.1
Library libz.so.1 found in /usr/lib/libz.so.1
Library libnjb.so.5 found in /usr/lib/libnjb.so.5
Library libusb-0.1.so.4 found in /usr/lib/libusb-0.1.so.4
Library libstdc++.so.6 found in /usr/lib/libstdc++.so.6
Library libm.so.6 found in /lib/libm.so.6
Library libgcc_s.so.1 found in /lib/libgcc_s.so.1
Library libc.so.6 found in /lib/libc.so.6
Looking up shlibs dependency of libXft.so.2 provided by 'libxft2'
Found libxft2 ( 2.1.1) in /var/lib/dpkg/info/libxft2.shlibs
Looking up shlibs dependency of libm.so.6 provided by 'libc6'
Found libc6 (= 2.6.1-1) in /var/lib/dpkg/info/libc6.shlibs
Looking up shlibs dependency of libjpeg.so.62 provided by 'libjpeg62'
Found libjpeg62 in /var/lib/dpkg/info/libjpeg62.shlibs
Looking up shlibs dependency of libkio.so.4 provided by 'kdelibs4c2a'
Found kdelibs4c2a (= 4:3.5.7-1) in /var/lib/dpkg/info/kdelibs4c2a.shlibs
Looking up shlibs dependency of libXrandr.so.2 provided by 'libxrandr2'
Found libxrandr2 (= 2:1.2.0) in /var/lib/dpkg/info/libxrandr2.shlibs
Looking up shlibs dependency of libDCOP.so.4 provided by 'kdelibs4c2a'
Found kdelibs4c2a (= 4:3.5.7-1) in /var/lib/dpkg/info/kdelibs4c2a.shlibs
Looking up shlibs dependency of libqt-mt.so.3 provided by 'libqt3-mt'
Found libqt3-mt (= 3:3.3.7) in /var/lib/dpkg/info/libqt3-mt.shlibs
Looking up shlibs dependency of libkdeui.so.4 provided by 'kdelibs4c2a'
Found kdelibs4c2a (= 4:3.5.7-1) in /var/lib/dpkg/info/kdelibs4c2a.shlibs
Looking up shlibs dependency of libICE.so.6 provided by 'libice6'
Found libice6 (= 1:1.0.0) in /var/lib/dpkg/info/libice6.shlibs
Looking up shlibs dependency of libfreetype.so.6 provided by 'libfreetype6'
Found libfreetype6 (= 2.3.5) in /var/lib/dpkg/info/libfreetype6.shlibs
Looking up shlibs 

Bug#452363: /init: .: 150: Can't open /scripts/live

2007-11-22 Thread Henning Sprang
Rafał Krypa wrote:
 [...]
 But I am using FAI 3.2.1 on Debian testing. It seems that default FAI
 configuration is lacking, because fai-setup uses packages from Etch to
 create its environment and required package live-initramfs is not there.
 Adding 'deb http://www.backports.org/debian etch-backports main contrib
 non-free' to /etc/fai/apt/sources.list solves this problem for me.
 
 

Hmm, yes, the problem is a different one, then:
/etc/fai/apt/sources.list still contains etch, as well as
make-fai-nfsroot.conf - change it to use lenny (and hpe this goes well,
as it's obviously not tested a lot yet.

This bug is valid, then, but should get a better name... like string
etch hardcoded in some fai config files

Henning



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



Bug#452367: hal: can no longer suspend

2007-11-22 Thread Martin Pitt
Hi,

Benoît Dejean [2007-11-22 10:42 +0100]:
 hal can no longer suspend my laptop.
 gnome-power-manager no longer shows the suspend option and
 
 $ sudo /usr/sbin/pm-suspend
 Error: kernel cannot suspend to ram.

Just a quick note: This is an issue in pm-utils. On powerpc,
/sys/power/state only contains 'disk', not 'mem'. On powerpc with a
PMU the prefered way of querying sleep capability and causing
suspend-to-ram is to use a sysctl (see attached script from Ubuntu's
powermanagement-interface). I believe that echoing 'mem' to
/sys/power/state works, too, though.

So this needs a quirk/fix/workaround in pm-utils.

Martin

-- 
Martin Pitthttp://www.piware.de
Ubuntu Developer   http://www.ubuntu.com
Debian Developer   http://www.debian.org
#!/bin/bash

# This is the PowerPC version of PMI.

# (C) 2006 Martin Pitt [EMAIL PROTECTED]

command=$1
event=$2

usage () {
echo Usage: $0 query|action event 2
echo$0 capabilities 2
exit 254
}

query () {
[ ! -z $1 ]  event=$1
case $event in
suspend|sleep)
perl  EOF
sub PMU_IOC_CAN_SLEEP { 0x40044205; }
open PMU, '/dev/pmu' or die open /dev/pmu: \$!;
\$p = pack 'l', 0;
ioctl PMU, PMU_IOC_CAN_SLEEP, \$p or die ioctl: \$!;
(\$v) = unpack 'l', \$p;
exit (\$v ? 0 : 1);
EOF
result=$?
;;
hibernate)
# no hibernation support at the moment
result=1
;;
*)
result=1
echo No such event found 2
;;
esac
}

call_scripts() {
if [ -x /etc/apm/apmd_proxy ]; then
/etc/apm/apmd_proxy $1 $2
else
run-parts --arg=$1 --arg=$2 /etc/apm/event.d
if [ -d /etc/apm/$1.d ]; then
run-parts --arg=$1 --arg=$2 /etc/apm/$1.d
fi
fi
}

run () {
case $1 in
suspend|sleep)
# call suspend scripts
call_scripts suspend user

# trigger sleep
perl EOF
sub PMU_IOC_SLEEP { 0x20004200; }
open PMU, /dev/pmu or die open /dev/pmu: \$!;
ioctl PMU, PMU_IOC_SLEEP, 0;
EOF

# call resume scripts
call_scripts resume suspend
;;
hibernate)
echo 'Not implemented' 2
;;
*)
echo No such event found 2
;;
esac
}

capabilities () {
for i in hibernate suspend; do 
query $i 
[ $result -eq 0 ]  caps=$caps $i
done
echo $caps
}

case $command in
query)
query $event
exit $result
;;
action)
run $event
;;
capabilities)
capabilities
;;
*)
usage
;;
esac

exit 0


signature.asc
Description: Digital signature


Bug#452371: network-manager: Scripts in if-up.d are executed with PHASE=up instead of PHASE=post-up

2007-11-22 Thread Michal Sojka
Package: network-manager
Version: 0.6.5-3
Severity: normal
Tags: patch

According to interfaces(5) scripts in /etc/network/if-up.d/ should be
executed with PAHSE equal to post-up. NetworkManager sets this to
up.

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

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

Versions of packages network-manager depends on:
ii  adduser 3.105add and remove users and groups
ii  dbus1.1.1-3  simple interprocess messaging syst
ii  dhcdbd  3.0-1D-Bus interface to the ISC DHCP cl
ii  hal 0.5.10-2 Hardware Abstraction Layer
ii  ifupdown0.6.8high level tools to configure netw
ii  iproute 20070313-1   Professional tools to control the 
ii  iputils-arping  3:20070202-3 Tool to send ICMP echo requests to
ii  libc6   2.6.1-6  GNU C Library: Shared libraries
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libgcrypt11 1.2.4-2  LGPL Crypto library - runtime libr
ii  libglib2.0-02.14.3-1 The GLib library of C routines
ii  libgpg-error0   1.4-2library for common error values an
ii  libhal1 0.5.10-2 Hardware Abstraction Layer - share
ii  libiw29 29-1 Wireless tools - library
ii  libnl1-pre6 1.0~pre6-6   Library for dealing with netlink s
ii  libnm-util0 0.6.5-3  network management framework (shar
ii  lsb-base3.1-24   Linux Standard Base 3.1 init scrip
ii  wpasupplicant   0.6.0-4  Client support for WPA and WPA2 (I

Versions of packages network-manager recommends:
ii  network-manager-kde   1:0.2-2KDE systray applet for controlling

-- no debconf information
Index: network-manager-0.6.5/debian/network-manager-dispatcher.script
===
--- network-manager-0.6.5.orig/debian/network-manager-dispatcher.script 
2007-11-22 11:07:26.0 +0100
+++ network-manager-0.6.5/debian/network-manager-dispatcher.script  
2007-11-22 11:08:39.0 +0100
@@ -19,7 +19,7 @@
 case $2 in
 up)
export MODE=start
-   export PHASE=up
+   export PHASE=post-up
exec run-parts /etc/network/if-up.d
;;
 down)


Bug#446287: Info received (Bug#446287: closed by Leo Costela [EMAIL PROTECTED] (Bug#446287: fixed in gnokii 0.6.20-1))

2007-11-22 Thread Pawel Kot
Hi,

On Nov 20, 2007 10:34 PM, Pawel Kot [EMAIL PROTECTED] wrote:
 Hi,

 On Nov 15, 2007 4:21 PM, Dirk Meul [EMAIL PROTECTED] wrote:
  The bug still exists in 0.6.21. Pawel Kot can reproduce the error, but
  did not know how to fix it.

 It seems to me that there's a problem with libusb which looses data.
 You can workaround a problem (that should help for some cases, among
 them --getsms) by extending buffer in fbus-phonet.c in phonet_loop()
 to 1024.

Okay. This is fixed. And by accident 1024 was the value that is
correct as well. Buffer size must be multiplication of 64. And then it
works. So current CVS is fine, and 0.6.22 will be fine as well. If you
want quick fix in debian, go to common/links/fbus-phonet.c,
phonet_loop() function, and change all occurrencies of 255 with 256.

take care,
pkot
-- 
Pawel Kot



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



Bug#448376: Patch for Mercurial to use sensible-editor

2007-11-22 Thread Paul Crowley

Vincent Danjean wrote:

  I reopen 448376 and will close it when your patch will be integrated.
I will not have the time to do so before a few days. If you want to
provide a patch to update debian/patches/deb_specific__use_VISUAL_envvar.patch
(in the source package), it will be faster. Else, wait a few weeks :-)


The best fix is to remove all the code that checks EDITOR and VISUAL and 
call sensible-editor directly - it performs all of these checks.

--
  [][][] Paul Crowley
[][] LShift Ltd
  []  [] www.lshift.net



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



Bug#452375: please remove make-fai-bootfloppy

2007-11-22 Thread Holger Levsen
package: fai
version: 3.2.1

Hi,

since fai-kernels has been removed, make-fai-bootfloppy is obsolete, doesnt 
work anymore, so it shouldnt be part of the package and shouldnt be mentioned 
in the guide. Please remove it and its references. Thanks.


regards,
Holger


pgpRoixn62aLp.pgp
Description: PGP signature


Bug#451571: xserver-xorg-video-intel: uses lots of CPU with Compiz and (new default) EXA

2007-11-22 Thread Michel Dänzer

On Wed, 2007-11-21 at 18:26 +, brian m. carlson wrote:
 On Wed, Nov 21, 2007 at 12:19:25PM +0100, Michel Dänzer wrote:
 Not really; the problem is that GLX_EXT_texture_from_pixmap is
 implemented inefficiently. XaaNoOffscreenPixmaps just happens to make it
 usable, at the cost of basically disabling 2D acceleration. While the
 same workaround could be implemented for EXA, there's little point in
 using it (or XAA, for that matter) at all in that case. So there's
 really no point in implementing such an option for EXA, compared to just
 switching to XAA.
 
 Ah.  That explains a lot.  However, XVideo doesn't work with XAA, while 
 it does with EXA.  Upstream has no intention of fixing this, AFAIK.  
 Which means that programs (like miro) that don't allow disabling XVideo 
 don't work with XAA.  Oops.

It's not a matter of intention but simply not fixable reliably with XAA.
(Textured video also can't work without offscreen memory)


 With the i915tex Mesa driver (or the i915 driver from upstream Git, but
 that also requires xserver Git), EXA allows for more efficient
 GLX_EXT_texture_from_pixmap together with 2D acceleration, but
 unfortunately this is difficult to set up.
 
 How do I enable the i915tex driver?  It seems it's already present in 
 libgl1-mesa-dri.

At the very least, you need libdrm and the i915 kernel module from the
drm Git branch i915tex-compat. I'm not sure it'll work without
rebuilding Mesa and/or xf86-video-intel (2.1; 2.2 is incompatible with
i915tex, it requires the i915 driver from mesa Git master for this)
though. Then you'll need Option Legacy3D off to make it use i915tex
instead of i915.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer




Bug#452339: dpkg-dev: fails to parse some shlibs files

2007-11-22 Thread Raphael Hertzog
On Thu, 22 Nov 2007, Aurelien Jarno wrote:
 No associated package found for /usr/lib/libusb-0.1.so.4
 dpkg-shlibdeps: failure: No dependency information found for libusb-0.1.so.4 
 (used by debian/kzenexplorer/usr/bin/kzenexplorer).
 Looking up shlibs dependency of libusb-0.1.so.4 provided by ''
 Found nothing
 dh_shlibdeps: command returned error code 65280

What happened is:
- kzenexplorer has an RPATH /usr/lib:/lib on amd64 (and not on i386)
- the new dpkg-shlibdeps now support this directive correctly
- thus it finds a symlink in /usr/lib/libusb-0.1.so.4 which has been
  created by ldconfig and which is not owned by any package
  (instead of finding the packaged symlink in /lib/libusb-0.1.so.4)

So my diagnostic was not far from the truth. I supposed that I should try
a dpkg -S on realpath(library) as fallback when I don't find an associated
package.

Cheers,
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/




Bug#452174: libgstreamer-plugins-base0.10-0: hangs at the end of tracks

2007-11-22 Thread Adeodato Simó
* Sebastian Dröge [Thu, 22 Nov 2007 11:11:09 +0100]:

 Am Mittwoch, den 21.11.2007, 16:20 +0100 schrieb Sebastian Dröge:
  Yes, I can confirm this. Updating only gstreamer core from 0.10.14 to
  0.10.15 makes the problem visible already so reassigning to that.

  Also it's forwarded upstream now: 
  http://bugzilla.gnome.org/show_bug.cgi?id=498767

 And it's already fixed upstream... I'll probably cherry-pick some
 upstream fixes in the next days unless there's a bugfix release.

Thanks a lot!

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
As scarce as truth is, the supply has always been in excess of the demand.
-- Josh Billings





Bug#452372: xserver-xorg-video-intel: X crashes after playing a video

2007-11-22 Thread Eamonn Hamilton
Package: xserver-xorg-video-intel
Version: 2:2.2.0-1
Severity: normal


Hi,

X crashes after playing a video. This is repeatable using both totem and
mplayer. After the crash, the following is left in the log :

Backtrace:
0: /usr/bin/X(xf86SigHandler+0x7e) [0x80c660e]
1: [0xb7f52420]
2: /lib/libc.so.6(vsnprintf+0xb4) [0xb7d29bd4]
3: /usr/bin/X(LogVWrite+0xb7) [0x81bac47]
4: /usr/bin/X(LogVMessageVerb+0x99) [0x81bb189]
5: /usr/bin/X(xf86VDrvMsgVerb+0xda) [0x80d01ca]
6: /usr/bin/X(xf86DrvMsg+0x3d) [0x80d11ad]
7: /usr/lib/xorg/modules/drivers//intel_drv.so [0xb7aef207]
8: /usr/lib/xorg/modules/drivers//intel_drv.so(i830_free_memory+0x24)
[0xb7aeffa4]
9: /usr/lib/xorg/modules/drivers//intel_drv.so [0xb7af306a]
10: /usr/bin/X [0x80d7fa3]
11: /usr/lib/xorg/modules/extensions//libdbe.so [0xb7f49865]
12: /usr/bin/X(compDestroyWindow+0xc5) [0x8103575]
13: /usr/bin/X [0x807bc11]
14: /usr/bin/X(DeleteWindow+0x158) [0x807be08]
15: /usr/bin/X(FreeResource+0x12c) [0x80762ec]
16: /usr/bin/X(ProcDestroyWindow+0x7f) [0x808946f]
17: /usr/bin/X [0x814d60e]
18: /usr/bin/X(Dispatch+0x2bf) [0x808d1ff]
19: /usr/bin/X(main+0x48b) [0x807474b]
20: /lib/libc.so.6(__libc_start_main+0xe0) [0xb7cdd450]
21: /usr/bin/X(FontFileCompleteXLFD+0x20d) [0x8073ac1]

Fatal server error:
Caught signal 11.  Server aborting


Cheers,
Eamonn



-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-04-17 16:24 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1672732 2007-11-20 02:03 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82865G Integrated Graphics 
Controller (rev 02)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2981 2007-11-05 14:02 /etc/X11/xorg.conf

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

Section Files
FontPath/usr/share/fonts/X11/misc
FontPath/usr/share/fonts/X11/cyrillic
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/100dpi
FontPath/usr/share/fonts/X11/75dpi
# path to defoma fonts
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadtype1
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  compaqeak8
Option  XkbLayout gb
Option  XkbOptionsaltwin:meta_win
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ExplorerPS/2
EndSection

Section Device
Identifier  Intel 810
Driver  intel
#Option AccelMethod EXA
Option  XAANoOffscreenPixmaps true
Option  AddARGBGLXVisuals true
Option  AllowGLXWithComposite true
EndSection

Section Monitor
Identifier  Generic Monitor
Option  DPMS
HorizSync   30-70
VertRefresh 50-170
EndSection

Section Screen
Identifier  Default Screen
Device  Intel 810
Monitor Generic Monitor
DefaultDepth24
SubSection Display
Depth   1
Modes   1280x1024 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1280x1024 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   1280x1024 

Bug#452373: ITP: glam2 -- Gapped Local Alignment of Motifs

2007-11-22 Thread Charles Plessy
Package: wnpp
Severity: wishlist
Owner: Charles Plessy [EMAIL PROTECTED]

  Package name: glam2
  Version : 1023 
  Upstream Authors: Martin C Frith [EMAIL PROTECTED]
Timothy L Bailey [EMAIL PROTECTED]
  URL : http://bioinformatics.org.au/glam2
  License : Public domain
  Programming Lang: C
  Description : Gapped Local Alignment of Motifs

 GLAM2 is a software package for finding motifs in sequences, typically
 amino-acid or nucleotide sequences. A motif is a re-occurring sequence
 pattern: typical examples are the TATA box and the CAAX prenylation
 motif. The main innovation of GLAM2 is that it allows insertions and
 deletions in motifs.

Packaging was started by Steffen Möller, and is almost finished. There
is a PDF file with no sources, but this time one of the authors is a
friend, so getting them will be piece of cake.

-- 
Charles Plessy
Debian-Med packaging team
Wakō, Saitama, Japan



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



Bug#452374: gnome-orca: Fails to start: ImportError: No module named brl

2007-11-22 Thread Yavor Doganov
Package: gnome-orca
Version: 2.20.1-2
Severity: grave

Orca currently fails to start:

[EMAIL PROTECTED]:~$ orca
Traceback (most recent call last):
  File string, line 1, in ?
  File /var/lib/python-support/python2.4/orca/orca.py, line 55, in ?
import braille
  File /var/lib/python-support/python2.4/orca/braille.py, line 53, in ?
import brl
ImportError: No module named brl

python-brlapi is not in testing (yet) but it seems that orca should
depend on it instead of only recommending it.  I could be wrong,
though.

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

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

Versions of packages gnome-orca depends on:
ii  at-spi1.20.1-1   Assistive Technology Service Provi
ii  libatspi1.0-0 1.20.1-1   C binding libraries of at-spi for 
ii  libgnome-speech7  1:0.4.16-2 GNOME text-to-speech library
ii  python2.4.4-6An interactive high-level object-o
ii  python-glade2 2.12.0-1   GTK+ bindings: Glade support
ii  python-gnome2 2.20.0-1   Python bindings for the GNOME desk
ii  python-gtk2   2.12.0-1   Python bindings for the GTK+ widge
ii  python-pyorbit2.14.3-2   A Python language binding for the 
ii  python-support0.7.5  automated rebuilding support for p

Versions of packages gnome-orca recommends:
ii  gnome-mag 1:0.14.6-1 a screen magnifier for the GNOME d
pn  python-brlapi none (no description available)
ii  wget  1.10.2-3   retrieves files from the web

-- debconf-show failed



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



Bug#397440: Fwd: Accepted hplip 2.7.10-2 (source i386 all)

2007-11-22 Thread Fabian Greffrath

Henrique de Moraes Holschuh schrieb:
The PPDs are not guaranteed to be the same.  


I didn't mean that. I meant that most users have only one printer which 
is either postscript-capable or not. In a previous mail you explained to 
me that Postscript-PPDs are in linuxprinting.org-ppds and 
non-Postscript-PPDs are in hpijs-ppds. Having *both* packages installed 
will be unnecessary for many users, since most of the own only *one* 
printer.


--
Dipl.-Phys. Fabian Greffrath

Ruhr-Universität Bochum
Lehrstuhl für Energieanlagen und Energieprozesstechnik (LEAT)
Universitätsstr. 150, IB 3/134
D-44780 Bochum

Telefon: +49 (0)234 / 32-26334
Fax: +49 (0)234 / 32-14227
E-Mail:  [EMAIL PROTECTED]




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



Bug#452376: xserver-xorg-video-i810: Screen corrupted after suspend to ram

2007-11-22 Thread Mark Small
Package: xserver-xorg-video-i810
Version: 2:2.1.0-2
Severity: normal


I've been trying to get suspend to ram working on my Dell C400 laptop.  
I've got things mostly working, except I get video corruption after 
resuming.  Most icons get black borders and konsole is almost all black.

I've read reports of similiar problems that were solved by adding 
VBERestore to the proper section of of xorg.conf, but that option was 
removed from recent versions of the i810 driver.



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

Kernel: Linux 2.6.22-14-generic (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/bash

Versions of packages xserver-xorg-video-i810 depends on:
ii  xserver-xorg-video-intel  2:2.1.0-2  X.Org X server -- Intel i8xx, i9xx

xserver-xorg-video-i810 recommends no packages.

-- no debconf information



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



Bug#244490: ubuntu xaos xdg compliance patch (including icon)

2007-11-22 Thread Oliver Grawert
hi,

you probably might want to take a look at the icon and .desktop file
patch i created for xaos in edubuntu. it can be found under:
http://people.ubuntu.com/~ogra/xaos/xaos_xdg_compliance.patch

ciao
oli


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


Bug#452363: /init: .: 150: Can't open /scripts/live

2007-11-22 Thread Holger Levsen
retitle 452363 fai 3.2 does not work (out-of-the-box) on lenny and sid
thanks

Hi,

I wonder if fai should be branched then. IMO the version in sid/lenny should 
work and install sid or lenny, but not etch. It's _great_ to have one 3.2.1 
version which supports etch, but maybe this should be 3.2.1~etch.1 and 3.2.1 
should work with lenny.

Can't be hard to automate this branch :-)


regards,
Holger


pgpeOEnfSekUv.pgp
Description: PGP signature


Bug#452375: please remove make-fai-bootfloppy

2007-11-22 Thread Henning Sprang
Or, as still some people might(and do!) have NIC'S that cannot PXE and
don't boot with etherboot, rename it to fai-make-boot-iso and make it
produce isos (as floppies are too small for the kernel, but iso's not)

:)



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



Bug#448619: [Pkg-utopia-maintainers] Bug#448619: Bug#448619: Instalando network-manager (0.6.5-3) ...

2007-11-22 Thread rafael ferraz

--- Michael Biebl [EMAIL PROTECTED] escreveu:

 rafael ferraz schrieb:
  
  Message from [EMAIL PROTECTED] at Fri Nov  9
 07:22:42
  2007 ...
  barton2800 kernel: [ cut here
  ]
  
  Message from [EMAIL PROTECTED] at Fri Nov  9
 07:22:42
  2007 ...
  barton2800 kernel: invalid opcode:  [#1]
  
  Message from [EMAIL PROTECTED] at Fri Nov  9
 07:22:42
  2007 ...
  barton2800 kernel: SMP 
  
  Message from [EMAIL PROTECTED] at Fri Nov  9
 07:22:42
  2007 ...
  barton2800 kernel: CPU:0
  
  Message from [EMAIL PROTECTED] at Fri Nov  9
 07:22:42
  2007 ...
  barton2800 kernel: EIP:0060:[e10e54b9]   
  Tainted: P   VLI
  
  Message from [EMAIL PROTECTED] at Fri Nov  9
 07:22:42
  2007 ...
  barton2800 kernel: EFLAGS: 00010282   (2.6.22-3-k7
 #1)
  
  Message from [EMAIL PROTECTED] at Fri Nov  9
 07:22:42
  2007 ...
  barton2800 kernel: EIP is at LinkDown+0xf7/0x35b
  [rt61]
  
 
 Honestly, this looks like a kernel/driver problem
 and not a bug within
 NM. Which driver are you using?
 Which modules are loaded? Do you have a
 self-compiled kernel or a Debian
 kernel?
 
 Cheers,
 Michael
 
 -- 
 Why is it that all of the instruments seeking
 intelligent life in the
 universe are pointed away from Earth?
 
 
Im using a debian kernel.. im having a bug with the
rt61 driver (http://rt2x00.serialmonkey.com/) but if i
unload the driver i keep receiving NM errors..
here is my lsmod:
---
Module  Size  Used by
rt61  189768  1 
ipv6  239524  8 
ppdev   8964  0 
lp 11300  0 
button  8208  0 
ac  5508  0 
battery10308  0 
cpufreq_conservative 7176  0 
cpufreq_powersave   2112  0 
cpufreq_userspace   4448  0 
cpufreq_stats   5440  0 
cpufreq_ondemand8652  0 
freq_table  4832  2
cpufreq_stats,cpufreq_ondemand
nls_utf82368  1 
ntfs  207104  1 
dm_snapshot17252  0 
dm_mirror  21376  0 
dm_mod 52672  2 dm_snapshot,dm_mirror
snd_pcm_oss39904  0 
snd_mixer_oss  15872  1 snd_pcm_oss
w83l785ts   7376  0 
asb100 19284  0 
hwmon_vid   3264  1 asb100
eeprom  7504  0 
loop   17412  0 
nvidiafb   44892  0 
fb_ddc  2880  1 nvidiafb
i2c_algo_bit6276  1 nvidiafb
vgastate8576  1 nvidiafb
snd_mpu401  8104  0 
snd_mpu401_uart 8384  1 snd_mpu401
snd_intel8x0   32412  1 
ns558   4992  0 
snd_rawmidi23264  1 snd_mpu401_uart
snd_seq_device  8012  1 snd_rawmidi
firmware_class  9984  1 rt61
snd_ac97_codec 93220  1 snd_intel8x0
gameport   15304  2 ns558
parport_pc 34212  1 
parport34312  3 ppdev,lp,parport_pc
nvidia   6216272  24 
ac97_bus2560  1 snd_ac97_codec
snd_pcm72772  3
snd_pcm_oss,snd_intel8x0,snd_ac97_codec
snd_timer  21380  1 snd_pcm
snd48804  12
snd_pcm_oss,snd_mixer_oss,snd_mpu401,snd_mpu401_uart,snd_intel8x0,snd_rawmidi,snd_seq_device,snd_ac97_codec,snd_pcm,snd_timer
soundcore   7840  1 snd
rtc_cmos8416  0 
rtc_core   17864  1 rtc_cmos
rtc_lib 3328  1 rtc_core
snd_page_alloc 10376  2 snd_intel8x0,snd_pcm
i2c_nforce2 6144  0 
shpchp 31380  0 
pci_hotplug29568  1 shpchp
i2c_core   24000  8
w83l785ts,asb100,eeprom,nvidiafb,fb_ddc,i2c_algo_bit,nvidia,i2c_nforce2
nvidia_agp  8732  1 
agpgart32264  2 nvidia,nvidia_agp
tsdev   8320  0 
evdev   9664  3 
ext3  122696  1 
jbd55848  1 ext3
mbcache 8580  1 ext3
ide_cd 36896  0 
cdrom  33184  1 ide_cd
ide_disk   16832  4 
ata_generic 7876  0 
libata117232  1 ata_generic
scsi_mod  137356  1 libata
amd74xx13788  0 [permanent]
usbhid 26144  0 
hid25792  1 usbhid
floppy 55332  0 
generic 5124  0 [permanent]
ide_core  114436  4
ide_cd,ide_disk,amd74xx,generic
ehci_hcd   31116  0 
forcedeth  46088  0 
ohci_hcd   20036  0 
usbcore   126024  4
usbhid,ehci_hcd,ohci_hcd
thermal13768  0 
processor  31560  1 thermal
fan 5124  0 
---
any ideia? here is my bug report on driver's forum
http://rt2x00.serialmonkey.com/phpBB2/viewtopic.php?t=4424
thx


  Abra sua conta no Yahoo! Mail, o único sem limite de espaço para 
armazenamento!
http://br.mail.yahoo.com/



-- 
To UNSUBSCRIBE, email to [EMAIL 

Bug#452375: please remove make-fai-bootfloppy

2007-11-22 Thread Holger Levsen
Hi,

I would just remove it *now*, as this is easy to do. (And removes the 
confusion for our users.)

If you want to add make-fai-bootfloppy-iso, I suggest you name it 
make-fai-iso ;-) and send a patch :-D But I really think this is a different 
bug/issue and should not block fixing this issue.


regards,
Holger, who sincerly believes NICs which dont support PXE and etherboot 
should just be ignored. A new gigabit NIC costs, what, 7 euro?


pgpZihcxdgBa2.pgp
Description: PGP signature


Bug#452370: tomcat5.5: build libservlet2.4-java package from Tomcatsources

2007-11-22 Thread Stefan Gybas

Hi Marcus,

On Thu, 22 Nov 2007 11:04:02 +0100, Marcus Better [EMAIL PROTECTED] wrote:

 [...] (I
 believe the reason for doing this was to break dependency cycles, but
 now that Tomcat is in the archive there is no reason to do this.)

I think the main reason was because Tomcat used to be in contrib for a long
time and we wanted the Servlet API to be in main. The packaging structure
was then simply adopted from the old Tomcat packages.

Stefan





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



Bug#452069: nfs-kernel-server: broken NFS server on Thecus N2100

2007-11-22 Thread Martin Michlmayr
* Daniel Smolik [EMAIL PROTECTED] [2007-11-21 22:03]:
 OK, I see it with 2.6.22... and it happens quite often too.
 And with 2.6.23 is it OK ?

This change, which went into 2.6.23, fixes the bug:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=864022344caf43dab7fa5219152280d056c6e051

I'll see whether we can backport this to 2.6.18.
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#446287: Info received (Bug#446287: closed by Leo Costela [EMAIL PROTECTED] (Bug#446287: fixed in gnokii 0.6.20-1))

2007-11-22 Thread Dirk Meul
Hello,

Pawel Kot:
 Okay. This is fixed. And by accident 1024 was the value that is
 correct as well. Buffer size must be multiplication of 64. And then it
 works. So current CVS is fine, and 0.6.22 will be fine as well. If you
 want quick fix in debian, go to common/links/fbus-phonet.c,
 phonet_loop() function, and change all occurrencies of 255 with 256.

with this change it works for me.

Thank you,
Dirk Meul




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



Bug#397440: Fwd: Accepted hplip 2.7.10-2 (source i386 all)

2007-11-22 Thread Henrique de Moraes Holschuh
On Thu, 22 Nov 2007, Fabian Greffrath wrote:
 Henrique de Moraes Holschuh schrieb:
 The PPDs are not guaranteed to be the same.  

 I didn't mean that. I meant that most users have only one printer which is 
 either postscript-capable or not. In a previous mail you explained to me 
 that Postscript-PPDs are in linuxprinting.org-ppds and non-Postscript-PPDs 
 are in hpijs-ppds. Having *both* packages installed will be unnecessary for 
 many users, since most of the own only *one* printer.

True. OTOH, in face of the whole hoopla about plug and play printer setup,
I don't know if it makes sense to mess with it.  Since it is just a
recommendation, you are already free to refuse to install either one, in
fact, you can refuse to install both if you don't need PPDs at all (for some
very weird reason).

That said, I agree that technically recommending one OR the other is good
enough, it satisfies what is required to run the package (and thus the
reason for a recommends instead of a suggests), and I am not heavily against
it.

Mark?

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



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



Bug#165227: maahaend

2007-11-22 Thread Fraser Moeller
Express your love and gratitude to your nearest and dearest one by giving her 
constant pleasure
http://vowelbrown.com/




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



Bug#95879: remmizhc

2007-11-22 Thread Gerardo durutaz
Do you believe in wonders? Neither had we We believed, ..till we discovered 
newED treatmentset
http://leadterm.com/




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



Bug#311358: penthora

2007-11-22 Thread Carlos Kiester
Learn what the ladies want
http://motionhole.com/




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



Bug#173970: edirobou

2007-11-22 Thread khae curiel
Learn what the ladies want
http://leadterm.com/




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



Bug#452378: linux-image-2.6.22-3-686: Unable to mount ipod

2007-11-22 Thread Sridhar M.A.
Package: linux-image-2.6.22-3-686
Version: 2.6.22-6
Severity: important


When I connect my Ipod, I get the following error messages in
/var/log/syslog. 

Nov 20 22:20:10 brahman kernel: usb 2-1: new high speed USB device using 
ehci_hcd and address 2
Nov 20 22:20:10 brahman kernel: usb 2-1: configuration #1 chosen from 1 choice
Nov 20 22:20:10 brahman kernel: Initializing USB Mass Storage driver...
Nov 20 22:20:10 brahman kernel: scsi2 : SCSI emulation for USB Mass Storage 
devices
Nov 20 22:20:10 brahman kernel: usbcore: registered new interface driver 
usb-storage
Nov 20 22:20:10 brahman kernel: USB Mass Storage support registered.
Nov 20 22:20:10 brahman kernel: usb-storage: device found at 2
Nov 20 22:20:10 brahman kernel: usb-storage: waiting for device to settle 
before scanning
Nov 20 22:20:11 brahman kernel: usb 2-1: USB disconnect, address 2
Nov 20 22:20:11 brahman udevd-event[3578]: unlink_secure: 
chown(/dev/bus/usb/002/002, 0, 0) failed: No such file or directory
Nov 20 22:20:11 brahman udevd-event[3578]: unlink_secure: 
chmod(/dev/bus/usb/002/002, ) failed: No such file or directory
Nov 20 22:20:11 brahman kernel: usb 2-1: new high speed USB device using 
ehci_hcd and address 3
Nov 20 22:20:11 brahman kernel: usb 2-1: configuration #1 chosen from 1 choice
Nov 20 22:20:11 brahman kernel: scsi3 : SCSI emulation for USB Mass Storage 
devices
Nov 20 22:20:11 brahman kernel: usb-storage: device found at 3
Nov 20 22:20:11 brahman kernel: usb-storage: waiting for device to settle 
before scanning
Nov 20 22:20:16 brahman kernel: usb-storage: device scan complete
Nov 20 22:20:16 brahman kernel: scsi 3:0:0:0: Direct-Access AppleiPod   
  1.62 PQ: 0 ANSI: 0
Nov 20 22:20:16 brahman kernel: usb 2-1: USB disconnect, address 3
Nov 20 22:20:16 brahman kernel: sd 3:0:0:0: [sdb] READ CAPACITY failed
Nov 20 22:20:16 brahman kernel: sd 3:0:0:0: [sdb] Result: hostbyte=DID_ERROR 
driverbyte=DRIVER_OK,SUGGEST_OK
Nov 20 22:20:16 brahman kernel: sd 3:0:0:0: [sdb] Sense not available.
Nov 20 22:20:16 brahman kernel: sd 3:0:0:0: [sdb] Write Protect is off
Nov 20 22:20:16 brahman kernel: sd 3:0:0:0: [sdb] Mode Sense: 00 00 00 00
Nov 20 22:20:16 brahman kernel: sd 3:0:0:0: [sdb] Assuming drive cache: write 
through
Nov 20 22:20:16 brahman kernel: sd 3:0:0:0: [sdb] Attached SCSI removable disk
Nov 20 22:20:16 brahman usb_id[3609]: usb_id: unable to access '/block/sdb'
Nov 20 22:20:16 brahman scsi_id[3610]: scsi_id: unable to access '/block/sdb'
Nov 20 22:20:16 brahman scsi_id[3611]: scsi_id: unable to access '/block/sdb'
Nov 20 22:20:16 brahman scsi_id[3613]: scsi_id: unable to access '/block/sdb'
Nov 20 22:20:17 brahman kernel: usb 2-1: new high speed USB device using 
ehci_hcd and address 4
Nov 20 22:20:17 brahman kernel: usb 2-1: configuration #1 chosen from 1 choice
Nov 20 22:20:17 brahman kernel: scsi4 : SCSI emulation for USB Mass Storage 
devices
Nov 20 22:20:17 brahman kernel: usb-storage: device found at 4


Due to this, I am unable to mount it and use it. On the same machine and
kernel, I can mount otehr usb keydrives and cards from my digicam.
Further, this behaviour is not seen under linux-image-2.6.18-686.

-- Package-specific info:
$ apt-cache show linux-image-2.6.22-3-686
Package: linux-image-2.6.22-3-686
Priority: optional
Section: admin
Installed-Size: 51696
Maintainer: Debian Kernel Team [EMAIL PROTECTED]
Architecture: i386
Source: linux-2.6
Version: 2.6.22-6
Provides: linux-image, linux-image-2.6, linux-modules-2.6.22-3-686
Depends: module-init-tools (= 0.9.13), initramfs-tools (= 0.55) |
yaird (= 0.0.12-8) | linux-initramfs-tool
Recommends: libc6-i686
Suggests: linux-doc-2.6.22, grub (= 0.97-3) | lilo (= 19.1)
Conflicts: grub (= 0.95+cvs20040624-17), initramfs-tools ( 0.55),
yaird ( 0.0.12-8)
Filename:
pool/main/l/linux-2.6/linux-image-2.6.22-3-686_2.6.22-6_i386.deb
Size: 18255066
MD5sum: 10f3d714d0f015d59296c51508f98eb6
SHA1: b29d816339bdc40bf1d063169f6e945073bb44a8
SHA256: 5f349b97b127ba519b07fe26e8f69552b30ff4ddf644e4b9c2b72e648d92129d
Description: Linux 2.6.22 image on PPro/Celeron/PII/PIII/P4
 This package provides the binary image and pre-built loadable modules
 for Linux kernel 2.6.22 on Pentium Pro/Celeron/Pentium II/Pentium
 III/Pentium 4 machines.


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

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

Versions of packages linux-image-2.6.22-3-686 depends on:
ii  initramfs-tools [linux-initr 0.90a   tools for generating an initramfs
ii  module-init-tools3.3-pre11-4 tools for managing Linux kernel mo

Versions of packages linux-image-2.6.22-3-686 recommends:
pn  libc6-i686none (no description available)

-- debconf information:
  

Bug#291822: Anand Kumria [EMAIL PROTECTED], Juliusz Chroboczek [EMAIL PROTECTED], Andreas Metzler [EMAIL PROTECTED]

2007-11-22 Thread DS
Hi All!

Maybe it will be an good idea to set 754 permission on
/var/log/polipo/? And proxy:adm owner of course. So regular user can
list directory content but can't read files inside.

-- 
wbr
  Denis



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



Bug#217267: maille'e

2007-11-22 Thread GRIFFIN murrayTodero
Do you believe in wonders? Neither had we We believed, ..till we discovered 
newED treatmentset
http://noseway.com/




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



Bug#452377: A package marked for reinstall, if conflicting, is removed *without warning*

2007-11-22 Thread David
Package: apt
Version: 0.7.9
Severity: grave

--- Please enter the report below this line. ---

Today, in sid, I marked for upgrade xserver-xorg-core (2:1.4-3) to 2:
1.4.1~git20071119-1. Synaptic asked to remove xserver-xorg-input-all (1:
7.3+6) and xserver-xorg-input-wacom (0.7.7.11-1). Before committing changes,
I marked the two last for reinstall (yes, this is a dirty trick, but
sometimes works in sid).

So I clicked on apply, SYNAPTIC DID NOT WARN THAT ANYTHING WAS GOING TO BE
REMOVED, but, actually, xserver-xorg-core was upgraded, and
xserver-xorg-input-all and xserver-xorg-input-wacom were removed.

Still, in synaptic history I see:

Upgraded the following packages:
xserver-xorg-core (2:1.4-3) to 2:1.4.1~git20071119-1

Reinstalled the following packages:
xserver-xorg-input-all (1:7.3+6)
xserver-xorg-input-wacom (0.7.7.11-1)

I think this is grave because you may remove important packages, and
therefore break the system, WITHOUT ANY SINGLE WARNING.

--- System information. ---
Architecture: i386
Kernel: Linux 2.6.22-3-686

Debian Release: lenny/sid
990 unstable www.debian-multimedia.org
990 unstable ftp.uk.debian.org
500 stable dl.google.com
500 experimental www.debian-multimedia.org
1 experimental ftp.uk.debian.org

--- Package information. ---
Depends (Version) | Installed
===-+-=
libc6 (= 2.6.1-1) | 2.6.1-6
libgcc1 (= 1:4.2.1) | 1:4.2.2-3
libstdc++6 (= 4.2.1) | 4.2.2-3
debian-archive-keyring | 2007.07.31


Bug#402589: mzscheme debian packages

2007-11-22 Thread Artem Baguinski
i guess i'll just have to give it a try then.

At the moment I refreshed the patches, removed a couple of obsolete
ones and made it buildable. I can build and install the binary
packages, but I get tons of messages from lintian and dpkg-shlibdeps
some of which make no sense to me. But I get the same messages when
building 360, so may be it's something wrong with my sid chroot.

what's the best way to let you have a look at the state I'm at? I
could make svn diff of the ./debian directory and direct you to the
original tarball... Or just send you the drscheme_371-1_i386.build
file ?

On Nov 21, 2007 5:58 PM, Ari Pollak [EMAIL PROTECTED] wrote:
 The package is currently orphaned (though I will fix a major problem if
 one arises), and nobody has stepped up with a firm commitment to
 actually continue maintaining it. There have been a few vague offers,
 but nobody has actually sat down to do the work. If you feel comfortable
 enough, you can start working on updating the package currently in
 subversion at svn://svn.debian.org/svn/pkg-plt-scheme/drscheme/trunk.
 Note that there are some outstanding items in the TODO.Debian and the
 bug tracker that could be fixed fairly easily.
 I'd be glad to help you out with questions along the way, but note that
 this is slightly more complex than the average Debian package.
 Eventually if there's enough interest, the pkg-plt-scheme project can be
 used to coordinate all of the packages that depend on PLT Scheme (though
 hopefully not that depend on the drscheme/mzscheme libraries, since
 those change names with every version).


 On Wed, 2007-11-21 at 16:01 +0100, Artem Baguinski wrote:
  Hello Ari
 
  I am one of developers of fluxus, a live graphics programming
  environment that uses mzscheme ( http://www.pawfal.org/fluxus/ )
 
  I'd like to package fluxus for debian, but since we depend on mzscheme
  371 or later I was wondering if you had plans upgrading the
  mzscheme/drscheme package to the latest plt release?
 
  If not, or if it has low priority for you, would you consider helping
  me packaging mzscheme 371? I have limited experience with debian
  packaging and would like to learn more...
 





-- 
cheers,
artm

http://lab.v2.nl/



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



Bug#197156: fondrait

2007-11-22 Thread melodi Toro
Express your love and gratitude to your nearest and dearest one by giving her 
constant pleasure
http://www.leadterm.com/




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



Bug#452267: openoffice.org: embedded StarBasic function RIGHT(x,y) don't function

2007-11-22 Thread Fabio Fiorentini
I have the same problem

To test it just do:
tools -- macros -- organize macros -- openoffice.org basic
click on button EDIT
add this rows at the bottom of page after End Sub

Sub TestRight

dim example as string

example = test

msgbox example

example = right(example, 3)

msgbox example

End Sub

If it works you will see a dialog box with test and a OK button in it
and then after clicking on OK another dialog box with est and a OK button
in it, but now you get the error.

on irc channel _rene_ said me that it is already fixed and will be in the
next upload

Fabio Fiorentini aka Ahren


Bug#452375: please remove make-fai-bootfloppy

2007-11-22 Thread Henning Sprang
Holger Levsen wrote:
   Holger, who sincerly believes NICs which dont support PXE and etherboot 
 should just be ignored. A new gigabit NIC costs, what, 7 euro?

7 Euro NICS normally don't have PXE!

I have some which are not even old, and they do not work.

Henning



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



Bug#452379: python-biopython: import Bio.PDB failed on sid

2007-11-22 Thread Johan Euphrosine
Package: python-biopython
Version: 1.43-2

Importing Bio.PDB in python/sid results in the following traceback:
 import Bio.PDB
Traceback (most recent call last):
  File stdin, line 1, in ?
  File /var/lib/python-support/python2.4/Bio/PDB/__init__.py, line 15, in ?
from PDBParser import PDBParser
  File /var/lib/python-support/python2.4/Bio/PDB/PDBParser.py, line 12, in ?
from StructureBuilder import StructureBuilder
  File /var/lib/python-support/python2.4/Bio/PDB/StructureBuilder.py, line 
21, in ?
from Atom import Atom, DisorderedAtom 
  File /var/lib/python-support/python2.4/Bio/PDB/Atom.py, line 11, in ?
from Vector import Vector
  File /var/lib/python-support/python2.4/Bio/PDB/Vector.py, line 9, in ?
from LinearAlgebra import determinant, eigenvectors
ImportError: No module named LinearAlgebra

This problem is solved by:
apt-get install python-numeric-ext

I see python-numeric-ext is currently in python-biopython's Suggested packages:

# cat control | grep python-numeric-ext
Suggests: python-numeric-ext, python-tk

Should it be moved into Recommends to solve this issue ?

Thanks in advance.
-- 
bou ^



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



Bug#452380: liferea: doesn't use nor ask for proxy password

2007-11-22 Thread Josselin Mouette
Package: liferea
Version: 1.4.6-1
Severity: normal

I access the network through a HTTP proxy with authentication. I have 
configured this proxy and the password in the GNOME proxy settings. (I 
have also tried to configure it in the liferea preferences and the 
behavior is exactly the same).

When I start liferea, for some feeds, the pages are automatically 
downloaded. For others, they are not (while all are configured the 
same). When I see the contents of a feed, the pictures are not 
displayed.

Then, if I open any element in a new tab, the new tab opens, and I am 
asked for the proxy login and password (even though they are already 
configured). There, I enter them and the tab loads.

After that, all feeds will be downloaded, with their pictures.

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

Kernel: Linux 2.6.22-3-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 liferea depends on:
ii  gconf2  2.20.1-1 GNOME configuration database syste
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.6.1-6  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1+b2  The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libgcc1 1:4.2.2-3GCC support library
ii  libgconf2-4 2.20.1-1 GNOME configuration database syste
ii  libgcrypt11 1.2.4-2  LGPL Crypto library - runtime libr
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.3-1 The GLib library of C routines
ii  libgnutls13 2.0.4-1  the GNU TLS library - runtime libr
ii  libgtk2.0-0 2.12.1-3 The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  liblua5.1-0 5.1.2-4  Simple, extensible, embeddable pro
ii  libnm-glib0 0.6.5-3  network management framework (GLib
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to a n
ii  libnspr4-0d 4.6.7-1  NetScape Portable Runtime Library
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsqlite3-03.4.2-2  SQLite 3 shared library
ii  libstdc++6  4.2.2-3  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcomposite1  1:0.3.2-1+b1 X11 Composite extension library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxdamage1 1:1.1.1-3X11 damaged region extension libra
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.30.dfsg-3GNOME XML library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxslt1.1  1.1.22-1 XSLT processing library - runtime 
ii  libxul0d1.8.1.9-2Gecko engine library
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

Versions of packages liferea recommends:
ii  dbus  1.1.1-3simple interprocess messaging syst
ii  dbus-x11  1.1.1-3simple interprocess messaging syst

-- no debconf information

-- 
 .''`.
: :' :  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#333720: Maxtor bug

2007-11-22 Thread Pascal Terjan
As I explained on http://fasmz.org/~pterjan/blog/?date=20061203 this is
a Maxtor bug on B200P0, even if they deny it.




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



Bug#452381: multiple security issues

2007-11-22 Thread Nico Golde
Package: wireshark
Severity: grave
Tags: security

Hi,
from: http://www.wireshark.org/security/wnpa-sec-2007-03.html

Wireshark 0.99.7 fixes the following vulnerabilities: 
Wireshark could crash when reading an MP3 file. 
Versions affected: 0.99.6 
Beyond Security discovered that Wireshark could loop excessively while reading 
a malformed DNP packet. 
Versions affected: 0.10.12 to 0.99.6 
Stefan Esser discovered a buffer overflow in the SSL dissector. 
Versions affected: 0.99.0 to 0.99.6 
The ANSI MAP dissector could be susceptible to a buffer overflow on some 
platforms. (Bug 1844) 
Versions affected: 0.99.5 to 0.99.6 
The Firebird/Interbase dissector could go into an infinite loop or crash. (Bugs 
1931 and 1932) 
Versions affected: 0.99.6 
The NCP dissector could cause a crash. 
Versions affected: 0.99.6 
The HTTP dissector could crash on some systems while decoding chunked messages. 
Versions affected: 0.10.14 to 0.99.6 
The MEGACO dissector could enter a large loop and consume system resources. 
Versions affected: 0.9.14 to 0.99.6 
The DCP ETSI dissector could enter a large loop and consume system resources. 
Versions affected: 0.99.6 
Fabiodds discovered a buffer overflow in the iSeries (OS/400) Communication 
trace file parser. (Bug 1926) 
Versions affected: 0.99.0 to 0.99.6 
The PPP dissector could overflow a buffer. 
Versions affected: 0.99.6 
The Bluetooth SDP dissector could go into an infinite loop. 
Versions affected: 0.99.2 to 0.99.6 
A malformed RPC Portmap packet could cause a crash. (Bug 1998) 
Versions affected: 0.8.16 to 0.99.6

CVE ids for this are pending, I will add them to this bug report if
I got them.

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpCG4aDcNIsS.pgp
Description: PGP signature


Bug#452348: HPLIP doesn't mention new user-in-scanner-group requirement, other issues

2007-11-22 Thread Josselin Mouette
Hi,

Le mercredi 21 novembre 2007 à 23:34 -0500, Christopher Martin a écrit :
 Package: hplip
 Version: 2.7.10-2
 Severity: important
 
 It's great to see the new version of hplip in the archive, but I have to 
 report a few issues:
 
 1) The old package's hplip.desktop file, which added a convenient 
 KDE/GNOME menu entry, has disappeared. Please re-add it. I see that the 
 file exists in the debian/ dir - you just need to install it, and 
 remove the NotShowIn=KDE line. And install the matching icons, also in 
 the debian/ dir.

Please don't do that. As long as hplip is part of the default
installation, this pollutes the main menu with a vendor-specific
application with zero integration to the rest of the desktop. The
default etch installation looks like an advertisement for HP, let's not
extend this to lenny.

If you install such a desktop file, I recommend that you add a
NotShowIn=KDE;GNOME stanza so that it doesn't show up by default. It
can then be enabled on a per-user basis simply by editing the menu.

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#451973: Same problem with ati-proprietary driver 7.11

2007-11-22 Thread Boris Kleibl
Today I downloaded the brand new ATI proprietary driver 7.11 from the
ati homepage. I created the debian packages with
ati-driver-installer-7-11-x86.x86_64 --buildpackage Debian/sid an
compiled the kernel-driver with module-assistant. Starting Xorg with
the new driver leads to exactly the same error as in version 8.42.3.



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



Bug#452379: python-biopython: import Bio.PDB failed on sid

2007-11-22 Thread Philipp Benner
 Should it be moved into Recommends to solve this issue ?

Right, I'll fix that with the next upload.

Thanks

-- 
Philipp Benner



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



Bug#452376: further info

2007-11-22 Thread Mark Small
I was in a bit of a rush as I was finishing up the bug report, so I forgot to 
add some extra info: 

The Dell C400 uses an i830 chip.

 I invoke suspend on this laptop using s2ram -f -p -s  Any other combination 
of options fails altogether.  This is similar to what others have seen 

http://osdir.com/ml/linux.kernel.suspend.devel/2006-12/msg00163.html

I have to use an ubuntu compiled kernel, they must have an extra critical 
kernel patch.

When the colors go bad, there is nothing I can do about it save rebooting.  
Switching to console doesn't help.  Restarting kdm doesn't help.

Sometimes s2ram DOES work okay.  It seems that the longer X has been running, 
the better.   If I try to suspend right after logging in (a common testing 
situation), it always fails.  If I've been doing other stuff for a while, it 
may work.  Could it be a video memory allocation issue?  

Mark



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



Bug#449605: will speak with upstream

2007-11-22 Thread Patrick Winnertz
Hello,

I'll speak with upstream if this behaviour is intended or not.. and if not 
how we can work around this.

Greetings
Patrick
-- 
 .''`.   Patrick Winnertz [EMAIL PROTECTED]
:  :' :  GNU/Linux Debian-Edu Developer
`. `'`   http://www.der-winnie.de http://d.skolelinux.org/~winnie
  `-  Debian - when you have better things to do than fixing systems



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



Bug#452344: incorrect DEBCONF_DAEMON path in /etc/init.d/gdm

2007-11-22 Thread Josselin Mouette
tag 452344 - patch
thanks

Le jeudi 22 novembre 2007 à 01:35 +, Bernard Gray a écrit :
 Package: gdm
 Version: 2.20.1-1
 Severity: important
 Tags: patch
 
 Symptoms: GDM fails to start at boot, with error Not starting GNOME
 Display Manager; It is not the default display manager
 
 Cause: the path for the DEBCONF_DAEMON in /etc/init.d/gdm is
 incorrect. Patch follows

 -DEBCONF_DAEMON=/usr/bin/gdm
 +DEBCONF_DAEMON=/usr/sbin/gdm

Sorry, but this path is correct. Debconf is passed the /usr/bin/gdm
value, not /usr/sbin/gdm.

What is the contents of /etc/X11/default-display-manager on your system?

Thanks,
-- 
 .''`.
: :' :  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#452379: python-numeric-ext-recommends.debdiff

2007-11-22 Thread Johan Euphrosine
If yes, please review that the following debdiff corrects the issue.
Thanks.


python-numeric-ext-recommends.debdiff
Description: python-numeric-ext-recommends.debdiff
-- 
bou ^


Bug#392087:

2007-11-22 Thread William Pitcock
tags 392087 + moreinfo
thanks

Hi,

Can you run the plugin in debugging mode? It's in the preferences,
advanced tab.

I don't personally run XMMS anymore, but I can at least forward
something with more latitude of details to Peter.

William


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


Bug#452378: linux-image-2.6.22-3-686: Unable to mount ipod

2007-11-22 Thread maximilian attems
On Thu, Nov 22, 2007 at 05:31:04PM +0530, Sridhar M.A. wrote:
 Package: linux-image-2.6.22-3-686
 Version: 2.6.22-6
 Severity: important
 
 
 When I connect my Ipod, I get the following error messages in
 /var/log/syslog. 
 

can you try 2.6.23 trunk buildserver snapshots, see apt lines
- http://wiki.debian.org/DebianKernel

thanks

-- 
maks



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



Bug#452379: python-numeric-ext-recommends.debdiff

2007-11-22 Thread Philipp Benner
On Thu, Nov 22, 2007 at 01:50:40PM +0100, Johan Euphrosine wrote:
 If yes, please review that the following debdiff corrects the issue.
 Thanks.

Looks good, is almost identical to my changes. Just have a look at
svn://svn.debian.org/debian-med/trunk/packages/python-biopython/

Regards

-- 
Philipp Benner



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



Bug#448025: openmovieeditor new version available

2007-11-22 Thread Richard Spindler
Hi,

just go ahead and do it, the existing packaging info for
openmovieeditor is here:

http://svn.debian.org/wsvn/demudi/

Cheers
-Richard



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



Bug#452382: it would be nice to be able to install ghostscript without libcupsys2

2007-11-22 Thread Bernhard R. Link
Package: ghostscript
Version: 8.61.dfsg.1~svn8187-1
Severity: whishlist

While the old gs-gpl could be installed without libcupsys2 and
libcupsimage2, the new ghostscript package depends on them via libgs8.
It would nice nice if ghostscript could be installed without those.

Hochachtungsvoll,
Bernhard R. Link



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



Bug#452383: exim4: [INTL:nb] Translation of program for Norwegian Bokmal

2007-11-22 Thread Hans Fredrik Nordhaug
Package: exim4
Version: N/A
Severity: wishlist
Tags: patch l10n

Find attached the updated (and complete) Norwegian Bokmal 
translation - 20 fuzzy strings reviewed. This is done as 
part of the Debian Installer translation.

Regards,
Hans


exim4_debian_po_nb.po.gz
Description: GNU Zip compressed data


Bug#388173: Any news about transkode package?

2007-11-22 Thread Lars Luthman
Would be great if this could be packaged and added to the official
repositories. Amarok depends on it for transcoding music before storing
it to hardware players that only support certain formats.


--ll


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


Bug#452384: sysv-rc: spelling error/typo in /etc/rc[0123456S].d/README: For a more information see /etc/init.d/README

2007-11-22 Thread -
Package: sysv-rc
Version: 2.86.ds1-38
Severity: minor

The files /etc/rc[0123456S].d/README contain a typo:
For a more information see /etc/init.d/README

This line should probably read:
For more information see /etc/init.d/README

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: arm (armv5tel)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-ixp4xx
Locale: LANG=C, LC_CTYPE=no_NO.ISO8859-1 (charmap=ISO-8859-1)

sysv-rc depends on no packages.

Versions of packages sysv-rc recommends:
ii  lsb-base   3.1-23.2etch1 Linux Standard Base 3.1 init scrip

-- no debconf information



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



Bug#452069: nfs-kernel-server: broken NFS server on Thecus N2100

2007-11-22 Thread Martin Michlmayr
dannf, could you please take a look at #452069 and let me know if this
bug is worth addressing in a stable update.

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#452385: Recording mtime after recording commit message leads to hidden (lost) changes

2007-11-22 Thread Trent W. Buck
Package: mercurial
Version: 0.9.5-2
Severity: normal

From #mercurial on irc.freenode.net (I am twb):

twb I found a bug.  Follow my logic:
twb 
twb 1. I run hg ci.
twb 2. it starts up an editor to add a commit message
twb 3. WITHOUT closing that editor, I make additional edits to the
twbfile being committed, then close the editor.
twb
twb Now, hg ci has not committed these extra changes, but
twb subsequent hg ci and hg st ignore them, because the
twb original hg ci has decided that it has checked in all
twb changes up to the time it FINISHED running
twb I did `touch *' and suddenly hg st reported a whole bunch
twb of changes that would have been LOST COMPLETELY if I had
twb not been a paranoid bastard

pmezard did you add the file in same commit ?
pmezard or just modified it ?

twb I just modified it.

pmezard ok

twb I may have used hg record rather than hg ci initially, but I
twb don't think so.

It looks to me (without examining the code) like hg ci is doing

1. collecting changes;
2. using $EDITOR to get a commit message; and
3. note the mtime of each file in .hg somewhere.

hg st then only examines files with newer mtimes than hg ci noted.

Because changes were made between steps (1) and (3), hg decides they
do not exist until the mtime is changed (by more edits of by
touch(1)).  It tells the user that there are no uncommitted changes.

Since (1) and (3) are very quick, but (2) waits for the user and could
thus take minutes or hours, I suggest that the order of (2) and (3) be
reversed.  This would mean that this race condition has a much
narrower window in which to occur.


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

Kernel: Linux 2.6.22-3-amd64 (SMP w/1 CPU core)
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages mercurial depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  python2.4.4-6An interactive high-level object-o
ii  python-support0.7.5  automated rebuilding support for p
ii  python2.5 2.5.1-5An interactive high-level object-o

Versions of packages mercurial recommends:
ii  meld  1.1.5.1-2  graphical tool to diff and merge f
ii  rcs   5.7-21 The GNU Revision Control System
ii  tk8.4 [wish]  8.4.16-2   Tk toolkit for Tcl and X11, v8.4 -

-- no debconf information



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



Bug#446988: must compile -fno-strict-aliasing

2007-11-22 Thread Jose Luis Rivas Contreras
Hi Kurt  Dean,

I'm checking right now this issue, I haven't get it and I'm using
amd64... Maybe it's related to the gcc version? I will check this
further trying to get the error.

Regards,
Jose Luis.
-- 

ghostbar on debian linux 'sid' 2.6.22 x86_64-SMP - #382503
Weblog: http://ghostbar.ath.cx/ - http://linuxtachira.org
http://debian.org.ve - irc.debian.org #debian-ve #debian-devel-es
San Cristóbal, Venezuela. http://chaslug.org.ve GPG: 0xCACAB118



signature.asc
Description: OpenPGP digital signature


Bug#451790: libtorrent10: PeerConnectionSeed::event_write() wrong state.

2007-11-22 Thread Jose Luis Rivas Contreras
Hi Kurt,

How does you get this error? When? Some specific shortcut combination?

Regards,
Jose Luis.
-- 

ghostbar on debian linux 'sid' 2.6.22 x86_64-SMP - #382503
Weblog: http://ghostbar.ath.cx/ - http://linuxtachira.org
http://debian.org.ve - irc.debian.org #debian-ve #debian-devel-es
San Cristóbal, Venezuela. http://chaslug.org.ve GPG: 0xCACAB118



signature.asc
Description: OpenPGP digital signature


Bug#452385: Recording mtime after recording commit message leads to hidden (lost) changes

2007-11-22 Thread Vincent Danjean
Trent W. Buck wrote:
 Package: mercurial
 Version: 0.9.5-2
 Severity: normal
 
From #mercurial on irc.freenode.net (I am twb):

  Hi,

  You are right. This really seems a bug to me also. However, this is
an upstream bug (ie there is no point in trying to fix it only in the
debian package).
  Can you report you bug upstream (and give me the corresponding
bug number) ? If you cannot or does not have the time to, I will do
it myself in a few days.

  Best regards,
Vincent

-- 
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#452387: Misleading statement in debian-faq s1.5, was: Ideas about a GR to fix the DAM

2007-11-22 Thread MJ Ray
Package: doc-debian
Severity: wishlist

Anthony Towns [EMAIL PROTECTED] wrote: [...]
 But if you want a favour from someone -- like access to some restricted
 service -- you're much more likely to get it if either (a) that someone
 wants to do you the favour already; or (b) you approach it as Hi, I'd like
 to help. There's a bunch of gruntwork that I think would help and that I
 could do if you'd like me to. I'm not trying to change policy or get any
 more say in how things work or become famous or whatever, just help out
 and actually mean it. [...]

q class=rambleThis is something where the project isn't managing
expectations very well.  In some official docs, such as the Debian FAQ
http://www.debian.org/doc/manuals/debian-faq/ch-basic_defs.en.html
debian is described as the only major Linux distribution that is
being developed cooperatively which really isn't true, because we
don't share basic cooperative values, such as open and voluntary
membership, member economic participation, much democratic member
control or much concern for community.  (For a full list, see
http://www.ica.coop/coop/principles.html
- I'd welcome moves to adopt more of them, but I'd expect resistance.)

A more accurate description may be that found in places such as
http://www.debian.org/intro/about#what
which calls it an association of individuals who have made common
cause to create a free operating system.

In short, the debian project is still mostly a grace-and-favour
association where people need to behave as you describe to get things
done quickly.  It's not a cooperative project, but we're not exactly
clear about that in our descriptions, so DDs really shouldn't be too
surprised when people expect project systems to be open and allow
autonomous direct action more readily./q

Cc'ing BTS for the debian-faq [please trim submit from followups].
Please resend to anyone else calling the debian project a cooperative.

Regards,
-- 
MJ Ray http://mjr.towers.org.uk/email.html tel:+44-844-4437-237 -
Webmaster-developer, statistician, sysadmin, online shop builder,
consumer and workers co-operative member http://www.ttllp.co.uk/ -
Writing on koha, debian, sat TV, Kewstoke http://mjr.towers.org.uk/



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



Bug#452386: sofia-sip: Library is leaking memory.

2007-11-22 Thread Kai Vehmanen
Package: sofia-sip
Version: 1.12.7-1
Severity: important

Library is leaking memory. Problem acked by upstream, see 
discussion at

http://article.gmane.org/gmane.comp.telephony.sofia-sip.devel/2019



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



Bug#431169: Still reproducible?

2007-11-22 Thread Kartik Mistry
patrick295767 wrote:
 On Oct 23, 2007 6:19 AM, Kartik Mistry wrote:

 Is this bug: Bug#431169: festival: just that at the end talking, it
 repeats the first letter.

 reproducible with latest festival? Let me/bugreport know!

 I made it work with this:
 
 ~$ cat .festivalrc
 
 (Parameter.set 'Audio_Command aplay -q -c 1 -t raw -f s16 -r $SR $FILE)
 (Parameter.set 'Audio_Method 'Audio_Command)
 
 It works well with alsa.
 
 nota:
 $ festival --version
 festival: Festival Speech Synthesis System: 1.4.3:release Jan 2003

Hmm.

So, it works.

Should we close this bug now?

Please always keep [EMAIL PROTECTED] in CC or To, when talking
about this bug, so we can let world know!

I have set it to Reply-to now.

Thanks!

-- 
 Cheers,
 --
 Kartik Mistry | GPG: 0xD1028C8D | IRC: kart_
 blog.ftbfs.in | kartikm.wordpress.com
 --

Linus' Law:
There is no heavier burden than a great potential.



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



Bug#450907: xscreensaver: fireworxx shows live screen contents when xcompmgr is running

2007-11-22 Thread Jose Luis Rivas Contreras
severity 450907 important
quit

Hi,

I do not really think this is a serious bug but important since does
lock the screen and I do not believe showing data is a security issue.

Regards,
Jose Luis.
-- 

ghostbar on debian linux 'sid' 2.6.22 x86_64-SMP - #382503
Weblog: http://ghostbar.ath.cx/ - http://linuxtachira.org
http://debian.org.ve - irc.debian.org #debian-ve #debian-devel-es
San Cristóbal, Venezuela. http://chaslug.org.ve GPG: 0xCACAB118



signature.asc
Description: OpenPGP digital signature


Bug#452393: [PROPOSAL] clarify overstep between required and important priorities

2007-11-22 Thread Robert Millan
Package: debian-policy
Version: 3.7.2.2
Severity: wishlist
Tags: patch

In the definition of priorities, required and important seem to collide
with each other.  In particular, the part of required that reads:

  Packages which are necessary for the proper functioning of the system

with the part of important that reads:

  Other packages without which the system will not run well

Not being a native English speaker, I'm not completely sure if a system can
function properly and at the same time not run well, but nevertheless
the barrier seems so thin that I don't think it's reasonable that we require
that the maintainers sort it out.

Unlike required, important may include packages following other
conditions not related to this one (and in fact, most of them aren't), so
my proposal is to clarify it in favour of required.  See attachment.

-- System Information:
Debian Release: lenny/sid
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)

-- no debconf information


signature.asc
Description: Digital signature


Bug#452388: Standard system is confusing

2007-11-22 Thread Robert Millan
Package: tasksel
Version: 2.70
Severity: wishlist
Tags: patch

Policy describes the standard priority level as:

  These packages provide a reasonably small but not too limited character-mode
   system. This is what will be installed by default if the user doesn't select
   anything else. It doesn't include many large applications.

which means that in the context of Policy s.2.5, the word standard implies
command-line interface.  However, word has it that some of our users (those
heretics! :-)) haven't studied Policy throughtfuly, and might think that
standard means something like must-have [1].

... which obviously it isn't when you're setting up a GUI-only system for a
command-line-impaired user (or even, when the user himself is).  In that case
you'll most likely want to avoid this task completely, specially since it
contains packages (at, exim4, nfs-common, portmap) that launch system daemons,
increasing boot time and overall memory usage.

I would suggest:

--- tasksel-2.70/tasks/standard~2007-10-20 03:32:28.0 +0200
+++ tasksel-2.70/tasks/standard 2007-11-22 15:08:43.0 +0100
@@ -1,6 +1,6 @@
 Task: standard
 Section: user
-Description: Standard system
+Description: Command-line environment
  This task installs a reasonably small character-mode system.
 Packages: standard
 Test-new-install: mark skip

-- System Information:
Debian Release: lenny/sid
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)



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



Bug#452394: kdegraphics-kfile-plugins: package depends of obsolete libpoppler1 and libpoppler-qt1

2007-11-22 Thread Xavier Brochard
Package: kdegraphics-kfile-plugins
Version: 4:3.5.8-2
Severity: normal


Package installation depends of obsolete libpoppler1 and libpoppler-qt1
Please make it depends of libpoppler2 and libpoppler-qt2

regards
xavier

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

Kernel: Linux 2.6.22-3-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 kdegraphics-kfile-plugins depends on:
ii  kdelibs4c2a 4:3.5.8.dfsg.1-3 core libraries and binaries for al
ii  libaudio2   1.9a-1   Network Audio System - shared libr
ii  libc6   2.6.1-6  GNU C Library: Shared libraries
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.2-3GCC support library
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libopenexr2ldbl 1.2.2-4.4runtime files for the OpenEXR imag
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libpoppler-qt1  0.5.4-6.2PDF rendering library (Qt 3 based 
ii  libpoppler1 0.5.4-6.2PDF rendering library
ii  libqt3-mt   3:3.3.7-9Qt GUI Library (Threaded runtime v
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.2-3  The GNU Standard C++ Library v3
ii  libtiff43.8.2-7  Tag Image File Format (TIFF) libra
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

kdegraphics-kfile-plugins recommends no packages.

-- no debconf information



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



  1   2   3   4   >