Bug#647481: [PATCH] please transaction gstreamer0.10 to multiarch

2011-11-03 Thread YunQiang Su
Package: gstreamer0.10
Version: 0.10.35-1

I multiarch it and test it on Ubuntu 11.10, it works well.
And another several package also multiarched.
And I will file bugs for them.

-- 
YunQiang Su
diff -ur debian/changelog gstreamer0.10-0.10.35/debian/changelog
--- debian/changelog	2011-06-23 14:50:08.0 +0800
+++ gstreamer0.10-0.10.35/debian/changelog	2011-11-02 12:39:57.441011417 +0800
@@ -1,3 +1,10 @@
+gstreamer0.10 (0.10.35-2~deepin9) oneiric; urgency=low
+
+  * Multiarch it.
+  * Modify search directory of dh_gstscancodecs.
+
+ -- YunQiang Su   Sat, 29 Oct 2011 17:08:39 +0800
+
 gstreamer0.10 (0.10.35-1) unstable; urgency=low
 
   * New upstream bugfix release, "Nuclear Fission".
diff -ur debian/compat gstreamer0.10-0.10.35/debian/compat
--- debian/compat	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/compat	2011-10-29 17:14:28.597846316 +0800
@@ -1 +1 @@
-7
+9
diff -ur debian/control gstreamer0.10-0.10.35/debian/control
--- debian/control	2011-05-10 21:48:11.0 +0800
+++ gstreamer0.10-0.10.35/debian/control	2011-10-30 03:28:23.616501313 +0800
@@ -6,8 +6,8 @@
Sebastien Bacher ,
Sebastian Dröge ,
Sjoerd Simons 
-Build-Depends: debhelper (>= 7),
-   cdbs (>= 0.4.20),
+Build-Depends: debhelper (>= 8.1.3),
+   cdbs (>= 0.4.93),
gnome-pkg-tools (>= 0.7),
autotools-dev,
dh-autoreconf,
@@ -39,7 +39,7 @@
  netpbm,
  libxml2-doc,
  libglib2.0-doc
-Standards-Version: 3.8.4
+Standards-Version: 3.9.2
 Homepage: http://gstreamer.freedesktop.org
 
 Package: libgstreamer0.10-0
@@ -47,6 +47,8 @@
 Section: libs
 Depends: ${shlibs:Depends},
  ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
 Suggests: gstreamer0.10-tools,
   gstreamer0.10-plugins-base
 Conflicts: libgstreamer-plugins-base0.10-0 (<< 0.10.11cvs20070110-0ubuntu5),
@@ -134,7 +136,7 @@
 Depends: ${shlibs:Depends},
  ${misc:Depends},
  pkg-config,
- libgstreamer0.10-0 (>= 0.10.33)
+ libgstreamer0.10-0 (>= 0.10.35)
 Suggests: gstreamer0.10-plugins-base
 Description: Tools for use with GStreamer
  GStreamer is a streaming media framework, based on graphs of filters
diff -ur debian/control.in gstreamer0.10-0.10.35/debian/control.in
--- debian/control.in	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/control.in	2011-10-30 03:28:11.272440109 +0800
@@ -6,8 +6,8 @@
Sebastien Bacher ,
Sebastian Dröge ,
Sjoerd Simons 
-Build-Depends: debhelper (>= 7),
-   cdbs (>= 0.4.20),
+Build-Depends: debhelper (>= 8.1.3),
+   cdbs (>= 0.4.93),
gnome-pkg-tools (>= 0.7),
autotools-dev,
dh-autoreconf,
@@ -39,7 +39,7 @@
  netpbm,
  libxml2-doc,
  libglib2.0-doc
-Standards-Version: 3.8.4
+Standards-Version: 3.9.2
 Homepage: http://gstreamer.freedesktop.org
 
 Package: @GST_LIB@
@@ -47,6 +47,8 @@
 Section: libs
 Depends: ${shlibs:Depends},
  ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
 Suggests: @GST_PKGNAME@-tools,
   @GST_PKGNAME@-plugins-base
 Conflicts: libgstreamer-plugins-base0.10-0 (<< 0.10.11cvs20070110-0ubuntu5),
diff -ur debian/dh_gstscancodecs gstreamer0.10-0.10.35/debian/dh_gstscancodecs
--- debian/dh_gstscancodecs	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/dh_gstscancodecs	2011-11-02 12:39:34.512897721 +0800
@@ -21,7 +21,7 @@
 gstreamer-based applications.
 
 dh_gstscancodecs generates substitution variable for debian/control,
-by scanning libraries /usr/lib/gstreamer-0.10/*.so.
+by scanning libraries /usr/lib/$deb_host_multiarch/gstreamer-0.10/*.so.
 
 The generated substitution variables are
 
@@ -68,7 +68,9 @@
 
 init();
 
-$::pluginlibdirprefix = '/usr/lib/gstreamer-';
+my $deb_host_multiarch = `dpkg-architecture -qDEB_HOST_MULTIARCH`;
+chop $deb_host_multiarch;
+$::pluginlibdirprefix = '/usr/lib/'.$deb_host_multiarch.'/gstreamer-';
 
 foreach my $package (@{$dh{DOPACKAGES}}) {
   my $tmp = tmpdir($package);
diff -ur debian/gir1.2-gstreamer.install gstreamer0.10-0.10.35/debian/gir1.2-gstreamer.install
--- debian/gir1.2-gstreamer.install	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/gir1.2-gstreamer.install	2011-10-30 01:51:11.131579584 +0800
@@ -1 +1 @@
-debian/tmp/usr/lib/girepository-*
+debian/tmp/usr/lib/*/girepository-* usr/lib
diff -ur debian/libgstreamer-dev.install gstreamer0.10-0.10.35/debian/libgstreamer-dev.install
--- debian/libgstreamer-dev.install	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/libgstreamer-dev.install	2011-10-29 17:06:32.599485973 +0800
@@ -1,7 +1,7 @@
 debian/tmp/usr/include
-debian/tmp/usr/lib/*.{a,la,so}
-debian/tmp/usr/lib/gstreamer-@GST_ABI@/*.{a,la}
-debian/tmp/usr/lib/pkg

Bug#647482: stda: 'mmval' lacks default function.

2011-11-03 Thread A. Costa
Package: stda
Version: 1.1-2
Severity: wishlist

Invoked without no command line switches, 'mmval' outputs 10 lines of help:

# use 'wc' to show size.
% seq 10 | mmval | wc 
 10  59 366

Compare 'numbound' (from the 'num-utils' package):

% seq 10 | numbound
10

Simple *nix utils usually have defaults.

Hope this helps...



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

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

Versions of packages stda depends on:
ii  gawk 1:3.1.8+dfsg-0.1
ii  gnuplot  4.4.0-1.1   
ii  mawk 1.3.3-16

Versions of packages stda recommends:
ii  evince  3.2.1-1  
ii  gv  1:3.7.2-2

stda 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#647483: stda: 'mmval --fubar' returns error code 0.

2011-11-03 Thread A. Costa
Package: stda
Version: 1.1-2
Severity: normal

When there's an error, the exit code shouldn't be 0:

# run mmval with bogus switch
% seq 10 | mmval --fubar > /dev/null ; echo $?
getopt: unrecognized option '--fubar'
0

Compare to:

% calc  --fubar ; echo $?   
"fubar" is undefined

Error in commands
1

% ls --fubar ; echo $?
ls: unrecognized option '--fubar'
Try `ls --help' for more information.
2
 
Hope this helps...



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

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

Versions of packages stda depends on:
ii  gawk 1:3.1.8+dfsg-0.1
ii  gnuplot  4.4.0-1.1   
ii  mawk 1.3.3-16

Versions of packages stda recommends:
ii  evince  3.2.1-1  
ii  gv  1:3.7.2-2

stda 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#647484: stda: 'mintegrate -D' prints nothing if input is two numbers.

2011-11-03 Thread A. Costa
Package: stda
Version: 1.1-2
Severity: normal

'mintegrate' works as expected with 3 numbers:

% seq 3  | mintegrate -D
1
1

...but returns no data with 2 numbers:

% seq 2  | mintegrate -D | wc
  0   0   0

Compare that with 'numinterval' (from the 'num-utils' package):

% seq 3  | numinterval   
1
1
% seq 2  | numinterval 
1

HTH...


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

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

Versions of packages stda depends on:
ii  gawk 1:3.1.8+dfsg-0.1
ii  gnuplot  4.4.0-1.1   
ii  mawk 1.3.3-16

Versions of packages stda recommends:
ii  evince  3.2.1-1  
ii  gv  1:3.7.2-2

stda 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#647009: Known upstream bug

2011-11-03 Thread Thomas Koch
Jakub Adam:
> Hi Thomas,
> 
> thanks for your interest in eclipse-egit. Problem you described is a known
> upstream bug [1]. Fix has not been released yet, I will package a new
> version of egit ASAP when it is out.
Hi,

Thank you very much for finding this. In the meanwhile I've manually added an 
existing GIT repository to my eclipse workspace and EGit works flawlessly so 
far!

With much gratitude,

Thomas Koch, http://www.koch.ro



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



Bug#647444: [Pkg-fonts-devel] Bug#647444: ttf-dejavu-core: Letter ė (U+0117 LATIN SMALL LETTER E WITH DOT ABOVE) is broken at 12pt and below

2011-11-03 Thread Christian PERRIER
tags 647444 confirmed
thanks


Quoting Rimas Kudelis (r...@akl.lt):
> Package: ttf-dejavu-core
> Version: 2.33-2
> Severity: normal
> 
> The letter ė (U+0117 LATIN SMALL LETTER E WITH DOT ABOVE) is displayed
> incorrectly at 12pt and below in DejaVu Sans Bold typeface. I'm
> attaching a screenshot produced in LibreOffice. (Note, I'm not sure if
> it's actually pt or some other unit, because it's not indicated in the
> UI's I looked at).
> 
> At sizes 13 or even 12.5, and above, the problem does not manifest itself.


I see the exact same problem on my system.

That seems to only happen with the bold version of the font, and only
with DejaVu Sans, not Sans Mono, neither Serif.

Certainly worth reporting upstream. Davide?




signature.asc
Description: Digital signature


Bug#647485: [PATCH] please transaction gst-plugins-base0.10 to multiarch

2011-11-03 Thread YunQiang Su
Package: gst-plugins-base0.10
Version: 0.10.35-1

It works well on Ubuntu 11.10.

-- 
YunQiang Su
diff -ur debian/changelog gstreamer0.10-0.10.35/debian/changelog
--- debian/changelog	2011-06-23 14:50:08.0 +0800
+++ gstreamer0.10-0.10.35/debian/changelog	2011-11-02 12:39:57.441011417 +0800
@@ -1,3 +1,10 @@
+gstreamer0.10 (0.10.35-2~deepin9) oneiric; urgency=low
+
+  * Multiarch it.
+  * Modify search directory of dh_gstscancodecs.
+
+ -- YunQiang Su   Sat, 29 Oct 2011 17:08:39 +0800
+
 gstreamer0.10 (0.10.35-1) unstable; urgency=low
 
   * New upstream bugfix release, "Nuclear Fission".
diff -ur debian/compat gstreamer0.10-0.10.35/debian/compat
--- debian/compat	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/compat	2011-10-29 17:14:28.597846316 +0800
@@ -1 +1 @@
-7
+9
diff -ur debian/control gstreamer0.10-0.10.35/debian/control
--- debian/control	2011-05-10 21:48:11.0 +0800
+++ gstreamer0.10-0.10.35/debian/control	2011-10-30 03:28:23.616501313 +0800
@@ -6,8 +6,8 @@
Sebastien Bacher ,
Sebastian Dröge ,
Sjoerd Simons 
-Build-Depends: debhelper (>= 7),
-   cdbs (>= 0.4.20),
+Build-Depends: debhelper (>= 8.1.3),
+   cdbs (>= 0.4.93),
gnome-pkg-tools (>= 0.7),
autotools-dev,
dh-autoreconf,
@@ -39,7 +39,7 @@
  netpbm,
  libxml2-doc,
  libglib2.0-doc
-Standards-Version: 3.8.4
+Standards-Version: 3.9.2
 Homepage: http://gstreamer.freedesktop.org
 
 Package: libgstreamer0.10-0
@@ -47,6 +47,8 @@
 Section: libs
 Depends: ${shlibs:Depends},
  ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
 Suggests: gstreamer0.10-tools,
   gstreamer0.10-plugins-base
 Conflicts: libgstreamer-plugins-base0.10-0 (<< 0.10.11cvs20070110-0ubuntu5),
@@ -134,7 +136,7 @@
 Depends: ${shlibs:Depends},
  ${misc:Depends},
  pkg-config,
- libgstreamer0.10-0 (>= 0.10.33)
+ libgstreamer0.10-0 (>= 0.10.35)
 Suggests: gstreamer0.10-plugins-base
 Description: Tools for use with GStreamer
  GStreamer is a streaming media framework, based on graphs of filters
diff -ur debian/control.in gstreamer0.10-0.10.35/debian/control.in
--- debian/control.in	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/control.in	2011-10-30 03:28:11.272440109 +0800
@@ -6,8 +6,8 @@
Sebastien Bacher ,
Sebastian Dröge ,
Sjoerd Simons 
-Build-Depends: debhelper (>= 7),
-   cdbs (>= 0.4.20),
+Build-Depends: debhelper (>= 8.1.3),
+   cdbs (>= 0.4.93),
gnome-pkg-tools (>= 0.7),
autotools-dev,
dh-autoreconf,
@@ -39,7 +39,7 @@
  netpbm,
  libxml2-doc,
  libglib2.0-doc
-Standards-Version: 3.8.4
+Standards-Version: 3.9.2
 Homepage: http://gstreamer.freedesktop.org
 
 Package: @GST_LIB@
@@ -47,6 +47,8 @@
 Section: libs
 Depends: ${shlibs:Depends},
  ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
 Suggests: @GST_PKGNAME@-tools,
   @GST_PKGNAME@-plugins-base
 Conflicts: libgstreamer-plugins-base0.10-0 (<< 0.10.11cvs20070110-0ubuntu5),
diff -ur debian/dh_gstscancodecs gstreamer0.10-0.10.35/debian/dh_gstscancodecs
--- debian/dh_gstscancodecs	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/dh_gstscancodecs	2011-11-02 12:39:34.512897721 +0800
@@ -21,7 +21,7 @@
 gstreamer-based applications.
 
 dh_gstscancodecs generates substitution variable for debian/control,
-by scanning libraries /usr/lib/gstreamer-0.10/*.so.
+by scanning libraries /usr/lib/$deb_host_multiarch/gstreamer-0.10/*.so.
 
 The generated substitution variables are
 
@@ -68,7 +68,9 @@
 
 init();
 
-$::pluginlibdirprefix = '/usr/lib/gstreamer-';
+my $deb_host_multiarch = `dpkg-architecture -qDEB_HOST_MULTIARCH`;
+chop $deb_host_multiarch;
+$::pluginlibdirprefix = '/usr/lib/'.$deb_host_multiarch.'/gstreamer-';
 
 foreach my $package (@{$dh{DOPACKAGES}}) {
   my $tmp = tmpdir($package);
diff -ur debian/gir1.2-gstreamer.install gstreamer0.10-0.10.35/debian/gir1.2-gstreamer.install
--- debian/gir1.2-gstreamer.install	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/gir1.2-gstreamer.install	2011-10-30 01:51:11.131579584 +0800
@@ -1 +1 @@
-debian/tmp/usr/lib/girepository-*
+debian/tmp/usr/lib/*/girepository-* usr/lib
diff -ur debian/libgstreamer-dev.install gstreamer0.10-0.10.35/debian/libgstreamer-dev.install
--- debian/libgstreamer-dev.install	2011-05-10 21:41:23.0 +0800
+++ gstreamer0.10-0.10.35/debian/libgstreamer-dev.install	2011-10-29 17:06:32.599485973 +0800
@@ -1,7 +1,7 @@
 debian/tmp/usr/include
