Bug#548234: closed by Bradley Smith bradsm...@debian.org (Bug#548234: fixed in libbinio 1.4-13)

2009-10-05 Thread Martin Michlmayr
found 548234 1.4-13
thanks

  libbinio (1.4-13) unstable; urgency=low
  .
* Add 00_fix_gcc4.4_FTBFS.diff - Fix GCC 4.4 FTBFS. Closes: #548234.

You forgot to include 00_fix_gcc4.4_FTBFS.diff in the package, and so
it still fails to build.
-- 
Martin Michlmayr
http://www.cyrius.com/



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#543375: initscripts: last superblock write time in future occurring sometimes

2009-10-05 Thread LaMont Jones
On Mon, Oct 05, 2009 at 08:04:23AM +0200, Mader, Alexander (N-MSR) wrote:
 Something additional: I am running a Debian kernel not a self built one,  
 and /lib/udev/rules.d/85-hwclock.rules was not there in the first place  
 so I had to create it.

That file is delivered by util-linux what version of util-linux do
you have installed??

lamont



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549671: FTBFS with GCC 4.4: missing #include

2009-10-05 Thread Martin Michlmayr
Package: pion-net
Version: 2.1.8+dfsg-1
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with GCC 4.4, which has cleaned up some more
C++ headers.  You always have to #include headers directly and cannot
rely for things to be included indirectly.

You can reproduce this problem with gcc-4.4/g++-4.4 from unstable.

 Automatic build of pion-net_2.1.8+dfsg-1 on em64t by sbuild/amd64 0.53
...
  g++ -DHAVE_CONFIG_H -I. -I. -I../../common/include/pion 
 -I/build/tbm/pion-net-2.1.8+dfsg/common/include -I../include -pthread 
 -D_REENTRANT -I/usr/include -DPION_NETWORK_LIBRARY -O2 -ggdb -Wall 
 -Wno-strict-aliasing -DNDEBUG -MT HTTPTypes.lo -MD -MP -MF 
 .deps/HTTPTypes.Tpo -c HTTPTypes.cpp  -fPIC -DPIC -o .libs/HTTPTypes.o
 HTTPTypes.cpp: In static member function 'static std::string 
 pion::net::HTTPTypes::url_encode(const std::string)':
 HTTPTypes.cpp:275: error: 'sprintf' was not declared in this scope
 make[3]: *** [HTTPTypes.lo] Error 1
 make[3]: Leaving directory `/build/tbm/pion-net-2.1.8+dfsg/net/src'

--- net/src/HTTPTypes.cpp~  2009-10-05 12:51:13.0 +
+++ net/src/HTTPTypes.cpp   2009-10-05 12:51:24.0 +
@@ -10,6 +10,7 @@
 #include boost/lexical_cast.hpp
 #include boost/thread/mutex.hpp
 #include pion/net/HTTPTypes.hpp
+#include cstdio
 #include ctime
 
 

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



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549672: FTBFS with GCC 4.4: missing #include

2009-10-05 Thread Martin Michlmayr
Package: minbif
Version: 1:1.0~beta+git20091001+9f03d91-1
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with GCC 4.4, which has cleaned up some more
C++ headers.  You always have to #include headers directly and cannot
rely for things to be included indirectly.

You can reproduce this problem with gcc-4.4/g++-4.4 from unstable.

 Automatic build of minbif_1:1.0~beta+git20091001+9f03d91-1 on em64t by 
 sbuild/amd64 0.53
...
 [ 28%] Building CXX object CMakeFiles/minbif.dir/src/server_poll/inetd.cpp.o
 /usr/bin/c++-g -O2 -DUSE_CACA -DDEBUG -D_REENTRANT -D_FILE_OFFSET_BITS=64 
 -Werror -Wall -Wextra -Wno-unused-parameter -I/usr/include/libpurple 
 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
 -I/build/tbm/minbif-1.0~beta+git20091001+9f03d91/src   -o 
 CMakeFiles/minbif.dir/src/server_poll/inetd.cpp.o -c 
 /build/tbm/minbif-1.0~beta+git20091001+9f03d91/src/server_poll/inetd.cpp
 In file included from 
 /build/tbm/minbif-1.0~beta+git20091001+9f03d91/src/server_poll/inetd.cpp:23:
 /build/tbm/minbif-1.0~beta+git20091001+9f03d91/src/server_poll/../irc/irc.h:167:
  error: 'uint32_t' has not been declared
 /build/tbm/minbif-1.0~beta+git20091001+9f03d91/src/server_poll/../irc/irc.h:168:
  error: 'uint16_t' has not been declared
 make[3]: *** [CMakeFiles/minbif.dir/src/server_poll/inetd.cpp.o] Error 1

--- src/irc/irc.h~  2009-10-05 12:57:20.0 +
+++ src/irc/irc.h   2009-10-05 12:59:02.0 +
@@ -19,6 +19,7 @@
 #ifndef IRC_IRC_H
 #define IRC_IRC_H
 
+#include stdint.h
 #include string
 #include map
 #include exception
--- src/irc/user.cpp~   2009-10-05 13:00:31.0 +
+++ src/irc/user.cpp2009-10-05 13:00:38.0 +
@@ -17,6 +17,8 @@
 
 #include user.h
 
+#include cstdio
+
 namespace irc {
 
 User::User(int _fd, Server* server, string nickname, string identname, string 
hostname, string realname)
--- src/irc/dcc.h~  2009-10-05 13:00:51.0 +
+++ src/irc/dcc.h   2009-10-05 13:01:01.0 +
@@ -20,6 +20,7 @@
 
 #include exception
 #include string
+#include stdint.h
 #include stdio.h
 
 #include im/ft.h

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



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549638: afflib-tools and simh: error when trying to install together

2009-10-05 Thread Christophe Monniez
Le lundi 05 octobre 2009 à 13:46 +0200, Vince Mulhollon a écrit :
 On Mon, Oct 05, 2009 at 08:35:22AM +0200, Ralf Treinen wrote:
  Package: simh,afflib-tools
  Version: simh/3.8.1-1
  Version: afflib-tools/3.3.6+dfsg-3
  Usertags: edos-file-overwrite
  
  This is a serious bug as it makes installation fail. Possible
  solutions are to have the two packages conflict, to rename the common
  file in one of the two packages, or to remove the file from one
  package and have this package depend on the other package. File
  diversions or a Replace relation are another possibility.
  
  Here is a list of files that are known to be shared by both packages
  (according to the Contents file for sid/amd64, which may be
  slightly out of sync):
  
usr/bin/s3
  
 
 OK my interpretation of the situation, is you afflib guys really need 
 the name s3 because that is the full name of the amazon s3 service
 you're trying to access, and the simh s3 is merely the short name for 
 the System/3 emulator.
 
 afflib folks please confirm or deny the accuracy of my interpretation.
 
 If I'm correct I think the logical solution is I extend the name of the 
 System/3 emulator from s3 to system3 (err I have to verify that is not
 otherwise in use... maybe I'll go sys3, who knows)
 
 Current status, waiting on your comments, afflib folks ...

As the s3 tool is only a testing tool in the afflib package and that
it's not essential to afflib users, I renamed the tool s3-afflib this
morning in git:
http://git.debian.org/?p=forensics/afflib.git;a=commitdiff;h=5b870b00b2c62dc94648178f0de1e9573cab60fa

Anyway, I'm waiting comments from other debian-forensics members, if no
one complains, it will be uploaded.

Finally, I think that it's a good idea to change both utilities names
because, one day or another, I suspect that a real Amazon s3 tool
could come up with the same name. And since tab completion exists, such
a short name is not needed anymore :-)

-- 
Christophe Monniez christophe.monn...@fccu.be




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549588: xserver-xorg-core: Loading glx module causes X server to crash

2009-10-05 Thread Michel Dänzer
reassign 549588 libgl1-mesa-dri 7.6-1
forwarded 549588 https://bugs.freedesktop.org/show_bug.cgi?id=24131
kthxbye

On Mon, 2009-10-05 at 13:18 +0200, Julien Cristau wrote: 
 On Sun, Oct  4, 2009 at 17:30:33 -0400, Arnout Boelens wrote:
 
  X: radeon_bo_legacy.c:207: legacy_is_pending: Assertion 
  `bo_legacy-is_pending = bo-cref' failed.
  
 I failed to notice this one, Michel says It's a known bug which was
 reported upstream a while ago.

See above.


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



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549661: More info - bug was developing

2009-10-05 Thread Michael Donner
As possible hint:

I saw the there where no changes on xserver-xorg-video-intel since January 
2009. But the problem occured (as I wrote) about September 24. That may allow 
conclude that there must have been a change around that date which belongs to 
any sub-dependency of xorg. (This is the very reason because I didn't report a 
bug on xserver-xorg-video-intel but on xorg).

It may be worth to know that at this date I attempt to solve another problem. 
It was visually the same, but with the difference that the X worked initially 
after install and for some reboots. Xorg.0.log did not contain an error (no EE 
entry). I was able to solve it by reinstall xorg, gdm and gnome-core by 
aptitude but two days later it occured again. Then I completely reinstalled it 
which seemed to help. But a day later it happened again that the screen was 
black and no error in Xorg.0.log. Then I installed again and got to the point 
which this bug report describes.

Taking this two points together it may be possible that the cause is not 
necessarily be found in  xserver-xorg-video-intel.




  

Bug#549674: FTBFS with GCC 4.4: missing #include

2009-10-05 Thread Martin Michlmayr
Package: sinfo
Version: 0.0.33-2
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with GCC 4.4, which has cleaned up some more
C++ headers.  You always have to #include headers directly and cannot
rely for things to be included indirectly.

You can reproduce this problem with gcc-4.4/g++-4.4 from unstable.

 Automatic build of sinfo_0.0.33-2 on em64t by sbuild/amd64 0.53
...
 x86_64-linux-gnu-g++ -DPACKAGE_NAME=\sinfo\ -DPACKAGE_TARNAME=\sinfo\ 
 -DPACKAGE_VERSION=\0.0.33\ -DPACKAGE_STRING=\sinfo\ 0.0.33\ 
 -DPACKAGE_BUGREPORT=\\ -DPACKAGE=\sinfo\ -DVERSION=\0.0.33\ 
 -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 
 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 
 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DSIMPLE_USER_CACHE=1 
 -DCPUNO_ADJUST=1 -DNCURSES_OK=1 -DHAVEDEFAULTCOLORS=1 -DHAVE_DIRENT_H=1 
 -DSTDC_HEADERS=1 -DHAVE_SYS_WAIT_H=1 -DHAVE_ARPA_INET_H=1 -DHAVE_FCNTL_H=1 
 -DHAVE_LIMITS_H=1 -DHAVE_NETDB_H=1 -DHAVE_NETINET_IN_H=1 -DHAVE_STDLIB_H=1 
 -DHAVE_STRING_H=1 -DHAVE_SYS_PARAM_H=1 -DHAVE_SYS_SOCKET_H=1 
 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 -DHAVE_UTMP_H=1 -DHAVE_GETOPT_H=1 
 -DTIME_WITH_SYS_TIME=1 -DHAVE_DECL_GETOPT=1 -DHAVE_LIBNSL=1 -DHAVE_FORK=1 
 -DHAVE_VFORK=1 -DHAVE_WORKING_VFORK=1 -DHAVE_WORKING_FORK=1 -DHAVE_STDLIB_H=1 
 -DHAVE_MALLOC=1 -DRETSIGTYPE=void -DHAVE_GETOPT_LONG=1 -DHAVE_DAEMON=1 
 -DHAVE_LIBRESOL
 V=1 -DHAVE_HSTRERROR=1 -DHAVE_ATEXIT=1 -DHAVE_GETHOSTBYADDR=1 
 -DHAVE_GETHOSTBYNAME=1 -DHAVE_GETPAGESIZE=1 -DHAVE_GETTIMEOFDAY=1 
 -DHAVE_INET_NTOA=1 -DHAVE_MEMSET=1 -DHAVE_SELECT=1 -DHAVE_SOCKET=1 
 -DHAVE_STRERROR=1 -DHAVE_STRSTR=1 -DHAVE_UNAME=1 -I. -I../libmessage 
 -I../libmessageio -I../libsinfo-g -O2 -MT sinfohtml.o -MD -MP -MF 
 .deps/sinfohtml.Tpo -c -o sinfohtml.o sinfohtml.cc
 sinfohtml.cc: In member function 'void SinfoHTML::printHTMLStatusLine(float, 
 float)':
 sinfohtml.cc:52: error: 'snprintf' was not declared in this scope
 sinfohtml.cc: In member function 'void SinfoHTML::printHTMLOneHost(int, const 
 Wsinfo, float, float)':
 sinfohtml.cc:175: error: 'snprintf' was not declared in this scope
 sinfohtml.cc:245: error: 'snprintf' was not declared in this scope
 sinfohtml.cc:265: error: 'snprintf' was not declared in this scope
 sinfohtml.cc:281: error: 'snprintf' was not declared in this scope
 sinfohtml.cc:287: error: 'snprintf' was not declared in this scope
 sinfohtml.cc:294: error: 'snprintf' was not declared in this scope
 sinfohtml.cc:302: error: 'snprintf' was not declared in this scope
 sinfohtml.cc:315: error: 'snprintf' was not declared in this scope
 sinfohtml.cc:336: error: 'snprintf' was not declared in this scope
 make[2]: *** [sinfohtml.o] Error 1

--- sinfo/sinfohtml.cc~ 2009-10-05 12:53:07.0 +
+++ sinfo/sinfohtml.cc  2009-10-05 12:53:19.0 +
@@ -1,5 +1,6 @@
 #include math.h
 #include unistd.h
+#include cstdio
 #include iostream
 #include iomanip
 #include string.h

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



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549676: Debian packages require updates to rules, control, postint, postrm, menu

2009-10-05 Thread Nyall Dawson
Package: gcstar
Version: 1.4.3-2

The debian package for gcstar is missing some changes that have been
made upstream. These changes affect:

control: libdatetime-format-strptime-perl, libmp3-info-perl,
libcddb-perl, libnet-freedb-perl were added to the recommends list,
the package description was updated
menu: longtitle and icon were updated
rules: icons installed to the correct (hicolor) location, mime type
file installed
postinst and postrm: Scripts added to update mime desktop database

I've attached a diff file which shows the changes required to bring
debian's package into line with the upstream source.
diff -r -N /home/nyall/gcstar-1.4.3/debian/control /home/nyall/Sources/gcstar/gcstar/debian/control
13c13
 Recommends: libgtk2-spell-perl
---
 Recommends: libgtk2-spell-perl, libdatetime-format-strptime-perl, libmp3-info-perl, libcddb-perl, libnet-freedb-perl
17,18c17,21
 Description: An application for managing your movie collection
  GCstar is a free application for managing your collections. 
---
 Description: Manage your collections of movies, games, books, music and more
  GCstar is an application for managing your collections. It supports 
  many types of collections, including movies, books, games, comics, 
  stamps, coins, and many more. You can even create your own 
  collection type for whatever unique thing it is that you collect! 
22,25c25
  your collection by many criteria.
  . 
  GCstar is the successor GCfilms and is compatible to its databases. 
  As GCfilms isn't developed any more GCstars replaces GCfilms.
---
  your collections by many criteria.
diff -r -N /home/nyall/gcstar-1.4.3/debian/menu /home/nyall/Sources/gcstar/gcstar/debian/menu
5c5
   longtitle=Gtk2 Collections Catalogue \
---
   longtitle=Personal Collections Manager \
7c7
   icon=/usr/share/pixmaps/gcstar_logo.xpm
---
   icon=/usr/share/gcstar/icons/gcstar_64x64
diff -r -N /home/nyall/gcstar-1.4.3/debian/postinst /home/nyall/Sources/gcstar/gcstar/debian/postinst
0a1,7
 #!/bin/sh
 
 update-desktop-database
 update-mime-database /usr/share/mime
 
 exit 0
 
diff -r -N /home/nyall/gcstar-1.4.3/debian/postrm /home/nyall/Sources/gcstar/gcstar/debian/postrm
0a1,7
 #!/bin/sh
 
 update-desktop-database
 update-mime-database /usr/share/mime
 
 exit 0
 
diff -r -N /home/nyall/gcstar-1.4.3/debian/rules /home/nyall/Sources/gcstar/gcstar/debian/rules
37,38c37,49
 	install -D -m 0644 debian/gcstar/usr/share/gcstar/logos/Peri_main_logo.png \
 		debian/gcstar/usr/share/pixmaps/gcstar.png
---
 	install -D -m 0644 debian/gcstar/usr/share/gcstar/icons/gcstar_16x16.png \
 		debian/gcstar/usr/share/icons/hicolor/16x16/apps/gcstar.png
 	install -D -m 0644 debian/gcstar/usr/share/gcstar/icons/gcstar_24x24.png \
 		debian/gcstar/usr/share/icons/hicolor/24x24/apps/gcstar.png
 	install -D -m 0644 debian/gcstar/usr/share/gcstar/icons/gcstar_32x32.png \
 		debian/gcstar/usr/share/icons/hicolor/32x32/apps/gcstar.png
 	install -D -m 0644 debian/gcstar/usr/share/gcstar/icons/gcstar_48x48.png \
 		debian/gcstar/usr/share/icons/hicolor/48x48/apps/gcstar.png
 	install -D -m 0644 debian/gcstar/usr/share/gcstar/icons/gcstar_64x64.png \
 		debian/gcstar/usr/share/icons/hicolor/64x64/apps/gcstar.png
 	install -D -m 0644 share/applications/gcstar.xml \
 		debian/gcstar/usr/share/mime/packages/gcstar.xml
 
