Bug#549451: evolution: I could set Evolution online after editing NetworkManager.conf

2011-03-27 Thread Omer Zak
Package: evolution
Version: 2.30.3-5
Severity: normal

I was successful in working around the bug and enabling the operation of
setting Evolution online by editing
/etc/NetworkManager/NetworkManager.conf, and setting managed=true
(instead of false) in the [ifupdown] section.
I am attaching the whole /etc/NetworkManager/NetworkManager.conf file.

The NetworkManager version which I use is:
ii  network-manager   0.8.1-6+squeeze1  
network management framework daemon
ii  network-manager-gnome 0.8.1-2   
network management framework (GNOME frontend)


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

Kernel: Linux 2.6.32-5-vserver-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages evolution depends on:
ii  dbus   1.2.24-4  simple interprocess messaging syst
ii  debconf [debconf-2.0]  1.5.36.1  Debian configuration management sy
ii  evolution-common   2.30.3-5  architecture independent files for
ii  evolution-data-server  2.30.3-2  evolution database backend server
ii  gconf2 2.28.1-6  GNOME configuration database syste
ii  gnome-icon-theme   2.30.3-2  GNOME Desktop icon theme
ii  libart-2.0-2   2.3.21-1  Library of functions for 2D graphi
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libc6  2.11.2-10 Embedded GNU C Library: Shared lib
ii  libcairo2  1.8.10-6  The Cairo 2D vector graphics libra
ii  libcamel1.2-14 2.30.3-2  The Evolution MIME message handlin
ii  libcanberra-gtk0   0.24-1Gtk+ helper for playing widget eve
ii  libcanberra0   0.24-1a simple abstract interface for pl
ii  libdbus-1-31.2.24-4  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.88-2.1  simple interprocess messaging syst
ii  libebackend1.2-0   2.30.3-2  Utility library for evolution data
ii  libebook1.2-9  2.30.3-2  Client library for evolution addre
ii  libecal1.2-7   2.30.3-2  Client library for evolution calen
ii  libedataserver1.2-13   2.30.3-2  Utility library for evolution data
ii  libedataserverui1.2-8  2.30.3-2  GUI utility library for evolution 
ii  libegroupwise1.2-132.30.3-2  Client library for accessing group
ii  libenchant1c2a 1.6.0-1   a wrapper library for various spel
ii  libevolution   2.30.3-5  evolution libraries
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.4.2-2.1 FreeType 2 font engine, shared lib
ii  libgconf2-42.28.1-6  GNOME configuration database syste
ii  libgdata-google1.2-1   2.30.3-2  Client library for accessing Googl
ii  libgdata1.2-1  2.30.3-2  Client library for accessing Googl
ii  libglib2.0-0   2.24.2-1  The GLib library of C routines
ii  libgnome-desktop-2-17  2.30.2-2  Utility library for loading .deskt
ii  libgnomecanvas2-0  2.30.1-1  A powerful object-oriented display
ii  libgtk2.0-02.20.1-2  The GTK+ graphical user interface 
ii  libgtkhtml-editor0 3.30.3-1  HTML rendering/editing library - e
ii  libgtkhtml3.14-19  3.30.3-1  HTML rendering/editing library - r
ii  libgweather1   2.30.3-1  GWeather shared library
ii  libical0   0.44-3iCalendar library implementation i
ii  libice62:1.0.6-2 X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1 0.5.0-2   sends desktop notifications to a n
ii  libnspr4-0d4.8.6-1   NetScape Portable Runtime Library
ii  libnss3-1d 3.12.8-1+squeeze1 Network Security Service libraries
ii  libpango1.0-0  1.28.3-1+squeeze2 Layout and rendering of internatio
ii  libsm6 2:1.1.1-1 X11 Session Management library
ii  libsoup2.4-1   2.30.2-1  an HTTP library implementation in 
ii  libsqlite3-0   3.7.3-1   SQLite 3 shared library
ii  libstartup-notificatio 0.10-1library for program launch feedbac
ii  libunique-1.0-01.1.6-1.1 Library for writing single instanc
ii  libxml22.7.8.dfsg-2  GNOME XML library
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages evolution recommends:
ii  evolution-plugins2.30.3-5standard plugins for Evolution
ii  evolution-webcal 2.28.1-1webcal: URL handler for GNOME and 
ii  gnome-desktop-data   2.30.2-2

Bug#618734: [RFC/PATCH] 'tar jcf TAB' should complete arbitrary filenames

2011-03-27 Thread Jonathan Nieder
Ville Skyttä wrote:

 Upstream git now has some consistency and other improvements in this area:

What do you think of Adam's suggestion that tar cf, unlike tar rf,
shouldn't look for existing .tar files at all?

In practice, commit 14fc9f29 (If _filedir 'ext' returns nothing, just
fallback to generic file completion, 2011-03-20) would mostly take
care of the use case I suspect, so this is mostly a question about
principles.  Your patches definitely improve things regardless;
thanks. :)



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



Bug#618555: spatch: exception Failure(More that one variable in decl. Have to split to transform.)

2011-03-27 Thread Jonathan Nieder
Julia Lawall wrote:

 There is no short term solution for the semantic patch as written.  But it 
 is possible to reorganize the semantic patch in this case to make it work.
 The transformation needs to be just on the specific declared variable, and 
 not on the complete declaration statement:

 @@
 identifier x;
 type T;
 @@

 T x
 - = x
   ;

Neat trick.

I just remembered another feature request: would it be difficult for
spatch to write a relevant filename and line number with its error
messages?  (In this example, I made do by repeatedly bisecting the set
of files passed on the command line.)

Thanks for the quick and thorough response.



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



Bug#619584: git-svn: Some svn:external properties are randomly ignored

2011-03-27 Thread Jonathan Nieder
Hi Josef,

Josef Spillner wrote:

 When cloning a rather large repository of mine with
   git svn clone svn+ssh://jo...@svn.ggzgamingzone.org/svn ggz-trunk
   (public variant: svn://svn.ggzgamingzone.org/svn)
 I only get two m4/ggz directories in trunk:
   ./trunk/playground/irc/m4/ggz
   ./trunk/base-libs/m4/ggz
 However, there are more which are also found with git-svn show-externals:
   /utils/m4/ggz
   /txt-client/m4/ggz
 etc.

 To me it looks like a bug that git-svn doesn't clone these externalised
 directories in all places.

git svn doesn't actually do anything special with svn:externals at all;
the idea of the git svn show-externals command is that the user might
come up with something to do with them, perhaps using a wrapper script.
For example, something like
http://algorithm.com.au/blog/files/git-svn-svn-externals.php might work
well for you.

Now this doesn't mean some future version of git svn should not
support externals.  But a generic solution would have to answer some
questions:

 - does the user prefer to clone the repos referred to using svn or
   git svn?  If using git svn, with what parameters?

 - should the git history include the history of the subprojects,
   or should they be automatically ignored in .git/info/exclude?

 - does it make sense to be able to opt out of cloning some subset
   of the subprojects?

 - what should git svn rebase and git svn dcommit do with the
   subproject state?

Please feel free to present your answers in the form of a patch to
git-svn.perl and submit to g...@vger.kernel.org, cc-ing me and Eric
Wong normalper...@yhbt.net. :) [1]  If you just want to experiment
and do not have a one-size-fits-all solution yet, no problem with that
--- a script for contrib/ or even some documentation on how to work
with externals would be welcome as well.

Sorry I cannot offer more.

Thanks for writing,
Jonathan

[1] Documentation/SubmittingPatches has more hints.



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




Bug#619751: debian-installer: should upgrade debian-archive-keyring from the main mirror before attemping to fetch from security

2011-03-27 Thread Christian PERRIER
reassign 619751 apt-setup
found 619751 1:0.40 
thanks

Quoting Philipp Kern (pk...@debian.org):
 Package: debian-installer
 Version: 20090123lenny8
 Severity: important
 
 Hi,
 
 I'm filing this against debian-installer in the hope that you'll reassign it 
 to
 the right d-i component.

That would be apt-setup. Reassigning.




signature.asc
Description: Digital signature


Bug#619082: dash: implement variable $RANDOM

2011-03-27 Thread Jonathan Nieder
(resending because I can't spell. :/  Sorry for the noise.)

Hi Pedro,

Pedro Zorzenon Neto wrote:

 After upgrading to squeeze and answering yes to install question of
 using dash as default shell for non-interactive users, all my cronjobs
 that use $RANDOM variable to delay some random seconds of running time
 stopped working.

I don't think this functionality belongs in dash.  For example, I
find that the sleep command in

 Example of a simple cronjob which runs with a random delay of
 0 ~ 327 seconds (to prevent network peaks of all the machines):

   */30 * * * * sleep $(($RANDOM/100))  do_something_network_related

is better written (more portably and more intuitively) as

sleep $(awk 'BEGIN {srand(); printf %d\n, rand()*327}')

or

awk 'BEGIN { srand(); system(sleep  int(rand() * 327)) }'

even though this is a little longer.

On the other hand, I would definitely like a way for users to be able
to easily choose a different shell to be used by cron, so they would
be less at the mercy of the cruel sysadmin.  What do you think?

Thanks for writing,
Jonathan



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



Bug#619800: general: The touchpad's mouse clicks

2011-03-27 Thread ArGeMaNiA
Package: general
Severity: normal

The touchpad's mouse click is enabled.Before login it doesn't effect.After
login it effects.



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

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



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



Bug#619746: gnutls-bin: [certtool] include useless data when creating a CSR

2011-03-27 Thread Nikos Mavrogiannopoulos
On 03/26/2011 06:57 PM, Luca Capello wrote:
 Package: gnutls-bin
 Version: 2.10.5-1
 Severity: important
 
 Hi there!
 
 I was creating a Certificate Signing Request with certtool and then I
 discovered that the output file contains more than the CSR, even worse
 it contains the password asked during the creation.
[...]
 =
 luca@gismo:~$ #certtool --generate-request \
  --load-privkey pca.it.key --outfile gallery.pca.it.csr
 
 luca@gismo:~$ ls -la ~/ | grep .ssl
 drwx--  4 luca luca   4096 Dec 10 00:10 .ssl
 
 luca@gismo:~$ ls -la ~/.ssl | grep private
 drwx--  2 luca luca  4096 Mar 26 19:01 private
 
 luca@gismo:~$ ls -la ~/.ssl/private/ | grep gallery
 -rw-r--r-- 1 luca luca 4067 Mar 26 19:02 gallery.pca.it.csr
 =

Hello,
 I don't quite understand what is the issue here. What is the
information contained in the CRQ that you consider useless?
Could you send a way for us to reproduce the problem or a wrongly
generated CRQ (and the way it was generated - the example
you have generates a valid CRQ for me).

regards,
Nikos



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



Bug#619792: gcc-4.6: FTBFS on kfreebsd: gengtype: Internal error: abort in get_output_file_with_visibility, at gengtype.c:1998

2011-03-27 Thread Petr Salinger

notfound  619792 4.6.0~rc1-3
--

The failure is on kfreebsd-amd64 with 4.6.0-1,
but the 4.6.0~rc1-2, 4.6.0~rc1-3 have been fine.

All tried on fash. The difference is used gcc-4.5.
Failed builds used gcc-4.5_4.5.2-7,
the previous used gcc-4.5_4.5.2-6.

Petr




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



Bug#619800: general: The touchpad's mouse clicks

2011-03-27 Thread Julien Viard de Galbert
On Sun, Mar 27, 2011 at 07:09:42AM +0200, ArGeMaNiA wrote:
 Package: general
 Severity: normal
 
 The touchpad's mouse click is enabled.Before login it doesn't effect.After
 login it effects.
 
Hello,

Which login manager (xdm, gdm, kdm ?) and which desktop environment are
you using ? (GNOME, KDE, XFCE ... ).

Best Regards,

-- 
Julien Viard de Galbertjul...@vdg.blogsite.org
http://silicone.homelinux.org/   jul...@silicone.homelinux.org
GPG Key ID: D00E52B6  Published on: hkp://keys.gnupg.net
Key Fingerprint: E312 A31D BEC3 74CC C49E  6D69 8B30 6538 D00E 52B6


signature.asc
Description: Digital signature


Bug#616181: fpc: FTBFS on armel: An unhandled exception occurred at $00033B60

2011-03-27 Thread Riku Voipio
On Sun, Mar 27, 2011 at 12:12:16AM +, peter green wrote:
 I have tried and failed to reproduce this issue in qemu with an up to  
 date sid. Can anyone else reproduce it? Since both failures have been  
 from the same buildd I wonder if it's some issue with the particular 
 buildd.

Tried it on another buildd and got the same issue. There a few things
qemu doesn't emulate, for example alignement errors.

Riku



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



Bug#592225: Another crash when playing Internet radio

2011-03-27 Thread Piotr Drozdek
Another crash, when listening Internet radio. I didn't click
anything from long time and suddenly I received window with
crash info.

Wystąpił nieobsługiwany wyjątek: Object reference not set to
an instance of an object

at Banshee.MediaEngine.PlayerEngine.OnTagFound
(Banshee.Streaming.StreamTag) 0x000bf at
Banshee.GStreamer.PlayerEngine.OnTagFound (intptr,string,GLib.Value)
0x00037 at (wrapper native-to-managed)
Banshee.GStreamer.PlayerEngine.OnTagFound (intptr,intptr,GLib.Value)
0x00098 at (wrapper managed-to-native) Gtk.Application.gtk_main ()
0x00055 at Gtk.Application.Run () 0xb at
Banshee.Gui.GtkBaseClient.Run () 0x00067 at
Banshee.Gui.GtkBaseClient.Startup () 0x00053 at
Hyena.Gui.CleanRoomStartup.Startup
(Hyena.Gui.CleanRoomStartup/StartupInvocationHandler) 0x00094


.NET Version: 2.0.50727.1433
OS Version: Unix 2.6.37.2

Assembly Version Information:

dbus-sharp (1.0.0.0)
taglib-sharp (2.0.3.7)
Mono.Security (2.0.0.0)
System.Configuration (2.0.0.0)
Banshee.InternetArchive (1.6.0.0)
Banshee.FileSystemQueue (1.6.0.0)
Banshee.InternetRadio (1.6.0.0)
Banshee.MiniMode (1.6.0.0)
Banshee.CoverArt (1.6.0.0)
Banshee.Bookmarks (1.6.0.0)
Banshee.Emusic (1.6.0.0)
notify-sharp (0.4.0.0)
Banshee.NotificationArea (1.6.0.0)
Lastfm (1.6.0.0)
Banshee.Dap (1.6.0.0)
Migo (1.6.0.0)
Banshee.Podcasting (1.6.0.0)
Banshee.LibraryWatcher (1.6.0.0)
Banshee.MultimediaKeys (1.6.0.0)
Banshee.YouTube (1.6.0.0)
webkit-sharp (1.1.15.0)
Banshee.Wikipedia (1.6.0.0)
Banshee.Lastfm (1.6.0.0)
pango-sharp (2.12.0.0)
Banshee.Widgets (1.6.0.0)
Banshee.Hal (1.6.0.0)
Banshee.Unix (1.6.0.0)
Banshee.GStreamer (1.6.0.0)
Mono.Media (1.6.0.0)
System.Transactions (2.0.0.0)
NDesk.DBus.GLib (1.0.0.0)
gconf-sharp (2.24.0.0)
Banshee.Gnome (1.6.0.0)
Banshee.NowPlaying (1.6.0.0)
Mono.Cairo (2.0.0.0)
System.Data (2.0.0.0)
Mono.Data.Sqlite (1.6.0.0)
System.Xml (2.0.0.0)
System.Core (3.5.0.0)
gdk-sharp (2.12.0.0)
Mono.Addins (0.4.0.0)
atk-sharp (2.12.0.0)
Hyena.Gui (1.6.0.0)
gtk-sharp (2.12.0.0)
Banshee.Core (1.6.0.0)
Banshee.ThickClient (1.6.0.0)
Nereid (1.6.0.0)
NDesk.DBus.Proxies (0.0.0.0)
Mono.Posix (2.0.0.0)
System (2.0.0.0)
Hyena (1.6.0.0)
NDesk.DBus (1.0.0.0)
glib-sharp (2.12.0.0)
Banshee.Services (1.6.0.0)
Banshee (1.6.0.0)
mscorlib (2.0.0.0)

Platform Information: Linux 2.6.37-2-amd64 x86_64 unknown GNU/Linux

Disribution Information:

[/etc/debian_version]
wheezy/sid

Additional reportbug information: http://pastebin.com/JysKzYgi

-- 
Regards,
Piotr Drozdek



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



Bug#618236: saods9: FTBFS: Nonexistent build-dependency: 'libtktable2.9'

2011-03-27 Thread Ralf Treinen
tktable2.9 got removed from sid on 2011/02/20, see

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

-Ralf.



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



Bug#612405: [SRM] Approval for aide 0.15.1-3

2011-03-27 Thread Hannes von Haugwitz
Hi,

I'd like to fix two important bugs (#612405, #615111) in aide. Both bugs
introduced problems which doesn't exist in oldstable.

I've attached the diff for 0.15.1-3 (in unstable).

aide 0.15.1-3 has reached testing some days ago without any problems.

Please consider aide 0.15.1-3 in stable.

Thanks

Hannes
diff --git a/debian/aide.conf.d/31_aide_bind9 b/debian/aide.conf.d/31_aide_bind9
index 06950c1..3176a2e 100644
--- a/debian/aide.conf.d/31_aide_bind9
+++ b/debian/aide.conf.d/31_aide_bind9
@@ -1,5 +1,5 @@
 @@ifdef BINDCHROOT
-@@{BINDCHROOT}/dev/log$ LowLogs
+@@{BINDCHROOT}/dev/log$ LowLog
 @@{BINDCHROOT}/dev VarDir
 @@endif
 @@{BINDCHROOT}/var/log/bind/queries\.log$ Log
diff --git a/debian/changelog b/debian/changelog
index c1c4959..5c76900 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+aide (0.15.1-3) unstable; urgency=low
+
+  [ Marc Haber ]
+  * 31_aide_bind9:
+- fix wrong group (closes: #612405)
+
+  [ Hannes von Haugwitz ]
+  * debian/patches/05-configure_32-bit_lfs_fix.dpatch: new
+- fixed lfs on 32-bit systems (closes: #615111)
+
+ -- Hannes von Haugwitz han...@vonhaugwitz.com  Fri, 11 Mar 2011 09:50:46 +0100
+
 aide (0.15.1-2) unstable; urgency=low
 
   * debian/po/da.po:
diff --git a/debian/patches/00list b/debian/patches/00list
index 8bf570a..df151de 100644
--- a/debian/patches/00list
+++ b/debian/patches/00list
@@ -1 +1,2 @@
+05-configure_32-bit_lfs_fix
 10-manpages
diff --git a/debian/patches/05-configure_32-bit_lfs_fix.dpatch b/debian/patches/05-configure_32-bit_lfs_fix.dpatch
new file mode 100755
index 000..f40b290
--- /dev/null
+++ b/debian/patches/05-configure_32-bit_lfs_fix.dpatch
@@ -0,0 +1,24 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 05-configure_32-bit_lfs_fix.dpatch
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Description: Fix large file support on 32-bit systems
+## DP: Forwarded: not-needed
+## DP: Author: Hannes von Haugwitz han...@vonhaugwitz.com
+## DP: Applied-Upstream: 0.16a1, http://aide.git.sourceforge.net/git/gitweb.cgi?p=aide/aide;a=commit;h=92c7878
+## DP: Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615111
+## DP: Last-Update: 2011-03-11
+
+@DPATCH@
+diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' aide~/configure aide/configure
+--- aide~/configure	2011-03-11 06:23:39.0 +
 aide/configure	2011-03-11 06:29:11.0 +
+@@ -6435,7 +6435,7 @@
+ if test x$ac_cv_func_lstat64 = xyes; then :
+   ac_fn_c_check_func $LINENO stat64 ac_cv_func_stat64
+ if test x$ac_cv_func_stat64 = xyes; then :
+-  AIDE_DEFS=$AIDE_DEFS -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS
++  AIDE_DEFS=$AIDE_DEFS -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
+ 	AIDE_LSTAT_FUNC=lstat64
+ 	compoptionstring=${compoptionstring}WITH_LSTAT64\\n
+ 	AIDE_STAT_FUNC=stat64


Bug#619670: initramfs-tools: make robust against libraries only runtime-linkable due to /etc/ld.so.conf*

2011-03-27 Thread maximilian attems
On Sat, 26 Mar 2011, Colin Watson wrote:

 
 I looked at fixing this by copying in /etc/ld.so.conf* and running
 ldconfig, but this turned out to be very difficult due to the way
 mkinitramfs symlinks libraries during initramfs creation, and I ended up
 giving this up as infeasible for the time being.  I think it's better to
 have copy_exec check whether the target directory name is only on the
 linker search path by virtue of /etc/ld.so.conf*, and if so, install to
 /lib or /usr/lib as appropriate instead.

There is a branch out there that gives up that symlink mess and runs
ldconfing on the built initramfs. I intent to upload it for 0.99.
It was prompted due to a similar long bug search #612633
http://git.debian.org/?p=kernel/initramfs-tools.git;a=shortlog;h=refs/heads/maks/mkinitramfs_cp

currently a bit frustrated as the review of initramfs-tools branches
got stalled. (we'd only merge branches if other maintainer has reviewed
it).  It paid of for squeeze as never had so less bug reports on a release,
but still currently too many branches and stuff pilling up, see bottom
http://git.debian.org/?p=kernel/initramfs-tools.git;a=summary
 
 I don't know whether you'll want to take this patch exactly, or refine
 it, or do something else entirely; but I've tried to make it relatively
 safe and it may be worth it for robustness even if you aren't running
 into this problem in Debian right now.

Thanks a lot for the submisson, as mentioned running ldconfig is
considered better.
 
-- 
maks



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



Bug#619801: reportbug: Several crashes when trying to report something

2011-03-27 Thread Piotr Drozdek
Package: reportbug
Version: 5.0
Severity: important

I suffered several crashes when trying to report something. Mostly on first
screen, when I was typing package name and then pressed Continue.

$ reportbug
Traceback (most recent call last):
  File /usr/bin/reportbug, line 2127, in module
main()
  File /usr/bin/reportbug, line 1052, in main
return iface.user_interface()
  File /usr/bin/reportbug, line 2019, in user_interface
issource=self.options.source)
  File /usr/lib/pymodules/python2.6/reportbug/utils.py, line 756, in
generate_blank_report
return unicode(rep)
  File /usr/lib/pymodules/python2.6/reportbug/bugreport.py, line 131, in
__unicode__
self.followup, reportto, self.package, headers)
TypeError: %d format: a number is required, not str

$ reportbug
Traceback (most recent call last):
  File /usr/bin/reportbug, line 2127, in module
main()
  File /usr/bin/reportbug, line 1052, in main
return iface.user_interface()
  File /usr/bin/reportbug, line 2019, in user_interface
issource=self.options.source)
  File /usr/lib/pymodules/python2.6/reportbug/utils.py, line 756, in