-debian/tmp/usr/lib/*.{a,la,so}
-debian/tmp/usr/lib/gstreamer-@GST_ABI@/*.{a,la}
-debian/tmp/usr/lib/pkgconfig
+debian/tmp/usr/lib/*/*.{a,la,so}
+debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/*.{a,la}
+debia

Bug#611537: Bug#643507: grub-pc: In an mdadm RAID1 area GRUB2 fails to boot from second HDD (at, least in SATA environment) when graphical terminal activated

2011-11-03 Thread Diego Guella

Good news!
I just upgraded grub-common and grub-pc from version 1.98+20100804-14 to
version 1.98+20100804-14+squeeze1 (the version in Debian 6.0.3)

After the update, I tried to boot from each of my 4 raid1 members, and.. now
the system boots!
This issue is no longer present for me.
Anyone can retest with grub 1.98+20100804-14+squeeze1 and confirm?

For me, this bug is resolved, and not found in version
1.98+20100804-14+squeeze1.




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



Bug#647486: [PATCH] please transaction gst-plugins-good0.10 to multiarch

2011-11-03 Thread YunQiang Su
Package: gst-plugins-good0.10
Version: 0.10.30-1

This patch is diff from the Debian's with Ubuntu's, so you may need
remove something
Ubuntu specified.
-- 
YunQiang Su
diff -ru debian/build-deps gst-plugins-good0.10-0.10.30/debian/build-deps
--- debian/build-deps	2011-06-23 16:15:53.0 +0800
+++ gst-plugins-good0.10-0.10.30/debian/build-deps	2011-11-01 23:53:56.179032865 +0800
@@ -1,11 +1,12 @@
 @GST_LIB_DEV_DEP@
 @GST_EXTRA_BUILD_DEPENDS@
-libgstreamer-plugins-base0.10-dev (>= 0.10.33)
+libgstreamer-plugins-base0.10-dev (>= 0.10.35-2~)
 autotools-dev
 dh-autoreconf
+cdbs (>= 0.4.93)
+dh-autoreconf
 autopoint
-cdbs (>= 0.4.20)
-debhelper (>= 5)
+debhelper (>= 8.1.3)
 dpkg-dev (>= 1.15.1)
 pkg-config (>= 0.11.0)
 gtk-doc-tools
@@ -30,8 +31,8 @@
 libgtk2.0-dev (>= 2.8)
 libtag1-dev (>= 1.5)
 libwavpack-dev (>= 4.20)
-gstreamer-tools (>= 0.10.30)
-gstreamer0.10-plugins-base (>= 0.10.33)
+gstreamer-tools (>= 0.10.35-2~)
+gstreamer0.10-plugins-base (>= 0.10.35-2~)
 libsoup-gnome2.4-dev (>= 2.26)
 libpulse-dev (>= 0.9.20)
 libbz2-dev
diff -ru debian/build-deps.in gst-plugins-good0.10-0.10.30/debian/build-deps.in
--- debian/build-deps.in	2011-05-10 21:52:56.0 +0800
+++ gst-plugins-good0.10-0.10.30/debian/build-deps.in	2011-11-01 23:53:31.478910395 +0800
@@ -1,11 +1,12 @@
 @GST_LIB_DEV_DEP@
 @GST_EXTRA_BUILD_DEPENDS@
-libgstreamer-plugins-base0.10-dev (>= 0.10.33)
+libgstreamer-plugins-base0.10-dev (>= 0.10.35-2~)
 autotools-dev
 dh-autoreconf
+cdbs (>= 0.4.93)
+dh-autoreconf
 autopoint
-cdbs (>= 0.4.20)
-debhelper (>= 5)
+debhelper (>= 8.1.3)
 dpkg-dev (>= 1.15.1)
 pkg-config (>= 0.11.0)
 gtk-doc-tools
@@ -30,8 +31,8 @@
 libgtk2.0-dev (>= 2.8)
 libtag1-dev (>= 1.5)
 libwavpack-dev (>= 4.20)
-gstreamer-tools (>= 0.10.30)
-gstreamer0.10-plugins-base (>= 0.10.33)
+gstreamer-tools (>= 0.10.35-2~)
+gstreamer0.10-plugins-base (>= 0.10.35-2~)
 libsoup-gnome2.4-dev (>= 2.26)
 libpulse-dev (>= 0.9.20)
 libbz2-dev
diff -ru debian/changelog gst-plugins-good0.10-0.10.30/debian/changelog
--- debian/changelog	2011-06-23 16:15:32.0 +0800
+++ gst-plugins-good0.10-0.10.30/debian/changelog	2011-11-02 14:25:03.972283817 +0800
@@ -1,3 +1,58 @@
+gst-plugins-good0.10 (0.10.30-2~deepin4) oneiric; urgency=low
+
+  * Multiarch it.
+
+ -- YunQiang Su   Sun, 30 Oct 2011 13:50:02 +0800
+
+gst-plugins-good0.10 (0.10.30-1ubuntu7) oneiric; urgency=low
+
+  * Bump breaks/replaces on gst-plugins-bad (LP: #831897).
+
+ -- Evan Dandrea   Wed, 24 Aug 2011 12:17:00 +0100
+
+gst-plugins-good0.10 (0.10.30-1ubuntu6) oneiric; urgency=low
+
+  * Move jpegformat into gst-plugins-good for camerabin.
+
+ -- Evan Dandrea   Mon, 22 Aug 2011 15:44:01 +0100
+
+gst-plugins-good0.10 (0.10.30-1ubuntu5) oneiric; urgency=low
+
+  * Bump Breaks/Replaces on -bad to 0.10.22-2ubuntu2 for camerabin move
+(LP: #828845).
+
+ -- Evan Dandrea   Fri, 19 Aug 2011 10:03:49 +0100
+
+gst-plugins-good0.10 (0.10.30-1ubuntu4) oneiric; urgency=low
+
+  * Move camerabin into gst-plugins-good.
+
+ -- Evan Dandrea   Wed, 17 Aug 2011 10:32:17 +0100
+
+gst-plugins-good0.10 (0.10.30-1ubuntu3) oneiric; urgency=low
+
+  * Use breaks+replaces, *not* conflicts; never, ever use Conflicts <<.
+
+ -- Steve Langasek   Tue, 09 Aug 2011 21:07:47 -0700
+
+gst-plugins-good0.10 (0.10.30-1ubuntu2) oneiric; urgency=low
+
+  * debian/control.in
+- Make gstreamer0.10-gconf conflict with gstreamer0.10-plugins-good 
+  << 0.10.30-1 (LP: #815418)
+
+ -- Ken VanDine   Tue, 26 Jul 2011 00:44:55 -0400
+
+gst-plugins-good0.10 (0.10.30-1ubuntu1) oneiric; urgency=low
+
+  * Merged changes from debian unstable, remaining differences:
+- debian/patches/05_move_shm_to_good.patch
+  * Moved shm from -bad to -good (LP: #739351)
+- debian/patches/06_shm_fixes.patch
+  * shm related fixes from upstream
+
+ -- Ken VanDine   Tue, 19 Jul 2011 13:41:08 -0400
+
 gst-plugins-good0.10 (0.10.30-1) unstable; urgency=low
 
   * New upstream release, "Adagio":
@@ -98,6 +153,102 @@
 
  -- Sebastian Dröge   Sun, 13 Mar 2011 13:03:07 +0100
 
+gst-plugins-good0.10 (0.10.28-0ubuntu7) natty; urgency=low
+
+  * debian/patches/07_pulsesink_allow_larger_packets.patch:
++ Drop this patch again, it causes underuns which result in
+  glitches, cracking sound, etc. This happens more often
+  when audio codecs with large frame sizes are used (e.g. WMA).
+  
+  See https://bugzilla.gnome.org/show_bug.cgi?id=647326 and
+  duplicates.
+
+ -- Sebastian Dröge   Fri, 15 Apr 2011 19:47:50 +0200
+
+gst-plugins-good0.10 (0.10.28-0ubuntu6) natty; urgency=low
+
+  * debian/rules:
++ Set AUTOPOINT=true to prevent autoreconf from breaking
+  the patched gettext setup used by gstreamer.
+
+ -- Sebastian Dröge   Tue, 05 Apr 2011 15:20:55 +0200
+
+gst-plugins-good0.10 (0.10.28-0ubuntu5) natty; urgency=low
+
+  [ Alessandro Decina ]
+  * debian/control.in:
++ Add build dependency on dh-autoreconf.
+  * debian/rules:
++ Include dh-autoreconf cdbs rule.
+
+ -- Sebastian Drög

Bug#621692: Subversion-1.7 packages for Debian/Ubuntu

2011-11-03 Thread Jonathan Nieder
Hi Dominik,

Dominik Stadler wrote:

> I have a git repository
> where I host the packaging-changes, I can put that on gitorious or github,
> if anybody is interested.

Yes, please.

Thanks,
Jonathan



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



Bug#647461: ITP: knot -- authoritative domain name server

2011-11-03 Thread martin f krafft
also sprach Ondřej Surý  [2011.11.02.2315 +0100]:
>  Note: this release is still EXPERIMENTAL and you should know what
>  you are doing and be able to write bug reports.
> 
> Note for this bug: this will go first to experimental distribution.

I think it can and should go to unstable directly. Just make sure
that it does not progress to testing by itself, e.g. by filing an RC
bug against it.

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#647487: [PATCH] please transaction gst-plugins-bad0.10 to multiarch

2011-11-03 Thread YunQiang Su
Package: gst-plugins-bad0.10
Version: 0.10.22-3

This patch is diff from the Debian's with Ubuntu's, so you may need
remove something
Ubuntu specified.

-- 
YunQiang Su
diff -ru debian/build-deps gst-plugins-bad0.10-0.10.22/debian/build-deps
--- debian/build-deps	2011-08-01 01:35:11.0 +0800
+++ gst-plugins-bad0.10-0.10.22/debian/build-deps	2011-11-01 23:58:46.448472228 +0800
@@ -1,16 +1,16 @@
 autopoint
 autotools-dev
-cdbs (>= 0.4.32)
-debhelper (>= 7)
+cdbs (>= 0.4.93)
+debhelper (>= 8.1.3)
 dh-autoreconf
 dpkg-dev (>= 1.15.1)
 flite-dev
 @GST_EXTRA_BUILD_DEPENDS@
 @GST_LIB_DEV_DEP@
 gstreamer0.10-doc
-gstreamer0.10-plugins-base (>= 0.10.33)
+gstreamer0.10-plugins-base (>= 0.10.35-2~)
 gstreamer0.10-plugins-base-doc
-gstreamer-tools (>= 0.10.30)
+gstreamer-tools (>= 0.10.35-2~)
 gtk-doc-tools
 ladspa-sdk
 libass-dev (>= 0.9.4)
@@ -28,7 +28,7 @@
 libglib2.0-dev (>= 2.25)
 libgme-dev
 libgsm1-dev
-libgstreamer-plugins-base0.10-dev (>= 0.10.33)
+libgstreamer-plugins-base0.10-dev (>= 0.10.35-2~)
 libgtk2.0-dev (>= 2.14.0)
 libiptcdata0-dev (>= 1.0.2)
 libjasper-dev
@@ -53,7 +53,6 @@
 libvpx-dev
 libwildmidi-dev (>= 0.2.3)
 libx11-dev
-libxvidcore-dev
 libzbar-dev (>= 0.9)
 lv2core
 pkg-config (>= 0.11.0)
diff -ru debian/build-deps.in gst-plugins-bad0.10-0.10.22/debian/build-deps.in
--- debian/build-deps.in	2011-08-01 01:28:18.0 +0800
+++ gst-plugins-bad0.10-0.10.22/debian/build-deps.in	2011-10-30 14:23:43.116476516 +0800
@@ -1,12 +1,12 @@
 @GST_LIB_DEV_DEP@
 @GST_EXTRA_BUILD_DEPENDS@
-libgstreamer-plugins-base0.10-dev (>= 0.10.33)
-gstreamer-tools (>= 0.10.30)
+libgstreamer-plugins-base0.10-dev (>= 0.10.35-1~)
+gstreamer-tools (>= 0.10.35-2~)
 autotools-dev
 dh-autoreconf
 autopoint
-cdbs (>= 0.4.32)
-debhelper (>= 7)
+cdbs (>= 0.4.93)
+debhelper (>= 8.1.3)
 dpkg-dev (>= 1.15.1)
 pkg-config (>= 0.11.0)
 gtk-doc-tools
@@ -30,7 +30,7 @@
 libexempi-dev
 libiptcdata0-dev (>= 1.0.2)
 libwildmidi-dev (>= 0.2.3)
-gstreamer0.10-plugins-base (>= 0.10.33)
+gstreamer0.10-plugins-base (>= 0.10.35-2~)
 libofa0-dev (>= 0.9.3)
 libdvdnav-dev (>= 4.1.2) [!hurd-any]
 libssl-dev
@@ -56,4 +56,3 @@
 libzbar-dev (>= 0.9)
 librtmp-dev
 libcurl4-gnutls-dev (>= 7.21.0)
-libxvidcore-dev
diff -ru debian/changelog gst-plugins-bad0.10-0.10.22/debian/changelog
--- debian/changelog	2011-08-01 01:34:07.0 +0800
+++ gst-plugins-bad0.10-0.10.22/debian/changelog	2011-11-02 14:27:14.100929089 +0800
@@ -1,9 +1,35 @@
-gst-plugins-bad0.10 (0.10.22-3) unstable; urgency=low
+gst-plugins-bad0.10 (0.10.22-3~deepin4) oneiric; urgency=low
 
-  * Add xvid to the bad plugin set as it's available in debian now.
-  * Remove any reference to LAME or MP3 from README.Debian.
+  * Multiarch it.
 
- -- Fabian Greffrath   Fri, 29 Jul 2011 13:24:53 +0200
+ -- YunQiang Su   Sun, 30 Oct 2011 14:04:56 +0800
+
+gst-plugins-bad0.10 (0.10.22-2ubuntu4) oneiric; urgency=low
+
+  * Move jpegformat into gst-plugins-good for camerabin.
+
+ -- Evan Dandrea   Mon, 22 Aug 2011 15:01:14 +0100
+
+gst-plugins-bad0.10 (0.10.22-2ubuntu3) oneiric; urgency=low
+
+  * Move camerabin into gst-plugins-good.
+
+ -- Evan Dandrea   Wed, 17 Aug 2011 11:07:18 +0100
+
+gst-plugins-bad0.10 (0.10.22-2ubuntu2) oneiric; urgency=low
+
+  * Split out gstreamer0.10-camerabin for Ubiquity.
+
+ -- Evan Dandrea   Thu, 11 Aug 2011 12:32:25 +0100
+
+gst-plugins-bad0.10 (0.10.22-2ubuntu1) oneiric; urgency=low
+
+  * Rebased on debian unstable, remaining changes:
+- debian/gstreamer-plugins-bad.install
+  * don't include dtmf, liveadder, rtpmux, autoconvert and shm, we include 
+them in -good
+
+ -- Ken VanDine   Tue, 19 Jul 2011 14:32:43 -0400
 
 gst-plugins-bad0.10 (0.10.22-2) unstable; urgency=low
 
diff -ru debian/compat gst-plugins-bad0.10-0.10.22/debian/compat
--- debian/compat	2011-08-01 01:28:18.0 +0800
+++ gst-plugins-bad0.10-0.10.22/debian/compat	2011-10-30 13:56:31.156384071 +0800
@@ -1 +1 @@
-7
+9
diff -ru debian/control gst-plugins-bad0.10-0.10.22/debian/control
--- debian/control	2011-08-01 01:35:13.0 +0800
+++ gst-plugins-bad0.10-0.10.22/debian/control	2011-11-01 23:59:05.704567733 +0800
@@ -1,13 +1,14 @@
 Source: gst-plugins-bad0.10
 Section: libs
 Priority: extra
-Maintainer: Maintainers of GStreamer packages 
+Maintainer: Ubuntu Developers 
+XSBC-Original-Maintainer: Maintainers of GStreamer packages 
 Uploaders: Sebastian Dröge ,
Sjoerd Simons 
 Build-Depends: autopoint,
autotools-dev,
-   cdbs (>= 0.4.32),
-   debhelper (>= 7),
+   cdbs (>= 0.4.93),
+   debhelper (>= 8.1.3),
dh-autoreconf,
dpkg-dev (>= 1.15.1),
flite-dev,
@@ -16,9 +17,9 @@
libdc1394-22-dev (>= 2.0.0) [linux-any],
libgstreamer0.10-dev (>= 0.10.33),
gstreamer0.10-doc,
-   gstreamer0.10-plugins-base (>= 0.10.33),
+   gstreamer0.10-plugins-base (>= 0.10.35-2~),
   

Bug#647488: [PATCH] please transaction gst-plugins-ugly0.10 to multiarch

2011-11-03 Thread YunQiang Su
Package: gst-plugins-ugly0.10
Version: 0.10.18-3


This patch is diff from the Debian's with Ubuntu's, so you may need
remove something Ubuntu specified.

-- 
YunQiang Su
diff -ru debian/build-deps gst-plugins-ugly0.10-0.10.18/debian/build-deps
--- debian/build-deps	2011-08-01 01:31:13.0 +0800
+++ gst-plugins-ugly0.10-0.10.18/debian/build-deps	2011-10-30 14:33:48.307477490 +0800
@@ -1,7 +1,7 @@
 autopoint
 autotools-dev
-cdbs (>= 0.4.20)
-debhelper (>= 7)
+cdbs (>= 0.4.93)
+debhelper (>= 8.1.3)
 dh-autoreconf
 dpkg-dev (>= 1.15.1)
 @GST_EXTRA_BUILD_DEPENDS@
@@ -9,13 +9,13 @@
 gstreamer0.10-doc
 gstreamer0.10-plugins-base
 gstreamer0.10-plugins-base-doc
-gstreamer-tools (>= 0.10.14)
+gstreamer-tools (>= 0.10.35-2~)
 gtk-doc-tools
 liba52-0.7.4-dev
 libcdio-dev (>= 0.76)
 libdvdread-dev (>= 0.9.0)
 libglib2.0-dev (>= 2.20)
-libgstreamer-plugins-base0.10-dev (>= 0.10.26)
+libgstreamer-plugins-base0.10-dev (>= 0.10.35-2~)
 libid3tag0-dev
 libmad0-dev (>= 0.15)
 libmp3lame-dev
diff -ru debian/build-deps.in gst-plugins-ugly0.10-0.10.18/debian/build-deps.in
--- debian/build-deps.in	2011-08-01 01:27:50.0 +0800
+++ gst-plugins-ugly0.10-0.10.18/debian/build-deps.in	2011-10-30 14:29:57.682333887 +0800
@@ -1,11 +1,11 @@
 @GST_LIB_DEV_DEP@
 @GST_EXTRA_BUILD_DEPENDS@
-libgstreamer-plugins-base0.10-dev (>= 0.10.26)
+libgstreamer-plugins-base0.10-dev (>= 0.10.35-2~)
 autotools-dev
 dh-autoreconf
 autopoint
-cdbs (>= 0.4.20)
-debhelper (>= 7)
+cdbs (>= 0.4.93)
+debhelper (>= 8.1.3)
 dpkg-dev (>= 1.15.1)
 pkg-config (>= 0.11.0)
 gtk-doc-tools
@@ -17,7 +17,7 @@
 libmpeg2-4-dev (>= 0.4.0)
 libsidplay1-dev
 libdvdread-dev (>= 0.9.0)
-gstreamer-tools (>= 0.10.14)
+gstreamer-tools (>= 0.10.35-2~)
 gstreamer0.10-plugins-base
 libcdio-dev (>= 0.76)
 libtwolame-dev (>= 0.3.10)
diff -ru debian/changelog gst-plugins-ugly0.10-0.10.18/debian/changelog
--- debian/changelog	2011-08-01 01:30:00.0 +0800
+++ gst-plugins-ugly0.10-0.10.18/debian/changelog	2011-11-02 14:29:25.093578636 +0800
@@ -1,3 +1,17 @@
+gst-plugins-ugly0.10 (0.10.18-4~deepin4) oneiric; urgency=low
+
+  * Multiarch it 
+
+ -- YunQiang Su   Sun, 30 Oct 2011 14:33:08 +0800
+
+gst-plugins-ugly0.10 (0.10.18-3ubuntu1) oneiric; urgency=low
+
+  * Add 'Replaces' for -multiverse package as all the plugins from that package
+have moved to this one. (LP: #828984)
+  * Install preset files that were previously in -multiverse package.
+
+ -- Onkar Shinde   Fri, 02 Sep 2011 23:54:52 +0530
+
 gst-plugins-ugly0.10 (0.10.18-3) unstable; urgency=low
 
   * Add lame to the ugly plugin set as it's available in Debian now (Closes: #636065).
diff -ru debian/compat gst-plugins-ugly0.10-0.10.18/debian/compat
--- debian/compat	2011-08-01 01:27:50.0 +0800
+++ gst-plugins-ugly0.10-0.10.18/debian/compat	2011-10-30 14:29:37.018231411 +0800
@@ -1 +1 @@
-7
+9
diff -ru debian/control gst-plugins-ugly0.10-0.10.18/debian/control
--- debian/control	2011-08-01 01:31:13.0 +0800
+++ gst-plugins-ugly0.10-0.10.18/debian/control	2011-10-30 14:33:48.575478818 +0800
@@ -1,26 +1,27 @@
 Source: gst-plugins-ugly0.10
 Section: libs
 Priority: optional
-Maintainer: Maintainers of GStreamer packages 
+Maintainer: Onkar Shinde 
+XSBC-Original-Maintainer: Maintainers of GStreamer packages 
 Uploaders: Loic Minier ,
Sebastian Dröge 
 Build-Depends: autopoint,
autotools-dev,
-   cdbs (>= 0.4.20),
-   debhelper (>= 7),
+   cdbs (>= 0.4.93),
+   debhelper (>= 8.1.3),
dh-autoreconf,
dpkg-dev (>= 1.15.1),
libgstreamer0.10-dev (>= 0.10.26),
gstreamer0.10-doc,
gstreamer0.10-plugins-base,
gstreamer0.10-plugins-base-doc,
-   gstreamer-tools (>= 0.10.14),
+   gstreamer-tools (>= 0.10.35-2~),
gtk-doc-tools,
liba52-0.7.4-dev,
libcdio-dev (>= 0.76),
libdvdread-dev (>= 0.9.0),
libglib2.0-dev (>= 2.20),
-   libgstreamer-plugins-base0.10-dev (>= 0.10.26),
+   libgstreamer-plugins-base0.10-dev (>= 0.10.35-2~),
libid3tag0-dev,
libmad0-dev (>= 0.15),
libmp3lame-dev,
@@ -32,7 +33,7 @@
libtwolame-dev (>= 0.3.10),
libx264-dev (>= 0.55.0),
pkg-config (>= 0.11.0)
-Standards-Version: 3.8.4
+Standards-Version: 3.9.2
 Vcs-Git: git://anonscm.debian.org/pkg-gstreamer/gst-plugins-ugly0.10.git
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-gstreamer/gst-plugins-ugly0.10.git
 Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-ugly.html
@@ -64,7 +65,8 @@
 Replaces: gstreamer0.10-plugins-good (<< 0.10.9.2),
   gstreamer0.10-plugins-bad (<< 0.10.10.2),
   gstreamer0.10-x264,
-  gstreamer0.10-lame
+  gstreamer0.10-lame,
+  gstreamer0.10-plugins-ugly-multiverse (<= 0.1

Bug#647461: ITP: knot -- authoritative domain name server

2011-11-03 Thread Michael Tokarev
On 03.11.2011 02:15, Ondřej Surý wrote:
> Package: wnpp
> Severity: wishlist
> Owner: "Ondřej Surý" 
> 
> * Package name: knot
>   Version : 0.8.0
>   Upstream Author : CZ.NIC Labs
> * URL : http://www.knot-dns.cz/
> * License : GPL
>   Programming Lang: C
>   Description : authoritative domain name server
> 
>  Knot DNS is a fast, authoritative only, high performance, feature
>  full and open source name server.
>  .
>  Knot DNS is developed by CZ.NIC Labs, the R&D department of .CZ
>  registry and hence is well suited to run anything from the root
>  zone, the top-level domain, to many smaller standard domain names.
>  .
>  Note: this release is still EXPERIMENTAL and you should know what
>  you are doing and be able to write bug reports.

Out of curiocity: how it is different from NSD(*) ?
I.e, we already have a nameserver with all the
above but without the "experimental" part... ;)

(*) http://www.nlnetlabs.nl/projects/nsd/

Thanks,

/mjt



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



Bug#647489: moodle: New upstream version 2.1.2

2011-11-03 Thread Mathieu Simon
Package: moodle
Severity: wishlist


Please consider adding the latest Moodle 2.1 series version to sid.
General bug fix support has ended for 1.9 series, security bugfix 
support will end on June 2012. (See: http://docs.moodle.org/dev/Releases)

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.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#636107: linux-image-3.0.0-1-amd64: Invalid opcode/kernel bug

2011-11-03 Thread Martin Paljak
Hello,
On 30/10/11 19:28, Jonathan Nieder wrote:
>  - did this ever happen again?
Yes, often (roughly on daily basis)
>  - if so, with what kernel version, and was the backtrace the same?
Not precisely, but IIRC looked like same origin.
>  - does this machine pass memtest86 (always useful to check...)
I have not had the time to wait for FULL test but quick tests are OK.

>  - any other weird symptoms?
>  - have you tried without the nvidia and virtualbox drivers?
No, I depend on them.

>  - if that made the problem go away, have you tried without the
>nvidia driver but with the virtualbox drivers (or vice versa)?
>  - how often did the oops happen in the first place?  If we had a
>patch to test, how soon could we expect to find out whether it
>works?
> 
> Also, if you are no longer interested or no longer have access to this
> hardware, please do let us know, so we can stop bothering you and stop
> tracking it (and hopefully someone else will report it).
For me this can be closed.

I understood that living on unstable is as unstable as it ever was :)

So I downgraded back to stable/testing. Also, VMWare 8 came out, so I
can't get back to the old configuration easily. I might try unstable on
a spare disk some time in near future, if the problem still exists (with
newer vmware) I'll open a ne wbug.

My box is stable as rock again.

I think it can be closed.





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



Bug#647490: [PATCH] please transaction gstreamer0.10-ffmpeg to multiarch

2011-11-03 Thread YunQiang Su
Package: gstreamer0.10-ffmpeg
Version: 0.10.12-3

This patch is with the -2 version, so the changelog need to be merged.

-- 
YunQiang Su
diff -ru debian/changelog gstreamer0.10-ffmpeg-0.10.12/debian/changelog
--- debian/changelog	2011-09-08 16:38:47.0 +0800
+++ gstreamer0.10-ffmpeg-0.10.12/debian/changelog	2011-11-02 14:32:22.098456356 +0800
@@ -1,15 +1,16 @@
-gstreamer0.10-ffmpeg (0.10.12-3) unstable; urgency=low
+gstreamer0.10-ffmpeg (0.10.12-2~deepin4) oneiric; urgency=low
 
-  * debian/control:
-+ Depend on libavcodec53 (<< 5:0) instead of libavcodec52 (Closes: #640862).
+  * Multiarch it.
 
- -- Sebastian Dröge   Thu, 08 Sep 2011 10:37:22 +0200
+ -- YunQiang Su   Sun, 30 Oct 2011 14:59:22 +0800
 
-gstreamer0.10-ffmpeg (0.10.12-2) unstable; urgency=low
+gstreamer0.10-ffmpeg (0.10.12-1ubuntu1) oneiric; urgency=low
 
-  * Upload to unstable (Closes: #640317).
-
- -- Sebastian Dröge   Mon, 05 Sep 2011 10:32:37 +0200
+  * Don't declare dependencies on libavcodec manually. Libavcodec's shlibs
+file is more accurate and less error prone. With libav 0.7, it's
+libavcodec53, not 52.
+  
+ -- Reinhard Tartler   Tue, 09 Aug 2011 16:20:54 +0200
 
 gstreamer0.10-ffmpeg (0.10.12-1) experimental; urgency=low
 
diff -ru debian/control gstreamer0.10-ffmpeg-0.10.12/debian/control
--- debian/control	2011-09-08 16:37:15.0 +0800
+++ gstreamer0.10-ffmpeg-0.10.12/debian/control	2011-11-02 00:10:03.083827487 +0800
@@ -6,30 +6,29 @@
Loic Minier ,
Sebastian Dröge ,
Sjoerd Simons 
-Build-Depends: debhelper (>= 7),
-   cdbs (>= 0.4.8),
+Build-Depends: debhelper (>= 8.1.3),
+   cdbs (>= 0.4.93),
dpkg-dev (>= 1.15.1),
autotools-dev,
zlib1g-dev,
libglib2.0-dev (>= 2.4.0),
pkg-config (>= 0.11.0),
-   libgstreamer0.10-dev (>= 0.10.31),
-   libgstreamer-plugins-base0.10-dev (>= 0.10.31),
+   libgstreamer0.10-dev (>= 0.10.35-2~),
+   libgstreamer-plugins-base0.10-dev (>= 0.10.35-2~),
liborc-0.4-dev (>= 1:0.4.6),
-   gstreamer-tools (>= 0.10.14),
+   gstreamer-tools (>= 0.10.35-2~),
libavcodec-dev (>= 4:0.7),
libpostproc-dev (>= 4:0.7),
libavformat-dev (>= 4:0.7),
libswscale-dev (>= 4:0.7),
libbz2-dev
-Standards-Version: 3.8.4
+Standards-Version: 3.9.2
 
 Package: gstreamer0.10-ffmpeg
 Architecture: any
 Section: libs
 Depends: ${misc:Depends},
- ${shlibs:Depends},
- libavcodec53 (<< 5:0) | libavcodec-extra-53 (<< 5:0)
+ ${shlibs:Depends}
 XB-GStreamer-Version: ${gstreamer:Version}
 XB-GStreamer-Elements: ${gstreamer:Elements}
 XB-GStreamer-URI-Sources: ${gstreamer:URISources}
diff -ru debian/gstreamer0.10-ffmpeg.install gstreamer0.10-ffmpeg-0.10.12/debian/gstreamer0.10-ffmpeg.install
--- debian/gstreamer0.10-ffmpeg.install	2011-07-20 19:13:11.0 +0800
+++ gstreamer0.10-ffmpeg-0.10.12/debian/gstreamer0.10-ffmpeg.install	2011-10-30 14:58:22.634788289 +0800
@@ -1 +1 @@
-debian/tmp/usr/lib/*/*.so*
+debian/tmp/usr/lib/*/*/*.so*
diff -ru debian/rules gstreamer0.10-ffmpeg-0.10.12/debian/rules
--- debian/rules	2011-07-20 19:13:11.0 +0800
+++ gstreamer0.10-ffmpeg-0.10.12/debian/rules	2011-10-30 14:57:42.626589894 +0800
@@ -27,6 +27,7 @@
 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH 2>/dev/null)
 
 DEB_CONFIGURE_EXTRA_FLAGS += --with-system-ffmpeg \
