Bug#665435: cups: too much memory consumption in default configuration (swaps out, brings print server to a crawl)

2012-03-24 Thread Jonathan Nieder
Package: cups
Version: 1.5.2-8
Tags: upstream

Hi,

Trying to use cups with the hpcups driver as a print server, I found
that printing anything (e.g., a test page) with nothing else happening
would slow the server to a crawl.  top shows gs using 200 MiB or so
of address space, with ~130 MiB resident; free shows nonzero swap
usage but not terrible.   This machine has only 150 MiB of RAM to work
with, so anything more than 100 MiB is a lot of memory for one
application to ask for.

With RIPCache 16m in /etc/cups/cupsd.conf the system seems to be
sane again and printing is still working fine.

changelog.Debian.gz says

 cups (1.4.1-2) unstable; urgency=low

   * Add dynamic-default-ripcache-size.dpatch: Replace above functionality by
 setting the internal default value of RIPCache to MemTotal/4, if not given
 in the configuration file.

which sounds promising, but then I see the actual code:

  cupsdSetString(RIPCache, 128m);

Perhaps this functionality was ripped out.

Intentional?

Thanks for making printing on Linux possible.

Sincerely,
Jonathan



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



Bug#665435: cups: too much memory consumption in default configuration (swaps out, brings print server to a crawl)

2012-03-24 Thread Jonathan Nieder
tags 665435 + patch
quit

Jonathan Nieder wrote:

 With RIPCache 16m in /etc/cups/cupsd.conf the system seems to be
 sane again and printing is still working fine.

I think that might even make a good default.  Alternatively, how about
this patch (untested)?

Based on a suggestion from [1].

[1] http://thread.gmane.org/gmane.comp.printing.cups.general/26383/focus=26400

diff --git i/doc/help/ref-cupsd-conf.html.in w/doc/help/ref-cupsd-conf.html.in
index ce0ec8f6..f88912ec 100644
--- i/doc/help/ref-cupsd-conf.html.in
+++ w/doc/help/ref-cupsd-conf.html.in
@@ -2707,8 +2707,8 @@ RIPCache 2048k
 memory cache used by Raster Image Processor (RIP) filters such
 as CODEimagetoraster/CODE and CODEpstoraster/CODE. The
 size can be suffixed with a k for kilobytes, m for megabytes,
-or g for gigabytes. The default cache size is 128m, or 128
-megabytes./P
+or g for gigabytes. The default cache size is auto, which
+means to set the cache size dynamically./P
 
 
 H2 CLASS=titleSPAN CLASS=infoCUPS 1.1.16/SPANA 
NAME=RootCertDurationRootCertDuration/A/H2
diff --git i/scheduler/conf.c w/scheduler/conf.c
index 98770d49..02247cd3 100644
--- i/scheduler/conf.c
+++ w/scheduler/conf.c
@@ -546,7 +546,7 @@ cupsdReadConfiguration(void)
 
   cupsdClearString(DefaultPaperSize);
 
-  cupsdSetString(RIPCache, 128m);
+  cupsdSetString(RIPCache, auto);
 
   cupsdSetString(TempDir, NULL);
 
diff --git i/scheduler/cupsfilter.c w/scheduler/cupsfilter.c
index 9f21a52b..f99531ed 100644
--- i/scheduler/cupsfilter.c
+++ w/scheduler/cupsfilter.c
@@ -1338,7 +1338,7 @@ read_cupsd_conf(const char *filename) /* I - File to 
read */
   else
 set_string(FontPath, CUPS_FONTPATH);
 
-  set_string(RIPCache, 128m);
+  set_string(RIPCache, auto);
 
   if ((temp = getenv(CUPS_SERVERBIN)) != NULL)
 set_string(ServerBin, temp);



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



Bug#665436: PHP no longer usable

2012-03-24 Thread jidanni
Package: apache2
Version: 2.4.1-2
Severity: grave

# a2enmod php5
Enabling module php5.
To activate the new configuration, you need to run:
  service apache2 restart
# service apache2 restart
apache2: Syntax error on line 161 of /etc/apache2/apache2.conf: Syntax error on 
line 1 of /etc/apache2/mods-enabled/php5.load: Cannot load 
/usr/lib/apache2/modules/libphp5.so into server: 
/usr/lib/apache2/modules/libphp5.so: cannot open shared object file: No such 
file or directory
Action 'configtest' failed.
The Apache error log may have more information.

# set libapache2-mod-php5
# aptitude install $@
The following NEW packages will be installed:

  apache2-mpm-prefork{a} (D: libapache2-mod-php5, R: apache2-doc, R: 
phpmyadmin, R: wdg-html-validator) (for )
  apache2.2-bin{a} (D: apache2-mpm-prefork, D: apache2.2-common, R: 
apache2-bin) (for libapache2-mod-php5)
  apache2.2-common{a} (D: apache2-mpm-prefork, D: libapache2-mod-php5, R: 
apache2, R: apache2-bin, R: apache2-data) (for libapache2-mod-php5)
  libapache2-mod-php5
0 packages upgraded, 4 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/4,369 kB of archives. After unpacking 12.1 MB will be used.
The following packages have unmet dependencies:
  apache2-data: Conflicts: apache2.2-common but 2.2.22-2 is to be installed.
  apache2: Conflicts: apache2.2-common but 2.2.22-2 is to be installed.
  apache2-bin: Conflicts: apache2.2-bin but 2.2.22-2 is to be installed.
   Conflicts: apache2.2-common but 2.2.22-2 is to be installed.
The following actions will resolve these dependencies:

 Remove the following packages:
1) apache2
2) apache2-bin
3) apache2-data



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



Bug#596176: [rt.cpan.org #61200] IPv6 support for HTTP::Server::Simple

2012-03-24 Thread Daniel Kahn Gillmor
Attached is a a patch for HTTP::Server::Simple that i believe implements
proper IPv6 support without adding any non-core dependencies.  It keeps
the same interface changes as the original patch by Mats (optional
$family argument to new(), new family() method on the object, all
defaulting to AF_INET).

The patch also modifies the test suite to perform IPv4 and IPv6 tests.

I've tested it and it works against perl 5.14 (i think that's Socket
1.94), but it fails against perl 5.10 (Socket 1.82, afaict).  I can't
find the full history of Socket to figure out where the relevant symbols
(Socket::IN6ADDR_ANY and Socket::getaddrinfo) were added.

Maybe you want to also make the use Socket; line have a version number
if you know the correct cutoff.

Please let me know if you have any trouble or concerns with it, or if
you need me to modify it some way to consider accepting it.

Regards,

--dkg

diff --git a/lib/HTTP/Server/Simple.pm b/lib/HTTP/Server/Simple.pm
index 50479ae..5905d55 100755
--- a/lib/HTTP/Server/Simple.pm
+++ b/lib/HTTP/Server/Simple.pm
@@ -124,15 +124,17 @@ could kill the server.
 
 =head1 METHODS
 
-=head2 HTTP::Server::Simple-new($port)
+=head2 HTTP::Server::Simple-new($port, $family)
 
 API call to start a new server.  Does not actually start listening