generate_blank_report
return unicode(rep)
  File /usr/lib/pymodules/python2.6/reportbug/bugreport.py, line 131, in
__unicode__
self.followup, reportto, self.package, headers)
TypeError: %d format: a number is required, not str

$ reportbug
/usr/lib/pymodules/python2.6/reportbug/ui/gtk2_ui.py:476: PangoWarning:
pango_layout_set_width: assertion `layout != NULL' failed
  gtk.main ()
/usr/lib/pymodules/python2.6/reportbug/ui/gtk2_ui.py:476: PangoWarning:
pango_layout_get_extents: assertion `layout != NULL' failed
  gtk.main ()
/usr/lib/pymodules/python2.6/reportbug/ui/gtk2_ui.py:476: PangoWarning:
pango_layout_get_line_count: assertion `layout != NULL' failed
  gtk.main ()
Błąd w obliczeniach zmiennoprzecinkowych

Additional reportbug information: http://pastebin.com/q7ApBDV8



-- Package-specific info:
** Environment settings:
INTERFACE=gtk2

** /home/pioruns/.reportbugrc:
reportbug_version 4.12.6
mode standard
ui gtk2
realname Piotr Drozdek
email pior...@o2.pl
no-cc
header X-Debbugs-CC: pior...@o2.pl
smtphost reportbug.debian.org

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing'), (110, 'unstable'), (105, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages reportbug depends on:
ii  apt 0.8.13   Advanced front-end for dpkg
ii  python  2.6.6-3+squeeze6 interactive high-level object-orie
ii  python-reportbug5.0  Python modules for interacting wit

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  debconf-utilsnone  (no description available)
pn  debsums  none  (no description available)
pn  dlocate  none  (no description available)
pn  emacs22-bin-common | emacs23 none  (no description available)
ii  exim44.74-2  metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [mail-tra 4.74-2  lightweight Exim MTA (v4) daemon
ii  file 5.04-5  Determines file type using magic
ii  gnupg1.4.11-3GNU privacy guard - a free PGP rep
ii  python-gtk2  2.17.0-4Python bindings for the GTK+ widge
pn  python-gtkspell  none  (no description available)
pn  python-urwid none  (no description available)
ii  python-vte   1:0.24.3-2  Python bindings for the VTE widget
ii  xdg-utils1.1.0~rc1-2 desktop integration utilities from

-- 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#618555: spatch: exception Failure(More that one variable in decl. Have to split to transform.)

2011-03-27 Thread Julia Lawall
On Sun, 27 Mar 2011, Jonathan Nieder wrote:

 Julia Lawall wrote:
 
  There is no short term solution for the semantic patch as written.  But it 
  is possible to reorganize the semantic patch in this case to make it work.
  The transformation needs to be just on the specific declared variable, and 
  not on the complete declaration statement:
 
  @@
  identifier x;
  type T;
  @@
 
  T x
  - = x
;
 
 Neat trick.
 
 I just remembered another feature request: would it be difficult for
 spatch to write a relevant filename and line number with its error
 messages?  (In this example, I made do by repeatedly bisecting the set
 of files passed on the command line.)

I've done that.

Typically, when I want to work on an entire directory, I give spatch the 
option -dir dirname, and then it prints out the names of the files as it 
treats them.  It doesn't help with the line number, though.  In any case, 
I changed the code to print out both information.

julia



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



Bug#615937: docbookwiki: General update after the debconf review process

2011-03-27 Thread Christian PERRIER
Dear Debian maintainer,

On Tuesday, February 15, 2011, I sent you a notification about the beginning of 
a review
action on debconf templates for docbookwiki.

Then, I sent you a bug report with rewritten templates and announcing
the beginning of the second phase of this action: call for translation
updates.

Translators have been working hard and here is now the result of their efforts.

Please consider using it EVEN if you committed files to your
development tree as long as they were reported.

The attached tarball contains:

- debian/changelog with the list of changes
- debian/control with rewrites of packages' descriptions
- debian/templates with all the rewritten templates file(s)
- debian/po/*.po with all PO files (existing ones and new ones)

As said, please use *at least* the PO files as provided here,
preferrably over those sent by translators in their bug reports. All
of them have been checked and reformatted. In some cases, formatting
errors have been corrected.

The patch.rfr file contains a patch for the templates and control
file(s) alone.

Please note that this patch applies to the templates and control
file(s) of your package as of Tuesday, February 15, 2011. If your package was 
updated
in the meantime, I may have updated my reference copybut I also
may have missed that. This is indeed why I suggested you do not
modified such files while the review process was running,
remember..:-)

It is now safe to upload a new package version with these changes.

Please notify me of your intents with regards to this. 

There is of course no hurry to update your package but feel free to
contact me in case you would need sponsoring or any other action to
fix this.



-- 




patch.tar.gz
Description: Binary data
--- docbookwiki.old/debian/templates2011-02-11 06:39:23.193190930 +0100
+++ docbookwiki/debian/templates2011-03-01 07:19:09.962624368 +0100
@@ -1,52 +1,63 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-engl...@lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
 Template: docbookwiki/purge_books
 Type: boolean
 Default: false
 _Description: Remove books during purge?
- If you accept here, any books uploaded into DocBookWiki, including XML
+ If you choose this option, any book uploaded into DocBookWiki, including XML
  source and downloadable formats, will be removed along with the program
- files.
+ files when the package is purged.
 
 Template: docbookwiki/generate_downloads
 Type: boolean
 Default: false
 _Description: Generate downloadable formats now?
- DocBookWiki can generate downloadable formats (HTML, PDF, etc) for the
+ DocBookWiki can generate downloadable formats (HTML, PDF, etc.) for the
  default set of books during installation, but this will take quite some
- time to do.  If you do not want to generate these now, decline here and
- they will be generated when the next DocBookWiki weekly cron job runs.
+ time to do.
+ .
+ If you do not want to generate these now, they will be generated when
+ the next DocBookWiki weekly cron job runs.
 
 Template: docbookwiki/reconfigure_webserver
 Type: multiselect
-__Choices: apache, apache-ssl, apache-perl, apache2
-Default: 
-_Description: Which web server would you like to reconfigure automatically?
+__Choices: apache2
+_Description: Web server to reconfigure for DocBookWiki:
  DocBookWiki supports any web server that PHP does, but this automatic
  configuration process only supports Apache.
 
 Template: docbookwiki/restart_webserver
 Type: boolean
 Default: false
-_Description: Do you want to restart Apache now?
- In order to activate the new configuration Apache has to be restarted. If
- you do not confirm here, please remember to restart Apache manually.
+_Description: Do you want to restart the web server now?
+ In order to activate the new configuration, the web server has to be
+ restarted. You may however prefer doing this manually later.
 
 Template: docbookwiki/setup_password
 Type: password
 Default: admin
-_Description: Password for web-based setup system:
+_Description: Password for DocBookWiki web-based setup system:
  DocBookWiki comes with an administration script that can help you with
  managing users. The script is located at http://localhost/books/admin.php.
- For security reasons it requires authorization.  The administrator's
- username is 'superuser' and the default password is 'admin'.
+ For security reasons it requires authorization. The administrator's
+ username is superuser and the default password is admin.
  .
  It is recommended that you enter a different superuser password here.
  Leave empty if you want to use the default password.
 
 Template: docbookwiki/sudo_warning
 Type: note
-_Description: Important change to be made using visudo
+#flag:translate!:3
+_Description: 

Bug#589454: fails to start after a fresh install

2011-03-27 Thread Witold Baryluk
Package: vnstat
Version: 1.10-1
Followup-For: Bug #589454

I have the same problem for long time. Today I looked
more into it.

vnstatd starts, and then exits with:
Zero databases found.

/var/lib/vnstat exists and is empty.

Running in debug mode in foreground do not solve/explains anyhting.

I was looking how to create database, but there is nothing
I can do using vnstatd or vnstat. I was also looking
into manpages and README, and there is no info.
Apperently vnstatd should just create database by itself
automatically (per interface).

Why this not happen? Was it working before?

Regards,
Witek



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

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

Versions of packages vnstat depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib

vnstat recommends no packages.

Versions of packages vnstat suggests:
pn  vnstati   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#512048: Yet Another crash when listening internet radio

2011-03-27 Thread Piotr Drozdek
Another crash when I was listening Internet radio station from:
http://files.kusmierz.be/rmf/rmffm.pls
This time, I run banshee with debug.

banshee --debug: http://pastebin.com/TwTQB2nG
additional reportbug information: http://pastebin.com/pJ1DprKV

-- 
Regards,
Piotr Drozdek



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



Bug#618593: [Pkg-octave-devel] Bug#618593: octave3.2: fix saving/loading of constant ranges

2011-03-27 Thread Thomas Weber
package: octave3.2
tags 618593 wontfix
thanks

On Wed, Mar 16, 2011 at 08:19:32PM +0100, Kim Hansen wrote:
 Package: octave3.2
 Version: 3.2.4-8
 Severity: normal
 Tags: patch
 
 
 If I save the output of ones(1,2) octave will load it back as an empty range.
 
 This has been fixed upstream in 
 http://velveeta.che.wisc.edu/cgi-bin/hgwebdir.cgi/octave/rev/d899b2ee6a37.

According to the discussion at http://savannah.gnu.org/bugs/?30289, this
patch might break loading of files saved with earlier Octave versions
(in our case, that means every earlier 3.2 release). 

I haven't looked too deeply at it, because I'm already swamped as is.

Thomas



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



Bug#568209: not starting with CONFIG_CACHEFILES=y

2011-03-27 Thread Witold Baryluk
Package: cachefilesd
Version: 0.9-3
Followup-For: Bug #568209

Hi,

I do not know if this is releated, but I'm running
on stock Debian kernel (2.6.38) with cachefiles in module.

What is strange, that initscripts says start failed (and insserv later tells
me it failed to start). But actually everything works.
Modules are loaded, cachefilesd daemon is running. So do not understand
why it think it failed.
This initscript failes even when used manually (not in the boot).
I added a delay (STARTTIME=2), and it started working, so it can be known issue.
Shouldn't cachefilesd initscript just use start-stop-daemon facility,
instead of hand-coded start_daemon?


PS. I also think cachedfiles should work with builtin cachefiles module.
(just modprobe, but ignore error code. if anything is wrong, cachefilesd will
refuse to start anyway).


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

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

Versions of packages cachefilesd depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib

cachefilesd recommends no packages.

cachefilesd suggests no packages.

-- Configuration Files:
/etc/default/cachefilesd changed:
RUN=yes
DAEMON_OPTS=

/etc/logcheck/ignore.d.workstation/cachefilesd [Errno 13] Permission denied: 
u'/etc/logcheck/ignore.d.workstation/cachefilesd'

-- 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#619631: RFP: eclipse-plugin-avr -- tools for developing C programs for the ATMEL AVR series of embedded processors

2011-03-27 Thread Chris
On Sat, 2011-03-26 at 10:19 +0100, Niels Thykier wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
 On 2011-03-26 10:06, Chris wrote:
  On Fri, 2011-03-25 at 21:39 +0100, Niels Thykier wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA256
 
  On 2011-03-25 19:04, Christopher Baines wrote:
  Package: wnpp
  Severity: wishlist
 
Package name: eclipse-plugin-avr
Version : 2.3.4
Upstream Author : 
URL : 
  http://avr-eclipse.sourceforge.net/wiki/index.php/The_AVR_Eclipse_Plugin
License : GPL
Programming Lang: Java 
Description : tools for developing C programs for the ATMEL AVR 
  series of embedded processors
 
 
 
 
 
  Hey
 
  Is this GPL or GPL with exception? Because if it is a pure GPL, then
  this plugin cannot be linked against eclipse/SWT since GPL and EPL are
  incompatiable.
 
  ~Niels
  
  I think its pure GPL v3, should I check with the project admin about
  this issue?
  
  Chris
 
 Please do; if it is a pure GPL v3 then they have to change license of
 the project and that can take quite a while as they have to get it
 approved by all copyright holders.
 
 ~Niels

Ok, I have a response from the lead developer of the project [1].

 I recently requested that the Eclipse AVR Plug-in be packaged and
 included in Debian [1]. However it was brought to my attention that
 Eclipse is licensed under the EPL, and this is incompatible with the
 GPL, this incomparability according to wikipedia makes combined works
 unlawful to distribute [2].
 
 Is this correct?
 
INAL, but I think that this might be correct.

The AVR Plugin was already GPL when I took over from the previous
maintainer. I like the GPL so I continued with it. However I am aware
that using a GPL Plugin with Eclipse is a somewhat grey area due to
license incompatibility. 

I have contemplated for some time to change the AVR plugin license to
the EPL,  if only to reuse Eclipse and CDT code in the plugin (which I
can't do as long as the plugin is still GPL).

A license change should not be too difficult as I have written probably
95%+ of the code of the plugin myself. Most of the original GPL code
from the previous maintainer and from those 2 or 3 contributors have
probably been rewritten multiple times, but I would still have to check
that and also, as a courtesy,  ask those contributors if they agree with
a license change.

But as I don't really work on the AVR Plugin anymore (due to time
constraints), I have not but any effort into a license change.

brgds,

Thomas


I also filed a bug in the tracker so that this issue can hopefully be
tracked and resolved [2].

Chris

[1]
https://sourceforge.net/mailarchive/forum.php?thread_name=4D8E5DC7.305%40innot.deforum_name=avr-eclipse-user
[2]
https://sourceforge.net/tracker/?func=detailaid=3248913group_id=189165atid=928232



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


Bug#619803: zynjacku: new upstream release

2011-03-27 Thread rosea grammostolla
Package: zynjacku
Version: 5.2-5
Severity: wishlist

zynjacku: new upstream release



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

Kernel: Linux 2.6.33.7.2-rt30-multimedia-amd64 (SMP w/2 CPU cores; PREEMPT)
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 zynjacku depends on:
ii  jackd5   JACK Audio Connection Kit (default
ii  lashd0.5.4.0-2+b1LASH Audio Session Handler (LASH) 
ii  libatk1.0-0  1.30.0-1The ATK accessibility toolkit
ii  libc62.11.2-11   Embedded GNU C Library: Shared lib
ii  libcairo21.8.10-6The Cairo 2D vector graphics libra
ii  libfontconfig1   2.8.0-2.1   generic font configuration library
ii  libfreetype6 2.4.4-1 FreeType 2 font engine, shared lib
ii  libglib2.0-0 2.28.1-1+b1 The GLib library of C routines
ii  libgtk2.0-0  2.20.1-2The GTK+ graphical user interface 
ii  libjack0 [libjack-0. 1:0.120.1+svn4142-1 JACK Audio Connection Kit (librari
ii  liblv2dynparamhost1- 2-3 LV2 plugin interface extension - h
ii  libpango1.0-01.28.3-1+squeeze2   Layout and rendering of internatio
ii  python   2.6.6-3+squeeze6interactive high-level object-orie
ii  python-glade22.17.0-4GTK+ bindings: Glade support
ii  python-gtk2  2.17.0-4Python bindings for the GTK+ widge
ii  python-lash  0.5.4.0-2+b1Python bindings for liblash2
ii  python2.62.6.6-8+b1  An interactive high-level object-o

zynjacku recommends no packages.

Versions of packages zynjacku suggests:
pn  lash-bin  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#619712: opensync-plugin-evolution: synchronization fails due to change in evolution-backend

2011-03-27 Thread Michael Banck
On Sat, Mar 26, 2011 at 12:58:11PM +0100, Andreas Mueck wrote:
 Synchronization fails with messages like Cannot get cal from factory. The
 problem was solved by downloading the source and building a new binary for
 wheezy.

Which source exactly?


Michael



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



Bug#589685: KDE 3's libs removal ping

2011-03-27 Thread Ana Guerrero
On Sat, Mar 26, 2011 at 09:13:37PM -0500, Ruben Molina wrote:
 El vie, 25-03-2011 a las 21:34 +0100, Ana Guerrero escribió:
  On Mon, Mar 21, 2011 at 08:37:13AM -0500, Ruben Molina wrote:
   El dom, 20-03-2011 a las 14:24 -0300, Lisandro Damián Nicanor Pérez
   Meyer escribió:
Hi Rubén! As Ana asked some time ago, what's the status of this?
We are very close to asking the removal of KDE 3's libs.
   
   Hi Lisandro,
   I completed the packaging work and I'm testing it now.
   Will be uploading it to mentors and sending an RFS in a few hours.
   Thanks a lot.
  
  Hola!
  I am asking the removal of kde3libs tomorrow so ... should I file
  one for kst also in the meanwhile you finnish your package?
 
 Hola!
 Please go ahead and file an RM for kst.  My package is not working as
 expected and it can take some time to be solved.
 Thanks a lot!

What problem do you have? maybe I can help you.

Ana




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



Bug#617531: pptp-linux: speed degraded dramatically

2011-03-27 Thread Ola Lundqvist
Privet Vladimir

It could be so that the MTU discovery fails for some reason. This is
not necessarily a fault in pptp, but it could be a router/firewall
problem. Why it works in Windows is that they may have a lower
default MTU compared to the linux implementation. The same may apply
to ssh.

I suggest you use the following settings in your ppp configuration:
mru 1440
mtu 1440

If you have not confiugred those in /etc/ppp/options.pptp
you can expect the problem you have seen. I always use those options
in my pptp configuration files to make sure there is no fragmentation
at least when using Ethernet.

This information was part of the configuration documentation on the
webpage a number of years ago, but now it is obviously not there
anymore. Probably due to that path mtu discovery works well in most
cases. However if ICMP is disabled in one of the ends (or somewhere
in between) it will not.

For the reason why the MTU is smaller in ppp and ppptp see here:
http://lists.freebsd.org/pipermail/freebsd-questions/2003-July/012922.html

And here about why path mtu discovery may fail:
http://lartc.org/howto/lartc.cookbook.mtu-discovery.html
http://lartc.org/howto/lartc.cookbook.mtu-mss.html

I hope this helps to resolve this issue.

Best regards,

// Ola


On Sun, Mar 27, 2011 at 03:38:19AM +0400, Vladimir Starvinov wrote:
 On Sun, Mar 27, 2011 at 12:19:05AM +0100, Ola Lundqvist wrote:
 
  When you run ppp over ssh then the re-ordering is done by the
  tcp implementation in Linux which is obviously better than pptp-client
  implementation when it comes to speed.
  
  It could also be so that the message loss/re-ordering is due to that you
  have set wrong MTU size so that the messages are fragmented on IP layer.
  This will not happen if you use TCP with a different MTU.
  
  I suggest you check what MTU size you have set for this tunnel.
 
 I have do not set MTU as well as do not tuning anything else related to
 TCP. I am using standard debian kernel. Yes, I have look at MTU - it have
 standard value for PPP (bit less then 1500). I have done the same test on some
 other server and got the same. As You can see from referred bug report,
 there are other people with the same problem. All this means that it is
 obvious bug of pptp-linux, that should be fixed.
  
 
 ***
   Vladimir Stavrinov  *
  vstavri...@gmail.com  
 ***
 
 

-- 
 --- 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#593534: lisaac-mode: global key bindings

2011-03-27 Thread PICCA Frédéric-Emmanuel
Hello kevin,

I know nothing about elisp so if you could provide a patch I would apply it with
great pleasure. I will propagate it also to the upstream.

thanks

Frederic



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



Bug#619804: [epiphany-browser] The file *.tar.gz dowloaded often is corrupted

2011-03-27 Thread Giuseppe Bartucci

Package: epiphany-browser
Version: 2.30.6-1
Severity: normal

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


--- System information. ---
Architecture: amd64
Kernel: Linux 2.6.38

Debian Release: 6.0.1
500 stable www.debian-multimedia.org
500 stable security.debian.org
500 stable ftp.it.debian.org
500 squeeze-updates ftp.it.debian.org
100 squeeze-backports backports.debian.org

--- Package information. ---
Depends (Version) | Installed
===-+-==
epiphany-browser-data (= 2.30) | 2.30.6-1
epiphany-browser-data ( 2.31) | 2.30.6-1
libavahi-client3 (= 0.6.16) | 0.6.27-2+squeeze1
libavahi-common3 (= 0.6.16) | 0.6.27-2+squeeze1
libavahi-gobject0 (= 0.6.22) | 0.6.27-2+squeeze1
libc6 (= 2.7) | 2.11.2-10
libcairo2 (= 1.2.4) | 1.8.10-6
libdbus-1-3 (= 1.0.2) | 1.2.24-4
libdbus-glib-1-2 (= 0.88) | 0.88-2.1
libgconf2-4 (= 2.27.0) | 2.28.1-6
libgirepository1.0-0 (= 0.6.3) | 0.6.14-1+b1
libglib2.0-0 (= 2.24.0) | 2.24.2-1
libgnome-keyring0 (= 2.26.0) | 2.30.1-1
libgtk2.0-0 (= 2.20.0) | 2.20.1-2
libice6 (= 1:1.0.0) | 2:1.0.6-2
libnotify1 (= 0.5.0) | 0.5.0-2
libnotify1-gtk2.10 |
libnspr4-0d (= 1.8.0.10) | 4.8.6-1
libnss3-1d (= 3.12.0~1.9b1) | 3.12.8-1+squeeze1
libpango1.0-0 (= 1.18.0) | 1.28.3-1+squeeze2
libseed0 (= 2.30.0) | 2.30.0-1+b1
libsm6 | 2:1.1.1-1
libsoup-gnome2.4-1 (= 2.29.91) | 2.30.2-1
libsoup2.4-1 (= 2.26.1) | 2.30.2-1
libwebkit-1.0-2 (= 1.2.2) | 1.2.7-0+squeeze1
libx11-6 | 2:1.3.3-4
libxml2 (= 2.7.4) | 2.7.8.dfsg-2
libxslt1.1 (= 1.1.25) | 1.1.26-6
gnome-icon-theme (= 2.9.90) | 2.30.3-2
dbus-x11 | 1.2.24-4
iso-codes | 3.23-1


Recommends (Version) | Installed
==-+-===
yelp | 2.30.1+webkit-1
evince | 2.30.3-2
ca-certificates | 20090814+nmu2


Suggests (Version) | Installed
==-+-===
epiphany-extensions | 2.30.2-1







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



Bug#619805: [linux-2.6] No irq handler for vector (irq -1) after suspend-to-disk

2011-03-27 Thread Kolja Brix
Package: linux-2.6
Version: 2.6.32-31
Severity: important

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

Since the last kernel update in Debian Squeeze, the following bug occurs:

After a suspend-to-disk operation, the kernel every 5 minutes reports the 
following error:

kernel:[34668.309779] do_IRQ: 0.74 No irq handler for vector (irq -1)

The error does not occur, when the system is freshly rebooted until the first 
suspend-to-disk. Neither did this error occur before the last update of the 
kernel package.


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: 6.0.1
  500 stable  www.debian-multimedia.org 
  500 stable  security.debian.org 
  500 stable  debian.netcologne.de 

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

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#619806: CVE-2010-3695: fix XSS

2011-03-27 Thread Steffen Joeris
Package: release.debian.org
Severity: important
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I'd like to upload a fix for imp4 to oldstable-proposed-updates. The fix
is regarding CVE-2010-3695[0]. I won't release a DSA for this issue
since it requires authentication to be exploited, but it should still be
fixed via ospu. Please let me know if you're fine with the upload.

Cheers,
Steffen

[0]: http://security-tracker.debian.org/tracker/CVE-2010-3695


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

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

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

iEYEARECAAYFAk2PDGsACgkQ62zWxYk/rQfEVwCgjOesAA8urfIgmhjEVOduREB1
aQ8An2ix1mUy3RiXeT4QFYHfuQmj6maz
=gozt
-END PGP SIGNATURE-
diff -u imp4-4.2/debian/changelog imp4-4.2/debian/changelog
--- imp4-4.2/debian/changelog
+++ imp4-4.2/debian/changelog
@@ -1,3 +1,11 @@
+imp4 (4.2-4lenny3) oldstable-proposed-updates; urgency=high
+
+  * Non-maintainer upload by the security team
+  * Fix cross-site scripting via the fm parameters (Closes: #598584)
+Fixes: CVE-2010-3695
+
+ -- Steffen Joeris wh...@debian.org  Sun, 27 Mar 2011 20:42:56 +1100
+
 imp4 (4.2-4lenny2) stable; urgency=low
 
   * Backport patches from Horde CVS (http://bugs.horde.org/ticket/8836) to turn
only in patch2:
unchanged:
--- imp4-4.2.orig/fetchmailprefs.php
+++ imp4-4.2/fetchmailprefs.php
@@ -164,12 +164,12 @@
 $t-set('to_edit', ($to_edit !== null));
 if ($t-get('to_edit')) {
 $t-set('edit_account', intval($to_edit));
-$t-set('fmid', $fm_account-getValue('id', $to_edit));
-$t-set('fmusername', $fm_account-getValue('username', $to_edit));
-$t-set('fmpassword', $fm_account-getValue('password', $to_edit));
-$t-set('fmserver', $fm_account-getValue('server', $to_edit));
+	$t-set('fmid', htmlspecialchars($fm_account-getValue('id', $to_edit)));
+	$t-set('fmusername', htmlspecialchars($fm_account-getValue('username', $to_edit)));
+	$t-set('fmpassword', htmlspecialchars($fm_account-getValue('password', $to_edit)));
+	$t-set('fmserver', htmlspecialchars($fm_account-getValue('server', $to_edit)));
 if ($t-get('allowfolders')) {
-$t-set('fmrmailbox', $fm_account-getValue('rmailbox', $to_edit));
+	$t-set('fmrmailbox', htmlspecialchars($fm_account-getValue('rmailbox', $to_edit)));
 }
 $t-set('fmonlynew', $fm_account-getValue('onlynew', $to_edit));
 $t-set('fmmarkseen', $fm_account-getValue('markseen', $to_edit));


Bug#619807: calibre: missing build depedency on libboost1.42-dev

2011-03-27 Thread Cyril Chaboisseau
Package: calibre
Version: 0.7.50+dfsg-1
Severity: serious
Justification: fails to build from source

when building the calibre package, there is an error concerning a
missing boost/config.hpp file

there should be a builddep on libboost1.42-dev (or maybe libboost-dev)
in the debian/control file to correct the error and allow a proper
building of the package


thanks

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (99, 'experimental'), (9, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages calibre depends on:
ii  calibre-bin0.7.50+dfsg-1 e-book converter and library manag
ii  imagemagick8:6.6.0.4-3   image manipulation programs
ii  poppler-utils  0.12.4-1.2PDF utilitites (based on libpopple
ii  python 2.6.6-12  interactive high-level object-orie
ii  python-beautifulsoup   3.2.0-1   error-tolerant HTML parser for Pyt
ii  python-cherrypy3   3.1.2-1   Python web development framework -
ii  python-cssutils0.9.7~b2-2CSS Cascading Style Sheets parser 
ii  python-dateutil1.4.1-3   powerful extensions to the standar
ii  python-dbus0.83.1-1  simple interprocess messaging syst
ii  python-django-tagging  0.3.1-1   A generic tagging application for 
ii  python-encutils0.9.7~b2-2Encoding detection collection for 
ii  python-imaging 1.1.7-2   Python Imaging Library
ii  python-lxml2.3-0.1   pythonic binding for the libxml2 a
ii  python-mechanize   0.1.11-1.1stateful programmatic web browsing
ii  python-pkg-resources   0.6.15-1  Package Discovery and Resource Acc
ii  python-pyparsing   1.5.2-2   Python parsing module
ii  python-pypdf   1.12-3PDF toolkit implemented solely in 
ii  python-pythonmagick0.9.1-3+b1Object-oriented Python interface t
ii  python-qt4 4.8.3-1   Python bindings for Qt4
ii  python-routes  1.12.3-1  Routing Recognition and Generation
ii  ttf-liberation 1.06.0.20100721-1 Fonts with the same metrics as Tim
ii  xdg-utils  1.1.0~rc1-2   desktop integration utilities from

Versions of packages calibre recommends:
ii  python-dnspython  1.8.0-1DNS toolkit for Python

calibre 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#618748: gcc-4.5: Use insane amount of memory

2011-03-27 Thread Modestas Vainius
tags 618748 upstream fixed-upstream
forwarded 618748 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43058
thanks

Hello,

On penktadienis 18 Kovas 2011 09:59:38 Aurelien Jarno wrote:
 Since the switch to gcc-4.5, gcc uses insane amount of memory (on armel
 more than you can get on a 32-bit system) to build QEMU. It's a
 regression from gcc-4.4 and should be fixed by the following patches:
 
 http://gcc.gnu.org/ml/gcc-patches/2011-03/msg00193.html
 http://gcc.gnu.org/ml/gcc-patches/2011-03/msg00255.html

Unless I'm mistaken, this bug has been reported and fixed upstream. See above.

-- 
Modestas Vainius mo...@debian.org


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


Bug#619785: Please move logsave to sysvinit-utils

2011-03-27 Thread Carsten Hey
* Carsten Hey [2011-03-27 01:19 +0100]:
 Debian supports (or rather will probably support) three init systems:

  * systemd does not use logsave to save the fsck log if /var/log is not
mounted yet, but instead just pipes the stdout of fsck to syslog
which ends up in dmesg if syslog is not yet running (thanks to
whoever explained this in #systemd).

  * sysvinit and upstart depend on the package initscripts, which depends
on sysvinit-utils.

sysvinit-utils is Essential: yes, thus the above doesn't matter.



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



Bug#619808: [l10n] Updated Czech translation of netenv debconf messages

2011-03-27 Thread Miroslav Kure
Package: netenv
Severity: wishlist
Tags: l10n, patch

Hi,

in attachement there is updated Czech (cs.po) translation of
netenv debconf messages. Please include it with the package.

Thanks
-- 
Miroslav Kure
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: netenv\n
Report-Msgid-Bugs-To: ar...@debian.org\n
POT-Creation-Date: 2006-12-17 14:34+0100\n
PO-Revision-Date: 2011-03-27 12:25+0200\n
Last-Translator: Miroslav Kure ku...@debian.cz\n
Language-Team: Czech debian-l10n-cz...@lists.debian.org\n
Language: cs\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../templates:1001
msgid Upon upgrade, ask again to renew configuration?
msgstr Zeptat se při aktualizaci na obnovení nastavení?

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
You've answered that you want to keep your current configuration this time. 
Because the automatic configuration may get new features, you will be asked 
the question again when you upgrade netenv the next time.
msgstr 
Tentokrát jste odpověděli, že chcete zachovat stávající nastavení. Protože 
však může automatické nastavení získat nové vlastnosti, budete při příští 
aktualizaci balíku netenv znovu dotázáni.

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
If, however, you want debconf to remember your decision and never touch your 
configuration, you can specify that now, by not choosing this option.
msgstr 
Chcete-li však, aby si debconf pamatoval vaše rozhodnutí a nikdy už 
nastavení neměnil, můžete nyní odpovědět záporně.

#. Type: boolean
#. Description
#: ../templates:2001
msgid Keep existing configuration?
msgstr Zachovat stávající nastavení?

#. Type: boolean
#. Description
#: ../templates:2001
msgid 
It appears that you already have configured netenv for ${NODE}. Now you can 
select whether you want to keep the actual configuration or whether netenv 
setup should create a new one, overriding the old file.
msgstr 
Zdá se, že jste již netenv pro ${NODE} nastavili. Nyní si můžete vybrat, zda 
chcete zachovat stávající nastavení, nebo zda má netenv vytvořit nové (a 
přepsat tak starý soubor).

#. Type: error
#. Description
#: ../templates:3001
msgid Not configuring netenv: No parseable configuration found
msgstr Nenastavuji netenv: Nebylo nalezeno použitelné nastavení

#. Type: error
#. Description
#: ../templates:3001
msgid 
The netenv package has tried to set up one network environment based on your 
current network settings. However, it didn't find a configuration that it 
understands - neither in /etc/network/interfaces, nor in /etc/pcmcia/network.
opts.
msgstr 
Balík netenv se pokusil nastavit síťové prostředí na základě stávajícího 
nastavení sítě, ovšem nenašel nastavení, kterému by rozuměl (ani v /etc/
network/interfaces, ani v /etc/pcmcia/network.opts).

#. Type: error
#. Description
#. Type: error
#. Description
#: ../templates:3001 ../templates:4001
msgid netenv will be disabled. Please refer to the documentation.
msgstr netenv bude zakázán, odkazujeme vás na dokumentaci.

#. Type: error
#. Description
#: ../templates:4001
msgid Not configuring netenv: Duplicate configuration found
msgstr Nenastavuji netenv: Bylo nalezeno duplicitní nastavení

#. Type: error
#. Description
#: ../templates:4001
msgid 
The netenv package has tried to set up one network environment based on your 
current network settings. However, it found configuration data at two 
places, /etc/network/interfaces and /etc/pcmcia/network.opts. Both 
configuration variants have to be treated differently by netenv, but the 
installation script cannot decide.
msgstr 
Balík netenv se pokusil nastavit síťové prostředí na základě stávajícího 
nastavení sítě, ovšem našel nastavení na dvou místech (/etc/network/
interfaces a /etc/pcmcia/network.opts). netenv zpracovává obě varianty 
různým způsobem a neumí se rozhodnout.

#. Type: select
#. Choices
#: ../templates:5001
msgid Use current settings, Disable for now
msgstr Použít stávající nastavení, Prozatím zakázat

#. Type: select
#. Description
#: ../templates:5002
msgid Configuration options:
msgstr Možnosti nastavení:

#. Type: select
#. Description
#: ../templates:5002
msgid 
netenv has checked your current network settings. It seems it can set up one 
working networking environment configuration for you, based on the settings 
you currently use. To be able to switch environments, you have to create 
additional configurations along this example.
msgstr 
netenv 

Bug#619573: xen-linux-system-2.6.32-5-xen-amd64: cpufreq scaling in Dom0 does not work

2011-03-27 Thread Michael Kuron
Seems like this is a regression bug in the kernel:
I installed linux-{image,ubuntu-modules}-2.6.24-28-xen from Ubuntu 8.04 and 
cpufreq=dom0-kernel worked exactly as expected (i.e. the Dom0 kernel does 
cpufreq scaling in exactly the same way it would if it were running natively).
I also tried linux-{image,modules}-2.6.26-2-xen-amd64 from Debian Lenny, but 
unfortunately that one lacks the cpufreq modules.

Apparently, the bug was introduced somewhere between 2.6.25 and 2.6.31: 
http://lists.xensource.com/archives/html/xen-devel/2010-02/msg00354.html

Which other kernel versions should I test to help narrow this down?

  The cpufreq=dom0-kernel option is what I am actually interested in
  because cpufreq=xen is not supported on older AMD CPUs. However, I
  have not been able to actually get it to work yet.
 
 OK, I'm reopening the bug, but I'm afraid I'm not likely to spend time
 investigating it.
-- 
GMX DSL Doppel-Flat ab 19,99 Euro/mtl.! Jetzt mit 
gratis Handy-Flat! http://portal.gmx.net/de/go/dsl



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



Bug#619756: zim: Deleting note, can delete permamently whole directory of user files

2011-03-27 Thread Witold Baryluk
On 03-26 21:27, Raphael Hertzog wrote:
 severity 619756 wishlist
 forwarded 619756 https://bugs.launchpad.net/zim/+bug/297273
 retitle 619756 zim: should have a trash for deleted notes and files
 thanks
 
 On Sat, 26 Mar 2011, Witold Baryluk wrote:
  Severity: critical
  Justification: causes serious data loss
 
 No, this severity is not justified. And given the answer I just change
 this bug report in a wishlist request for the trash feature.


Why it is not justified?

It makes seroius data loss, and is not fixed in stable.

It is a first time in my more than 10 years of using Debian,
that I see such big and devastating bug in any package,
in any of Debian's distributions. I never expirienced
such big data loss becasue of program error.

 
  After setting up zim folder to some preexisting folder,
  I made a note, then delete it. All files in the folder momentally disapered.
  ALL. Whole directory just was deleted.
 
 I never mix random data with my zim notes, and it's strange that you made
 this unfortunate choice.

So why zim allowed me to do this? It looks so user-friendly,
and aims at it, so should behave much more userfriendly also.

You do not understand maybe, tha I deleted single note in zim, and zim deleted
whole directory from file system, with all existing non-zim files.
It was just a third minute, I was running zim.
Anybody can, any second, do the same unfortunete choice if she/he
is using stable.

Please revert severity and subject.
Please be kind, and make future users of zim in stable
do not do the same error. One of the simplest fixes is to not use
recursive deletion in zim. Other is to display list before actually
removing files. Without this measures zim should not be in stable.

Regards,
Witek

-- 
Witold Baryluk
JID: witold.baryluk // jabster.pl


signature.asc
Description: Digital signature


Bug#619640: Architecture field dissapered few days ago

2011-03-27 Thread Witold Baryluk
On 03-26 06:30, Christian PERRIER wrote:
 Quoting Witold Baryluk (bary...@smp.if.uj.edu.pl):
  Package: debian-installer
  Severity: normal
  
  Well, this change beetween 2011-03-24 and 2011-03-24 in Archive,
  explains a problem
 
 With the FTPmaster meeting and work goind on, I expect this might be
 related.
 
 

Manually appending Architecture: amd64 line in Release file in a Debian
mirror I use (after contacting its administrator), made debian-installer
work without problem and proceed without any error, and perform installation
without any other problems.

Hope, it will be fixed soon in archive.

-- 
Witold Baryluk


signature.asc
Description: Digital signature


Bug#619808: [l10n] Updated Czech translation of netenv debconf messages

2011-03-27 Thread Christian PERRIER
Quoting Miroslav Kure (ku...@upcase.inf.upol.cz):
 Package: netenv
 Severity: wishlist
 Tags: l10n, patch
 
 Hi,
 
 in attachement there is updated Czech (cs.po) translation of
 netenv debconf messages. Please include it with the package.

I probably sent the wrong POT file when sending the call for
translation. So, your translation is not complete. Could you update
it?




cs.po
Description: application/gettext


signature.asc
Description: Digital signature


Bug#568644: fuse-utils: wrong group for device at install time

2011-03-27 Thread Witold Baryluk
Hi,

i was installing sid yestarday on separate machine
and after installing sshfs, which fulled fuse-utils,
i had something like this

0600 root root /dev/fuse

(yes crw---)

It is probably releated to udev.

Would be nice to be fixed, so users do not need to manually chown/chmod
or reboot system. (it is already problem, as user needs to relogin
after adding himself to fuse group, or use su -).

Regards,
Witek

-- 
Witold Baryluk


signature.asc
Description: Digital signature


Bug#619749: netenv: [INTL:fi] Finnish translation of the debconf templates

2011-03-27 Thread Christian PERRIER
Quoting Esko Arajärvi (e...@iki.fi):
 Package: netenv
 Severity: wishlist
 Tags: l10n patch
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Please include attached translation fi.po to the package.

I'm afraid I did not send the right POT file, so resyncing with the
correct file.



fi.po
Description: application/gettext


signature.asc
Description: Digital signature


Bug#614585: [choqok] application crashes on exit.

2011-03-27 Thread Ximo Baldó i Soriano
Package: choqok
Version: 1.0+git1.0.1-1~pre1

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

Choqok crashes on exit with backtrace from console:

choqok(24569)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
choqok(24569) Choqok::UI::QuickPost::~QuickPost:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) Choqok::PluginManager::slotPluginDestroyed:
choqok(24569) ChoqokApplication::~ChoqokApplication:
choqok(24569) Choqok::MediaManager::~MediaManager:
choqok(24569) Choqok::AccountManager::~AccountManager:
choqok(24569) Choqok::PluginManagerPrivate::~PluginManagerPrivate: Destructing 
plugin manager without going through the shutdown process! Backtrace is:  
[
0: /usr/lib/libkdecore.so.5(kRealBacktrace(int)+0x41) [0xb6e4b4b1]
1: /usr/lib/libchoqok.so.1(+0x2a5aa) [0xb70705aa]
2: /usr/lib/libchoqok.so.1(+0x23a6a) [0xb7069a6a]
3: /usr/lib/libchoqok.so.1(+0x29b5b) [0xb706fb5b]
4: /lib/i686/cmov/libc.so.6(+0x2f2bf) [0xb5bb82bf]
5: /lib/i686/cmov/libc.so.6(+0x2f32f) [0xb5bb832f]
6: /lib/i686/cmov/libc.so.6(__libc_start_main+0xee) [0xb5b9fc7e]
7: choqok() [0x804f701]
]
 

Same behaviour with version from sid's repos  last git version on Sunday 
03/27,

It works correctly with an account from identi.ca and an account from 
OpenDesktop. Starts crashing on exit with an Identi.ca, OpenDesktop, and 
Twitter account.

When I start it again, it fetches all replies and inbox timeline's dents and 
last session's home timeline dents as unread, despite marked it as read and 
configured for mark as read on exit and minimize to systray...


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

Debian Release: wheezy/sid
  900 unstablewww.debian-multimedia.org 
  900 unstableftp.debian.org 
  800 experimentalftp.debian.org 
  500 stable  people.debian.org 
  500 sid packages.enlightenment.org 
  101 experimental-snapshots qt-kde.debian.net 

--- Package information. ---
Depends   (Version) | Installed
===-+-
kdebase-runtime | 4:4.5.3-0r1
libc6(= 2.1.3) | 2.11.2-11
libgcc1(= 1:4.1.1) | 1:4.5.2-7
libkdecore5 (= 4:4.4.4-2~) | 4:4.5.3-0r1
libkdeui5  (= 4:4.4.0) | 4:4.5.3-0r1
libkhtml5  (= 4:4.3.4) | 4:4.5.3-0r1
libkio5(= 4:4.3.4) | 4:4.5.3-0r1
libkjsapi4 (= 4:4.3.4) | 4:4.5.3-0r1
libknotifyconfig4  (= 4:4.3.4) | 4:4.5.3-0r1
libkparts4 (= 4:4.3.4) | 4:4.5.3-0r1
libkutils4 (= 4:4.3.4) | 4:4.5.3-0r1
libqjson0   | 0.7.1-1
libqoauth1  | 1.0.1-1
libqt4-dbus(= 4:4.5.3) | 4:4.7.2-3
libqt4-network (= 4:4.5.3) | 4:4.7.2-3
libqt4-svg (= 4:4.5.3) | 4:4.7.2-3
libqt4-xml (= 4:4.5.3) | 4:4.7.2-3
libqtcore4 (= 4:4.6.1) | 4:4.7.2-3
libqtgui4  (= 4:4.5.3) | 4:4.7.2-3
libstdc++6   (= 4.1.1) | 4.5.2-7
libqca2-plugin-ossl | 0.1~20070904-4


Package's Recommends field is empty.

Package's Suggests field is empty.



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


Bug#619809: yatex: User should select whether to use

2011-03-27 Thread Takaya Yamashita
Package: yatex
Version: 1.74+dfsg1-1
Severity: wishlist

When the system is installed YaTeX, all users are forced to use YaTeX.
I think the individual user should select whether to use.
So debian/yatex-init.el should only set the load path.

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

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

Versions of packages yatex depends on:
ii  emacs-snapshot [emacsen]  1:20110224-1   The GNU Emacs editor (development
ii  emacs23 [emacsen] 23.2+1-7   The GNU Emacs editor (with GTK+ us
ii  install-info  4.13a.dfsg.1-6 Manage installed documentation in

Versions of packages yatex recommends:
ii  ptex-bin3.1.11+0.04b-0.1 The ASCII pTeX binary files
pn  texlive-bin none   (no description available)

Versions of packages yatex suggests:
ii  epiphany-browser [www-browser 2.30.6-1   Intuitive GNOME web browser
pn  gimageviewnone (no description available)
ii  iceweasel [www-browser]   4.0-1  Web browser based on Firefox
pn  jbibtex   none (no description available)
pn  jweblint | weblintnone (no description available)
ii  mendexk   2.6e-3 a replacement for makeindex with m
ii  opera [www-browser]   11.01.1190 A fast and secure web browser and
ii  w3m [www-browser] 0.5.3-2WWW browsable pager with excellent

-- 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#619810: softhsm: leaves behind statoverride line after purge

2011-03-27 Thread Jonas Smedegaard
Package: softhsm
Severity: critical
Justification: breaks unrelated software

After installation of softshm and purging again, dpkg fails to work,
spitting out the following:

Reading changelogs... Done
Extracting templates from packages: 100%
Preconfiguring packages ...
dpkg: unrecoverable fatal error, aborting:
 syntax error: unknown group 'softhsm' in statoverride file
E: Sub-process /usr/bin/dpkg returned an error code (2)
A package failed to install.  Trying to recover:
Press return to continue.


Looking around I found this:

root@auryn:~# grep soft /var/lib/dpkg/statoverride
root softhsm 2770 /var/lib/softhsm
root softhsm 750 /etc/softhsm
root softhsm 640 /etc/softhsm/softhsm.conf


...and (since the package is purged) this:

root@auryn:~# ls /var/lib/softhsm /etc/softhsm
ls: cannot access /var/lib/softhsm: No such file or directory
ls: cannot access /etc/softhsm: No such file or directory


Trying to fix through tools failed:

root@auryn:~# dpkg-statoverride --remove --force /var/lib/softhsm /etc/softhsm
dpkg-statoverride: unrecoverable fatal error, aborting:
 syntax error: unknown group 'softhsm' in statoverride file


...but simply removing the lines from /var/lib/dpkg/statoverride worked.


 - Jonas


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

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

Versions of packages softhsm depends on:
pn  libbotan-1.8.2none (no description available)
ii  libc6 2.11.2-13  Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.5.2-7  GCC support library
ii  libsqlite3-0  3.7.5-1SQLite 3 shared library
ii  libstdc++64.5.2-7The GNU Standard C++ Library v3
pn  softhsm-commonnone (no description available)

softhsm recommends no packages.

softhsm suggests no packages.



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



Bug#619808: [l10n] Updated Czech translation of netenv debconf messages

2011-03-27 Thread Miroslav Kure
On Sun, Mar 27, 2011 at 12:43:55PM +0200, Christian PERRIER wrote:
 
 I probably sent the wrong POT file when sending the call for
 translation. So, your translation is not complete. Could you update
 it?

Updated :-).

Cheers
-- 
Miroslav Kure
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: netenv\n
Report-Msgid-Bugs-To: net...@packages.debian.org\n
POT-Creation-Date: 2010-02-09 19:36+\n
PO-Revision-Date: 2011-03-27 12:53+0200\n
Last-Translator: Miroslav Kure ku...@debian.cz\n
Language-Team: Czech debian-l10n-cz...@lists.debian.org\n
Language: cs\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../templates:1001
msgid Upon upgrade, ask again to renew configuration?
msgstr Zeptat se při aktualizaci na obnovení nastavení?

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
You've answered that you want to keep your current configuration this time. 
Because the automatic configuration may get new features, you will be asked 
the question again when you upgrade netenv the next time.
msgstr 
Tentokrát jste odpověděli, že chcete zachovat stávající nastavení. Protože 
však může automatické nastavení získat nové vlastnosti, budete při příští 
aktualizaci balíku netenv znovu dotázáni.

#. Type: boolean
#. Description
#: ../templates:1001
msgid 
If, however, you want debconf to remember your decision and never touch your 
configuration, you can specify that now, by not choosing this option.
msgstr 
Chcete-li však, aby si debconf pamatoval vaše rozhodnutí a nikdy už 
nastavení neměnil, můžete nyní odpovědět záporně.

#. Type: boolean
#. Description
#: ../templates:2001
msgid Keep existing configuration?
msgstr Zachovat stávající nastavení?

#. Type: boolean
#. Description
#: ../templates:2001
msgid 
It appears that you already have configured netenv for ${NODE}. Now you can 
select whether you want to keep the actual configuration or whether netenv 
setup should create a new one, overriding the old file.
msgstr 
Zdá se, že jste již netenv pro ${NODE} nastavili. Nyní si můžete vybrat, zda 
chcete zachovat stávající nastavení, nebo zda má netenv vytvořit nové (a 
přepsat tak starý soubor).

#. Type: error
#. Description
#: ../templates:3001
msgid Not configuring netenv: No parseable configuration found
msgstr Nenastavuji netenv: Nebylo nalezeno použitelné nastavení

#. Type: error
#. Description
#: ../templates:3001
msgid 
The netenv package has tried to set up one network environment based on your 
current network settings. However, it didn't find a configuration that it 
understands - neither in /etc/network/interfaces, nor in /etc/pcmcia/network.
opts.
msgstr 
Balík netenv se pokusil nastavit síťové prostředí na základě stávajícího 
nastavení sítě, ovšem nenašel nastavení, kterému by rozuměl (ani v /etc/
network/interfaces, ani v /etc/pcmcia/network.opts).

#. Type: error
#. Description
#. Type: error
#. Description
#: ../templates:3001 ../templates:4001
msgid netenv will be disabled. Please refer to the documentation.
msgstr netenv bude zakázán, odkazujeme vás na dokumentaci.

#. Type: error
#. Description
#: ../templates:4001
msgid Not configuring netenv: Duplicate configuration found
msgstr Nenastavuji netenv: Bylo nalezeno duplicitní nastavení

#. Type: error
#. Description
#: ../templates:4001
msgid 
The netenv package has tried to set up one network environment based on your 
current network settings. However, it found configuration data at two 
places, /etc/network/interfaces and /etc/pcmcia/network.opts. Both 
configuration variants have to be treated differently by netenv, but the 
installation script cannot decide.
msgstr 
Balík netenv se pokusil nastavit síťové prostředí na základě stávajícího 
nastavení sítě, ovšem našel nastavení na dvou místech (/etc/network/
interfaces a /etc/pcmcia/network.opts). netenv zpracovává obě varianty 
různým způsobem a neumí se rozhodnout.

#. Type: select
#. Choices
#: ../templates:5001
#| msgid Use current settings, Disable for now
msgid Use current settings
msgstr Použít stávající nastavení

#. Type: select
#. Choices
#: ../templates:5001
msgid Disable for now
msgstr Prozatím zakázat

#. Type: select
#. Description
#: ../templates:5002
msgid Configuration options:
msgstr Možnosti nastavení:

#. Type: select
#. Description
#: ../templates:5002
msgid 
netenv has checked your current network settings. It seems it can set up one 
working networking environment configuration for you, based on 

Bug#587313: another request for upgrade

2011-03-27 Thread Peter Palfrader
On Sun, 27 Mar 2011, Andriy Senkovych wrote:

 Well, it's just that I asked Piotr to review since Matthias was
 unavailable. In the end I've got the packages reviewed by Matthias
 himself on 18th of March and send an updated version of the packages
 on that day too. They are available from the mentors page[1,2]. The
 only thing needed to add is upstart init scripts. I haven't used this
 system at all so need a bit more time to write them. But from the
 Matthias' words this is not critical for a first package release.
 
 [1]: http://mentors.debian.net/debian/pool/main/b/buildbot
 [2]: http://mentors.debian.net/debian/pool/main/b/buildbot-slave

These FTBFS without python-twisted-mail and python-twisted-web installed
at build time.

-- 
   |  .''`.   ** Debian **
  Peter Palfrader  | : :' :  The  universal
 http://www.palfrader.org/ | `. `'  Operating System
   |   `-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#619811: updates silently ignored

2011-03-27 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: aptitude
Version: 0.6.3-3.2

My sources.list contained

deb http://mysite.de/debian unstable main contrib non-free

The contrib and non-free repositories are not defined in
my package database. aptitude update didn't print an error message,
but silently fell back to an old Packages file.


Regards

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk2PHXAACgkQUTlbRTxpHjfkkACdHnUuoaO9gUZFMoCYK1di+AA1
r+UAn3X2hs5kkYwxCXsYuMNxNwtNGlbw
=nRMM
-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#618656: binutils-z80: FTBFS

2011-03-27 Thread Joost Yervante Damad
On Saturday 26 March 2011 22:21:18 Hector Oron wrote:
 Hi,
 
 2011/3/26 Joost Yervante Damad and...@debian.org:
  is this new syntax already supported now then?
 
 In shortly ftp masters should send an update to debian-devel-announce
 explaining it.
 
  Just thinking about it a little more, that syntax would give something
  like:
  
  Build-using: bunutils-source(= 2.21.0.20110322-1)
  
  while actually for my purpose something like:
  
  Build-using: bunutils-source(= 2.21.0,  2.21.1)
  
  Is that also going to be supported?
 
 You can adjust your build-depends to that, but build-using just
 ensures the source tarball is kept in the archive (it is really a
 signal to ftp-masters or the main archive) for GPL compliancy.
 

Ok, now all is clear! Thanks for taking the time explaining.

Joost



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



Bug#619712: opensync-plugin-evolution: synchronization fails due to change in evolution-backend

2011-03-27 Thread Andreas Mück
I did:

apt-get source opensync-plugin-evolution
aptitude install libebook1.2-dev libecal1.2-dev libedata-book1.2-dev
libedata-cal1.2-dev libopensync0-dev
cd libopensync-plugin-evolution2-0.22/
dpkg-buildpackage

Attached is my sources.list.

Andreas


Am Samstag, den 26.03.2011, 19:04 +0100 schrieb Michael Banck:
 On Sat, Mar 26, 2011 at 12:58:11PM +0100, Andreas Mueck wrote:
  Synchronization fails with messages like Cannot get cal from factory. The
  problem was solved by downloading the source and building a new binary for
  wheezy.
 
 Which source exactly?
 
 
 Michael

#
# deb cdrom:[Debian GNU/Linux 4.0 r0 _Etch_ - Official i386 DVD Binary-1 20070407-11:40]/ etch contrib main

# deb cdrom:[Debian GNU/Linux 4.0 r0 _Etch_ - Official i386 DVD Binary-2 20070407-11:40]/ etch contrib main
# deb cdrom:[Debian GNU/Linux 4.0 r0 _Etch_ - Official i386 DVD Binary-1 20070407-11:40]/ etch contrib main

# Line commented out by installer because it failed to verify:
deb http://security.debian.org/ squeeze/updates main contrib non-free

deb ftp://ftp.de.debian.org/debian/ squeeze main contrib non-free
deb ftp://ftp.de.debian.org/debian/ testing main contrib non-free
#deb ftp://ftp.de.debian.org/debian/ unstable main contrib non-free
# Line commented out by installer because it failed to verify:
deb-src http://security.debian.org/ squeeze/updates main
deb-src ftp://ftp.de.debian.org/debian testing main
deb-src ftp://ftp.de.debian.org/debian stable main

# deb http://jonnylamb.com/debian/ ./
# deb http://http.us.debian.org/debian/ lenny main



Bug#619812: bootchart-view: Java exception in bootchart when producing PNG or EPS files

2011-03-27 Thread Frank A. Kingswood
Package: bootchart-view
Version: 0.10~svn407-3.3
Severity: normal

Without options bootchart attempts to produce a PNG file.
This fails with a Java exception:

Parsing /var/log/bootchart.tgz
Exception in thread main java.lang.NullPointerException
at sun.awt.FontConfiguration.getVersion(FontConfiguration.java:1191)
at 
sun.awt.FontConfiguration.readFontConfigFile(FontConfiguration.java:164)
at sun.awt.FontConfiguration.init(FontConfiguration.java:89)
at sun.awt.motif.MFontConfiguration.init(MFontConfiguration.java:50)
at 
sun.awt.X11GraphicsEnvironment.createFontConfiguration(X11GraphicsEnvironment.java:941)
at 
sun.java2d.SunGraphicsEnvironment$2.run(SunGraphicsEnvironment.java:246)
at java.security.AccessController.doPrivileged(Native Method)
at 
sun.java2d.SunGraphicsEnvironment.init(SunGraphicsEnvironment.java:162)
at 
sun.awt.X11GraphicsEnvironment.init(X11GraphicsEnvironment.java:252)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:532)
at java.lang.Class.newInstance0(Class.java:372)
at java.lang.Class.newInstance(Class.java:325)
at 
java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:82)
at java.awt.image.BufferedImage.createGraphics(BufferedImage.java:1152)
at org.bootchart.renderer.ImageRenderer.render(Unknown Source)
at org.bootchart.renderer.PNGRenderer.render(Unknown Source)
at org.bootchart.Main.render(Unknown Source)
at org.bootchart.Main.main(Unknown Source)

When running with --format eps the same exception happens.
When running with --format svg the output is produced without error.

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

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

Versions of packages bootchart-view depends on:
ii  default-jre [java2-runti 1:1.6-40Standard Java or Java compatible R
ii  libcommons-cli-java  1.2-3   API for working with the command l
ii  libcommons-compress-java 1.0-1   Java API for working with tar, zip
ii  openjdk-6-jre [java2-run 6b18-1.8.7-2OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre [java2-run 6.24-1~squeeze1 Sun Java(TM) Runtime Environment (

Versions of packages bootchart-view recommends:
ii  bootchart0.10~svn407-3.3 Boot process performance analyser

Versions of packages bootchart-view suggests:
pn  gimp-svg  none (no description available)
pn  gqviewnone (no description available)
pn  librsvg2-bin  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#618016: lvremove sometimes fails to remove snapshot volumes

2011-03-27 Thread Michael Goetze
found 618016 2.02.84-2
thanks

On 03/13/2011 02:53 PM, Bastian Blank wrote:
 This is not the latest version. Please upgrade.

Easily reproduced (first try) with the version in wheezy/sid.



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



Bug#618001: lintian: maintainer-script-lacks-debhelper-token is sometimes not reported when it should

2011-03-27 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

tags 618001 + unreproducible
thanks

On 2011-03-13 10:57, Raphaël Hertzog wrote:
 Package: lintian
 Version: 2.5.0~rc1
 Severity: normal
 
 I'm building libapache2-mod-qos_9.54-1.dsc. When I do a full build I get
 this:
 $ debuild
 [...]
 Now running lintian...
 N: 1 tag overridden (1 error)
 Finished running lintian.
 
 When I do a source-only build I get this:
 $ debuild -S
 [...]
 Now running lintian...
 W: libapache2-mod-qos source: maintainer-script-lacks-debhelper-token 
 debian/libapache2-mod-qos.postinst
 W: libapache2-mod-qos source: maintainer-script-lacks-debhelper-token 
 debian/libapache2-mod-qos.prerm
 Finished running lintian.
 
 This is obviously not normal.
 

Hi

I cannot reproduce the warnings when using debuild -S (-us -uc) on the
version of this package in unstable with the lintian from git.
Admittedly I have not tried to combine this with a full build.

~Niels
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJNjyIZAAoJEAVLu599gGRCGIYQAJcf8uyb/SLN2Z2oEi5a4NFA
Fq1fT2H1lHIIySacVwDpDPNQJwVbRuwGCGXazQyxz4BMlDSFpXwyQCPo8eVge4Vq
PSJTWqKFWyTpsSpWjXmmUiND7VX2vgYp3tLACKAGF4btKBIAE3UrEga/EYu0RD9y
4mKNZGxf7d34S8lpSb4i+kkd9XuNFQMMlclRYuBZR8VwCTz87iwWmVPUiJuk9SYv
raQJb2bKuHj5Bmx35cV9semPDXYGbTxVxuoWEdpQzFnnh9PyxlxVXUtMK0PQ6gOg
NcEztWZuhc9P5KGZQpkA78xxZi6nNfTRgI84udYJX856CuMRv79lsDo28YSLCRl+
ok4Klifm2eZq5ERcxHiXl10Fzcr/G8qUjeL0Lo/RVCDSEOZUSKKMJZPtbZO092vI
lH1dixclN2xmJ1vWXNrGZw8iu02BndaOt/HoMkdM1eoDZ2yjj0WOqXKDQlLy6L6N
31QETrHjjyZlAPMHyLuZOjeJE8lS8VBLhuf9JC0TlsbuR06aT74370xGfbHY+DOj
yHSzQDkhiBYFZcb8XtmeM7GK3J0FiBJPbGwymQ7/UycM4L1HdY0ulJTJxcTnwrjw
MpYRwTYvrG5+SWc4+qLROWrYHjjwhrSujGSrChYnefFyKnoPSDRiR4+RxJVTAMlG
Nc/QOoUslaquGLXQoTHe
=7RXi
-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#618901: coolkey: Doesn't work with Iceweasel or Epiphany

2011-03-27 Thread Ludovic Rousseau

Le 19/03/11 14:14, Marcelo E. Magallon a écrit :

Package: coolkey
Version: 1.1.0-8
Severity: normal

  This is probably a grave bug, but I want to confirm that there's
  at least someone out there that can use the package.

  After installing the epiphany-extensions package and enabling
  the Certificates extension, going to the tools menu and
  clicking on Manage Security Devices produces no dialog.

  In Firefox, in the Security Devices dialog, I can go to the load
  dialog, add /usr/lib/pkcs11/libcoolkeypk11.so and press OK, and
  it says unable to load module.


I can reproduce the problem.


  My guess is that there's a dependency of coolkey that was
  upgraded (pcsc looks like a good candiate to me), but the
  package can't be rebuilt from source in sid, so my testing has
  been very limited so far.  The alternative is that there's some
  configuration missing, but I haven't been able to figure out
  what.


Exact. Something has changed. I will have a look.

Bye

--
 Dr. Ludovic Rousseau



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



Bug#619813: FTBFS: checking for linux/videodev.h... no

2011-03-27 Thread Andreas Metzler
Package: zoneminder
Version: 1.24.2-9
Severity: serious
Justification: fails to build from source (but built successfully in the past)

On current sid zoneminder does not build:

-
checking linux/videodev.h usability... no
checking linux/videodev.h presence... no
checking for linux/videodev.h... no
configure: error: zm requires Video4Linux to be installed
make: *** [config.status] Error 1
-

config.log shows this:

configure:7321: checking linux/videodev.h usability
configure:7321: i486-linux-gnu-g++ -c -DZM_FFMPEG_CVS -DHAVE_LIBCRYPTO 
-I/usr/include -D__STDC_CONSTANT_MACROS conftest.cpp 5
conftest.cpp:130:28: fatal error: linux/videodev.h: No such file or directory
compilation terminated.
[...]
configure:7321: result: no
configure:7321: checking linux/videodev.h presence
configure:7321: i486-linux-gnu-g++ -E -I/usr/include -D__STDC_CONSTANT_MACROS 
conftest.cpp
conftest.cpp:97:28: fatal error: linux/videodev.h: No such file or directory
compilation terminated.

videodev.h used to be shipped in linux-libc-dev up to 2.6.37-2 but is
not included in 2.6.38-1.

cu andreas




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



Bug#587476: [fbpanel] taskbar shows a task for fbpanel itself

2011-03-27 Thread Andreas Ronnquist
On Sat, 26 Mar 2011 23:54:13 -0300
Dererk der...@debian.org wrote:

 Hi Andreas.
 
 I can't reproduce it under 6.1.
 
 Do you currently still experiment this issue ?
 

Hi!
I am unfortunately not using fbpanel any longer, so I cannot reproduce.

best regards
-- 
Andreas Rönnquist gus...@gusnan.se



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



Bug#610552: acpi should be enabled for all architectures

2011-03-27 Thread Michael Meskes
On Wed, Jan 19, 2011 at 03:08:31PM -0500, Bernie Innocenti wrote:
 Is there a particular reason why the acpi command line tool is disabled
 on
 all architectures but i386, amd64 and ia64? It doesn't really rely on
 the
 presence of ACPI in the BIOS to report the battery status.

But it relies on some files under /sys/class to get its data from. And those
files do not exist on al architectures.

 In fact, I just compiled it on a Lemote Yeeloong (mipsel using pmon
 as bootloader firmware) and it works perfectly.

Good to know, thanks. I will enable mipsel and mips (which seems to be ok too)
for the next upload.

Michael
-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
Jabber: michael.meskes at googlemail dot com
VfL Borussia! Força Barça! Go SF 49ers! Use Debian GNU/Linux, PostgreSQL



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



Bug#619814: Slow OO Base performance with high cpu load

2011-03-27 Thread S. Ellenberger
Package: sun-java6-bin
Version: 6.22-1
Severity: normal
Tags: squeeze

The update from sun-java-6-bin to 6.24-1~squeeze1 severly slows down OO base
performance.

Searching a string in an sql databse using java jre becomes a matter of
minutes, not seconds. I noticed unusually high CPU load while the search is
ongoing.

Quite a lot of complaints about this performance drop since mid-February can be
found in the official ooforum and in Ubuntu MM launchpad.

Solutions where to exchange java6 with a different version from the official
sun hp or from the ubuntu java ppa.

I can't mix squeeze with those packages, so I reverted to sun-java6-bin 6.22-1
using the debian snapshot server and confirmed the search performance is now
back to normal.

Putting sun-java6-bin 6.22-1 on aptitude hold only can be a short term
solution, I'll run into update problems sooner or later, if I keep it on hold
for too long.

Any comments and suggestitions what a squeeze user can do?

Thanks and regards

Stefan



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

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

Versions of packages sun-java6-bin depends on:
ii  debconf [debconf-2.0] 1.5.36.1   Debian configuration management sy
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  sun-java6-jre 6.22-1 Sun Java(TM) Runtime Environment (
ii  unixodbc  2.2.14p2-1 ODBC tools libraries

Versions of packages sun-java6-bin recommends:
ii  libasound21.0.23-2.1 shared library for ALSA applicatio
ii  libnss-mdns   0.10-3.1   NSS module for Multicast DNS name 
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar
ii  libxi62:1.3-6X11 Input extension library
ii  libxtst6  2:1.1.0-3  X11 Testing -- Record extension li

Versions of packages sun-java6-bin suggests:
ii  binfmt-support1.2.18 Support for extra binary formats

-- debconf information:
* shared/accepted-sun-dlj-v1-1: true
  shared/error-sun-dlj-v1-1:
* shared/present-sun-dlj-v1-1:



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



Bug#592958: debhelper: dh_gconf add superfluous dependency to gconf2

2011-03-27 Thread Harald Braumann
On Sun, Sep 05, 2010 at 02:12:06PM +0200, Josselin Mouette wrote:
 The dependency is here for two reasons:
  1. Ensuring a recent enough version is installed. This reason will
 indeed cease to exist after the next release.
  2. Ensuring that gconf2 is installed on the system.
 
 You don’t want to end up in a situation where gconf2 is not installed,
 since in this case the schemas would not be registered.

But that's exactly what I want to end up with, because no application
on my system uses gconf.

To clarify: mumble only uses dh_gconf to install a url-handler:

--- debian/mumble.gconf-defaults ---
/desktop/gnome/url-handlers/mumble/command  mumble %s
/desktop/gnome/url-handlers/mumble/needs_terminal   false
/desktop/gnome/url-handlers/mumble/enabled  true
---

So the only thing dh_gconf does as I can see, is copy this file to
debian/mumble/usr/share/gconf/defaults/10_mumble. No maintainer script
snippets are created. 

I'm not sure about the workings of gconf, but I guess if a
package registers a schema, it does this because it actually uses
gconf as a configuration backend, and in this case it is of course
OK to add a dependency to gconf, because it would be needed in any case.

dh_gconf should differentiate between these cases and only add the
dependency, if it is really required. 

Cheers,
harry



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



Bug#613293: RFS: svgsalamander (updated, take 3)

2011-03-27 Thread Nicolas Dandrimont

Hi,

I have contacted upstream with my questions about svgsalamander. He
answered quickly but I took some time to get back to work.

My latest work is available in pkg-java's git repo :
git://git.debian.org/pkg-java/svgsalamander.git

I updated the package for latest upstream (svn rev. 0095). Upstream
doesn't intend to do and keep track of a formal release, so I'm keeping
the debian version simple (well, modulo the 00, but anyways...).

I removed use of the embedded batik code copy as upstream intends it for
compatibility with Java5 and older. It is still in the source so the
copyright info is still there.

I think svgsalamander should be quite ready for upload now.

Latest source is available from mentors.d.n at

- URL: http://mentors.debian.net/debian/pool/main/s/svgsalamander
- Source repository: deb-src http://mentors.debian.net/debian unstable main 
contrib non-free
- dget 
http://mentors.debian.net/debian/pool/main/s/svgsalamander/svgsalamander_0095-1.dsc

Thanks in advance,
Nicolas Dandrimont

(Keeping full message below for ITP documentation, forgot to Cc: it)

Le 06/03/2011 à 16:11, Nicolas Dandrimont nicolas.dandrim...@crans.org
écrivit :
 
 Hi,
 
 I had some exams last week so I haven't had time to look into
 svgsalamander again until today. I addressed most of the comments from
 Niels in the new version I uploaded to mentors (and git).
 
 Le 26/02/2011 à 16:17, Niels Thykier ni...@thykier.net écrivit :
  On 2011-02-19 18:49, Nicolas Dandrimont wrote:
   The package can be found on mentors.debian.net:
   - URL: http://mentors.debian.net/debian/pool/main/s/svgsalamander
   - Source repository: deb-src http://mentors.debian.net/debian unstable 
   main
 contrib non-free
   - dget 
   http://mentors.debian.net/debian/pool/main/s/svgsalamander/svgsalamander_0089-1.dsc
   
   It is also available under git at
 git://git.debian.org/pkg-java/svgsalamander.git
   (Browser: http://git.debian.org/?p=pkg-java/svgsalamander.git;a=summary)
   
   This is my first Java package, so I'm sure I didn't get everything
   right. Off the top of my head, here are some of my thoughts:
   
   - The jar is being signed at build-time. Should I disable this?
   
  
  I have not tried to build it; else I would have been able to answer this
  myself. :P  If signs automatically without requiring any interaction,
  then it is not a problem (build-wise, but the signature is probably not
  worth a lot then).  If the build stops waiting for the user to (e.g.)
  supply a password, then it is definitely not okay (since then it will
  not be rebuildable on our auto-build machines).
 
 The jar files are automatically signed by a build-time-generated
 temporary key. As this seems to be pointless, I just removed it
 altogether.
 
   - I decided to install the javadoc at the same time as the
   package. Should I split it in another package?
   
  
  Yes please; javadoc tends to take up a lot more space than the jar files
  themselves.  You should also make the javadoc link against the system
  javadoc (this requires a Build-Depends on default-jdk-doc plus the -doc
  packages of any package it depends plus [for ant] a couple of link
  href=/path/to/javadoc/ / in the javadoc tag).
 
 Done.
 
   - I'll put the package under team-maintainance. If I understand the
   Policy correctly, I should set:
   ---8---
   Maintainer: Debian Java Maintainers
 pkg-java-maintain...@lists.alioth.debian.org
   Uploaders: Nicolas Dandrimont nicolas.dandrim...@crans.org
   ---8---
   even though I'm neither a DD nor a DM. Is that correct?
   
  
  Yes.
 
 Done.
 
  So; debian/docs is empty - if the file is not needed you should remove it.
 
 Done.
 
  The copyright file does not list that
  svg-core/src/main/java/com/kitfox/svg/batik/RadialGradientPaintContext.java
  (and quite possibly other files) are Copyright Apache Software
  Foundation and under Apache-1.1
  You should probably ping upstream about that.
 
 I updated the copyright file with the info for
 svg-core/src/main/java/com/kitfox/svg/batik/*. Those seem to have been
 taken verbatim from batik, but I don't know which version. I'm pinging
 upstream about this to know :
 - From which batik version those files were taken
 - If the files were modified
 - If it is at all possible to use the system batik library instead of
 embedding a few source files... Which should be okay as long as the
 Apache project is properly attributed as per the Apache-1.1 license.
 
  Then there is doc/dev/GetTRDoc.pdf which says that Distribution is
  unlimited but says nothing about modification.  Torsten would probably
  ask where the source of it is, though it looks to be a scanning of the
  paper document.
 
 This paper is a thesis work done inside the US Naval Postdoctoral
 School. Unlimited distribution is indeed allowed, but I couldn't find
 any info on modifications (whether that is pertinent or not). As the
 file is not installed anyway, I dropped it from the orig tarball and
 left a note in 

Bug#580912: hyperref: PDF output links to wrong page with doxygen-generated LaTeX

2011-03-27 Thread Hilmar Preusse
On 09.05.10 Török Edwin (edwinto...@gmail.com) wrote:

Hi,

 However after creating the minimal example below both pdflatex, and
 latex+dvipdf produce the wrong links.  Hence I think the bug is in
 hyperref package.
 
Just for the records: I tested with the latest hyperref from CTAN,
the problem is still reproducible. I'll report to upstream ASAP.

H.
-- 
sigmentation fault



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



Bug#619815: jre performance drop in OO base

2011-03-27 Thread Stefan
Package: sun-java6-bin
Version: 6.22-1
Severity: normal
Tags: squeeze

The update from sun-java-6-bin to 6.24-1~squeeze1 severly slows down OO base
performance.

Searching a string in an sql databse using java6 jre becomes a matter of
minutes, not seconds. I noticed unusually high CPU load while the search is
ongoing.

Quite a lot of complaints about this performance drop can be found in the
official oo-forum and in Ubuntu MM launchpad.

Solutions where to exchange java6 with a different version from the official
sun hp or from the ubuntu java ppa.

I can't mix squeeze with those packages, so I reverted to sun-java6-bin 6.22-1
using the debian snapshot server, and confirmed the search performance is now
back to normal.

Putting sun-java6-bin 6.22-1 on aptitude hold can be a short term
solution. I'll run into update problems sooner or later, if I keep it on hold
for too long.

Any comments and suggestions what else a squeeze user can do?

Thanks and regards

Stefan



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

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

Versions of packages sun-java6-bin depends on:
ii  debconf [debconf-2.0] 1.5.36.1   Debian configuration management sy
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  sun-java6-jre 6.22-1 Sun Java(TM) Runtime Environment (
ii  unixodbc  2.2.14p2-1 ODBC tools libraries

Versions of packages sun-java6-bin recommends:
ii  libasound21.0.23-2.1 shared library for ALSA applicatio
ii  libnss-mdns   0.10-3.1   NSS module for Multicast DNS name
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar
ii  libxi62:1.3-6X11 Input extension library
ii  libxtst6  2:1.1.0-3  X11 Testing -- Record extension li

Versions of packages sun-java6-bin suggests:
ii  binfmt-support1.2.18 Support for extra binary formats

-- debconf information:
* shared/accepted-sun-dlj-v1-1: true



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



Bug#473213: Grails' roadmap to sid

2011-03-27 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 2011-03-27 00:28, Miguel Landaeta wrote:
 block 473213 by 453471
 thanks
 
 On Thu, Aug 19, 2010 at 12:02:32PM -0430, Miguel Landaeta wrote:
 So, in the next weeks (months??) I'm going to prepare a package
 for grails 1.3.x. Before that can be completed, a package for
 gradle must reach unstable. I'm working on it right now.
 
 Quick update:
 
 Later I found out that Grails 1.3.x is uncompatible with
 Hibernate = 3.5. It builds just fine but is not usable.
 So, now I'm waiting for Grails 1.4. BTW, on this week upstream
 added support for Hibernate 3.6 but I don't know yet when Grails
 1.4 could be released (maybe by the end of this year?).
 
 Gradle and Spring 3.0 already reached unstable, so the missing
 pieces to have Grails in Debian are:
 
 * Upload libradeox-java (or the fork prepared by Grails team).
 * Upload libhibernate3-java 3.6.
 * Reimplement a few classes providing JSON features because they are
   not DFSG-compliant (infamous clause of not doing evil with software...).
 

Depending on the actual implementation we may want to (re-)use this for
libjabsorb-java to get it back into main.

 Maybe another missing dependencies in Debian could appear with 1.4
 release but after packaging Spring 3.0 and Gradle I guess that should
 not bring too much work compared with what is already
 done (famous last words?).
 

~Niels
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBCAAGBQJNjy0OAAoJEAVLu599gGRCOOIP/1dlI+wP0g0PymeseDpaozVR
Xq6JyVqutdgO8D8dlF/HvBBeFOC4+mnXfVj+lVMCbeMnr1Y4G/WDOAolAVPV87WK
PC6qwqcPmrojHBexy1018+7suHF4ON1ECa+e3h7DWL3qWhfOQrl6YGrgaJxFUWvf
LQ8C6XqJdUIZVRCVwMoKw0yMNstuZx+JB9QZJn+F1dxrt0W3kfTNkC4UGBvcKm8q
UmRgVw5K7X11rJSEdyBm/GAe4cvqxw5vd4XkXJA2KOgQfM1pxWYdWqFoeOIVweYB
DGX02qwq1UpbvTE4tvZdsrmJ8k1/wNZWgL97dYsN6SvK77dnPPOhv8+3MaNIyfW0
ZjPdHUTEhxtQQ1tFYrm07Dq2jGrLyfxZoZp8GeVNjk7dtpjsiSxwiRsFbz0MrI+S
N/mhAXwv3qjRzf8bHKsun8b50RGdv24Tdttqnv1ejBmBQiD+RBFZiT5Jb806sPJu
Q42ZVkLfPBQFvJH/Y4d2mwtb3P0Rjk+ZC3ZqZlYE2cCaWGa9VyGKx6DqkmyYMjGZ
rghJU9u05CGNgGbPRLEycleE5jIJ5qcEEy9qFRfwZ47govyhc0S5uRYE89TTtWob
gaJIWbxzXBddx2BGFHz/cIv731VPmSmJv31+ZvHsqcvoemf/W8UR+asUWty3guju
ciDoBQlc6rH2RYRp9tCQ
=kJLh
-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#619816: apt-listchanges: Add hint for newbies on how to exit less

2011-03-27 Thread Stefan Fritsch
Package: apt-listchanges
Version: 2.85.7
Severity: wishlist

I have received a report of some newbie user not knowing how to
continue when apt-listchanges displayed the NEWS file of a security
update. Therefore I thought it may be nice if apt-listchanges included
a line at the end like press q to exit viewer or something like that.
Of course, this should only be displayed for frontend pager.



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



Bug#617611: acpi: empty slot battery not shown with -s

2011-03-27 Thread Michael Meskes
 The first attached patch solved it keeping in mind that the above is a
 kernel problem (i.e., if a battery is possible, the sysfs entry must
 be there, parameter 'present=0'), while the second attached patch
 completely hide the problem above.

I don't think this is the right way to solve the problem because now you got
it right on a laptop but wrong on all other systems. For instance with your
patch my virtualbox system tells me that the battery slot is empty although it
does not have one.

 BTW, I found counter-intuitive the fact that at acpi.c:255 battery_num
 is initialized to 1 even if it is not sure there is any battery at all
 (the same happens for all *_num variables).  Because of that, type_total
 is set accordingly, but still after entering the acpi.c:257 'while
 (battery) {' loop.  An IMHO better situation would be to initialize all
 *_num variables to 0 and thus remove the '*_num - 1' each time their
 values are shown.  I will be happy to provide a tested patch ;-)

Sure, do that. I absolutely agree with your reasoning. This code went through
several hands. My guess would be that this initilization originally made sense,
but a lot of changes weremade since.

michael

-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
Jabber: michael.meskes at googlemail dot com
VfL Borussia! Força Barça! Go SF 49ers! Use Debian GNU/Linux, PostgreSQL



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



Bug#595384: gnome-power-manager started by gdm3?

2011-03-27 Thread Christoph Anton Mitterer
On Sun, 2011-03-27 at 09:53 +0530, Josselin Mouette wrote:
 It should follow the default behavior for gnome-power-manager, which is
 to display the shutdown/reboot/suspend/hibernate menu.
No I mean,...

I switched to the console (out of X),... and there I've pushed the
power-button.

My original idea was, that it now should check e.g. via consolekit or
so, whether any users are logged in, and if not do its business.

Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Bug#619817: Patch for perl upgrade triggers

2011-03-27 Thread Dominic Hargreaves
tags 619817 + patch
thanks

Please find attached a patch fixing this. Note that there is still some
discussion in #619275 about the exact details of the implementation.

Cheers,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)
diff -Nru spamassassin-3.3.1/debian/changelog spamassassin-3.3.1/debian/changelog
--- spamassassin-3.3.1/debian/changelog	2010-03-25 04:01:18.0 +
+++ spamassassin-3.3.1/debian/changelog	2011-02-26 18:49:43.0 +
@@ -1,3 +1,12 @@
+spamassassin (3.3.1-1.1~test.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Register an interest in the perl-major-upgrade trigger, and
+recompile rules and restart spamd when perl is upgraded to a new
+major version.
+
+ -- Dominic Hargreaves d...@earth.li  Sat, 26 Feb 2011 18:48:49 +
+
 spamassassin (3.3.1-1) unstable; urgency=low
 
   * New upstream version.
diff -Nru spamassassin-3.3.1/debian/spamassassin.postinst spamassassin-3.3.1/debian/spamassassin.postinst
--- spamassassin-3.3.1/debian/spamassassin.postinst	2010-03-01 09:01:23.0 +
+++ spamassassin-3.3.1/debian/spamassassin.postinst	2011-03-20 21:55:37.0 +
@@ -2,15 +2,29 @@
 
 set -e
 
-# Compile, if rules have previously been compiled, and it's possible
-if [ -x /usr/bin/re2c -a -x /usr/bin/sa-compile -a -d /var/lib/spamassassin/compiled ]; then
-echo Running sa-compile (may take a long time)
-sa-compile --quiet
+sa_compile() {
+# Compile, if rules have previously been compiled, and it's possible
+if [ -x /usr/bin/re2c -a -x /usr/bin/sa-compile -a -d /var/lib/spamassassin/compiled ]; then
+echo Running sa-compile (may take a long time)
+sa-compile --quiet
+fi
+}
+
+sa_fix_broken_gpg_key () {
+# Work around broken key caused by gpg upgrade
+if [ -f /etc/spamassassin/sa-update-keys/pubring.gpg -a -f /usr/share/doc/spamassassin/GPG.KEY ]; then
+sa-update --import /usr/share/doc/spamassassin/GPG.KEY
+fi
+}
+
+if [ $1 = configure ]; then
+sa_compile
+sa_fix_broken_gpg_key
 fi
 
-# Work around broken key caused by gpg upgrade
-if [ -f /etc/spamassassin/sa-update-keys/pubring.gpg -a -f /usr/share/doc/spamassassin/GPG.KEY ]; then
-sa-update --import /usr/share/doc/spamassassin/GPG.KEY
+if [ $1 = triggered ]  [ $2 = perl-major-upgrade ]; then
+sa_compile
+invoke-rc.d spamassassin restart
 fi
 
 #DEBHELPER#
diff -Nru spamassassin-3.3.1/debian/spamassassin.triggers spamassassin-3.3.1/debian/spamassassin.triggers
--- spamassassin-3.3.1/debian/spamassassin.triggers	1970-01-01 01:00:00.0 +0100
+++ spamassassin-3.3.1/debian/spamassassin.triggers	2011-02-26 18:48:46.0 +
@@ -0,0 +1 @@
+interest perl-major-upgrade


Bug#619818: nvidia-common: [INTL:ru] Russian debconf templates translation

2011-03-27 Thread Yuri Kozlov
Package: nvidia-common
Version: 20110213+1
Severity: wishlist
Tags: l10n patch


Russian debconf templates translation is attached.

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

Kernel: Linux 2.6.37-trunk-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/dash
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the nvidia-common package.
#
# Yuri Kozlov yu...@komyakino.ru, 2011.
msgid 
msgstr 
Project-Id-Version: nvidia-common 20110213+1\n
Report-Msgid-Bugs-To: nvidia-com...@packages.debian.org\n
POT-Creation-Date: 2011-02-22 10:45-0800\n
PO-Revision-Date: 2011-03-27 17:07+0400\n
Last-Translator: Yuri Kozlov yu...@komyakino.ru\n
Language-Team: Russian debian-l10n-russ...@lists.debian.org\n
Language: \n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: Lokalize 1.0\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
#: ../nvidia-common.templates:1001
msgid Run 'nvidia-installer --uninstall'?
msgstr Запустить «nvidia-installer --uninstall»?

#. Type: boolean
#. Description
#: ../nvidia-common.templates:1001
msgid 
The 'nvidia-installer' program was found on your system.  This is probably 
left over from an earlier installation of the non-free NVIDIA graphics 
driver, installed using the NVIDIA *.run file directly.  This installation 
is incompatible with the Debian packages.  To install the Debian packages 
safely, it is therefore neccessary to undo the changes performed by 'nvidia-
installer'.
msgstr 
В системе обнаружена программа nvidia-installer. 
Вероятно, она осталась от предыдущей установки несвободного 
графического драйвера NVIDIA, установленного вручную 
посредством запуска NVIDIA-файла *.run. Такая установка не совместима 
с пакетами Debian. Чтобы безопасно устанавливать пакеты Debian, 
необходимо отменить изменения, выполненные nvidia-installer.

#. Type: boolean
#. Description
#: ../nvidia-common.templates:2001
msgid Delete 'nvidia-installer' files?
msgstr Удалить файлы nvidia-installer?

#. Type: boolean
#. Description
#: ../nvidia-common.templates:2001
msgid 
Some files from the 'nvidia-installer' still remain on your system. These 
probably come from an earlier installation of the non-free NVIDIA graphics 
driver using the *.run file directly.  Running the uninstallation procedure 
may have failed and left these behind.  These files conflict with the 
packages providing the non-free NVIDIA graphics driver and must be removed 
before the package installation can continue.
msgstr 
В системе обнаружено несколько файлов от nvidia-installer. 
Вероятно, они остались от предыдущей установки несвободного 
графического драйвера NVIDIA, установленного из вручную 
посредством запуска NVIDIA-файла *.run. Запуск процедуры удаления 
может завершиться неудачно и они всё равно останутся. Эти файлы 
конфликтуют с пакетами, предоставляющими несвободный 
графический драйвер NVIDIA и должны быть удалены перед 
продолжением установки пакета.

#. Type: boolean
#. Description
#: ../nvidia-common.templates:3001
msgid Remove conflicting library files?
msgstr Удалить конфликтующие файлы библиотек?

#. Type: boolean
#. Description
#: ../nvidia-common.templates:3001
msgid 
The following libraries were found on your system and conflict with the 
current installation of the NVIDIA graphics drivers:
msgstr 
В системе были найдены следующие библиотеки, конфликтующие 
с выполняемой установкой графических драйверов NVIDIA:

#. Type: boolean
#. Description
#: ../nvidia-common.templates:3001
msgid ${conflict-libs}
msgstr ${conflict-libs}

#. Type: boolean
#. Description
#: ../nvidia-common.templates:3001
msgid 
These libraries are most likely remnants of an old installation using the 
nvidia-installer and do not belong to any package managed by dpkg.  It 
should be safe to delete them.
msgstr 
Эти библиотеки, скорее всего, остались от старой установки nvidia-installer 
и не входят ни в один пакет, управляемый dpkg. Их можно без проблем удалять.



Bug#619819: Please add some more udc devices to the g_ether section of hw-detect

2011-03-27 Thread Heiko Stübner
Package: hw-detect
Severity: wishlist

The attached patch adds support for
- the s3c-hsudc found for example on S3C2416 based devices which will 
hopefully get into the kernel soon [1]
- the fsl-tegra-udc of the tegra platform. One example device is the Dynabook 
/ Toshiba AC100

Thanks
Heiko


[1] http://comments.gmane.org/gmane.linux.kernel.samsung-soc/4459
From 410a121ffbccbb5feac200e7023b41c279309cf5 Mon Sep 17 00:00:00 2001
From: Heiko Stuebner he...@sntech.de
Date: Sat, 26 Mar 2011 22:10:31 +0100
Subject: [PATCH] Add more udc devices for g_ether networking.
 s3c-hsudc can be found on S3C2412/S3C2416/S3C64XX SoCs and
 fsl-tegra-udc as the name implies on the tegra platform.

---
 hw-detect.sh |   13 +
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/hw-detect.sh b/hw-detect.sh
index f4f05df..7c19362 100755
--- a/hw-detect.sh
+++ b/hw-detect.sh
@@ -200,14 +200,19 @@ if [ -d /sys/bus/pci/devices ]  \
 	sleep 3 || true
 fi
 
-# Load the ethernet gadget network driver (g_ether) on S3C2410/S3C2440 (Openmoko GTA01/02)
+# Load the ethernet gadget network driver (g_ether) on platforms with an udc port:
+# - S3C2410/S3C2440 (Openmoko GTA01/02)
+# - S3C2412/S3C2416 (s3c-hsudc driver)
+# - Tegra
 if [ -d /sys/bus/platform/devices/s3c2440-usbgadget -o \
-	-d /sys/bus/platform/devices/s3c2410-usbgadget ] ; then
-	db_subst hw-detect/load_progress_step CARDNAME S3C2410/S3C2440 SoC
+	-d /sys/bus/platform/devices/s3c2410-usbgadget -o \
+	-d /sys/bus/platform/devices/s3c-hsudc -o \
+	-d /sys/bus/platform/devices/fsl-tegra-udc ] ; then
+	db_subst hw-detect/load_progress_step CARDNAME SoC USB-device-port
 	db_subst hw-detect/load_progress_step MODULE g_ether
 	db_progress INFO hw-detect/load_progress_step
 	
-	log Detected S3C2410/S3C2440 SoC, loading g_ether
+	log Detected SoC with USB device port, loading g_ether
 	load_module g_ether
 	register-module g_ether
 fi
-- 
1.7.2.3



Bug#554371: FTBFS with binutils-gold

2011-03-27 Thread Andreas Metzler
tags 554371 patch
thanks
On 2009-11-04 Peter Fritzsche peter.fritzs...@gmx.de wrote:
 Source: freewheeling
 Version: 0.6-1
[...]
 Tried to build your package and it fails to build with GNU binutils-gold. The
 important difference is that --no-add-needed is the default behavior of of GNU
 binutils-gold. Please provide all needed libraries to the linker when building
 your executables.
[...]

Hello,
freewheeling nowadays fails with the sid toolchain. 
http://lists.debian.org/debian-devel-announce/2011/02/msg00011.html

Find attached a minimal patch to fix the issue.

I have uploaded a fixed package with the following changelog entry to
delayed/7:
---
Link against both libSDL and libogg (040_linkoggandSDL.diff) and run
autoreconf (041_autoreconf.diff). Fixes FTBFS --no-copy-dt-needed-entries.
Closes: #554371
---

The complete package can be temporarily found on
http://www.bebt.de/tmp/freewheeling/

I have uploaded directly to delayed since my Debian time on work days
is limited. My interest for this bug is that freewheeling would block
gnutls migration.
http://lists.debian.org/debian-release/2011/03/msg00405.html

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'
Description: Link against libSDL and libogg
Author: Andreas Metzler ametz...@debian.org
Bug-Debian: http://bugs.debian.org/554371

--- freewheeling-0.6.orig/configure.ac
+++ freewheeling-0.6/configure.ac
@@ -36,6 +36,9 @@ AC_CHECK_FUNC(filledPieRGBA, [AC_DEFINE(
 AC_CHECK_LIB([SDL_ttf], [main], , 
   [AC_MSG_ERROR(VIDEO: You need libsdl-ttf2.0-dev installed.
 		http://www.libsdl.org/projects/SDL_ttf/)])
+AC_CHECK_LIB([SDL], [main], , 
+  [AC_MSG_ERROR(AUDIO: You need SDL 1.2 installed.
+		http://www.libsdl.org/)])
 
 AC_CHECK_LIB([xml2], [main], , 
   [AC_MSG_ERROR(CONFIG: You need libxml2-dev installed.
@@ -83,6 +86,9 @@ fi
 #		  http://www.libsdl.org/])
 #)
 
+AC_CHECK_LIB([ogg], [main], , 
+  [AC_MSG_ERROR(AUDIO: You need libogg-dev installed.
+		http://www.xiph.org/ogg/)])
 AC_CHECK_LIB([vorbis], [main], , 
   [AC_MSG_ERROR(AUDIO: You need libvorbis-dev installed.
 		http://www.xiph.org/ogg/vorbis/)])


Bug#619820: either bash or dash should be enough

2011-03-27 Thread Harald Dunkel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: dash
Version: 0.5.5.1-7.4

I cannot remove dash nor bash. Both are marked as essential packages.
One shell should be enough for a minimal system.

Please reassign, if necessary


Regards

Harri
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk2PO/wACgkQUTlbRTxpHjesaACeM23JaslCMDMFlznNzRX9oOKb
VIIAn3CGbslUMSYZocY30xvaPe2aDEU3
=MaF4
-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#619821: Configure SSL certificates

2011-03-27 Thread Seo Sanghyeon
Package: mercurial
Version: 1.8.1-1

I think SSL certificates should be configured in system-wide hgrc.
Here's how: http://mercurial.selenic.com/wiki/CACertificates

This would add dependency to ca-certificates pacakge.

Seo Sanghyeon



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



Bug#619573: xen-linux-system-2.6.32-5-xen-amd64: cpufreq scaling in Dom0 does not work

2011-03-27 Thread Michael Kuron
2.6.38 fixes it and cpufreq scaling works as expected.
As I did not find a precompiled 2.6.38 Dom0 kernel, I just took 
linux-image-2.6.38-1-amd64 from sid (obviously that one lacks the Dom0 backend 
drivers for supporting DomUs, but it is still capable of running as a Xen Dom0 
by itself - so e.g. xm dmesg shows clearly that the kernel is running on the 
hypervisor, but xm create fails due to missing kernel support).

So the bug was introduced somewhere between 2.6.25 and 2.6.31 and fixed 
somewhere between 2.6.33 and 2.6.38.

 Seems like this is a regression bug in the kernel:
 I installed linux-{image,ubuntu-modules}-2.6.24-28-xen from Ubuntu 8.04
 and cpufreq=dom0-kernel worked exactly as expected (i.e. the Dom0 kernel does
 cpufreq scaling in exactly the same way it would if it were running
 natively).
 I also tried linux-{image,modules}-2.6.26-2-xen-amd64 from Debian Lenny,
 but unfortunately that one lacks the cpufreq modules.
-- 
NEU: FreePhone - kostenlos mobil telefonieren und surfen!   
Jetzt informieren: http://www.gmx.net/de/go/freephone



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



Bug#619822: sidebar no longer display the correct count of new messages in maildirs

2011-03-27 Thread Stefano Zacchiroli
Package: mutt-patched
Version: 1.5.21-3
Severity: important

Since the following upgrade on march 23rd (excerpt from /var/log/aptitude):

  [UPGRADE] mutt-patched 1.5.20-9+squeeze1 - 1.5.21-3

the mutt-patched sidebar no longer display the appropriate count of new
messages in any of my maildirs. Rather, it shows a trailing (1) when at least
one new messages is contained in the maildir and nothing if there are no new
messages.

Once a maildir containing new messages is opened, the sidebar shows the proper
count of new messages (e.g. Debian.devel (4)). Interestingly enough, when
switching to another maildir the proper new message count stays in the previous
maildir. When exiting and re-entering mutt, (1) instead of the proper counts
are restored on all maildirs.

I've initially suspected a cache b0rkage, but cleaning up my mutt_hcache dir
didn't help at all.

I'm setting the severity as 'important', because with (1) or nothing one can
survive, but this is very painful nonetheless.

Thanks for maintaining mutt!
Cheers.

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

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

Versions of packages mutt-patched depends on:
ii  libc6 2.11.2-13  Embedded GNU C Library: Shared lib
ii  libcomerr21.41.12-2  common error description library
ii  libgnutls26   2.10.5-1   the GNU TLS library - runtime libr
ii  libgpg-error0 1.10-0.3   library for common error values an
ii  libgpgme111.2.0-1.2  GPGME - GnuPG Made Easy
ii  libgssapi-krb5-2  1.9+dfsg-1 MIT Kerberos runtime libraries - k
ii  libidn11  1.20-1 GNU Libidn library, implementation
ii  libk5crypto3  1.9+dfsg-1 MIT Kerberos runtime libraries - C
ii  libkrb5-3 1.9+dfsg-1 MIT Kerberos runtime libraries
ii  libncursesw5  5.8+20110307-1 shared libraries for terminal hand
ii  libsasl2-22.1.23.dfsg1-8 Cyrus SASL - authentication abstra
ii  libtokyocabinet8  1.4.37-6   Tokyo Cabinet Database Libraries [
ii  mutt  1.5.21-3   text-based mailreader supporting M

mutt-patched recommends no packages.

mutt-patched 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#618901: coolkey: Doesn't work with Iceweasel or Epiphany

2011-03-27 Thread Ludovic Rousseau

Le 19/03/11 14:14, Marcelo E. Magallon a écrit :

Package: coolkey
Version: 1.1.0-8
Severity: normal

  This is probably a grave bug, but I want to confirm that there's
  at least someone out there that can use the package.

  After installing the epiphany-extensions package and enabling
  the Certificates extension, going to the tools menu and
  clicking on Manage Security Devices produces no dialog.

  In Firefox, in the Security Devices dialog, I can go to the load
  dialog, add /usr/lib/pkcs11/libcoolkeypk11.so and press OK, and
  it says unable to load module.


I had the problem only because of a bad pcsc-lite configuration.

Install the opensc package and send the result of:
$ pkcs11-tool --module /usr/lib/pkcs11/libcoolkeypk11.so -I


  My guess is that there's a dependency of coolkey that was
  upgraded (pcsc looks like a good candiate to me), but the
  package can't be rebuilt from source in sid, so my testing has
  been very limited so far.  The alternative is that there's some
  configuration missing, but I haven't been able to figure out
  what.


Send me the log of the build failure please.
I do not have the problem. The compilation fails on stable but not on sid.

Bye

--
 Dr. Ludovic Rousseau



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



Bug#619820: either bash or dash should be enough

2011-03-27 Thread Jonathan Nieder
# which packages are essential affects the entire distribution
reassign 619820 general
quit

Hi,

Harald Dunkel wrote:

 I cannot remove dash nor bash. Both are marked as essential packages.
 One shell should be enough for a minimal system.

That's a good point.  Raphael, do you remember why dash is essential?
Once we have a good mechanism for safely switching between arbitrary
policy-compliant shells (Bug#540512), would it be possible to make
sh essential instead?



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



Bug#619823: binutils-gold: gold doesn't know --default-symver, but it's in the man page

2011-03-27 Thread nick black
Package: binutils-gold
Version: 2.21.0.20110322-1
Severity: normal

Howdy! I'm trying to build my libtorque package using binutils-gold. It appears
that gold doesn't honor the --default-symver option, or understand it. This
makes sense; running strings on ld.gold doesn't list it, nor is it in the gold/
subdirectory of binutils source. It is still, however, listed in the man page.

Either gold ought implement the option (preferable), or the man page ought be
conditionalized on installed linker capability, and a proper diversion
installed.

Thanks!

cc -pipe -std=gnu99 -DLIBTORQUE_WITHOUT_NUMA -DTORQUE_LINUX
-D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -rdynamic -g -D_FORTIFY_SOURCE=2 -pthread
-I/usr/include/cuda -Isrc -fpic -march=native -mtune=native -O2 -fomit-frame-
pointer -finline-functions -fdiagnostics-show-option -fvisibility=hidden -fipa-
cp -ftree-loop-linear -ftree-loop-im -ftree-loop-ivcanon -fno-common -ftree-
vectorizer-verbose=5 -Werror -Wall -W -Wextra -Wmissing-prototypes -Wundef
-Wshadow -Wstrict-prototypes -Wmissing-declarations -Wnested-externs -Wsign-
compare -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wdeclaration-after-
statement -Wfloat-equal -Wpacked -Winvalid-pch -Wdisabled-optimization -Wcast-
align -Wformat -Wformat-security -Wold-style-definition -Woverlength-strings
-Wwrite-strings -Wstrict-aliasing=3 -Wunsafe-loop-optimizations -Wstrict-
overflow=1 -shared -o .out/lib/libtorque.so.0.0.1
..out/src/libtorque/events/sources.o .out/src/libtorque/events/signal.o
..out/src/libtorque/events/sysdep.o .out/src/libtorque/events/evq.o
..out/src/libtorque/events/fd.o .out/src/libtorque/events/path.o
..out/src/libtorque/events/thread.o .out/src/libtorque/events/timer.o
..out/src/libtorque/torque.o .out/src/libtorque/alloc.o
..out/src/libtorque/conn.o .out/src/libtorque/hardware/x86cpuid.o
..out/src/libtorque/hardware/topology.o .out/src/libtorque/hardware/cuda.o
..out/src/libtorque/hardware/memory.o .out/src/libtorque/hardware/numa.o
..out/src/libtorque/hardware/arch.o .out/src/libtorque/buffers.o
..out/src/libtorque/schedule.o .out/src/libtorque/protos/dns.o
..out/src/libtorque/protos/ssl.o .out/src/libtorque/internal.o -Wl,--warn-
shared-textrel -Wl,-O,--default-symver,--enable-new-dtags,--as-needed,--warn-
common -Wl,--fatal-warnings,-z,noexecstack,-z,combreloc
-Wl,-soname,libtorque.so.0 -ladns -lssl -lcrypto   -L/usr/lib -lcuda -lpthread
-lblossom
/usr/bin/ld: fatal error: -O: invalid option value (expected an integer):
--default-symver
collect2: ld returned 1 exit status
make: *** [.out/lib/libtorque.so.0.0.1] Error 1



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

Kernel: Linux 2.6.38.1 (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 binutils-gold depends on:
ii  binutils   2.21.0.20110322-1 The GNU assembler, linker and bina

binutils-gold recommends no packages.

binutils-gold 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#580912: hyperref: PDF output links to wrong page with doxygen-generated LaTeX

2011-03-27 Thread Hilmar Preusse
forwarded 580912 http://puszcza.gnu.org.ua/bugs/?137
stop

On 09.05.10 Török Edwin (edwinto...@gmail.com) wrote:

Hi,

 However after creating the minimal example below both pdflatex, and
 latex+dvipdf produce the wrong links.  Hence I think the bug is in
 hyperref package.
 
http://puszcza.gnu.org.ua/bugs/?137

H.
-- 
sigmentation fault



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



Bug#595651: GStreamer packages should not depend on gconf, nor recommend gvfs

2011-03-27 Thread Eckhart Wörner
Hi,

note that KDE upstream recommends gstreamer as the default backend for phonon. 
Since phonon-backend-gstreamer depends on gstreamer0.10-plugins-base this bug 
affects quite a lot of users.

Eckhart Wörner



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



Bug#549256: closed by Sandro Tosi mo...@debian.org (zope3 removed from Debian unstable)

2011-03-27 Thread Yann Dirson
Hello,

(added the Ubuntu uploader of python-restrictedpython to discussion)

[my original report]
 Package: zope3
 Version: 3.4.0-1 
 Severity: normal
 
 Packages zope2.11 (2.11.4-1), zope2.10 (2.10.9-1), zope3 (3.4.0-1) and
 koffice-data (1:2.0.82-1) all contain a copy or RestrictedPython.
 
 RestrictedPython seems to have its own life at
 http://pypi.python.org/pypi/RestrictedPython/ and it would be
 beneficial for our users to ship it in its own package instead of
 duplicating its code here (think security updates).

[close message]
 zope3 has been removed from Debian unstable: http://bugs.debian.org/540658

OK, but I notice that ubuntu does ship RestrictedPython in its own
package [1], which was part of my original report.  I suppose it could
make sense to include it in Debian as well, perhaps as some sort of
Ubuntu contribution ?  Is there a reason why it was not pushed to
Debian already by Ubuntu devs ?

[1] http://packages.ubuntu.com/fr/maverick/python-restrictedpython


That said, I have not yet started to look at using that package
myself, and remember reading that Zope was moving away from it,
without having heard about what replacement they were envisionning.
Maybe some of you have more background info about this whole issue ?

Best regards,
-- 
Yann



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



Bug#619824: sam2p -m:dpi:res generates bigger image for bigger resolution

2011-03-27 Thread Tanaka Akira
Package: sam2p
Version: 0.45-3-3

I found that -m:dpi:res works that bigger resolution
generates bigger image.
But I think bigger resolution should generate smaller image.

In the following reproducing example,
I used netpbm (pbmtext), evince and pdftk package.

  % pbmtext foo  a.pbm
  % sam2p -pdf:2 -m:dpi:50 a.pbm 50dpi.pdf
  This is sam2p v0.45-3.
  Available Loaders: PS PDF JAI PNG JPEG TIFF PNM BMP GIF LBM XPM PCX TGA.
  Available Appliers: XWD Meta Empty BMP PNG TIFF6 TIFF6-JAI JPEG-JAI
JPEG PNM GIF89a+LZW XPM PSL1C PSL23+PDF PSL2+PDF-JAI P-TrOpBb.
  sam2p: Notice: job: read InputFile: a.pbm
  sam2p: Notice: writeTTT: using template: p02
  sam2p: Notice: applyProfile: applied OutputRule #4
  sam2p: Notice: job: written OutputFile: 50dpi.pdf
  Success.
  % sam2p -pdf:2 -m:dpi:300 a.pbm 300dpi.pdf
  This is sam2p v0.45-3.
  Available Loaders: PS PDF JAI PNG JPEG TIFF PNM BMP GIF LBM XPM PCX TGA.
  Available Appliers: XWD Meta Empty BMP PNG TIFF6 TIFF6-JAI JPEG-JAI
JPEG PNM GIF89a+LZW XPM PSL1C PSL23+PDF PSL2+PDF-JAI P-TrOpBb.
  sam2p: Notice: job: read InputFile: a.pbm
  sam2p: Notice: writeTTT: using template: p02
  sam2p: Notice: applyProfile: applied OutputRule #4
  sam2p: Notice: job: written OutputFile: 300dpi.pdf
  Success.
  % evince 50dpi.pdf
  % evince 300dpi.pdf

I think the text foo in 50dpi.pdf should be bigger than 300dpi.
But evince shows smaller foo in 50dpi.pdf

  % pdftk 50dpi.pdf 300dpi.pdf cat output out.pdf
  % evince out.pdf

If we see out.pdf which is concatenation of 50dpi.pdf and 300dpi.pdf,
we can see the size difference more clearly.
-- 
Tanaka Akira



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



Bug#619546: [php-maint] Bug#619546: php5-fpm init script failing with error code 1 regardless of failure

2011-03-27 Thread Ondřej Surý
tags 619546 +moreinfo
thank you

Could you please set VERBOSE=yes in /etc/default/rcS and try to
reproduce the problem? The installation is OK on my test system.

Ondrej

On Thu, Mar 24, 2011 at 23:46,  ovrl...@thedarkcitadel.com wrote:
 Package: php5-fpm
 Version: 5.3.6-4
 Severity: important

 When trying to install the package you recieve this message:
 --
 cthulhu:/var/lib/dpkg/info# aptitude install php5-fpm
 The following NEW packages will be installed:
  php5-fpm
 0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
 Need to get 2,928 kB of archives. After unpacking 7,746 kB will be used.
 Get:1 http://mirrors2.kernel.org/debian/ unstable/main php5-fpm i386 5.3.6-4 
 [2,928 kB]
 Fetched 2,928 kB in 0s (20.1 MB/s)
 Selecting previously deselected package php5-fpm.
 (Reading database ... 27837 files and directories currently installed.)
 Unpacking php5-fpm (from .../php5-fpm_5.3.6-4_i386.deb) ...
 Processing triggers for man-db ...
 Setting up php5-fpm (5.3.6-4) ...
 update-rc.d: warning: php5-fpm stop runlevel arguments (0 1 6) do not match 
 LSB Default-Stop values (none)
 invoke-rc.d: initscript php5-fpm, action start failed.
 dpkg: error processing php5-fpm (--configure):
  subprocess installed post-installation script returned error exit status 1
 configured to not write apport reports
                                      Errors were encountered while processing:
  php5-fpm
 E: Sub-process /usr/bin/dpkg returned an error code (1)
 A package failed to install.  Trying to recover:
 Setting up php5-fpm (5.3.6-4) ...
 update-rc.d: warning: php5-fpm stop runlevel arguments (0 1 6) do not match 
 LSB Default-Stop values (none)
 invoke-rc.d: initscript php5-fpm, action start failed.
 dpkg: error processing php5-fpm (--configure):
  subprocess installed post-installation script returned error exit status 1
 Errors were encountered while processing:
  php5-fpm
 ---

 If you then try to remove it, you get nearly the same thing

 ---
 cthulhu:/home/ovrlrdq# aptitude purge php5-fpm
 The following packages will be REMOVED:
  php5-fpm{p}
 0 packages upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
 Need to get 0 B of archives. After unpacking 7,746 kB will be freed.
 Do you want to continue? [Y/n/?] y
 (Reading database ... 27890 files and directories currently installed.)
 Removing php5-fpm ...
 invoke-rc.d: initscript php5-fpm, action stop failed.
 dpkg: error processing php5-fpm (--purge):
  subprocess installed pre-removal script returned error exit status 1
 configured to not write apport reports
                                      update-rc.d: warning: php5-fpm stop 
 runlevel arguments (0 1 6) do not match LSB Default-Stop values (none)
 invoke-rc.d: initscript php5-fpm, action start failed.
 dpkg: error while cleaning up:
  subprocess installed post-installation script returned error exit status 1
 Errors were encountered while processing:
  php5-fpm
 E: Sub-process /usr/bin/dpkg returned an error code (1)
 A package failed to install.  Trying to recover:
 ---



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

 Kernel: Linux 2.6.32.16-linode28 (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/dash

 Versions of packages php5-fpm depends on:
 ii  dpkg                    1.15.8.10        Debian package management system
 ii  libbz2-1.0              1.0.5-6          high-quality block-sorting file 
 co
 ii  libc6                   2.11.2-11        Embedded GNU C Library: Shared 
 lib
 ii  libcomerr2              1.41.12-2        common error description library
 ii  libdb4.8                4.8.30-5         Berkeley v4.8 Database Libraries 
 [
 ii  libgssapi-krb5-2        1.9+dfsg-1       MIT Kerberos runtime libraries - 
 k
 ii  libk5crypto3            1.9+dfsg-1       MIT Kerberos runtime libraries - 
 C
 ii  libkrb5-3               1.9+dfsg-1       MIT Kerberos runtime libraries
 ii  libmagic1               5.04-5           File type determination library 
 us
 ii  libonig2                5.9.1-1          Oniguruma regular expressions 
 libr
 ii  libpcre3                8.12-3           Perl 5 Compatible Regular 
 Expressi
 ii  libqdbm14               1.8.77-4         QDBM Database Libraries [runtime]
 ii  libssl0.9.8             0.9.8o-5         SSL shared libraries
 ii  libxml2                 2.7.8.dfsg-2     GNOME XML library
 ii  mime-support            3.51-1           MIME files 'mime.types'  
 'mailcap
 ii  php5-common             5.3.6-4          Common files for packages built 
 fr
 ii  tzdata                  2011d-1          time zone and daylight-saving 
 time
 ii  ucf                     3.0025+nmu1      Update Configuration File: 
 preserv
 ii  zlib1g                  1:1.2.3.4.dfsg-3 compression library - runtime

 php5-fpm recommends no packages.

 Versions of packages php5-fpm suggests:
 pn  php-pear   

Bug#619805: [linux-2.6] No irq handler for vector (irq -1) after suspend-to-disk

2011-03-27 Thread Ben Hutchings
On Sun, 2011-03-27 at 11:25 +0200, Kolja Brix wrote:
 Package: linux-2.6
 Version: 2.6.32-31
 Severity: important
 
 --- Please enter the report below this line. ---
 
 Since the last kernel update in Debian Squeeze, the following bug occurs:
 
 After a suspend-to-disk operation, the kernel every 5 minutes reports the 
 following error:
 
 kernel:[34668.309779] do_IRQ: 0.74 No irq handler for vector (irq -1)

Send a full log, please.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#619825: schroot: loopback type maximum file size on 32bit

2011-03-27 Thread Adam Guthrie
Package: schroot
Version: 1.4.7-1ubuntu0.1
Severity: normal

adam@whiteowl:~$ schroot -c natty-i386
E: /srv/chroot/natty-i386: Failed to stat file: Value too large for defined 
data type

adam@whiteowl:~$ cat /etc/schroot/chroot.d/natty-i386
[natty-i386]
description=Ubuntu 11.04 Natty for i386
file=/srv/chroot/natty-i386
root-users=adam
type=loopback
users=adam

adam@whiteowl:~$ ls -lt /srv/chroot/natty-i386 
-rw-r--r-- 1 root root 10737418240 2011-03-19 19:42 /srv/chroot/natty-i386


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

Kernel: Linux 2.6.35-28-generic (SMP w/2 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages schroot depends on:
ii  libboost-filesys 1.42.0-3ubuntu1 filesystem operations (portable pa
ii  libboost-program 1.42.0-3ubuntu1 program options library for C++
ii  libboost-regex1. 1.42.0-3ubuntu1 regular expression library for C++
ii  libboost-system1 1.42.0-3ubuntu1 Operating system (e.g. diagnostics
ii  libc62.12.1-0ubuntu10.2  Embedded GNU C Library: Shared lib
ii  libgcc1  1:4.5.1-7ubuntu2GCC support library
ii  liblockdev1  1.0.3-1.4   Run-time shared library for lockin
ii  libpam0g 1.1.1-4ubuntu2  Pluggable Authentication Modules l
ii  libstdc++6   4.5.1-7ubuntu2  The GNU Standard C++ Library v3
ii  libuuid1 2.17.2-0ubuntu1.10.10.2 Universally Unique ID library
ii  schroot-common   1.4.7-1ubuntu0.1common files for schroot

schroot recommends no packages.

Versions of packages schroot suggests:
pn  aufs-modules | unionfs-mod none(no description available)
pn  btrfs-toolsnone(no description available)
ii  debootstrap1.0.23ubuntu1 Bootstrap a basic Debian system
pn  lvm2   none(no description available)
ii  unzip  6.0-4 De-archiver for .zip files

-- 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#619826: ITP: grub-customizer -- a graphical grub2/burg configuration tool

2011-03-27 Thread Daniel Richter
Package: wnpp   
Version: 2.1.2-2
Severity: wishlist
Upstream Author: Daniel Richter danielrichter2...@web.de
URL: https://launchpad.net/grub-customizer
License: GPLv3

Grub Customizer is a graphical application which privides an easy way to
edit the configuration of Grub 2 or BURG. The base functionality of
Grub Customizer is to rename, reorder or delete the menu entries - but
you can also configure settings like default entry, timeouts,
backgrounds and much more.

Grub Customizer also helps you restoring your bootloader by
providing an easy way to access the configuration of other partitions.


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




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



Bug#619814: Slow OO Base performance with high cpu load

2011-03-27 Thread Sylvestre Ledru
Le dimanche 27 mars 2011 à 12:16 +0200, S. Ellenberger a écrit :
 The update from sun-java-6-bin to 6.24-1~squeeze1 severly slows down OO base
 performance.
[...]

 Any comments and suggestitions what a squeeze user can do?
Beside going back to the release 6.22, I don't know...
Hopefully, release 25 will fix it.

FYI, it has been reported here:
https://bugs.launchpad.net/ubuntu/+source/sun-java6/+bug/724217

Sylvestre





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



Bug#619827: linux-source-2.6.38: [linux-dvb] cx88-blackbird broken (since 2.6.37)

2011-03-27 Thread Huber Andreas
Package: linux-source-2.6.38
Version: 2.6.38-1
Severity: important
Tags: upstream


[Symptom]
Processes that try to open a cx88-blackbird driven MPEG device will hang up.

[Cause]
Nestet mutex_locks (which are not allowed) result in a deadlock.

[Details]
There has been resent work on removing BKL (BigKernelLock) calls from kernel 
code. (see http://kernelnewbies.org/BigKernelLock) This was not properly done 
for the cx88-blackbird driver:

Source-File: drivers/media/video/cx88/cx88-blackbird.c
Function: int mpeg_open(struct file *file)
Problem: the calls to  drv-request_acquire(drv); and 
drv-request_release(drv); will hang because they try to lock a mutex that has 
already been locked by a previouse call to mutex_lock(dev-core-lock) ...

1050 static int mpeg_open(struct file *file)
1051 {
[...]
1060 mutex_lock(dev-core-lock); // MUTEX LOCKED 

1061
1062 /* Make sure we can acquire the hardware */
1063 drv = cx8802_get_driver(dev, CX88_MPEG_BLACKBIRD);
1064 if (drv) {
1065 err = drv-request_acquire(drv);  // HANGS 
!!!
1066 if(err != 0) {
1067 dprintk(1,%s: Unable to acquire hardware, %d\n, 
__func__, err);
1068 mutex_unlock(dev-core-lock);;
1069 return err;
1070 }
1071 }
[...]

Here's the relevant kernel log extract (Linux version 2.6.38-1-amd64 (Debian 
2.6.38-1)) ...

Mar 24 21:25:10 xen kernel: [  241.472067] INFO: task v4l_id:1000 blocked for 
more than 120 seconds.
Mar 24 21:25:10 xen kernel: [  241.478845] echo 0  
/proc/sys/kernel/hung_task_timeout_secs disables this message.
Mar 24 21:25:10 xen kernel: [  241.482412] v4l_id  D 88006bcb6540   
  0  1000  1 0x
Mar 24 21:25:10 xen kernel: [  241.486031]  88006bcb6540 0086 
8801 88006981c380
Mar 24 21:25:10 xen kernel: [  241.489694]  00013700 88006be5bfd8 
88006be5bfd8 00013700
Mar 24 21:25:10 xen kernel: [  241.493301]  88006bcb6540 88006be5a010 
88006bcb6540 00016be5a000
Mar 24 21:25:10 xen kernel: [  241.496766] Call Trace:
Mar 24 21:25:10 xen kernel: [  241.500145]  [81321c4a] ? 
__mutex_lock_common+0x127/0x193
Mar 24 21:25:10 xen kernel: [  241.503630]  [81321d82] ? 
mutex_lock+0x1a/0x33
Mar 24 21:25:10 xen kernel: [  241.507145]  [a09dd155] ? 
cx8802_request_acquire+0x66/0xc6 [cx8802]
Mar 24 21:25:10 xen kernel: [  241.510699]  [a0aab7f2] ? 
mpeg_open+0x7a/0x1fc [cx88_blackbird]
Mar 24 21:25:10 xen kernel: [  241.514279]  [8123bfb6] ? 
kobj_lookup+0x139/0x173
Mar 24 21:25:10 xen kernel: [  241.517856]  [a062d5fd] ? 
v4l2_open+0xb3/0xdf [videodev]


regards
Andi Huber

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

Kernel: Linux 2.6.36-trunk-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-source-2.6.38 depends on:
ii  binutils  2.20.1-16  The GNU assembler, linker and bina
ii  bzip2 1.0.5-6high-quality block-sorting file co

Versions of packages linux-source-2.6.38 recommends:
ii  gcc   4:4.4.5-1  The GNU C compiler
ii  libc6-dev [libc-dev]  2.11.2-10  Embedded GNU C Library: Developmen
ii  make  3.81-8 An utility for Directing compilati

Versions of packages linux-source-2.6.38 suggests:
pn  kernel-packagenone (no description available)
ii  libncurses5-dev [ncurses- 5.8+20110307-1 developer's libraries for ncurses
pn  libqt3-mt-dev 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#440496: Confirmation and fix!

2011-03-27 Thread Rupert Swarbrick
Hi,

I've managed to get a virtual machine working with qemu/kvm and can
confirm the crash happened with packages from 2007 (!)

With the package that was actually shipped with Lenny (4.1.dfsg.1-4.1),
this no longer happens, so I am going to mark the bug as confirmed and
then fixed.

Rupert


pgpcZZuP5LQzl.pgp
Description: PGP signature


Bug#619828: feh doesn't show pbm files well.

2011-03-27 Thread Tanaka Akira
Package: feh
Version: 1.3.4.dfsg.1-1

feh doesn't show pbm files well.

| % pbmtext foo  foo.pbm
| % feh foo.pbm

feh shows the image as follows.

| % xwd|xwdtopnm|ppmtopgm|pgmtopbm|pbmtoascii -1x2
| xwdtopnm: writing PPM file
|
|
|
|
|
|   o
|
|ooo  oooo
|M  M  M  o  o
|M  M  M
| oo   oo  
|
|
|
|

But feh should show the image as follows.

| % pbmtoascii -1x2 foo.pbm
|
|
|
|
|
|o
|   oMo  oooo
|M  M  M  M  M
|M  M  M  M  M
|   
|
|
|
|
|

I guess this is some padding problem.
When I cut the width of pbm file to 40 pixels,
feh shows it fine.

| % pnmfile foo.pbm
| foo.pbm:PBM raw, 42 by 29
| % pnmcut -width 40 foo.pbm  foo40.pbm
| % feh foo40.pbm

dpkg shows feh and imlib related packages as follows.

| % dpkg -l|grep imlib
| ii  feh  1.3.4.dfsg.1-1
   imlib2 based image viewer
| rc  gdk-imlib11  1.9.14-31
   imaging library for use with gtk
| ii  giblib1  1.2.4-5
   wrapper library for imlib2, and other stuff
| rc  imlib-base   1.9.14-31
   Common files needed by the Imlib/Gdk-Imlib packages
| ii  libimlib21.4.0-1.2+lenny1
   powerful image loading and rendering library
| ii  libimlib2-dev1.4.0-1.2+lenny1
   Imlib2 development files
-- 
Tanaka Akira



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



Bug#619829: plasma-widget-translatoid: translation output is unreadable lots and lots of [ etc.

2011-03-27 Thread Martin Albrecht
Package: plasma-widget-translatoid
Version: 1.30-2
Severity: important

If I translate a string in translatoid, e.g. debian I get:

[[[debian,debian,,]],,de,,[[debian,[5],1,,998,0,1,0]],[[debian,5,[[debian,998,1,],[Ubuntu,0,1,]],[[0,6]],debian]]112,[]]

as output. It contains the correct information but is hardly readable making
translatoid as a quick translator relatively useless.



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages plasma-widget-translatoid depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.5.2-4  GCC support library
ii  libkdecore5   4:4.4.5-3  the KDE Platform Core Library
ii  libkdeui5 4:4.4.5-3  the KDE Platform User Interface Li
ii  libkio5   4:4.4.5-3  the Network-enabled File Managemen
ii  libplasma34:4.4.5-3  the Plasma Library for the KDE Pla
ii  libqjson0 0.7.1-1qt-based library that maps JSON da
ii  libqt4-dbus   4:4.6.3-4  Qt 4 D-Bus module
ii  libqt4-network4:4.6.3-4  Qt 4 network module
ii  libqt4-sql4:4.6.3-4  Qt 4 SQL module
ii  libqt4-svg4:4.6.3-4  Qt 4 SVG module
ii  libqt4-xml4:4.6.3-4  Qt 4 XML module
ii  libqtcore44:4.6.3-4  Qt 4 core module
ii  libqtgui4 4:4.6.3-4  Qt 4 GUI module
ii  libsolid4 4:4.4.5-3  Solid Library for KDE Platform
ii  libstdc++64.5.2-4The GNU Standard C++ Library v3

plasma-widget-translatoid recommends no packages.

Versions of packages plasma-widget-translatoid suggests:
ii  espeak   1.44.05-1   A multi-lingual software speech sy
ii  festival 1:2.1~release-1 General multi-lingual speech synth

-- 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#619830: autoreconf not regenerating build system

2011-03-27 Thread Alastair McKinstry

Package: autoconf
Message-ID:20110327144419.14433.57653.report...@ailm.sceal.ie
X-Mailer: reportbug 4.12.6
Date: Sun, 27 Mar 2011 15:44:19 +0100

Version: 2.67-2
Severity: important
Tags: sid

I now maintain two packages that FTBFS due to autoconf changes.
They call 'autoreconf -fiv' after patches are applied to Makefile.am , etc.
The errors are:

autoreconf -fiv
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I config
acinclude.m4:654: the serial number must appear before any macro definition
acinclude.m4:7419: the serial number must appear before any macro definition
acinclude.m4:7452: the serial number must appear before any macro definition
acinclude.m4:7612: the serial number must appear before any macro definition
acinclude.m4:7681: the serial number must appear before any macro definition
acinclude.m4:7817: the serial number must appear before any macro definition
 647  [ax_cv_gcc_x86_cpuid_$1=unknown; rm -f conftest_cpuid],
acinclude.m4:7842: the serial number must appear before any macro definition
acinclude.m4:7869: the serial number must appear before any macro definition
acinclude.m4:7922: the serial number must appear before any macro definition
acinclude.m4:7983: the serial number must appear before any macro definition
acinclude.m4:8198: the serial number must appear before any macro definition
acinclude.m4:8289: the serial number must appear before any macro definition
acinclude.m4:14: error: this file was generated for autoconf 2.61.
You have another version of autoconf.  If you want to use that,
you should regenerate the build system entirely.
acinclude.m4:14: the top level
autom4te: /usr/bin/m4 failed with exit status: 63
aclocal: /usr/bin/autom4te failed with exit status: 63
autoreconf: aclocal failed with exit status: 63
make[1]: *** [override_dh_auto_configure] Error 63

I thought that the purpose of autoreconf_was_  to regenerate the build system.
Why does it not do so, and how should this bug be fixed?


--
Alastair McKinstry  ,alast...@sceal.ie  ,mckins...@debian.org 
http://blog.sceal.ie

Anyone who believes exponential growth can go on forever in a finite world
is either a madman or an economist - Kenneth Boulter, Economist.





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



Bug#581002: texlive-science-doc: `ozguide.dvi.gz` damaged.

2011-03-27 Thread Hilmar Preusse
On 10.05.10 Paul Menzel (pm.deb...@googlemail.com) wrote:

Hi Paul,

 I investigated a crash of Evince when running `texdoc objectz` [1]
 a little more.  It looks like the archive is damaged.  Evince does
 not crash anymore.
 
 $ texdoc objectz
 ** (evince:25086): WARNING **: Fehler beim Untersuchen der Datei 
 /tmp/texdoc.RkTZLz/ozguide.dvi mit fstat(): Datei oder Verzeichnis nicht 
 gefunden
 ** (evince:25086): WARNING **: Fehler beim Setzen der Metadaten der 
 Datei: Datei oder Verzeichnis nicht gefunden
 ** (evince:25086): WARNING **: Fehler beim Setzen der Metadaten der 
 Datei: Datei oder Verzeichnis nicht gefunden
 
This looks like #591781.

 Looking at [2] I get
 
 $ gunzip ozguide.dvi.gz 
 gzip: ozguide.dvi.gz: Too many levels of symbolic links
 
 and File Roller can also not handle this archive.
 
This could be a bug/limitation of gzip. Did you contacted the gzip
people already? If yes, did you get an answer.

Further I think that both issue are independend of each other.

Thanks,
  Hilmar
-- 
sigmentation fault


signature.asc
Description: Digital signature


Bug#619805: [linux-2.6] No irq handler for vector (irq -1) after suspend-to-disk

2011-03-27 Thread Ben Hutchings
On Sun, 2011-03-27 at 17:09 +0200, Kolja Brix wrote:
 Dear Ben,
 
 On 27.03.11 16:54 Ben Hutchings wrote:
 
  After a suspend-to-disk operation, the kernel every 5 minutes reports the
  following error:
  kernel:[34668.309779] do_IRQ: 0.74 No irq handler for vector (irq -1)
 
  Send a full log, please.
 
 of course I will send you all data that you need. But what does full 
 log mean in this case? What files do you need?

Output of the 'dmesg' command.

The output of 'lspci -vnn' may also be helpful.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#619807: calibre: missing build depedency on libboost1.42-dev

2011-03-27 Thread Martin Pitt
severity 619807 normal
tag 619807 moreinfo
thanks

Hello Cyril,

Cyril Chaboisseau [2011-03-27 12:09 +0200]:
 when building the calibre package, there is an error concerning a
 missing boost/config.hpp file

It doesn't fail to build on either my system, or the official buildds.
Please see

  
https://buildd.debian.org/fetch.cgi?pkg=calibrearch=i386ver=0.7.50%2Bdfsg-1stamp=1301041555file=logas=raw

as an example, and there is no error message about boost.

Can you please give some more details about this, perhaps with a build
log?

Thanks,

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (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#619831: gpart + amd64 + cant build from source (patch attached)

2011-03-27 Thread Harish Badrinath
Package: gpart
Version: 0.1h-11+b1
Severity: important
Tags: patch


The patches are based on 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=397632#15, with some changes 
made, to compile without errors 
(one of those patches did not suceed on this sytem).Most of the patch is for 
amd64 specific fix, except for the #includeerrno.h part
of the patch :). I have verified sucessful compilation on this machine.

Hope this helps,
Harish Badrinath

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

Kernel: Linux 2.6.32-5-amd64
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gpart depends on:
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib

gpart recommends no packages.

gpart suggests no packages.

-- no debconf information
diff -Naurp gpart.orig/src/disku.c gpart-0.1h/src/disku.c
--- gpart.orig/src/disku.c	2001-02-07 19:04:07.0 +
+++ gpart-0.1h/src/disku.c	2011-03-27 14:42:54.0 +
@@ -22,6 +22,7 @@
 #include gpart.h
 
 #if defined(__linux__)
+#include errno.h
 #include sys/mount.h
 #include linux/hdreg.h
 #endif
diff -Naurp gpart.orig/src/gm_ntfs.h gpart-0.1h/src/gm_ntfs.h
--- gpart.orig/src/gm_ntfs.h	2001-01-29 20:33:58.0 +
+++ gpart-0.1h/src/gm_ntfs.h	2011-03-27 14:40:29.0 +
@@ -29,17 +29,16 @@
 /* 'NTFS' in little endian */
 #define NTFS_SUPER_MAGIC	0x5346544E
 
-#if defined(i386) || defined(__i386__) || defined(__alpha__)
+#include stdint.h
 
 /* unsigned integral types */
 #ifndef NTFS_INTEGRAL_TYPES
 #define NTFS_INTEGRAL_TYPES
-typedef unsigned char		ntfs_u8;
-typedef unsigned short		ntfs_u16;
-typedef unsigned int		ntfs_u32;
-typedef s64_t			ntfs_u64;
+typedef uint8_t		ntfs_u8;
+typedef uint16_t	ntfs_u16;
+typedef uint32_t	ntfs_u32;
+typedef uint64_t	ntfs_u64;
 #endif /* NTFS_INTEGRAL_TYPES */
-#endif /* defined(i386) || defined(__i386__) || defined(__alpha__) */
 
 
 /* Macros reading unsigned integers from a byte pointer */
@@ -53,8 +52,5 @@ typedef s64_t			ntfs_u64;
 /* Macros reading signed integers, returning int */
 #define NTFS_GETS8(p)		((int)(*(char*)(p)))
 #define NTFS_GETS16(p)		((int)(*(short*)(p)))
-#define NTFS_GETS24(p)		(NTFS_GETU24(p)  0x80 ? (int)NTFS_GETU24(p) :
-
-
 
 #endif /* _GM_NTFS_H */
diff -Naurp gpart.orig/src/gpart.h gpart-0.1h/src/gpart.h
--- gpart.orig/src/gpart.h	2001-01-30 23:07:29.0 +
+++ gpart-0.1h/src/gpart.h	2011-03-27 14:42:29.0 +
@@ -22,8 +22,9 @@
 
 #define PROGRAM		gpart
 
+#include stdint.h
 
-typedef unsigned char byte_t;
+typedef uint8_t byte_t;
 
 
 
@@ -31,7 +32,7 @@ typedef unsigned char byte_t;
  * endianness (incomplete, later)
  */
 
-#if defined(__i386__) || defined(__alpha__)
+#if defined(__i386__) || defined(__amd64__) || defined(__alpha__)
 #	define le16(x)	(x)		/* x as little endian */
 #	define be16(x)	x)0xff00)8)			| \
 			(((x)0x00ff)8))
@@ -112,8 +113,8 @@ typedef struct
 	byte_t		p_ehd;		/* end head */
 	byte_t		p_esect;	/* end sector */
 	byte_t		p_ecyl;		/* end cylinder */
-	unsigned long	p_start;	/* start sector (absolute) */
-	unsigned long	p_size;		/* # of sectors */
+	uint32_t	p_start;	/* start sector (absolute) */
+	uint32_t	p_size;		/* # of sectors */
 } dos_part_entry;
 
 
@@ -123,7 +124,7 @@ typedef struct dos_pt
 	byte_t		_align[2];
 	byte_t		t_boot[DOSPARTOFF];
 	dos_part_entry	t_parts[NDOSPARTS];
-	unsigned short	t_magic;	/* DOSPTMAGIC */
+	uint16_t	t_magic;	/* DOSPTMAGIC */
 } dos_part_table;


Bug#607252: texlive-extra: Please install latex2man, eplain info pages.

2011-03-27 Thread Hilmar Preuße
severity 607252 wishlist
merge 607252 593204
tags 593204 - patch
stop

On 16.12.10 أحمد المحمودي (aelmahmo...@sabily.org) wrote:

 Package: texlive-extra
 Version: 2009-10
 Severity: normal
 Tags: patch
 User: ubuntu-de...@lists.ubuntu.com
 Usertags: origin-ubuntu maverick ubuntu-patch
 
 *** /tmp/tmpzJCJeX
 In Ubuntu, we've applied the attached patch to achieve the following:
 
 - Install latex2man, eplain info pages.
 
 We thought you might be interested in doing the same. 
 
You're to late. This was already reported - merging.

As explained in #593204, the patch is useless for us - removing tag.

H.
-- 
sigmentation fault



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



Bug#618675: postgresql: Please include systemd service file

2011-03-27 Thread Martin Pitt
reassign 618675 postgresql-common 114
tag 618675 moreinfo
tag 618675 -patch
thanks

Hello Michael,

Michael Stapelberg [2011-03-17 15:09 +0100]:
 Package: postgresql

Reassigning to postgresql-common, as the script looks like being
inteded to be version independent (just like the current init.d
script).

 Also, it starts quite a bit faster due to not having to run a shell
 script and a perl script (pg_ctlcluster).

This does need to use pg_ctlcluster, I'm afraid. With the proposed
service file you'd break the postgresql-common structure completely,
i. e. it disregards multiple clusters, cluster owners, data
dir/start.conf and other configuration, and also circumvent the sanity
checks.

Thanks,

Martin

-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)


signature.asc
Description: Digital signature


Bug#550352: BLECH! Spoke to soon

2011-03-27 Thread Dominique Brazziel
The problem still exists, I had just failed
to trigger it with certain videos.  SSDD.




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



Bug#616180: postgresql-9.0: FTBFS on sparc64, testsuite issues with int8

2011-03-27 Thread Martin Pitt
tag 616180 fixed-upstream
thanks

Hello Aurelien,

Aurelien Jarno [2011-03-02 23:49 +0100]:
 postgresql-9.0 fails to build on sparc64 due to testsuite errors with 
 int8. The division by 0 is not trapped and a SIGFPE is issued instead of
 an error.

Thanks for this! 

I discussed that with upstream, and the fix is in upstream git now:

  
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=72330995a52fb7a3fbdc666aebc0402cdcbc9af8

(It's also in the 9.0 branch)

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)


signature.asc
Description: Digital signature


Bug#595651: GStreamer packages should not depend on gconf, nor recommend gvfs

2011-03-27 Thread Sebastian Dröge
On Sun, 2011-03-27 at 16:19 +0200, Eckhart Wörner wrote:
 Hi,
 
 note that KDE upstream recommends gstreamer as the default backend for 
 phonon. 
 Since phonon-backend-gstreamer depends on gstreamer0.10-plugins-base this bug 
 affects quite a lot of users.

Ok, I'll split the gconf plugin into its own package with the next
upload. I don't see the problem with the gio plugin and gvfs though,
it's only a Recommends, no Depends. You can safely remove gvfs if you
don't need it.


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


Bug#619825: [buildd-tools-devel] Bug#619825: schroot: loopback type maximum file size on 32bit

2011-03-27 Thread Roger Leigh
On Sun, Mar 27, 2011 at 03:50:32PM +0100, Adam Guthrie wrote:
 Package: schroot
 Version: 1.4.7-1ubuntu0.1
 Severity: normal
 
 adam@whiteowl:~$ schroot -c natty-i386
 E: /srv/chroot/natty-i386: Failed to stat file: Value too large for defined 
 data type

This is rather odd.  From the stat(2) manual page:

   EOVERFLOW
  (stat())  path refers to a file whose size cannot be represented
  in the type off_t.  This can occur when an application  compiled
  on a 32-bit platform without -D_FILE_OFFSET_BITS=64 calls stat()
  on a file whose size exceeds (231)-1 bits.

So, we don't currently build with -D_FILE_OFFSET_BITS=64 on any
platform.  However, this shouldn't be a problem--the file is nowhere
near the limit, being only a tiny configuration file.

Has the Ubuntu kernel/libc removed the 32 bit interfaces in favour of
the 64 bit ones, rather than supporting both.  Or have you built a
custom kernel/libc without 32 bit interfaces?

If you were to build schroot setting CFLAGS='-D_FILE_OFFSET_BITS=64',
does this fix the problem?  If it does, I'll be happy to do this by
default; however, I'd like to find out exactly why it's failing first.


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.


signature.asc
Description: Digital signature


  1   2   3   >