+			 --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
  --with-package-name=$(GST_PACKAGE_NAME) \
  --with-package-origin=$(GST_PACKAGE_ORIGIN)
 
@@ -35,8 +36,8 @@
 DEB_DH_STRIP_ARGS := --dbg-package=gstreamer0.10-ffmpeg-dbg
 
 install/gstreamer0.10-ffmpeg::
-	rm -f debian/gstreamer0.10-ffmpeg/usr/lib/gstreamer-0.10/libgst*.la
-	rm -f debian/gstreamer0.10-ffmpeg/usr/lib/gstreamer-0.10/libgst*.a
+	rm -f debian/gstreamer0.10-ffmpeg/usr/lib/*/gstreamer-0.10/libgst*.la
+	rm -f debian/gstreamer0.10-ffmpeg/usr/lib/*/gstreamer-0.10/libgst*.a
 
 common-binary-fixup-arch::
 	dh_gstscancodecs


Bug#647491: Never updates the display until the next frame appears; interface non-responsive with low or variable frame rates

2011-11-03 Thread Josh Triplett
Package: mplayer
Version: 2:1.0~rc4.dfsg1+svn33713-5
Severity: normal

As far as I can tell, mplayer only updates the display when showing a
new video frame.  Any OSD updates, window size changes, or fullscreening
will only show up when the video supplies the next frame.  Thus, if
playing a video with low FPS, or a video with a variable frame rate,
mplayer's interface takes a long time to respond when using the OSD,
resizing the window, or hitting 'f' for fullscreen.

I notice this frequently when playing videos encoded in H.264 which
include periods of time with entirely static images, such as direct
digital recordings of video games.  I can observe the low frame rate
during these periods by looking at mplayer's console output; the 'A'
timestamp for audio advances by small increments, but the 'V' timestamp
for video advances by large chunks of a second at a time.  During these
periods, I observe the non-responsiveness noted above.  When the image
becomes more dynamic, the 'V' timestamp begins advancing by smaller
increments, and the interface becomes more responsive.

- Josh Triplett

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

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

Versions of packages mplayer depends on:
ii  libaa11.4p5-39 
ii  libasound21.0.24.1-4   
ii  libaudio2 1.9.3-1  
ii  libavcodec53  4:0.7.2-1+b1 
ii  libavformat53 4:0.7.2-1+b1 
ii  libavutil51   4:0.7.2-1+b1 
ii  libc6 2.13-21  
ii  libcaca0  0.99.beta17-2.1  
ii  libcdparanoia03.10.2+debian-10 
ii  libdca0   0.0.5-5  
ii  libdirectfb-1.2-9 1.2.10.0-4.3 
ii  libdvdnav44.1.4-1219-4 
ii  libdvdread4   4.1.4-1219-4 
ii  libenca0  1.13-4   
ii  libesd0   0.2.41-10
ii  libfaad2  2.7-7
ii  libfontconfig12.8.0-3  
ii  libfreetype6  2.4.7-2  
ii  libfribidi0   0.19.2-1 
ii  libgif4   4.1.6-9  
ii  libgl1-mesa-glx [libgl1]  7.11-6   
ii  libjack0 [libjack-0.116]  1:0.121.0+svn4538-3  
ii  libjpeg8  8c-2 
ii  liblircclient00.9.0~pre1-1 
ii  liblzo2-2 2.05-2   
ii  libmp3lame0   3.98.4+repack2-6 
ii  libncurses5   5.9-3
ii  libogg0   1.2.2~dfsg-1 
ii  libopenal11:1.13-4 
ii  libpng12-01.2.46-3 
ii  libpostproc52 4:0.7.2-1+b1 
ii  libpulse0 1.1-1
ii  libsdl1.2debian   1.2.14-6.4   
ii  libsmbclient  2:3.5.11~dfsg-4  
ii  libspeex1 1.2~rc1-1
ii  libsvga1  1:1.4.3-31   
ii  libswscale2   4:0.7.2-1+b1 
ii  libtheora01.1.1+dfsg.1-3   
ii  libtinfo5 5.9-3
ii  libvdpau1 0.4.1-3  
ii  libx11-6  2:1.4.4-2
ii  libx264-118   2:0.118.2092+git6eac7c3-1
ii  libxext6  2:1.3.0-3
ii  libxinerama1  2:1.1.1-3
ii  libxt61:1.1.1-2
ii  libxv12:1.0.6-2
ii  libxvidcore4  2:1.3.2-6
ii  libxvmc1  2:1.0.6-1
ii  libxxf86dga1  2:1.1.2-1
ii  libxxf86vm1   1:1.1.1-2
ii  zlib1g1:1.2.3.4.dfsg-3 

mplayer recommends no packages.

Versions of packages mplayer suggests:
ii  bzip2  1.0.5-7   
ii  fontconfig 2.8.0-3   
ii  mplayer-doc
ii  netselect | fping  
ii  ttf-freefont   20100919-1

-- 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#647448: ITP: qasmixer-l10n -- Localization package for QasMixer

2011-11-03 Thread Christian PERRIER
Quoting Sebastian (va...@gmx.de):

>   Description : Localization package for QasMixer
  ^
  don't forget uncapitalizing this in the final package



signature.asc
Description: Digital signature


Bug#647492: libphysfs: clean target should not remove the .pc directory

2011-11-03 Thread Sven Joachim
Source: libphysfs
Version: 2.0.2-4
Severity: normal

The clean target in debian/rules removes the .pc directory which is bad
in the 3.0 (quilt) format, since that makes it impossible to use quilt
to refresh existing patches.


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

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



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



Bug#636107: linux-image-3.0.0-1-amd64: Invalid opcode/kernel bug

2011-11-03 Thread Jonathan Nieder
reopen 636107
# if someone can reliably reproduce this, that would be very welcome.
tags 636107 = unreproducible
retitle 636107 [vmware] BUG at mm/mmap.c:2282
quit

Martin Paljak wrote:
> On 30/10/11 19:28, Jonathan Nieder wrote:

>>  - have you tried without the nvidia and virtualbox drivers?
>
> No, I depend on them.

I meant as a diagnostic tool, not a workaround.

> For me this can be closed.
>
> I understood that living on unstable is as unstable as it ever was :)
>
> So I downgraded back to stable/testing. Also, VMWare 8 came out, so I
> can't get back to the old configuration easily. I might try unstable on
> a spare disk some time in near future, if the problem still exists (with
> newer vmware) I'll open a ne wbug.

Sigh.  No, I don't think it makes sense to close this --- it is too
severe, and it sounds like it was not intermittent or anything.

Thanks for the feedback.

Jonathan



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



Bug#646146: libphysfs: FTBFS: CMake Error: CURSES_LIBRARY not found

2011-11-03 Thread Sven Joachim
tags 646146 + patch
thanks

On 2011-10-21 20:00 +0200, Sven Joachim wrote:

> Package: libphysfs
> Version: 2.0.2-4
> Severity: serious
>
>>From my pbuilder log:
>
> ,
> | --   Build stdio test program: enabled
> | -- Use readline in test program: enabled
> | CMake Error: The following variables are used in this project, but they are 
> set to NOTFOUND.
> | Please set them or make sure they are set and tested correctly in the CMake 
> files:
> | CURSES_LIBRARY
> | linked by target "test_physfs" in directory /tmp/buildd/libphysfs-2.0.2
> | 
> | -- Configuring incomplete, errors occurred!
> | make: *** [config.status] Error 1
> `
>
> Either add libncurses-dev to Build-Depends, or (preferably) patch the
> CMakeLists.txt file to not look for a CURSES_LIBRARY, since ncurses is
> _not_ needed for linking against readline.

Debdiff with a patch is attached.

Cheers,
   Sven

diff -Nru libphysfs-2.0.2/debian/patches/do_not_link_against_curses.diff 
libphysfs-2.0.2/debian/patches/do_not_link_against_curses.diff
--- libphysfs-2.0.2/debian/patches/do_not_link_against_curses.diff  
1970-01-01 01:00:00.0 +0100
+++ libphysfs-2.0.2/debian/patches/do_not_link_against_curses.diff  
2011-11-03 08:49:31.0 +0100
@@ -0,0 +1,24 @@
+Description: Do not unnecessarily link against ncurses
+Author: Sven Joachim 
+Bug-Debian: http://bugs.debian.org/646146
+Last-Update: <2011-11-03>
+
+---
+
+--- libphysfs-2.0.2.orig/CMakeLists.txt
 libphysfs-2.0.2/CMakeLists.txt
+@@ -300,13 +300,11 @@ IF(PHYSFS_BUILD_TEST)
+ FIND_PATH(READLINE_H readline/readline.h)
+ FIND_PATH(HISTORY_H readline/history.h)
+ IF(READLINE_H AND HISTORY_H)
+-FIND_LIBRARY(CURSES_LIBRARY NAMES curses ncurses)
+-SET(CMAKE_REQUIRED_LIBRARIES ${CURSES_LIBRARY})
+ FIND_LIBRARY(READLINE_LIBRARY readline)
+ FIND_LIBRARY(HISTORY_LIBRARY history)
+ IF(READLINE_LIBRARY AND HISTORY_LIBRARY)
+ SET(HAVE_SYSTEM_READLINE TRUE)
+-SET(TEST_PHYSFS_LIBS ${TEST_PHYSFS_LIBS} ${READLINE_LIBRARY} 
${CURSES_LIBRARY})
++SET(TEST_PHYSFS_LIBS ${TEST_PHYSFS_LIBS} ${READLINE_LIBRARY})
+ INCLUDE_DIRECTORIES(${READLINE_H} ${HISTORY_H})
+ ADD_DEFINITIONS(-DPHYSFS_HAVE_READLINE=1)
+ ENDIF(READLINE_LIBRARY AND HISTORY_LIBRARY)
diff -Nru libphysfs-2.0.2/debian/patches/series 
libphysfs-2.0.2/debian/patches/series
--- libphysfs-2.0.2/debian/patches/series   2011-07-19 17:39:11.0 
+0200
+++ libphysfs-2.0.2/debian/patches/series   2011-11-03 09:10:50.0 
+0100
@@ -1 +1,2 @@
 remove_unused_variable.diff
+do_not_link_against_curses.diff


Bug#646428: [gajim] Gajim should not disconnect when network manager finds a new network

2011-11-03 Thread Riccardo Magliocchetti

Il 25/10/2011 09:15, Riccardo Magliocchetti ha scritto:

Il 25/10/2011 09:10, Riccardo Magliocchetti ha scritto:

Hello,

Il 24/10/2011 21:32, Yann Leboulanger ha scritto:

On 10/24/2011 10:08 AM, Riccardo Magliocchetti wrote:

Package: gajim
Version: 0.14.4-2
Severity: minor

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

Hello,

i have a mixed network configuration where ethernet is managed by
/etc/network/interfaces and the wifi by network manager. The problem is
that when i'm connected with the cable and network manager finds a new
network gajim disconnects, even before i can type the password. I won't
argue if gajim would reconnect _after_ network manager established a
new
connection but current behaviour is very annoying.


Could you open a console and run dbus-monitor to see the message that
causes Gajim to close connection?


It should be something in these messages:


no it's not, gajim disconnect when i press the cancel button of the
"insert password for the network" dialog, but i haven't captured the
messages, will retry.


Attached is what i get before i see the disconnected icon. Sorry to be 
so confusing.


thanks,
riccardo
method call sender=:1.67 -> dest=org.freedesktop.DBus serial=18 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ListNames
signal sender=:1.67 -> dest=(null destination) serial=19 path=/org/gajim/dbus/RemoteObject; interface=org.gajim.dbus.RemoteInterface; member=AccountPresence
   array [
  variant  string "offline"
  variant  string "jabber.unbit.it"
   ]
method call sender=:1.67 -> dest=org.freedesktop.DBus serial=20 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ListNames
signal sender=:1.67 -> dest=(null destination) serial=21 path=/org/gajim/dbus/RemoteObject; interface=org.gajim.dbus.RemoteInterface; member=AccountPresence
   array [
  variant  string "offline"
  variant  string "jabber.unbit.it"
   ]
method call sender=:1.67 -> dest=org.freedesktop.DBus serial=22 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ListNames
signal sender=:1.67 -> dest=(null destination) serial=23 path=/org/gajim/dbus/RemoteObject; interface=org.gajim.dbus.RemoteInterface; member=AccountPresence
   array [
  variant  string "error"
  variant  string "jabber.unbit.it"
   ]
method call sender=:1.67 -> dest=org.freedesktop.DBus serial=24 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ListNames
signal sender=:1.67 -> dest=(null destination) serial=25 path=/org/gajim/dbus/RemoteObject; interface=org.gajim.dbus.RemoteInterface; member=AccountPresence
   array [
  variant  string "error"
  variant  string "jabber.unbit.it"
   ]
signal sender=org.freedesktop.DBus -> dest=(null destination) serial=28 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
   string ":1.72"
   string ""
   string ":1.72"
method call sender=:1.72 -> dest=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method call sender=:1.72 -> dest=org.freedesktop.DBus serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
   string "type='signal',interface='org.gnome.secrets.Prompt',member='Completed'"
method call sender=:1.72 -> dest=org.freedesktop.DBus serial=3 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
   string "type='signal',member='NameOwnerChanged',interface='org.freedesktop.DBus'"
method call sender=:1.72 -> dest=org.freedesktop.secrets serial=4 path=/org/freedesktop/secrets; interface=org.freedesktop.Secret.Service; member=SearchItems
   array [
  dict entry(
 string "connection-uuid"
 string "cf303c82-105f-4e10-a8fa-c3c102796dc7"
  )
  dict entry(
 string "setting-name"
 string "802-11-wireless-security"
  )
   ]
method call sender=:1.8 -> dest=org.freedesktop.DBus serial=19 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetConnectionUnixProcessID
   string ":1.72"
method return sender=:1.8 -> dest=:1.72 reply_serial=4
   array [
   ]
   array [
   ]
method call sender=:1.72 -> dest=org.freedesktop.secrets serial=5 path=/org/freedesktop/secrets; interface=org.freedesktop.Secret.Service; member=SearchItems
   array [
  dict entry(
 string "connection-uuid"
 string "cf303c82-105f-4e10-a8fa-c3c102796dc7"
  )
  dict entry(
 string "setting-name"
 string "802-11-wireless-security"
  )
   ]
method return sender=:1.8 -> dest=:1.72 reply_serial=5
   array [
   ]
   array [
   ]


Bug#647489: [moodle-packaging] Bug#647489: moodle: New upstream version 2.1.2

2011-11-03 Thread Tomasz Muras
I've started to work on Moodle 2 packaging some time ago. There is *a
lot* to be done there, so any help would be appreciated - please contact
me if you would like to help.
As for the version, 2.2 will be released soon. Either 2.2 or 2.3 needs
to go into sid, to provide continues security fixes.

Tomek



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



Bug#647463: [Pkg-fonts-devel] Bug#647463: fonts-sil-andika: broken symlink to fontconfig config

2011-11-03 Thread Christian PERRIER
Quoting Peter De Wachter (pdewa...@gmail.com):
> Package: fonts-sil-andika
> Version: 1.002-1
> Severity: normal
> 
> This package installs a configuration file called "65-andika.conf" in
> /etc/fonts/conf.avail but it creates a symlink using a different name:
> 
> etc/fonts/conf.avail/65-fonts-sil-andika.conf 
> etc/fonts/conf.d/65-fonts-sil-andika.conf


Ack. I'll fix that in next upload.Thanks for your report.







signature.asc
Description: Digital signature


Bug#641927: Why netselect is broken

2011-11-03 Thread Joseph Coffland
netselect is currently broken in 64-bit systems.  This is because it's
IMCP packet is packed differently on 64-bit systems.

This can be fixed very easily.  Here is a patch for it:


diff -Naur netselect.debian//netinet/ip_icmp.h
netselect.new//netinet/ip_icmp.h
--- netselect.debian//netinet/ip_icmp.h 1998-06-24 16:48:55.0 -0700
+++ netselect.new//netinet/ip_icmp.h2011-11-03 01:05:00.0 -0700
@@ -86,7 +86,7 @@
 #defineicmp_ip icmp_dun.id_ip.idi_ip
 #defineicmp_mask   icmp_dun.id_mask
 #defineicmp_data   icmp_dun.id_data
-};
+} __attribute__((packed));

 /*
  * Lower bounds on packet lengths for various types.


Regards,

Joseph


-- 
Cauldron Development LLC
http://www.cauldrondevelopment.com/
Cell: 760-563-2633




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



Bug#647461: ITP: knot -- authoritative domain name server

2011-11-03 Thread Ondřej Surý
Hi Michael,

the problem is that we have only two usable servers for TLD (root
zone) operation and that is Bind and NSD.

And our implementation is faster :). You can watch RIPE DNS WG right
now, the presentation on Knot DNS is scheduled in few minutes.

Ondrej

2011/11/3 Michael Tokarev :
> On 03.11.2011 02:15, Ondřej Surý wrote:
>> Package: wnpp
>> Severity: wishlist
>> Owner: "Ondřej Surý" 
>>
>> * Package name    : knot
>>   Version         : 0.8.0
>>   Upstream Author : CZ.NIC Labs
>> * URL             : http://www.knot-dns.cz/
>> * License         : GPL
>>   Programming Lang: C
>>   Description     : authoritative domain name server
>>
>>  Knot DNS is a fast, authoritative only, high performance, feature
>>  full and open source name server.
>>  .
>>  Knot DNS is developed by CZ.NIC Labs, the R&D department of .CZ
>>  registry and hence is well suited to run anything from the root
>>  zone, the top-level domain, to many smaller standard domain names.
>>  .
>>  Note: this release is still EXPERIMENTAL and you should know what
>>  you are doing and be able to write bug reports.
>
> Out of curiocity: how it is different from NSD(*) ?
> I.e, we already have a nameserver with all the
> above but without the "experimental" part... ;)
>
> (*) http://www.nlnetlabs.nl/projects/nsd/
>
> Thanks,
>
> /mjt
>



-- 
Ondřej Surý 
http://blog.rfc1925.org/



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



Bug#515754: Debian bug #515754

2011-11-03 Thread John Hughes

I'm seeing this bug with nfs-common 1:1.2.5-2 on sid.

Downgrading to 1:1.2.2-4 from squeeze works.  (with allow_weak_crypto).

Anyone have a clue about what I should try to debug?

(nfs and krb5 servers are squeeze).




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



Bug#646708: further infos

2011-11-03 Thread Paolo Sala
Andreas Metzler scrisse in data 31/10/2011 16:17:
> are you using a special setup, e.g. local_scan plugin or sa-exim?
>   
no I don't use sa-exim and I don't know any plugin named acl_scan.

Have a great day

Piviul



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



Bug#645922: wicd-gtk does not start anymore in tray only

2011-11-03 Thread David Paleino
On Sat, 29 Oct 2011 12:20:07 +0200, Marc Dequènes (Duck) wrote:

> Coin,
> 
> The --tray option is not documented. When i saw the behavior change, i  
> automatically looked at the manpage, which has not been updated. You  
> cannot expect people to read the Debian changelog for such an  
> upstreaming-looking change.

Hello everybody,
I implemented it better now in the upstream repository:

http://bazaar.launchpad.net/~wicd-devel/wicd/experimental/revision/627


It will be present in wicd 1.7.1, which I'm going to release very soon as
upstream (just waiting for the translations to become a bit more complete).
Once I release that upstream, rest assured that a Debian package will soon
follow :)

If you want, please give that patch a try. I tested it and seems working, but
the more eyes, the better.

Thanks, and sorry for the inconvenience,
David

-- 
 . ''`.   Debian developer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://deb.li/dapal
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Bug#646428: [gajim] Gajim should not disconnect when network manager finds a new network