63d73
 	dh_desktop



Bug#523796: libpam-afs-session: missing pam-auth-update config

2009-10-05 Thread Jakob Haufe
I just tried to following snippet and it seems work.

Priority is 703 because libpam-krb5 has priority 704, so
libpam_afs_session ends up after it in the session stack.
libpam-heimdal unfortunately ships without a pam config for
pam-auth-update. The one from libpam-krb5 should work for it without
modifications, though.

Regards,
Jakob



Name: AFS session
Default: yes
Priority: 703
Session-Type: Additional
Session:
optionalpam_afs_session.so


-- 
ceterum censeo microsoftem esse delendam.


signature.asc
Description: PGP signature


Bug#517449: Found in Debian 5.0.3 - Linux version 2.6.26-2-amd64 (Debian 2.6.26-19)

2009-10-05 Thread Ben Hutchings
On Mon, 2009-10-05 at 11:12 +0100, Berni Elbourn wrote:
 Sorry but after running for weeks with no problems using this kernel:
 
 Linux version 2.6.26-2-amd64 (Debian 2.6.26-17lenny1) (da...@debian.org) (gcc 
 version 4.1.3 20080704 (prerelease) 
 (Debian 4.1.2-25)) #1 SMP Sun Jul 26 20:35:48 UTC 2009
 
 On a Quad-Core AMD Opteron(tm) Processor 2372 HE stepping 02
 
 I safe-upgrade'd on Friday to:
 
 Linux version 2.6.26-2-amd64 (Debian 2.6.26-19) (da...@debian.org) (gcc 
 version 4.1.3 20080704 (prerelease) (Debian 
 4.1.2-25)) #1 SMP Wed Aug 19 22:33:18 UTC 20
 09
 
 On Saturday this happened...
 
 Oct  3 21:37:21 sv28 kernel: [249332.516721] INFO: task postdrop:26510 
 blocked for more than 120 seconds.
 Oct  3 21:37:55 sv28 kernel: [249366.876742] INFO: task pickup:26511 blocked 
 for more than 120 seconds.
 Oct  3 21:39:29 sv28 kernel: [249461.364772] INFO: task postdrop:26510 
 blocked for more than 120 seconds.
 Oct  3 21:39:51 sv28 kernel: [249482.840771] INFO: task kvm:4454 blocked for 
 more than 120 seconds.
 Oct  3 21:40:04 sv28 kernel: [249495.724775] INFO: task pickup:26511 blocked 
 for more than 120 seconds.
 Oct  3 21:41:38 sv28 kernel: [249590.216775] INFO: task postdrop:26510 
 blocked for more than 120 seconds.

Please note that the 'task name:pid blocked for more than time'
messages are *symptoms* and in no way indicate a particular bug.  The
more people add to this bug report, the less meaningful it becomes.

 snip
 
 And by Monday the console was unresponsive,  even to magic - sysrq.  I am 
 pretty sure the machine was not under any 
 stress at 9:30 on Saturday. No users, and backups start after 11pm.
 
 Is it possible the some fixes have dropped out of current releases?

No.

 I have reverted the kernel back to Linux version 2.6.26-2-amd64 (Debian 
 2.6.26-17lenny1)
[...]

You are falling for the fallacy:
http://en.wikipedia.org/wiki/Post_hoc_ergo_propter_hoc.

Please do not discourage people from installing security updates.

Ben.

-- 
Ben Hutchings
I say we take off; nuke the site from orbit.  It's the only way to be sure.


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


Bug#549675: python-codespeak-lib: Depends specifically on python2.4

2009-10-05 Thread Sebastien Delafond
Package: python-codespeak-lib
Version: 1.0.1-2
Severity: normal

python-codespeak-lib depends specifically on python2.4, but it works
just fine with python2.5. Some sort of python-support trickery I
assume...

Cheers,

--Seb

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (999, 'stable'), (500, 'proposed-updates'), (100, 'testing'), (1, 
'unstable')
Architecture: i386 (i686)

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



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549677: libmysql-java: mysql.jar link to directory, should link to .jar file

2009-10-05 Thread Tim Ruehsen
Package: libmysql-java
Version: 5.1.10+dfsg-1
Severity: important

/usr/share/java/mysql.jar points to 
/usr/share/java/mysql-connector-java-5.1.10.jar which is
a directory which contains mysql-connector-java-5.1.10-bin.jar (file).

mysql.jar should point directly to the mysql-connector-java-5.1.10-bin.jar file.

[in my case it breaks netbeans6.7 development]

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

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