-until you call C-Egtrun().  If omitted, C$port defaults to 8080.
+until you call C-Egtrun().  If omitted, C$port defaults to 8080,
+and C$family defaults to LSocket::AF_INET.
+The alternative domain is LSocket::AF_INET6.
 
 =cut
 
 sub new {
-my ( $proto, $port ) = @_;
+my ( $proto, $port, $family ) = @_;
 my $class = ref($proto) || $proto;
 
 if ( $class eq __PACKAGE__ ) {
@@ -143,6 +145,7 @@ sub new {
 my $self = {};
 bless( $self, $class );
 $self-port( $port || '8080' );
+$self-family( $family || AF_INET );
 
 return $self;
 }
@@ -151,7 +154,7 @@ sub new {
 =head2 lookup_localhost
 
 Looks up the local host's IP address, and returns it.  For most hosts,
-this is C127.0.0.1.
+this is C127.0.0.1, or possibly C::1.
 
 =cut
 
@@ -159,9 +162,14 @@ sub lookup_localhost {
 my $self = shift;
 
 my $local_sockaddr = getsockname( $self-stdio_handle );
-my ( undef, $localiaddr ) = sockaddr_in($local_sockaddr);
-$self-host( gethostbyaddr( $localiaddr, AF_INET ) || localhost);
-$self-{'local_addr'} = inet_ntoa($localiaddr) || 127.0.0.1;
+my $local_family = sockaddr_family($local_sockaddr);
+my ( undef, $localiaddr ) =
+($local_family == AF_INET6) ? sockaddr_in6($local_sockaddr)
+: sockaddr_in($local_sockaddr);
+
+$self-host( gethostbyaddr( $localiaddr, $local_family ) || localhost);
+$self-{'local_addr'} = Socket::inet_ntop($local_family, $localiaddr)
+|| (($local_family == AF_INET6) ? ::1 : 127.0.0.1);
 }
 
 
@@ -180,6 +188,31 @@ sub port {
 
 }
 
+=head2 family [NUMBER]
+
+Takes an optional address family for this server to use.  Valid values
+are Socket::AF_INET and Socket::AF_INET6.  All other values are silently
+changed into Socket::AF_INET for backwards compatibility with previous
+versions of the module.
+
+Returns the address family of the present listening socket.  (Defaults to
+Socket::AF_INET.)
+
+=cut
+
+sub family {
+my $self = shift;
+if (@_) {
+if ($_[0] == AF_INET || $_[0] == AF_INET6) {
+$self-{'family'} = shift;
+} else {
+$self-{'family'} = AF_INET;
+}
+}
+return ( $self-{'family'} );
+
+}
+
 =head2 host [address]
 
 Takes an optional host address for this server to bind to.
@@ -359,8 +392,15 @@ sub _process_request {
 # ( http://dev.catalyst.perl.org/changeset/5195, 5221 )
 
 my $remote_sockaddr = getpeername( $self-stdio_handle );
-my ( $iport, $iaddr ) = $remote_sockaddr ? sockaddr_in($remote_sockaddr) : (undef,undef);
-my $peeraddr = $iaddr ? ( inet_ntoa($iaddr) || 127.0.0.1 ) : '127.0.0.1';
+my $family = sockaddr_family($remote_sockaddr);
+
+my ( $iport, $iaddr ) = $remote_sockaddr 
+? ( ($family == AF_INET6) ? sockaddr_in6($remote_sockaddr)
+  : sockaddr_in($remote_sockaddr) )
+: (undef,undef);
+
+my $loopback = ($family == AF_INET6) ? ::1 : 127.0.0.1;
+my $peeraddr = $iaddr ? ( Socket::inet_ntop($family, $iaddr) || $loopback ) : $loopback;
 
 my ( $method, $request_uri, $proto ) = $self-parse_request;
 
@@ -650,18 +690,34 @@ sub setup_listener {
 my $self = shift;
 
 my $tcp = getprotobyname('tcp');
-socket( HTTPDaemon, PF_INET, SOCK_STREAM, $tcp ) or croak socket: $!;
+my $sockaddr;
+socket( HTTPDaemon, $self-{'family'}, SOCK_STREAM, $tcp )
+or croak socket: $!;
 setsockopt( HTTPDaemon, SOL_SOCKET, SO_REUSEADDR, pack( l, 1 ) )
 or warn setsockopt: $!;
-bind( 

Bug#665437: wishlist: editing the msg content (attached)

2012-03-24 Thread yelloprotoss
Package: mutt
Version: 1.5.20-9+squeeze1
Severity: wishlist

Dear Sear,

I create an email to send with m

then I type my emailto, subject, and message.

using nano

then I save the message content with this nano.

OK 

now email is ready to be sent


I just have to press y to make it sent

ohhh... I just noticed that my message content with with some mistakes.

I wanna modify it ...

too bad. Mutt does not allow that or it is not display on the top of the screen 
(into status blue bar) how to edit it

I cannot edit ... buuu 


Would you please add some more info on the top of hte screen to edit like with 
E if possible. 


Thank you so much !

Yours sincerely.


-- Package-specific info:
Mutt 1.5.20 (2009-06-14)
Copyright (C) 1996-2009 Michael R. Elkins and others.
Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.
Mutt is free software, and you are welcome to redistribute it
under certain conditions; type `mutt -vv' for details.

System: Linux 2.6.32-5-686 (i686)
ncurses: ncurses 5.7.20100313 (compiled with 5.7)
libidn: 1.15 (compiled with 1.15)
hcache backend: tokyocabinet 1.4.37
Compile options:
-DOMAIN
+DEBUG
-HOMESPOOL  +USE_SETGID  +USE_DOTLOCK  +DL_STANDALONE  +USE_FCNTL  -USE_FLOCK   
+USE_POP  +USE_IMAP  +USE_SMTP  
-USE_SSL_OPENSSL  +USE_SSL_GNUTLS  +USE_SASL  +USE_GSS  +HAVE_GETADDRINFO  
+HAVE_REGCOMP  -USE_GNU_REGEX  
+HAVE_COLOR  +HAVE_START_COLOR  +HAVE_TYPEAHEAD  +HAVE_BKGDSET  
+HAVE_CURS_SET  +HAVE_META  +HAVE_RESIZETERM  
+CRYPT_BACKEND_CLASSIC_PGP  +CRYPT_BACKEND_CLASSIC_SMIME  +CRYPT_BACKEND_GPGME  
-EXACT_ADDRESS  -SUN_ATTACHMENT  
+ENABLE_NLS  -LOCALES_HACK  +COMPRESSED  +HAVE_WC_FUNCS  +HAVE_LANGINFO_CODESET 
 +HAVE_LANGINFO_YESEXPR  
+HAVE_ICONV  -ICONV_NONTRANS  +HAVE_LIBIDN  +HAVE_GETSID  +USE_HCACHE  
-ISPELL
SENDMAIL=/usr/sbin/sendmail
MAILPATH=/var/mail
PKGDATADIR=/usr/share/mutt
SYSCONFDIR=/etc
EXECSHELL=/bin/sh
MIXMASTER=mixmaster
To contact the developers, please mail to mutt-...@mutt.org.
To report a bug, please visit http://bugs.mutt.org/.

misc/am-maintainer-mode
misc/hg.pmdef.debugtime
debian-specific/build_doc_adjustments.diff
features/ifdef
features/xtitles
features/trash-folder
features/purge-message
features/sensible_browser_position
features-old/patch-1.5.4.vk.pgp_verbose_mime
features/compressed-folders
features/compressed-folders.debian
debian-specific/Muttrc
debian-specific/Md.etc_mailname_gethostbyname.diff
debian-specific/use_usr_bin_editor.diff
debian-specific/correct_docdir_in_man_page.diff
debian-specific/dont_document_not_present_features.diff
debian-specific/document_debian_defaults
debian-specific/assumed_charset-compat
debian-specific/467432-write_bcc.patch
misc/define-pgp_getkeys_command.diff
misc/gpg.rc-paths
misc/smime.rc
upstream/533209-mutt_perror.patch
upstream/533459-unmailboxes.patch
upstream/533439-mbox-time.patch
upstream/531430-imapuser.patch
upstream/534543-imap-port.patch
upstream/538128-mh-folder-access.patch
upstream/537818-emptycharset.patch
upstream/535096-pop-port.patch
upstream/542910-search-segfault.patch
upstream/533370-pgp-inline.patch
upstream/533520-signature-highlight.patch
upstream/393926-internal-viewer.patch
upstream/543467-thread-segfault.patch
upstream/544180-italian-yesorno.patch
upstream/542817-smimekeys-tmpdir.patch
upstream/544794-smtp-batch.patch
upstream/537694-segv-imap-headers.patch
upstream/548577-gpgme-1.2.patch
upstream/548494-swedish-intl.patch
upstream/553321-ansi-escape-segfault.patch
upstream/553238-german-intl.patch
upstream/557395-muttrc-crypto.patch
upstream/545316-header-color.patch
upstream/568295-references.patch
upstream/547980-smime_keys-chaining.patch
upstream/528233-readonly-open.patch
upstream/228671-pipe-mime.patch
upstream/383769-score-match.patch
upstream/547739-manual-typos.patch
upstream/311296-rand-mktemp.patch
upstream/573823-imap_internal_date
upstream/542344-dont_fold_From_
upstream/537061-dont-recode-saved-attachments.patch
upstream/path_max
misc/hyphen-as-minus.patch
misc/smime_keys-manpage.patch
mutt.org

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

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

Versions of packages mutt depends on:
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libcomerr2  1.41.12-4stable1 common error description library
ii  libgnutls26 2.8.6-1  the GNU TLS library - runtime libr
ii  libgpg-error0   1.6-1library for common error values an
ii  libgpgme11  1.2.0-1.2GPGME - GnuPG Made Easy
ii  libgssapi-krb5-21.8.3+dfsg-4squeeze1 MIT Kerberos runtime libraries - k
ii  libidn111.15-2   GNU Libidn library, implementation
ii  libk5crypto31.8.3+dfsg-4squeeze1 MIT Kerberos runtime libraries - C
ii  libkrb5-3 

Bug#665437: wishlist: editing the msg content (attached)

2012-03-24 Thread Jonathan Nieder
tags 665437 + upstream
quit

Hi!

yelloprotoss wrote:

 I just have to press y to make it sent

 ohhh... I just noticed that my message content with with some
 mistakes.

 I wanna modify it ...

 too bad. Mutt does not allow that or it is not display on the top of
 the screen (into status blue bar) how to edit it

 I cannot edit ... buuu 

Thanks.

Care to suggest a patch?  It works like this:

# mutt development environment
apt-get build-dep mutt
apt-get install devscripts git build-essential
debcheckout mutt
cd mutt

# patch, rev1
git grep -e 'Send'
nano compose.c
nano debian/changelog

# testing
debian/rules build
fakeroot debian/rules binary
dpkg -i ../name of package
mutt; # looks good?

# rev2
nano compose.c
... etc ...

# looks good?
git diff

# save patch and email it
git diff my-excellent-patch
mutt

Hope that helps,
Jonathan



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



Bug#658230: fping: new upstream version

2012-03-24 Thread Salvatore Bonaccorso
Hi Anibal

(this is not to put pressure or stress!)

I would like to ask, if it would be possible to have fping update
before the wheezy freeze (according to the Release Team this would be
around June). It would be great to have an updateded (with all patches
included) version of fping in Debian. Maybe 3.1 will be released too
in time for inclusing.

Best regards,
Salvatore


signature.asc
Description: Digital signature


Bug#655458: Patch for the l10n upload of vpb-driver

2012-03-24 Thread Christian PERRIER

Dear maintainer of vpb-driver,

On Thursday, March 15, 2012 I sent you a notice announcing my intent to upload 
an
NMU of your package to fix its pending l10n issues, after an initial
notice sent on Wednesday, March 14, 2012.

We finally agreed that you would do the update yourself at the end of
the l10n update round.

That time has come.

To help you out, here's the patch which I would have used for an NMU.
Please feel free to use all of it...or only the l10n part of it.

The corresponding changelog is:


Source: vpb-driver
Version: 4.2.54-1.1
Distribution: UNRELEASED
Urgency: low
Maintainer: Christian Perrier bubu...@debian.org
Date: Wed, 14 Mar 2012 07:13:18 +0100
Closes: 655458 664244
Changes: 
 vpb-driver (4.2.54-1.1) UNRELEASED; urgency=low
 .
   * Non-maintainer upload.
   * Fix pending l10n issues. Debconf translations:
   * Dutch; (Jeroen Schot).  Closes: #655458
   * Polish (Michał Kułach).  Closes: #664244

-- 


diff -Nru vpb-driver-4.2.54.old/debian/changelog vpb-driver-4.2.54/debian/changelog
--- vpb-driver-4.2.54.old/debian/changelog	2012-03-12 22:07:20.882707302 +0100
+++ vpb-driver-4.2.54/debian/changelog	2012-03-17 08:06:50.491451961 +0100
@@ -1,3 +1,12 @@
+vpb-driver (4.2.54-1.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Fix pending l10n issues. Debconf translations:
+  * Dutch; (Jeroen Schot).  Closes: #655458
+  * Polish (Michał Kułach).  Closes: #664244
+
+ -- Christian Perrier bubu...@debian.org  Wed, 14 Mar 2012 07:13:18 +0100
+
 vpb-driver (4.2.54-1) unstable; urgency=low
 
   * Don't build vtecho_fp at all anymore.  Nobody should need it now, and the
diff -Nru vpb-driver-4.2.54.old/debian/po/nl.po vpb-driver-4.2.54/debian/po/nl.po
--- vpb-driver-4.2.54.old/debian/po/nl.po	1970-01-01 01:00:00.0 +0100
+++ vpb-driver-4.2.54/debian/po/nl.po	2012-03-14 07:13:40.0 +0100
@@ -0,0 +1,51 @@
+# Dutch translation of vpb-driver debconf templates.
+# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the vpb-driver package.
+# Jeroen Schot sc...@a-eskwadraat.nl, 2012.
+#
+msgid 
+msgstr 
+Project-Id-Version: vpb-driver 4.2.54\n
+Report-Msgid-Bugs-To: vpb-dri...@packages.debian.org\n
+POT-Creation-Date: 2009-11-02 04:10+1030\n
+PO-Revision-Date: 2012-01-11 12:09+0100\n
+Last-Translator: Jeroen Schot sc...@a-eskwadraat.nl\n
+Language-Team: Debian l10n Dutch debian-l10n-du...@lists.debian.org\n
+Language: nl\n
+MIME-Version: 1.0\n
+Content-Type: text/plain; charset=UTF-8\n
+Content-Transfer-Encoding: 8bit\n
+
+#. Type: string
+#. Default
+#. Translators, you can find a list of the ITU-T codes here:
+#. http://en.wikipedia.org/wiki/List_of_country_calling_codes
+#. This is the prefix someone would dial to make an international call to a
+#. phone in the region you are translating for, without any long distance call
+#. prefix numbers that are specific to the telephone exchange being called from.
+#. Feel free to alter the examples given to other regions if appropriate, but do
+#. try to pick regions with numeric codes that are not easily confused with some
+#. other numeric series than the ITU-T codes.
+#: ../libvpb0.templates:1001
+msgid 61
+msgstr 31
+
+#. Type: string
+#. Description
+#: ../libvpb0.templates:1002
+msgid ITU-T telephone code:
+msgstr ITU-T telefonie-landnummer:
+
+#. Type: string
+#. Description
+#: ../libvpb0.templates:1002
+msgid 
+This is the numeric code for the region your phone system will be operating 
+in (eg. 61 for Australia or 33 for France).  It is used to configure the 
+default regional standards that Voicetronix telephony hardware should comply 
+with.
+msgstr 
+Dit is de numerieke code voor de regio waarin uw telefoonsysteem zal werken 
+(bv. 31 voor Nederland of 32 voor België). Dit wordt gebruikt om de juiste 
+regionale standaarden in te stellen waaraan de Voicetronix 
+telefoonapparatuur aan moet voldoen.
diff -Nru vpb-driver-4.2.54.old/debian/po/pl.po vpb-driver-4.2.54/debian/po/pl.po
--- vpb-driver-4.2.54.old/debian/po/pl.po	1970-01-01 01:00:00.0 +0100
+++ vpb-driver-4.2.54/debian/po/pl.po	2012-03-17 08:06:50.0 +0100
@@ -0,0 +1,54 @@
+# Translation of vpb-driver debconf templates to Polish.
+# Copyright (C) 2009
+# This file is distributed under the same license as the vpb-driver package.
+#
+# Michał Kułach michal.kul...@gmail.com, 2012.
+msgid 
+msgstr 
+Project-Id-Version: \n
+Report-Msgid-Bugs-To: vpb-dri...@packages.debian.org\n
+POT-Creation-Date: 2009-11-02 04:10+1030\n
+PO-Revision-Date: 2012-03-17 01:10+0100\n
+Last-Translator: Michał Kułach michal.kul...@gmail.com\n
+Language-Team: Polish debian-l10n-pol...@lists.debian.org\n
+Language: pl\n
+MIME-Version: 1.0\n
+Content-Type: text/plain; charset=UTF-8\n
+Content-Transfer-Encoding: 8bit\n
+X-Generator: Lokalize 1.2\n
+Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10=2  n%10=4  (n%10010 
+|| n%100=20) ? 1 : 2);\n
+
+#. Type: string
+#. Default
+#. Translators, you can find a list of the ITU-T 

Bug#664767: Brcmsmac driver woes, possible regression?

2012-03-24 Thread Jonathan Nieder
Camaleón wrote:

 http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.3.tar.bz2

 And got another trace

 Mar 23 17:50:08 stt300 kernel: [  112.280060] [ cut here 
 ]
 Mar 23 17:50:08 stt300 kernel: [  112.280123] WARNING: at 
 drivers/net/wireless/brcm80211/brcmsmac/main.c:7998 
 brcms_c_wait_for_tx_completion+0x73/0x7d [brcmsmac]()
[...]
 Should I install a different kernel?

Thanks.  Nah.  Could you send a summary of the symptoms to
linux-wirel...@vger.kernel.org, cc-ing Stanislaw Gruszka
sgrus...@redhat.com, Arend van Spriel ar...@broadcom.com,
and either me or this bug log so we can track it?

Be sure to mention:

 - steps to reproduce the problem, expected result, actual result,
   and how the difference indicates a bug (should be simple here :))
 - how reproducible it is (40%? 100%?)
 - which kernel versions you have tested and what happened with each
 - full dmesg output from booting and reproducing the bug, as an
   attachment
 - any workarounds or other weird observations
 - a pointer to http://bugs.debian.org/664767 for the backstory

Hopefully they might have commands to run or a patch to try to track
down what is going wrong.

Thanks, and sorry for the trouble.
Jonathan



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



Bug#664630: PC/SC-software and card reader REINER-SCT Cyberjack RFID komfort

2012-03-24 Thread Wolfgang Gruhn


Hello,

Am 23.03.2012 20:29, schrieb Ludovic Rousseau:


In http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664630#50 I see a
trace of the driver working correctly.
The card ATR is returned so every thing is working at the PC/SC level.


The Wheezy installation used in

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664630#50

contains the following packages:

libpcsclite1_1.8.2-1_amd64.deb
libccid_1.4.5-1_amd64.deb
pcscd_1.8.2-1_amd64.deb
libifd-cyberjack6_3.99.5final.SP03_amd64.deb

Tracing the PC/SC-operations and plugging in the card reader with its 
chip card indeed returns the card ATR, writing it to the console and to 
the log file. All seems correct. However, the green card reader LED is 
not enlightened. Corresponding to the manual of the manufactor 
REINER-SCT this means that something goes wrong. Moreover, the 
homebanking software Moneyplex refuses to work. Thus the log file 
mentionned above does not prove that all is OK.


Otherwise, a log file with bugs does not prove that homebanking is 
impossible. I will show you this with the following lines.


I generated a Wheezy installation using the following packages:

libpsclite1_1.5.5-4_amd64.deb
libccid_1.3.11-2_amd64.deb
pcscd_1.5.5-4_amd64.deb
libifd-cyberjack6_3.99.5final.SP03_amd64_d601a.deb

Here comes the trace belonging to the card reader:

root@wg-pc:/var/run/pcscd# LIBCCID_ifdLogLevel=0x000F pcscd --foreground 
--debug --apdu | tee log.txt

 debuglog.c:230:DebugLogSetLevel() debug level=debug
0096 debuglog.c:259:DebugLogSetCategory() Debug options: APDU
0641 pcscdaemon.c:512:main() pcsc-lite 1.5.5 daemon ready.
00323951 hotplug_libhal.c:318:get_driver() Looking a driver for VID: 
0x04A9, PID: 0x190A
3119 hotplug_libhal.c:318:get_driver() Looking a driver for VID: 
0x1D6B, PID: 0x0002
3900 hotplug_libhal.c:318:get_driver() Looking a driver for VID: 
0x1D6B, PID: 0x0001
3875 hotplug_libhal.c:318:get_driver() Looking a driver for VID: 
0x1D6B, PID: 0x0002
3901 hotplug_libhal.c:318:get_driver() Looking a driver for VID: 
0x03F0, PID: 0x8704
2363 hotplug_libhal.c:318:get_driver() Looking a driver for VID: 
0x03F0, PID: 0x8704
3093 hotplug_libhal.c:318:get_driver() Looking a driver for VID: 
0x1D6B, PID: 0x0001
26539276 hotplug_libhal.c:318:get_driver() Looking a driver for VID: 
0x0C4B, PID: 0x0501
0054 hotplug_libhal.c:366:HPAddDevice() Adding USB device: 
usb_device_c4b_501_0089477100_if0
01002979 readerfactory.c:1024:RFInitializeReader() Attempting startup of 
REINER SCT cyberJack RFID komfort (0089477100) 00 00 using 
/usr/lib/pcsc/drivers/libifd-cyberjack.bundle/Contents/Linux/libifd-cyberjack.so

CYBERJACK: Started
2956 readerfactory.c:877:RFBindFunctions() Loading IFD Handler 3.0
00015381 readerfactory.c:1050:RFInitializeReader() Open Port 20 
Failed 
(usb:0c4b/0501:libhal:/org/freedesktop/Hal/devices/usb_device_c4b_501_0089477100_if0)

0049 readerfactory.c:914:RFUnloadReader() Unloading reader driver.
0124 readerfactory.c:233:RFAddReader() REINER SCT cyberJack RFID 
komfort (0089477100) init failed.
1352 hotplug_libhal.c:461:HPAddDevice() trying libusb scheme with: 
usb:0c4b/0501:libusb:003:009
0051 readerfactory.c:1024:RFInitializeReader() Attempting startup of 
REINER SCT cyberJack RFID komfort (0089477100) 00 00 using 
/usr/lib/pcsc/drivers/libifd-cyberjack.bundle/Contents/Linux/libifd-cyberjack.so

CYBERJACK: Started
0875 readerfactory.c:877:RFBindFunctions() Loading IFD Handler 3.0
00027647 readerfactory.c:1050:RFInitializeReader() Open Port 20 
Failed (usb:0c4b/0501:libusb:003:009)

0057 readerfactory.c:914:RFUnloadReader() Unloading reader driver.
0129 readerfactory.c:233:RFAddReader() REINER SCT cyberJack RFID 
komfort (0089477100) init failed.
0034 hotplug_libhal.c:468:HPAddDevice() Failed adding USB device: 
usb_device_c4b_501_0089477100_if0


Don't give credit to the truth of these lines, as the green LED is 
flashing permanently and the homebanking software Moneyplex works 
correctly!!! Maybe the USB device was not added by HAL, but obviously by 
another service.


I am an old man with twice the age of yours and I wrote my first program 
in 1967. So you can imagine that I saw many paradox things while 
constructing compiler parts. But now I am tired and cannot afford much 
further efforts to solve this problem. In my mind, your disclosure that 
the new scheme libudev is not supported by ifd.cpp (in SP02-1 as well as 
in SP03) seems to point to the right direction.


Anyway, if you want to get further informations from me, then I ask you 
kindly to give me detailed instructions what to do, as I am not very 
proficient in modern debugging technics.


Au revoir

Wolfgang Gruhn





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



Bug#665388: libperlbal-xs-httpheaders-perl: FTBFS: C code doesn't load reliably

2012-03-24 Thread Niko Tyni
On Fri, Mar 23, 2012 at 01:44:23PM -0400, Aaron M. Ucko wrote:
 Source: libperlbal-xs-httpheaders-perl
 Version: 0.20-1
 Severity: serious
 Justification: fails to build from source
 
 Builds of libperlbal-xs-httpheaders-perl have failed on several
 architectures with errors of the form
 
   #   Failed test 'use Perlbal::XS::HTTPHeaders;'
   #   at t/HTTPHeaders.t line 10.
   # Tried to use 'Perlbal::XS::HTTPHeaders'.
   # Error:  Not a CODE reference at /usr/lib/perl/5.14/DynaLoader.pm line 
 207.

 There's no obvious pattern to the set of architectures on which the
 test fails, which includes (linux-)i386 and kfreebsd-amd64 but not
 (linux-)amd64, hurd-i386, or kfreebsd-i386, so I suspect that some
 sort of random factor may be involved; perhaps the C code isn't
 properly initializing some memory contents.  (If so, valgrind may be
 able to help catch the problem.)

Looks like at least some of the failures are due to the well known
CCFLAGS override bug discussed in
 https://rt.cpan.org/Public/Bug/Display.html?id=68613
-- 
Niko Tyni   nt...@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#664418: [PATCH] contextfree: Helping to update to packaging format 3.0

2012-03-24 Thread Bram Senders

On 17/03/12 19:08, jari.aa...@cante.net wrote:
[snip]

As we spoke before, here is the proposed NMU patch.


Thank you!


Let me know if there is anything that needs adjusting or if it is ok
to upload with these changes.


This is looking well, go ahead!

Regards,
Bram



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



Bug#664419: [PATCH] shoes: Helping to update to packaging format 3.0

2012-03-24 Thread Bram Senders

On 17/03/12 19:09, jari.aa...@cante.net wrote:

As we spoke before, here is the proposed NMU patch.


Thank you :-)


Let me know if there is anything that needs adjusting or if it is ok
to upload  with these changes.


This one is looking good as well, go ahead!

Bram



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



Bug#664630: PC/SC-software and card reader REINER-SCT Cyberjack RFID komfort

2012-03-24 Thread Ludovic Rousseau

Le 24/03/12 08:28, Wolfgang Gruhn a écrit :


Hello,

Am 23.03.2012 20:29, schrieb Ludovic Rousseau:


In http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664630#50 I see a
trace of the driver working correctly.
The card ATR is returned so every thing is working at the PC/SC level.


The Wheezy installation used in

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664630#50

contains the following packages:

libpcsclite1_1.8.2-1_amd64.deb
libccid_1.4.5-1_amd64.deb
pcscd_1.8.2-1_amd64.deb
libifd-cyberjack6_3.99.5final.SP03_amd64.deb

Tracing the PC/SC-operations and plugging in the card reader with its
chip card indeed returns the card ATR, writing it to the console and to
the log file. All seems correct. However, the green card reader LED is
not enlightened. Corresponding to the manual of the manufactor
REINER-SCT this means that something goes wrong. Moreover, the
homebanking software Moneyplex refuses to work. Thus the log file
mentionned above does not prove that all is OK.


And you forgot to attach the corresponding FULL log I asked :-(


Otherwise, a log file with bugs does not prove that homebanking is
impossible. I will show you this with the following lines.

I generated a Wheezy installation using the following packages:

libpsclite1_1.5.5-4_amd64.deb
libccid_1.3.11-2_amd64.deb
pcscd_1.5.5-4_amd64.deb
libifd-cyberjack6_3.99.5final.SP03_amd64_d601a.deb

Here comes the trace belonging to the card reader:

root@wg-pc:/var/run/pcscd# LIBCCID_ifdLogLevel=0x000F pcscd --foreground
--debug --apdu | tee log.txt
 debuglog.c:230:DebugLogSetLevel() debug level=debug
0096 debuglog.c:259:DebugLogSetCategory() Debug options: APDU
0641 pcscdaemon.c:512:main() pcsc-lite 1.5.5 daemon ready.
00323951 hotplug_libhal.c:318:get_driver() Looking a driver for VID:
0x04A9, PID: 0x190A
3119 hotplug_libhal.c:318:get_driver() Looking a driver for VID:
0x1D6B, PID: 0x0002
3900 hotplug_libhal.c:318:get_driver() Looking a driver for VID:
0x1D6B, PID: 0x0001
3875 hotplug_libhal.c:318:get_driver() Looking a driver for VID:
0x1D6B, PID: 0x0002
3901 hotplug_libhal.c:318:get_driver() Looking a driver for VID:
0x03F0, PID: 0x8704
2363 hotplug_libhal.c:318:get_driver() Looking a driver for VID:
0x03F0, PID: 0x8704
3093 hotplug_libhal.c:318:get_driver() Looking a driver for VID:
0x1D6B, PID: 0x0001
26539276 hotplug_libhal.c:318:get_driver() Looking a driver for VID:
0x0C4B, PID: 0x0501
0054 hotplug_libhal.c:366:HPAddDevice() Adding USB device:
usb_device_c4b_501_0089477100_if0
01002979 readerfactory.c:1024:RFInitializeReader() Attempting startup of
REINER SCT cyberJack RFID komfort (0089477100) 00 00 using
/usr/lib/pcsc/drivers/libifd-cyberjack.bundle/Contents/Linux/libifd-cyberjack.so

CYBERJACK: Started
2956 readerfactory.c:877:RFBindFunctions() Loading IFD Handler 3.0
00015381 readerfactory.c:1050:RFInitializeReader() Open Port 20
Failed
(usb:0c4b/0501:libhal:/org/freedesktop/Hal/devices/usb_device_c4b_501_0089477100_if0)

0049 readerfactory.c:914:RFUnloadReader() Unloading reader driver.
0124 readerfactory.c:233:RFAddReader() REINER SCT cyberJack RFID
komfort (0089477100) init failed.
1352 hotplug_libhal.c:461:HPAddDevice() trying libusb scheme with:
usb:0c4b/0501:libusb:003:009
0051 readerfactory.c:1024:RFInitializeReader() Attempting startup of
REINER SCT cyberJack RFID komfort (0089477100) 00 00 using
/usr/lib/pcsc/drivers/libifd-cyberjack.bundle/Contents/Linux/libifd-cyberjack.so

CYBERJACK: Started
0875 readerfactory.c:877:RFBindFunctions() Loading IFD Handler 3.0
00027647 readerfactory.c:1050:RFInitializeReader() Open Port 20
Failed (usb:0c4b/0501:libusb:003:009)
0057 readerfactory.c:914:RFUnloadReader() Unloading reader driver.
0129 readerfactory.c:233:RFAddReader() REINER SCT cyberJack RFID
komfort (0089477100) init failed.
0034 hotplug_libhal.c:468:HPAddDevice() Failed adding USB device:
usb_device_c4b_501_0089477100_if0

Don't give credit to the truth of these lines, as the green LED is
flashing permanently and the homebanking software Moneyplex works
correctly!!! Maybe the USB device was not added by HAL, but obviously by
another service.


So the Moneyplex application DO work even if the reader is not correctly 
detected by pcscd. Exact?


What happens if you REMOVE the pcscd package, reboot and use the 
Moneyplex application?



I am an old man with twice the age of yours and I wrote my first program
in 1967. So you can imagine that I saw many paradox things while
constructing compiler parts. But now I am tired and cannot afford much
further efforts to solve this problem. In my mind, your disclosure that
the new scheme libudev is not supported by ifd.cpp (in SP02-1 as well as
in SP03) seems to point to the right direction.

Anyway, if you want to get further informations from me, then I ask you
kindly to give me detailed instructions what to do, as I am not very
proficient in modern debugging technics.


Do you have the source 

Bug#661253: nvidia-glx: NVIDIA 295.20 causes random and unexpected X termination and, hence logout

2012-03-24 Thread tv.deb...@googlemail.com
Same here with 295.33-1, system freeze after a mere 15mn. System load
very low, only Amarok running on a fresh KDE session. Second try same
result while screen-saver was running. Downgrading to 295.20-1 solves it.

Happens with both stock Sid kernel and local 3.3, both amd64.

Back to the drawing board NVidia...



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



Bug#665438: update-texmf: 77: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected operator

2012-03-24 Thread Jakub Wilk

Package: tex-common
Version: 3.4
Severity: important

I saw this on upgrade:

Setting up tex-common (3.4) ...
/usr/sbin/update-texmf: 77: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 78: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 79: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 80: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 81: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 82: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 83: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 84: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 85: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator
/usr/sbin/update-texmf: 86: [: /etc/texmf/texmf.d/80tex4ht.cnf: unexpected 
operator

The script is using [ foo == bar ] construct, which is a bashism, but it 
has #!/bin/sh shebang.


--
Jakub Wilk



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



Bug#295316: 3C Aero March 2012 Update- INVENTORIES-AIRCRAFTS-ENGINES-

2012-03-24 Thread 3C Aero
I.WANTEDAGING AIRCRAFTS, END OF LIFE CYCLE AIRCRAFTS, ENGINES, INVENTORIES

II.WANTED  EVACUATION SLIDES A320
   D31865-111  OFF-WING RAMP SLIDE LH
   D31865-110  OFF-WING RAMP SLIDE RH
   60592-101   EVACUATION SYSTEMS RESERVOIR AND VALVE
   60592-101   EVACUATION SYSTEMS RESERVOIR AND VALVE
   D31516-417  FWD_ESCAPE_SLIDE_PARA_C
   D31516-417  FWD_ESCAPE_SLIDE_PARA_C
   D29982-any
   D29984-any
   D29985-any
   D30665-any
   D30664-any
   D31865-any
   101651-303
   7A1489-any
   5A3307-any
   101656-303
   61571-127  -128

DISMANTLING B737-300, Complete AC and parts for sale, send us your wish list
DISMANTLING B767-300, Complete AC and parts for sale, send us your wish list

I.   LANDING GEARS FOR SALE

767-300 LANDING GEARS FOR SALE
NLG   life limit of 80,000 cycles
MLG’s life limit of 50,000 cycles.
AR condition with 4 years left or 14k cycles until the next overhaul
737-300 GEARS FOR SALE AR – EMAIL FOR DETAILS
A320 Landing Gear for sale, OHC, Fresh 8130 DUAL RELEASE

II. AVIONICS FOR SALE

a)HG1050AD04 FRESH 2-29-11 INERTIAL TAG STOCK 121 US AIRWAYS TRACE 17K EACH
a)HG1050AD05 FRESH 2-29-11 INERTIAL TAG STOCK 121 US AIRWAYS TRACE 17K EACH
b)071-50001-8102 Bendix TCAS Antenna AR-GR MAKE OFFER
c)066-5-2120 Bendix TCAS Processor AR-GR MAKE OFFER
d)0856AE18 Rosemont Aero Pitot Tube AR-GR MAKE OFFER
e)0856AE18 Rosemont Aero Pitot Tube AR-GR MAKE OFFER
f)AW2835AB05 CABIN ALTIMETER PRESS. IND AR-GR MAKE OFFER
g)CFM56-3C1 SPARES PACKAGE
 MEC PN 8063-215
 Actuator valves 2 each PN 1211175-011
 PMC PN 7147M10G03
 IDG Generator PN 977J460-10
 Make offer for this package

III.  ENGINES FOR SALE
a)V2500-A1 AS REMOVED
b)PT6A-67D Exch only w- Core info TSO 0Hrs
c)CF6-80C2 Engines for sale
d)PW121 4 engines SVC
e)PT6A-65B Outright or Exchange TSO 0HR


IV.SPARES PACKAGE
1.   ATR42-300 Spares, Rotables, 1500 Line Items
2.   CRJ900 Inventory Package for sale (NS, Trace 129, stock)

V. B747-200F AC for sale, CF6 50E2 Engines, Asking 3.5MM w Fresh C check.

Sincerely, 

Bill Chapman

3C Aero LLC
12315 S Redlands Rd.
Coyle OK, 73027, USA
Ph: (405) 466-5053
Ph: (405) 293-3273
market...@3caero.com
www.3CAero.com

3C Aero provides Independent Solutions For:
Aircraft Dismantling Services, Aircraft Dismantling Management, Independent 
Marketing and Sales, Contingency Sales, Remarketing, Consignments.

Disclaimer: Should this email arrive to you in error or you wish to be removed 
from our listing, please send us the word OPTOUT to market...@3caero.com



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



Bug#620647: kumofs: Installable on armel

2012-03-24 Thread Tobias Frost
Package: kumofs
Followup-For: Bug #620647

Hallo
I checked installability on armel: Seems ok now!

Tobias

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

Kernel: Linux 3.2.0-2-iop32x
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages kumofs depends on:
ii  adduser3.113+nmu1
ii  debconf [debconf-2.0]  1.5.41
ii  libc6  2.13-27
ii  libgcc11:4.6.3-1
ii  libmsgpack-ruby1.8 0.4.6-1
ii  libmsgpack30.5.4-2
ii  libmsgpackc2   0.5.4-2
ii  libssl1.0.01.0.0g-1
ii  libstdc++6 4.6.3-1
ii  libtokyocabinet8   1.4.37-9
ii  ruby   4.8
ii  ruby1.8 [ruby] 1.8.7.352-2
ii  zlib1g 1:1.2.6.dfsg-2

kumofs recommends no packages.

kumofs suggests no packages.

-- Configuration Files:
/etc/default/kumofs changed:


-- debconf information:
  kumofs/manager_options: -l localhost
  kumofs/gateway_options: -m localhost -t 11211
  kumofs/server_options: -m localhost -l localhost -s /var/lib/kumofs/kumofs.tch
* kumofs/select_components:



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



Bug#661253: nvidia-glx: NVIDIA 295.20 causes random and unexpected X termination and hence logout

2012-03-24 Thread marcos
Hi all with last nvidia (295.33-1) seems to be solved.

Marcos




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



Bug#665329: [Pkg-libvirt-maintainers] Bug#665329: closed by Guido Günther a...@sigxcpu.org (Re: Bug#665329: libvirt-bin: Starting a kvm virtual machine with a serial/parallel chardevice attached to

2012-03-24 Thread Guido Günther
On Sat, Mar 24, 2012 at 12:59:32AM +0100, Sebastian Schrader wrote:
 No, I'm definitly using qemu:///system to connect. Any tips how to
 monitor the permission denied errors to find out what was actually tried
 to acess would be appreciated.
You can fire up libvirtd with 

strace -f -ooutfile -s2048 libvirtd 

and look for EPERM in the outfile. Also have a loot at /dev/pts after
the vm start:

The pts used should belong to the libvirt-qemu user. The Debian wiki
also has a page about debugging libvirt related problems.

Cheers,
 -- Guido



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



Bug#665439: network-manager: Network manager fail to connect network when cloned-mac-address is set

2012-03-24 Thread Rémi Vanicat
Package: network-manager
Version: 0.9.2.0-2
Severity: normal
Tags: lfs

When the cloned-mac-address is set, my computer cannot connect to
the network anymore. Here is an example on a configuration that fail:


[802-3-ethernet]
duplex=full
cloned-mac-address=0:90:f5:c1:c6:22

[connection]
id=Connexion filaire auto
uuid=9ec48ffe-38ac-410e-b267-9130d801720f
type=802-3-ethernet
timestamp=1332576355

[ipv6]
method=ignore

[ipv4]
method=auto


Removing the cloned-mac-address=0:90:f5:c1:c6:22 enable the
connection again. The connection will succeed if the
cloned-mac-address is set to the card own mac address.



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

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

Versions of packages network-manager depends on:
ii  adduser3.113+nmu1
ii  dbus   1.4.18-1
ii  isc-dhcp-client4.2.2.dfsg.1-4
ii  libc6  2.13-27
ii  libdbus-1-31.4.18-1
ii  libdbus-glib-1-2   0.98-1
ii  libgcrypt111.5.0-3
ii  libglib2.0-0   2.30.2-6
ii  libgnutls262.12.18-1
ii  libgudev-1.0-0 175-3.1
ii  libnl-3-2003.2.7-2
ii  libnl-route-3-200  3.2.7-2
ii  libnm-glib40.9.2.0-2
ii  libnm-util20.9.2.0-2
ii  libpolkit-gobject-1-0  0.104-2
ii  libuuid1   2.20.1-4
ii  lsb-base   3.2+Debian31
ii  udev   175-3.1
ii  wpasupplicant  0.7.3-6

Versions of packages network-manager recommends:
ii  crda  none
ii  dnsmasq-base  none
ii  iptables  1.4.12.2-2
ii  modemmanager  0.5-1
ii  policykit-1   0.104-2
ii  ppp   2.4.5-5

Versions of packages network-manager suggests:
ii  avahi-autoipd  0.6.31-1

-- Configuration Files:
/etc/NetworkManager/NetworkManager.conf changed:
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=true


-- 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#664967: Segfaulting is caused by copyObject in version 0.12.1-3

2012-03-24 Thread Patrick Häcker
I could narrow the reason of the segfault down.

The segfault occurs only if virtual-layout is set to js in 
/etc/mediatomb/config.xml. It does not occur if it is set to disabled or 
builtin.

If virtual-layout is set to js the segfault in my setup occurs if and only 
if the copyObject function is used as described at 
http://mediatomb.cc/pages/scripting#id2809739.

As most of mediatomb's users can probably work around using copyObject, I 
downgraded this bug's severity to normal. Nevertheless, a segfault without a 
proper error message should be fixed and with the given information and the 
additional information, that the bug occurred with version 0.12.1-3 and 
probably not with version 0.12.1-2, it should be easily fixable.


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


Bug#664767: Brcmsmac driver woes, possible regression?

2012-03-24 Thread Camaleón
2012/3/24 Jonathan Nieder jrnie...@gmail.com:

 Thanks.  Nah.  Could you send a summary of the symptoms to
 linux-wirel...@vger.kernel.org, cc-ing Stanislaw Gruszka
 sgrus...@redhat.com, Arend van Spriel ar...@broadcom.com,
 and either me or this bug log so we can track it?

 Be sure to mention:

  - steps to reproduce the problem, expected result, actual result,
   and how the difference indicates a bug (should be simple here :))
  - how reproducible it is (40%? 100%?)
  - which kernel versions you have tested and what happened with each
  - full dmesg output from booting and reproducing the bug, as an
   attachment
  - any workarounds or other weird observations
  - a pointer to http://bugs.debian.org/664767 for the backstory

 Hopefully they might have commands to run or a patch to try to track
 down what is going wrong.

 Thanks, and sorry for the trouble.
 Jonathan

Already done.

Thanks for your ongoing work and continuous support, Jonathan :-)

Greetings,

-- 
Camaleón



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



Bug#665440: chromium-browser: No audio will play again if an audio file plays to completion

2012-03-24 Thread Andrew Chant
Package: chromium-browser
Version: 17.0.963.78~r125577-1
Severity: normal

Dear Maintainer,
 After letting an audio file (both .mp3 and .wav tested) play to completion,
chromium will no longer play any audio, and no progress will be shown on the
song progress bar.

Example: navigate to
http://www.mediacollege.com/audio/tone/files/250Hz_44100Hz_16bit_05sec.wav

let the tone play to the end of 5 seconds, then click play to get it to 
play again.  Nothing will happen.  There is identical behaviour with mp3s.

This is *not* repeatable on the Chromium project continuous builds.
I tried the continous build at revision 125587 (closest avail to 125577) at
 
http://commondatastorage.googleapis.com/chromium-browser-continuous/index.html?path=Linux_x64/125587/
 
and it worked fine.  (Note: the continous build won't play .mp3s, just wavs).

Note that I have alsa installed and not pulseaudio.

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

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

Versions of packages chromium-browser depends on:
ii  chromium  17.0.963.78~r125577-1

chromium-browser recommends no packages.

chromium-browser 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#665441: mp3splt-gtk: Refuses to start for mixing GTK+ 2.x and 3 libraries

2012-03-24 Thread Felix Palmen
Package: mp3splt-gtk
Version: 0.5.6-1.2+b1
Severity: grave
Justification: renders package unusable

mp3splt-gtk won't start on my clean wheezy installation (no locally
installed or self compiled software) giving the following error:

Gtk-ERROR **: GTK+ 2.x symbols detected. Using GTK+ 2.x and GTK+ 3 in the same 
process is not supported

stacktrace:

Program received signal SIGTRAP, Trace/breakpoint trap.
0x74f62888 in g_logv () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
(gdb) bt
#0  0x74f62888 in g_logv () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#1  0x74f62c02 in g_log () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x778d9642 in ?? ()
   from /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
#3  0x74f66908 in g_option_context_parse ()
   from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x778d98a0 in gtk_parse_args ()
   from /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
#5  0x778d98f9 in gtk_init_check ()
   from /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
#6  0x778d9929 in gtk_init ()
   from /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0
#7  0x0041f564 in ?? ()
#8  0x73027ead in __libc_start_main (main=optimized out, 
argc=optimized out, ubp_av=optimized out, init=optimized out, 
fini=optimized out, rtld_fini=optimized out, stack_end=0x7fffe128)
at libc-start.c:228
#9  0x004097b9 in ?? ()
#10 0x7fffe128 in ?? ()
#11 0x001c in ?? ()
#12 0x0001 in ?? ()
#13 0x7fffe42a in ?? ()
#14 0x in ?? ()

dynamic dependencies:

linux-vdso.so.1 =  (0x7fff9f1ff000)
libgtk-x11-2.0.so.0 = /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 
(0x7f1d92ffe000)
libgdk-x11-2.0.so.0 = /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0 
(0x7f1d92d4a000)
libatk-1.0.so.0 = /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0 
(0x7f1d92b26000)
libgio-2.0.so.0 = /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0 
(0x7f1d927e1000)
libpangoft2-1.0.so.0 = /usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0 
(0x7f1d925b5000)
libpangocairo-1.0.so.0 = 
/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0 (0x7f1d923a7000)
libgdk_pixbuf-2.0.so.0 = 
/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0 (0x7f1d92188000)
libm.so.6 = /lib/x86_64-linux-gnu/libm.so.6 (0x7f1d91f06000)
libcairo.so.2 = /usr/lib/x86_64-linux-gnu/libcairo.so.2 
(0x7f1d91c12000)
libpng12.so.0 = /lib/x86_64-linux-gnu/libpng12.so.0 
(0x7f1d919ea000)
libpango-1.0.so.0 = /usr/lib/x86_64-linux-gnu/libpango-1.0.so.0 
(0x7f1d9179d000)
libfreetype.so.6 = /usr/lib/x86_64-linux-gnu/libfreetype.so.6 
(0x7f1d914fe000)
libfontconfig.so.1 = /usr/lib/x86_64-linux-gnu/libfontconfig.so.1 
(0x7f1d912c9000)
libgobject-2.0.so.0 = /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 
(0x7f1d91078000)
libgmodule-2.0.so.0 = /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0 
(0x7f1d90e74000)
libgthread-2.0.so.0 = /usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0 
(0x7f1d90c6f000)
librt.so.1 = /lib/x86_64-linux-gnu/librt.so.1 (0x7f1d90a67000)
libglib-2.0.so.0 = /lib/x86_64-linux-gnu/libglib-2.0.so.0 
(0x7f1d9076f000)
libmp3splt.so.0 = /usr/lib/libmp3splt.so.0 (0x7f1d90553000)
libaudcore.so.1 = /usr/lib/x86_64-linux-gnu/libaudcore.so.1 
(0x7f1d90344000)
libaudgui.so.1 = /usr/lib/x86_64-linux-gnu/libaudgui.so.1 
(0x7f1d9012b000)
libaudclient.so.2 = /usr/lib/x86_64-linux-gnu/libaudclient.so.2 
(0x7f1d8ff25000)
libmcs.so.1 = /usr/lib/libmcs.so.1 (0x7f1d8fd22000)
libdbus-glib-1.so.2 = /usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2 
(0x7f1d8faf9000)
libmowgli.so.2 = /usr/lib/libmowgli.so.2 (0x7f1d8f8e9000)
libdbus-1.so.3 = /lib/x86_64-linux-gnu/libdbus-1.so.3 
(0x7f1d8f6a4000)
libpthread.so.0 = /lib/x86_64-linux-gnu/libpthread.so.0 
(0x7f1d8f487000)
libgstbase-0.10.so.0 = /usr/lib/x86_64-linux-gnu/libgstbase-0.10.so.0 
(0x7f1d8f232000)
libgstreamer-0.10.so.0 = 
/usr/lib/x86_64-linux-gnu/libgstreamer-0.10.so.0 (0x7f1d8ef47000)
libxml2.so.2 = /usr/lib/libxml2.so.2 (0x7f1d8ebe8000)
libc.so.6 = /lib/x86_64-linux-gnu/libc.so.6 (0x7f1d8e861000)
libX11.so.6 = /usr/lib/x86_64-linux-gnu/libX11.so.6 
(0x7f1d8e522000)
libXcomposite.so.1 = /usr/lib/x86_64-linux-gnu/libXcomposite.so.1 
(0x7f1d8e31f000)
libXdamage.so.1 = /usr/lib/x86_64-linux-gnu/libXdamage.so.1 
(0x7f1d8e11d000)
libXfixes.so.3 = /usr/lib/x86_64-linux-gnu/libXfixes.so.3 
(0x7f1d8df17000)
libXext.so.6 = /usr/lib/x86_64-linux-gnu/libXext.so.6 
(0x7f1d8dd03000)
libXrender.so.1 = /usr/lib/x86_64-linux-gnu/libXrender.so.1 
(0x7f1d8daf9000)
libXinerama.so.1 = 

Bug#662815: closed by Stephen Kitt st...@sk2.org (Re: Bug#661442: Ping)

2012-03-24 Thread Stephen Kitt
On Fri, 23 Mar 2012 10:07:05 +0100, Eugen Dedu
eugen.d...@pu-pm.univ-fcomte.fr wrote:
 Stephen, where do you check if a header needs to have another header 
 included (such as windows.h)?
 
 I have found a very interesting thread: 
 http://old.nabble.com/windows.h-dependency-td15175386.html

It is very interesting indeed. As far as I know the way to check whether
another header is needed it to look up the documentation on MSDN, although it
does tend to be incomplete — for instance the documentation for DNS functions
only mentions windns.h, even though windns.h needs windows.h (or more
typically, winsock2.h). In general, if a header doesn't build on its own,
adding windows.h before it fixes things.

It's not satisfactory, I know, but I don't think there's anything better...

Regards,

Stephen


signature.asc
Description: PGP signature


Bug#665442: texlive-lang-cjk: please package documentation separately

2012-03-24 Thread Jonas Smedegaard
Source: texlive-lang-cjk
Version: 2011.20120322-1
Severity: normal

texlive-lang-cjk contains both code and documentation, so requires
219MB to install which I suspect in large parts are due to the
documentation files included.

Please consider packaging CJK documentation separately from code files.


 - Jonas

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

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



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



Bug#590582: abot vortex problem

2012-03-24 Thread Karol Szkudlarek

W dniu 19.03.2012 07:41, Jonathan Nieder pisze:

Hi Karol,

Karol Szkudlarek wrote:


No..., I'm not tried 3.x kernel from sid or experimental becuase
problem considers my home router/server which is need 24h/day...

But I could try for example backported patched a module driver 3c95x
for my 2.6.32 current debian squeeze version. For me it will be safe
solution which I can easily revert.


Ok, makes sense.

I've attached a patch to try, following instructions from [1].  The
result should be ABI-compatible with a squeeze kernel, so if all goes
well and you have kept a copy of the unpatched 3c95x driver, you can
unload the patched 3c95x driver and reload the standard one after
testing.  (Of course, it is always possible that testing could go
poorly and e.g. hang the system.)

Hope that helps,
Jonathan

[1] 
http://kernel-handbook.alioth.debian.org/ch-common-tasks.html#s-common-official
or the corresponding page in the debian-kernel-handbook package

Jonathan,

I've succesfully applied patch and reinstall module as you suggest me in 
previous e-mail (thanks for help in module reinstalling!)


{
   rmmod 3c59x; insmod 
/usr/src/linux-source-2.6.32/drivers/net/3c59x.ko; insmod 
/lib/modules/2.6.32-5-686/kernel/drivers/net/3c59x.ko

  ifdown eth0;ifup eth0;ifdown eth2;ifup eth2
} 

and I have to add ifdown/ifup for my network interfaces after it.

I've tested patched driver, but unfortunately it contains the same bug,
copying large file via eth0 stills breaks eth0 communication... :-(

Of course I've checked via lsmod different size of memory of patched
and original driver to be sure that I've loaded patched driver instead 
of original.


Regards,
Karol



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



Bug#665091: help!

2012-03-24 Thread Miguel Figueiredo

On 22-03-2012 13:48, RAMIRO CÉSAR Bou wrote:

Package: installation-reports
Boot method: DVD
Image version: Last image, downloaded from debian's webpage


Please give more details on the image used. Last image is ambiguous as 
it can be from stable or from testing? weekly builds?



debian does not install the DVD does not boot
the bios is configured correctly (can boot other CDs / DVDs)


The iso you downloaded matches the checksum?
See 5.3.1.2 - http://d-i.alioth.debian.org/manual/es.amd64/ch05s03.html


[translated with google translate (my English is pretty bad)]


If it's useful for you, the installation manual is available in several 
languages.

http://d-i.alioth.debian.org/manual/

--
Melhores cumprimentos/Best regards,

Miguel Figueiredo



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



Bug#626976: network-manager-openconnect: file conflict with openconnect

2012-03-24 Thread Ross Burton
On Wednesday, 14 March 2012 at 01:14, Mike Miller wrote:
 Any progress on this so we can get it back in wheezy? Anything I can
 do to help?

I don't really have time to dedicate to packaging at the moment, if you'd be 
interested in taking over the packaging that would really help!

Ross 





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



Bug#665443: ucf: Fsails to `revert to using old-style, non-debconf prompting.'

2012-03-24 Thread Robert Luberda
Package: ucf
Version: 3.0025+nmu2
Severity: important


Hi

rlinetd's version of update-inetd uses ucf without passing --debconf-ok
flag. The debconf-ok flag cannot be uses since update-inetd has no idea
if it's safe to use debconf or not (if maintainer script could call
db_stop before in which case passing debconf-ok causes ucf to hang).

Anyway, ucf used to display a warning and switch to old prompting when 
--debconf-ok 
was missing, but now it displays the same warning and then fails.

Setting up dictd (1.12.0+dfsg-4.1) ...
*** WARNING: ucf was run from a maintainer script that uses debconf, but
 the script did not pass --debconf-ok to ucf. The maintainer
 script should be fixed to not stop debconf before calling ucf,
 and pass it this parameter. For now, ucf will revert to using
 old-style, non-debconf prompting. Ugh!

 Please inform the package maintainer about this problem.
Need debconf to interact
dpkg: error processing dictd (--configure):
 subprocess installed post-installation script returned error exit
status 2
Errors were encountered while processing:
 dictd


Regards,
robert

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

Kernel: Linux 3.2.0-1-686-pae (SMP w/1 CPU core)
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)
Shell: /bin/sh linked to /bin/dash

Versions of packages ucf depends on:
ii  coreutils  8.13-3.1
ii  debconf1.5.42

ucf recommends no packages.

ucf suggests no packages.

-- Configuration Files:
/etc/ucf.conf changed [not included]

-- debconf information excluded



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



Bug#664630: PC/SC-software and card reader REINER-SCT Cyberjack RFID komfort

2012-03-24 Thread Wolfgang Gruhn


Am 24.03.2012 09:23, schrieb Ludovic Rousseau:


So the Moneyplex application DO work even if the reader is not correctly
detected by pcscd. Exact?


Sorry, I don't know. Anyway, your trace reports errors, but the green 
LED is flashing permanently and Moneyplex DOES work.



Do you have the source code of the Moneyplex application?


No. Moneyplex is not Open Source Code, but produced by the commercial 
enterprise Matrica.



What happens if you REMOVE the pcscd package, reboot and use the
Moneyplex application?


root@wg-pc:~# dpkg -r pcscd
dpkg: Abhaengigkeitsprobleme verhindern Entfernen von pcscd:
 libifd-cyberjack6 haengt ab von pcscd.
dpkg: Fehler beim Bearbeiten von pcscd (--remove):
 Abhaengigkeitsprobleme - wird nicht entfernt
Fehler traten auf beim Bearbeiten von:
 pcscd
root@wg-pc:~#

Translation:

dpkg: dependency problems prevent removing of pcscd:
 libifd-cyberjack6 depends from pcscd
dpkg: error when operating with pcscd (--remove):
 dependency problems - not removing
Errors occurred when working with:
 pcscd

--

Forget Moneyplex, it needs libifd-cyberjack6 and cannot work without it, 
as this driver must be selected in the options of Moneyplex. And pcscd 
cannot be removed as long as libifd-cyberjack6 is present. Obviously the 
problem is to be searched in the USB-connection of the card reader 
itself. When this connection is established correctly, Moneyplex will 
work, too.


I'm now waiting to the reaction of the libifd-cyberjack6-maintainer, Mr 
Frank Neuber, to the reassigned Debian-bug-message and my direct e-mail 
to him.


Bye and thanks for your support!

Wolfgang Gruhn




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



Bug#665444: RM: passenger -- ROM; superseded by ruby-passenger

2012-03-24 Thread Laurent Bigonville
Package: ftp.debian.org
Severity: normal

Hi,

Please remove passenger from the archive, the source package has been
renamed to ruby-passenger.

Cheers

Laurent Bigonville



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



Bug#600286: atl1c driver hangs after NETDEV WATCHDOG: eth0 (atl1c): transmit queue 0 timed out

2012-03-24 Thread pavka

debian testing
kernel sid

Mar 24 13:44:44 pavka kernel: [139226.190632] [ cut here 
]
Mar 24 13:44:44 pavka kernel: [139226.190644] WARNING: at 
/build/buildd-linux-2.6_3.2.12-1-i386-naqH8d/linux-2.6-3.2.12/debian/build/source_i386_none/net/sched/sch_generic.c:255 
dev_watchdog+0xb1/0x104()

Mar 24 13:44:44 pavka kernel: [139226.190649] Hardware name: INVALID
Mar 24 13:44:44 pavka kernel: [139226.190652] NETDEV WATCHDOG: eth0 
(atl1c): transmit queue 0 timed out
Mar 24 13:44:44 pavka kernel: [139226.190654] Modules linked in: 
nls_utf8 isofs snd_hrtimer cpufreq_stats parport_pc ppdev lp parport 
nf_conntrack_netlink nf_conntrack nfnetlink rfcomm bnep binfmt_misc 
uinput fuse nfsd nfs lockd fscache auth_rpcgss nfs_acl sunrpc ext4 jbd2 
cpufreq_userspace cpufreq_powersave cpufreq_conservative acpi_cpufreq 
mperf loop snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_intel 
snd_hda_codec snd_hwdep snd_pcm_oss snd_mixer_oss snd_pcm uvcvideo 
videodev snd_seq_midi media btusb snd_rawmidi snd_seq_midi_event 
bluetooth snd_seq arc4 crc16 joydev snd_timer snd_seq_device acer_wmi 
ideapad_laptop brcmsmac battery mac80211 i915 brcmutil drm_kms_helper 
drm psmouse i2c_algo_bit ac snd cfg80211 sparse_keymap iTCO_wdt 
power_supply rfkill soundcore i2c_i801 i2c_core snd_page_alloc 
iTCO_vendor_support wmi pcspkr evdev serio_raw crc8 processor button 
video intel_ips cordic ext3 jbd mbcache sr_mod sd_mod cdrom crc_t10dif 
ahci libahci libata scsi_mod ehci_hcd usbcore atl1c usb_common thermal 
therma
Mar 24 13:44:44 pavka kernel: [139226.190761] Pid: 0, comm: swapper/2 
Not tainted 3.2.0-2-686-pae #1

Mar 24 13:44:44 pavka kernel: [139226.190764] Call Trace:
Mar 24 13:44:44 pavka kernel: [139226.190772]  [c1038470] ? 
warn_slowpath_common+0x68/0x79
Mar 24 13:44:44 pavka kernel: [139226.190776]  [c12310cc] ? 
dev_watchdog+0xb1/0x104
Mar 24 13:44:44 pavka kernel: [139226.190781]  [c10384e9] ? 
warn_slowpath_fmt+0x29/0x2d
Mar 24 13:44:44 pavka kernel: [139226.190785]  [c12310cc] ? 
dev_watchdog+0xb1/0x104
Mar 24 13:44:44 pavka kernel: [139226.190794]  [c103cea5] ? 
local_bh_enable+0x2/0x2
Mar 24 13:44:44 pavka kernel: [139226.190799]  [c1042058] ? 
run_timer_softirq+0x150/0x1f3
Mar 24 13:44:44 pavka kernel: [139226.190803]  [c123101b] ? 
netif_tx_unlock+0x3a/0x3a
Mar 24 13:44:44 pavka kernel: [139226.190808]  [c103cea5] ? 
local_bh_enable+0x2/0x2
Mar 24 13:44:44 pavka kernel: [139226.190812]  [c103cf39] ? 
__do_softirq+0x94/0x12f
Mar 24 13:44:44 pavka kernel: [139226.190817]  [c103cea5] ? 
local_bh_enable+0x2/0x2
Mar 24 13:44:44 pavka kernel: [139226.190819] IRQ  [c103d12a] ? 
irq_exit+0x32/0x80
Mar 24 13:44:44 pavka kernel: [139226.190832]  [c101e838] ? 
smp_apic_timer_interrupt+0x5b/0x65
Mar 24 13:44:44 pavka kernel: [139226.190838]  [c12c15d1] ? 
apic_timer_interrupt+0x31/0x38
Mar 24 13:44:44 pavka kernel: [139226.190844]  [c103007b] ? 
default_scale_smt_power+0x6/0x16
Mar 24 13:44:44 pavka kernel: [139226.190851]  [c1197dde] ? 
intel_idle+0xcc/0xfa
Mar 24 13:44:44 pavka kernel: [139226.190857]  [c120b1c6] ? 
cpuidle_idle_call+0xcc/0x142
Mar 24 13:44:44 pavka kernel: [139226.190864]  [c100b225] ? 
cpu_idle+0x8b/0xaf
Mar 24 13:44:44 pavka kernel: [139226.190870]  [c12b7cd4] ? 
start_secondary+0x1be/0x1c3
Mar 24 13:44:44 pavka kernel: [139226.190874] ---[ end trace 
9505db0aca93c1f5 ]---





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



Bug#665445: otrs2: upgrade fail when using PostgreSQL

2012-03-24 Thread Hannes Schulz
Package: otrs2
Version: 3.1.2+dfsg1-3
Severity: normal

I use PostgreSQL as the database backend. When upgrading I got the following
error message:
  FEHLER: Syntaxfehler bei »#« ZEILE 1: # ^

The file /usr/share/dbconfig-common/data/otrs2/upgrade/pgsql/3.1.2+dfsg1-2.2
starts with:

# --
#  driver: mysql, generated: 2011-12-08 11:44:43
# --

and is identical to the file in the mysql directory.
I would have expected something that starts with driver: postgresql...


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

Kernel: Linux 2.6.38-2-686-bigmem (SMP w/1 CPU core)
Locale: LANG=de_AT.UTF-8, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_AT.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages otrs2 depends on:
ii  adduser 3.113+nmu1
ii  apache2-mpm-worker [httpd-cgi]  2.2.22-1
ii  dbconfig-common 1.8.47+nmu1
ii  debconf [debconf-2.0]   1.5.41
ii  libapache2-reload-perl  0.11-2
ii  libauthen-sasl-perl 2.1500-1
ii  libcrypt-passwdmd5-perl 1.3-10
ii  libcss-minifier-perl0.01-1
ii  libdate-pcalc-perl  6.1-1+b2
ii  libdbd-pg-perl  2.19.0-1
ii  libdbi-perl 1.618-1
ii  libdigest-sha-perl  5.71-1
ii  libemail-valid-perl 0.187-1
ii  libgd-graph-perl1.44-6
ii  libgd-text-perl 0.86-8
ii  libio-stringy-perl  2.110-5
ii  libjavascript-minifier-perl 1.05-1
ii  libjs-jquery1.7.1-1
ii  libjs-jquery-ui 1.8.ooops.18+dfsg-1
ii  libjs-prototype 1.7.0-2
ii  libjs-yui   2.8.2r1~squeeze-1
ii  libjson-perl2.53-1
ii  libmail-pop3client-perl 2.17-1
ii  libmailtools-perl   2.08-1
ii  libmime-tools-perl  5.502-1
ii  libnet-imap-simple-perl 1.2030-1
ii  libnet-imap-simple-ssl-perl 1.3-3
ii  libnet-smtp-ssl-perl1.01-3
ii  libpdf-api2-perl2.019-1
ii  libsoap-lite-perl   0.714-1
ii  libtext-csv-perl1.21-1
ii  libtext-diff-perl   1.41-1
ii  libxml-feedpp-perl  0.43-1
ii  libxml-parser-perl  2.41-1+b1
ii  libyaml-perl0.80-1
ii  perl [libdigest-sha-perl]   5.14.2-9
ii  ttf-dejavu-core 2.33-2
ii  ttf-dejavu-extra2.33-2
ii  ucf 3.0025+nmu2

Versions of packages otrs2 recommends:
ii  aspell  0.60.7~20110707-1
ii  libapache-dbi-perl  1.11-1
ii  postgresql  9.1+129
ii  procmail3.22-19

Versions of packages otrs2 suggests:
pn  libencode-hanextra-perl  none
pn  libnet-ldap-perl none
pn  otrs2-doc-en | otrs2-doc-de  none

-- debconf information:
  otrs2/pgsql/manualconf:
  otrs2/mysql/method: unix socket
  otrs2/dbconfig-remove:
  otrs2/upgrade-error: retry
  otrs2/install-error: ignore
  otrs2/remove-error: abort
* otrs2/pgsql/method: unix socket
* otrs2/pgsql/authmethod-admin: password
  otrs2/remote/newhost:
* otrs2/db/app-user: otrs
  otrs2/internal/reconfiguring: false
  otrs2/resetdbuser: true
  otrs2/purge: false
  otrs2/pgsql/changeconf: false
* otrs2/pgsql/authmethod-user: password
  otrs2/database-type: pgsql
  otrs2/pgsql/no-empty-passwords:
* otrs2/dbconfig-upgrade: true
  otrs2/internal/skip-preseed: false
  otrs2/remote/port:
  otrs2/passwords-do-not-match:
  otrs2/upgrade-backup: true
* otrs2/db/dbname: otrs3
* otrs2/pgsql/admin-user: root
  otrs2/dbconfig-reinstall: false
  otrs2/remote/host:
  otrs2/db/basepath:
  otrs2/missing-db-package-error: abort
* otrs2/dbconfig-install: true
  otrs2/mysql/admin-user: root



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



Bug#579640: lost+found check triggers on bind-mounted subdir

2012-03-24 Thread Javier Fernández-Sanguino Peña
On Fri, Mar 23, 2012 at 08:43:40AM +0100, Raphael Hertzog wrote:
 I'm not sure why you insist in keeping that feature working while
 it has been said that the recovery tools do create the needed directories
 by themselves.

We are planning on removing it, just not gotten around to do it yet.

 Anyway, when can we see a fix for this?

Soon or when time permits

 I'm raising the severity because it would be nice to see it fixed
 for wheezy.

I'm sure we can get it fixed before then.

Regards

Javier


signature.asc
Description: Digital signature


Bug#665446: gosa+kerberos should enforce correct passwords

2012-03-24 Thread Holger Levsen
package: debian-edu.config
version: 1.453

Hi Wolfgang, 

thanks for confirming and providing more info.

On Samstag, 24. März 2012, Wolfgang Schweer wrote:
 On Sat, Mar 24, 2012 at 09:23:42AM +0100, Holger Levsen wrote:
  On Freitag, 23. März 2012, Petter Reinholdtsen wrote:
   Could the problem be that the passwords are too short?  Kerberos
   rejects passwords shorter than 6 characters.
  
  if thats not enforced in gosa, it should be.
 
 Providing too short passwords reproduces the problem. GOsa² accepts
 giving feedback 'ok' (LDAP Manager). Same providing too short pw
 manually.
 
 One more trap:
 
 Option minclasses isn't, but should be checked, too.
 
 --- snip kerberos-kdc-init 
 # Kerberos policy setup
 kadmin.local -q addpol -maxlife \2 days\ -minlength 5 users
 kadmin.local -q addpol -minclasses 2 hosts

 ---
 
 Wouldn't it be better to have something like this:
 
 kadmin.local -q addpol -minlength 6 -minclasses 2 users
 kadmin.local -q addpol -minlength 4 -minclasses 2 hosts


cheers,
Holger



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



Bug#665447: Please install coinst_converter and jsviewer.js

2012-03-24 Thread Mehdi Dogguy
Package: coinst
Version: 1.01-2
Severity: normal

Hi,

coinst builds coinst_converter and jsviewer.js. Those are useful to
convert a dot file to a json scene and view it online using
jsviewer.js. However, coinst_converter and jsviewer.js are not shipped
by the provided Debian binary packages.

Please provide them in coinst-viewer.

Regards,

-- 
Mehdi

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

Kernel: Linux 3.2.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.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#665449: ITP: cl -- Kombu actor framework

2012-03-24 Thread Michael Fladischer
Package: wnpp
Severity: wishlist
Owner: Michael Fladischer fladischermich...@fladi.at

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

* Package name: cl
  Version : 0.0.3
  Upstream Author : VMware, Inc.
* URL : https://github.com/ask/cl
* License : BSD
  Programming Lang: Python
  Description : Kombu actor framework

cl provides an actor/agent framework that can be used in combination with 
kombu to ease the usage of distributed task processing. In response to a 
message that an actor receives, it can make local decisions, create more actors,
send more messages, and determine how to respond to the next message received.
There is no assumed sequence to those actions and they could be carried out in 
parallel.

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

iEYEARECAAYFAk9tpTMACgkQeJ3z1zFMUGYMiwCfUTKfFXwFyMqvNpzIOtlSLhN4
X80An1jujoRLm1g6NWE/ZBCJyaqh12It
=rIY4
-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#665450: ITP: i2p -- I2P is an anonymizing network, offering a simple layer that identity-sensitive applications can use to securely communicate. All data is wrapped with several layers of encrypti

2012-03-24 Thread Vibhav Pant
Package: wnpp
Severity: wishlist
Owner: Vibhav Pant vibh...@gmail.com

* Package name: i2p
  Version : 0.8.12-2
  Upstream Author : Kill Your TV killyou...@i2pmail.org
* URL : http://http://www.i2p2.de/
* License : Artistic License 1.0, Simplified BSD License, GNU GPL v2, 
MIT / X / Expat License, Public Domain
  Programming Lang: Java
  Description : I2P is an anonymizing network, offering a simple layer that 
identity-sensitive applications can use to securely communicate. All data is 
wrapped with several  layers of encryption, and the network is both distributed 
and dynamic, with no  trusted parties.

Many applications are available that interface with I2P, including mail, 
peer-peer, IRC chat, and others.I2P works by routing traffic through other 
peers.



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



Bug#665451: coreutils: chown/chgrp illegally reset suid/sgid

2012-03-24 Thread Yoric Kotchukov
Package: coreutils
Version: 8.13-3
Severity: important

Hello!
Sorry my bad English

chown/chgrp illegally reset suid/sgid. I think this is critical, as it is often 
used in [post/pre]install scripts, see Bug #664206.

globus@aspera:~/mia/tmp$ ls -l
-rwxr-xr-x 1 globus globus12 Мар 24 17:12 testp

globus@aspera:~/mia/tmp$ chmod 2755 testp 

globus@aspera:~/mia/tmp$ ls -l
-rwxr-sr-x 1 globus globus12 Мар 24 17:12 testp

globus@aspera:~/mia/tmp$ chown globus:tempo testp 

globus@aspera:~/mia/tmp$ ls -l testp 
-rwxr-xr-x 1 globus tempo 12 Мар 24 17:12 testp

globus@aspera:~/mia/tmp$ chmod 6755 testp 

globus@aspera:~/mia/tmp$ ls -l testp 
-rwsr-sr-x 1 globus tempo 12 Мар 24 17:12 testp

globus@aspera:~/mia/tmp$ chown globus:globus testp 

globus@aspera:~/mia/tmp$ ls -l testp 
-rwxr-xr-x 1 globus globus 12 Мар 24 17:12 testp

globus@aspera:~/mia/tmp$ chmod 7755 testp 

globus@aspera:~/mia/tmp$ ls -l testp 
-rwsr-sr-t 1 globus globus 12 Мар 24 17:12 testp

globus@aspera:~/mia/tmp$ chown globus:globus testp

globus@aspera:~/mia/tmp$ ls -l testp 
-rwxr-xr-t 1 globus globus 12 Мар 24 17:12 testp

globus@aspera:~/mia/tmp$ chmod 6755 testp 

globus@aspera:~/mia/tmp$ ls -l testp 
-rwsr-sr-x 1 globus globus 12 Мар 24 17:12 testp

globus@aspera:~/mia/tmp$ chgrp tempo testp 

globus@aspera:~/mia/tmp$ ls -l testp 
-rwxr-xr-x 1 globus tempo 12 Мар 24 17:12 testp



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

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

Versions of packages coreutils depends on:
ii  dpkg  1.16.1.2
ii  install-info  4.13a.dfsg.1-8
ii  libacl1   2.2.51-5
ii  libattr1  1:2.4.46-5
ii  libc6 2.13-27
ii  libselinux1   2.1.9-2

coreutils recommends no packages.

coreutils 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#661444: Bug#661442: Ping

2012-03-24 Thread Eugen Dedu

On 24/03/12 10:47, Stephen Kitt wrote:

On Fri, 23 Mar 2012 07:29:49 +0100, Stephen Kittst...@sk2.org  wrote:

* dxerr9.h is odd - are you sure it's meant to be included without including
   other DirectX headers?


It turns out dxerr9.h also requires windows.h to be included.


Have you checked that by compiling on Windows?  Or have you seen it on 
msdn, and if yes, at which address?


--
Eugen



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



Bug#662815: closed by Stephen Kitt st...@sk2.org (Re: Bug#661442: Ping)

2012-03-24 Thread Eugen Dedu

On 24/03/12 10:41, Stephen Kitt wrote:

On Fri, 23 Mar 2012 10:07:05 +0100, Eugen Dedu
eugen.d...@pu-pm.univ-fcomte.fr  wrote:

Stephen, where do you check if a header needs to have another header
included (such as windows.h)?

I have found a very interesting thread:
http://old.nabble.com/windows.h-dependency-td15175386.html


It is very interesting indeed. As far as I know the way to check whether
another header is needed it to look up the documentation on MSDN, although it
does tend to be incomplete — for instance the documentation for DNS functions
only mentions windns.h, even though windns.h needs windows.h (or more
typically, winsock2.h). In general, if a header doesn't build on its own,
adding windows.h before it fixes things.


Indeed, but we try to be as close to Windows as possible, so if on 
Windows it does not require windows.h, then with mingw it should not either.


--
Eugen



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



Bug#661504: [Pkg-tcltk-devel] Repost: RFS: tk-html3/3.0~fossil20110109-1 [ITP ] -- Render HTML and CSS content with tk

2012-03-24 Thread Sergei Golovan
Hi Ole!

On Wed, Mar 21, 2012 at 1:13 PM, Sergei Golovan sgolo...@nes.ru wrote:
 On Wed, Mar 21, 2012 at 1:06 PM, Ole Streicher
 debian-de...@liska.ath.cx wrote:
 Dear mentors,

 I just want to repost this sponsorship request so that it does not get
 forgotten :-)

The package is fine, though I'd like you to check if it works with the
snit package included into tcllib bundle.

I did remove snit.tcl and snit2.tcl from /usr/share/hw3 directory,
replaced source [sourcefile snit.tcl] by package require snit in
hv3_browser.tcl, and this didn't break hv3 immediately. It starts
well, and seems to work fine.

So, I think it might be better to make hv3 depending on tcllib and
remove its own copies of snit.tcl and snit2.tcl.

Cheers!
-- 
Sergei Golovan



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



Bug#664895: MIME content broken too

2012-03-24 Thread Thijs Kinkhorst
On Fri, March 23, 2012 11:27, Thomas Corell wrote:
 Hello,

 I fixed hex2bin yesterday, but that does not help completly. Mime
 encoded messages fail with missing lines or subjects.

I did make some changes to SVN. Does that solve the problem for you?
At least I don't run into any PHP 5.4 problems anymore. If you still do,
can you bounce me an affected message?


Thijs




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



Bug#644392: dspam truncates mail

2012-03-24 Thread Julien Valroff
Hi Laurence,

Le mardi 01 nov. 2011 à 21:57:04 (+0100 CET), Stevan Bajić a écrit :
[...]
 Can you try to (keep in mind that the message will show up on the
 original date (aka 05.10.2011) in your inbox):
 cat /path/to/the/raw/message/you/sent/me | sendmail -oi l...@lwithers.me.uk
 
 Do you still see the message being truncated?
 
 Can you try to look what DSPAM would do with the message?
 dspam --user l...@lwithers.me.uk --mode=notrain --process
 --deliver=stdout  /path/to/the/raw/message/you/sent/me
 
 Do you see the whole message or do you see a truncation? (I assume
 no truncation because it is a delivery to stdout and not to a
 SMTPD).
 
 Could you post your dspam.conf so that we can see what and how you
 use the delivery agent inside DSPAM?

Have you been able to test the various commands suggested by Stevan?
Without answer from you, I will downgrade the severity of this bug.

Cheers,
Julien

-- 
  .''`.   Julien Valroff ~ jul...@kirya.net ~ jul...@debian.org
 : :'  :  Debian Developer  Free software contributor
 `. `'`   http://www.kirya.net/
   `- 4096R/ E1D8 5796 8214 4687 E416  948C 859F EF67 258E 26B1



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



Bug#665449: ITP: cl -- Kombu actor framework

2012-03-24 Thread Eugene V. Lyubimkin
On 2012-03-24 11:43, Michael Fladischer wrote:
 * Package name: cl
[...]
   Description : Kombu actor framework

IMHO the package name is way too generic and clashes with existing cl-*
Common Lisp packages. Please choose a more descriptive package name.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Developer



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



Bug#520411: Help to test libsdl1.2 bug #520411 on armel?

2012-03-24 Thread Martin Guy
On 19 March 2012 14:36, Manuel A. Fernandez Montecelo
manuel.montez...@gmail.com wrote:
 On Thu, Feb 16, 2012 at 09:58:33PM +, Manuel A. Fernandez Montecelo 
 wrote:
 Can somebody please help to check if this bug from SDL libraries is
 still present on armel?  I don't have access to any ARM box, and the
 submitter cannot test it either.

 Any update on this, or an estimation on when it will happen?

Hi
  I just tried this under armel-sid on an ARM v4t card with a sound chip.
It mooOOs as it should.

M



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



Bug#613484: /usr/bin/ecl missing in 11.1.1-4

2012-03-24 Thread Christoph Egger

Hi!

Faheem Mitha fah...@faheem.info writes:
 I just installed 11.1.1-4 on unstable, and /usr/bin/ecl is missing,
 though dpkg thinks it is there. Should I reopen this bug or create a
 new bug?

Regards, Faheem

 orwell:/home/faheem# dpkg -l ecl
 ||/ NameVersion 
 Description
 +++-===-===-==
 ii  ecl 11.1.1-4
 Embeddable Common-Lisp: has an interpreter and can compile to C
 orwell:/home/faheem# dpkg -S /usr/bin/ecl
 ecl: /usr/bin/ecl
 orwell:/home/faheem# ls -lah /usr/bin/ecl
 ls: cannot access /usr/bin/ecl: No such file or directory

  I *think* this is a different bug due to removal of
common-lisp-controler and maintainer scripts not coping with it. A
`aptitude reinstall ecl` should solve it for you. Just to make sure: Did
you have any older ecl installed on that system previously?

Regards

Christoph

-- 
9FED 5C6C E206 B70A 5857  70CA 9655 22B9 D49A E731
Debian Developer | Lisp Hacker | CaCert Assurer



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



Bug#665429: backup2l: restore with DRIVER_TAR_GPG not working

2012-03-24 Thread Joachim Wiedorn
Thank you very much for this bug report.

I will do an update in the next weeks!

---
Have a nice day.

Joachim (Germany)



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



Bug#665452: libssl1.0.0: breaks HTTPS download of some sites (eg. https://sourceforge.net)

2012-03-24 Thread Bastian Kleineidam
Package: libssl1.0.0
Version: 1.0.1-2
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

installing the newest version breaks curl (and other download tools
using libssl like perl GET) on https://sourceforge.net/
Downgrading to 1.0.0h solves the problem.

Attached are curl --trace outputs with version 1.0.0h and 1.0.1.

Since the SSL error message is not very helpful, I could not match
this problem to any of the existing bugs.
So feel free to ask for more info about this.

Regards,
  Bastian

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

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

Versions of packages libssl1.0.0 depends on:
ii  debconf [debconf-2.0]  1.5.42
ii  libc6  2.13-27
ii  multiarch-support  2.13-27
ii  zlib1g 1:1.2.6.dfsg-2

libssl1.0.0 recommends no packages.

libssl1.0.0 suggests no packages.

- -- debconf information:
  libssl1.0.0/restart-failed:
  libssl1.0.0/restart-services:

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

iEYEARECAAYFAk9trrQACgkQeBwlBDLsbz5QTwCg0/CiAMF15IWsTSmgQU0Moany
+44AoKJ6cmESgDyoWCPsspfDseAB8UHx
=YMwi
-END PGP SIGNATURE-


curl_sourceforge.net_1.0.0h.log
Description: Binary data
  % Total% Received % Xferd  Average Speed   TimeTime Time  Current
 Dload  Upload   Total   SpentLeft  Speed

  0 00 00 0  0  0 --:--:-- --:--:-- --:--:-- 
0== Info: About to connect() to sourceforge.net port 443 (#0)
== Info:   Trying 216.34.181.60...
== Info: connected
== Info: Connected to sourceforge.net (216.34.181.60) port 443 (#0)
== Info: successfully set certificate verify locations:
== Info:   CAfile: none
  CApath: /etc/ssl/certs
== Info: SSLv3, TLS handshake, Client hello (1):
= Send SSL data, 335 bytes (0x14f)
: 01 00 01 4b 03 03 4f 6d ac aa 95 b9 d6 ff f3 11 ...K..Om
0010: f6 70 ca 18 45 4c 97 84 34 a7 84 2b 8d b6 22 59 .p..EL..4..+..Y
0020: a5 8a dc 9d f4 8f 00 00 9e c0 30 c0 2c c0 28 c0 ..0.,.(.
0030: 24 c0 14 c0 0a c0 22 c0 21 00 a3 00 9f 00 6b 00 $..!.k.
0040: 6a 00 39 00 38 00 88 00 87 c0 32 c0 2e c0 2a c0 j.9.8.2...*.
0050: 26 c0 0f c0 05 00 9d 00 3d 00 35 00 84 c0 12 c0 ...=.5.
0060: 08 c0 1c c0 1b 00 16 00 13 c0 0d c0 03 00 0a c0 
0070: 2f c0 2b c0 27 c0 23 c0 13 c0 09 c0 1f c0 1e 00 /.+.'.#.
0080: a2 00 9e 00 67 00 40 00 33 00 32 00 9a 00 99 00 g.@.3.2.
0090: 45 00 44 c0 31 c0 2d c0 29 c0 25 c0 0e c0 04 00 E.D.1.-.).%.
00a0: 9c 00 3c 00 2f 00 96 00 41 c0 11 c0 07 c0 0c c0 .../...A...
00b0: 02 00 05 00 04 00 15 00 12 00 09 00 14 00 11 00 
00c0: 08 00 06 00 03 00 ff 02 01 00 00 83 00 00 00 14 
00d0: 00 12 00 00 0f 73 6f 75 72 63 65 66 6f 72 67 65 .sourceforge
00e0: 2e 6e 65 74 00 0b 00 04 03 00 01 02 00 0a 00 34 .net...4
00f0: 00 32 00 0e 00 0d 00 19 00 0b 00 0c 00 18 00 09 .2..
0100: 00 0a 00 16 00 17 00 08 00 06 00 07 00 14 00 15 
0110: 00 04 00 05 00 12 00 13 00 01 00 02 00 03 00 0f 
0120: 00 10 00 11 00 0d 00 22 00 20 06 01 06 02 06 03  ..
0130: 05 01 05 02 05 03 04 01 04 02 04 03 03 01 03 02 
0140: 03 03 02 01 02 02 02 03 01 01 00 0f 00 01 01...
curl: (35) Unknown SSL protocol error in connection to sourceforge.net:443 
== Info: Unknown SSL protocol error in connection to sourceforge.net:443 
== Info: Closing connection #0


Bug#656899: mdadm: sending ioctl 1261 to a partition warnings

2012-03-24 Thread Tim Woodall

I'm also seeing this problem. I can trigger these errors trivially by
doing:

/sbin/lvcreate -A n -L500M -s -nvar-backup /dev/vg0/var

and

/sbin/lvremove -A n -f /dev/vg0/var-backup

Seeing lots of these two errors:
Mar 24 10:53:25 feynman kernel: [4198946.403294] mdadm: sending ioctl
1261 to a partition!
Mar 24 10:53:25 feynman kernel: [4198946.403510] mdadm: sending ioctl
800c0910 to a partition!

uname -a
Linux feynman.home.woodall.me.uk 2.6.32-5-686 #1 SMP Mon Jan 16 16:04:25
UTC 2012 i686 GNU/Linux


Additionally, the lvremove doesn't actually work first time if the
previous snapshot that was made was not of the same partition. I have
no idea if that is related but I wouldn't be surprised if it is.

I first saw the lvremove problem on Feb 1st. mdadm and linux-image were
updated on 29th Jan but I didn't reboot until 4th Feb



From kern.log backed up on morning of 5th Feb:

Reboot here:
Feb  4 19:54:43 feynman kernel: Kernel logging (proc) stopped.
Feb  4 19:54:43 feynman kernel: Kernel log daemon terminating.

First instance of this ioctl issue here:
Feb  4 19:55:58 feynman kernel: [3.622444] md: raid1 personality registered 
for level 1
Feb  4 19:55:58 feynman kernel: [3.670803] mdadm: sending ioctl 800c0910 to 
a partition!
Feb  4 19:55:58 feynman kernel: [3.670877] mdadm: sending ioctl 800c0910 to 
a partition!
Feb  4 19:55:58 feynman kernel: [3.670939] mdadm: sending ioctl 1261 to a 
partition!
Feb  4 19:55:58 feynman kernel: [3.670993] mdadm: sending ioctl 1261 to a 
partition!
Feb  4 19:55:58 feynman kernel: [3.671312] mdadm: sending ioctl 1261 to a 
partition!

Tim.

--
God said, div D = rho, div B = 0, curl E = - @B/@t, curl H = J + @D/@t,
and there was light.

   http://www.woodall.me.uk/



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



Bug#665453: gnome-control-center: Allow the user to disable screen turn off

2012-03-24 Thread ygmarchi
Package: gnome-control-center
Version: 1:3.2.2-2
Severity: normal

Dear Maintainer,

please allow the user to disable screen being turned off in the Screen settings
dialog.

I read the useful analysis at http://blog.tordeu.com/?p=292. Actually of the
three properties

org.gnome.settings-daemon.plugins.power sleep-display-ac
org.gnome.settings-daemon.plugins.power sleep-display-battery
org.gnome.desktop.session idle-delay

it appears that the last one is not used anymore (setting it via 'gsettings set
org.gnome.desktop.session idle-delay' has no effect). So I think the dialog
should be modified in two ways

1) It should reflect that there are actually two keys (sleep-display-ac and
sleep-display-battery)

and above all

2) it should allow the user to disable the screen being turned off at all (by
setting the keys to 0)

Thanks,
Carlo.




*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***



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

Kernel: Linux 3.2.0-2-amd64 (SMP w/4 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 gnome-control-center depends on:
ii  accountsservice0.6.15-4
ii  apg2.2.3.dfsg.1-2
ii  desktop-file-utils 0.18-1
ii  gnome-control-center-data  1:3.2.2-2
ii  gnome-desktop3-data3.2.1-3
ii  gnome-icon-theme   3.2.1.2-1
ii  gnome-icon-theme-symbolic  3.2.2-1
ii  gnome-menus3.2.0.1-2
ii  gnome-settings-daemon  3.2.2-2
ii  gsettings-desktop-schemas  3.2.0-2
ii  libatk1.0-02.2.0-2
ii  libc6  2.13-27
ii  libcairo-gobject2  1.10.2-7
ii  libcairo2  1.10.2-7
ii  libcanberra-gtk3-0 0.28-3
ii  libcanberra0   0.28-3
ii  libcheese-gtk203.2.2-2
ii  libcheese1 3.2.2-2
ii  libclutter-1.0-0   1.8.4-1
ii  libcogl-pango0 1.8.2-1
ii  libcogl5   1.8.2-1
ii  libcolord1 0.1.16-2
ii  libcomerr2 1.42.1-2
ii  libcups2   1.5.2-5
ii  libdbus-1-31.4.18-1
ii  libdbus-glib-1-2   0.98-1
ii  libdrm22.4.30-1
ii  libfontconfig1 2.8.0-3.1
ii  libfreetype6   2.4.8-1
ii  libgconf2-43.2.3-3
ii  libgcrypt111.5.0-3
ii  libgdk-pixbuf2.0-0 2.24.1-1
ii  libgl1-mesa-glx [libgl1]   7.11.2-1
ii  libglib2.0-0   2.30.2-6
ii  libgnome-control-center1   1:3.2.2-2
ii  libgnome-desktop-3-2   3.2.1-3
ii  libgnome-menu-3-0  3.2.0.1-2
ii  libgnomekbd7   3.2.0-1
ii  libgnutls262.12.16-1
ii  libgoa-1.0-0   3.2.1-3
ii  libgssapi-krb5-2   1.10+dfsg~beta1-2
ii  libgstreamer0.10-0 0.10.36-1
ii  libgtk-3-0 3.2.3-1
ii  libgtop2-7 2.28.4-2
ii  libjson-glib-1.0-0 0.14.2-1
ii  libk5crypto3   1.10+dfsg~beta1-2
ii  libkrb5-3  1.10+dfsg~beta1-2
ii  libnm-glib40.9.2.0-2
ii  libnm-gtk0 0.9.2.0-2
ii  libnm-util20.9.2.0-2
ii  libnotify4 0.7.4-1
ii  libpango1.0-0  1.29.4-3
ii  libpolkit-gobject-1-0  0.104-2
ii  libpulse-mainloop-glib01.1-3
ii  libpulse0  1.1-3
ii  libsocialweb-client2   0.25.20-1
ii  libupower-glib10.9.15-2
ii  libx11-6   2:1.4.4-4
ii  libxcomposite1 1:0.4.3-2
ii  libxdamage11:1.1.3-2
ii  libxext6   2:1.3.0-3
ii  libxfixes3 1:5.0-4
ii  libxi6 2:1.4.5-1
ii  libxklavier16  5.2.1-1
ii  libxml22.7.8.dfsg-7
ii  zlib1g 1:1.2.6.dfsg-2

Versions of packages gnome-control-center recommends:
ii  cups-pk-helper 0.2.1.2-1
ii  gnome-online-accounts  3.2.1-3
ii  gnome-session  3.2.1-1
ii  gnome-user-guide   3.2.2-1
ii  iso-codes  3.33-1
ii  mesa-utils 8.0.1-2+b3
ii  mousetweaks3.2.1-1
ii  policykit-1-gnome  0.105-2

Versions of packages gnome-control-center suggests:
ii  gnome-screensaver 3.2.2-1
ii  gstreamer0.10-pulseaudio  0.10.31-1
ii  libcanberra-gtk-modulenone
ii  x11-xserver-utils 7.6+3

-- 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#664726: add Atheros AR3012 Maryann-PID-VID

2012-03-24 Thread Henry-Nicolas Tourneur
 
 Ok I understand now, thanks for all your advises :)
 I'll test with 3.0 asap (I don't have the laptop right now) and I hope I
 could be able to share result before the end of this week.
 
 Henry-Nicolas.

Hi,

I did just complete a test using a 3.0.25 and it's working with the
patched kernel.
rfkill switches are working and pairing is working too :)

All done using Wheezy bluetooth stack with gnome tools.

Regards,

Henry-Nicolas Tourneur.



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



Bug#665384: perl: Please conflict with versions of mono-gac that use perl-modules

2012-03-24 Thread Niko Tyni
On Fri, Mar 23, 2012 at 10:10:28AM -0700, Steve Langasek wrote:
 Package: perl
 Version: 5.14.2-6
 Severity: important
 Tags: patch
 User: ubuntu-de...@lists.ubuntu.com
 Usertags: origin-ubuntu precise ubuntu-patch
 
 I've filed bug #665335 against the mono package in Debian, about the fact
 that a script which is called whenever a -cil package is removed has a
 spurious dependency on perl-modules, making upgrades brittle across new
 upstream versions of perl.
 
 Once this bug is fixed in mono (speculatively in version 2.10.8.1-3), I
 think the right course of action is for perl to conflict with the old
 versions of mono-gac to ensure mono-gac gets upgraded before any of the perl
 packages are unpacked.  The attached patch should do this.

Thanks. Looks right to me, we've added similar conflicts in the past.

It's probably unnecessary for 'perl' itself to have this conflict, 'perl-base'
and 'perl-modules' should be enough AFAICS as File::Basename doesn't need
anything from 'perl'. It shouldn't hurt though.
-- 
Niko Tyni   nt...@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#665421: pcre3: Invalid version string 8.30..-3 makes impossible to download the packages with apt

2012-03-24 Thread Eduard Bloch
Hallo,
* Dmitrijs Ledkovs [Sat, Mar 24 2012, 01:09:43AM]:

  However, you're not the only person to have had problems with it and in the 
  latest release I have reluctantlly used an epoch instead.
 
 
 Well i have now correctly merged this bug with a bug filed against
 apt-cacher-ng when ..-2 was uploaded.
 
 Thank you for finding bug in apt-cacher-ng =)

+1. I will fix it in apt-cacher-ng but not yet. And two dots appended in
the version number might be legal but it's a way too weird. I am sure
there are more tools having problems with that.

Regards,
Eduard.



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



Bug#665452: [Pkg-openssl-devel] Bug#665452: libssl1.0.0: breaks HTTPS download of some sites (eg. https://sourceforge.net)

2012-03-24 Thread Kurt Roeckx
On Sat, Mar 24, 2012 at 12:23:37PM +0100, Bastian Kleineidam wrote:
 Package: libssl1.0.0
 Version: 1.0.1-2
 Severity: important
 
 Hi,
 
 installing the newest version breaks curl (and other download tools
 using libssl like perl GET) on https://sourceforge.net/
 Downgrading to 1.0.0h solves the problem.
 
 Attached are curl --trace outputs with version 1.0.0h and 1.0.1.
 
 Since the SSL error message is not very helpful, I could not match
 this problem to any of the existing bugs.
 So feel free to ask for more info about this.

I can reproduce it, and it doesn't make much sense to me at this
time. sourceforge just doesn't seem to reply.

The biggest change in 1.0.1 is that it supports TLS 1.1 and 1.2.
But using s_client with -no_tls1_1 -no_tls1_2 still doesn't get
me a connection. 

On the other hand gnutls-cli sourceforge.net does work as
expected.

And forcing an SSL3 or TLS1 connection using s_client also works.

So I think someone at sourceforge will have to take a look at this.


Kurt




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



Bug#664976: debian-edu-config: installer hang during debian-edu-profile run at the end

2012-03-24 Thread Petter Reinholdtsen
[Steven Chamberlain]
 Hi,
 
 The timestamps in syslog are confusing.  Seems like they are
 interchangeably UTC or localtime.

Yes.  The syslog messages from /target/ have localtime, and the ones
from d-i have UTC.

 Anyway, assuming the log entries are the right order, it looks like
 OpenLDAP got started before it was configured.

Given that it work for others, I believe LDAP is properly configured
in the common case.

I was told on IRC by the bug reporter, bammes, that his installation
worked when he did not use characters like * and # in the password.
This made me check the code to see if the root and first user password
are properly quoted in the source.  The attached patch fix a few
missing quotes.  The patch is untested, because I lack my test bench
here.
-- 
Happy hacking
Petter Reinholdtsen
Index: share/debian-edu-config/tools/kerberos-kdc-init
===
--- share/debian-edu-config/tools/kerberos-kdc-init (revisjon 77145)
+++ share/debian-edu-config/tools/kerberos-kdc-init (arbeidskopi)
@@ -263,7 +263,7 @@
 GID=1000
 chown -R $UID:$GID $HOMEDIR
 
-pwlen=$(echo -n $FIRSTUSERPWD | wc -c)
+pwlen=$(echo -n $FIRSTUSERPWD | wc -c)
 echo Creating Kerberos principal for $USERDN (password length $pwlen)
 kadmin.local -q add_principal -pw $FIRSTUSERPWD -x dn=$USERDN 
$FIRSTUSERNAME 12
 db_set debian-edu-config/first-user-password ''
Index: ldap-tools/ldap-debian-edu-install
===
--- ldap-tools/ldap-debian-edu-install  (revisjon 77145)
+++ ldap-tools/ldap-debian-edu-install  (arbeidskopi)
@@ -254,7 +254,7 @@
   ## Create and distribute a random password and
   ## its hash for the ldap gosa-admin account:
   GOSAPWD=`slappasswd -g -h {CLEARTEXT}`
-  GOSAPWDHASH=`slappasswd -s $GOSAPWD -h {SSHA}`
+  GOSAPWDHASH=`slappasswd -s $GOSAPWD -h {SSHA}`
   GOSACONFDIR=/etc/gosa/
   GOSACONF=gosa.conf
   GOSAADMINSDN=$(awk '/dn: cn=gosa-admins,/ { print $2 }' /etc/ldap/gosa.ldif)
@@ -306,11 +306,11 @@
   ## Create and distribute a random password and its hash
   ## for the kdc service accounts kadmin and kdc-service:
   KDCPWD=`slappasswd -g -h {CLEARTEXT}`
-  KDCPWDHASH=`slappasswd -s $KDCPWD -h {SSHA}`
+  KDCPWDHASH=`slappasswd -s $KDCPWD -h {SSHA}`
   KDCCONFDIR=/etc/krb5kdc/
   KEYFILE=service.keyfile
   ## convert to {HEX} encoding:
-  KDCPWDHEX=`echo $KDCPWD | xxd -g0 -ps | sed s/0a$//`
+  KDCPWDHEX=`echo $KDCPWD | xxd -g0 -ps | sed s/0a$//`
   KRB_CONT_DN=`awk '/dn: cn=kerberos,/ { print $2 }' /etc/ldap/krb5.ldif`
 
   mkdir -p $KDCCONFDIR
@@ -327,7 +327,7 @@
   SAMBAPWD=$(slappasswd -g -h {CLEARTEXT})
   # then generate hashed Samba password, this will be needed for bootstrapping
   # cn=smbadmin in root.ldif
-  SAMBAPWDHASH=$(slappasswd -u -s $SAMBAPWD)
+  SAMBAPWDHASH=$(slappasswd -u -s $SAMBAPWD)
  
   # first portion of bootstrap (everything except samba.ldif)
   for ldif in \
@@ -440,7 +440,7 @@
 EOF
 
 # Store root's password temporarily in secrets.tdb (for 
cn=admin,ou=ldap-access,BASEDN)
-smbpasswd -c /etc/samba/smb-debian-edu-ldapbootstrap.conf -w $ROOTPWDCLEAR
+smbpasswd -c /etc/samba/smb-debian-edu-ldapbootstrap.conf -w 
$ROOTPWDCLEAR
 
 # This will initialize the sambaDomainName=DOMAIN object in LDAP and
 # generate a sambaSID for DOMAIN.
@@ -455,7 +455,7 @@
 # now set up our auto-generated Samba password (created further above) 
that shall be 
 # used in smb.conf and with smbldap-tools
 # (i.e. for cn=smbadmin,ou=samba,dc=skole,dc=skolelinux,dc=no)...
-smbpasswd -c /etc/samba/smb.conf -w $SAMBAPWD
+smbpasswd -c /etc/samba/smb.conf -w $SAMBAPWD
 
 # also put the $SAMBAPWD also into smbldap_bind.conf
 chmod 0600 /etc/smbldap-tools/smbldap_bind.conf
@@ -489,7 +489,7 @@
   fi
 
   # Generate NT/LM hashes for Samba's Administrator account
-  SAMBA_ADMPWD_HASHES=$(perl -MCrypt::SmbHash -e print join(q[:],ntlmgen 
\$ARGV[0]), $/; $ROOTPWDCLEAR)
+  SAMBA_ADMPWD_HASHES=$(perl -MCrypt::SmbHash -e print join(q[:],ntlmgen 
\$ARGV[0]), $/; $ROOTPWDCLEAR)
   SAMBA_ADMPWD_LMHASH=$(echo $SAMBA_ADMPWD_HASHES | cut -d : -f1)
   SAMBA_ADMPWD_NTHASH=$(echo $SAMBA_ADMPWD_HASHES | cut -d : -f2)
 


Bug#664900: libio-socket-ssl-perl: FTBFS, failing test

2012-03-24 Thread Salvatore Bonaccorso

Hi Alessandro

On Wed, Mar 21, 2012 at 11:39:20PM +0100, Alessandro Ghedini wrote:
 On Wed, Mar 21, 2012 at 11:19:47PM +0100, Alessandro Ghedini wrote:
  On Wed, Mar 21, 2012 at 10:26:37PM +0100, Salvatore Bonaccorso wrote:
   On Wed, Mar 21, 2012 at 09:02:54PM +0100, Salvatore Bonaccorso wrote:
 t/dhe.t 
 Failed 2/3 subtests
  
   In fact this one does not fail in a wheezy build with 1.42-1+b1.
  
   Okay to reassign this to libnet-ssleay-perl and add a affects
   libio-socket-ssl-perl?
 
  I think it is an openssl-related thing. I can reproduce the failure
  with the latest libssl1.0.0 in sid (1.0.1-2) but not with the version
  1.0.0h-1 and below.
 
 Also, having a look at the t/dhe.t file I read:
 
  # openssl 1.0.1(beta2) complains about the rsa key too small, unless
  # we explicitly set version to tlsv1 or sslv3
  # unfortunatly the workaround fails for older openssl versions :(
 
 I think that the version check below that comment is the cause:
 removing it (but leaving the SSL_version = 'tlsv1') solves the
 problem for me with libssl 1.0.1 (but would probably break with older
 versions).
 
 Given that OPENSSL_VERSION_NUMBER is a macro, maybe simply rebuilding
 libnet-ssleay-perl against the new libssl would solve the issue?

I looked into this now, and yes you should be right. When recompiling
libnet-ssleay-perl against new openssl the issue dissapears then. 

We still have [1] open, but upstream RT contains discussion on
resolving that.

 [1] http://bugs.debian.org/661566

Regards
Salvatore


signature.asc
Description: Digital signature


Bug#665388: libperlbal-xs-httpheaders-perl: FTBFS: C code doesn't load reliably

2012-03-24 Thread gregor herrmann
tag 665388 + confirmed pending
thanks

On Sat, 24 Mar 2012 09:37:19 +0200, Niko Tyni wrote:

#   Failed test 'use Perlbal::XS::HTTPHeaders;'
#   at t/HTTPHeaders.t line 10.
# Tried to use 'Perlbal::XS::HTTPHeaders'.
# Error:  Not a CODE reference at /usr/lib/perl/5.14/DynaLoader.pm 
  line 207.
 Looks like at least some of the failures are due to the well known
 CCFLAGS override bug discussed in
  https://rt.cpan.org/Public/Bug/Display.html?id=68613

Yup, I've already committed a patch that adds $Config{ccflags}
yesterday, hachi just wanted to take a closer look at some details.

Cheers,
gregor
 
-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Nick Drake: 'Cello Song


signature.asc
Description: Digital signature


Bug#664767: Brcmsmac driver woes, possible regression?

2012-03-24 Thread Jonathan Nieder
forwarded 664767 
http://thread.gmane.org/gmane.linux.kernel.wireless.general/87873
quit

Camaleón wrote:
 2012/3/24 Jonathan Nieder jrnie...@gmail.com:

    Could you send a summary of the symptoms to
 linux-wirel...@vger.kernel.org, cc-ing Stanislaw Gruszka
 sgrus...@redhat.com, Arend van Spriel ar...@broadcom.com,
 and either me or this bug log so we can track it?
[...]
 Already done.

Perfect.  Thanks much.

Jonathan



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



Bug#665454: ITP: canzelay-client -- Canzeley -- It is the client application to organize a German Law Office

2012-03-24 Thread Mechtilde
Package: wnpp
Severity: wishlist
Owner: Mechtilde o...@mechtilde.de

* Package name: canzelay-client
  Version : 0.3.0
  Upstream Author : Dr. jur Michael Stehmann i...@rechtsanwalt-stehmann.de
* URL : http://www.canzeley.de/
* License : GPL 3+
  Programming Lang: StarBasic / OpenOffice.org Basic or later and SQL
  Description : Canzeley -- It is the client application to organize a
German Law Office



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



Bug#665455: xmltv: FTBFS , b-d on liblinux-dvb-perl

2012-03-24 Thread A Mennucc
Package: xmltv
Version: 0.5.61-1
Severity: important

hi, you should add a build-dependency on liblinux-dvb-perl. a.



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



Bug#665456: texlive-bin: FTBFS on hurd

2012-03-24 Thread Hilmar Preusse
Package: texlive-bin
Version: 2011.20120322-1
Severity: important

The Hurd hurts us ;-) . ptexenc does not build.

libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../../../texk/ptexenc
-I./ptexenc
-I/build/buildd-texlive-bin_2011.20120322-1-hurd-i386-QeUDGl/texlive-bin-2011.20120322/Work/texk
-I/build/buildd-texlive-bin_2011.20120322-1-hurd-i386-QeUDGl/texlive-bin-2011.20120322/texk
-DMAKE_PTENC_DLL -Wimplicit -Wreturn-type -Wdeclaration-after-statement
-Wno-unknown-pragmas -g -O2 -c ../../../texk/ptexenc/ptexenc.c  -fPIC
-DPIC -o .libs/libptexenc_la-ptexenc.o
../../../texk/ptexenc/ptexenc.c: In function 'nkf_open':
../../../texk/ptexenc/ptexenc.c:762:15: error: 'PATH_MAX' undeclared (first use 
in this function)
../../../texk/ptexenc/ptexenc.c:762:15: note: each undeclared identifier is 
reported only once for each function it appears in

This is a very common software bug; it should not be hard to fix it.  I'll
care about it.

Sorry for not noticing about this during experimental stage, the package
was never built on Hurd.

H.
-- 
sigfault



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



Bug#665457: tex-common uninstallable due a bashism bug in /usr/sbin/update-texmf

2012-03-24 Thread Klaus Ethgen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512
NotDashEscaped: You need GnuPG to verify this message

Package: tex-common
Version: 3.4
Severity: grave

I wanted to tag this on sid but unfortunately there is not such a tag in
reportbug.

However, the bug is that there is bashisms in /usr/sbin/update-texmf
leeding to unintallationability of the package and, as there are many
packages depending on tex-common, the whole tex is broken!

   /usr/sbin/update-texmf: 77: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 78: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 79: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 80: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 81: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 82: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 83: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 84: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 85: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator
   /usr/sbin/update-texmf: 86: [: /etc/texmf/texmf.d/96JadeTeX.cnf: unexpected 
operator

I am not sure if that is the only bug as fixing that do leed to other
errors not finding some tex packages and such.

So more over the whole tex stack is not upgradable at all and only a
complete purge and reinstallation of the relevant packages seems to
help. But then it stumple over the bug above.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (800, 'unstable'), (700, 'stable'), (60, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.1.10 (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) (ignored: LC_ALL set to 
de_DE)
Shell: /bin/sh linked to /bin/dash

Versions of packages tex-common depends on:
ii  debconf [debconf-2.0]  1.5.42
ii  dpkg   1.16.2
ii  ucf3.0025+nmu2

tex-common recommends no packages.

Versions of packages tex-common suggests:
ii  debhelper  9.20120322

Versions of packages texlive-base depends on:
ii  debconf [debconf-2.0]  1.5.42
ii  dpkg   1.16.2
ii  install-info   4.13a.dfsg.1-8
ii  libpaper-utils 1.1.24+nmu1
ii  luatex 0.70.1-2
ii  mime-support   3.52-1
ii  texlive-binaries   2011.20120322-1
ii  texlive-common 2011.20120322-1
ii  texlive-doc-base   2011.20120322-1
ii  ucf3.0025+nmu2

Versions of packages texlive-base recommends:
ii  lmodern  2.004.1-5

Versions of packages texlive-base suggests:
ii  acroread [pdf-viewer]9.4.7-0.1
ii  ghostscript [postscript-viewer]  9.05~dfsg-4
ii  gv [postscript-viewer]   1:3.7.3-1
ii  perl-tk  1:804.029-1.2

Versions of packages texlive-binaries depends on:
ii  dpkg1.16.2
ii  ed  1.6-1
ii  install-info4.13a.dfsg.1-8
ii  libc6   2.13-27
ii  libfontconfig1  2.8.0-3.1
ii  libfreetype62.4.8-1
ii  libgcc1 1:4.7.0-1
ii  libkpathsea62011.20120322-1
ii  libpng12-0  1.2.47-1
ii  libpoppler130.16.7-3
ii  libptexenc1 2011.20120322-1
ii  libstdc++6  4.7.0-1
ii  libt1-5 5.1.2-3.5
ii  libx11-62:1.4.4-4
ii  libxaw7 2:1.0.9-3
ii  libxmu6 2:1.1.0-3
ii  libxpm4 1:3.5.9-4
ii  libxt6  1:1.1.1-2
ii  perl5.14.2-9
ii  texlive-common  2011.20120322-1
ii  zlib1g  1:1.2.6.dfsg-2

Versions of packages texlive-binaries recommends:
ii  luatex  0.70.1-2
ii  python  2.7.2-10
ii  ruby4.8
ii  ruby1.8 [ruby]  1.8.7.352-2
ii  texlive-base2011.20120322-1
ii  tk8.4 [wish]8.4.19-4
ii  tk8.5 [wish]8.5.11-1

-- debconf information:
  texlive-base/texconfig_ignorant:
  tex-common/check_texmf_wrong:
  texlive-base/binary_chooser: pdftex, dvips, dvipdfmx, xdvi
  tex-common/check_texmf_missing:

-- 
Klaus Ethgen  http://www.ethgen.ch/
pub  4096R/4E20AF1C 2011-05-16   Klaus Ethgen kl...@ethgen.de
Fingerprint: 85D4 CA42 952C 949B 1753  62B3 79D0 B06F 4E20 AF1C
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQGcBAEBCgAGBQJPbbi3AAoJEKZ8CrGAGfasZ2UL/3vDPI+EiWwmRnyRRzydz4SI
FovcZ/G2MUTvAQNKP6jyF3K4IGH3zCNc0ivX+ix7il3clsZJhdnLqi0aIZ1T0i4Q
arE8B3NRIPWkyjjHw/+eNERF/cGOBTgbePoSs+ZR3Pkp05jM7SBc5QMX7X1QdSUo
Bu+PmJm6CfUG+zjWIYiuk8xJ9rRuN+H+fHBGIXiCEmuYjqvGAW0iKXPnnvNLwzbg
JUOplPDZlsTbwUCCUFrQ7HBk3zgoZryMEMYhaSC72su5LEsagOhhG1kjIUGjcF/4
zH4XokwdiFzzfD1gRUB6RDp43XI38xNc8XdDtfn64rjb+gaTFcssFCdFpHXZMCj8
pg0Dx22VuZ3phGHHCbhXFKCkdnwFidSIUBuxTFNxJ01MCaXf6MxFZG2SLU5qkzNl
Cy17DHxOZIO8psG+2g8dkkMKLEOPucdyxqXPQ25WD1qvDCNA1hkrq2qIBHOFisSA
omP9EjM03oSx1P1MLlur9/CnFsfd3oOB5Iy0tvup/w==
=bbig
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, 

Bug#665459: boinc-client v.7.0.15 Einstein@home S6LV1 tasks all end with computation errors

2012-03-24 Thread Jos van Wolput

Package: boinc-client
Version: 7.0.15+dfsg-1
Severity: important

All Einstein@home S6LV1 tasks end with the same computation error
Stderr output:
-
core_client_version7.0.15/core_client_version
![CDATA[
message
process exited with code 2 (0x2, -254)
/message
stderr_txt
sched_setscheduler: Operation not permitted
execv: No such file or directory

/stderr_txt
]]
-
According to E@H Message boards : Problems and Bug Reports : S6LV1 tasks all 
with computation errors:
'This is a Client Problem. The application binary is not made executable after download. This is fixed in 7.0.23. As a workaround you may 
manually set the execute permission of the einstein* files in the project directory.'


http://einstein.phys.uwm.edu/forum_thread.php?id=9355



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



Bug#665460: Refers to further doc in /u/s/d/jigl; nothing there

2012-03-24 Thread Thijs Kinkhorst
Package: jigl
Version: 2.0.1+20060126-3
Severity: minor

Hi,

man jigl contains the text:

  A summary of options is included below.
  For further details, see the documentation in /usr/share/doc/jigl/

Unfortunately, that dir doesn't contain further documentation: it has changelogs
and copyright, and some themes, but no further documentation on options or
usage.

Ideally more info should be provided there, but if it's not available, at least
that sentence should be removed from the man page.


cheers,
Thijs



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

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

Versions of packages jigl depends on:
ii  imagemagick  8:6.6.9.7-6
ii  jhead1:2.93-1
ii  perl 5.14.2-9

Versions of packages jigl recommends:
ii  csh [c-shell]  20110502-2

jigl 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#665461: makedev.postinst for GNU/kFreeBSD

2012-03-24 Thread Mats Erik Andersson
Package: makedev
Version: 2.3.1-90
Severity: serious
User: debian-...@lists.debian.org

The postinst script is defective for GNU/kFreeBSD.
Virtual terminals are named /dev/ttyv[0-9]* for
that port. The present script is unable to complete
the postinst configuration since /dev/tty[0-9]*
are rightfully missing.

The call to MAKEDEV for creation of /dev/tty?
is declined with an ugly message, pointing at
non-Linux filesystems. This is harmless.

Serious is the fact that

   chmod g-r,o= /dev/tty[0-9]*

is failing, thus aborting the script.

Regards
  Mats Erik Andersson, DM



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



Bug#622606: xserver-xorg-video-r128: [regression] [powerpc] X dies with SIGBUS if I tell it UseFBDev false

2012-03-24 Thread Tormod Volden
Rogério and James,

Would you be willing to test this patch:
http://alioth.debian.org/~tormod-guest/0001-Do-not-use-VBE-on-powerpc-in-R128ProbeDDC.patch

It should avoid the SIGBUS error when running without an xorg.conf or
with -configure. It does not change much more, but my hope is that X
will start and fall back to some low screen resolution instead of
simply crashing.

Thanks in advance,
Tormod



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



Bug#656669: gedit-latex-plugin: diff for NMU version 3.3.2-1.1

2012-03-24 Thread gregor herrmann
tags 656669 + pending
thanks

Dear maintainer,

I've prepared an NMU for gedit-latex-plugin (versioned as 3.3.2-1.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Dire Straits: Once Upon A Time In The West
diff -Nru gedit-latex-plugin-3.3.2/debian/changelog gedit-latex-plugin-3.3.2/debian/changelog
--- gedit-latex-plugin-3.3.2/debian/changelog	2011-12-08 13:28:57.0 +0100
+++ gedit-latex-plugin-3.3.2/debian/changelog	2012-03-24 13:45:00.0 +0100
@@ -1,3 +1,13 @@
+gedit-latex-plugin (3.3.2-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS due to latex/latex/environment.py not in POTFILES.in:
+add patch 03-environment-translations.patch from Ubuntu / Mathieu
+Trudel-Lapierre: add latex/latex/environment.py to po/POTFILES.in.
+(Closes: #656669)
+
+ -- gregor herrmann gre...@debian.org  Sat, 24 Mar 2012 13:43:12 +0100
+
 gedit-latex-plugin (3.3.2-1) unstable; urgency=low
 
   * new upstream version (Closes: #650355)
diff -Nru gedit-latex-plugin-3.3.2/debian/patches/03-environment-translations.patch gedit-latex-plugin-3.3.2/debian/patches/03-environment-translations.patch
--- gedit-latex-plugin-3.3.2/debian/patches/03-environment-translations.patch	1970-01-01 01:00:00.0 +0100
+++ gedit-latex-plugin-3.3.2/debian/patches/03-environment-translations.patch	2012-03-24 13:43:02.0 +0100
@@ -0,0 +1,12 @@
+Index: gedit-latex-plugin/po/POTFILES.in
+===
+--- gedit-latex-plugin.orig/po/POTFILES.in	2012-01-20 14:18:32.49628 -0500
 gedit-latex-plugin/po/POTFILES.in	2012-01-20 14:28:41.421427886 -0500
+@@ -14,6 +14,7 @@
+ latex/bibtex/actions.py
+ latex/bibtex/views.py
+ latex/latex/actions.py
++latex/latex/environment.py
+ latex/latex/views.py
+ latex/outline.py
+ latex/tools/views.py
diff -Nru gedit-latex-plugin-3.3.2/debian/patches/series gedit-latex-plugin-3.3.2/debian/patches/series
--- gedit-latex-plugin-3.3.2/debian/patches/series	2011-10-14 00:11:51.0 +0200
+++ gedit-latex-plugin-3.3.2/debian/patches/series	2012-03-24 13:43:02.0 +0100
@@ -1,2 +1,3 @@
 01-templates-in-systemdir.patch
 02-remove-debug.patch
+03-environment-translations.patch


signature.asc
Description: Digital signature


Bug#664726: add Atheros AR3012 Maryann-PID-VID

2012-03-24 Thread Jonathan Nieder
found 664726 linux-2.6/3.3-1~experimental.1
quit

Henry-Nicolas Tourneur wrote:

 I did just complete a test using a 3.0.25 and it's working with the
 patched kernel.
 rfkill switches are working and pairing is working too :)

 All done using Wheezy bluetooth stack with gnome tools.

Thanks for testing.

50da3e6bec04 (Bluetooth: Add Atheros maryann PIDVID support) still
hasn't been merged to linus's master, but I don't think that should
stop us from applying it in Debian.

To save time once 50da3e6bec04 is merged to linus's tree: here is a
message I was preparing to send before I noticed that it still isn't
part of mainline.

-- 8 --
To: sta...@vger.kernel.org
Cc: linux-blueto...@vger.kernel.org, Cho, Yu-Chen a...@novell.com,
Henry-Nicolas Tourneur henry.nico...@tourneur.be,
Marcel Holtmann mar...@holtmann.org,
Gustavo Padovan gust...@padovan.org,
Johan Hedberg johan.hedb...@gmail.com,
Oliver Neukum oli...@neukum.name, Lee, Chun-Yi j...@suse.com
Subject: [PATCH 3.0.y] Add Atheros maryann PIDVID support

Hi Greg,

Please consider

 9498ba7a1d38 Bluetooth: Adding USB device 13d3:3375 as an Atheros AR3012
 50da3e6bec04 Bluetooth: Add Atheros maryann PIDVID support

for application to the 3.0.y, 3.2.y, and 3.3.y stable trees.  These
add additional USB IDs to the list recognized by the ath3k firmware
loader.

Henry-Nicolas Tourneur wrote[1]:

 I did just complete a test using a 3.0.25 and it's working with the
 patched kernel.
 rfkill switches are working and pairing is working too :)

 All done using Wheezy bluetooth stack with gnome tools.

so the second of the two patches is

 Tested-by: Henry-Nicolas Tourneur henry.nico...@tourneur.be

Both patches have been in linux-next for a while.  The first reached
Linus's master on Tuesday and the second hit master in __ (fill
here).

Thanks,
Jonathan

[1] http://bugs.debian.org/664726



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



Bug#664771: Document a workflow involving the upstream VCS

2012-03-24 Thread Guido Günther
On Wed, Mar 21, 2012 at 12:43:48AM +0600, Andrey Rahmatullin wrote:
 Package: git-buildpackage
 Version: 0.6.0~git20120315
 Severity: wishlist
 
 The current documentation says nothing about integrating with the upstream git
 repo or an imported (via git-svn etc) upstream VCS while the tools seem to
 support this workflow. This leads to inventing workflows instead of adopting
 some recommended one. So it would be useful to at least add some tips to the
 documentation about using upstream tags in upstream-tag, using pristine-tar
 with upstream tags and upstream tarballs etc.

There's a patch in git now:


http://anonscm.debian.org/gitweb/?p=users/agx/git-buildpackage.git;a=commit;h=96332ccff4f751dbd63549004fc6749b760adcb7

Please send enhanements.
Cheers,
 -- Guido



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



Bug#664771: [git-buildpackage/experimental] Start documenting useful options when upstream uses git.

2012-03-24 Thread Guido Günther
tag 664771 pending
thanks

Date:   Sat Mar 24 13:27:31 2012 +0100
Author: Guido Günther a...@sigxcpu.org
Commit ID: 96332ccff4f751dbd63549004fc6749b760adcb7
Commit URL: 
http://git.debian.org/?p=users/agx/git-buildpackage.git;a=commitdiff;h=96332ccff4f751dbd63549004fc6749b760adcb7
Patch URL: 
http://git.debian.org/?p=users/agx/git-buildpackage.git;a=commitdiff_plain;h=96332ccff4f751dbd63549004fc6749b760adcb7

Start documenting useful options when upstream uses git.

This is quiet terse yet so follow up bugs are welcome.

Closes: #664771
  



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



Bug#665437: wishlist: editing the msg content (attached)

2012-03-24 Thread Benoît Knecht
Hi,

yelloprotoss wrote:
 I create an email to send with m
 
 then I type my emailto, subject, and message.
 
 using nano
 
 then I save the message content with this nano.
 
 OK 
 
 now email is ready to be sent
 
 
 I just have to press y to make it sent
 
 ohhh... I just noticed that my message content with with some
 mistakes.
 
 I wanna modify it ...
 
 too bad. Mutt does not allow that or it is not display on the top of
 the screen (into status blue bar) how to edit it
 
 I cannot edit ... buuu 

I don't understand, I can edit a message about to being sent by pressing
e; maybe you have different bindings, you can check by pressing ?
right before you send you message and look for the edit-message
command.

 Would you please add some more info on the top of hte screen to edit
 like with E if possible. 

Oh, so is your bug report about just adding more information into the
top bar, or do you think there's some functionality missing?

Cheers,

-- 
Benoît Knecht



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



Bug#665462: Wireless blocked

2012-03-24 Thread Jeff Mayer

Package: wireless-tools
Version: 30~pre9-5


No wirless networks found displayed in Wicd.  Asus eee 900A, wireless indicator 
is on.  Wireless was working with eeebuntu prior to Debian lxde install.

root@netbook:~# uname -a
Linux netbook 2.6.32-5-686 #1 SMP Mon Jan 16 16:04:25 UTC 2012 i686 GNU/Linux

root@netbook:~# ls -l /lib/libc.so.6
lrwxrwxrwx 1 root root 14 Mar 22 20:02 /lib/libc.so.6 - libc-2.11.3.so


root@netbook:~# dmesg | grep -i eee
[   23.741235] eeepc_laptop: Eee PC Hotkey Driver
[   23.741892] eeepc_laptop: Hotkey init flags 0x41
[   23.742140] eeepc_laptop: TYPE (200) not reported by BIOS, enabling 
anyway
[   23.742154] eeepc_laptop: Get control methods supported: 0x2181701
[   23.752095] input: Asus EeePC extra buttons as 
/devices/platform/eeepc/input/input6
[   23.977839] eeepc_laptop: BIOS says wireless lan is blocked, but the pci 
device is present
[   23.977847] eeepc_laptop: skipped wireless hotplug as probably inappropriate 
for this model


root@netbook:~# rfkill list
0: eeepc-wlan: Wireless LAN
Soft blocked: no
Hard blocked: no

When I toggle wirless off:

root@netbook:~# tail /var/log/messages 
Mar 24 08:34:16 netbook kernel: [  525.725253] (519 KHz - 521 KHz @ 
4 KHz), (600 mBi, 2300 mBm)
Mar 24 08:34:16 netbook kernel: [  525.725262] (521 KHz - 523 KHz @ 
4 KHz), (600 mBi, 2300 mBm)
Mar 24 08:34:16 netbook kernel: [  525.725272] (523 KHz - 533 KHz @ 
4 KHz), (600 mBi, 2300 mBm)
Mar 24 08:34:16 netbook kernel: [  525.725281] (5735000 KHz - 5835000 KHz @ 
4 KHz), (600 mBi, 3000 mBm)
Mar 24 08:34:16 netbook kernel: [  525.725304] cfg80211: Calling CRDA for 
country: US
Mar 24 08:34:16 netbook kernel: [  525.861016] Broadcom 43xx driver loaded [ 
Features: PMLS, Firmware-ID: FW13 ]
Mar 24 08:50:06 netbook kernel: [ 1476.520911] eeepc_laptop: BIOS says wireless 
lan is blocked, but the pci device is present
Mar 24 08:50:06 netbook kernel: [ 1476.520926] eeepc_laptop: skipped wireless 
hotplug as probably inappropriate for this model
Mar 24 08:50:06 netbook kernel: [ 1476.621362] eeepc_laptop: BIOS says wireless 
lan is blocked, but the pci device is present
Mar 24 08:50:06 netbook kernel: [ 1476.621381] eeepc_laptop: skipped wireless 
hotplug as probably inappropriate for this model
  

Bug#665463: emesene: no notification when contact goes online

2012-03-24 Thread 01
Package: emesene
Version: 2.12.1+dfsg-1

Hello,

There are probably several issues around this, and they're not new, the
most visible one is:

- I don't get notifications of when a contact goes online, but I do
  when goes offline.

Other issues are:
- It's not straightforward to get add a contact then make each have
  visibility of the other
- I was told contacts were unable to send me offline messages, while I
  can send offline messages to them

Do you have informations on these issues ? They're probably old,
common, and shared amongst several MSN clients.



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



Bug#665464: dselect: jump to next !(remove|purge) on Tab key

2012-03-24 Thread Thorsten Glaser
Package: dselect
Severity: wishlish

Hi,

while dselect is still great to use, the available optional
packages list is a tad harder to use than back in slink times
due to its sheer size.

May I suggest binding the Tab key to the action: jump forward
to the next package which is not in _ or - state

Thanks,
//mirabilos
-- 
 emacs als auch vi zum Kotzen finde (joe rules) und pine für den einzig
 bedienbaren textmode-mailclient halte (und ich hab sie alle ausprobiert). ;)
Hallo, ich bin der Holger (Hallo Holger!), und ich bin ebenfalls
... pine-User, und das auch noch gewohnheitsmäßig (Oooohhh).  [aus dasr]



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



Bug#665465: Please upgrade parted to new upstream release

2012-03-24 Thread Stephen Powell
Package: parted
Version: 2.3-8
Severity: wishlist

Please upgrade parted to a new upstream release.  We have been
at release 2.3 for some time.  2.4 and later releases contain
important enhancements for the s390/s390x environment such as

   o bug fixes for LDL-formatted disks at a block size other
 than 4096
   o support for the version 2 LDL format
   o support for CMS-formatted disks (reserved and non-reserved)
   o support for FBA DASD devices and the dasd_fba_mod driver
  (CMS format only)
   o support for the dasd_diag_mod driver
  (LDL or CMS format for CKD devices, CMS format only for
   FBA devices)  

-- 
  .''`. Stephen Powell
 : :'  :
 `. `'`
   `-



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



Bug#664726: add Atheros AR3012 Maryann-PID-VID

2012-03-24 Thread Henry-Nicolas Tourneur
Le samedi 24 mars 2012 à 07:06 -0500, Jonathan Nieder a écrit :
 found 664726 linux-2.6/3.3-1~experimental.1
 quit
[..]
 Thanks for testing.
 
 50da3e6bec04 (Bluetooth: Add Atheros maryann PIDVID support) still
 hasn't been merged to linus's master, but I don't think that should
 stop us from applying it in Debian.
 
 To save time once 50da3e6bec04 is merged to linus's tree: here is a
 message I was preparing to send before I noticed that it still isn't
 part of mainline.
 
That's great Jonathan, thanks for providing support :)
I'll follow this up with high interesst, don't hesitate to ask if any
more tests are required :)

Have a nice week-end.

Henry-Nicolas.





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



Bug#665449: ITP: cl -- Kombu actor framework

2012-03-24 Thread Michael Fladischer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Eugene V. Lyubimkin, 03/24/2012 12:11 PM:
 IMHO the package name is way too generic and clashes with existing 
 cl-* Common Lisp packages. Please choose a more descriptive
 package name.

I've retitled to python-cl. If this is still to generic I'd propose
python-kombu-actor.

Cheers,
- -- 
Michael Fladischer
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk9tuR4ACgkQeJ3z1zFMUGaQyQCdESICU3Me1i3NmrqaxzZ/xkue
bE4AniCwxKuThzl+BlSwDFS42BFllO61
=ZxeV
-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#665466: task-laptop: Should no more depend on apmd

2012-03-24 Thread Axel Beckert

Package: task-laptop
Version: 3.08
Severity: normal

Dear Maintainer,

task-laptop currently depends on apmd. But the description of apmd says:

  Since lenny Debian kernels are not built with APM support anymore. You
  need to compile a kernel with apm support enabled to use this
  package. You need to boot the kernel with the apm=on option if you
  want to enable the driver.

  In most cases, users may want to know that there are newer power
  management schemes, like ACPI.

So IMHO task-laptop should drop the Depends on apmd or at most convert
it to a Suggests.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (900, 'testing'), (600, 'stable'), (110, 
'experimental')
Architecture: i386 (i686)

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



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



Bug#665354: RFS: viennacl/1.2.1-1

2012-03-24 Thread Michael Wild
On 03/24/2012 02:40 PM, Paul Wise wrote:
 On Fri, Mar 23, 2012 at 8:38 PM, Michael Wild wrote:
 
 Oops, that's my mistake. No idea how that crept in, I'm pretty certain I
 don't have DMUA rights... Must have misunderstood the description of
 that field when I first created the control file.

 I will update the package at m.d.n ASAP.
 
 Both of the previous uploads had DMUA added. I wonder why Michael
 Tautschnig uploaded the package to the archive in that state. DMUA
 should never be added in the initial upload, only later and certainly
 not on packages where the primary maintainer is not a DM.
 

Probably he missed it. Also Sylvestre Ledru had a look at the package
(at least, for the last upload of version 1.2.0-1), and he also
overlooked it.

Michael



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



Bug#665467: amavisd-new: should recommend libnet-patricial-perl

2012-03-24 Thread Jonas Smedegaard
Package: amavisd-new
Severity: normal

Upstream release-notes.txt mentions speedups when Net::Patricia is
available, so package libnet-patricia-perl should be recommended.

 - Jonas

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

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



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



Bug#665468: glib-networking: should not depend on gsettings-desktop-schemas

2012-03-24 Thread Hermogenes Hebert Pereira Oliveira
Package: glib-networking
Version: 2.30.2-1
Severity: normal

Dear Maintainer,

The dependency of glib-networking in gsettings-desktop-schemas is
causing the installation of unnecessary gconf/dconf packages.  The
installation of many small webbrowsers, like luakit, for example,
which depend on libsoup2.4-1 (and, hence on glib-networking) end up
pulling a lot of unrelated gconf/dconf packages.

$ aptitude why luakit dconf-service
p   luakitDepends libsoup2.4-1 (= 2.26.1)  
p   libsoup2.4-1  Depends glib-networking (= 2.28.4)   
p   glib-networking   Depends gsettings-desktop-schemas 
p   gsettings-desktop-schemas Depends dconf-gsettings-backend | gsettings-backen
  d 
p   dconf-gsettings-backend   Depends dconf-service ( 0.10.0-3.1~) 

This problem affects not only luakit but also surf, uzbl and many
other packages.  Futhermore, it is related to bug #575020 reported
against gstreamer0.10-plugins-good and affects gst123 (a command-line
gstreamer interface).  That is, even if bug #575020 is closed,
gstreamer0.10-plugins-good will continue to depend on gconf/dconf
packages through its dependency on libsoup2.4-1.

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

Kernel: Linux 3.2.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (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#665469: amavisd-new: should recommend/suggest altermime and ripole

2012-03-24 Thread Jonas Smedegaard
Package: amavisd-new
Severity: normal

AMaViSd-new makes use of altermime and ripole if available, so they
should be either recommended or suggested.

 - Jonas

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

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



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



Bug#665354: RFS: viennacl/1.2.1-1

2012-03-24 Thread Paul Wise
On Fri, Mar 23, 2012 at 8:38 PM, Michael Wild wrote:

 Oops, that's my mistake. No idea how that crept in, I'm pretty certain I
 don't have DMUA rights... Must have misunderstood the description of
 that field when I first created the control file.

 I will update the package at m.d.n ASAP.

Both of the previous uploads had DMUA added. I wonder why Michael
Tautschnig uploaded the package to the archive in that state. DMUA
should never be added in the initial upload, only later and certainly
not on packages where the primary maintainer is not a DM.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise



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



Bug#665466: task-laptop: Should no more depend on apmd

2012-03-24 Thread Axel Beckert
retitle 665466 task-laptop: Should no more recommend apmd
severity 665466 minor
kthxbye

Axel Beckert wrote:
 task-laptop currently depends on apmd.

s/depends/Recommends/

Nevertheless it's installed by default since Recommends are installed
by default. Additionally that way apmd is lifted to the same level as
acpi-* which seems wrong for the same reason:

 But the description of apmd says:
 
   Since lenny Debian kernels are not built with APM support anymore. You
   need to compile a kernel with apm support enabled to use this
   package. You need to boot the kernel with the apm=on option if you
   want to enable the driver.
 
   In most cases, users may want to know that there are newer power
   management schemes, like ACPI.
 
 So IMHO task-laptop should drop the Depends on apmd or at most convert
 it to a Suggests.

s/Depends/Recommends/, too, so that it's no more installed by default.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5



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



Bug#665470: amavisd-new: drop obsolete $syslog_priority from 20-debian_defaults

2012-03-24 Thread Jonas Smedegaard
Package: amavisd-new
Severity: minor

config option $syslog_priority is obsolete and cause warning if changed
its default value, so should probably be dropped from
/etc/amavis/conf.d/20-debian_defaults .

 - Jonas

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

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



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



Bug#641699: gnome-globalmenu

2012-03-24 Thread YunQiang Su
On Sat, Mar 24, 2012 at 7:50 AM, Ritesh Raj Sarraf r...@debian.org wrote:
 On Friday 23 March 2012 10:45 PM, Ritesh Raj Sarraf wrote:
 YunQiang,

 I have interest in seeing gnome-globalmenu into Debian. What is the
 state of this package?
 Do you need any help ?

 There seems to be an error with the library.

 Gtk-Message: Failed to load module globalmenu-gtk:
 /usr/lib/gtk-2.0/modules/libglobalmenu-gtk.so: wrong ELF class: ELFCLASS64

As gnome 3.4 will have native support of this function, it's not need
to put it in Debian now.
 --
 Ritesh Raj Sarraf | http://people.debian.org/~rrs
 Debian - The Universal Operating System





-- 
YunQiang Su



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



Bug#662018: libsoup2.4: FTBFS on kfreebsd-*: test-suite FAIL: context-test

2012-03-24 Thread Robert Millan
El 24 de març de 2012 1:46, Steven Chamberlain ste...@pyro.eu.org ha escrit:
 On 23/03/12 22:13, Robert Millan wrote:
 Actually it's in librt.

 Swapping that library with a patched version didn't change anything
 either.  I'll try over the weekend to find space to do a full rebuild +
 normal dpkg install of eglibc though.

Just FYI I'm close to producing a complete patch to implement monotonic timers.

-- 
Robert Millan



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



Bug#652326: libspice-server errors out on startup on 32bit

2012-03-24 Thread Laurent Bigonville
severity 652326 grave
thanks

Hi,

This bug is definitely RC to me.

I've been told today that some patches have been posted on the spice ML
earlier this week.

Cheers.

Laurent Bigonville



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



Bug#660554: Please apply this kernel (backported) patch fixing the IOAT issue #660554

2012-03-24 Thread Thomas Goirand
Dear Debian kernel team,

I have backported (well, in fact, manually applied) Dan Williams patch
(who is the maintainer of IOAT upstream) for the Debian 3.2 kernel.
Please apply this patch. Note that I have tested it, and that I can
confirm (as others did) that the issue is fixed after applying. This
patch will be (or has already been?) applied upstream.

Cheers,

Thomas Goirand (zigo)

diff -u -N -r a/debian/patches/bugfix/all/ioat_unsigned_long_to_dma_addr_t.patch b/debian/patches/bugfix/all/ioat_unsigned_long_to_dma_addr_t.patch
--- a/debian/patches/bugfix/all/ioat_unsigned_long_to_dma_addr_t.patch	1970-01-01 00:00:00.0 +
+++ b/debian/patches/bugfix/all/ioat_unsigned_long_to_dma_addr_t.patch	2012-03-24 06:02:36.0 +
@@ -0,0 +1,168 @@
+diff -u -r -N a/drivers/dma/ioat/dma.c b/drivers/dma/ioat/dma.c
+--- a/drivers/dma/ioat/dma.c	2012-03-19 16:03:17.0 +
 b/drivers/dma/ioat/dma.c	2012-03-24 05:50:59.0 +
+@@ -548,9 +548,9 @@
+ 			   PCI_DMA_TODEVICE, flags, 0);
+ }
+ 
+-unsigned long ioat_get_current_completion(struct ioat_chan_common *chan)
++dma_addr_t ioat_get_current_completion(struct ioat_chan_common *chan)
+ {
+-	unsigned long phys_complete;
++	dma_addr_t phys_complete;
+ 	u64 completion;
+ 
+ 	completion = *chan-completion;
+@@ -571,7 +571,7 @@
+ }
+ 
+ bool ioat_cleanup_preamble(struct ioat_chan_common *chan,
+-			   unsigned long *phys_complete)
++			   dma_addr_t *phys_complete)
+ {
+ 	*phys_complete = ioat_get_current_completion(chan);
+ 	if (*phys_complete == chan-last_completion)
+@@ -582,14 +582,14 @@
+ 	return true;
+ }
+ 
+-static void __cleanup(struct ioat_dma_chan *ioat, unsigned long phys_complete)
++static void __cleanup(struct ioat_dma_chan *ioat, dma_addr_t phys_complete)
+ {
+ 	struct ioat_chan_common *chan = ioat-base;
+ 	struct list_head *_desc, *n;
+ 	struct dma_async_tx_descriptor *tx;
+ 
+-	dev_dbg(to_dev(chan), %s: phys_complete: %lx\n,
+-		 __func__, phys_complete);
++	dev_dbg(to_dev(chan), %s: phys_complete: %llx\n,
++		 __func__, (unsigned long long) phys_complete);
+ 	list_for_each_safe(_desc, n, ioat-used_desc) {
+ 		struct ioat_desc_sw *desc;
+ 
+@@ -655,7 +655,7 @@
+ static void ioat1_cleanup(struct ioat_dma_chan *ioat)
+ {
+ 	struct ioat_chan_common *chan = ioat-base;
+-	unsigned long phys_complete;
++	dma_addr_t phys_complete;
+ 
+ 	prefetch(chan-completion);
+ 
+@@ -701,7 +701,7 @@
+ 		mod_timer(chan-timer, jiffies + COMPLETION_TIMEOUT);
+ 		spin_unlock_bh(ioat-desc_lock);
+ 	} else if (test_bit(IOAT_COMPLETION_PENDING, chan-state)) {
+-		unsigned long phys_complete;
++		dma_addr_t phys_complete;
+ 
+ 		spin_lock_bh(ioat-desc_lock);
+ 		/* if we haven't made progress and we have already
+diff -u -r -N linux-2.6-3.2.12.orig/drivers/dma/ioat/dma.h linux-2.6-3.2.12/drivers/dma/ioat/dma.h
+--- linux-2.6-3.2.12.orig/drivers/dma/ioat/dma.h	2012-03-19 16:03:17.0 +
 linux-2.6-3.2.12/drivers/dma/ioat/dma.h	2012-03-24 05:52:30.0 +
+@@ -88,7 +88,7 @@
+ struct ioat_chan_common {
+ 	struct dma_chan common;
+ 	void __iomem *reg_base;
+-	unsigned long last_completion;
++	dma_addr_t last_completion;
+ 	spinlock_t cleanup_lock;
+ 	dma_cookie_t completed_cookie;
+ 	unsigned long state;
+@@ -333,7 +333,7 @@
+ void __devexit ioat_dma_remove(struct ioatdma_device *device);
+ struct dca_provider * __devinit ioat_dca_init(struct pci_dev *pdev,
+ 	  void __iomem *iobase);
+-unsigned long ioat_get_current_completion(struct ioat_chan_common *chan);
++dma_addr_t ioat_get_current_completion(struct ioat_chan_common *chan);
+ void ioat_init_channel(struct ioatdma_device *device,
+ 		   struct ioat_chan_common *chan, int idx);
+ enum dma_status ioat_dma_tx_status(struct dma_chan *c, dma_cookie_t cookie,
+@@ -341,7 +341,7 @@
+ void ioat_dma_unmap(struct ioat_chan_common *chan, enum dma_ctrl_flags flags,
+ 		size_t len, struct ioat_dma_descriptor *hw);
+ bool ioat_cleanup_preamble(struct ioat_chan_common *chan,
+-			   unsigned long *phys_complete);
++			   dma_addr_t *phys_complete);
+ void ioat_kobject_add(struct ioatdma_device *device, struct kobj_type *type);
+ void ioat_kobject_del(struct ioatdma_device *device);
+ extern const struct sysfs_ops ioat_sysfs_ops;
+diff -u -r -N linux-2.6-3.2.12.orig/drivers/dma/ioat/dma_v2.c linux-2.6-3.2.12/drivers/dma/ioat/dma_v2.c
+--- linux-2.6-3.2.12.orig/drivers/dma/ioat/dma_v2.c	2012-03-19 16:03:17.0 +
 linux-2.6-3.2.12/drivers/dma/ioat/dma_v2.c	2012-03-24 05:55:27.0 +
+@@ -126,7 +126,7 @@
+ 	spin_unlock_bh(ioat-prep_lock);
+ }
+ 
+-static void __cleanup(struct ioat2_dma_chan *ioat, unsigned long phys_complete)
++static void __cleanup(struct ioat2_dma_chan *ioat, dma_addr_t phys_complete)
+ {
+ 	struct ioat_chan_common *chan = ioat-base;
+ 	struct dma_async_tx_descriptor *tx;
+@@ -178,7 +178,7 @@
+ static void ioat2_cleanup(struct ioat2_dma_chan *ioat)
+ {
+ 	struct ioat_chan_common *chan = ioat-base;
+-	unsigned long phys_complete;
++	

Bug#665004: xserver-xorg-input-synaptics: scrolling stopped working after upgrade 1.5.0 -- 1.5.99

2012-03-24 Thread Michael Buesch
Package: xserver-xorg-input-synaptics
Followup-For: Bug #665004

Dear Maintainer,

I can confirm this bug on my Asus EeePC 1011px.
Downgrading xserver-xorg-input-synaptics to 1.5.0 fixes the issue.
With latest 1.5.99, touchpad scrolling is completely broken.

Greetings, Michael.


-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Aug  9  2011 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 2056560 Mar  5 00:44 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
00:02.0 VGA compatible controller [0300]: Intel Corporation N10 Family 
Integrated Graphics Controller [8086:a011] (rev 02)

Xorg X server configuration file status:

-rw-r--r-- 1 root root 756 Feb 14 11:18 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
Section InputClass
Identifier  evdev keyboard catchall
MatchIsKeyboard on
MatchDevicePath /dev/input/event*
Driver  evdev
Option  xkb_layoutde
EndSection

Section InputClass
Identifier  touchpad catchall
Driver  synaptics
MatchIsTouchpad on
MatchDevicePath /dev/input/event*
Option  TapButton11
Option  TapButton22
Option  TapButton33
Option  AccelFactor   0.2
Option  MinSpeed  0.5
Option  MaxSpeed  2.2
Option  FingerLow 15
Option  FingerHigh50
Option  VertTwoFingerScroll   1
Option  HorizTwoFingerScroll  1
Option  VertScrollDelta   26
Option  HorizScrollDelta  26
EndSection

Section ServerFlags
Option  DontZap   yes
EndSection


/etc/X11/xorg.conf.d does not exist.

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  options i915 modeset=1
/etc/modprobe.d/radeon-kms.conf:
  options radeon modeset=1

Kernel version (/proc/version):
---
Linux version 3.3.0-af903x (mb@milhouse) (gcc version 4.6.3 (Debian 4.6.3-1) ) 
#4 SMP PREEMPT Fri Mar 23 15:55:50 CET 2012

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 35978 Jan 23 02:11 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 29339 Mar 24 15:03 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[ 27764.526] 
X.Org X Server 1.11.4
Release Date: 2012-01-27
[ 27764.527] X Protocol Version 11, Revision 0
[ 27764.527] Build Operating System: Linux 3.2.0-1-amd64 x86_64 Debian
[ 27764.527] Current Operating System: Linux milhouse 3.3.0-af903x #4 SMP 
PREEMPT Fri Mar 23 15:55:50 CET 2012 x86_64
[ 27764.527] Kernel command line: BOOT_IMAGE=/vmlinuz-3.3.0-af903x 
root=/dev/mapper/sda6_crypt ro nmi_watchdog=0 i915.i915_enable_rc6=1 quiet
[ 27764.527] Build Date: 04 March 2012  11:42:13PM
[ 27764.527] xorg-server 2:1.11.4-1 (Cyril Brulebois k...@debian.org) 
[ 27764.527] Current version of pixman: 0.24.4
[ 27764.527]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 27764.528] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 27764.528] (==) Log file: /var/log/Xorg.0.log, Time: Sat Mar 24 15:03:10 
2012
[ 27764.529] (==) Using config file: /etc/X11/xorg.conf
[ 27764.529] (==) Using system config directory /usr/share/X11/xorg.conf.d
[ 27764.531] (==) No Layout section.  Using the first Screen section.
[ 27764.531] (==) No screen section available. Using defaults.
[ 27764.531] (**) |--Screen Default Screen Section (0)
[ 27764.531] (**) |   |--Monitor default monitor
[ 27764.531] (==) No monitor specified for screen Default Screen Section.
Using a default monitor configuration.
[ 27764.531] (**) Option DontZap yes
[ 27764.531] (==) Automatically adding devices
[ 27764.532] (==) Automatically enabling devices
[ 27764.535] (WW) `fonts.dir' not found (or not valid) in 
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType.
[ 27764.535]Entry deleted from font path.
[ 27764.535](Run 'mkfontdir' on 
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType).
[ 27764.535] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/cyrillic,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,

Bug#665472: [makedev] Aborts on kfreebsd while upgrade unable to find /dev/tty[0-9]*

2012-03-24 Thread Dererk
Package: makedev
Version: 2.3.1-90
Severity: grave
User: glibc-bsd-de...@lists.alioth.debian.org
Usertags: kfreebsd


While upgrading makedev on kfreebsd I got this:

Setting up makedev (2.3.1-90) ...
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
Results undefined on non-Linux systems, aborting MAKEDEV invocation.
chmod: cannot access `/dev/tty[0-9]*': No such file or directory
dpkg: error processing makedev (--configure):
 subprocess installed post-installation script returned error exit status 1
configured to not write apport reports
  Errors were encountered while
processing:
 makedev
E: Sub-process /usr/bin/dpkg returned an error code (1)


As this issue aborted dpkg/upgrade on an error state, I considered
appropriate to set severity to grave. Lower it if consider necessary.



Cheers,

Dererk

-- 
BOFH excuse #155:
Dumb terminal




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



Bug#603699: RFP: celt051 -- The CELT codec v0.5.1

2012-03-24 Thread Laurent Bigonville
Hi,

Sorry for reviving this RFP/ITP, but I really think we should have a
separate package for celt 0.5.1.

For what I've understood:

 - spice-server - works only amd64 (patch seems to have been added for
   i386 support earlier this week)
 - celt - works on all arch
 - spice client - should work on all arch (maybe with some endianness 
   issues)

GNOME is now providing a gnome-boxes app which is depending on the
spice-client library (and the libcelt051 library) but as it only exist
on amd64 and i386 we cannot make that package available on all arch.

I really would like to see that celt0.5.1 hits the debian archive.


Cheers

Laurent Bigonville



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



Bug#665004: xserver-xorg-input-synaptics: scrolling stopped working after upgrade 1.5.0 -- 1.5.99

2012-03-24 Thread Matteo Aquilano

Same issue for me in Elantech touchpad.
Probably the new features HorizHysteresis and VertHysteresis, added with 
1.5.99.901-1 version, cause the issue.
Setting VertHysteresis and HorizHysteresis to 0 don't have effects.
The scrolling is very unusable.
I don't know how investigate more.

Best regards.Matteo.  

Bug#662225: libconfig: dpkg-buildflags (including hardening) flags not used

2012-03-24 Thread Simon Ruderich
reopen 662225
thanks

Dear Maintainer,

I'm sorry but I overlooked that the package contains C++ files,
thus CXXFLAGS must be exported as well to enable (hardening)
flags for them.

The following patch fixes that.

diff -Nru libconfig-1.4.8/debian/rules libconfig-1.4.8/debian/rules
--- libconfig-1.4.8/debian/rules2012-03-05 22:57:43.0 +0100
+++ libconfig-1.4.8/debian/rules2012-03-24 15:09:59.0 +0100
@@ -7,10 +7,12 @@
 
 CFLAGS = $(shell dpkg-buildflags --get CFLAGS)
 CFLAGS += -Wall -g
+CXXFLAGS = $(shell dpkg-buildflags --get CXXFLAGS)
+CXXFLAGS += -Wall -g
 LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)
 LDFLAGS += -Wl,-z,defs
 CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS)
-export CFLAGS CPPFLAGS LDFLAGS
+export CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
 
 # shared library versions, option 1
 version=9

Regards,
Simon
-- 
+ privacy is necessary
+ using gnupg http://gnupg.org
+ public key id: 0x92FEFDB7E44C32F9


signature.asc
Description: Digital signature


Bug#665473: slapd - Fails to upgrade: slap_sasl_init: auxprop add plugin failed

2012-03-24 Thread Bastian Blank
Package: slapd
Version: 2.4.28-1.1
Severity: grave

slapd fails to upgrade from Squeeze:
| Loading the database from the LDIF dump failed with the following
| error while running slapadd:
| 4f6dd921 slap_sasl_init: auxprop add plugin failed
| slapadd: slap_init failed!
| dpkg: error processing slapd (--configure):
|  subprocess installed post-installation script returned error exit status 1

Bastian

-- System Information:
Debian Release: 6.0.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 'testing'), (400, 
'unstable')
Architecture: amd64 (x86_64)

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

Versions of packages slapd depends on:
ii  adduser 3.113+nmu1   add and remove users and groups
ii  coreutils   8.5-1GNU core utilities
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  libc6   2.13-27  Embedded GNU C Library: Shared lib
ii  libdb5.15.1.29-1 Berkeley v5.1 Database Libraries [
ii  libgcrypt11 1.4.5-2  LGPL Crypto library - runtime libr
ii  libgnutls26 2.12.16-1GNU TLS library - runtime library
ii  libldap-2.4-2   2.4.28-1.1   OpenLDAP libraries
ii  libltdl72.4.2-1  A system independent dlopen wrappe
ii  libperl5.14 5.14.2-9 shared Perl library
ii  libsasl2-2  2.1.23.dfsg1-7   Cyrus SASL - authentication abstra
ii  libslp1 1.2.1-7.8OpenSLP libraries
ii  libwrap07.6.q-19 Wietse Venema's TCP wrappers libra
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip
ii  multiarch-support   2.13-26  Transitional package to ensure mul
ii  perl [libmime-base64-pe 5.14.2-9 Larry Wall's Practical Extraction 
ii  psmisc  22.15-2  utilities that use the proc file s
ii  unixodbc2.2.14p2-1   ODBC tools libraries

Versions of packages slapd recommends:
ii  libsasl2-modules  2.1.23.dfsg1-7 Cyrus SASL - pluggable authenticat

Versions of packages slapd suggests:
ii  ldap-utils2.4.28-1.1 OpenLDAP utilities

-- Configuration Files:
/etc/default/slapd changed:
SLAPD_USER=openldap
SLAPD_GROUP=openldap
SLAPD_PIDFILE=
SLAPD_SERVICES=ldap:/// ldaps:/// ldapi:///
SLAPD_SENTINEL_FILE=/etc/ldap/noslapd
export KRB5_KTNAME=/etc/ldap/krb5.keytab
SLAPD_OPTIONS=


-- debconf information:
  slapd/password_mismatch:
* slapd/tlsciphersuite:
  slapd/fix_directory: true
  slapd/invalid_config: true
  shared/organization: waldi.eu.org
  slapd/upgrade_slapcat_failure:
  slapd/slurpd_obsolete:
  slapd/upgrade_slapadd_failure:
  slapd/backend: BDB
  slapd/dump_database: when needed
  slapd/allow_ldap_v2: false
  slapd/no_configuration: false
  slapd/migrate_ldbm_to_bdb: false
  slapd/move_old_database: true
  slapd/suffix_change: false
  slapd/slave_databases_require_updateref:
  slapd/dump_database_destdir: /var/backups/slapd-VERSION
  slapd/autoconf_modules: true
  slapd/purge_database: false
  slapd/domain: waldi.eu.org



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



Bug#665474: mighttpd2: should be in section web (its _use_ no matter its implementation language)

2012-03-24 Thread Jonas Smedegaard
Package: mighttpd2
Severity: normal

mighttpd2 is an http daemon, so should be is section web.

 - Jonas

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

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



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



Bug#652326: libspice-server errors out on startup on 32bit

2012-03-24 Thread Michael Tokarev
On 24.03.2012 18:06, Laurent Bigonville wrote:
 severity 652326 grave
 thanks
 
 Hi,
 
 This bug is definitely RC to me.

Out of curiocity, why you come to it just now (with grave severity),
when this has been mentioned on the upstream mailinglist, instead
of coming to it before when _you_ had issue with it? :)

 I've been told today that some patches have been posted on the spice ML
 earlier this week.

Yes, something has been patched on the qemu side, something on the
spice side, neither of these is in any released version.  This very
issue (the crash on startup) is actually due to qemu bug, not spice,
but after fixing that one in qemu spice still does not work right.

I guess the best is to wait for the next spice release.  Hopefully
there will be next (maybe minor) qemu release too by that time.

Thanks,

/mjt



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



  1   2   3   >