2011-11-03 Thread Yann Leboulanger

Le 03/11/2011 09:16, Riccardo Magliocchetti a écrit :

Il 25/10/2011 09:15, Riccardo Magliocchetti ha scritto:

Il 25/10/2011 09:10, Riccardo Magliocchetti ha scritto:

Hello,

Il 24/10/2011 21:32, Yann Leboulanger ha scritto:

On 10/24/2011 10:08 AM, Riccardo Magliocchetti wrote:

Package: gajim
Version: 0.14.4-2
Severity: minor

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

Hello,

i have a mixed network configuration where ethernet is managed by
/etc/network/interfaces and the wifi by network manager. The
problem is
that when i'm connected with the cable and network manager finds a new
network gajim disconnects, even before i can type the password. I
won't
argue if gajim would reconnect _after_ network manager established a
new
connection but current behaviour is very annoying.


Could you open a console and run dbus-monitor to see the message that
causes Gajim to close connection?


It should be something in these messages:


no it's not, gajim disconnect when i press the cancel button of the
"insert password for the network" dialog, but i haven't captured the
messages, will retry.


Attached is what i get before i see the disconnected icon. Sorry to be
so confusing.

thanks,
riccardo


Hi,

hmmm no, I need messages before that. In this log, we only see Gajim 
that disconnects, not the network-manager message that is sent before that.


--
Yann



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



Bug#638353: no lower panel at all in gdm3 login screen

2011-11-03 Thread Josselin Mouette
Le mercredi 02 novembre 2011 à 20:26 +0100, Wouter Bolsterlee a écrit : 
> Hmmm. There is no lower panel (for language/keybord selection) *at all*
> in my GDM3 login screen, not even after purging and reinstalling the
> package. On a different machine I don't have this problem. Any clue?

The lower panel is gone in version 3.0.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-




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



Bug#647493: rkhunter: Please allow deactivation of reports

2011-11-03 Thread Alexander Reichle-Schmehl
Package: rkhunter
Version: 1.3.2-6
Severity: minor
Tags: patch


Hi!

In our setup we use rkhunter on several systems and monitor the results of
the daily runs via our monitoring system.  So, we'd like to disable the
report mails.

However, unsetting MAIL-ON-WARNING in /etc/rkhunter.conf wasn't enough, as
we found out, that mails are also send from the cronjob itselfe (Why, if I
may ask?  Doesn't rkhunter itself already has the mail feature?)

Unsetting REPORT_EMAIL in /etc/cron.daily/rkhunter also didn't solved the
issue for us, as the "| /usr/sbin/sendmail $REPORT_EMAIL" in the cronjob
fails.

However, with the following patch:

-if [ -s "$OUTFILE" ]; then
+if [ -s "$OUTFILE" -a -n "$REPORT_EMAIL" ]; then

Report mails can be disabled, while keeping the functionality.


Best regards,
  Alexander


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

Kernel: Linux 2.6.32-5-xen-686 (SMP w/1 CPU core)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15) (ignored: 
LC_ALL set to de_DE@euro)
Shell: /bin/sh linked to /bin/bash