Versions of packages libmysql-java depends on:
ii  default-jre-headless [java2 1.6-33   Standard Java or Java compatible R
ii  gcj-4.4-jre-headless [java2 4.4.1-4  Java runtime environment using GIJ
ii  gcj-jre-headless [java2-run 4:4.3.3-9Java runtime environment using GIJ
ii  gij-4.2 [java2-runtime-head 4.2.4-4  The GNU Java bytecode interpreter
ii  gij-4.3 [java2-runtime-head 4.3.4-4  The GNU Java bytecode interpreter
ii  java-gcj-compat-headless [j 1.0.80-5.1   Java runtime environment using GIJ
ii  openjdk-6-jre-headless [jav 6b16-1.6.1-1 OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre [java2-runtim 6-16-1   Sun Java(TM) Runtime Environment (

libmysql-java recommends no packages.

Versions of packages libmysql-java suggests:
ii  libcommons-logging-java   1.1.1-5commmon wrapper interface for seve
ii  liblog4j1.2-java  1.2.15-7   Logging library for java

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549638: afflib-tools and simh: error when trying to install together

2009-10-05 Thread Michael Prokop
* Christophe Monniez christophe.monn...@fccu.be [20091005 15:20]:
 Le lundi 05 octobre 2009 à 13:46 +0200, Vince Mulhollon a écrit :

  OK my interpretation of the situation, is you afflib guys really need 
  the name s3 because that is the full name of the amazon s3 service
  you're trying to access, and the simh s3 is merely the short name for 
  the System/3 emulator.

  afflib folks please confirm or deny the accuracy of my interpretation.

  If I'm correct I think the logical solution is I extend the name of the 
  System/3 emulator from s3 to system3 (err I have to verify that is not
  otherwise in use... maybe I'll go sys3, who knows)

  Current status, waiting on your comments, afflib folks ...

 As the s3 tool is only a testing tool in the afflib package and that
 it's not essential to afflib users, I renamed the tool s3-afflib this
 morning in git:
 http://git.debian.org/?p=forensics/afflib.git;a=commitdiff;h=5b870b00b2c62dc94648178f0de1e9573cab60fa

Thanks, appreciated.

 Anyway, I'm waiting comments from other debian-forensics members, if no
 one complains, it will be uploaded.

ACK from my side.

 Finally, I think that it's a good idea to change both utilities names
 because, one day or another, I suspect that a real Amazon s3 tool
 could come up with the same name. And since tab completion exists, such
 a short name is not needed anymore :-)

ACK, very short command names are calling for troubles in the long
run.

regards,
-mika-


signature.asc
Description: Digital signature


Bug#549647: hda: dma_timer_expiry: dma status == 0x21 errors on VIA VT82C686 chipset

2009-10-05 Thread Ben Hutchings
On Mon, 2009-10-05 at 10:10 +0200, Paolo Sala wrote:
 Package: linux-image-2.6.26-2-686
 Version: 2.6.26-19
 Severity: normal
 
 During the boot I can find a lot of hda: error waiting for DMA and the boot 
 is very slow; after the boot in effect I can see that the dma 
 parameter for the hda is off. Using hdparm I can set it to on and after a 
 reboot the option remain on. But if I shutdown the pc when I put it on the 
 boot is very slow again and the parameter is off again. I have tried to force 
 the option in hdparm.conf but without any success.

Did an earlier kernel version work better on this hardware?

Please send a longer kernel log showing the errors related to hda (the
section below is full of firewall messages).  Then, try replacing the
cable to the HD.

Ben.

-- 
Ben Hutchings
I say we take off; nuke the site from orbit.  It's the only way to be sure.


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


Bug#543375: initscripts: last superblock write time in future occurring sometimes

2009-10-05 Thread Mader, Alexander (N-MSR)

LaMont Jones schrieb:

On Mon, Oct 05, 2009 at 08:04:23AM +0200, Mader, Alexander (N-MSR) wrote:
Something additional: I am running a Debian kernel not a self built one,  
and /lib/udev/rules.d/85-hwclock.rules was not there in the first place  
so I had to create it.

That file is delivered by util-linux what version of util-linux do
you have installed??

Hello,

since Sep 28th it is 2.16.1-3. My tests ran yesterday and today.

Best regards, Alexander.
8 --- 8
:~# aptitude show util-linux
Paket: util-linux
Essentiell: ja
Zustand: Installiert
Automatisch installiert: nein
Version: 2.16.1-3
8 --- 8
Aptitude 0.4.11.11: Protokoll
Mo, Sep 28 2009 09:01:00 +0200
...
[AKTUALISIERUNG] util-linux 2.16-3 - 2.16.1-3
8 --- 8
--
Alexander Mader alexander.ma...@niles.de

GPG public key: http://mader.seppi.de/pubkey-dienst.asc



smime.p7s
Description: S/MIME Cryptographic Signature


Bug#548661: dpkg: Override package dependencies

2009-10-05 Thread Stefan Monnier
 At least apt-get -d --force-depends install foo should download
 stuff so one can dpkg -i --force-depends foo.deb.  Sucks if you have
 to use --print-uris and wget.

Actually, the download part is the least painful part.  The problem is
that subsequent uses of aptitutde will burp because the package is
deemed BROKEN.  When I've had to use such haks in the past I often
ended up letting aptitude remove the broken package, and then re-add
it manually afterwards.  But if you update weekly, like I do, it quickly
gets very tedious, especially when you start having more than one such
special case and when it occasionally needs extra packages.


Stefan



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549329: after restarting tomcat6, it won't listen on any ports

2009-10-05 Thread Folkert van Heusden
Ok problem can be closed: it DOES open ports, it only takes a couple of
minutes(!) to do so.

  Package: tomcat6
  Version: 6.0.20-5
  Severity: normal

  After restarting tomcat6, it won't listen on any ports.
  E.g.
  /etc/init.d/tomcat6 restart
  
  Connector port=8880 protocol=HTTP/1.1 
 connectionTimeout=2 
 redirectPort=8443 /
  
  mauer:/usr/local/games/stop# netstat -nap | grep 8880
  mauer:/usr/local/games/stop# 
 
 Not reproducible here. Are you sure tomcat6 was running before doing
 restart? Thats a prerequesite of restart.
 mk...@quadriga ~ sudo netstat -tulpen | grep jsvc
 tcp6   0  0 :::8080 :::*LISTEN
   1132874698210433/jsvc  
 mk...@quadriga ~ sudo sed -i -e 's/8080/8280/' /etc/tomcat6/server.xml 
 mk...@quadriga ~ sudo /etc/init.d/tomcat6 restart
  * Stopping Tomcat servlet engine tomcat6
...done.
  * Starting Tomcat servlet engine tomcat6
...done.
 mk...@quadriga ~ sudo netstat -tulpen | grep jsvc
 tcp6   0  0 :::8280 :::*LISTEN
   1134184608826653/jsvc  
 mk...@quadriga ~

:


Folkert van Heusden

-- 
Ever wonder what is out there? Any alien races? Then please support
the s...@home project: setiathome.ssl.berkeley.edu
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549588: xserver-xorg-core: Loading glx module causes X server to crash

2009-10-05 Thread Arnout Boelens
On Monday 05 October 2009 08:50:47 Michel Dänzer wrote:
 reassign 549588 libgl1-mesa-dri 7.6-1
 forwarded 549588 https://bugs.freedesktop.org/show_bug.cgi?id=24131
 kthxbye

Thanks,

Arnout

 On Mon, 2009-10-05 at 13:18 +0200, Julien Cristau wrote:
  On Sun, Oct  4, 2009 at 17:30:33 -0400, Arnout Boelens wrote:
   X: radeon_bo_legacy.c:207: legacy_is_pending: Assertion
   `bo_legacy-is_pending = bo-cref' failed.
 
  I failed to notice this one, Michel says It's a known bug which was
  reported upstream a while ago.
 
 See above.


smime.p7s
Description: S/MIME cryptographic signature


Bug#547965: smc: blanks screen but fails to launch

2009-10-05 Thread Muammar El Khatib
Hi,

Could you provide more information? I can't do too much with the
information provided.

Regards,
-- 
Muammar El Khatib.
Linux user: 403107.
GPG Key = 127029F1
http://muammar.me | http://proyectociencia.org
  ,''`.
 : :' :
 `. `'
   `-



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#357297: Please revert this awful feature or fix it.

2009-10-05 Thread Lennart Sorensen
On Mon, Oct 05, 2009 at 06:27:52AM -0430, Jose Luis Rivas wrote:
 Yah, but we want to take over da world g

You have succeeded.  At least the world of debian unstable users.

 Please just remove the file, I will work on this ASAP. Wait at least
 until this weekend.

Great.

It really does seem like letting the desktop manager or .xsession or
something else decide which screensaver to run is nicer.

-- 
Len Sorensen



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#542218: backuppc: Security hole when using rsync and multiple users

2009-10-05 Thread Marc Deslauriers
The patch included in 3.1.0-7 doesn't actually fix the problem. Normal
users can still set the ClientNameAlias by adding something like
override_ClientNameAlias=1v_zZ_ClientNameAlias= to their POST.

Marc.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#517449: Found in Debian 5.0.3 - Linux version 2.6.26-2-amd64 (Debian 2.6.26-19)

2009-10-05 Thread Berni Elbourn

Ben Hutchings wrote:

Please note that the 'task name:pid blocked for more than time'
messages are *symptoms* and in no way indicate a particular bug.  The
more people add to this bug report, the less meaningful it becomes.


snip


Cool. What do you really want from from us use to help pin this down.



And by Monday the console was unresponsive,  even to magic - sysrq.  I am pretty sure the machine was not under any 
stress at 9:30 on Saturday. No users, and backups start after 11pm.


Is it possible the some fixes have dropped out of current releases?


No.


That is good to hear. How can I help here to help me to stabilise our 
systems?





I have reverted the kernel back to Linux version 2.6.26-2-amd64 (Debian 
2.6.26-17lenny1)

[...]

You are falling for the fallacy:
http://en.wikipedia.org/wiki/Post_hoc_ergo_propter_hoc.

Please do not discourage people from installing security updates.


I did not think I was. How can we take this forward positively?

Berni



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#546260: baobab segfaults when scanning /usr folder as non-root

2009-10-05 Thread Goswin von Brederlow

Hi,

trying to reproduce this on my laptop fails (i.e. it scans fine, no segfaults). 
I did reproduce it 100% on the system where it failed so I have to wait
till I get back to that one.

MfG
Goswin



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549102: error while loading shared libraries: libntop-3.3.10.so

2009-10-05 Thread Michel Casabona
Hi Ola

- Ola Lundqvist o...@debian.org a écrit :

  ntop doesn't restart after upgrade. 
  
  Starting network top daemon: /usr/sbin/ntop: error while loading
 shared libraries: libntop-3.3.10.so: cannot open shared object file:
 
 Can you start it after the upgrade is complete?
 
 I can not reproduce your problem.

Thanks for looking at this.
No, the problem is persistent, even after reboot.
More, another machine running squeeze has been upgraded this morning and
the same problem occured.

The wrong soname is called by libntopreport
~$ ldd /usr/lib/libntopreport-3.3.so  | grep -E 'ntop|found'
libntop-3.3.10.so = not found

No idea why, however rebuilding the package got rid of the problem
(dpkg-buildpackage -rfakeroot -b  on squeeze). Apart from solving the
problem, the rebuild also linked ntop to pcre but I don't think it makes
a difference.

Thanks 

-- 
Michel Casabona



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#509018: lahf and older Intel CPUs

2009-10-05 Thread Florian Reitmeir

Hi,

flash on 64bit uses the LAHF Instruction which is not available on all
older intel CPUs.

My CPU for example has no support..  so flash crashes and iceweasel
crashes to with an illegal instruction error

there is a remarkable simple fix.. the attached .c file. just compile
and place it the in the same directory the flash plugin resides.

gcc -fPIC -shared -nostdlib -lc -oflashplugin-lahf-fix.so flashplugin-lahf-fix.c

please provide it the package, there should be no impact on not affected
machines.

--
Florian Reitmeir


flashplugin-lahf-fix.tar.gz
Description: Binary data


Bug#549102: error while loading shared libraries: libntop-3.3.10.so

2009-10-05 Thread Ola Lundqvist
Strange... I'll see what I can do about this. Maybe the package has  
been rebuilt, or I rebuilt it on wrong machine before the upload.


I'll check.

// Ola

Quoting Michel Casabona michel.casab...@free.fr:

Hi Ola

- Ola Lundqvist o...@debian.org a écrit :


 ntop doesn't restart after upgrade.

 Starting network top daemon: /usr/sbin/ntop: error while loading
shared libraries: libntop-3.3.10.so: cannot open shared object file:

Can you start it after the upgrade is complete?

I can not reproduce your problem.


Thanks for looking at this.
No, the problem is persistent, even after reboot.
More, another machine running squeeze has been upgraded this morning and
the same problem occured.

The wrong soname is called by libntopreport
~$ ldd /usr/lib/libntopreport-3.3.so  | grep -E 'ntop|found'
libntop-3.3.10.so = not found

No idea why, however rebuilding the package got rid of the problem
(dpkg-buildpackage -rfakeroot -b  on squeeze). Apart from solving the
problem, the rebuild also linked ntop to pcre but I don't think it makes
a difference.

Thanks

--
Michel Casabona






--
 --- Inguza Technology AB --- MSc in Information Technology 
/  o...@inguza.comAnnebergsslingan 37\
|  o...@debian.org   654 65 KARLSTAD|
|  http://inguza.com/Mobile: +46 (0)70-332 1551 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9  /
 ---



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549678: kaddressbook is not installable on sid due to missing libgnokii4 dependency

2009-10-05 Thread Paul Millar
Package: kaddressbook
Severity: grave
Justification: renders package unusable


The kaddressbook package is currently not installable with Debian sid.  When I 
attempt to do so, I get the 
following error message:

zitpcx6184:~# apt-get install kaddressbook
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  kaddressbook: Depends: libgnokii4 but it is not installable
E: Broken packages


When I attempt to satisfy the libgnokii4 dependency, I see the following:

zitpcx6184:~# apt-get install libgnokii4
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libgnokii4 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package libgnokii4 has no installation candidate

The Debian page for this package[1] suggests that libgnokii4 is only available 
for MIPS platform.

[1] http://packages.debian.org/sid/libgnokii4

It seems that libgnokii5 is available for many platforms[2], so one possible 
resolution of this issue would be to 
link against libgnokii5 rather than libgnokii4.

[2] http://packages.debian.org/sid/libgnokii5

Cheers,

Paul.

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

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

Versions of packages kaddressbook depends on:
ii  akonadi-server1.2.1-1Akonadi PIM storage service
ii  kdebase-runtime   4:4.3.1-1  runtime components from the offici
ii  kdelibs5  4:4.3.1-1  core libraries for all KDE 4 appli
ii  kdepim-runtime4:4.3.1-1  Runtime components for akonadi-kde
ii  kdepimlibs5   4:4.3.1-1  core libraries for KDE PIM 4 appli
ii  libc6 2.9-27 GNU C Library: Shared libraries
pn  libgnokii4none (no description available)
ii  libkabcommon4 4:4.3.1-2  KDE PIM common addressbook library
ii  libkdepim44:4.3.1-2  KDE PIM library
ii  libkleo4  4:4.3.1-2  certificate based crypto library f
ii  libkontactinterfaces4 4:4.3.1-2  KDE Kontact interface library
ii  libphonon44:4.5.2-2  Qt 4 Phonon module
ii  libqt4-dbus   4:4.5.2-2  Qt 4 D-Bus module
ii  libqt4-qt3support 4:4.5.2-2  Qt 3 compatibility library for Qt 
ii  libqt4-xml4:4.5.2-2  Qt 4 XML module
ii  libqtcore44:4.5.2-2  Qt 4 core module
ii  libqtgui4 4:4.5.2-2  Qt 4 GUI module
ii  libstdc++64.4.1-5The GNU Standard C++ Library v3
ii  phonon4:4.5.2-2  Qt 4 Phonon module metapackage

kaddressbook recommends no packages.

Versions of packages kaddressbook suggests:
ii  kdepim-kresources 4:4.3.1-2  KDE PIM resource plugins



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549679: dh_ocaml cannot be used with arch:all packages

2009-10-05 Thread Stéphane Glondu
Package: dh-ocaml
Version: 0.9.0
Severity: normal

This bug is a reminder for a known issue with dh_ocaml.

If dh_ocaml is used to compute dependencies of an arch:all package,
this package won't be installable on all architectures. This is
because the ABI of a library may be different on each architectures.

Currently, all *.cmi and *.cmx (if present) are taken into account to
compute a single ABI. A solution to the problem would be to compute
two distinct ABIs per (native) architecture: one for all *.cmi files
(which should be the same on all architectures... unless there is some
kind of conditional compilation), and one for all *.cmx files on
native architectures (this one might be different for each native
architecture, but it shouldn't be a problem).

-- 
Stéphane

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

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

dh-ocaml depends on no packages.

Versions of packages dh-ocaml recommends:
ii  ocaml-nox 3.11.1-3   ML implementation with a class-bas

dh-ocaml suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#282928: festival: female voice

2009-10-05 Thread Frank Loeffler
Hi,

On Sat, Oct 03, 2009 at 07:51:51AM +0200, Javier Serrano Polo wrote:
 El ds 03 de 10 de 2009 a les 09:44 +0530, en/na Kartik Mistry va
 escriure:
  Since we have couple of female voices now in Debian for mbrola, can we
  close this bug now?
 
 I thought we were talking about packages for the main category. Anyway,
 since I'm using a different festival version, I've got nothing to say
 about the debian packages.

I agree to Javier here. It is unfortunate that a lot of voices are
non-free, so I feel that the few that are free should be promoted by
packaging them.

Frank Loeffler



pgpdvFOHm6GUW.pgp
Description: PGP signature


Bug#548661: dpkg: Override package dependencies

2009-10-05 Thread Goswin von Brederlow
Stefan Monnier monn...@iro.umontreal.ca writes:

 At least apt-get -d --force-depends install foo should download
 stuff so one can dpkg -i --force-depends foo.deb.  Sucks if you have
 to use --print-uris and wget.

 Actually, the download part is the least painful part.  The problem is
 that subsequent uses of aptitutde will burp because the package is
 deemed BROKEN.  When I've had to use such haks in the past I often
 ended up letting aptitude remove the broken package, and then re-add
 it manually afterwards.  But if you update weekly, like I do, it quickly
 gets very tedious, especially when you start having more than one such
 special case and when it occasionally needs extra packages.


 Stefan

Actualy I do that too and it is anyoing.

Say you have A installed with force (or half installed with dpkg due
to some dependency) then you can not use apt/aptitude at all even to
install C that is totaly unrelated to A. Maybe apt-get install C
should only warn about A being broken when C has no dependency to A.

MfG
Goswin



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548505: aptitude reports incorrectly essential packages

2009-10-05 Thread Daniel Burrows
On Sat, Sep 26, 2009 at 06:45:06PM +0200, Vincenzo Tibullo enzo...@gmail.com 
was heard to say:
 The following command 
 
 aptitude search ~E | grep apt
 
 gives the following output
 
 i   apt - Advanced front-end for dpkg
 
 so reporting apt as essential, but apt is not essential, 
 as can be seen by one of the following command:
 
 aptitude  show apt | grep '^Essential'
 apt-cache show apt | grep '^Essential'

  Internally, aptitude maps ~E to testing the flags essential or
important.  This is also what it does when testing whether to warn
the user about packages they're removing.  apt always turns on the
important flag for the package named apt, regardless of whether
Essential is set to true for it.

  It's easy to change this behavior so that important is ignored
by ~E; I haven't really thought enough about this to figure out whether
that's the right thing to do. (it would certainly match the
documentation better)

  Daniel



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#545808: bind9: Binding to specific Ipv6 address does not work with chroot (-t)

2009-10-05 Thread Andreas Vögele
Florian Weimer writes:

 * Christian Franke:

 The logs with -t and without -t have the line
  listening on IPv6 interface lo, 2001:123:1234::1#53
 as only difference. There is no error message to be seen.

 Could you try to mount proc inside the chroot, please?

Mounting /proc in the chroot helps.

BTW, isn't this bug a duplicate of bug #434955?



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548773: closed by Laszlo Boszormenyi g...@debian.hu (neon27 v0.29.0 insecure algorithm error)

2009-10-05 Thread Simon Eugster

Hi Laszlo,

Thanks for your answer!
Would it be possible for subversion to nevertheless allow me to continue 
with this operations? Or is that strictly forbidden by libneon?


Simon

Debian Bug Tracking System wrote:

This is an automatic notification regarding your Bug report
which was filed against the libneon27-gnutls package:

#548773: [libneon27-gnutls] authentication to subversion via https fails with 
Insecure Algorithm error

It has been closed by Laszlo Boszormenyi g...@debian.hu.

Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Laszlo Boszormenyi 
g...@debian.hu by
replying to this email.






Subject:
neon27 v0.29.0 insecure algorithm error
From:
Laszlo Boszormenyi g...@debian.hu
Date:
Mon, 05 Oct 2009 00:46:16 +0200
To:
548773-d...@bugs.debian.org

To:
548773-d...@bugs.debian.org


Hi Simon,

It's an user error. Please read the details of this error message[1]. It
comes from GNU TLS, quoting the description:
GNUTLS_CERT_INSECURE_ALGORITHM:
The certificate was signed using an insecure algorithm such as
MD2 or MD5. These algorithms have been broken and should not be
trusted.

Please recreate your certificate with a trusted algorithm and it will be
fine with neon.

Regards,
Laszlo/GCS
[1] 
http://www.gnu.org/software/gnutls/manual/html_node/Verifying-X_002e509-certificate-paths.html






Subject:
[libneon27-gnutls] authentication to subversion via https fails with 
Insecure Algorithm error

From:
Simon Eugster simon...@gmail.com
Date:
Mon, 28 Sep 2009 19:29:36 +0200
To:
sub...@bugs.debian.org

To:
sub...@bugs.debian.org


Package: libneon27-gnutls
Version: 0.29.0-1
Severity: serious

--- Please enter the report below this line. ---
Since 0.29.0-1 I've got the following problem when trying to do anything 
with svn (update, commit, checkout, whatever):

$ svn up
svn: OPTIONS von »https://myuri/...«: Certificate verification error: 
signed using insecure algorithm (https://myuri)

Downgraded libneon27 and libneon27-gnutls to 0.28.6-1 solved the problem.

I tagged this as serious because users depending on svn and not knowing 
the origin of this problem may really have a problem.


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.31-1.slh.1-sidux-686

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org
  500 unstableftp.spline.de
  500 unstableftp.ch.debian.org

--- Package information. ---
Depends   (Version) | Installed
===-+-===
libc6  (= 2.3) | 2.9-26
libcomerr2(= 1.01) | 1.41.9-1
libgcrypt11  (= 1.4.2) | 1.4.4-4
libgnutls26   (= 2.7.14-0) | 2.8.4-1
libgpg-error0(= 1.6-1) | 1.6-1
libgssapi-krb5-2 (= 1.7dfsg~beta1) | 1.7dfsg~beta3-1
libk5crypto3(= 1.6.dfsg.2) | 1.7dfsg~beta3-1
libkrb5-3   (= 1.6.dfsg.2) | 1.7dfsg~beta3-1
libtasn1-3   (= 1.6-0) | 2.3-1
libxml2 (= 2.6.27) | 2.7.5.dfsg-1
zlib1g (= 1:1.1.4) | 1:1.2.3.3.dfsg-15


Recommends   (Version) | Installed
==-+-===
ca-certificates| 20090814


Package's Suggests field is empty.









--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#517449: Found in Debian 5.0.3 - Linux version 2.6.26-2-amd64 (Debian 2.6.26-19)

2009-10-05 Thread Berni Elbourn

Berni Elbourn wrote:

;-) Gibberish:

That is good to hear. How can I help here to help me to stabilise our 
systems?


How can I help you to help me stabilise our systems?

Berni



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548657: Acknowledgement (Allow sudo to be used to become root)

2009-10-05 Thread Daniel Burrows
On Sun, Sep 27, 2009 at 04:59:52PM -0700, Matt Kraai kr...@ftbfs.org was 
heard to say:
 The attached patch, which adds a link to this option from the
 Becoming root section, would have allowed me to find this option
 before making a fool of myself.

  I'm applying a slightly tweaked version of that text.

  Daniel



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549680: fails with RAID over entire IDE disks

2009-10-05 Thread Simon Richter
Package: initramfs-tools
Version: 0.93.4
Severity: normal

Hi,

building an initramfs with MODULES=dep fails with

mkinitramfs: for root /dev/mapper/honey-root missing hdc[ /sys/block/ entry

Apparently the opening bracket is misinterpreted as a partition name.

   Simon

-- Package-specific info:
-- /proc/cmdline
console=ttyS0,115200

-- /proc/filesystems
ext3

-- lsmod
Module  Size  Used by
sit15232  0 
tunnel4 6908  1 sit
8021q  26644  0 
garp   12112  1 8021q
pppoe  16296  2 
pppox   6780  1 pppoe
ppp_generic30564  6 pppoe,pppox
slhc9548  1 ppp_generic
bridge 55852  0 
stp 6088  2 garp,bridge
bnep   17188  2 
sco14296  2 
l2cap  25908  3 bnep
bluetooth  62032  5 bnep,sco,l2cap
tun17728  12 
binfmt_misc12616  1 
deflate 6404  0 
zlib_deflate   24144  1 deflate
ctr 8132  0 
twofish10472  0 
twofish_common 18000  1 twofish
camellia   23616  0 
serpent25008  0 
blowfish   12464  0 
des_generic22660  0 
xcbc8972  0 
rmd160 12624  0 
sha1_generic5844  0 
hmac7908  0 
crypto_null 6636  0 
af_key 35208  2 
ipt_MASQUERADE  6224  7 
iptable_nat 9788  1 
nf_nat 21882  2 ipt_MASQUERADE,iptable_nat
xt_length   5152  2 
xt_TCPMSS   7588  1 
xt_owner6076  1 
xt_MARK 5492  3 
iptable_mangle  7200  1 
xt_recent  13148  2 
xt_tcpudp   6448  2 
nf_conntrack_ipv4  17932  4 iptable_nat,nf_nat
nf_defrag_ipv4  5400  1 nf_conntrack_ipv4
xt_state5532  1 
nf_conntrack   71980  5 
ipt_MASQUERADE,iptable_nat,nf_nat,nf_conntrack_ipv4,xt_state
iptable_filter  6804  1 
ip_tables  16028  3 iptable_nat,iptable_mangle,iptable_filter
x_tables   20068  10 
ipt_MASQUERADE,iptable_nat,xt_length,xt_TCPMSS,xt_owner,xt_MARK,xt_recent,xt_tcpudp,xt_state,ip_tables
snd_via82xx30584  0 
snd_via82xx_modem  17208  0 
gameport   15128  1 snd_via82xx
snd_ac97_codec108936  2 snd_via82xx,snd_via82xx_modem
snd_pcm_oss45784  0 
snd_mixer_oss  21040  1 snd_pcm_oss
ac97_bus5188  1 snd_ac97_codec
snd_mpu401_uart11392  1 snd_via82xx
snd_pcm80484  4 
snd_via82xx,snd_via82xx_modem,snd_ac97_codec,snd_pcm_oss
snd_seq_midi   10576  0 
snd_rawmidi27180  2 snd_mpu401_uart,snd_seq_midi
snd_seq_midi_event 10576  1 snd_seq_midi
snd_seq59096  2 snd_seq_midi,snd_seq_midi_event
snd_timer  25828  2 snd_pcm,snd_seq
snd_seq_device 11044  3 snd_seq_midi,snd_rawmidi,snd_seq
via_ircc   35544  0 
irda  121852  1 via_ircc
vt8231 21420  0 
snd66876  11 
snd_via82xx,snd_via82xx_modem,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_mpu401_uart,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
via_rhine  26152  0 
snd_page_alloc 13244  3 snd_via82xx,snd_via82xx_modem,snd_pcm
soundcore  10324  1 snd
crc_ccitt   5404  1 irda
i2c_viapro 12368  0 
joydev 14676  0 
evdev  14076  0 
hfcpci 30528  0 
parport_pc 35176  0 
firewire_ohci  28232  0 
mISDN_core 91260  1 hfcpci
parport40916  1 parport_pc
firewire_core  50252  1 firewire_ohci
crc_itu_t   5780  1 firewire_core
ext3  138112  6 
jbd50856  1 ext3
mbcache11432  1 ext3
sha256_generic 13404  0 
aes_generic32288  4 
cbc 7160  2 
dm_crypt   17392  2 
dm_mirror  18736  0 
dm_region_hash 15420  1 dm_mirror
dm_log 13808  2 dm_mirror,dm_region_hash
dm_snapshot29348  0 
dm_mod 65304  29 dm_crypt,dm_mirror,dm_log,dm_snapshot
ide_cd_mod 32544  0 
cdrom  41392  1 ide_cd_mod
i2c_powermac8320  0 
ata_generic 8432  0 
libata177008  1 ata_generic
ide_pci_generic 7428  0 
via82cxxx   9812  4 
usb_storage58348  1 
sd_mod 37912  1 
scsi_mod  157268  3 libata,usb_storage,sd_mod
crc_t10dif  5260  1 sd_mod
raid1  26532  2 
md_mod100080  3 raid1
uhci_hcd   30272  0 
usbhid 43392  0 
hid48168  1 usbhid

Bug#549681: needs MODULES=dep on some PowerPC systems

2009-10-05 Thread Simon Richter
Package: initramfs-tools
Version: 0.93.4
Severity: important

Hi,

some OpenFirmware implementations, such as the one in the PegasosII,
have a 12 MB size limit on kernel images, and no initrd loading
capability. The latter is worked around by merging the initrd into the
image with the mkvmlinuz tool, however the generated images are
unbootable if they exceed 12 MB.

It would be good if mkinitramfs would fail on systems that have the
string platform: CHRP in /proc/cpuinfo if compressed kernel
and initramfs together are larger than 12 MB, to stop unpleasant
surprises when booting.

   Simon

-- Package-specific info:
-- /proc/cmdline
console=ttyS0,115200

-- /proc/filesystems
ext3

-- lsmod
Module  Size  Used by
sit15232  0 
tunnel4 6908  1 sit
8021q  26644  0 
garp   12112  1 8021q
pppoe  16296  2 
pppox   6780  1 pppoe
ppp_generic30564  6 pppoe,pppox
slhc9548  1 ppp_generic
bridge 55852  0 
stp 6088  2 garp,bridge
bnep   17188  2 
sco14296  2 
l2cap  25908  3 bnep
bluetooth  62032  5 bnep,sco,l2cap
tun17728  12 
binfmt_misc12616  1 
deflate 6404  0 
zlib_deflate   24144  1 deflate
ctr 8132  0 
twofish10472  0 
twofish_common 18000  1 twofish
camellia   23616  0 
serpent25008  0 
blowfish   12464  0 
des_generic22660  0 
xcbc8972  0 
rmd160 12624  0 
sha1_generic5844  0 
hmac7908  0 
crypto_null 6636  0 
af_key 35208  2 
ipt_MASQUERADE  6224  7 
iptable_nat 9788  1 
nf_nat 21882  2 ipt_MASQUERADE,iptable_nat
xt_length   5152  2 
xt_TCPMSS   7588  1 
xt_owner6076  1 
xt_MARK 5492  3 
iptable_mangle  7200  1 
xt_recent  13148  2 
xt_tcpudp   6448  2 
nf_conntrack_ipv4  17932  4 iptable_nat,nf_nat
nf_defrag_ipv4  5400  1 nf_conntrack_ipv4
xt_state5532  1 
nf_conntrack   71980  5 
ipt_MASQUERADE,iptable_nat,nf_nat,nf_conntrack_ipv4,xt_state
iptable_filter  6804  1 
ip_tables  16028  3 iptable_nat,iptable_mangle,iptable_filter
x_tables   20068  10 
ipt_MASQUERADE,iptable_nat,xt_length,xt_TCPMSS,xt_owner,xt_MARK,xt_recent,xt_tcpudp,xt_state,ip_tables
snd_via82xx30584  0 
snd_via82xx_modem  17208  0 
gameport   15128  1 snd_via82xx
snd_ac97_codec108936  2 snd_via82xx,snd_via82xx_modem
snd_pcm_oss45784  0 
snd_mixer_oss  21040  1 snd_pcm_oss
ac97_bus5188  1 snd_ac97_codec
snd_mpu401_uart11392  1 snd_via82xx
snd_pcm80484  4 
snd_via82xx,snd_via82xx_modem,snd_ac97_codec,snd_pcm_oss
snd_seq_midi   10576  0 
snd_rawmidi27180  2 snd_mpu401_uart,snd_seq_midi
snd_seq_midi_event 10576  1 snd_seq_midi
snd_seq59096  2 snd_seq_midi,snd_seq_midi_event
snd_timer  25828  2 snd_pcm,snd_seq
snd_seq_device 11044  3 snd_seq_midi,snd_rawmidi,snd_seq
via_ircc   35544  0 
irda  121852  1 via_ircc
vt8231 21420  0 
snd66876  11 
snd_via82xx,snd_via82xx_modem,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_mpu401_uart,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
via_rhine  26152  0 
snd_page_alloc 13244  3 snd_via82xx,snd_via82xx_modem,snd_pcm
soundcore  10324  1 snd
crc_ccitt   5404  1 irda
i2c_viapro 12368  0 
joydev 14676  0 
evdev  14076  0 
hfcpci 30528  0 
parport_pc 35176  0 
firewire_ohci  28232  0 
mISDN_core 91260  1 hfcpci
parport40916  1 parport_pc
firewire_core  50252  1 firewire_ohci
crc_itu_t   5780  1 firewire_core
ext3  138112  6 
jbd50856  1 ext3
mbcache11432  1 ext3
sha256_generic 13404  0 
aes_generic32288  4 
cbc 7160  2 
dm_crypt   17392  2 
dm_mirror  18736  0 
dm_region_hash 15420  1 dm_mirror
dm_log 13808  2 dm_mirror,dm_region_hash
dm_snapshot29348  0 
dm_mod 65304  29 dm_crypt,dm_mirror,dm_log,dm_snapshot
ide_cd_mod 32544  0 
cdrom  41392  1 ide_cd_mod
i2c_powermac8320  0 
ata_generic 8432  0 
libata177008  1 ata_generic
ide_pci_generic 7428  0 
via82cxxx   9812  4 
usb_storage

Bug#549312: aptitude: cdrom segfaults on several machines and architectures when reading DVDs

2009-10-05 Thread Daniel Burrows
On Fri, Oct 02, 2009 at 12:36:37PM +0100, ael law_ence@ntlworld.com was 
heard to say:
 1) An entry in /var/log/messages:
 
 Oct  2 10:48:44 conquest3 kernel: cdrom[4987]: segfault at 200 ip b807b71d sp 
 bf
 a34890 error 4 in ld-2.9.so[b8068000+1c000]
 Oct  2 10:48:56 conquest3 kernel: cdrom[5028]: segfault at 200 ip b7ff871d sp 
 bf
 cee290 error 4 in ld-2.9.so[b7fe5000+1c000]
 Oct  2 10:56:42 conquest3 kernel: cdrom[5031]: segfault at 200 ip b7f9571d sp 
 bf
 8e9850 error 4 in ld-2.9.so[b7f82000+1c000]
 Oct  2 10:56:49 conquest3 kernel: cdrom[5033]: segfault at 200 ip b806971d sp 
 bf
 a96ac0 error 4 in ld-2.9.so[b8056000+1c000]

  cdrom is part of the apt package, not aptitude; I'll reassign this
there.

 # ps -C cdrom
   PID TTY  TIME CMD
  5845 pts/000:00:00 cdrom
 conquest3:~# gdb aptitude 5845

  You'll probably have better luck if you debug /usr/lib/cdrom instead
of aptitude. :)  I don't know if that'll help much, though; it doesn't
have debugging symbols built in.

  Daniel



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#542218: backuppc: Security hole when using rsync and multiple users

2009-10-05 Thread Marc Deslauriers
Included is a patch that moves the previous fix to a location before the
settings get applied.

Marc.


diff -Naur backuppc-3.1.0.ori/lib/BackupPC/CGI/EditConfig.pm backuppc-3.1.0/lib/BackupPC/CGI/EditConfig.pm
--- backuppc-3.1.0.ori/lib/BackupPC/CGI/EditConfig.pm	2009-10-05 08:04:01.0 -0400
+++ backuppc-3.1.0/lib/BackupPC/CGI/EditConfig.pm	2009-10-05 10:48:48.0 -0400
@@ -368,6 +368,9 @@
 ErrorExit(eval(qq{$Lang-{Only_privileged_users_can_edit_config_files}}));
 }
 
+# Debian: ClientNameAlias is too dangerous, disable it
+$bpc-{Conf}{CgiUserConfigEdit}{ClientNameAlias} = 0;
+
 if ( defined($In{menu}) || $In{saveAction} eq Save ) {
 	$errors = errorCheck();
 	if ( %$errors ) {
@@ -430,9 +433,6 @@
 # available per-host settings.
 #
 
-# Debian: ClientNameAlias is too dangerous, disable it
-$bpc-{Conf}{CgiUserConfigEdit}{ClientNameAlias} = 0;
-
 foreach my $m ( keys(%ConfigMenu) ) {
 my $enabled = 0;
 my $text = -1;


Bug#549569: libguytools1: Support for more arches.

2009-10-05 Thread Michael Prokop
[Cc-ing Guy who's upstream of libguytools/guymager]

* Kurt Roeckx [20091004 15:25]:

 Package: libguytools1
 Version: 1.0.4-1

 It seems the current pacakge only allows building on i386 and
 amd64.  Is there a reason why hurd and kfreebsd couldn't work?

 Looking at the description, it seems to support stack backtracking
 which is arch dependent, and I assume it currently only supports
 amd64 and i386.  Do you know if there are plans to support more
 arches in the future, and how hard it would be to add it?

Guy: any information from your side?

thx  regards,
-mika-


signature.asc
Description: Digital signature


Bug#548879: aptitude: exits 255 without explanation

2009-10-05 Thread Daniel Burrows
On Tue, Sep 29, 2009 at 01:05:40PM +0200, Sven Joachim svenj...@gmx.de was 
heard to say:
 The problem is that apt cannot upgrade perl because of #548848, but it
 is impossible to deduce this from the aptitude output above.

  It looks like the problem is that aptitude discards error messages (!)
when something goes wrong in the install.  I'm not sure why this was
done; it dates back to 1999 and was added in a big commit due to version
control problems when Sourceforge imported my CVS repository.  It looks
like probably I added it originally to suppress any possible errors from
the failsafe dpkg --configure -a other than the ones we dumped before
running it (even though apt wouldn't be generating new errors in that
case ANYWAY) and at some point it got mutated into discard all failure
errors from dpkg all the time.

  I'm going to remove the Discard() invocation entirely.  Suppressing
errors is not a good idea.

  Daniel



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549642: [Pkg-openldap-devel] Bug#549642: slapd: suddenly stops working, and starts using 100% CPU

2009-10-05 Thread Quanah Gibson-Mount
--On Monday, October 05, 2009 9:33 AM +0200 Helge Milde 
he...@monsternett.no wrote:



Package: slapd
Version: 2.4.11-1
Severity: important

Hello,

I've run into a problem with slapd and have tried to file a bug through
openldap's bug system: http://www.openldap.org/its/index.cgi?findid=6322
. As you can see, I'm asked to upgrade to a newer version of openldap,
which isn't much of a solution to us as we'd like to continue using
official debian packages.


I would suggest reading over:

http://www.openldap.org/faq/data/cache/1456.html

There have been hundreds of bug fixes since OpenLDAP 2.4.11 was released, 
addressing many serious issues, among which the issue you are hitting may 
well have been fixed.  Your issue certain sounds familiar, but I don't 
recall which specific ITS would address it.


--Quanah


--

Quanah Gibson-Mount
Principal Software Engineer
Zimbra, Inc

Zimbra ::  the leader in open source messaging and collaboration



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#544396: please try changes to your .Xdefaults

2009-10-05 Thread Robert Lemmen
hi harald,

could you try adding these to your .Xdefaults:

*VT100.allowWindowOps: true
*VT100.allowTitleOps: true
*VT100.allowFontOps: true

you can avoid X restarts by doing a 

xrdb -merge ~/.Xdefaults

afterwards.

thanks  robert

-- 
Robert Lemmen   http://www.semistable.com 


signature.asc
Description: Digital signature


Bug#549683: nagios3-cgi: all db_set and db_get operations in the postinst script fail with error 10

2009-10-05 Thread Richard Brookhuis
Package: nagios3-cgi
Version: 3.2.0-1
Severity: grave
Justification: renders package unusable



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

Kernel: Linux 2.6.31 (PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages nagios3-cgi depends on:
ii  adduser3.111 add and remove users and groups
ii  apache2-utils  2.2.14-1  utility programs for webservers
ii  coreutils  7.5-6 GNU core utilities
ii  libc6  2.9-26GNU C Library: Shared libraries
ii  libgd2-xpm 2.0.36~rc1~dfsg-3 GD Graphics Library version 2
ii  libjpeg62  6b-15 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.39-1  PNG library - runtime
ii  nagios3-common 3.2.0-1   support files for nagios3
ii  ucf3.0022Update Configuration File: preserv
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

Versions of packages nagios3-cgi recommends:
ii  apache [httpd]1.3.34-4.1 versatile, high-performance HTTP s
ii  apache2-mpm-prefork [httpd]   2.2.14-1   Apache HTTP Server - traditional n
ii  nagios-images 0.5Collection of images and icons for

nagios3-cgi suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#485767: Patch

2009-10-05 Thread Yves-Alexis Perez
On mar, 2009-09-29 at 10:01 +0200, Yves-Alexis Perez wrote:
 On jeu, 2009-09-24 at 12:18 +0200, David Villa wrote:
  Hello:
  
  Thank you very much for the patch. I'm very busy in these days but I'm
  very interesed in this package. I'll try to update this package at
  this weekend.
 
 Hey,
 
 any news on this?
 
Hmhm, still nothing, are you sure you don't need help on this? I'd very
much like to have scapy 2 in unstable soon…

-- 
Yves-Alexis


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


Bug#549684: gnome-keyring: hangs if asked to store non-ASCII characters

2009-10-05 Thread Petr Baudis
Package: gnome-keyring
Version: 2.22.3-2
Severity: important


If gnome-screensaver locks the screen and a typo is made in the
password, introducing a character with diacritics,
gnome-screensaver-dialog then hangs indefinitely in read() on a socket
to gnome-keyring, waiting for a reply that never comes. If there is no
diacritics character in the password, the invalid password case is
handled normally.

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (x86_64)

Kernel: Linux 2.6.27-kamdesktop (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=cs_CZ.ISO-8859-2 (charmap=ISO-8859-2)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-keyring depends on:
ii  gconf2  2.22.0-1 GNOME configuration database syste
ii  libatk1.0-0 1.22.0-1 The ATK accessibility toolkit
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libcairo2   1.6.4-7  The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.1-5+lenny1   simple interprocess messaging syst
ii  libgconf2-4 2.22.0-1 GNOME configuration database syste
ii  libgcrypt11 1.4.1-1  LGPL Crypto library - runtime libr
ii  libglib2.0-02.16.6-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.12-1~lenny1 The GTK+ graphical user interface 
ii  libhal-storage1 0.5.11-8 Hardware Abstraction Layer - share
ii  libhal1 0.5.11-8 Hardware Abstraction Layer - share
ii  libpango1.0-0   1.20.5-5 Layout and rendering of internatio
ii  libtasn1-3  1.4-1Manage ASN.1 structures (runtime)

Versions of packages gnome-keyring recommends:
ii  libpam-gnome-keyring  2.22.3-2   PAM module to unlock the GNOME key

gnome-keyring suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#543375: initscripts: last superblock write time in future occurring sometimes

2009-10-05 Thread Rebecca Breu
Hi!


The two lines in /lib/udev/rules.d/85-hwclock.rules didn't change a thing for
me. Btw, I'm using the 2.6.30er kernel from here:

http://kernel-archive.buildserver.net/debian-kernel sid main

Since the last Debian update, however, the fsck problem doesn't
seem to appear anymore.

My guess is it's due to the new sysv-rc with the conversion to dependency based
boot, but here's the whole update list:

Aptitude 0.4.11.11: log report
Mon, Oct  5 2009 15:28:54 +0200

IMPORTANT: this log only lists intended actions; actions which fail due to
dpkg problems may not be completed.

Will install 137 packages, and remove 12 packages.
44.4MB of disk space will be used
===
[REMOVE, NOT USED] claws-mail-smime-plugin
[REMOVE, NOT USED] gstreamer0.10-ffmpeg
[REMOVE, NOT USED] gstreamer0.10-fluendo-mp3
[REMOVE, NOT USED] gstreamer0.10-gnomevfs
[REMOVE, NOT USED] libboost-date-time1.34.1
[REMOVE, NOT USED] libboost-filesystem1.39.0
[REMOVE, NOT USED] libboost-python1.39.0
[REMOVE, NOT USED] libboost-system1.39.0
[REMOVE, NOT USED] libboost-thread1.34.1
[REMOVE, NOT USED] libgail-common
[REMOVE, NOT USED] shorewall-common
[REMOVE, NOT USED] shorewall-shell
[INSTALL, DEPENDENCIES] acroread-dictionary-en
[INSTALL, DEPENDENCIES] bsfilter
[INSTALL, DEPENDENCIES] claws-mail-bsfilter-plugin
[INSTALL, DEPENDENCIES] claws-mail-fancy-plugin
[INSTALL, DEPENDENCIES] csound
[INSTALL, DEPENDENCIES] csound-gui
[INSTALL, DEPENDENCIES] csound-manpages
[INSTALL, DEPENDENCIES] csound-utils
[INSTALL, DEPENDENCIES] insserv
[INSTALL, DEPENDENCIES] libasync-interrupt-perl
[INSTALL, DEPENDENCIES] libboost-date-time1.39.0
[INSTALL, DEPENDENCIES] libboost-filesystem1.40.0
[INSTALL, DEPENDENCIES] libboost-program-options1.39.0
[INSTALL, DEPENDENCIES] libboost-python1.40.0
[INSTALL, DEPENDENCIES] libboost-system1.40.0
[INSTALL, DEPENDENCIES] libboost-thread1.40.0
[INSTALL, DEPENDENCIES] libcommon-sense-perl
[INSTALL, DEPENDENCIES] libcsound64-5.2
[INSTALL, DEPENDENCIES] libdb4.8
[INSTALL, DEPENDENCIES] libfltk1.1
[INSTALL, DEPENDENCIES] libfluidsynth1
[INSTALL, DEPENDENCIES] libgdbm-ruby1.8
[INSTALL, DEPENDENCIES] libgirepository1.0-0
[INSTALL, DEPENDENCIES] liblash2
[INSTALL, DEPENDENCIES] liblo0ldbl
[INSTALL, DEPENDENCIES] libportmidi0
[INSTALL, DEPENDENCIES] libruby1.8
[INSTALL, DEPENDENCIES] ruby1.8
[UPGRADE] acroread-debian-files 0.0.39 - 0.0.40
[UPGRADE] adduser 3.110 - 3.111
[UPGRADE] alsa-utils 1.0.20-3 - 1.0.21-1
[UPGRADE] aspell-de 20071211-1 - 20071211-2
[UPGRADE] bind9-host 1:9.6.1.dfsg.P1-1 - 1:9.6.1.dfsg.P1-3
[UPGRADE] binutils 2.19.91.20090910-1 - 2.19.91.20090927-1
[UPGRADE] blender 2.49+dfsg-1 - 2.49+dfsg-2
[UPGRADE] bpython 0.9.4-1 - 0.9.5.1-1
[UPGRADE] claws-mail 3.5.0-2.1 - 3.7.2-2
[UPGRADE] claws-mail-acpi-notifier 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-archiver-plugin 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-attach-remover 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-attach-warner 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-bogofilter 3.5.0-2.1 - 3.7.2-2
[UPGRADE] claws-mail-cache-saver 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-extra-plugins 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-feeds-reader 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-fetchinfo-plugin 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-html2-viewer 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-i18n 3.5.0-2.1 - 3.7.2-2
[UPGRADE] claws-mail-mailmbox-plugin 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-multi-notifier 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-newmail-plugin 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-perl-filter 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-pgpinline 3.5.0-2.1 - 3.7.2-2
[UPGRADE] claws-mail-pgpmime 3.5.0-2.1 - 3.7.2-2
[UPGRADE] claws-mail-spam-report 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-synce-plugin 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-tnef-parser 3.5.0-3 - 3.7.2-1
[UPGRADE] claws-mail-vcalendar-plugin 3.5.0-3 - 3.7.2-1
[UPGRADE] dnsutils 1:9.6.1.dfsg.P1-1 - 1:9.6.1.dfsg.P1-3
[UPGRADE] freedink 1.08.20090120-1 - 1.08.20090918-1
[UPGRADE] freedink-dfarc 3.2.2-1 - 3.4-1
[UPGRADE] freedink-engine 1.08.20090120-1 - 1.08.20090918-1
[UPGRADE] fvwm 1:2.5.27.ds-12 - 1:2.5.28.ds-1
[UPGRADE] gcc-4.4-base 4.4.1-1 - 4.4.1-4
[UPGRADE] gnash 0.8.4-2 - 0.8.6-1
[UPGRADE] gnash-common 0.8.4-2 - 0.8.6-1
[UPGRADE] groff-base 1.20.1-5 - 1.20.1-6
[UPGRADE] info 4.13a.dfsg.1-4 - 4.13a.dfsg.1-5
[UPGRADE] initscripts 2.86.ds1-65 - 2.87dsf-6
[UPGRADE] install-info 4.13a.dfsg.1-4 - 4.13a.dfsg.1-5
[UPGRADE] lib32gcc1 1:4.4.1-1 - 1:4.4.1-4
[UPGRADE] lib32stdc++6 4.4.1-1 - 4.4.1-4
[UPGRADE] libanyevent-perl 5.112-1 - 5.200-1
[UPGRADE] libaprutil1 1.3.9+dfsg-1+b1 - 1.3.9+dfsg-2
[UPGRADE] libbind9-50 1:9.6.1.dfsg.P1-1 - 1:9.6.1.dfsg.P1-3
[UPGRADE] libclass-accessor-perl 0.33-1 - 0.34-1
[UPGRADE] libdatetime-locale-perl 1:0.43-1 - 1:0.44-1
[UPGRADE] libdb4.7 4.7.25-7 - 4.7.25-8
[UPGRADE] libdevmapper1.02.1 2:1.02.37-1 - 2:1.02.38-1
[UPGRADE] libdns50 1:9.6.1.dfsg.P1-1 - 1:9.6.1.dfsg.P1-3
[UPGRADE] libept0 0.5.28 - 0.5.29
[UPGRADE] libffi5 

Bug#549685: subversion: use KDE wallet for credentials caching

2009-10-05 Thread Marcus Better
Package: subversion
Version: 1.6.5dfsg-1
Severity: wishlist

According to the SVN book, svn is supposed to be able to store
passwords and other credentials in the KDE4 wallet. No such thing
seems to happen on my system, so I assume something needs to be
enabled during compilation. (It does try to use the GNOME keyring
service if gnome-keyring is installed.)

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

Kernel: Linux 2.6.31-melech (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages subversion depends on:
ii  libapr1 1.3.8-1  The Apache Portable Runtime Librar
ii  libc6   2.9-25   GNU C Library: Shared libraries
ii  libsasl2-2  2.1.23.dfsg1-1.1 Cyrus SASL - authentication abstra
ii  libsvn1 1.6.5dfsg-1  Shared libraries used by Subversio

subversion recommends no packages.

Versions of packages subversion suggests:
pn  db4.7-utilnone (no description available)
ii  patch 2.5.9-5Apply a diff file to an original
pn  subversion-tools  none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#545593: Rest of the fix ...

2009-10-05 Thread Scott Kitterman
Attached is the Ubuntu patch from Stefan Potyra sistp...@ubuntu.com
that includes what's already in the bug plus additional changes to get it to 
build.  Obviously the debian/changelog entry would have to be reworked for 
Debian, but I think the patch is generally suitable.

Scott K
diff -u fgfs-atlas-0.3.1/debian/changelog fgfs-atlas-0.3.1/debian/changelog
--- fgfs-atlas-0.3.1/debian/changelog
+++ fgfs-atlas-0.3.1/debian/changelog
@@ -1,3 +1,13 @@
+fgfs-atlas (0.3.1-1ubuntu1) karmic; urgency=low
+
+  * Apply partial patch from Peter Green to fix FTBFS 
+(cf DBTS: #545593).
+  * src/MapMaker.cxx: adjust return types to match new flightgear API.
+  * src/Scenery.cxx: Adjust using directive.
+  * src/MapPS.cxx: Add missing include.
+
+ -- Stefan Potyra sistp...@ubuntu.com  Mon, 05 Oct 2009 16:56:20 +0200
+
 fgfs-atlas (0.3.1-1) unstable; urgency=low
 
   * New upstream release.
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/config.h.in
+++ fgfs-atlas-0.3.1/src/config.h.in
@@ -162,6 +162,9 @@
 /* Define to the one symbol short name of this package. */
 #undef PACKAGE_TARNAME
 
+/* Define to the home page for this package. */
+#undef PACKAGE_URL
+
 /* Define to the version of this package. */
 #undef PACKAGE_VERSION
 
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/FlightTrack.hxx
+++ fgfs-atlas-0.3.1/src/FlightTrack.hxx
@@ -27,7 +27,12 @@
 #include plib/sg.h
 #include simgear/compiler.h
 
-SG_USING_STD(list);
+
+#ifdef SG_USING_STD
+  SG_USING_STD(list);
+#else
+  using std::list;
+#endif
 
 struct FlightData {
   float lat, lon, alt, hdg, spd;
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/MapMaker.hxx
+++ fgfs-atlas-0.3.1/src/MapMaker.hxx
@@ -31,14 +31,19 @@
 #include vector
 #include list
 #include map
-#include STL_STRING
+#include string
 
 #include Output.hxx
 #include Overlays.hxx
 #include Geodesy.hxx
 
-SG_USING_STD(vector);
-SG_USING_STD(string);
+#ifdef SG_USING_STD
+  SG_USING_STD(vector);
+  SG_USING_STD(string);
+#else
+  using std::vector;
+  using std::string;
+#endif
 
 // Utility function that I needed to put somewhere - this probably isn't the best place for it.
 // Appends a path separator to a directory path if not present.
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/OutputGL.hxx
+++ fgfs-atlas-0.3.1/src/OutputGL.hxx
@@ -2,6 +2,9 @@
 #define __OUTPUTGL_H__
 
 #include simgear/compiler.h
+#ifndef SG_GLUT_H 
+  #define SG_GLUT_H GL/glut.h 
+#endif 
 #include SG_GLUT_H
 #include plib/fnt.h
 #include plib/pu.h
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/MapPS.cxx
+++ fgfs-atlas-0.3.1/src/MapPS.cxx
@@ -38,9 +38,15 @@
 #include OutputPS.hxx
 #include plib/ul.h
 #include Scenery.hxx
+#include iostream
 
+#ifdef SG_USING_STD
 SG_USING_STD(vector);
 SG_USING_STD(string);
+#else
+using std::vector;
+using std::string;
+#endif
 
 typedef vectorstring string_list;
 
@@ -149,7 +155,7 @@
 scenerypath = new char[max_path_length + 256];
 scenery_pos = 0;
   } else {
-cout  No scenery paths could be found.  You need to set either a valid FG_ROOT and/or FG_SCENERY variable, or specify a valid --fg-root and/or --fg-scenery on the command line.\n;
+std::cout  No scenery paths could be found.  You need to set either a valid FG_ROOT and/or FG_SCENERY variable, or specify a valid --fg-root and/or --fg-scenery on the command line.\n;
 exit(-1);
   }
 
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/MapBrowser.hxx
+++ fgfs-atlas-0.3.1/src/MapBrowser.hxx
@@ -27,11 +27,17 @@
 #include FlightTrack.hxx
 #include Projection.hxx
 #include simgear/compiler.h
+#ifndef SG_GL_H 
+  #define SG_GL_H GL/gl.h 
+#endif
 #include SG_GL_H
 #include math.h
 #include list
 #include map
 
+using std::map;
+
+
 class MapBrowser {
 public:
   static const int CACHE_LIMIT = 2;
@@ -107,6 +113,7 @@
 bool tex;
   };
 
+
   struct TileLess {
 bool operator()(const Coord v1, const Coord v2) const {
   return (v1.lat  v2.lat || (v1.lat == v2.lat  v1.lon  v2.lon));
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/Scenery.cxx
+++ fgfs-atlas-0.3.1/src/Scenery.cxx
@@ -3,8 +3,13 @@
 
 #include MapMaker.hxx
 
+#ifdef SG_USING_STD
 SG_USING_STD(vector);
 SG_USING_STD(string);
+#else
+using std::vector;
+using std::string;
+#endif
 
 typedef vectorstring string_list;
 
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/Atlas.cxx
+++ fgfs-atlas-0.3.1/src/Atlas.cxx
@@ -29,6 +29,9 @@
 #include memory.h
 #include stdio.h
 #include simgear/compiler.h
+#ifndef SG_GLUT_H
+  #define SG_GLUT_H GL/glut.h
+#endif
 #include SG_GLUT_H
 #include plib/fnt.h
 #include plib/pu.h
@@ -42,6 +45,10 @@
 
 #define SCALECHANGEFACTOR 1.3f
 
+#include iostream
+using std::cout;
+using std::endl;
+
 SGIOChannel *input_channel;
 
 bool dragmode = false;
only in patch2:
unchanged:
--- fgfs-atlas-0.3.1.orig/src/Overlays.hxx
+++ fgfs-atlas-0.3.1/src/Overlays.hxx
@@ -35,6 +35,8 @@
 #include FlightTrack.hxx
 #include Projection.hxx
 
+using std::vector;
+
 class 

Bug#549687: Newer zile versions lack 'replace-string'

2009-10-05 Thread Tim
Package: zile
Version: 2.3.6-2
Severity: normal


Hello,

In recent versions of zile, I noticed the 'replace-string' function
seems to have disappeared.  Would it be possible to get that added
back in?  I tend to use it quite a bit.

Thanks!


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

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

Versions of packages zile depends on:
ii  libc6 2.9-26 GNU C Library: Shared libraries
ii  libncurses5   5.7+20090803-2 shared libraries for terminal hand

zile recommends no packages.

zile suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549688: vdr-plugin-remote: [INTL:ru] Russian debconf templates translation

2009-10-05 Thread Yuri Kozlov
Package: vdr-plugin-remote
Version: 0.4.0-15
Severity: wishlist
Tags: l10n patch


Russian debconf templates translation is attached.

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

Kernel: Linux 2.6.26-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
# translation of vdr-plugin-remote_0.4.0-15_ru.po to Russian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Yuri Kozlov yu...@komyakino.ru, 2009.
msgid 
msgstr 
Project-Id-Version: vdr-plugin-remote 0.4.0-15\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2008-09-02 04:35+0200\n
PO-Revision-Date: 2009-09-22 21:01+0400\n
Last-Translator: Yuri Kozlov yu...@komyakino.ru\n
Language-Team: Russian debian-l10n-russ...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n
Plural-Forms:  nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n

#. Type: boolean
#. Description
#: ../templates:1001
msgid Try to automatically load the evdev module?
msgstr Попытаться загрузить модуль evdev автоматически?

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
Enable this, if you want a setup which automatically loads the evdev module, 
needed by the remote-plugin.
msgstr 
Ответьте утвердительно, если хотите, чтобы программа настройки 
попыталась автоматически загрузить модуль evdev (требуется remote-plugin).

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
This script will try to load the module evdev and, if this is successful,  
it will add a new entry for evdev to your /etc/modules.
msgstr 
Этот сценарий попытается загрузить модуль evdev, и если это удастся, то 
добавит новую запись для evdev в /etc/modules.

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
If this fails, your kernel maybe does not have evdev support, and you will 
need to rebuild your kernel with the CONFIG_INPUT_EVDEV option enabled.
msgstr 
Если модуль загрузить не получится, то, вероятно, в имеющемся у вас ядре нет 
поддержки evdev, и вам нужно пересобрать ядро с включённой настройкой 
CONFIG_INPUT_EVDEV.

#. Type: note
#. Description
#: ../templates:2001
msgid Error loading evdev module
msgstr Ошибка загрузки модуля evdev

#. Type: note
#. Description
#: ../templates:2001
msgid 
The evdev module could not be loaded, probably your kernel has builtin-
support for evdev, or your kernel is missing evdev support.
msgstr 
Модуль evdev не может быть загружен; вероятно, этот модуль встроен 
в имеющееся ядро, или ядро не поддерживает evdev.



Bug#542752: gstreamer0.10-ffmpeg: FTBFS on GNU/kFreeBSD (update of build-depends needed)

2009-10-05 Thread Sebastian Dröge
Version: 0.10.8.2-1

Hi,
this was fixed in 0.10.8.2-1 in experimental already.


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#549312: aptitude: cdrom segfaults on several machines and architectures when reading DVDs

2009-10-05 Thread ael

Daniel Burrows wrote:


# ps -C cdrom
  PID TTY  TIME CMD
 5845 pts/000:00:00 cdrom
conquest3:~# gdb aptitude 5845


  You'll probably have better luck if you debug /usr/lib/cdrom instead
of aptitude. :)  I don't know if that'll help much, though; it doesn't
have debugging symbols built in.


I guess that will be /usr/lib/apt/methods/cdrom :

$ ls -l /usr/lib/cdrom
ls: cannot access /usr/lib/cdrom: No such file or directory

I suppose that all I can do is get the source and see if I can rebuild 
with symbols. Just need the time :-(


Why has no one else seen this when it has been happening on all my 
machines for some time? Maybe use of DVDs is rare these days: I use 
jigdo to avoid multiple downloads with added advantage of 
backup/reinstall/new install media always to hand.




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549660: md raid1 + lvm2 + snapshot resulted in lvm2 hang

2009-10-05 Thread Phil Ten
Thank you for your post.

I assume it won't change your opinion on this 
problem. But just to correct my post. I made
an incorrect statement. When the problem 
occured the application was copying from the 
snapshot to the vmbackup volume. Therefore 
the 1GB was read from the snapshot, and not 
writen to the snapshot as I said previously.

To my knowledge it seem impossible that 
the snapshot was full. Plus, I always thought 
that a full snapshot was automatically disabled,
but the file system would remain usable.

In this case, no report in the log, and the complete 
lvm2 group volume became NOT usable (read/write hang). 
Including the second volume not involved in the snapshot.

I can't believe that a full snapshot would affect other 
lvm2 volumes, but I guess it maybe possible 

Thanks anyway.

Phil Ten





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549686: [epub-utils] Segmentation fault

2009-10-05 Thread LI Daobing
Package: epub-utils
Version: 0.1.1-3
Severity: normal

--- Please enter the report below this line. ---
$ einfo 1.epub 
Segmentation fault

the 1.epub is in attchment.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.30-2-amd64

Debian Release: squeeze/sid
  500 unstable127.0.0.1 
  500 stable  dl.google.com 
1 experimental127.0.0.1 

--- Package information. ---
Depends(Version) | Installed
-+-
libc6 (= 2.2.5) | 2.9-7
libepub0 | 0.1.1-3
libxml2  (= 2.6.27) | 2.7.4.dfsg-2
libzip1  | 0.8-1


Recommends  (Version) | Installed
=-+-===
convlit   | 1.8-1
zip   | 3.0-1


Package's Suggests field is empty.






1.epub
Description: application/epub


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


Bug#549689: fprobe-ulog: [INTL:ru] Russian debconf templates translation

2009-10-05 Thread Yuri Kozlov
Package: fprobe-ulog
Version: 1.1-7
Severity: wishlist
Tags: l10n patch


Russian debconf templates translation is attached.

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

Kernel: Linux 2.6.26-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
# translation of fprobe-ulog_1.1-7_ru.po to Russian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Yuri Kozlov yu...@komyakino.ru, 2009.
msgid 
msgstr 
Project-Id-Version: fprobe-ulog 1.1-7\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2008-02-10 04:31+0100\n
PO-Revision-Date: 2009-09-22 20:49+0400\n
Last-Translator: Yuri Kozlov yu...@komyakino.ru\n
Language-Team: Russian debian-l10n-russ...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n
Plural-Forms:  nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n

#. Type: string
#. Description
#: ../templates:1001
msgid Interface(s) to capture:
msgstr Прослушиваемый(е) интерфейс(ы):

#. Type: string
#. Description
#: ../templates:1001
msgid 
Each interface must be associated to a SNMP Index and they are separated by 
a colon. Please enter a list of interfaces and their corresponding SNMP 
indexes (for  example eth0:100,ppp0:200).
msgstr 
Каждый интерфейс должен быть сопоставлен с SNMP индексом, и они должны 
отделяться друг от друга двоеточием. Введите список интерфейсов и 
соответствующие им SNMP индексы (например, eth0:100,ppp0:200).

#. Type: string
#. Description
#: ../templates:2001
msgid Collector address:
msgstr Адрес коллектора:

#. Type: string
#. Description
#: ../templates:2001
msgid 
Please enter the collector's IP address and port number, separated by a 
colon.
msgstr Введите IP-адрес и номер порта коллектора через двоеточие.



Bug#549376: Possible related upstream bug

2009-10-05 Thread Chanoch (Ken) Bloom
Could https://bugzilla.mindrot.org/show_bug.cgi?id=271 be related?
I notice in my strace that OpenSSH blocks SIGCHLD repeatedly, but
when rt_sigprocmask returns the old mask, it doesn't include SIGCHLD
in it.

https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/412972 also
looks related. I'm noticing the same SigBlk: fffe7ffadeff in
/proc/1930/status where 1930 is the pid of the root sshd (the parent
of all of the others).

-- 
Chanoch (Ken) Bloom. PhD candidate. Linguistic Cognition Laboratory.
Department of Computer Science. Illinois Institute of Technology.
http://www.iit.edu/~kbloom1/



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549690: [CRASH] Uncaught exception SystemError in /usr/lib/python2.5/site-packages/apt/cache.py:175

2009-10-05 Thread harik
Package: python-apt
Version: 0.7.13.3
Severity: important
File: /usr/lib/python2.5/site-packages/apt/cache.py



*** /tmp/update-manager-bugQ_6d75
The information below has been automatically generated.
Please do not remove this from your bug report.

- Exception Type: type 'exceptions.SystemError'
- Exception Value: SystemError('E:Error, pkgProblemResolver::Resolve generated 
breaks, this may be caused by held packages.',)
- Exception Origin: _MainThread(MainThread, started)
- Exception Traceback:
  File 
/usr/lib/pymodules/python2.5/UpdateManager/Frontend/Gtk/GtkProgress.py, line 
76, in update_func
self._ui.update_package_list()
  File /usr/lib/pymodules/python2.5/UpdateManager/Frontend/Gtk/ui.py, line 
787, in update_package_list
self._dist_upgrade)
  File /usr/lib/pymodules/python2.5/UpdateManager/Application.py, line 322, 
in get_available_updates
return self._backend.get_available_updates(dist_upgrade=dist_upgrade)
  File /usr/lib/pymodules/python2.5/UpdateManager/Backend/PythonApt.py, line 
704, in get_available_updates
self._cache.upgrade(distUpgrade=dist_upgrade)
  File /usr/lib/python2.5/site-packages/apt/cache.py, line 175, in upgrade
self._depcache.Upgrade(distUpgrade)




-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (700, 'testing'), (600, 'experimental'), (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages python-apt depends on:
ii  apt [libapt-pkg-libc6.9-6-4 0.7.23.1 Advanced front-end for dpkg
ii  apt-utils [libapt-inst-libc 0.7.23.1 APT utility programs
ii  libc6   2.10.1-0exp2 GNU C Library: Shared libraries
ii  libgcc1 1:4.4.1-4GCC support library
ii  libstdc++6  4.4.1-4  The GNU Standard C++ Library v3
ii  lsb-release 3.2-23   Linux Standard Base version report
ii  python  2.5.4-2  An interactive high-level object-o
ii  python-central  0.6.11   register and build utility for Pyt

Versions of packages python-apt recommends:
ii  iso-codes 3.10.3-1   ISO language, territory, currency,
ii  libjs-jquery  1.3.3-2JavaScript library for dynamic web

Versions of packages python-apt suggests:
pn  python-apt-dbgnone (no description available)
ii  python-gtk2   2.16.0-1   Python bindings for the GTK+ widge
ii  python-vte1:0.20.5-1 Python bindings for the VTE widget



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549604: [Pkg-xfce-devel] Bug#549604: System does not react to user input, must be switched off and rebooted

2009-10-05 Thread Boris Hollas
On Mon, 05 Oct 2009 08:10:07 +0200, Yves-Alexis Perez cor...@debian.org  
wrote:



I can't really do anything with that, sorry. Xfce wasn't really updated
in testing recently, but you might want to check what was upgraded.
Might be X related, though.

When it happens, could you try to ssh from another box and restart
xfwm4? (using: DISPLAY=:0 xfwm4 --daemon --replace)


I can't - I have no LAN with another Linux box.

However, is it possible to make the system kill the X server if I e.g.  
plug in a memory stick?




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522063: New upstream release 2.3

2009-10-05 Thread Jakob Haufe
retitle 522063 New upstream release 2.3
thanks

Any progress on this? Unfortunately, I can't see anything in the git on
alioth, either.

Regards,
Jakob

-- 
ceterum censeo microsoftem esse delendam.


signature.asc
Description: PGP signature


Bug#549038: eikazo: Uses deprecated libgtkhtml2

2009-10-05 Thread Julien BLACHE
forwarded 549038 adeur...@gmx.net
thanks

j...@debian.org wrote:

Hi,

 I suggest that you migrate eikazo as soon as possible to use webkit
 for rendering. For most packages, which use libgtkhtml2 in a simple
 way, porting should be trivial - and even more so for those written
 in Python.

Forwarded upstream, should have something in a couple weeks.

JB.

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



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549604: [Pkg-xfce-devel] Bug#549604: Bug#549604: System does not react to user input, must be switched off and rebooted

2009-10-05 Thread Yves-Alexis Perez
On lun, 2009-10-05 at 18:23 +0200, Boris Hollas wrote:
 However, is it possible to make the system kill the X server if I
 e.g.  
 plug in a memory stick?

You could try to play with udev rules, or thunar-volman.

But basically, if you want to debug issue, you'll really need another
box with ssh access.

Cheers,

-- 
Yves-Alexis


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


Bug#549691: lvm2: lvremove fails to remove open logical volume which is not opened

2009-10-05 Thread Martin Jürgens
Package: lvm2
Version: 2.02.39-7
Severity: normal

lvremove fails to remove my swap LV, although it is not mounted and not 
mentioned in /etc/fstab:

x:~# free -m
 total   used   free sharedbuffers cached
Mem:   498410 88  0 62153
-/+ buffers/cache:194303
Swap:0  0  0

x:~# cat /proc/swaps 
FilenameTypeSizeUsedPriority
x:~# lsof /dev/mapper/x-swap_1
x:~# fuser /dev/mapper/x-swap_1

x:~# lvremove --force /dev/x/swap_1 
  Can't remove open logical volume swap_1

x:~# lvchange -a n /dev/x/swap_1
  LV x/swap_1 in use: not deactivating


-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages lvm2 depends on:
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libdevmapper1.02.1   2:1.02.27-4 The Linux Kernel Device Mapper use
ii  libreadline5 5.2-3.1 GNU readline and history libraries
ii  lsb-base 3.2-20  Linux Standard Base 3.2 init scrip

Versions of packages lvm2 recommends:
pn  dmsetup   none (no description available)

lvm2 suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549424: openvpn: initscript should include X-Interactive header

2009-10-05 Thread Jonas Meurer
hey,

On 05/10/2009 Alberto Gonzalez Iniesta wrote:
 On Sat, Oct 03, 2009 at 11:45:31AM +0200, Jonas Meurer wrote:
  Package: openvpn
  Version: 2.1~rc19-2
  Severity: important
  
  hello,
  
  in order to make openvpn compatible with dependency boot system the
  initscript needs to include a X-Interactive header. That header tells
  insserv, that the openvpn initscript requires interactive user input
  (passphrase).
 
 I don't know the implications of the header. What will that change for
 those not running OpenVPN interactively?

nothing, with the one difference that initscript will be started earlier
in boot process (i.e. before gdm/kdm/xdm are started).

greetings,
 jonas


signature.asc
Description: Digital signature


Bug#549495: hugin: Control Points tab forgets to display images

2009-10-05 Thread Andreas Metzler
On 2009-10-05 Joerg Jaspert jo...@ganneff.de wrote:
[...]
  4 Close quick preview.

 Do you use the opengl or the normal one?

The OpenGL one. (It automatically popped up)

cu andreas

-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#548971: same with a wired connection

2009-10-05 Thread Cade Robinson
I get the same with a wired connection.

iface eth0 inet dhcp

I get messages that the pid file name is too long.






-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549692: bash-completion: ssh completion ends shell session

2009-10-05 Thread Stephen Gran
Package: bash-completion
Version: 1:1.0-3
Severity: important

Hi there,

st...@varinia:~$ set -x
st...@varinia:~$ ssh luchesi  TAB here
+ local cur prev
+ local optconfigfile
+ local -a config
+ COMPREPLY=()
++ _get_cword
++ [[ 7 -eq 0 ]]
++ [[ 11 == \1\1 ]]
++ printf %s luchesi
+ cur=luchesi
+ prev=ssh
+ case $prev in
+ set -- ssh luchesi
+ '[' 2 -gt 0 ']'

Debian GNU/Linux squeeze/sid varinia tty2

varinia login:


If you need any more info, let me know.

Cheers,

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

Kernel: Linux 2.6.31 (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.utf8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bash-completion depends on:
ii  bash  4.0-7  The GNU Bourne Again SHell

bash-completion recommends no packages.

bash-completion suggests no packages.

-- no debconf information

-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549693: hal actions fail when xfce is started with startx

2009-10-05 Thread Boris Hollas

Package: xfce4
Version: 4.6.1.2

System: Debian testing, installed 2009/10/01
kernel 2.6.30-1-686
libc-2.9

The message

org.freedesktop.hal.storage.mount-removable no -- (action,
result)

and similar messages are displayed if I
- plug a memory stick
- inserting a CD-Rom
- try to shotdown, suspend, or reboot the system by clicking the  
respective buttons in xfce


Also, PolicyKit doesn't contain entries:

~% cat /etc/PolicyKit/PolicyKit.conf
?xml version=1.0 encoding=UTF-8? !-- -*- XML -*- --

!DOCTYPE pkconfig PUBLIC -//freedesktop//DTD PolicyKit Configuration  
1.0//EN

http://hal.freedesktop.org/releases/PolicyKit/1.0/config.dtd;

!-- See the manual page PolicyKit.conf(5) for file format --

config version=0.1
/config
~%


This bug has not appeared since I installed gdm and start xfce with gdm  
instead of startx.


See also bug #545256



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#486559: any news?

2009-10-05 Thread Andrea De Iacovo
What about the status of the package? Still license problems?
Thank you.

Andrea De Iacovo


Bug#549694: (synaesthesia_2.4-2/avr32): FTBFS: Outdated config.{sub,guess}

2009-10-05 Thread bradsmith
Package: synaesthesia
Version: 2.4-2
Severity: wishlist
User: bradsm...@debian.org
Usertags: avr32

Hi,

Whilst building your package on AVR32, the build failed due to outdated
config.{sub,guess} files.

Full build logs available:

  http://buildd.debian-ports.org/build.php?pkg=synaesthesiaarch=avr32ver=2.4-2

Regards,
Bradley Smith

--
Bradley Smith b...@brad-smith.co.uk
Debian GNU/Linux Developer bradsm...@debian.org
GPG: 0xC718D347   D201 7274 2FE1 A92A C45C EFAB 8F70 629A C718 D347



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549376: Processes with screwy SigBlk masks

2009-10-05 Thread Ken Bloom
I'm running Debian Unstable booting with file-rc, and there are several
system daemons that have screwy SigBlk masks, of which sshd is one. They
are listed in the attached commands file.

You can get the data for a similar report on your own machine by running
the following commands (as root):

grep SigBlk /proc/*/status | grep -v   commands
for x in  $(grep SigBlk /proc/*/status | grep -v  | \
sed -e 's@/proc/\(.*\)/status...@\1@g'); do
  echo -n $x:  
  cat /proc/$x/cmdline
  echo
done  commands

(After running this, I cleaned things up a bit in vim to better organize
the report.)

Maybe this will help debug the root of the problem, though if sshd is
inheriting a screwy SigBlk mask, it should be patched to defensively fix
the SigBlk mask.

-- 
/proc/726/status: SigBlk:   fffe7ffbfeff
726:udevd --daemon 

/proc/853/status: SigBlk:   fffe7ffb9eff
853:udevd --daemon 

/proc/1780/status: SigBlk:  00087007
1780:   /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql 
--pid-file=/var/run/mysqld/mysqld.pid --socket=/var/run/mysqld/mysqld.sock 
--port=3306 

/proc/1819/status: SigBlk:  fffe7ffbdeff
1819:   dhclient3 -pf /var/run/dhclient.eth0.pid -lf 
/var/lib/dhcp3/dhclient.eth0.leases eth0 

/proc/1951/status: SigBlk:  fffe7ffbdeff
1951:   /usr/sbin/ntpd 

/proc/1952/status: SigBlk:  fffe7ffbdeff
1952:   /usr/sbin/ntpd 

/proc/1982/status: SigBlk:  fffe7ffbdeff
1982:   /usr/sbin/sshd 

/proc/2078/status: SigBlk:  fffe7ffb9eff
2078:   udevd --daemon 

/proc/2356/status: SigBlk:  1000
2356:   /usr/bin/X :0 -audit 0 -auth /var/lib/gdm/:0.Xauth -nolisten tcp vt7 

/proc/2454/status: SigBlk:  0001
2454:   /usr/lib/gdm/gdmgreeter 

/proc/2981/status: SigBlk:  fffe7ffbdeff
2981:   sshd: bloom [priv]

/proc/2983/status: SigBlk:  fffe7ffbdeff
2983:   sshd: bl...@pts/0 

/proc/2984/status: SigBlk:  fffe7ffbdeff
2984:   -bash 

/proc/3024/status: SigBlk:  fffe7ffadeff
3024:   ssh-agent 

/proc/3165/status: SigBlk:  fffe7ffbdeff
3165:   bash 

/proc/3201/status: SigBlk:  fffe7ffadeff
3201:   ssh-agent 

/proc/self/status: SigBlk:  fffe7ffadeff
self:   cat /proc/self/cmdline 


Bug#549695: Fwd: tracker 0.7.1

2009-10-05 Thread Sergio Fernández
Package: tracker
Version: 0.7.1
Severity: wishlist

Tracker 0.7.1 has been released some days ago:

http://mail.gnome.org/archives/tracker-list/2009-October/msg2.html

IMHO it'd be really nice to have it on Debian, because 0.7.x branch
has a lot of new features.

-- 
__  ___ _   _
\ \/ (_) |_(_)___ _ _
 \ \/\/ /| | / / / -_) '_|  Sergio Fernández
  \_/\_/ |_|_\_\_\___|_|http://www.wikier.org/



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549696: $MAXWAIT should default to 0 if the STP is disabled

2009-10-05 Thread Marco d'Itri
Package: bridge-utils

On Oct 05, Santiago Garcia Mantinan ma...@manty.net wrote:

  What is the pointing of waiting for $MAXWAIT if the STP is disabled?
 Well, it is the user that decides if he wants STP disabled and MAXWAIT set,
 it can be used for a lot of things, it will help in making the boot wait for
 the bridge to be ready so that network mounts or any other thing network
 dependant on boot works ok.
Except that this has nothing to do with the purpose of bridge-utils, if
it were a general problem we would enable such a feature for all
interfaces.
If the STP is disabled there is no reason to wait, so in this case
$MAXWAIT should default to zero instead of wasting 30 seconds.

 I'd use that kind of setup for example when you are connected to switches
 that take some time after there is link before they start forwarding your
 packages or when you don't have STP but you know you should wait for a time
 before sending packages on the bridge.
I am aware of the behaviour of switch ports when they have STP enabled
without portfast, but again this is unrelated to bridge-utils.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#549697: Gnome-commander ftp fails with SIGBART

2009-10-05 Thread Ondřej Novák
Package: gnome-commander
Version: 1.2.0-3.2, 1.2.6-1, 1.2.7-1+b1, 1.2.8.2

In gnome-commander is some error - when I am trying to connect on any
FTP server (of course with correct password), the gnome-commander
crashes and in terminal left this:


fir...@freedom:~$ gnome-commander
gnome-commander: ../../src/xcb_io.c:176: process_responses: Předpoklad
!(req  current_request  !(((long) (req-sequence) - (long)
(current_request)) = 0)) nesplněn.
Neúspěšně ukončen (SIGABRT)

and with --sync

fir...@freedom:~$ gnome-commander --sync
*** glibc detected *** gnome-commander: double free or corruption
(fasttop): 0xb4802088 ***
Neúspěšně ukončen (SIGABRT)


The same error affects all these versions of program.
I've found similar error in this program at
https://bugs.launchpad.net/ubuntu/+source/gnome-commander/+bug/379224.

I am running Debian squeeze/sid with kernel 2.6.30-1-686.
Thanks a lot.



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549695: Fwd: tracker 0.7.1

2009-10-05 Thread Michael Biebl
Sergio Fernández wrote:
 Package: tracker
 Version: 0.7.1
 Severity: wishlist
 
 Tracker 0.7.1 has been released some days ago:
 
 http://mail.gnome.org/archives/tracker-list/2009-October/msg2.html
 
 IMHO it'd be really nice to have it on Debian, because 0.7.x branch
 has a lot of new features.

I certainly have an eye on it. 0.7.x is not quite ready for prime time yet (0.7
is also flagged as the devel branch).
In it's current state, if I'd prepare a release, then for experimental only.

Cheers,
Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#549698: override: alex:haskell/optional

2009-10-05 Thread Joachim Breitner
Package: ftp.debian.org
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

alex is a lexer generator for Haskell and should thus be in the
section haskell.

Thanks,
Joachim

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

iEYEARECAAYFAkrKK0IACgkQ9ijrk0dDIGyxFwCgzbBwxAsPjVVJRcQdPN9MyN3h
eFcAn3o+5nxqVuOcdZeunnhNvY/KTqPx
=iYY6
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549673: cups: constantly modify configuration files in /etc

2009-10-05 Thread Roger Leigh
On Mon, Oct 05, 2009 at 03:02:30PM +0200, Luca Capello wrote:
 Since when I started to use etckeeper, I noticed that every time cupsd
 starts it rewrites the configuration file:

 This also happens once per day, usually around 0600 if my laptop is on.
 
 Cups is the only program I am aware of with such behavior and I still
 think this is a bug in cups: I do not see the reason why *without my
 approval* it modifies configuration files.  If this is really needed,
 why it does not keep a copy in /var/lib?  This seems to me the best
 place, according to the FHS:
 
   http://www.pathname.com/fhs/pub/fhs-2.3.html#VARLIBVARIABLESTATEINFORMATION

I'd have to say I feel the same way.  It's also incompatible with
read-only root.

There's a subtle difference between configuration and state
and cups keeps a lot of state in /etc such as printer status
and other such information.  This should clearly be under /var.

I used to consider printer queues configuration, but given that
it can be completely generated using tools like lpadmin, I'm
increasingly inclined to treat it as state, and think that it
should be kept under /var along with associated PPD files etc.

The configuration rewriting is very annoying.  I don't know if
it's fixed, but it used to eat your hand-crafted configuration
and replace it with a compiled-in template if you used any of
the webadmin tickboxes such as for enabling sharing/browsing.
The result is that I no longer even attempt to alter the cups
configuration file--it always ends up being trashed at some
point.

It would be more appropriate to have generated parts of the
configuration under /var and have static configuration written
by the admin under /etc.  Currently cups treats these as one
and the same and the result is not good.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549102: error while loading shared libraries: libntop-3.3.10.so

2009-10-05 Thread Dale Schroeder
Same error here.  I got it to start by linking libntop-3.3.10.so to 
libntop-3.3.so.

Not ideal, but for now, it works.



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549699: microcode.ctl: update-intel-microcode downloads older microcode than latest

2009-10-05 Thread Hajo Möller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: microcode.ctl
Version: 1.17-12
Severity: important

Hello,
update-intel-microcode gets the last mentioned microcode instead of the
lastest one, as the RSS feed currently mentions two firmware files and
sed failing to use non-greedy patterns.
The attached patch uses perl to parse the wget output, there's no need
to add perl-base to microcode.ctl's dependencies, as it depends on
debconf which depends on perl.

- -- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-bpo.1-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iQEcBAEBAgAGBQJKyiudAAoJEO31pc4mOIL2VpsH/3ZwJ8D0aAY4ucdwXSuHI46q
W+JN1HU+HXmiDt8iKJ1ZgGbkRN8lTSM1BIE8VbBmBzCCpVoV6JPHRYhpbcFfOsQY
LntqBzpFVPYtQUAV9dOMkEaqpuHQEla7nnqZ5quT0ygnFevAJhCt3UcerchFDbPl
YBnKm1M1wdZ9WlaJ1j+rz6EzcvlxdNL0h/BLqec06UJl+BWnv4A6OZoKqrCnGNqi
pGCE3kfKFYcd/X3WJ0HlXnnmVLOtEXItIVyM3J0X+zH9JVgzdP9UBrGOafYTnvfN
De4ASJHzQIRd2rEqd5dQeRGlZgU6iJ36lLJgpVjwgcOeQrDGAirF6qFgp+evGTw=
=Q6tZ
-END PGP SIGNATURE-
--- update-intel-microcode	2009-10-05 19:58:28.0 +0300
+++ update-intel-microcode-perl	2009-10-05 20:02:39.0 +0300
@@ -14,7 +14,7 @@ if ! which wget  /dev/null 2 /dev/null
 fi
 
 REMOTE_RSS='http://feeds.downloadcenter.intel.com/rss/?p=483lang=eng'
-REMOTE_DATA=$(wget -t 2 -T 20 -nv -q -O - $REMOTE_RSS | sed  -nre 's#^.*IntelDC:TypeFirmware/IntelDC:TypeIntelDC:Version(200[0-9]*)/IntelDC:VersionIntelDC:Statuslatest/IntelDC:Status.*?IntelDC:FileURL([^]*\1[^]*)/IntelDC:FileURL.*$#\1 \2#p' - || echo 'ERROR')
+REMOTE_DATA=$(wget -t 2 -T 20 -nv -q -O - $REMOTE_RSS | perl -pe 's|^.+?IntelDC:TypeFirmware/IntelDC:TypeIntelDC:Version(20[0-9]*)/IntelDC:VersionIntelDC:Statuslatest/IntelDC:Status.+?IntelDC:FileURL([^]*\1[^]*)/IntelDC:FileURL.*$|\1 \2\n|' - || echo 'ERROR')
 if [ 0$REMOTE_DATA = 0  -o  0$REMOTE_DATA = 0ERROR ] ; then
 echo Error: could not find remote data in $REMOTE_RSS 12
 echo ...exiting 12


Bug#549685: subversion: use KDE wallet for credentials caching

2009-10-05 Thread Peter Samuelson

reassign 549685 libsvn1
forcemerge 539564 549685
thanks

[Marcus Better]
 I assume something needs to be enabled during compilation. (It does
 try to use the GNOME keyring service if gnome-keyring is installed.)

Planned for probably the next upload.  It was one of those never got
around to figuring out exactly what is needed things.  But I don't
really have that excuse, as one of the KDE maintainers explained to me
awhile back what is needed on the KDE side.

Thanks,
-- 
Peter Samuelson | org-tld!p12n!peter | http://p12n.org/



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549700: bugzilla3: email_in.pl depends on more than libemail-reply-perl

2009-10-05 Thread Paul Gevers
Package: bugzilla3
Version: 3.0.4.1-2+lenny1
Severity: normal

This last week I have got email_in.pl to work. I encountered the following 
problems:
- libemail-reply-perl does not yet exist (bug 528780), but no wnpp bug is filed 
yet.
- libemail-mime-attachment-stripper-perl is also needed (no wnpp filed yet)
- I also needed to install libemail-date-format-perl and 
libemail-mime-creator-perl (They already are in Debian)

I created both missing packages with the dh-make_perl procedure.

Apart from these dependency problems I needed to inject mail into the script. I 
solved this by using the following command in /etc/aliases (I don't think this 
is the best way, but it works):

bug-submit:  |sudo -u www-data /usr/share/bugzilla3/lib/email_in.pl

However, the script was not able to find the proper Bugzilla.pm, and later also 
had problems finding process_bug.cgi and post_bug.cgi. I solved these problem 
for now by creating soft links to those files in /usr/share/bugzilla3/lib/ . 
The problem with Bugzilla.pm can (I think) be solved in the email_in.pl script 
by adding:

use lib /usr/share/bugzilla3;

in the top of the file. Probably calling the process_bug.cgi and post_bug.cgi 
scripts with a proper definition of the path should also fix that problem.

-- System Information:
Debian Release: 5.0.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/bash

Versions of packages bugzilla3 depends on:
ii  apache22.2.9-10+lenny4   Apache HTTP Server metapackage
ii  apache2-mpm-prefork [h 2.2.9-10+lenny4   Apache HTTP Server - traditional n
ii  dbconfig-common1.8.39common framework for packaging dat
ii  debconf1.5.24Debian configuration management sy
ii  libappconfig-perl  1.56-2Perl module for configuration file
ii  libcgi-pm-perl 3.38-2Simple Common Gateway Interface Cl
ii  libdbd-mysql-perl  4.007-1   A Perl5 database interface to the 
ii  libemail-mime-modifier 1.442-3   Modify Email::MIME objects easily
ii  libemail-send-perl 2.192-3   Simply Sending Email
ii  libtemplate-perl   2.19-1.1lenny1.1  template processing system written
ii  libtimedate-perl   1.1600-9  Time and date functions for Perl
ii  mysql-client   5.0.51a-24+lenny2 MySQL database client (metapackage
ii  mysql-client-5.0 [mysq 5.0.51a-24+lenny2 MySQL database client binaries
ii  patch  2.5.9-5   Apply a diff file to an original
ii  perl-modules [libcgi-p 5.10.0-19lenny2   Core Perl modules
ii  postfix [mail-transpor 2.5.5-1.1 High-performance mail transport ag
ii  ucf3.0016Update Configuration File: preserv

Versions of packages bugzilla3 recommends:
ii  libchart-perl   2.4.1-5  Chart Library for Perl
ii  libxml-parser-p 2.36-1.1+b1  Perl module for parsing XML files
ii  mysql-server5.0.51a-24+lenny2MySQL database server (metapackage
ii  mysql-server-5. 5.0.51a-24+lenny2MySQL database server binaries
ii  perlmagick  7:6.3.7.9.dfsg2-1~lenny3 Perl interface to the libMagick gr

Versions of packages bugzilla3 suggests:
pn  bugzilla3-doc none (no description available)
pn  graphviz  none (no description available)
ii  libgd-gd2-perl1:2.39-2   Perl module wrapper for libgd - gd
ii  libgd-graph-perl  1.44-3 Graph Plotting Module for Perl 5
ii  libgd-text-perl   0.86-5 Text utilities for use with GD
ii  libhtml-parser-perl   3.56-1+b1  A collection of modules that parse
pn  libhtml-scrubber-perl none (no description available)
pn  libmailtools-perl none (no description available)
pn  libmime-tools-perlnone (no description available)
pn  libnet-ldap-perl  none (no description available)
pn  libsoap-lite-perl none (no description available)
ii  libwww-perl   5.813-1WWW client/server library for Perl
pn  libxml-twig-perl  none (no description available)

-- debconf information:
  bugzilla3/database-type: mysql
  bugzilla3/remove-error: abort
  bugzilla3/dbconfig-remove:
* bugzilla3/dbconfig-install: false
  bugzilla3/internal/reconfiguring: false
  bugzilla3/remote/newhost:
  bugzilla3/internal/skip-preseed: true
  bugzilla3/remote/host:
  bugzilla3/install-error: abort
  bugzilla3/upgrade-backup: true
  bugzilla3/db/dbname:
  bugzilla3/missing-db-package-error: abort
  bugzilla3/passwords-do-not-match:
  bugzilla3/mysql/admin-user: root
  bugzilla3/upgrade-error: abort
  bugzilla3/db/app-user:
  bugzilla3/dbconfig-reinstall: false
  bugzilla3/mysql/method: unix socket
* 

Bug#421166: closed by Craig Small csm...@debian.org (Re: Bug#421166: vmstat display error)

2009-10-05 Thread Joseph Hall

That makes sense, thanks.

 Hello Joseph,
   For the vmstat -d option the output is never in kilobytes as that
 option is giving you things like number of reads and sectors.  This is
 why the -S option doesn't apply because there are no kilobytes to
 convert.
 
  - Craig



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549376: The bug is in udev

2009-10-05 Thread Ken Bloom
Bingo. The bug is at
https://bugs.launchpad.net/ubuntu/+source/udev/+bug/407428 and it's
already been fixed in udev.



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549702: udev: Udev signal mask inherited by children

2009-10-05 Thread Ken Bloom
Package: udev
Version: 146-3
Severity: critical
Justification: breaks unrelated software

udev uses a screwy signal mask of fffe7ffbfeff when it's running,
and when it calls child processes these child processes inherit the
same signal mask. One of the programs called by udev is ifup, which
starts (or restarts) important daemons of its own, including:
  dhclient3
  ntpd
  sshd

All of these inherit the bad signal mask, and in sshd this causes bug
549376 (also LP:412972), wherein SIGCHLD is blocked in ssh
sessions.

This bug is ubuntu bug 407428
(https://bugs.launchpad.net/ubuntu/+source/udev/+bug/407428), and they
have fixed this in udev 147~-1. Please adopt their patch.

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 32
-rw-r--r-- 1 root root 1547 Jan 16  2009 024_hpmud.rules.dpkg-new
lrwxrwxrwx 1 root root   19 May 14 06:27 025_libgphoto2.rules - 
../libgphoto2.rules
lrwxrwxrwx 1 root root   20 May 14 06:54 025_libticables.rules - 
../libticables.rules
lrwxrwxrwx 1 root root   22 May 14 06:59 025_logitechmouse.rules - 
../logitechmouse.rules
-rw-r--r-- 1 root root  115 Jan 16  2009 45-hplip.rules.dpkg-new
-rw-r--r-- 1 root root  115 Jan 16  2009 55-hpmud.rules.dpkg-new
-rw-r--r-- 1 root root 1195 Sep 30 08:24 70-persistent-cd.rules
-rw-r--r-- 1 root root  377 Sep 29 22:47 70-persistent-net.rules
lrwxrwxrwx 1 root root   16 May 14 06:40 libmtp7.rules - ../libmtp7.rules
lrwxrwxrwx 1 root root   15 May 14 06:40 libnjb.rules - ../libnjb.rules
lrwxrwxrwx 1 root root   15 May 14 06:54 z60_hdparm.rules - ../hdparm.rules
-rw-r--r-- 1 root root   75 May  5 03:45 z60_virtualbox-ose.rules
-rw-r--r-- 1 root root 7117 Apr 11 16:32 z60_xserver-xorg-input-wacom.rules

-- /sys/:
/sys/dev
/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2/dev
/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3/event3/dev
/sys/devices/pci:00/:00:02.0/usb2/2-0:1.0/usb_endpoint/usbdev2.1_ep81/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/2-1:1.0/usb_endpoint/usbdev2.2_ep81/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/2-1:1.0/usb_endpoint/usbdev2.2_ep82/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/2-1:1.1/sound/card1/audio1/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/2-1:1.1/sound/card1/controlC1/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/2-1:1.1/sound/card1/dsp1/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/2-1:1.1/sound/card1/mixer1/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/2-1:1.1/sound/card1/pcmC1D0c/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/usb_device/usbdev2.2/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/usb_endpoint/usbdev2.2_ep00/dev
/sys/devices/pci:00/:00:02.0/usb2/2-1/video4linux/video0/dev
/sys/devices/pci:00/:00:02.0/usb2/2-4/2-4:1.0/usb/lp0/dev
/sys/devices/pci:00/:00:02.0/usb2/2-4/2-4:1.0/usb_endpoint/usbdev2.3_ep02/dev
/sys/devices/pci:00/:00:02.0/usb2/2-4/2-4:1.0/usb_endpoint/usbdev2.3_ep83/dev
/sys/devices/pci:00/:00:02.0/usb2/2-4/dev
/sys/devices/pci:00/:00:02.0/usb2/2-4/usb_device/usbdev2.3/dev
/sys/devices/pci:00/:00:02.0/usb2/2-4/usb_endpoint/usbdev2.3_ep00/dev
/sys/devices/pci:00/:00:02.0/usb2/dev
/sys/devices/pci:00/:00:02.0/usb2/usb_device/usbdev2.1/dev
/sys/devices/pci:00/:00:02.0/usb2/usb_endpoint/usbdev2.1_ep00/dev
/sys/devices/pci:00/:00:02.0/usbmon/usbmon2/dev
/sys/devices/pci:00/:00:02.1/usb1/1-0:1.0/usb_endpoint/usbdev1.1_ep81/dev
/sys/devices/pci:00/:00:02.1/usb1/dev
/sys/devices/pci:00/:00:02.1/usb1/usb_device/usbdev1.1/dev
/sys/devices/pci:00/:00:02.1/usb1/usb_endpoint/usbdev1.1_ep00/dev
/sys/devices/pci:00/:00:02.1/usbmon/usbmon1/dev
/sys/devices/pci:00/:00:05.0/input/input6/event6/dev
/sys/devices/pci:00/:00:05.0/sound/card0/adsp/dev
/sys/devices/pci:00/:00:05.0/sound/card0/audio/dev
/sys/devices/pci:00/:00:05.0/sound/card0/controlC0/dev
/sys/devices/pci:00/:00:05.0/sound/card0/dsp/dev
/sys/devices/pci:00/:00:05.0/sound/card0/hwC0D0/dev
/sys/devices/pci:00/:00:05.0/sound/card0/mixer/dev
/sys/devices/pci:00/:00:05.0/sound/card0/pcmC0D0c/dev
/sys/devices/pci:00/:00:05.0/sound/card0/pcmC0D0p/dev
/sys/devices/pci:00/:00:05.0/sound/card0/pcmC0D1p/dev
/sys/devices/pci:00/:00:06.0/ide0/0.0/block/hda/dev
/sys/devices/pci:00/:00:08.1/host3/target3:0:0/3:0:0:0/block/sda/dev
/sys/devices/pci:00/:00:08.1/host3/target3:0:0/3:0:0:0/block/sda/sda1/dev
/sys/devices/pci:00/:00:08.1/host3/target3:0:0/3:0:0:0/block/sda/sda2/dev
/sys/devices/pci:00/:00:08.1/host3/target3:0:0/3:0:0:0/block/sda/sda5/dev
/sys/devices/pci:00/:00:08.1/host3/target3:0:0/3:0:0:0/bsg/3:0:0:0/dev
/sys/devices/platform/i8042/serio0/input/input1/event1/dev
/sys/devices/platform/i8042/serio1/input/input5/event5/dev

Bug#549701: /usr/sbin/pam-auth-update: please document PAM profile format

2009-10-05 Thread Arthur de Jong
Subject: /usr/sbin/pam-auth-update: please document PAM profile format
Package: libpam-runtime
Version: 1.1.0-4
File: /usr/sbin/pam-auth-update
Severity: wishlist

Please include some information on the formatting of the PAM profiles
that pam-auth-update handles. I think the least would be to point to
  https://wiki.ubuntu.com/PAMConfigFrameworkSpec
(is that the most complete documentation available?) in the manual page
but a proper description under /usr/share/doc or as a manual page would
be better.

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

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

Versions of packages libpam-runtime depends on:
ii  debconf   1.5.27 Debian configuration management sy
ii  libpam-modules1.1.0-4Pluggable Authentication Modules f


-- 
-- arthur - adej...@debian.org - http://people.debian.org/~adejong --


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


Bug#549693: [Pkg-xfce-devel] Bug#549693: hal actions fail when xfce is started with startx

2009-10-05 Thread Yves-Alexis Perez
On lun, 2009-10-05 at 19:00 +0200, Boris Hollas wrote:
 This bug has not appeared since I installed gdm and start xfce with
 gdm  
 instead of startx.
 
 See also bug #545256

How exactly did you start Xfce? Did you read README.Debian in xfce4 and
xfce4-session?

-- 
Yves-Alexis


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


Bug#549703: [i386][lenny] grub guesses wrong location for MBR?

2009-10-05 Thread Vincent McIntyre

Package: installation-reports
Severity: normal

*** Please type your report below this line ***


-- Package-specific info:

Boot method: USB key built with netbootin
Image version: Lenny Netinstall
5.0.3 Lenny Official i386 NETINST Binary-1
   (20090906-12:06)
Date: 2009-10-05T10:00 GMT

Machine: Samsung NC10 Netbook
Partitions: df -Tl will do; the raw partition table is preferred

FilesystemType   1K-blocks  Used Available Use% Mounted on
/dev/sdb1 ext3 1921156136428   1687136   8% /
tmpfstmpfs  513376 0513376   0% /lib/init/rw
udev tmpfs   10240   768  9472   8% /dev
tmpfstmpfs  513376 0513376   0% /dev/shm
/dev/mapper/rutherford-home
  ext3   131735028192336 124850852   1% /home
/dev/mapper/rutherford-opt
  ext3 1919048 35660   1785904   2% /opt
/dev/mapper/rutherford-usr
  ext3 9611492876764   8246488  10% /usr
/dev/mapper/rutherford-var
  ext3 3842104173560   3473372   5% /var


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O]
Detect network card:[O]
Configure network:  [E]
Detect CD:  [ ]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[E]
Overall install:[O]

Comments/Problems:

netbootin is a very handy tool.

The wireless card (atheros, pciid 168c:001c) is detected and the 
ath5h_pci module loads. However it is unable to associate.

Neither could I scan for access points with 'iwlist scan' or
'iwlist ap'.
The wired ethernet worked fine so I used that to complete the install.

No cdrom in the machine. Detection of this appears to have worked.

The system came with three windows partitions which I deleted.

The main problem I had was boot loader installation.
I used the default of grub (did not lower priority to check other 
options). 
When prompted for which device to install grub on, I accepted

the default value offered, '(hd0)'. This turned out to be a mistake.
I followed the prompts about rebooting the system, pulled the USB key
when the system was just starting to do its power-up sequence, and
was rewarded with
  Operating System Not Found
from the BIOS.

The problem turned out to be that grub had guessed wrongly which 
partition it should install to. The grub config was actually correct,

referring to (hd1,0) and using the correct UUID in the boot config.
/etc/fstab was also consistent, referring to the swap partition as being
on /dev/sdb2. Nevertheless it seems there is an inconsistency here.
If I told grub no, install to (hd1), then the correct MBR would have 
been updated (the one on the internal hard disk), but it's unclear if

the system would have been bootable, because of the (hd1,0) reference
in the config file.

The two disks were probably enumerated in the order
  usb stick
  hard disk
because I had to change the boot priority order in the BIOS to get
the system to boot from the USB stick.

To avoid this kind of issue, it seems the grub installation process 
needs to give the user some more information about what disks it sees 
and ask for guidance about which to install the bootloader on.

Partman handles this pretty well now, and I'd like to see grub do
as good a job, instead of (what appears to be) just guessing.
Isn't it reasonably straightforward to iterate through device.map
and pull things out of /dev/disk/by-id; displaying a table like
 [*] hd0 /dev/sda usb-USBDisk_RunDisk_0705261622141-0:0
 [ ] hd1 /dev/sdb ata-SAMSUNG_HM169HI_S1WWJF0S395641
and asking the user to select the right disk?

To avoid even listing the USB stick, and thus avoid having to ask the
question at all in most cases, it seems it should be possible to check 
for some file  specific to the installer, but I can see the dangers in 
this. I thought the cd-probing code etc already determined which 
filesystem contains the installer?


Another option is to prompt with a default choice, as now, but give the 
user a 'go back' option which would lower the curent question priority.

This would allow display of the 'select from the list of possible disks'
question at that time.

I could not see how to start a shell in order to check that grub-install
had got the disk name right. I tried altf2, but this seems not to work
in the GTK installer? I don't recall trying ctrlaltf2.

To recover, I did this:
 * power off
 * insert usb key
 * power up
 * I see a grub menu now - wait for it to boot. system boots perfectly.
 * login
 * noticed /dev/sda1 was not mounted, 'df /' pointed to /dev/sdb1
   (the USB stick)
 * mount /dev/sda1 /mnt
 * sed -ie 's/hd1,0/hd0,0/' /boot/grub/menu.lst
 * tune2fs -l /dev/sda1 |grep UUID (check it matches UUID in menu.lst)
 * grub-install hd0
 * reboot
 

Bug#549439: pkgreport.cgi - internal server errors when using include= parameter

2009-10-05 Thread Vincent . McIntyre


They're actually in the information for each bug, too. If you click on
the [i|N|ÿÿ] bits, you'll see them.


Ah. Lovely! Well hidden, but then all the more rewarding when found.
I do still think it would be useful to show them in the bug when it is
fully displayed.

Cheers
Vince


Bug#549439: pkgreport.cgi - internal server errors when using include= parameter

2009-10-05 Thread Don Armstrong
On Mon, 05 Oct 2009, vincent.mcint...@csiro.au wrote:
 It's, erm, subtle. Which is fine. I do think it would help to use
 some slightly different formatting of the usertags' text, but
 looking at common.pl:htmlizebugs() I can see that this might be
 difficult to arrange; it's not obvious by that stage of execution
 which part of header string is tag text.

They're actually in the information for each bug, too. If you click on
the [i|N|☺] bits, you'll see them.

[It's a bug that the bugreport.cgi script errors out, which, as I
mentioned previously, has been fixed in my branch and will be deployed
shortly.]


Don Armstrong

-- 
We must realize that today's Establishment is the New George III.
Whether it will continue to adhere to his tactics, we do not know. If
it does, the redress, honored in tradition, is also revolution.
 -- William O. Douglas _Points of Rebellion_

http://www.donarmstrong.com  http://rzlab.ucr.edu



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549704: pu: package apache2/2.2.9-10+lenny5

2009-10-05 Thread Stefan Fritsch
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: pu

Hi,

please review apache2/2.2.9-10+lenny5 for inclusion in
5.0.4. It fixes minor security issues and some other bugs.
Here is the changelog:

apache2 (2.2.9-10+lenny5) stable; urgency=low

  * Minor security fixes in mod_proxy_ftp (closes: #545951):
- DoS by malicious ftp server (CVE-2009-3094)
- missing input sanitization: a user could execute arbitrary ftp commands
  on the backend ftp server (CVE-2009-3095)
  * Fix segfault in legacy ap_r* API which is triggered more often since
the fix for CVE-2009-1891 was applied (closes: #537665).
  * Take care to not override existing index.shtml files when upgrading from
before 2.2.8-1 (closes: #517089).
  * mod_deflate: Fix invalid etag to be emitted for on-the-fly gzip
content-encoding. This prevented apache from sending 304 NOT MODIFIED
responses for compressed content.
  * mod_rewrite: Fix B flag breakage (closes: #524268)
  * Properly declare that apache2-suexec* replace files in old versions of
apache2.2-common (closes: #528951).
  * Remove other_vhosts_access.log on package purge.

 -- Stefan Fritsch s...@debian.org  Mon, 05 Oct 2009 19:07:08 +0200

Full debdiff is at:
http://people.debian.org/~sf/2.2.9-10+lenny5/debdiff

Thanks in advance.

Cheers,
Stefan



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#190753: About dropping the ‘should’ recommendation to rename binary programs using a suffix to indicate their programming language.

2009-10-05 Thread Don Armstrong
On Mon, 05 Oct 2009, Charles Plessy wrote:
 As a user I strongly dislike to have to edit my scripts and command
 line sessions in order to make them usable for my colleagues, and I
 would be very annoyed if the first thing to do after installing a
 package would be to check if I have to change the PATH environment
 variable in my current sessions and my logins scripts.

The error here is upstream. Using language extensions in programs that
are part of a public API is wrong, and shouldn't be done. Fixing the
bug in Debian is only a partial solution. These bugs should also be
fixed upstream.

 But on the other hand, once this choice has been made and the
 program distributed, I think that the inconvenients of renaming only
 in Debian are higher than the advantages.

It shouldn't be renamed only in Debian. And even so, it's fairly
simple to work around in scripts even if upstream doesn't want to see
the light. which is your friend.

 Renaming is a practical disadvantage for the users and the package
 maintainers. What are the practical advantages?

The practical advantages are that 1) you can reimplement scripts
without renaming, 2) you don't make it more difficult on public users
of the binary who have to remember both the name and the entirely
arbitrary aspect of what language it was implemented in[1] and 3)
things are consistently named, no matter what the package is.

Furthermore, the policy is a *should* directive, not a *must*
directive. There are many cases where there are things that are done
wrongly, but fixing these historical mistakes are more costly than
living with them. A wontfix bug with possible lintian overrides may be
acceptable in such rare cases.

That said, most packages that are being added to Debian are relatively
new works, and don't have a huge historical userbase with legacy
scripts; fixing these sorts of issues upstream at the earliest
opportunity is the right way forward, and a should directive in policy
is the right way to inform everyone of what the proper practice is.


Don Armstrong

1: Obviously, tab completion works in interactive use, but it's
certainly not the case for writing scripts, documentation, or anything
else. If the code is only used interactively, then there's no real
downside to renaming it.
-- 
All bad precedents began as justifiable measures.
 -- Gaius Julius Caesar in The Conspiracy of Catiline by Sallust

http://www.donarmstrong.com  http://rzlab.ucr.edu



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549687: Newer zile versions lack 'replace-string'

2009-10-05 Thread Reuben Thomas
2009/10/5 Tim tim-deb...@sentinelchicken.org:
 Package: zile
 Version: 2.3.6-2
 Severity: normal


 Hello,

 In recent versions of zile, I noticed the 'replace-string' function
 seems to have disappeared.  Would it be possible to get that added
 back in?  I tend to use it quite a bit.

I could certainly do that, but what's the use case that
query-replace-string doesn't cover?

-- 
http://rrt.sc3d.org
Radiance is the appeasement of myth (Adorno)



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549329: after restarting tomcat6, it won't listen on any ports

2009-10-05 Thread Michael Koch
On Mon, Oct 05, 2009 at 03:56:42PM +0200, Folkert van Heusden wrote:
 Ok problem can be closed: it DOES open ports, it only takes a couple of
 minutes(!) to do so.

Closing bug.


Cheers,

Michael



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549705: xmail: [INTL:fi] Finnish translation of the debconf templates

2009-10-05 Thread Esko Arajärvi
Package: xmail
Severity: wishlist
Tags: l10n patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please include attached translation fi.po to the package.

Regards,
Esko Arajärvi

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

iEYEARECAAYFAkrKOAAACgkQejjRZhTfFSy2tgCbBs9xsqT1IJgUyFkfhBLZrphv
lB0An3d317UO1YzezO7ukB+yWTvVAFof
=at5X
-END PGP SIGNATURE-


signature.asc
Description: Digital signature


Bug#549704: pu: package apache2/2.2.9-10+lenny5

2009-10-05 Thread Stefan Fritsch
I forgot to add that you need to binNMU apache2-mpm-itk after apache2 
has been accepted in s-p-u. (But there is no need to wait with the 
binNMU for all apache2 builds. The apache2-src package is sufficient.)



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549707: scalapack builds uninstallable binary package scalapack-pvm-test

2009-10-05 Thread Steve Langasek
Package: scalapack-pvm-test
Version: 1.8.0-3.1
Severity: grave

The scalapack source package in unstable has stopped building scalapack1-pvm,
but scalapack-pvm-test still has a versioned dependency on it.  It looks like
scalapack-pvm-test should also be dropped.

I believe this is the main blocker for scalapack transitioning to testing.

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

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

Versions of packages scalapack-pvm-test depends on:
pn  blacs1-pvmnone (no description available)
ii  libblas3gf [libblas.so.3gf]   1.2-2  Basic Linear Algebra Subroutines 3
ii  libc6 2.9-26 GNU C Library: Shared libraries
ii  libgcc1   1:4.4.1-4  GCC support library
ii  libgfortran3  4.4.1-4Runtime library for GNU Fortran ap
ii  liblapack3gf [liblapack.so.3g 3.2.1-1library of linear algebra routines
pn  libpvm3   none (no description available)
pn  scalapack-test-common none (no description available)
pn  scalapack1-pvmnone (no description available)

scalapack-pvm-test recommends no packages.

Versions of packages scalapack-pvm-test suggests:
pn  scalapack-doc none (no description available)



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549706: intel-microcode: New version (20090927) available

2009-10-05 Thread Nelson A. de Oliveira
Package: intel-microcode
Version: 0.20090330-1
Severity: wishlist

Hi!

A new release (20090927) of Intel microcode data file is available at
http://downloadcenter.intel.com/Detail_Desc.aspx?agr=YProdId=2278DwnldID=18148lang=eng

Thank you!

Best regards,
Nelson

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

Kernel: Linux 2.6.31.1.naoliv2 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages intel-microcode depends on:
ii  microcode.ctl 1.17-12Intel IA32/IA64 CPU Microcode Util

intel-microcode recommends no packages.

intel-microcode suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#546213: severity of 546213 is normal

2009-10-05 Thread Patrick Schoenfeld
On Fri, Sep 25, 2009 at 04:19:52AM -0400, Andres Salomon wrote:
 On Fri, 25 Sep 2009 10:12:06 +0200
 Patrick Schoenfeld schoenf...@debian.org wrote:
 
  On Thu, Sep 24, 2009 at 11:01:45PM -0400, Andres Salomon wrote:
   This sounds an awful lot like a firmware bug, as well (for which we
   don't have the source code for).  
   
   Perhaps you could try downgrading your firmware-iwlwifi package and
   let us know whether that fixes the issue?  It sounds like the
   driver itself is doing the right thing by detecting a firmware
   problem and reloading.
  
  Hmm. No, I haven't yet considered this. The thing is: The driver and
  the firmware work flawless in 2.6.29, so I guess that this might be a
  firmware problem, but more likely the driver changed since then and
  doesn't work with the firmware anymore. But AFAICT there were new
  release..
 
 So you've verified that you were using the same version of
 firmware-iwlwifi with 2.6.29 and 2.6.30 then, yes?

I thought so, but currently I don't have a working kernel image (as I
reinstalled for some other reasons a while ago) for
2.6.29 to verify that my memory is correct. However I found that
bug #548749, which suggests that it might be a firmware bug
nevertheless, so I'll give *that* a try. Should have tried that first.

Best Regards,
Patrick



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#549708: emacs23: Error in help-mode from electric-buffer-list

2009-10-05 Thread Nahuel Greco
Package: emacs23
Version: 23.1+1-4
Severity: normal

To reproduce this bug:

 1- Start emacs with emacs -q 
 2- M-x electric-buffer-list
 3- C-h m 
 4- Press the down arrow or another key but space in the Help window
 5- Notice the help buffer window being killed and the following error in the 
minibuffer:
 Wrong type argument: number-or-marker-p, down 


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

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

Versions of packages emacs23 depends on:
ii  emacs23-bin-common 23.1+1-4  The GNU Emacs editor's shared, arc
ii  install-info   4.13a.dfsg.1-5Manage installed documentation in 
ii  libasound2 1.0.21a-1 shared library for ALSA applicatio
ii  libatk1.0-01.26.0-1  The ATK accessibility toolkit
ii  libc6  2.9-25GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.16-2  simple interprocess messaging syst
ii  libfontconfig1 2.6.0-4   generic font configuration library
ii  libfreetype6   2.3.9-5   FreeType 2 font engine, shared lib
ii  libgif44.1.6-8   library for GIF images (library)
ii  libglib2.0-0   2.22.0-1  The GLib library of C routines
ii  libgpm21.20.4-3.2General Purpose Mouse - shared lib
ii  libgtk2.0-02.16.6-1  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-15 The Independent JPEG Group's JPEG 
ii  libm17n-0  1.5.4-1+b1a multilingual text processing lib
ii  libncurses55.7+20090803-2shared libraries for terminal hand
ii  libotf00.9.9-1   A Library for handling OpenType Fo
ii  libpango1.0-0  1.26.0-1  Layout and rendering of internatio
ii  libpng12-0 1.2.39-1  PNG library - runtime
ii  librsvg2-2 2.26.0-1  SAX-based renderer library for SVG
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libtiff4   3.9.1-1   Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.2.2-1 X11 client-side library
ii  libxft22.1.13-3  FreeType-based font drawing librar
ii  libxpm41:3.5.7-2 X11 pixmap library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime

emacs23 recommends no packages.

Versions of packages emacs23 suggests:
ii  emacs23-common-non-dfsg   23.1+1-1   GNU Emacs shared, architecture ind

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



<    1   2   3   4   5   >