Versions of packages rkhunter depends on:
ii  binutils2.18.1~cvs20080103-7 The GNU assembler, linker and bina
ii  debconf [debconf-2. 1.5.24   Debian configuration management sy
ii  file4.26-1   Determines file type using "magic"
ii  net-tools   1.60-22  The NET-3 networking toolkit
ii  perl5.10.0-19lenny5  Larry Wall's Practical Extraction 
ii  postfix [mail-trans 2.5.5-1.1+lenny1 High-performance mail transport ag

Versions of packages rkhunter recommends:
ii  curl 7.18.2-8lenny5  Get a file from an HTTP, HTTPS or 
ii  iproute  20080725-2  networking and traffic control too
ii  libmd5-perl  2.03-1  backwards-compatible wrapper for D
ii  links2.1pre37-1.1Web browser running in text mode
ii  lynx 2.8.7dev9-2.1   Text-mode WWW Browser (transitiona
ii  unhide   20080519-2  Forensic tool to find hidden proce
ii  wget 1.11.4-2+lenny2 retrieves files from the web

Versions of packages rkhunter suggests:
ii  bsd-mailx  8.1.2-0.20071201cvs-3 A simple mail user agent

-- debconf information:
* rkhunter/apt_autogen: true
* rkhunter/cron_daily_run: true
* rkhunter/cron_db_update: true



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



Bug#628285: RFP: xul-ext-pencil -- GUI prototyping and diagram tool

2011-11-03 Thread Fabrizio Regalli
Hey Paul,

On Wed, 2011-11-02 at 23:19 +0100, Paul van Tilburg wrote:
> Hey,
> 
> Good catch!  I separately had started packaging it (the ITP somehow was
> too far down on Google and I overlooked it) and hadn't noticed these
> issues.  The packaging was so simple using mozilla-devscripts, not 
> much time was wasted.

Not sure if you have already checked the package on git.
:-) http://anonscm.debian.org/gitweb/?p=pkg-mozext/pencil.git;a=summary
Everything is fine except for the copyright issues I've reported before.

> Concern your last comment, I have found that lots of upstream cannot be
> bothered to document all the files they copy from other sources.
> There is not a problem with that by definition, as long as it it
> compatible with the GPL-2 license of the rest of the source, documented
> in debian/copyright.
> 
> However, if I look at base64.js and the linked website, I see that the
> license is CC-BY 2.0 UK.  This is not compatible with the GPL-2!
> For io.js, the license is MPL... I guess that should be fine.
> 
> Lastly, nsDragAndDrop.js is part of Firefox it seems, should also
> be fine.
> 
> Given that the author(s) state on the project web page that they are so
> committed to keeping it completely GPL-2, it is weird that they are not
> willing to respond to your concerns.  If you think that it would help if
> someone else also asks about this, let me know, I will try.

Feel free to do it.
I Cc'ed the pkg-mozext team also, so we can be all up-to-date on future
developments about copyright

Thank you for your interest in pencil!

Cheers,
Fabrizio.



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


Bug#642216: I have the same problem with e173-u2 - worked around, by, unpacking config file from configPack.tar.gz

2011-11-03 Thread Wojtek Zabolotny

Josua Dietze wrote:


 Did it work with version 1.1.4 ? That's what bug #629371 is about.



I don't know, I use version 1.1.9-2


 Also, what happens if you put the unpacked file in /usr/share/usb_modeswitch
 (beside the package file) instead of /etc/usb_modeswitch.d ?


Yes, unpacking into /usr/share/usb_modeswitch halped also.
--
Regards,
WZab




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



Bug#633843: Fixed Upstream

2011-11-03 Thread Neil Muller
This has been fixed upstream with a slightly different patch. See
http://sourceforge.net/mailarchive/message.php?msg_id=27799824

The fix will be included in the next version of SQLObject - see
http://sourceforge.net/mailarchive/message.php?msg_id=28310875

-- 
Neil Muller



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



Bug#642499: systemd: uses dmesg as a soapbox re separate /usr

2011-11-03 Thread Zbigniew Jędrzejewski-Szmek

Hi,

I think that the message, as it is now, is reasonable. The reason why it 
is printed every time in a fairly verbose way is:

Some things will probably break (sometimes even silently) in
mysterious ways.
So that if something fails, one doesn't have to look in a readme for a hint.

Systemd doesn't really care itself about /usr being separate, but the 
maintainers don't want to receive bug reports if e.g. udev rules break 
because /usr is not mounted early enough. Current setup seems to be a 
reasonable compromise -- print a verbose warning and continue as usual.

This is unlikely to change, IMHO.

Best,
Zbyszek



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



Bug#647494: ppp: pon does not inform the Gnome environment about established network connection

2011-11-03 Thread w...@ise.pw.edu.pl
Package: ppp
Version: 2.4.5-5
Severity: important

Dear Maintainer,

I don't know if this bug report should be fille for ppp package or for a
different one. However the common point for all observed problems id the
fact that the gnome (dbus?) environment is not informed about establishing
of the network connection via pon.
The problem is that if I set up a connection with "pon provider_name", some 
network tools (icedove, iceweasel) work correctly, while others (empathy,
evolution) refuse to work or work only in off-line mode, complaining that
no network connection exists.

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

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

Versions of packages ppp depends on:
ii  libc6   2.13-21   
ii  libpam-modules  1.1.3-4   
ii  libpam-runtime  1.1.3-4   
ii  libpam0g1.1.3-4   
ii  libpcap0.8  1.1.1-8   
ii  procps  1:3.2.8-11

ppp recommends no packages.

ppp 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#605183: Fixed upstream

2011-11-03 Thread Neil Muller
This has been fixed upstream and will be included in the next release.
See http://sourceforge.net/mailarchive/message.php?msg_id=28318786

-- 
Neil Muller



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



Bug#647444: [Pkg-fonts-devel] Bug#647444: ttf-dejavu-core: Letter ė (U+0117 LATIN SMALL LETTER E WITH DOT ABOVE) is broken at 12pt and below

2011-11-03 Thread Davide Viti
> Certainly worth reporting upstream. Davide?

Is this a duplicate of #618310 ?


regards,
Davide


E' nata indoona: chiama, videochiama e messaggia Gratis. Scarica indoona per 
iPhone, Android e PC: http://www.indoona.com/ 



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



Bug#646822: missing icons -- more information

2011-11-03 Thread Stephen Williams
Package: gmpc
Version: 11.8.16-1

The following text appears on stderr when gmpc is launched from an xterm.
I think it is related to the missing icons:

(gmpc:20712): Gtk-WARNING **: Attempting to add a widget with type GtkImage to
a GtkButton, but as a GtkBin subclass a GtkButton can only contain one widget
at a time; it already contains a widget of type GtkLabel

(gmpc:20712): Gtk-WARNING **: Attempting to add a widget with type GtkImage to
a GtkButton, but as a GtkBin subclass a GtkButton can only contain one widget
at a time; it already contains a widget of type GtkLabel

(gmpc:20712): Gtk-WARNING **: Attempting to add a widget with type GtkImage to
a GtkButton, but as a GtkBin subclass a GtkButton can only contain one widget
at a time; it already contains a widget of type GtkLabel

(gmpc:20712): Gtk-WARNING **: Attempting to add a widget with type GtkImage to
a GtkButton, but as a GtkBin subclass a GtkButton can only contain one widget
at a time; it already contains a widget of type GtkLabel


ii  gmpc   11.8.16-1  Gnome Music Player Client (graphical interfa
ii  libgtk2.0-02.24.6-2   GTK+ graphical user interface library

-Stephen



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



Bug#647495: systemd: debian-fixup.service goes berserk if /run is a symlink to /var/run

2011-11-03 Thread Zbigniew Jędrzejewski-Szmek
Package: systemd
Version: 37-1
Severity: normal

Dear Maintainer,

I had /run symlinked to /var/run, the opossite of the proper setup, I know, but 
it
was working fine because /var was on the root partition anyway.
debian-fixup removes /var/run in the middle of boot ([-L /var/run] fails)
and then systemctl starts failing because it cannot connect to systemd over 
dbus.

Of course my problem is caused by the non-standard setup, but
a) the results are severe (broken boot)
b) it was working fine with systemd-29

Please reconsider adding the test proposed in #642961, ie. something like
sold="$(/usr/bin/stat -L --format="%d %i" "$OLD" 2>/dev/null || :)"
srun="$(/usr/bin/stat -L --format="%d %i" "$RUN" 2>/dev/null || :)"
if [ -n "$sold" ] && [ "$sold" = "$srun" ]; then
return 0
fi
to make debian-fixup more robust.

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

Kernel: Linux 3.0.0-1-amd64 (SMP w/8 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 systemd depends on:
ii  initscripts 2.88dsf-13.11
ii  libacl1 2.2.51-3 
ii  libaudit0   1.7.18-1 
ii  libc6   2.13-21  
ii  libcap2 1:2.22-1 
ii  libcryptsetup1  2:1.3.0-3
ii  libdbus-1-3 1.4.16-1 
ii  libpam0g1.1.3-4  
ii  libselinux1 2.1.0-1  
ii  libsystemd-daemon0  37-1 
ii  libsystemd-login0   37-1 
ii  libudev0172-1
ii  libwrap07.6.q-21 
ii  udev172-1
ii  util-linux  2.19.1-5 

Versions of packages systemd recommends:
ii  libpam-systemd  37-1

Versions of packages systemd suggests:
ii  python   2.6.7-3
ii  systemd-gui  37-1   

-- 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#647496: No more video-thumbnails in thunar

2011-11-03 Thread Marco Milone
Package: thunar
Version: 1.2.3-2
Severity: normal

Dear all,
I just realize that I can't no longer see video-thumbnails in thunar...I used
to see them, but apparently the creation of video-thumbnails just stop working.

I am on Wheezy 32 bit and I have installed on my system tumbler and
ffmpegthumbnailer.

I try to delete ~/.cache/Thunar and ~/.thumbnails with no success.

Unfortunately, I cannot exactly say when thumbnails stop working, but looking
at aptitude logs I can see a recent ffmpeg upgrade:
ffmpeg 4:0.7.2-1 -> 4:0.7.2-1+b1

Maybe could be related to the problem?

I was uncertain about which package submitting the bug against (thunar?
tumbler? ffmpegthumbnails?) and so I am sorry if chose wrong.

Sorry for my bad English and feel free to ask any additional information.

Best Regards,

Marco MIlone



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

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

Versions of packages thunar depends on:
ii  desktop-file-utils  0.15-2
ii  exo-utils   0.6.2-3   
ii  libatk1.0-0 2.2.0-2   
ii  libc6   2.13-21   
ii  libcairo2   1.10.2-6.1
ii  libdbus-1-3 1.4.16-1  
ii  libdbus-glib-1-20.98-1
ii  libexo-1-0  0.6.2-3   
ii  libgdk-pixbuf2.0-0  2.24.0-1  
ii  libglib2.0-02.28.6-1  
ii  libgtk2.0-0 2.24.6-2  
ii  libgudev-1.0-0  172-1 
ii  libice6 2:1.0.7-2 
ii  libnotify4  0.7.4-1   
ii  libpango1.0-0   1.29.4-1  
ii  libsm6  2:1.2.0-2 
ii  libthunarx-2-0  1.2.3-2   
ii  libxfce4ui-1-0  4.8.0-3   
ii  libxfce4util4   4.8.2-1   
ii  shared-mime-info0.90-1
ii  thunar-data 1.2.3-2   

Versions of packages thunar recommends:
ii  dbus-x111.4.16-1  
ii  gvfs1.6.4-4   
ii  libfontconfig1  2.8.0-3   
ii  libfreetype62.4.6-2   
ii  thunar-volman   0.6.0-4+b1
ii  tumbler 0.1.22-1  
ii  xdg-user-dirs   0.14-1
ii  xfce4-panel 4.8.6-1   

Versions of packages thunar suggests:
ii  thunar-archive-plugin 0.3.0-3
ii  thunar-media-tags-plugin  0.1.2-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#612077: mirror submission for mirrors.serverhost.ro

2011-11-03 Thread Simon Paillard
On Thu, Sep 29, 2011 at 01:02:33AM +0300, Victor Nitu wrote:
> I am having a hard time wondering why the mirror isn't listed yet in
> the official list on http://www.debian.org/mirror/list
> Is there any other form we forgot to submit?
> Same problem with the d-i, where I had to enter the URL manually,
> since it wasn't listed.

(for the record, copy of irc)
Using the up to date ftpsync is needed, as mentioned in previous mails.
http://www.debian.org/mirror/ftpmirror#how

You can find the full bug history at
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612077

Thanks for mirroring Debian and best regards.

-- 
Simon Paillard



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



Bug#642216: I have the same problem with e173-u2 - worked around, by, unpacking config file from configPack.tar.gz

2011-11-03 Thread Josua Dietze

Am 03.11.2011 10:11, schrieb Wojtek Zabolotny:

Josua Dietze wrote:

Also, what happens if you put the unpacked file in /usr/share/usb_modeswitch
(beside the package file) instead of /etc/usb_modeswitch.d ?


Yes, unpacking into /usr/share/usb_modeswitch halped also.


In that case, version 1.2.0 should solve the problem and make it possible 
to switch reliably at boot time with the *packed* config files.


Regards,
Josua Dietze



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



Bug#647497: [PATCH] please transaction giflib to multiarch and fix FTBFS when use -Wformat -Wformat-security -Werror=format-security

2011-11-03 Thread YunQiang Su
Package: giflib
Version: 4.1.6-9



-- 
YunQiang Su


diff
Description: Binary data


Bug#647498: freerdp: Consider packaging git snapshot?

2011-11-03 Thread Mathieu Simon
Package: freerdp
Severity: wishlist


FreeRDP has made considerable progress and only the latest FreeRDP in the 
upstream master branch (pre 1.0) allows connecting ot RDP servers that require
TLS authentication or maximum level of encryption for a client to connect.

>From my (users) perspective making a package out of the snapshot of pre-1.0
code could make sense. - At least for sid?

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.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#584105: (no subject)

2011-11-03 Thread Mathieu Roy
reassign 584105 libreoffice-kde
thanks



I no longer use OpenOffice.org but LibreOffice, so I won't followup regarding 
the first one. However, this bug is still reproducible with LibreOffice.

-- 
Mathieu Roy




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



Bug#647499: sqwebmail doesn't start if /etc/courier/calendarmode doesn't exist

2011-11-03 Thread Flavio Stanchina
Package: sqwebmail
Version: 0.65.0-3
Severity: normal

If /etc/courier/calendarmode doesn't exist, then /etc/init.d/sqwebmail fails
to start the webmaild daemon without printing any message.

I edited /etc/init.d/sqwebmail to remove a redirection to /dev/null (which I
highly dislike in init.d scripts, exactly because it may hide useful error
messages) and now I get this error:

  # /etc/init.d/sqwebmail start
  cat: /etc/courier/calendarmode: No such file or directory

I didn't remove that file myself: it gets removed by courierwebadmin if you
select "Calendaring services: Disabled" in the webmail configuration page.

I recommend to add a line like:

  if [ -f /etc/courier/calendarmode ]; then ...

before reading /etc/courier/calendarmode.

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

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

Versions of packages sqwebmail depends on:
ii  apache22.2.16-6+squeeze4 Apache HTTP Server metapackage
ii  apache2-mpm-prefork [h 2.2.16-6+squeeze4 Apache HTTP Server - traditional n
ii  courier-authlib0.63.0-3  Courier authentication library
ii  courier-base   0.65.0-3  Courier mail server - base system
ii  courier-maildrop   0.65.0-3  Courier mail server - mail deliver
ii  courier-mta [mail-tran 0.65.0-3  Courier mail server - ESMTP daemon
ii  cron   3.0pl1-116process scheduling daemon
ii  debconf [debconf-2.0]  1.5.36.1  Debian configuration management sy
ii  expect 5.44.1.15-4   A program that can automate intera
ii  iamerican [ispell-dict 3.1.20.0-7An American English dictionary for
ii  ispell 3.1.20.0-7International Ispell (an interacti
ii  libc6  2.11.2-10 Embedded GNU C Library: Shared lib
ii  libfam02.7.0-17  Client library to control the FAM 
ii  libgdbm3   1.8.3-9   GNU dbm database routines (runtime
ii  libldap-2.4-2  2.4.23-7.2OpenLDAP libraries
ii  libpcre3   8.02-1.1  Perl 5 Compatible Regular Expressi

sqwebmail recommends no packages.

Versions of packages sqwebmail suggests:
pn  courier-doc(no description available)
pn  courier-pcp(no description available)
ii  gnupg 1.4.10-4   GNU privacy guard - a free PGP rep

-- Configuration Files:
/etc/init.d/sqwebmail changed [not included]

-- debconf information:
* sqwebmail/install-www: copy
* sqwebmail/calendarmode: disabled
* sqwebmail/dictionary: default
  sqwebmail/install-www-backup: copy



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



Bug#644649: mudlet: unbuildable on most architectures (build-dependencies not satisfiable)

2011-11-03 Thread Mehdi Dogguy
On  0, Julien Cristau  wrote:
> Package: mudlet
> Version: 2.0-rc11-1
> Severity: serious
> Justification: fails to build from source (but built successfully in the past)
> 
> mudlet now build-depends on libluajit-5.1-dev, which is only available
> on four architectures.  It should either not do that, or the older
> version should get removed from the archive for the other architectures.
> 

FTR, I removed mudlet from testing to get libhunspell-1.2.0 removed.
I should be able to re-migrate once fixed.

Regards,

-- 
Mehdi Dogguy



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



Bug#628680: libgl1-mesa-dri r300g driver bug

2011-11-03 Thread Michel Dänzer

This bug should be reassigned to the libgl1-mesa-dri package. The
underlying problem is that there's currently no mechanism for a Gallium
driver shader compiler error to be propagated to the application.


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



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



Bug#647501: Infinite loop on architectures where char is unsigned by default

2011-11-03 Thread Michel Dänzer
Package: sludge-engine
Version: 2.1.2-3
Severity: important
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


The attached patch fixes an infinite loop on architectures (such as powerpc)
where the char type is unsigned by default (so the test for -1 can never
succeed).


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

Kernel: Linux 3.1.0+
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sludge-engine depends on:
ii  libalure1 1.2-2   
ii  libc6 2.13-21 
ii  libgcc1   1:4.6.2-3   
ii  libgl1-mesa-glx [libgl1]  7.11-6  
ii  libglee0d15.4.0-1 
ii  libglu1-mesa [libglu1]7.11-6  
ii  libogg0   1.2.2~dfsg-1
ii  libopenal11:1.13-4
ii  libpng12-0  
ii  libsdl1.2debian   1.2.14-6.4  
ii  libstdc++64.6.2-3 
ii  libvorbis0a   1.3.2-1 
ii  libvpx0   0.9.7.p1-2  
ii  xdg-utils 1.1.0~rc1-2 

sludge-engine recommends no packages.

Versions of packages sludge-engine suggests:
pn  sludge-devkit  

- -- no debconf information

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

iD8DBQFOsnDSWoGvjmrbsgARAinGAJsHOkP2ayZyQ8ATs1VnM7pezRSwKwCgoDpt
3Y8oCBHb16P0K/MK895GcT8=
=rNnH
-END PGP SIGNATURE-
diff -up -ru sludge-2.1.2.orig/GTK_Dev_Kit/CompilerMain.cpp sludge-2.1.2/GTK_Dev_Kit/CompilerMain.cpp
--- sludge-2.1.2.orig/GTK_Dev_Kit/CompilerMain.cpp	2011-09-26 11:55:33.0 +0200
+++ sludge-2.1.2/GTK_Dev_Kit/CompilerMain.cpp	2011-11-03 10:32:45.0 +0100
@@ -38,7 +38,7 @@ bool parseCmdlineParameters(int argc, ch
 			{0,0,0,0} /* This is a filler for -1 */
 		};
 		int option_index = 0;
-		char c = getopt_long (argc, argv, "h", long_options, &option_index);
+		int c = getopt_long (argc, argv, "h", long_options, &option_index);
 		if (c == -1) break;
 			switch (c) {
 		case 'h':
diff -up -ru sludge-2.1.2.orig/GTK_Dev_Kit/FloorMakerMain.cpp sludge-2.1.2/GTK_Dev_Kit/FloorMakerMain.cpp
--- sludge-2.1.2.orig/GTK_Dev_Kit/FloorMakerMain.cpp	2011-09-26 11:55:33.0 +0200
+++ sludge-2.1.2/GTK_Dev_Kit/FloorMakerMain.cpp	2011-11-03 10:32:55.0 +0100
@@ -242,7 +242,7 @@ bool parseCmdlineParameters(int argc, ch
 			{0,0,0,0} /* This is a filler for -1 */
 		};
 		int option_index = 0;
-		char c = getopt_long (argc, argv, "h", long_options, &option_index);
+		int c = getopt_long (argc, argv, "h", long_options, &option_index);
 		if (c == -1) break;
 			switch (c) {
 		case 'h':
diff -up -ru sludge-2.1.2.orig/GTK_Dev_Kit/ProjectManagerMain.cpp sludge-2.1.2/GTK_Dev_Kit/ProjectManagerMain.cpp
--- sludge-2.1.2.orig/GTK_Dev_Kit/ProjectManagerMain.cpp	2011-09-26 11:55:33.0 +0200
+++ sludge-2.1.2/GTK_Dev_Kit/ProjectManagerMain.cpp	2011-11-03 10:33:04.0 +0100
@@ -226,7 +226,7 @@ bool parseCmdlineParameters(int argc, ch
 			{0,0,0,0} /* This is a filler for -1 */
 		};
 		int option_index = 0;
-		char c = getopt_long(argc, argv, "h", long_options, &option_index);
+		int c = getopt_long(argc, argv, "h", long_options, &option_index);
 		if (c == -1) break;
 			switch (c) {
 		case 'h':
diff -up -ru sludge-2.1.2.orig/GTK_Dev_Kit/SpriteBankEditorMain.cpp sludge-2.1.2/GTK_Dev_Kit/SpriteBankEditorMain.cpp
--- sludge-2.1.2.orig/GTK_Dev_Kit/SpriteBankEditorMain.cpp	2011-09-26 11:55:33.0 +0200
+++ sludge-2.1.2/GTK_Dev_Kit/SpriteBankEditorMain.cpp	2011-11-03 10:33:12.0 +0100
@@ -249,7 +249,7 @@ bool parseCmdlineParameters(int argc, ch
 			{0,0,0,0} /* This is a filler for -1 */
 		};
 		int option_index = 0;
-		char c = getopt_long(argc, argv, "h", long_options, &option_index);
+		int c = getopt_long(argc, argv, "h", long_options, &option_index);
 		if (c == -1) break;
 			switch (c) {
 		case 'h':
diff -up -ru sludge-2.1.2.orig/GTK_Dev_Kit/TranslationEditorMain.cpp sludge-2.1.2/GTK_Dev_Kit/TranslationEditorMain.cpp
--- sludge-2.1.2.orig/GTK_Dev_Kit/TranslationEditorMain.cpp	2011-09-26 11:55:33.0 +0200
+++ sludge-2.1.2/GTK_Dev_Kit/TranslationEditorMain.cpp	2011-11-03 10:33:21.0 +0100
@@ -156,7 +156,7 @@ bool parseCmdlineParameters(int argc, ch
 			{0,0,0,0} /* This is a filler for -1 */
 		};
 		int option_index = 0;
-		char c = getopt_long(argc, argv, "h", long_options, &option_index);
+		int c = getopt_long(argc, argv, "h", long_options, &option_index);
 		if (c == -1) break;
 			switch (c) {
 		case 'h':
diff -up -ru sludge-2.1.2.orig/GTK_Dev_Kit/ZBufferMakerMain.cpp sludge-2.1.2/GTK_Dev_Kit/ZBufferMakerMain.cpp
--- sludge-2.1.2.orig/GTK_Dev_Kit/ZBufferMakerMain.cpp	2011-09-26 11:55:33.0 +0200
+++ sludge-2.1.2/GTK_Dev_Kit/ZBufferMakerMain.cpp	2011-11-03 10:32:03.0 +0100
@@ -179,7 +179,7 @@ bool parseCmdlineParameters(int argc, 

Bug#647502: libnss-ldapd: It would be nice to have nested group support.

2011-11-03 Thread Martijn van Brummelen
Package: libnss-ldapd
Severity: wishlist

Dear Maintainer,
Is it possible to add nested group support?

Regards,
Martijn van Brummelen


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

Kernel: Linux 2.6.32-5-xen-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



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



Bug#647503: wicd-gtk: Wrong Network Name is shown when connecting to another network

2011-11-03 Thread Sebastian Bachmann
Package: wicd-gtk
Version: 1.7.0+ds1-9
Severity: minor

I mostly connect to different networks (e.g. my home network, university, 
another network, ...).
I noticed, that when i connect to another network, the old network name is 
showned while connecting. 

As example: if i use the network "home" before and then connect to 
"university", i get the notification: "home: connecting" and then "university: 
connected". 
So obviously the old network name is still somewhere saved and used.


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

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

Versions of packages wicd-gtk depends on:
ii  python 2.7.2-9
ii  python-glade2  2.24.0-2   
ii  python-gtk22.24.0-2   
ii  wicd-daemon1.7.0+ds1-9

Versions of packages wicd-gtk recommends:
ii  gksu   2.0.2-6  
ii  python-notify  0.1.1-3  
ii  sudo   1.8.3p1-1

wicd-gtk suggests no packages.

Versions of packages wicd depends on:
ii  wicd-daemon  1.7.0+ds1-9

Versions of packages wicd-cli depends on:
ii  wicd-daemon  1.7.0+ds1-9

Versions of packages wicd-cli recommends:
ii  sudo  1.8.3p1-1

Versions of packages wicd-daemon depends on:
ii  adduser 3.113  
ii  dbus1.4.16-1   
ii  debconf [debconf-2.0]   1.5.41 
ii  ethtool 1:3.0-1
ii  iproute 20110629-1 
ii  iputils-ping3:20101006-1+b1
ii  isc-dhcp-client [dhcp3-client]  4.1.1-P1-17
ii  lsb-base3.2-28 
ii  net-tools   1.60-24.1  
ii  psmisc  22.14-1
ii  python  2.7.2-9
ii  python-dbus 0.84.0-2   
ii  python-gobject  2.28.6-5   
ii  python-wicd 1.7.0+ds1-9
ii  wireless-tools  30~pre9-6  
ii  wpasupplicant   0.7.3-5

wicd-daemon recommends no packages.

Versions of packages wicd-daemon suggests:
ii  pm-utils  1.4.1-8

Versions of packages python-wicd depends on:
ii  python 2.7.2-9
ii  python2.6  2.6.7-4
ii  python2.7  2.7.2-7

-- debconf information:
* wicd/users:



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



Bug#638817: gnome-settings-daemon crashes on startup, errors on libnotify

2011-11-03 Thread Michael Biebl
Hi,

could you please test if you can still reproduce the crash with
gnome-settings-daemon from unstable (3.0.3-3).
Please also make sure to upgrade orbit2/liborbit2 (to 1:2.14.19-0.1).

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



signature.asc
Description: OpenPGP digital signature


Bug#638817: gnome-settings-daemon crashes on startup, errors on libnotify

2011-11-03 Thread Alejandro Carrillo

Hello,

I'm sorry for not replying before; I've been mighty busy.

I'll try later this afternoon on my lunch break and get back to you.

Cheers,

~ José

On 11/03/2011 11:49 AM, Michael Biebl wrote:

Hi,

could you please test if you can still reproduce the crash with
gnome-settings-daemon from unstable (3.0.3-3).
Please also make sure to upgrade orbit2/liborbit2 (to 1:2.14.19-0.1).

Thanks,
Michael





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



Bug#647504: xcftools: FTBFS with ld --as-needed

2011-11-03 Thread Felix Geyer
Package: xcftools
Version: 1.0.7-3
Severity: normal
Tags: patch
User: debian-...@lists.debian.org
Usertags: ld-as-needed

*** /tmp/tmp9Tia2b
In Ubuntu, the attached patch from Michael Bienia  was
applied to achieve the following:

Add debian/patches/fix-as-needed-linking:
Move $(LIBS) to the end of the linker call to fix FTBFS with ld --as-needed.


Thanks for considering the patch.
diff -Nru xcftools-1.0.7/debian/patches/fix-as-needed-linking xcftools-1.0.7/debian/patches/fix-as-needed-linking
--- xcftools-1.0.7/debian/patches/fix-as-needed-linking	1970-01-01 01:00:00.0 +0100
+++ xcftools-1.0.7/debian/patches/fix-as-needed-linking	2011-11-03 11:59:45.0 +0100
@@ -0,0 +1,30 @@
+Index: xcftools-1.0.7/Makefile.in
+===
+--- xcftools-1.0.7.orig/Makefile.in	2010-12-05 12:12:02.0 +0100
 xcftools-1.0.7/Makefile.in	2010-12-05 12:12:56.0 +0100
+@@ -71,21 +71,21 @@
+ all: $(BINARIES) $(SCRIPTS) $(MANPAGES) po/stamp manpo/all
+ 
+ xcfinfo$e: xcfinfo.$o $(FILEIO).$o enums.$o xcf-general.$o utils.$o nlsini.$o
+-	$(CC) $(LDFLAGS) $(LIBS) $^ -o $@
++	$(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
+ 
+ xcf2pnm$e: xcf2pnm.$o $(FILEIO).$o enums.$o xcf-general.$o utils.$o nlsini.$o \
+ 	   pixels.$o flatten.$o flatspec.$o scaletab.$o table.$o
+-	$(CC) $(LDFLAGS) $(LIBS) $^ -o $@
++	$(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
+ 
+ xcf2png$e: xcf2png.$o $(FILEIO).$o enums.$o xcf-general.$o utils.$o nlsini.$o \
+ 	   pixels.$o flatten.$o flatspec.$o scaletab.$o table.$o palette.$o
+-	$(CC) $(LDFLAGS) $(LIBS) -lpng $^ -o $@
++	$(CC) $(LDFLAGS) $^ -o $@ $(LIBS) -lpng
+ 
+ xcfview: xcfview.in Makefile
+ 	sed '1s,/usr/bin/perl,@PERL@,' < $< > $@
+ 
+ testscale$e: testscale.$o
+-	$(CC) $(LDFLAGS) $(LIBS) $^ -o $@
++	$(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
+ 
+ install: all
+ 	for p in $(BINARIES) ; do \
diff -Nru xcftools-1.0.7/debian/patches/series xcftools-1.0.7/debian/patches/series
--- xcftools-1.0.7/debian/patches/series	2011-09-20 18:25:17.0 +0200
+++ xcftools-1.0.7/debian/patches/series	2011-11-03 12:00:12.0 +0100
@@ -1,3 +1,4 @@
 use_xdg_for_mime_type_handling
 remove_strip_from_Makefile
 libpng-1.5
+fix-as-needed-linking


Bug#646708: further infos

2011-11-03 Thread Paolo Sala
Errata-corrige of the priviuos mail: I don't know where I have found the
acl_scan plugin; anyway I would like to say "I don't know any plugin
named local_scan".

Furthermore I would like to add that the bug seems affect only new fresh
installations of lenny or squeeze. PCs installed with a debian release
previous lenny doesn't seems to be affected even if they are upgraded to
lenny or squeeze.
Have a nice day

Piviul




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



Bug#647503: wicd-gtk: Wrong Network Name is shown when connecting to another network

2011-11-03 Thread David Paleino
tags 647503 confirmed upstream
thanks

On Thu, 03 Nov 2011 11:51:31 +0100, Sebastian Bachmann wrote:

> I mostly connect to different networks (e.g. my home network, university,
> another network, ...). I noticed, that when i connect to another network, the
> old network name is showned while connecting. 
> 
> As example: if i use the network "home" before and then connect to
> "university", i get the notification: "home: connecting" and then
> "university: connected". So obviously the old network name is still somewhere
> saved and used.

This is a known bug, already filed several times. :)

For instance, see #535507 (I remember several other bugs filed about this
problem, but can't find them right now).

I'm going to release 1.7.1 soon, can't tell whether it's fixed there or not (I
only have one wifi network here, so I can't "test" this behaviour). So please
wait for the new package to come out: if the bug still exists, I'll investigate
it further :)

Thanks,
David

-- 
 . ''`.   Debian developer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://deb.li/dapal
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Bug#647505: ITP: tcp-over-dns -- TCP tunnel through the standard DNS protocol

2011-11-03 Thread Wolfgang Frisch
Package: wnpp
Severity: wishlist
Owner: Wolfgang Frisch 

* Package name: tcp-over-dns
  Version : 1.3
  Upstream Author : Tim Valenzuela
* URL : http://analogbit.com/software/tcp-over-dns
* License : BSD
  Programming Lang: Java
  Description : TCP tunnel through the standard DNS protocol

tcp-over-dns contains a special dns server and a special dns client. The
client and server work in tandem to provide a TCP (and UDP!) tunnel
through the standard DNS protocol.

This is similiar to the defunct NSTX dns tunelling software. The purpose
of this software to is succeed where NSTX failed. For me at least, all
NSTX tunnels disconnect within tens of seconds in real world situations.
tcp-over-dns was written to be quite robust while at the same time
providing acceptable bandwidth speeds.



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



Bug#645166: links2: grave error in patch for ipv6

2011-11-03 Thread Mats Erik Andersson
I did a quick review of the IPv6 patch as presented by PTS.
There is a grave misconception in the modification of
"links2/default.c":

  A single character variable is allocated, yet it is
  used in storing and printing strings:

char addr;

unsigned char *p = (...) &addr;

do_real_lookup(*(*argv -1), &addr)   /* Inside conditional statement */

printf("%s\n", addr);  /* [sic!] char used as pointer */

Observing that this latter statement is replacing the old call

printf("%d.%d.%d.%d\n", p[0], p[1], p[2], p[3]);

it is fairly obvious that the code is playing games with IPv4 addresses.


Best 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#647506: libapache2-mod-perl2: Apache child crash: global PerlOptions -Enable and .htaccess PerlModule directive

2011-11-03 Thread Jan Ingvoldstad
Package: libapache2-mod-perl2
Version: 2.0.4-7
Severity: important

Note: All log excerpts below have been edited to censor server and path 
information, but are not tampered with in other ways.

This problem is effectively keeping me from deploying mod_perl in a virtual 
hosting environment with real users.

I have a web server configured with PerlOptions -Enable set in a config file in 
/etc/apache2/conf.d, which is loaded before any virtualhosts.

If I then attempt to load a Perl module with the PerlModule directive, e.g.:

PerlModule DateTime

... then the handling Apache child process crashes with a segfault (see log 
excerpts at the end of the manual part of the report).

According to the mod_perl documentation, PerlModule directives are not allowed 
in .htaccess files.

Erroneous user .htaccess configurations should not crash the handling Apache 
child.

If I uncomment "PerlOptions -Enable" globally, web pages still don't load 
properly, connections get interrupted, but the error log and syslog show no 
signs of segfaults.

I occasionally get messages like these, though:

[Thu Nov 03 11:42:06 2011] [alert] [client CENSORED_IP] 
/path/to/virtualhost/home/.htaccess: Cannot copy to ARRAY in entereval at (eval 
910) line 1.\n, referer: http://virtualhost.example/path/to/virtualhost/home/

The problems are reproducible also when I comment out my custom configuration.

I don't have a patch for this one yet, I don't quite know where to start. :)

Apache's error log:

[Thu Nov 03 11:31:57 2011] [notice] child pid 18784 exit signal Segmentation 
fault (11)
[Thu Nov 03 11:31:59 2011] [notice] child pid 18957 exit signal Segmentation 
fault (11)
[Thu Nov 03 11:32:01 2011] [notice] child pid 19088 exit signal Segmentation 
fault (11)
[Thu Nov 03 11:32:03 2011] [notice] child pid 19219 exit signal Segmentation 
fault (11)

/var/log/syslog:

Nov  3 11:31:49 CENSORED_HOST kernel: [4473180.753243] apache2[18659]: segfault 
at 10 ip 7fa5db2fafdc sp 7fa5d6918760 error 4 in 
libperl.so.5.10.1[7fa5db238000+165000]
Nov  3 11:31:56 CENSORED_HOST kernel: [4473187.843383] apache2[18798]: segfault 
at 7fa7cfc127d0 ip 7fa5db3146a9 sp 7fa5d2910780 error 6 in 
libperl.so.5.10.1[7fa5db238000+165000]
Nov  3 11:32:02 CENSORED_HOST kernel: [4473193.762818] apache2[19229]: segfault 
at 10 ip 7fa5db2fafdc sp 7fa5d4914760 error 4 in 
libperl.so.5.10.1[7fa5db238000+165000]


-- Package-specific info:
-8<-- Start Bug Report 8<--
1. Problem Description:

  [DESCRIBE THE PROBLEM HERE]

2. Used Components and their Configuration:

*** mod_perl version 2.04

*** using /usr/lib/perl5/Apache2/BuildConfig.pm

*** Makefile.PL options:
  MP_APR_LIB => aprext
  MP_APXS=> /usr/bin/apxs2
  MP_CCOPTS  => -g -Wall
  MP_COMPAT_1X   => 1
  MP_GENERATE_XS => 1
  MP_INCLUDE_DIR => /usr/include/apache2 /usr/include/apr-1.0
  MP_LIBNAME => mod_perl
  MP_TRACE   => 0
  MP_USE_DSO => 1
  MP_USE_GTOP=> 1
  MP_USE_STATIC  => 0


*** The httpd binary was not found


*** (apr|apu)-config linking info

 -L/usr/lib -laprutil-1  -ldb 
 -L/usr/lib -lapr-1  



*** /usr/bin/perl -V
Summary of my perl5 (revision 5 version 10 subversion 1) configuration:
   
  Platform:
osname=linux, osvers=2.6.32-5-amd64, archname=x86_64-linux-gnu-thread-multi
uname='linux brahms 2.6.32-5-amd64 #1 smp tue jun 14 09:42:28 utc 2011 
x86_64 gnulinux '
config_args='-Dusethreads -Duselargefiles -Dccflags=-DDEBIAN 
-Dcccdlflags=-fPIC -Darchname=x86_64-linux-gnu -Dprefix=/usr 
-Dprivlib=/usr/share/perl/5.10 -Darchlib=/usr/lib/perl/5.10 -Dvendorprefix=/usr 
-Dvendorlib=/usr/share/perl5 -Dvendorarch=/usr/lib/perl5 
-Dsiteprefix=/usr/local -Dsitelib=/usr/local/share/perl/5.10.1 
-Dsitearch=/usr/local/lib/perl/5.10.1 -Dman1dir=/usr/share/man/man1 
-Dman3dir=/usr/share/man/man3 -Dsiteman1dir=/usr/local/man/man1 
-Dsiteman3dir=/usr/local/man/man3 -Dman1ext=1 -Dman3ext=3perl 
-Dpager=/usr/bin/sensible-pager -Uafs -Ud_csh -Ud_ualarm -Uusesfio -Uusenm 
-DDEBUGGING=-g -Doptimize=-O2 -Duseshrplib -Dlibperl=libperl.so.5.10.1 
-Dd_dosuid -des'
hint=recommended, useposix=true, d_sigaction=define
useithreads=define, usemultiplicity=define
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
  Compiler:
cc='cc', ccflags ='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-strict-aliasing 
-pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64',
optimize='-O2 -g',
cppflags='-D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-strict-aliasing -pipe 
-fstack-protector -I/usr/local/include'
ccversion='', gccversion='4.4.5', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t

Bug#647505: ITP: tcp-over-dns -- TCP tunnel through the standard DNS protocol

2011-11-03 Thread Timo Juhani Lindfors
Wolfgang Frisch  writes:
> This is similiar to the defunct NSTX dns tunelling software. The purpose
> of this software to is succeed where NSTX failed. For me at least, all
> NSTX tunnels disconnect within tens of seconds in real world situations.
> tcp-over-dns was written to be quite robust while at the same time
> providing acceptable bandwidth speeds.

Hmm, is there a bug report about this? It'd be nice if we had one robust
solution instead of multiple solutions with different bugs...





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



Bug#647507: pd-zexy: missing files in package

2011-11-03 Thread Paolo D'Apice
Package: pd-zexy
Version: 2.2.3-2
Severity: important

Dear Maintainer,

after installing the package I noticed that some patches
cannot be loaded in puredata because the corresponding
.pd file is not present.

For instance, the demux.pd is not present while its help file
demux-help.pd is present. Manually loading the demux-help.pd
it is clear that the demux object cannot be loaded (it appears
with a dashed frame line and the message: 
   "demux ... couldn't create" 
appears in the pd console.

I also checked that the same happens for many others patches.
Please refer to the package file list obtained with:
   $ dpkg -L pd-zexy
or check on the debian packages site:
   http://packages.debian.org/sid/i386/pd-zexy/filelist

Moreover, I cannot build the package from sources due to #643454



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

Kernel: Linux 3.0.0-2-486
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 pd-zexy depends on:
ii  libc6 2.13-21 
ii  puredata  0.43.0-4

pd-zexy recommends no packages.

pd-zexy 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#645166: links2: grave error in patch for ipv6

2011-11-03 Thread Axel Beckert
Hi Mats!

Mats Erik Andersson wrote:
> I did a quick review of the IPv6 patch as presented by PTS.
> There is a grave misconception in the modification of
> "links2/default.c":
> 
>   A single character variable is allocated, yet it is
>   used in storing and printing strings:
> 
> char addr;
> 
> unsigned char *p = (...) &addr;
> 
> do_real_lookup(*(*argv -1), &addr)   /* Inside conditional statement */
> 
> printf("%s\n", addr);  /* [sic!] char used as pointer */
> 
> Observing that this latter statement is replacing the old call
> 
> printf("%d.%d.%d.%d\n", p[0], p[1], p[2], p[3]);

Thanks a lot for that pointer! (sic! :-)

> it is fairly obvious that the code is playing games with IPv4 addresses.

Well, I looked for such an issue several times and did not see it.

I'm on holidays next week and hope to find time to tackle this issue.
(Patches for the patch are of course welcome anyway. :-)

Regards, Axel
-- 
 ,''`.  |  Axel Beckert , 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#647505: ITP: tcp-over-dns -- TCP tunnel through the standard DNS protocol

2011-11-03 Thread martin f krafft
also sprach Wolfgang Frisch  [2011.11.03.1213 +0100]:
> This is similiar to the defunct NSTX dns tunelling software. The purpose
> of this software to is succeed where NSTX failed. For me at least, all
> NSTX tunnels disconnect within tens of seconds in real world situations.
> tcp-over-dns was written to be quite robust while at the same time
> providing acceptable bandwidth speeds.

How does it compare to iodine, which works very well, and which
provides IP-over-DNS, rather than just a transport-layer protocol.

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#646815: dnshistory: Source in inable to handle IPv6.

2011-11-03 Thread Mats Erik Andersson
The reason for this failure is that the source is relying on

   /* dnshistory-1.3/src/dnshistory.c */

   int name_lookup(struct in_addr ipaddr, char *host_name) {

  struct sockaddr_in sa;

   }

The use of "struct in_addr" and "struct sockaddr_in" prevents
every hope of supporting IPv6 without substatial patching.

Best 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#647507: pd-zexy: missing files in package

2011-11-03 Thread Paolo D'Apice
I am deeply sorry, this is not a bug.

After RTFM I noticed that I forgot to load the zexy library to pd.
Please delete/reject this bug report.




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



Bug#647508: FTBFS on GNU/kFreeBSD

2011-11-03 Thread Robert Millan
Package: libv4l-dev
Version: 0.8.5-5
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd

This patch fixes FTBFS on GNU/kFreeBSD for libv4l.  Unfortunately not all
of this package is meant to be usable on non-Linux, my patch only enables
the libraries, which already had basic support for FreeBSD in upstream.

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

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
=== modified file 'debian/control'
--- debian/control	2011-11-03 11:11:32 +
+++ debian/control	2011-11-03 11:55:04 +
@@ -7,7 +7,7 @@ Uploaders: Martin Pitt = 8.1.3),
libjpeg-dev,
-   libqt4-dev,
+   libqt4-dev [linux-any],
gcc-multilib [amd64]
 Standards-Version: 3.9.2
 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/libv4l.git
@@ -16,7 +16,7 @@ Homepage: http://linuxtv.org/downloads/v
 
 Package: libv4l-0
 Section: libs
-Architecture: linux-any
+Architecture: linux-any kfreebsd-any
 Depends: libv4lconvert0 (= ${binary:Version}),
  ${shlibs:Depends},
  ${misc:Depends}
@@ -40,7 +40,7 @@ Description: Collection of video4linux s
 
 Package: libv4lconvert0
 Section: libs
-Architecture: linux-any
+Architecture: linux-any kfreebsd-any
 Depends: ${shlibs:Depends},
  ${misc:Depends}
 Pre-Depends: ${misc:Pre-Depends}
@@ -55,7 +55,7 @@ Description: Video4linux frame format co
 
 Package: libv4l-dev
 Section: libdevel
-Architecture: linux-any
+Architecture: linux-any kfreebsd-any
 Depends: libv4l-0 (= ${binary:Version}),
  libv4lconvert0 (= ${binary:Version}),
  ${shlibs:Depends},

=== added file 'debian/patches/kfreebsd.diff'
--- debian/patches/kfreebsd.diff	1970-01-01 00:00:00 +
+++ debian/patches/kfreebsd.diff	2011-11-03 11:51:50 +
@@ -0,0 +1,89 @@
+--- a/include/linux/videodev2.h
 b/include/linux/videodev2.h
+@@ -61,9 +61,27 @@
+ #else
+ #include 
+ #endif
++#include 
++
++#ifdef __linux__
+ #include 
+-#include 
+ #include 
++#else
++#include 
++typedef int8_t __s8;
++typedef int16_t __s16;
++typedef int32_t __s32;
++typedef int64_t __s64;
++typedef uint8_t __u8;
++typedef uint16_t __u16;
++typedef uint32_t __u32;
++typedef uint64_t __u64;
++typedef uint8_t __u8;
++typedef uint16_t __le16;
++typedef uint32_t __le32;
++typedef uint64_t __le64;
++#define __user
++#endif
+ 
+ /*
+  * Common stuff for both V4L1 and V4L2
+--- a/lib/include/libv4l1-videodev.h
 b/lib/include/libv4l1-videodev.h
+@@ -2,7 +2,7 @@
+ #ifndef __LINUX_VIDEODEV_H
+ #define __LINUX_VIDEODEV_H
+ 
+-#include 
++#include 
+ #include 
+ 
+ #define VID_TYPE_CAPTURE	1	/* Can capture */
+--- a/lib/include/libv4lconvert.h
 b/lib/include/libv4lconvert.h
+@@ -28,7 +28,7 @@
+ #include 
+ #endif
+ 
+-#ifdef __FreeBSD__
++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ #include 
+ #include 
+ #include 
+--- a/lib/libv4lconvert/libv4lsyscall-priv.h
 b/lib/libv4lconvert/libv4lsyscall-priv.h
+@@ -49,7 +49,7 @@
+ #endif
+ #endif
+ 
+-#ifdef __FreeBSD__
++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ #include 
+ #include 
+ #include 
+@@ -83,9 +83,9 @@
+ #define SYS_WRITE(fd, buf, len) \
+ 	syscall(SYS_write, (int)(fd), (void *)(buf), (size_t)(len));
+ 
+-#ifdef __FreeBSD__
++#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ #define SYS_MMAP(addr, len, prot, flags, fd, off) \
+-	__syscall(SYS_mmap, (void *)(addr), (size_t)(len), \
++	syscall(SYS_mmap, (void *)(addr), (size_t)(len), \
+ 			(int)(prot), (int)(flags), (int)(fd), (__off_t)(off))
+ #else
+ #define SYS_MMAP(addr, len, prot, flags, fd, off) \
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,10 @@
++UNAME = $(uname -s)
++
+ all install:
+ 	$(MAKE) -C lib $@
++ifeq ($(UNAME), Linux)
+ 	$(MAKE) -C utils $@
++endif
+ 
+ sync-with-kernel:
+ 	@if [ ! -f $(KERNEL_DIR)/include/linux/videodev2.h -o \

=== modified file 'debian/patches/series'
--- debian/patches/series	2011-11-03 11:11:32 +
+++ debian/patches/series	2011-11-03 11:39:41 +
@@ -8,3 +8,4 @@ update_upside_down_table-5.diff
 update_upside_down_table-6.diff
 separate_libsubdir_for_v4lconvert.diff
 fix_spelling_error.diff
+kfreebsd.diff

=== modified file 'debian/rules'
--- debian/rules	2011-11-03 11:11:32 +
+++ debian/rules	2011-11-03 11:53:49 +
@@ -9,6 +9,7 @@ V4L_COMMON_FLAGS = PREFIX=/usr DESTDIR=$
 # else
 
 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
+DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
 DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
 V4L_COMMON_FLAGS += CPPFLAGS+="$(shell dpkg-buildflags --get CPPFLAGS)"
 V4L_COMMON_FLAGS += CFLAGS+="$(shell dpkg-buildflags --get CFLAGS)"
@@ -38,9 +39,11 @@ build-stamp:
 	# build shared libs and install
 	$(MAKE) $(V4L_NATIVE_FLAGS)
 	$(MA

Bug#563352: Upstream won't change

2011-11-03 Thread Hendrik Sattler

Hi,

I also don't think that Konsole should be patched. Instead clarify in 
the policy what a "command" actually is. Saying "everything that works 
with xterm" is too broad (and too broken).


Let's look at the one from the KDE bug report:
konsole -e "cd src && make"

This is not a command, it's a line to be interpreted e.g. by a shell. 
That's not the same but often confused: "cd" is a command and "make" is 
another but the above is not. The suggestion in the KDE bug report is 
indeed the solution:

konsole -e /bin/sh -c "cd src && make"

as that fits any definition of command (/bin/sh) and arguments (the 
other arguments) and fully complies to policy.
How is konsole supposed to see that this is to be interpreted by 
/bin/sh and not by python or perl? Just because xterm does something 
funky and blindly assumes a standard shell? That contradicts policy 
11.8.3 _directly_:
"[...]runs the specified command, interpreting the entirety of the rest 
of the command line as a command to pass straight to exec[...]"


xterm obviously does NOT do this!
And policy is not everything. Having a consistent behaviour of konsole 
on Debian and non-Debian system is far more important.


HS

BTW: the example from the KDE bug report is rather stupid, using "cd 
src && konsole -e make" seems smarter, no? And that even works :-O





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



Bug#647508: FTBFS on GNU/kFreeBSD

2011-11-03 Thread Robert Millan
2011/11/3 Gregor Jasny :
> Hello,
>
> the patch looks good. I'll add it to v0.8.6 (will be released this week).

Excellent! Thanks for the quick response.

Btw, would be nice if you could send the relevant part to upstream.

-- 
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#647508: FTBFS on GNU/kFreeBSD

2011-11-03 Thread Gregor Jasny

On 11/3/11 1:29 PM, Robert Millan wrote:

2011/11/3 Gregor Jasny:

Hello,

the patch looks good. I'll add it to v0.8.6 (will be released this week).


Excellent! Thanks for the quick response.

Btw, would be nice if you could send the relevant part to upstream.


I'll do after the upload. BTW: What's the reason for this hunk:


@@ -38,9 +39,11 @@ build-stamp:
# build shared libs and install
$(MAKE) $(V4L_NATIVE_FLAGS)
$(MAKE) $(V4L_NATIVE_FLAGS) install
+ifeq ($(DEB_HOST_ARCH_OS), linux)
# prefix filenames with /lib/udev/rc_keymaps
mv $(CURDIR)/debian/tmp/etc/rc_maps.cfg 
$(CURDIR)/debian/tmp/etc/rc_maps.cfg.orig
sed -e 
's,^\([^#][[:graph:]]*[[:space:]]\+[[:graph:]]\+[[:space:]]\+\)\([[:graph:]]\+.*\),\1/lib/udev/rc_keymaps/\2,'
 -e 
's,^\(#[[:space:]]\+\*[[:space:]]\+\*[[:space:]]\+\)\([[:alnum:]].*\),\1/lib/udev/rc_keymaps/\2,'
 < $(CURDIR)/debian/tmp/etc/rc_maps.cfg.orig > 
$(CURDIR)/debian/tmp/etc/rc_maps.cfg
+endif
 ifeq ($(DEB_HOST_ARCH), amd64)
# clean object files
$(MAKE) clean



-Gregor



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



Bug#647509: iceweasel: Tabs are not saved when closing browser

2011-11-03 Thread jors
Package: iceweasel
Version: 7.0.1-4
Severity: important

With the proper option enabled (setting browser.showQuitWarning to True) on the
about:config browser's page, tabs are not saved/restored when closing the
browser.

The "Save tabs" dialog pops up before quitting the browser, but once the
browser is rerun again, nothing is restored.



-- Package-specific info:


-- Addons package information

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

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

Versions of packages iceweasel depends on:
ii  debianutils 4.0.4 
ii  fontconfig  2.8.0-3   
ii  libc6   2.13-21   
ii  libgdk-pixbuf2.0-0  2.24.0-1  
ii  libglib2.0-02.28.6-1  
ii  libgtk2.0-0 2.24.6-2  
ii  libnspr4-0d 4.8.9-1   
ii  libstdc++6  4.6.1-15  
ii  procps  1:3.2.8-11
ii  xulrunner-7.0   7.0.1-4   

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  latex-xft-fonts 1.6.7-1
ii  libgssapi-krb5-21.9.1+dfsg-1+b1
ii  libkrb531.9.1+dfsg-1   
ii  mozplugger   
ii  ttf-lyx 2.0.1-1
ii  ttf-mathematica4.1   
ii  xfonts-mathml   4  

Versions of packages xulrunner-7.0 depends on:
ii  libasound21.0.24.1-4  
ii  libatk1.0-0   2.2.0-2 
ii  libbz2-1.01.0.5-7 
ii  libc6 2.13-21 
ii  libcairo2 1.10.2-6.1  
ii  libdbus-1-3   1.4.16-1
ii  libevent-1.4-21.4.14b-stable-1
ii  libfontconfig12.8.0-3 
ii  libfreetype6  2.4.6-2 
ii  libgcc1   1:4.6.1-15  
ii  libgdk-pixbuf2.0-02.24.0-1
ii  libglib2.0-0  2.28.6-1
ii  libgtk2.0-0   2.24.6-2
ii  libhunspell-1.3-0 1.3.2-4 
ii  libjpeg8  8c-2
ii  libmozjs7d7.0.1-4 
ii  libnotify40.7.4-1 
ii  libnspr4-0d   4.8.9-1 
ii  libnss3-1d3.12.11-3   
ii  libpango1.0-0 1.29.4-1
ii  libpixman-1-0 0.22.2-1
ii  libreadline6  6.2-7   
ii  libsqlite3-0  3.7.7-2 
ii  libstartup-notification0  0.12-1  
ii  libstdc++64.6.1-15
ii  libvpx0   0.9.7.p1-2  
ii  libx11-6  2:1.4.4-2   
ii  libxext6  2:1.3.0-3   
ii  libxrender1   1:0.9.6-2   
ii  libxt61:1.1.1-2   
ii  zlib1g1:1.2.3.4.dfsg-3

Versions of packages xulrunner-7.0 suggests:
ii  libcanberra0  0.28-3  
ii  libdbus-glib-1-2  0.98-1  
ii  libgnomeui-0  2.24.5-2

-- 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#647508: FTBFS on GNU/kFreeBSD

2011-11-03 Thread Gregor Jasny

Hello,

the patch looks good. I'll add it to v0.8.6 (will be released this week).

Thanks,
Gregor



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



Bug#647498: freerdp: Consider packaging git snapshot?

2011-11-03 Thread Otavio Salvador
On Thu, Nov 3, 2011 at 08:25, Mathieu Simon  wrote:
> FreeRDP has made considerable progress and only the latest FreeRDP in the
> upstream master branch (pre 1.0) allows connecting ot RDP servers that require
> TLS authentication or maximum level of encryption for a client to connect.
>
> >From my (users) perspective making a package out of the snapshot of pre-1.0
> code could make sense. - At least for sid?

As explained on IRC I'd be OK in getting it into experimental for now
as we expect ABI and API changes until we get final 1.0 release.

I am quite busy to work on that so if you're able to help with doing
the packaging changes Daniel or I can review and upload it to
experimental for you.

-- 
Otavio Salvador                             O.S. Systems
E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br



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



Bug#647159: plasma-widget-veromix: Veromix doesn't work after updating python-qt4 to 4.8.6

2011-11-03 Thread denk
You can close this bug! pykde4 needed a rebuild, veromix works again!

Regards
denk



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



Bug#641716: A logo for xsol

2011-11-03 Thread Simó
Hi,

I made the attached icon (in .svg) for xsol.
Feel free to use it, as it is licensed under
a Creative Commons Attribution-ShareAlike
3.0 Unported License.

I hope you like it!

<>

Bug#647505: ITP: tcp-over-dns -- TCP tunnel through the standard DNS protocol

2011-11-03 Thread Lucas Nussbaum
On 03/11/11 at 12:13 +0100, Wolfgang Frisch wrote:
> Package: wnpp
> Severity: wishlist
> Owner: Wolfgang Frisch 
> 
> * Package name: tcp-over-dns
>   Version : 1.3
>   Upstream Author : Tim Valenzuela
> * URL : http://analogbit.com/software/tcp-over-dns
> * License : BSD
>   Programming Lang: Java
>   Description : TCP tunnel through the standard DNS protocol
> 
> tcp-over-dns contains a special dns server and a special dns client. The
> client and server work in tandem to provide a TCP (and UDP!) tunnel
> through the standard DNS protocol.
> 
> This is similiar to the defunct NSTX dns tunelling software. The purpose
> of this software to is succeed where NSTX failed. For me at least, all
> NSTX tunnels disconnect within tens of seconds in real world situations.
> tcp-over-dns was written to be quite robust while at the same time
> providing acceptable bandwidth speeds.

How does it compare with iodine?

Lucas



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



Bug#638312: Hibernate: spontaneous reboot during resume, apparently just after loading the memory image (SLEEP_MODULE=uswsusp or kernel in pm conf).

2011-11-03 Thread Nicolas FRANÇOIS
Hi,
Freedesktop bug is now closed, and latest unstable kernel seems to no
longer have the problem (at least for me).

I think we can close this.

Cheers,
NicolaF



signature.asc
Description: OpenPGP digital signature


Bug#647510: PTS: description of binary packages is missing in tooltips

2011-11-03 Thread Mehdi Dogguy
Package: qa.debian.org
Severity: normal

Hi.

The PTS used to show show description of binary packages when the
mouse hovers over a binary package's name. This is no longer the case
since a few days now. Instead, the tooltip shows only the name of
binary package.

This is visible on Ara's PTS page [1] for example. Putting mouse
pointer over "ara" in "binaries" box shows "ara: " only, instead of
"ara: Command line utility for searching the Debian package database".

[1] http://packages.qa.debian.org/a/ara.html

Regards,

-- 
Mehdi


-- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'proposed-updates')
Architecture: i386 (x86_64)

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



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



Bug#647511: gnome-system-tools: No French translation after upgrade

2011-11-03 Thread nodiscc
Package: gnome-system-tools
Version: 3.0.0-1
Severity: important
Tags: l10n

Dear Maintainer,

Since the 3.0.0-1 update in wheezy, the tools from gnome-system-tools are no 
longer translated to french.
This concerns services-admin, network-admin and users-admin. *Only* the 
.desktop launcher is available in French. All the rest (buttons, services 
descriptions...) are in plain english.


I don't know about other languages, but this could really harm usability of 
these tools by non-english speaking users.
Please update the package accordingly.

Thank you !

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

Kernel: Linux 3.0.0-1-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 gnome-system-tools depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.7.5-3   
ii  libatk1.0-0  2.2.0-2   
ii  libc62.13-21   
ii  libcairo-gobject21.10.2-6.1
ii  libcairo21.10.2-6.1
ii  libdbus-1-3  1.4.16-1  
ii  libfontconfig1   2.8.0-3   
ii  libfreetype6 2.4.6-2   
ii  libgdk-pixbuf2.0-0   2.24.0-1  
ii  libglib2.0-0 2.28.6-1  
ii  libgtk-3-0   3.0.12-2  
ii  liboobs-1-5  3.0.0-1   
ii  libpango1.0-01.29.4-1  
ii  libpolkit-gobject-1-00.102-1   
ii  perl 5.12.4-6  
ii  policykit-1-gnome0.102-2   
ii  system-tools-backends2.10.2-1  

Versions of packages gnome-system-tools recommends:
ii  gnome-control-center  1:2.30.1-3

Versions of packages gnome-system-tools suggests:
ii  ntp  1:4.2.6.p3+dfsg-1

-- 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#647512: wmmoonclock: FTBFS with ld --as-needed

2011-11-03 Thread Felix Geyer
Package: wmmoonclock
Version: 1.27-29
Severity: normal
Tags: patch
User: debian-...@lists.debian.org
Usertags: ld-as-needed

*** /tmp/tmpfsEPDQ
In Ubuntu, the attached patch from Michael Bienia  was
applied to achieve the following:

Fix linking with ld --as-needed by moving -lm to the LIBS variable.


Thanks for considering the patch.
diff -Nru wmmoonclock-1.27/debian/patches/05_fix-as-needed-linking.diff wmmoonclock-1.27/debian/patches/05_fix-as-needed-linking.diff
--- wmmoonclock-1.27/debian/patches/05_fix-as-needed-linking.diff	1970-01-01 01:00:00.0 +0100
+++ wmmoonclock-1.27/debian/patches/05_fix-as-needed-linking.diff	2010-12-06 11:04:35.0 +0100
@@ -0,0 +1,26 @@
+Index: wmmoonclock-1.27/Src/Makefile
+===
+--- wmmoonclock-1.27.orig/Src/Makefile	2010-12-06 11:03:58.0 +0100
 wmmoonclock-1.27/Src/Makefile	2010-12-06 11:04:30.0 +0100
+@@ -5,10 +5,10 @@
+ LIBDIR = -L/usr/X11R6/lib
+ 
+ # for Linux
+-LIBS   = -lXpm -lX11 -lXext
++LIBS   = -lXpm -lX11 -lXext -lm
+ 
+ # for Solaris
+-# LIBS   = -lXpm -lX11 -lXext -lsocket
++# LIBS   = -lXpm -lX11 -lXext -lm -lsocket
+ 
+ OBJS   = wmMoonClock.o CalcEphem.o Moon.o MoonRise.o \
+  xutils.o
+@@ -22,7 +22,7 @@
+ 
+ wmMoonClock.o: wmMoonClock_master.xpm wmMoonClock_mask.xbm CalcEphem.h
+ wmMoonClock:	$(OBJS) 
+-	$(CC) $(CFLAGS) $(SYSTEM) -lm -o wmMoonClock $^ $(INCDIR) $(LIBDIR) $(LIBS)
++	$(CC) $(CFLAGS) $(SYSTEM) -o wmMoonClock $^ $(INCDIR) $(LIBDIR) $(LIBS)
+ 
+ clean:
+ 	for i in $(OBJS) ; do \
diff -Nru wmmoonclock-1.27/debian/patches/series wmmoonclock-1.27/debian/patches/series
--- wmmoonclock-1.27/debian/patches/series	2009-07-26 01:15:43.0 +0200
+++ wmmoonclock-1.27/debian/patches/series	2010-12-06 11:03:42.0 +0100
@@ -2,3 +2,4 @@
 02_update_time.diff
 03_add_southern_hemisphere_support.diff
 04_fix_hyphen_used_as_minus_sign.diff
+05_fix-as-needed-linking.diff


Bug#647509: iceweasel: Tabs are not saved when closing browser

2011-11-03 Thread Mike Hommey
On Thu, Nov 03, 2011 at 01:34:46PM +0100, jors wrote:
> Package: iceweasel
> Version: 7.0.1-4
> Severity: important
> 
> With the proper option enabled (setting browser.showQuitWarning to True) on 
> the
> about:config browser's page, tabs are not saved/restored when closing the
> browser.
> 
> The "Save tabs" dialog pops up before quitting the browser, but once the
> browser is rerun again, nothing is restored.

What does the "When iceweasel starts" preference say in
Preferences>General?

Mike



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



Bug#628680: libgl1-mesa-dri r300g driver bug

2011-11-03 Thread Tobias Hansen
reassign 628680 libgl1-mesa-dri
thanks

I see you are part of the Debian X Strike Force. It's yours. :)

Am 03.11.2011 11:42, schrieb Michel Dänzer:
> 
> This bug should be reassigned to the libgl1-mesa-dri package. The
> underlying problem is that there's currently no mechanism for a Gallium
> driver shader compiler error to be propagated to the application.
> 
> 




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



Bug#647509: iceweasel: Tabs are not saved when closing browser

2011-11-03 Thread jors
El jue, 03-11-2011 a las 14:35 +0100, Mike Hommey escribió:
> On Thu, Nov 03, 2011 at 01:34:46PM +0100, jors wrote:
> > Package: iceweasel
> > Version: 7.0.1-4
> > Severity: important
> > 
> > With the proper option enabled (setting browser.showQuitWarning to True) on 
> > the
> > about:config browser's page, tabs are not saved/restored when closing the
> > browser.
> > 
> > The "Save tabs" dialog pops up before quitting the browser, but once the
> > browser is rerun again, nothing is restored.
> 
> What does the "When iceweasel starts" preference say in
> Preferences>General?

It was on "Show start page" (my fault!), but even if I have restored
back the browser.showQuitWarning value to false and selected "Show
windows and tabs from last session", quitting the browser and reruning
it again only shows up the start page (no windows nor tabs).

Maybe I am missing some other setting? If so, I am sorry.

> Mike





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



Bug#647513: linux-image-3.0.0-1-amd64: kernel error when I plug iphone with IOS5 firmware and Tethering

2011-11-03 Thread darx
Package: linux-2.6
Version: 3.0.0-3
Severity: important
Tags: upstream

Hi,

After IOS5 update on my iphone when I plug it on my Debian, it crashes. As I'm
using it as a modem it's quite problematic.


Nov  3 14:16:51 thib kernel: [  371.824017] [ cut here
]
Nov  3 14:16:51 thib kernel: [  371.824024] WARNING: at /build/buildd-
linux-2.6_3.0.0-3-amd64-9ClimQ/linux-2.6-3.0.0/debian/build/source_amd64_none/net/sched/sch_generic.c:255
dev_watchdog+0xe9/0x148()
Nov  3 14:16:51 thib kernel: [  371.824027] Hardware name: OptiPlex 780
Nov  3 14:16:51 thib kernel: [  371.824029] NETDEV WATCHDOG: eth1 (ipheth):
transmit queue 0 timed out
Nov  3 14:16:51 thib kernel: [  371.824031] Modules linked in: ipheth
acpi_cpufreq mperf cpufreq_conservative cpufreq_powersave cpufreq_stats
cpufreq_userspace parport_pc ppdev lp parport pci_stub vboxpci(O) vboxnetadp(O)
vboxnetflt(O) vboxdrv(O) fuse nfsd nfs lockd fscache auth_rpcgss nfs_acl sunrpc
ext2 coretemp loop joydev snd_hda_codec_analog nouveau evdev dell_wmi
sparse_keymap ttm drm_kms_helper drm snd_hda_intel snd_hda_codec i2c_algo_bit
mxm_wmi video snd_hwdep snd_pcm psmouse serio_raw wmi snd_seq snd_timer
snd_seq_device button i2c_i801 i2c_core snd soundcore snd_page_alloc dcdbas
processor thermal_sys ext3 jbd mbcache usbhid hid dm_mod sg sd_mod sr_mod
crc_t10dif cdrom uhci_hcd ahci libahci libata scsi_mod ehci_hcd e1000e usbcore
[last unloaded: scsi_wait_scan]
Nov  3 14:16:51 thib kernel: [  371.824088] Pid: 840, comm: wcg_hcc1_img_6.
Tainted: G   O 3.0.0-1-amd64 #1
Nov  3 14:16:51 thib kernel: [  371.824090] Call Trace:
Nov  3 14:16:51 thib kernel: [  371.824091][] ?
warn_slowpath_common+0x78/0x8c
Nov  3 14:16:51 thib kernel: [  371.824099]  [] ?
warn_slowpath_fmt+0x45/0x4a
Nov  3 14:16:51 thib kernel: [  371.824103]  [] ?
timekeeping_get_ns+0xd/0x2a
Nov  3 14:16:51 thib kernel: [  371.824105]  [] ?
netif_tx_lock+0x43/0x77
Nov  3 14:16:51 thib kernel: [  371.824108]  [] ?
ktime_get+0x50/0x89
Nov  3 14:16:51 thib kernel: [  371.824110]  [] ?
dev_watchdog+0xe9/0x148
Nov  3 14:16:51 thib kernel: [  371.824114]  [] ?
run_timer_softirq+0x1bf/0x28a
Nov  3 14:16:51 thib kernel: [  371.824117]  [] ?
hrtimer_interrupt+0x10d/0x19a
Nov  3 14:16:51 thib kernel: [  371.824120]  [] ?
netif_tx_unlock+0x4c/0x4c
Nov  3 14:16:51 thib kernel: [  371.824123]  [] ?
__do_softirq+0xb9/0x178
Nov  3 14:16:51 thib kernel: [  371.824126]  [] ?
check_preempt_wakeup+0x133/0x19c
Nov  3 14:16:51 thib kernel: [  371.824129]  [] ?
call_softirq+0x1c/0x30
Nov  3 14:16:51 thib kernel: [  371.824132]  [] ?
do_softirq+0x3f/0x84
Nov  3 14:16:51 thib kernel: [  371.824135]  [] ?
irq_exit+0x3f/0xa3
Nov  3 14:16:51 thib kernel: [  371.824137]  [] ?
do_IRQ+0x85/0x9e
Nov  3 14:16:51 thib kernel: [  371.824140]  [] ?
common_interrupt+0x13/0x13
Nov  3 14:16:51 thib kernel: [  371.824141]  
Nov  3 14:16:51 thib kernel: [  371.824143] ---[ end trace 8eee52d7b0ec47bb
]---
Nov  3 14:16:51 thib kernel: [  371.824145] ipheth: ipheth_tx_timeout: TX
timeout


Tested also with an iPhone 4G, same problem.

Cheers

Thibault



-- Package-specific info:
** Version:
Linux version 3.0.0-1-amd64 (Debian 3.0.0-3) (b...@decadent.org.uk) (gcc 
version 4.5.3 (Debian 4.5.3-8) ) #1 SMP Sat Aug 27 16:21:11 UTC 2011

** Command line:
BOOT_IMAGE=/vmlinuz-3.0.0-1-amd64 root=/dev/mapper/thib-main ro quiet

** Tainted: WO (4608)
 * Taint on warning.
 * Out-of-tree module has been loaded.

** Kernel log:
[8.217802] [drm] nouveau :01:00.0:   1: 0x2130: type 0x30 idx 1 tag 
0x08
[8.217805] [drm] nouveau :01:00.0:   2: 0x0210: type 0x10 idx 2 tag 
0xff
[8.217807] [drm] nouveau :01:00.0:   3: 0x0211: type 0x11 idx 3 tag 
0xff
[8.217810] [drm] nouveau :01:00.0:   4: 0x0213: type 0x13 idx 4 tag 
0xff
[8.217814] [drm] nouveau :01:00.0: Parsing VBIOS init table 0 at offset 
0xD5EA
[8.243077] [drm] nouveau :01:00.0: Parsing VBIOS init table 1 at offset 
0xD99C
[8.249421] [drm] nouveau :01:00.0: Parsing VBIOS init table 2 at offset 
0xE24B
[8.249429] [drm] nouveau :01:00.0: Parsing VBIOS init table 3 at offset 
0xE33D
[8.250507] [drm] nouveau :01:00.0: Parsing VBIOS init table 4 at offset 
0xE54D
[8.250509] [drm] nouveau :01:00.0: Parsing VBIOS init table at offset 
0xE5B2
[8.270467] [drm] nouveau :01:00.0: 0xE5B2: Condition still not met 
after 20ms, skipping following opcodes
[8.289872] [drm] nouveau :01:00.0: 2 available performance level(s)
[8.289877] [drm] nouveau :01:00.0: 0: memory 100MHz core 169MHz shader 
338MHz fanspeed 100% timing 0
[8.289881] [drm] nouveau :01:00.0: 3: memory 500MHz core 540MHz shader 
1300MHz fanspeed 100% timing 1
[8.289895] [drm] nouveau :01:00.0: Register 0x4030 not found in PLL 
limits table
[8.289902] [drm] nouveau :01:00.0: c: memory 499MHz core 540MHz shader 
1300MHz
[8.290019] [TTM] Zone  kernel: Available graphics memory: 40662

Bug#647509: iceweasel: Tabs are not saved when closing browser

2011-11-03 Thread Mike Hommey
On Thu, Nov 03, 2011 at 02:38:45PM +0100, jors wrote:
> El jue, 03-11-2011 a las 14:35 +0100, Mike Hommey escribió:
> > On Thu, Nov 03, 2011 at 01:34:46PM +0100, jors wrote:
> > > Package: iceweasel
> > > Version: 7.0.1-4
> > > Severity: important
> > > 
> > > With the proper option enabled (setting browser.showQuitWarning to True) 
> > > on the
> > > about:config browser's page, tabs are not saved/restored when closing the
> > > browser.
> > > 
> > > The "Save tabs" dialog pops up before quitting the browser, but once the
> > > browser is rerun again, nothing is restored.
> > 
> > What does the "When iceweasel starts" preference say in
> > Preferences>General?
> 
> It was on "Show start page" (my fault!), but even if I have restored
> back the browser.showQuitWarning value to false and selected "Show
> windows and tabs from last session", quitting the browser and reruning
> it again only shows up the start page (no windows nor tabs).
> 
> Maybe I am missing some other setting? If so, I am sorry.

Try with a new profile (iceweasel -P). If it works properly with a new
profile (which i'm fairly sure it does), then check about:support and
see what modified preferences you have.

Mike



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



Bug#641478: Upload of ffmpeg for Squeeze

2011-11-03 Thread Yves-Alexis Perez
On mer., 2011-11-02 at 21:57 +0100, Reinhard Tartler wrote:
> On Mi, Nov 02, 2011 at 15:33:20 (CET), Yves-Alexis Perez wrote:
> 
> > I'm considering the various open issues in ffmpeg in Squeeze
> > (CVE-2011-{3362,3504,3973,3974}).
> 
> I'm currently investigating these issues. Let's first discuss the CAVS
> related ones (3362,3973,3974):
> 
> 3974 seems to have been allocated in error, as it even references the
> same commit as 3973. What is the procedure to request it
> removed/invalidated?

I'm not too sure since I don't know who assigned it. Maybe mailing
someone at Mitre?
> 
> As for 3362 & 3973, I believe both have been fixed by this commit:
> http://git.libav.org/?p=libav.git;a=commitdiff;h=4a71da0f3ab7f5542decd11c81994f849d5b2c78
> 
> This commit has also been merged into FFmpeg. That imported commit is
> also referenced in the CVE description of CVE-2011-3973, so I assume
> that this is the correct fix.

Looks like that, yes.
> 
> For CVE-2011-3362, FFmpeg changed the signedness of two variables in the
> function decode_residual_block(). I'd be curious to see a sample that
> still exploits Libav's cavs decoder without that signedness
> change. Until I'm presented an exploit that demonstrates this issue, I'm
> going to assume that CVE-2011-3362 is fixed by the same patch that fixed
> CVE-2011-3973.

Shouldn't it be safe to still fix the signed-ness?
> 
> Now for CVE-2011-3504, which concerns an allocation error in the
> matroska decoder. I strongly believe that this has been fixed by this
> commit:
> http://git.libav.org/?p=libav.git;a=commitdiff;h=77d2ef13a8fa630e5081f14bde3fd20f84c90aec
> 
> Unlike the CVE Report, the commit message refers to MSVR-11-0080, which
> does not seem to exist in bing at all. I currently assume that the CVE
> is right and the commit message (which was imported from FFmpeg without
> further checking) should have referenced MSVR11-011 instead.
> 
> In any case, I've just backported both patches to the 0.5 branch:
> http://git.libav.org/?p=libav.git;a=shortlog;h=refs/heads/release/0.5

Thanks.
> 
> Feedback and tests welcome.
> 
> If nobody disagrees and nothing else pops up until let's say Friday,
> I'm going to roll 0.5.5 tarballs.
> 
> Does this work for everyone?
> 
Works for me at least, notwithstanding the 3362 fix.

Regards,
-- 
Yves-Alexis


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


Bug#647501: Infinite loop on architectures where char is unsigned by default

2011-11-03 Thread Tobias Hansen
Thanks, will be fixed in next package and next upstream release.

Best regards,
Tobias

Am 03.11.2011 11:45, schrieb Michel Dänzer:
> Package: sludge-engine
> Version: 2.1.2-3
> Severity: important
> Tags: patch
> 
> 
> The attached patch fixes an infinite loop on architectures (such as powerpc)
> where the char type is unsigned by default (so the test for -1 can never
> succeed).
> 
> 
> -- System Information:
> Debian Release: wheezy/sid
>   APT prefers unstable
>   APT policy: (500, 'unstable'), (500, 'stable'), (102, 'experimental')
> Architecture: powerpc (ppc)
> 
> Kernel: Linux 3.1.0+
> Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/bash
> 
> Versions of packages sludge-engine depends on:
> ii  libalure1 1.2-2   
> ii  libc6 2.13-21 
> ii  libgcc1   1:4.6.2-3   
> ii  libgl1-mesa-glx [libgl1]  7.11-6  
> ii  libglee0d15.4.0-1 
> ii  libglu1-mesa [libglu1]7.11-6  
> ii  libogg0   1.2.2~dfsg-1
> ii  libopenal11:1.13-4
> ii  libpng12-0  
> ii  libsdl1.2debian   1.2.14-6.4  
> ii  libstdc++64.6.2-3 
> ii  libvorbis0a   1.3.2-1 
> ii  libvpx0   0.9.7.p1-2  
> ii  xdg-utils 1.1.0~rc1-2 
> 
> sludge-engine recommends no packages.
> 
> Versions of packages sludge-engine suggests:
> pn  sludge-devkit  
> 
> -- 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#647514: winbind: getent not returns windows 2008 domain's user and group

2011-11-03 Thread Stéphane BERTIN

Package: winbind
Version: 2:3.5.11~dfsg-4
Severity: normal

After installing winbind and samba 3.5.11~dfsg-4, getent returns only 
system
local users and system local groups. Windows 2008 domain's users and 
Windows
2008 domain's groups are not listed anymore with getent. It's 
impossible to use

samba with windows 2008 domain's user authentication...

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

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

Versions of packages winbind depends on:
ii  adduser3.113
ii  libc6  2.13-21
ii  libcap21:2.22-1
ii  libcomerr2 1.42~WIP-2011-10-16-1
ii  libgssapi-krb5-2   1.9.1+dfsg-1+b1
ii  libk5crypto3   1.9.1+dfsg-1+b1
ii  libkrb5-3  1.9.1+dfsg-1+b1
ii  libldap-2.4-2  2.4.25-3
ii  libpam-runtime 1.1.3-4
ii  libpam0g   1.1.3-4
ii  libpopt0   1.16-1
ii  libtalloc2 2.0.7-3
ii  libtdb11.2.9-4+b1
ii  libwbclient0   
ii  lsb-base   3.2-28
ii  multiarch-support  2.13-21
ii  samba-common   
ii  zlib1g 1:1.2.3.4.dfsg-3

winbind recommends no packages.

winbind 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#647515: binutils-avr: Please do not use hard links.

2011-11-03 Thread Erik Braun
Package: binutils-avr
Version: 2.20.1-2
Severity: normal

Dear Maintainer,

Users of (file-)systems without or with limited hard link support, 
e. g. OpenAFS, cannot simply install this package with "aptitude":

 Unpacking binutils-avr (from .../binutils-avr_2.20.1-2_amd64.deb) ...
 dpkg: error processing /var/cache/apt/archives/binutils-avr_2.20.1-2_amd64.deb 
(--unpack):
  error creating hard link `./usr/lib/avr/bin/nm': Invalid cross-device link
 configured to not write apport reports
 dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)



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

Kernel: Linux 2.6.38.2.linuxpool (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.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#636597: No news ?

2011-11-03 Thread Cyril LAVIER

Hi everybody.

Michael, I'm sorry for my erroneous answer to this bug. I was not aware 
of this policy for adding third party modules. And I fully understand 
this policy, because it adds work for the maintainers.


Calin, from my point of view, this module is not useless, but not so 
useful, so I'm not convinced at all, and I think Michael has the same 
feeling. Maybe you have some arguments or examples which can help the 
maintainers make their decision.


Thanks.

--
Cyril "Davromaniak" Lavier



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



Bug#647516: python-qwt5-qt4: need a rebuild since the python-qt4 upload

2011-11-03 Thread Frederic-Emmanuel PICCA
Package: python-qwt5-qt4
Severity: important

Dear Maintainer,

I got affected by the bug #647210, after the upload of a new version of 
python-qt4
So is it possible for you to rebuild pyqwt5 with the current python-qt4.
I already did it on my machine and it seems ok as explained on the #647210 bug.

It would be nice also to close #622869 which was also fixed by the previsou 
rebuilt.
This bug block the migration of pyqwt5 into testing.

thanks

Frederic

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

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



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



Bug#647509: iceweasel: Tabs are not saved when closing browser

2011-11-03 Thread jors
El jue, 03-11-2011 a las 14:55 +0100, Mike Hommey escribió:
> On Thu, Nov 03, 2011 at 02:38:45PM +0100, jors wrote:
> > El jue, 03-11-2011 a las 14:35 +0100, Mike Hommey escribió:
> > > On Thu, Nov 03, 2011 at 01:34:46PM +0100, jors wrote:
> > > > Package: iceweasel
> > > > Version: 7.0.1-4
> > > > Severity: important
> > > > 
> > > > With the proper option enabled (setting browser.showQuitWarning to 
> > > > True) on the
> > > > about:config browser's page, tabs are not saved/restored when closing 
> > > > the
> > > > browser.
> > > > 
> > > > The "Save tabs" dialog pops up before quitting the browser, but once the
> > > > browser is rerun again, nothing is restored.
> > > 
> > > What does the "When iceweasel starts" preference say in
> > > Preferences>General?
> > 
> > It was on "Show start page" (my fault!), but even if I have restored
> > back the browser.showQuitWarning value to false and selected "Show
> > windows and tabs from last session", quitting the browser and reruning
> > it again only shows up the start page (no windows nor tabs).
> > 
> > Maybe I am missing some other setting? If so, I am sorry.
> 
> Try with a new profile (iceweasel -P). If it works properly with a new
> profile (which i'm fairly sure it does), then check about:support and
> see what modified preferences you have.

Creating a profile from scratch worked. It even worked after installing
my extensions (basically adblock and flashblock).

But when setting "Privacity -> History -> Iceweasel will: use a
personalized configuration for history" AND enabling the option "Clean
history when Iceweasel closes" (even with only history of navigation,
downloads & cookies selected), tabs are not saved/restored anymore. Is
this how it is supposed to be? I mean, shouldn't the "clean history"
option refer only to history? (And not currently opened windows/tabs)

> Mike





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



Bug#642995: Nginx wiki has some information.

2011-11-03 Thread Cyril LAVIER

Hi.

Apparently, there's already a wiki page explaining this issue : 
http://wiki.nginx.org/Pitfalls#Pass_Non-PHP_Requests_to_PHP.


And the solution is, I think, cleaner than what we wrote on this bug.

"The proper solution is to set cgi.fix_pathinfo=0 in php.ini. This 
causes PHP to try the literal path given. If, for backward compatibility 
reasons, you cannot change this setting you need to ensure that Nginx is 
passing PHP an actual file or specifically disable PHP access to any 
directory containing user uploads."


By the way, with this new element, I don't know who has to make the 
work.


Is this the nginx maintainers, by adding a warning message in the 
sample config files ? Or it this the php maintainers, by setting the 
cgi.fix_pathinfo to 0 in the default configuration file.


Frankly, I don't know. For us, it's not a big amount of work, and it 
doesn't break anything.


So it's up to you, maintainers, to make a choice on adding or not 
adding any warning in the sample config files (or even in the 
http://wiki.debian.org/Nginx page).


Thanks.
--
Cyril "Davromaniak" Lavier



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



Bug#647517: expat: Please add -fPIC on shared libraries.

2011-11-03 Thread Konstantinos Margaritis
Package: expat
Version: 2.0.1-7.2
Severity: important

According to policy 10.2, shared libraries -and for some arches,
static libraries as well- should be built with -fPIC in the CFLAGS. In
this case it's breaking the soon-to-be-official armhf port according
to the build logs:

http://buildd.debian-ports.org/status/fetch.php?pkg=opal&arch=armhf&ver=3.6.8%7Edfsg-2.1&stamp=1320192217
http://buildd.debian-ports.org/status/fetch.php?pkg=ptlib&arch=armhf&ver=2.6.7-2.1&stamp=1320192343

Regards

Konstantinos



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



Bug#647519: runsnakerun should depend on python-setuptools

2011-11-03 Thread Tommaso Colombo
Package: runsnakerun
Version: 2.0.2a1-1
Severity: grave
Justification: renders package unusable


Hello!

Trying to run the runsnake executable after installing runsnakerun
results in an error:

$ runsnake

Traceback (most recent call last):
  File "/usr/bin/runsnake", line 5, in 
  from pkg_resources import load_entry_point
  ImportError: No module named pkg_resources

Installing the python-setuptools package provides the missing module,
allowing to use the program normally.

Regards,
Tommaso


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

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

Versions of packages runsnakerun depends on:
ii  python2.7.2-9  
ii  python-squaremap  1.0.1b3-1
ii  python2.6 2.6.7-4  
ii  python2.7 2.7.2-7  

runsnakerun recommends no packages.

runsnakerun 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#647518: liblua5.1-0: Please update from upstream

2011-11-03 Thread Micah Anderson
Package: liblua5.1-0
Version: 5.1.4-10
Severity: wishlist

Hello,

There appears to be a large patch that fixed a multitude of bugs available from
upstream, but not in the debian package:

http://www.lua.org/ftp/patch-lua-5.1.4-4

It would be great if that could get into Debian. I believe I'm experiencing some
segfaults that are related to the previous release.

thanks,
micah



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

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

Versions of packages liblua5.1-0 depends on:
ii  libc6  2.13-21
ii  multiarch-support  2.13-21

liblua5.1-0 recommends no packages.

liblua5.1-0 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#647508: FTBFS on GNU/kFreeBSD

2011-11-03 Thread Robert Millan
2011/11/3 Gregor Jasny :
> I'll do after the upload. BTW: What's the reason for this hunk:
>
>> @@ -38,9 +39,11 @@ build-stamp:
>>        # build shared libs and install
>>        $(MAKE) $(V4L_NATIVE_FLAGS)
>>        $(MAKE) $(V4L_NATIVE_FLAGS) install
>> +ifeq ($(DEB_HOST_ARCH_OS), linux)
>>        # prefix filenames with /lib/udev/rc_keymaps
>>        mv $(CURDIR)/debian/tmp/etc/rc_maps.cfg
>> $(CURDIR)/debian/tmp/etc/rc_maps.cfg.orig
>>        sed -e
>> 's,^\([^#][[:graph:]]*[[:space:]]\+[[:graph:]]\+[[:space:]]\+\)\([[:graph:]]\+.*\),\1/lib/udev/rc_keymaps/\2,'
>> -e
>> 's,^\(#[[:space:]]\+\*[[:space:]]\+\*[[:space:]]\+\)\([[:alnum:]].*\),\1/lib/udev/rc_keymaps/\2,'
>> < $(CURDIR)/debian/tmp/etc/rc_maps.cfg.orig >
>> $(CURDIR)/debian/tmp/etc/rc_maps.cfg
>> +endif

These files are only useful with utils/keytable which is
Linux-specific.  On GNU/kFreeBSD build they aren't present so
attempting to run sed on them fails.

Btw, you might want to use 'sed -i' option here.

-- 
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#647520: boinc-client: SIGSEGV (segmentation fault) after some hours of computation

2011-11-03 Thread John Feuerstein
Package: boinc-client
Version: 6.13.10+dfsg-1
Severity: important

/usr/bin/boinc crashes (SIGSEGV) after some hours of computation. This
happens every day, so it is reproducible. What follows is a journey to
track this down:

My recent upgrades of boinc-related packages include:

Mon, Oct 24 2011 20:09:36 +0200
[UPGRADE] boinc 6.13.1+dfsg-2 -> 6.13.6+dfsg-2
[UPGRADE] boinc-client 6.13.1+dfsg-2 -> 6.13.6+dfsg-2
[UPGRADE] boinc-manager 6.13.1+dfsg-2 -> 6.13.6+dfsg-2

Tue, Nov  1 2011 10:43:55 +0100
[UPGRADE] boinc 6.13.6+dfsg-2 -> 6.13.10+dfsg-1
[UPGRADE] boinc-client 6.13.6+dfsg-2 -> 6.13.10+dfsg-1
[UPGRADE] boinc-manager 6.13.6+dfsg-2 -> 6.13.10+dfsg-1

I've noticed the missing system load (and hereby the broken boinc
client) only some days ago, so I suspect the bug was introduced by
either boinc-client version 6.13.10+dfsg-1 or 6.13.6+dfsg-2.

I'm sure this never happened with version 6.13.1+dfsg-2.

For the record, I'm currently running these projects:

- climateprediction.net
- rosetta@home
- SETI@home

I was never attached using boinc-manager or any other client, and I did
not change the configuration of any boinc-related software in the past
month. I also did not add or remove projects.

---

On to the bug hunting:

/var/lib/boinc-client/std{out,err}dae.txt do not contain anything
interesting leading to this crash.

So I went on and ran boinc under gdb, in the environment as created by
the init script. The following crash happened after 3 hours of
computation.

# apt-get install boinc-dbg
# sudo -u boinc -H -- sh -c 'cd ~ && gdb -q -s /usr/lib/debug/usr/bin/boinc -e 
/usr/bin/boinc'
Reading symbols from /usr/lib/debug/usr/bin/boinc...done.

(gdb) run --check_all_logins --redirectio --dir /var/lib/boinc-client
Starting program: /usr/bin/boinc --check_all_logins --redirectio --dir 
/var/lib/boinc-client
[Thread debugging using libthread_db enabled]

Program received signal SIGSEGV, Segmentation fault.
__mempcpy_sse2 () at ../sysdeps/x86_64/memcpy.S:436
436 ../sysdeps/x86_64/memcpy.S: No such file or directory.
in ../sysdeps/x86_64/memcpy.S

(gdb) bt 10
#0  __mempcpy_sse2 () at ../sysdeps/x86_64/memcpy.S:436
#1  0x76276d66 in _IO_default_xsputn (f=0x7ffedb80, data=, n=150842) at genops.c:468
#2  0x76249f04 in _IO_vfprintf_internal (s=0x7ffedb80, 
format=0x4a5ec0 "\n
%s\n%d\n
%d\n
%d\n
\n
4a31871bf59efd4895a7ca5a65402602\n
1171553\n122\n
6\n
%s\n%d\n
%d\n
%d\n
, 
format=0x77fba050 
"L*W53'G?R8ALXQ]?<\"TT$^2.&3REI]0WIP,']_K^-2]C=SQF;M\"XB'\\-('\n:]'0L-?/P^1N,V-5L8R1>YXA(
 
W@+ZJF0'.?-*CF5L0\"*IJP@7:/H$E>M\n
4a31871bf59efd4895a7ca5a65402602\n
1171553\n122\n
6(>+)M'=\\5#!X/Z,?AWY:2#^65>%\\.7+8\n\\7Y(+D6F:N-U*6 
!3[452\\NBC62?W8J+<2K_&*=!+ I9&U '9EC&F6'%SNM)Z\n$IV+P=X@?]10&:\\+(D$%099=N 
1,QK)XA)M'4>6+$?$X#IO>\"^<6N3/9^\\U[*Y-(\nUW92Z18_3H2XQC"..., 
msg=0x77fa9010 
"year\nhadcm3n_ymgx_1900_40_007524528\nhadcm3n_ymgx_1900_40_007524528_1\n1\n25920\n46188\n6.07\n\ntrickle_hadcm3n_ymgx_1"...,
 p=0x72dad0) at cs_trickle.cpp:195
#6  send_replicated_trickles (p=0x72dad0, 
msg=0x77fa9010 
"year\nhadcm3n_ymgx_1900_40_007524528\nhadcm3n_ymgx_1900_40_007524528_1\n1\n25920\n46188\n6.07\n\ntrickle_hadcm3n_ymgx_1"...,
 
result_name=0x7fffdee0 "\\C)1*3M4 
$V1D60'GS'4%\">(>+)M'=\\5#!X/Z,?AWY:2#^65>%\\.7+8\n\\7Y(+D6F:N-U*6 
!3[452\\NBC62?W8J+<2K_&*=!+ I9&U '9EC&F6'%SNM)Z\n$IV+P=X@?]10&:\\+(D$%099=N 
1,QK)XA)M'4>6+$?$X#IO>\"^<6N3/9^\\U[*Y-(\nUW92Z18_3H2XQC"..., now=1320089068) 
at cs_trickle.cpp:202
#7  0x000d in ?? ()
#8  0x0063 in ?? ()
#9  0x007240f8 in ?? ()
(More stack frames follow...)

Note: there are thousands of following stack frames without matching symbols...

(gdb) bt full 10
#0  __mempcpy_sse2 () at ../sysdeps/x86_64/memcpy.S:436
No locals.
#1  0x76276d66 in _IO_default_xsputn (f=0x7ffedb80, data=, n=150842) at genops.c:468
count = 150842
s = 0x77fcdd4a ""
more = 150842
#2  0x76249f04 in _IO_vfprintf_internal (s=0x7ffedb80, 
format=0x4a5ec0 "\n
%s\n%d\n
%d\n
%d\n

string_malloced = 1163014950
step0_jumps = {0, -15179, -14483, -14390, -14293, -14199, -15032, 
-14766, -13119, -13894, -13811, -13241, -12583, -2939, -3410, -3367, -3217, 
-3202, -10653, -8358, 
  -2123, -12480, -2322, -2771, -1385, -1830, -2607, -3126, -3022, 
-14856}
space = 0
is_short = 0
use_outdigits = 0
step1_jumps = {0, 0, 0, 0, 0, 0, 0, 0, 0, -13894, -13811, -13241, 
-12583, -2939, -3410, -3367, -3217, -3202, -10653, -8358, -2123, -12480, -2322, 
-2771, -1385, -1830, 
  -2607, -3126, -3022, 0}
group = 0
prec = 
step2_jumps = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -13811, -13241, -12583, 
-2939, -3410, -3367, -3217, -3202, -10653, -8358, -2123, -12480, -2322, -277

  1   2   3   >