Bug#700290: pbuilder: clang support

2013-02-11 Thread Hideki Yamane
Package: pbuilder
Severity: wishlist
Tags: patch
X-Debbugs-CC: sylves...@debian.org

Hi,

 I've made a tiny patch for clang support in pbuilder, it runs with
 --with-clang option. It would make build check in clang easier,
 and encourage maintainers to do that.

 Could you check and apply it, please?


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane
diff -Nru pbuilder-0.213/bash_completion.d/pbuilder pbuilder-0.213+nmu1/bash_completion.d/pbuilder
--- pbuilder-0.213/bash_completion.d/pbuilder	2012-03-25 14:53:45.0 +0900
+++ pbuilder-0.213+nmu1/bash_completion.d/pbuilder	2013-02-11 14:21:58.0 +0900
@@ -60,7 +60,7 @@
 --aptconfdir --timeout --override-config  --binary-arch \
 --preserve-buildplace --bindmounts --debug --twice --autocleanaptcache \
 --compressprog --debootstrapopts --save-after-login --save-after-exec \
---debootstrap' \
+--debootstrap --with-clang' \
 -- $cur ) )
 if [[ $prev = @(--aptcache|--hookdir) ]]; then
 # Optionally provide a directory
diff -Nru pbuilder-0.213/debian/changelog pbuilder-0.213+nmu1/debian/changelog
--- pbuilder-0.213/debian/changelog	2012-10-08 08:30:05.0 +0900
+++ pbuilder-0.213+nmu1/debian/changelog	2013-02-11 15:01:07.0 +0900
@@ -1,3 +1,13 @@
+pbuilder (0.213+nmu1) UNRELEASED; urgency=low
+
+  [ Hideki Yamane ]
+  * Non-maintainer upload.
+  * add --with-clang option to build your package with clang.
+It would replace GCC-4.7 by default, you can specify it any version
+with GCC_VERSION environment variable
+
+ -- Hideki Yamane henr...@debian.org  Mon, 11 Feb 2013 14:22:38 +0900
+
 pbuilder (0.213) unstable; urgency=low
 
   [ Beatrice Torracca ]
diff -Nru pbuilder-0.213/pbuilder-buildpackage pbuilder-0.213+nmu1/pbuilder-buildpackage
--- pbuilder-0.213/pbuilder-buildpackage	2012-03-13 17:25:15.0 +0900
+++ pbuilder-0.213+nmu1/pbuilder-buildpackage	2013-02-11 15:18:41.0 +0900
@@ -97,6 +97,9 @@
 executehooks D
 trap saveaptcache_umountproc_cleanbuildplace_trap exit sighup sigpipe
 checkbuilddep $PACKAGENAME
+if [ $CLANG = yes ]; then
+setup_clang
+fi
 save_aptcache
 trap umountproc_cleanbuildplace_trap exit sighup sigpipe
 
diff -Nru pbuilder-0.213/pbuilder-buildpackage-funcs pbuilder-0.213+nmu1/pbuilder-buildpackage-funcs
--- pbuilder-0.213/pbuilder-buildpackage-funcs	2012-03-31 13:51:11.0 +0900
+++ pbuilder-0.213+nmu1/pbuilder-buildpackage-funcs	2013-02-11 16:44:51.0 +0900
@@ -112,3 +112,22 @@
 export CCACHE_DIR=$CCACHEDIR
 fi
 }
+
+function setup_clang() {
+# set appropriate GCC version.
+if [ -z $GCC_VERSION ]; then
+	GCC_VERSION=4.7
+fi
+
+$CHROOTEXEC usr/bin/apt-get -y ${APTGETOPT[@]} install clang
+
+echo -e \e[33mReplace gcc, g++  cpp by clang\e[m
+for compiler in gcc-$GCC_VERSION cpp-$GCC_VERSION g++-$GCC_VERSION
+do
+	$CHROOTEXEC rm /usr/bin/$compiler 
+	$CHROOTEXEC ln -s /usr/bin/clang /usr/bin/$compiler 
+done
+
+echo -e \e[33mCheck if gcc, g++  cpp are actually clang\e[m
+$CHROOTEXEC usr/bin/gcc --version| grep clang  /dev/null || exit 1
+}
diff -Nru pbuilder-0.213/pbuilder-checkparams pbuilder-0.213+nmu1/pbuilder-checkparams
--- pbuilder-0.213/pbuilder-checkparams	2012-03-09 07:54:41.0 +0900
+++ pbuilder-0.213+nmu1/pbuilder-checkparams	2013-02-11 14:20:54.0 +0900
@@ -260,6 +260,10 @@
 	TWICE=yes
 	shift;
 	;;
+	--with-clang)
+	CLANG=yes
+	shift;
+	;;
 	--) # end of processing for this
 	shift;
 	break;
diff -Nru pbuilder-0.213/pbuilder-modules pbuilder-0.213+nmu1/pbuilder-modules
--- pbuilder-0.213/pbuilder-modules	2012-03-31 13:50:46.0 +0900
+++ pbuilder-0.213+nmu1/pbuilder-modules	2013-02-11 14:51:33.0 +0900
@@ -79,6 +79,7 @@
  --debootstrapopts [debootstrap options]
  --save-after-login/--save-after-exec
  --debootstrap [debootstrap|cdebootstrap]
+ --with-clang
 
 pdebuild-specific pbuilder-options:
  --pbuilderroot [command to obtain root privilege for pbuilder] 
diff -Nru pbuilder-0.213/pbuilder.8 pbuilder-0.213+nmu1/pbuilder.8
--- pbuilder-0.213/pbuilder.8	2012-03-09 07:54:41.0 +0900
+++ pbuilder-0.213+nmu1/pbuilder.8	2013-02-11 14:35:27.0 +0900
@@ -534,6 +534,11 @@
 properly.  The resulting packages are the ones from the second build.
 
 .TP
+.BI \-\-with\-clang
+Build the package with clang, instead of gcc.
+Also you should use A10clang hook file in example.
+
+.TP
 .BI \-\-preserve\-buildplace
 Do not clean the
 .B \-\-buildplace


Bug#700290: pbuilder: clang support

2013-02-11 Thread Sylvestre Ledru
On 11/02/2013 09:01, Hideki Yamane wrote:
 Package: pbuilder
 Severity: wishlist
 Tags: patch
 X-Debbugs-CC: sylves...@debian.org
 
 Hi,
 
  I've made a tiny patch for clang support in pbuilder, it runs with
  --with-clang option. It would make build check in clang easier,
  and encourage maintainers to do that.
 
  Could you check and apply it, please?
 
 
That is an excellent initiative. Many thanks for proposing and
implementing it! :)

Sylvestre


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



Bug#695221: [Pkg-xen-devel] Bug#695221: confirmed bug, serious

2013-02-11 Thread Daniel Pocock
On 11/02/13 03:48, Thomas Goirand wrote:
 I don't think it's useful to bikeshed about the severity of an issue but...

   

I can see you've put a lot of work into this package and I think people
will want to use it, especially when wheezy is released

That's why I'm reporting stuff like this and also providing suggested
solutions (e.g the possible workaround)

 On 02/10/2013 11:45 PM, Daniel Pocock wrote:
   
 It is serious because

 a) it makes the package and the whole system unusable for all but one
 very specific network configuration (users with a /24)
 
 Using a /24 is all but a very specific network configuration, it's in
 fact the most common one.

   
snip
 c) it will lead to a complete loss of connectivity for people accessing
 a host remotely to set up XCP
 
 Sure, but it doesn't match the serious definition:

 makes the package in question unusable by most or all users, or causes
 data loss, or introduces a security hole allowing access to the accounts
 of users who use the package.

   
I think that comes back to point (a) - if `most' or even a lot of users
are not using /24 (which is not clear to me), and if there is no
workaround, then maybe it is serious


 Besides this, I don't think it's reasonable to delay the release of
 Wheezy just for this bug.

   

Having it marked RC may allow a patch into wheezy.  Maybe even a small
patch:

- updating the README

- changing pif-reconfigure-ip to give an error if the user tries a
netmask that is not supported, e.g.

XCP only works on a Class C subnet with a netmask 255.255.255.0.  Your
changes have not been applied.
See bug 695221 or the README file.

These things would be small fixes but would make the user's first
experience of XCP less frustrating

The last thing you want is for people to get frustrated and start
thinking that they should try the Ubuntu version or the ISO installer:
http://www.xen.org/download/xcp/index_1.6.0.html#install

 I did a `find' in /etc and /var and I located the following file:

 /var/lib/xcp/networkd.db

 which contains the value {interface_config:  ..MY ADDRESS, 32]]]

 The 32 is the bad subnet mask.  Using vi, I replaced it with 29  (for a
 /29), rebooted, and it came up OK.
 
 That's interesting!

 I've added Mike and Jon as Cc:, hoping that they will be able to tell
 wtf is going on, and why the db is being wrong.

   
 As I don't know XCP very well, I
 don't want to suggest this is a valid workaround.  Could anyone with
 more experience confirm if that file can be modified by hand in this
 case?  Is there something else that could come along and clobber that
 file?  Does xcp-networkd need to be stopped before modifying the file
 safely?
 
 Mike must know.

   
 If there is a workaround (what I describe above, or something else) for
 this such that a /29 or some other valid netmask can be enabled, then
 the bug could probably be downgraded to important but certainly not
 normal, it is just too disruptive.
 
 Ultimately, this is the job of the maintainer of a given package to
 decide the seriousness of a bug. To me, setting it to either normal or
 important is exactly the same (eg: it is on my radar, and I really want
 to have it fix), and discussing the seriousness doesn't help. Discussing
 ways to fix it does.

   
It's not quite the same, because the release team wouldn't accept a
patch/unblock request for a normal issue

I'm hoping that the fix for this might be quite trivial and therefore
acceptable to the release team.


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



Bug#700291: clang: Upgrade for experimental users fails due to epoch introduction in #699899

2013-02-11 Thread Paul Menzel
Package: clang
Version: 1:3.0-6.1
Severity: important


Dear Debian folks,


introducing the epoch in 1:3.0.6 [1] broke installation for users using
the 3.2.1~exp5 from experimental.

Vorbereitung zum Ersetzen von clang 3.2-1~exp5 (durch 
.../clang_1%3a3.0-6.1_i386.deb) ...
Ersatz für clang wird entpackt ...
dpkg: Fehler beim Bearbeiten von 
/var/cache/apt/archives/clang_1%3a3.0-6.1_i386.deb (--unpack):
 Versuch, »/usr/bin/clang« zu überschreiben, welches auch in Paket 
clang-3.2 3.2-1~exp5 ist

I guess adding an epoch also to the experimental version should fix
this.


Thanks,

Paul


[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=699899

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

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

Versions of packages clang depends on:
ii  clang-3.2  3.2-1~exp5

clang recommends no packages.

clang suggests no packages.

-- no debconf information


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


Bug#700178: unattended-upgrades: minor corruption caused by Content-Transfer-Encoding: quoted-printable

2013-02-11 Thread Michael Vogt
On Sat, Feb 09, 2013 at 02:21:27PM +, Sam Morris wrote:
 Package: unattended-upgrades
 Version: 0.79.4
 Severity: minor

Thanks for your bugreport.

[..] 
 My MUA formats the final part of the unattended-upgrades result mail as
 follows:
[..]
 Correctly encoded, it should look like this:
 
   Allowed origins are: ['o=3DDebian,n=3Dwheezy', 
 'o=3DDebian,n=3Dwheezy-updates', 'o=3DDebian,n=3Dwheezy,l=3DDebian-Security', 
 'origin=3DDebian,archive=3Dstable,label=3DDebian-Security']

Indeed, I just verified the issue and fixed it in trunk. It should
work correctly there, if you want to give test-run it just get the
latest version from bzr via:
$ bzr branch lp:unattended-upgrades
and run it from the local checkout.

Cheers,
 Michael


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



Bug#700292: netcfg/choose_interface=auto fails to select eth1 when eth0 has no link

2013-02-11 Thread Paul Wise
Package: netcfg
Severity: normal
Tags: d-i

netcfg/choose_interface=auto in preseeding or on the installer kernel
command-line fails to choose the right interface when the first
interface has no link. This is annoying for automated installs from CD.
For netboot installs, it is possible to use the pxelinux stuff to enable
BOOTIF and workaround it using the selection via mac address.

There is a bug about this in Launchpad that should be closed if this
gets fixed. I also found some Ubuntu users complaining about it on the
Ubuntu forums.

https://bugs.launchpad.net/bugs/713385
http://ubuntuforums.org/archive/index.php/t-1713845.html

This is because the autoconfig code doesn't check the result of the link
detection code and return that to upper layers (see below). 

int netcfg_autoconfig(struct debconfclient *client, struct netcfg_interface 
*interface)
{
int ipv6;

di_debug(Want link on %s, interface-name);
netcfg_detect_link(client, interface);

di_debug(Commencing network autoconfiguration on %s, interface-name);
interface-dhcp = interface-slaac = interface-dhcpv6 = 0;
.

netcfg_activate_dhcp calls it and declares itself ready for a rewrite.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#669127: Little update (2nd try)

2013-02-11 Thread Ralf Hildebrandt
Cc's in r...@debian.org, hartm...@debian.org, since my mail from the
8th to 669...@bugs.debian.org was not added to
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669127 -- I contacted
ow...@bugs.debian.org about this.

In the meantime I set-up an entirely new box, based on Ubuntu 64 bit
instead of Debian 32 bit. And now I'm encountering the same issues
there (same version of the packages, so no major suprise there).

What I tried:
=

* I used ktutil to reduce the entries in my keytab. Nice tool.

  I'm down to two entries, and with that shortened keytab it's working OK on my 
old machine
  (1.8.3+dfsg-4squeeze6) but not on the new one.

  # klist -ke /etc/krb5.keytab
  Keytab name: WRFILE:/etc/krb5.keytab
  KVNO Principal
   
--
 1 host/vpn-gw.charite...@charite.de (DES cbc mode with CRC-32) 
 1 openvpn-krb5/vpn-gw.charite...@charite.de (DES cbc mode with CRC-32) 

  The same command on the new box (1.10+dfsg~beta1-2ubuntu0.3) gives:

  # klist -ke /etc/krb5.keytab
  Keytab name: FILE:/etc/krb5.keytab
  KVNO Principal
   
--
 1 host/vpn-gw.charite...@charite.de (des-cbc-crc) 
 1 openvpn-krb5/vpn-gw.charite...@charite.de (des-cbc-crc) 

* I built t_vfy_increds according to your instructions:
  
  # KRB5_TRACE=/tmp/krb5_tracefile.txt ./t_vfy_increds
  t_vfy_increds: ../../../../src/lib/krb5/krb/t_vfy_increds.c:48: main: 
Assertion krb5_cc_start_seq_get(context, ccache, cursor) == 0' failed.
  Aborted (core dumped)
 
  And no trace file either.
  
-- 
Ralf Hildebrandt   Charite Universitätsmedizin Berlin
ralf.hildebra...@charite.deCampus Benjamin Franklin
http://www.charite.de  Hindenburgdamm 30, 12203 Berlin
Geschäftsbereich IT, Abt. Netzwerk fon: +49-30-450.570.155


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



Bug#680469: [Freedombox-discuss] status of lxc in debian wheezy

2013-02-11 Thread Daniel Baumann

On 02/10/2013 01:35 PM, Rob van der Hoeven wrote:

my solution is: remove the
non-functional Debian templates from the LXC package and replace them
with my working template.


i will not support your template, so note that you will have to take all 
user support for the lifetime of the wheezy release with your template.


--
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


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



Bug#700293: libestr: Added DEP-8 tests

2013-02-11 Thread Dmitry Shachnev
Source: libestr
Version: 0.1.1-2
Severity: wishlist
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch raring

Dear Maintainer,

I'm forwarding a debdiff from Vibhav Pant that adds DEP-8 tests to the
package, originally submitted to Launchpad. See
http://dep.debian.net/deps/dep8/ for details.

You may want to use your own changelog entry, apart from that it is
ready for uploading.

Here is the original bug report:
https://bugs.launchpad.net/bugs/1117222

Here is the debdiff:
https://launchpadlibrarian.net/130610740/add_tests.debdiff

Cheers,

--
Dmitry Shachnev


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



Bug#512074: #512074

2013-02-11 Thread Sébastien Delafond
Hello,

this feature request makes perfect sense, and the patch provided by
the submitter does a fine job. Is there any reason we can't have an
upload including it ? :)

Cheers,

--Seb


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



Bug#700289: wordpress 2.5.1 needs tinymce update

2013-02-11 Thread Mikko Visa
I can confirm this problem. Running 30-40 blogs on Squeeze with
Wordpress 3.5.1 from unstable  (and tinymce) and at least some of the
blogs are affected by this. Some work though, don't know why. Have
tested the usual plugin-disabling, setting CONCATENATE_SCRIPTS false
but with no help so far.

On Mon, Feb 11, 2013 at 7:57 AM, Jason Lingohr ja...@lucid.net.au wrote:
 Package: wordpress
 Version: 3.5.1+dfsg-1
 Severity: important

 Hi, wanting to upgrade to Wordpress 2.5.1, I've installed the unstable
 package.

 Everything went fine, except tinymce would no longer work, spewing
 forth a JS error thusly:

 Uncaught TypeError: Cannot call method 'add' of undefined post-new.php:1286
 (anonymous function) post-new.php:1286
 (anonymous function) post-new.php:1316

 I pulled down their official tarball, gutted their version of tinymce and
 put it in /usr/share/wordpress/wp-includes/js/tinymce, and things work
 fine again.

 This essentially meant a tinymce upgrade from 3.4.8+dfsg0-1 to
 tinymce-3.5.8-wp.


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

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

 Versions of packages wordpress depends on:
 ii  apache2   2.2.16-6+squeeze10 Apache HTTP Server metapackage
 ii  apache2-mpm-prefork [ 2.2.16-6+squeeze10 Apache HTTP Server - traditional 
 n
 ii  dpkg  1.15.8.13  Debian package management system
 ii  libapache2-mod-php5   5.3.3-7+squeeze14  server-side, HTML-embedded 
 scripti
 ii  libjs-cropper 1.2.2-1JavaScript image cropper UI
 ii  libphp-phpmailer  5.1-1  full featured email transfer 
 class
 ii  libphp-snoopy 1.2.4-2Snoopy is a PHP class that 
 simulat
 ii  mysql-client-5.1 [mys 5.1.63-0+squeeze1  MySQL database client binaries
 ii  php5  5.3.3-7+squeeze14  server-side, HTML-embedded 
 scripti
 ii  php5-gd   5.3.3-7+squeeze14  GD module for php5
 ii  php5-mysql5.3.3-7+squeeze14  MySQL module for php5
 ii  tinymce   3.4.8+dfsg0-1  platform independent web based 
 Jav

 Versions of packages wordpress recommends:
 ii  wordpress-l10n 3.3.2+dfsg-1~squeeze1 weblog manager - language files

 Versions of packages wordpress suggests:
 ii  mysql-server   5.1.63-0+squeeze1 MySQL database server 
 (metapackage
 ii  mysql-server-5.1 [mysq 5.1.63-0+squeeze1 MySQL database server binaries 
 and

 -- Configuration Files:
 /etc/wordpress/htaccess changed:
 IfModule mod_rewrite.c
 RewriteEngine On
 RewriteBase /
 RewriteRule ^index\.php$ - [L]
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule . /index.php [L]
 /IfModule


 -- no debconf information




--
Mikko Visa - mikko.v...@iki.fi - 050-5469775


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



Bug#700294: gnt-instance modify -t drbd should check if LV is still marked as online

2013-02-11 Thread Martin Zobel-Helas
Package: ganeti2
Version: 2.5.2-1
Severity: normal
User: debian-ad...@lists.debian.org
Usertags: needed-by-DSA-Team

Hi,

when trying to migrate from plain LV disk backend to DRBD using the
following the following command, the conversion fails if the LV is still
marked as online. Also the instance is unbootable afterwards.

root@clementi:~# gnt-job info 87671
Job ID: 87671
  Status: error
  Received: 2013-02-09 22:08:15.692172
  Processing start: 2013-02-09 22:08:15.761730 (delta 0.069558s)
  Processing end:   2013-02-09 22:08:19.548239 (delta 3.786509s)
  Total processing time: 3.856067 seconds
  Opcodes:
OP_INSTANCE_SET_PARAMS
  Status: error
  Processing start: 2013-02-09 22:08:15.761730
  Execution start:  2013-02-09 22:08:15.830276
  Processing end:   2013-02-09 22:08:19.548176
  Input fields:
beparams: {}
comment: None
debug_level: 0
depends: None
disk_template: drbd
disks: 
dry_run: False
force: False
force_variant: False
hvparams: {}
instance_name: kaufmann.debian.org
nics: 
os_name: None
osparams: {}
priority: 0
remote_node: czerny.debian.org
wait_for_sync: True
  Result:
OpExecError
[Can't create block device 
DRBD8(hosts=clementi.debian.org/0-czerny.debian.org/0, port=11012, configured 
as 192.168.75.103:11012 192.168.75.109:11012, 
backend=LogicalVolume(/dev/vg0/c3a00f49-53b2-43b6-95d5-d045e3db98b6.disk0_data,
 not visible, size=128m), 
metadev=LogicalVolume(/dev/vg0/c3a00f49-53b2-43b6-95d5-d045e3db98b6.disk0_meta,
 not visible, size=128m), visible as /dev/disk/0, size=128m) on node 
clementi.debian.org for instance kaufmann.debian.org: Can't assemble device 
after creation, unusual event: drbd0: can't attach local disk: /dev/drbd0: 
Failure: (114) Lower device is already claimed. This usually means it is 
mounted.
]
  Execution log:
1:2013-02-09 22:08:16.301492:message Converting template to drbd
2:2013-02-09 22:08:16.533072:message Creating aditional volumes...
3:2013-02-09 22:08:18.695810:message Renaming original volumes...
4:2013-02-09 22:08:19.163656:message Initializing DRBD devices...

root@clementi:~# gnt-job info 87672
Job ID: 87672
  Status: error
  Received: 2013-02-09 22:09:40.513688
  Processing start: 2013-02-09 22:09:40.579037 (delta 0.065349s)
  Processing end:   2013-02-09 22:09:41.773141 (delta 1.194104s)
  Total processing time: 1.259453 seconds
  Opcodes:
OP_INSTANCE_STARTUP
  Status: error
  Processing start: 2013-02-09 22:09:40.579037
  Execution start:  2013-02-09 22:09:40.646759
  Processing end:   2013-02-09 22:09:41.773095
  Input fields:
beparams: {}
comment: None
debug_level: 0
depends: None
dry_run: False
force: False
hvparams: {}
ignore_offline_nodes: False
instance_name: kaufmann.debian.org
no_remember: False
priority: 0
startup_paused: False
  Result:
OpExecError
[Disk consistency error]
  Execution log:
1:2013-02-09 22:09:41.099922:message  - WARNING: Could not prepare 
block device disk/0 on node clementi.debian.org (is_primary=False, pass=1): 
Error while assembling disk: Can't activate lv 
/dev/vg0/9fc9ec56-ddf1-42ee-81a3-407478e34509.disk0:   One or more specified 
logical volume(s) not found.\n
2:2013-02-09 22:09:41.184950:message  - WARNING: Could not prepare 
block device disk/1 on node clementi.debian.org (is_primary=False, pass=1): 
Error while assembling disk: Can't activate lv 
/dev/vg0/16d72a18-b097-4bfb-aad3-42efea42073f.disk1:   One or more specified 
logical volume(s) not found.\n
3:2013-02-09 22:09:41.259914:message  - WARNING: Could not prepare 
block device disk/2 on node clementi.debian.org (is_primary=False, pass=1): 
Error while assembling disk: Can't activate lv 
/dev/vg0/6ae06036-07a1-465c-93ad-4bb0f21eeebd.disk2:   One or more specified 
logical volume(s) not found.\n
4:2013-02-09 22:09:41.340190:message  - WARNING: Could not prepare 
block device disk/0 on node clementi.debian.org (is_primary=True, pass=2): 
Error while assembling disk: Can't activate lv 
/dev/vg0/9fc9ec56-ddf1-42ee-81a3-407478e34509.disk0:   One or more specified 
logical volume(s) not found.\n
5:2013-02-09 22:09:41.417764:message  - WARNING: Could not prepare 
block device disk/1 on node clementi.debian.org (is_primary=True, pass=2): 
Error while assembling disk: Can't activate lv 
/dev/vg0/16d72a18-b097-4bfb-aad3-42efea42073f.disk1:   One or more specified 
logical volume(s) not found.\n
6:2013-02-09 22:09:41.495581:message  - WARNING: Could not prepare 
block device disk/2 on node clementi.debian.org (is_primary=True, pass=2): 
Error while assembling disk: Can't activate lv 
/dev/vg0/6ae06036-07a1-465c-93ad-4bb0f21eeebd.disk2:   One or more 

Bug#699913: linux-image-3.2.0-4-amd64: Memory hotplug (VMware) often fails

2013-02-11 Thread Bernhard Schmidt
On 11.02.2013 02:09, Ben Hutchings wrote:

Hello,

thanks will do. Your description fits quite well, we've been unable to
reproduce with a freshly booted system even in production, but most VMs
that were upgraded due to memory shortage failed.

Bernhard

 Control: tag -1 upstream moreinfo
 
 On Wed, 2013-02-06 at 18:02 +0100, Bernhard Schmidt wrote:
 Package: src:linux
 Version: 3.2.35-2
 Severity: normal

 Adding additional RAM to a virtual machine running Debian Wheezy on
 VMware ESXi 5.0 often, but not always leads to the attached backtrace.

 If that happens, the system has considerably less new (offline) memory 
 banks in /sys/devices/system/memory/memory* than it should have, and 
 setting all available memory banks online does not give all the memory
 expected.
 [...]
 
 Please test whether the attached patch fixes this.  Instructions for
 building a patched kernel package are in the Debian kernel handbook:
 http://kernel-handbook.alioth.debian.org/ch-common-tasks.html#s-common-official.
 
 Ben.
 


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



Bug#700289: wordpress 2.5.1 needs tinymce update

2013-02-11 Thread Jason Lingohr
I forgot to mention that - I too did all the usual plugin disabling and #define 
voodoo that WP suggest. 
.

Bug#700088: boxshade: fails finding the alignment file

2013-02-11 Thread giorgio maccari
Dear Maintainer,

The patch that I have submitted on Friday seems to works well just as a
temporary fix to bug 700088 but, as Charles Plessy said, there are still
problems concerning the selection of the default options. Also this is due
to the Gets function declared in bx_read.c. Please consider the new version
of the patch that you will found attached to this mail, as a fix for both
bug 700088 and for the selection of default options.

All my best,
Giorgio Maccari.

PATCH#
Description: Removes trailing newlines from standard inputs.
Author: Giorgio Maccari giorgio.macc...@gmail.com
Bug-Debian: http://bugs.debian.org/700088
--- boxshade-3.3.1.old/bx_read.c 2013-02-08 15:20:14.0 +0100
+++ boxshade-3.3.1/bx_read.c 2013-02-11 10:21:04.575015837 +0100
@@ -4,7 +4,11 @@

 char *Gets(char *s, size_t length) {
   fflush(stdout);
-  return fgets(s,length,stdin);
+  fgets(s,length,stdin);
+  char *pos;
+  if ((pos=strchr(s, '\n')) != NULL)
+*pos = '\0';
+  return s;
 }

 /*



remove-newlines.patch
Description: Binary data


Bug#700281: git-annex: unknown command webapp

2013-02-11 Thread Raf Czlonka
On Mon, Feb 11, 2013 at 12:50:39AM GMT, Joey Hess wrote:
 Raf Czlonka wrote:
  Architecture: powerpc (ppc)
 
 Template haskell is not currently available for the powerpc architecture.
 The git-annex webapp uses yesod, which is a heavy user of template
 haskell.

I thought that might be the case - seven years I've been using this
laptop and there's always some problems with either endianness or
processor architecture in general so (unfortunately) got used to it ;^)

I did some digging and the only missing build dependencies I found,
after some minutes of going through buildd logs, were:

- haskell-yesod (= 1.0.1.6-2) build-depends on missing:
  - libghc-hamlet-dev ( 1.0)

Source package for libghc-hamlet-dev is haskell-hamlet:

- haskell-hamlet (= 1.0.1.3-1) build-depends on missing:
  - ghc-ghci

But ghc-ghci is a virtual package provided by ghc package which has the
same version on all platforms apart from hppa and m68k. Since it's only
a virtual package, and the versions match I am a bit lost.

Could you shed some more light on that, please?

Kind regards,

Raf


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



Bug#697351: please update built-in hints with new address of D.ROOT-SERVERS.NET

2013-02-11 Thread Thijs Kinkhorst
Hi Robert,

 According to [1] and as confirmed by the current root-servers.net zone,
 D.ROOT-SERVERS.NET has changed its IPv4 address.

Can you update this in wheezy and squeeze?

The window for the next point update for squeeze probably closes soon.


Cheers,
Thijs


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



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

2013-02-11 Thread Mathieu Malaterre
unarchive 628285
reopen 628285
thanks

Fabrizio,

  Where do you see a base64.js ?

Steps:

  svn checkout http://evoluspencil.googlecode.com/svn/trunk/
evoluspencil-read-only
  cd evoluspencil-read-only
  find . -name base64.js
  find . | grep base64
- empty

Thanks,


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



Bug#700281: git-annex: unknown command webapp

2013-02-11 Thread Raf Czlonka
On Mon, Feb 11, 2013 at 09:40:18AM GMT, Raf Czlonka wrote:
 Could you shed some more light on that, please?

After I sent the last email I dug just a tad deeper and voila [0] ;^)
Seems to have been fixed upstream though [1].

[0] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631073
[1] http://hackage.haskell.org/trac/ghc/ticket/2972

Cheers,

Raf


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



Bug#700296: RFS: libapache2-mod-geoip/1.2.8-1 [ITA] -- GeoIP support for apache2

2013-02-11 Thread Prach Pongpanich
Package: sponsorship-requests
Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package libapache2-mod-geoip

 * Package name: libapache2-mod-geoip
   Version : 1.2.8-1
   Upstream Author : MaxMind
 * URL : http://www.maxmind.com/app/mod_geoip
 * License : Apache-1.1
   Section : httpd

  It builds those binary packages:

libapache2-mod-geoip - GeoIP support for apache2

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/libapache2-mod-geoip


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/liba/libapache2-mod-geoip/libapache2-mod-geoip_1.2.8-1.dsc


  Changes since the last upload:

libapache2-mod-geoip (1.2.8-1) experimental; urgency=low

  * New maintainer. (Closes: #670999)
  * New upstream release. (Closes: #666795)
- Support Aapche 2.4
  * Adapt sourceful transition towards Apache 2.4 patch from Arno Töll
- Replace apache2-threaded-dev with apache2-dev in Build-Depends.
- Drop apache2.2-common in Depends.
- Drop libapache2-mod-geoip.{install,postinst,postrm}.
- Add libapache2-mod-geoip.apache2.
- Add dh_apache2 in rules.
  * Bump to Standards-Version 3.9.4, no changes needed.

 Regrads,
 Prach


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



Bug#700299: gnome-settings-daemon: AccessX enabled by default leading to spontaneous XKB SlowKeys enables

2013-02-11 Thread Andrew Shadura
Package: gnome-settings-daemon
Version: 3.4.2+git20121218.7c1322-1
Severity: important

Dear Maintainer,

See https://bugzilla.redhat.com/show_bug.cgi?id=816764

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

Kernel: Linux 3.2.0-4-686-pae (SMP w/3 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-settings-daemon depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.12.1-3
ii  dpkg 1.16.9
ii  gsettings-desktop-schemas3.4.2-3
ii  libatk1.0-0  2.4.0-2
ii  libc62.13-37
ii  libcairo-gobject21.12.2-2
ii  libcairo21.12.2-2
ii  libcanberra-gtk3-0   0.28-6
ii  libcanberra0 0.28-6
ii  libcolord1   0.1.21-1
ii  libcomerr2   1.42.5-1
ii  libcups2 1.5.3-2.13
ii  libdbus-glib-1-2 0.100-1
ii  libfontconfig1   2.9.0-7.1
ii  libgcrypt11  1.5.0-3
ii  libgdk-pixbuf2.0-0   2.26.1-1
ii  libglib2.0-0 2.34.3-1
ii  libgnome-desktop-3-2 3.4.2-1
ii  libgnomekbd7 3.4.0.2-1
ii  libgnutls26  2.12.20-2
ii  libgssapi-krb5-2 1.10.1+dfsg-3
ii  libgtk-3-0   3.4.2-5
ii  libgudev-1.0-0   175-7
ii  libk5crypto3 1.10.1+dfsg-3
ii  libkrb5-31.10.1+dfsg-3
ii  liblcms2-2   2.2+git20110628-2.2
ii  libnotify4   0.7.5-1
ii  libnspr4 2:4.9.4-2
ii  libnspr4-0d  2:4.9.4-2
ii  libnss3  2:3.14.1.with.ckbi.1.93-1
ii  libnss3-1d   2:3.14.1.with.ckbi.1.93-1
ii  libpackagekit-glib2-14   0.7.6-1
ii  libpango1.0-01.30.0-1
ii  libpolkit-gobject-1-00.105-3
ii  libpulse-mainloop-glib0  2.0-6
ii  libpulse02.0-6
ii  libsqlite3-0 3.7.15.1-1
ii  libupower-glib1  0.9.17-1
ii  libwacom20.6-1
ii  libx11-6 2:1.5.0-1
ii  libxfixes3   1:5.0-4
ii  libxi6   2:1.6.1-1
ii  libxklavier165.2.1-1
ii  libxtst6 2:1.2.1-1
ii  nautilus-data3.4.2-1+build1
ii  zlib1g   1:1.2.7.dfsg-13

Versions of packages gnome-settings-daemon recommends:
pn  pulseaudio  none

Versions of packages gnome-settings-daemon suggests:
ii  gnome-screensaver3.4.1-1
ii  metacity [x-window-manager]  1:2.34.3-4
ii  wmii [x-window-manager]  3.10~hg0.20120521-1
ii  x11-xserver-utils7.7~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#692929: Reopen request: ncpmount must be installed suid root_

2013-02-11 Thread Simon L
Is there going to be a fix for this at some point?  The alternatives to 
it are significantly worse in terms of perfomance (SSHFS etc).


Many thanks,

Simon


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



Bug#699351: UPnP forum communication: UPnP Forum Responds to Recently Identified LibUPnP/MiniUPnP Security Flaw

2013-02-11 Thread VALETTE Eric OLNC/OLPS

Extract from official communication:

For gateway vendors both affected and unaffected by this identified 
flaw, the UPnP Forum continues to advise that vendors implement the 
latest version of the Internet Gateway Device (v2) rather than the V1 
that is deployed today. Along with our Device Protection standard, this 
specification provides numerous enhancements for security as well as 
necessary enhancements like the growing deployment of IPv6.


--
Eric Valette
Orange Lab Product and Services
Homebox Etudes Architecture et Développement
Architecte Livebox et Set Top Box
tél : (+33) 2 99 12 45 71
mél : mailto:eric2.vale...@orange.com


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



Bug#699221: gstreamer0.11: should this package be removed?

2013-02-11 Thread Sebastian Dröge
reassign 699221 ftp.debian.org
title 699221 RoM - gstreamer0.11
thanks

On Di, 2013-01-29 at 08:59 +, Simon McVittie wrote:
 Source: gstreamer0.11
 Severity: normal
 
 I notice that bits of Gst 0.11 (gstreamer0.11 and gst-plugins-base0.11) are
 still available from experimental. 0.11 was a development branch leading
 to 1.0, which is in unstable now, so perhaps 0.11 should disappear?
 
 If you agree, please reassign to ftp.debian.org.

Yes, gstreamer0.11 and gst-plugins-base0.11 should be removed.


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


Bug#680469: [Freedombox-discuss] status of lxc in debian wheezy

2013-02-11 Thread Rob van der Hoeven
On Mon, 2013-02-11 at 09:53 +0100, Daniel Baumann wrote:
 On 02/10/2013 01:35 PM, Rob van der Hoeven wrote:
  my solution is: remove the
  non-functional Debian templates from the LXC package and replace them
  with my working template.
 
 i will not support your template, so note that you will have to take all 
 user support for the lifetime of the wheezy release with your template.

I will be happy to support the template. I'm not a Debian maintainer so
how would this work? 

BTW, please do not think i don't appreciate the work you have done on
LXC in Debian. It's a real shame your templates are broken by the
missing live-debconfig. Maybe your templates can be installed by
backports later on?

Rob.
http://freedomboxblog.nl


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



Bug#700297: exim4: to send mails is impossible with port 587

2013-02-11 Thread Pierre Crescenzo
Package: exim4
Version: 4.77-1
Severity: important

Hello,

To send mails is possible with port 587 with version 4.77-1 of exim4 but is
impossible with more recent versions in testing. This problem is here since a
few months.

Example :

pierre@tpol:~$ mail pie...@crescenzo.nom.fr
Subject: test 1
test 1
.
Cc:
pierre@tpol:~$


and


root@tpol:~# mailq
 0m  1.3K 1U4UZO-0004QY-Qw  *** frozen ***
  pierre.cresce...@unice.fr


Thank you!

Regards,

Pierre Crescenzo



-- Package-specific info:
Exim version 4.77 #3 built 14-Nov-2011 22:52:14
Copyright (c) University of Cambridge, 1995 - 2007
Berkeley DB: Berkeley DB 5.1.25: (January 28, 2011)
Support for: crypteq iconv() IPv6 GnuTLS move_frozen_messages DKIM
Lookups (built-in): lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz 
dnsdb dsearch nis nis0 passwd
Authenticators: cram_md5 plaintext
Routers: accept dnslookup ipliteral manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore autoreply lmtp pipe smtp
Fixed never_users: 0
Size of off_t: 8
Configuration file is /var/lib/exim4/config.autogenerated
# /etc/exim4/update-exim4.conf.conf
#
# Edit this file and /etc/mailname by hand and execute update-exim4.conf
# yourself or use 'dpkg-reconfigure exim4-config'
#
# Please note that this is _not_ a dpkg-conffile and that automatic changes
# to this file might happen. The code handling this will honor your local
# changes, so this is usually fine, but will break local schemes that mess
# around with multiple versions of the file.
#
# update-exim4.conf uses this file to determine variable values to replace
# the DEBCONFsomethingDEBCONF strings in the configuration template files.
#
# Most settings found in here do have corresponding questions in the
# Debconf configuration, but not all of them.
#
# This is a Debian specific file

dc_eximconfig_configtype='smarthost'
dc_other_hostnames='tpol.unice.fr'
dc_local_interfaces='127.0.0.1'
dc_readhost='unice.fr'
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost='smtp.unice.fr::587'
CFILEMODE='644'
dc_use_split_config='false'
dc_hide_mailname='true'
dc_mailname_in_oh='true'
dc_localdelivery='mail_spool'
mailname:tpol.unice.fr

-- System Information:
Debian Release: 7.0
Architecture: i386 (i686)

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

Versions of packages exim4 depends on:
ii  cdebconf [debconf-2.0]  0.181
ii  debconf [debconf-2.0]   1.5.49
ii  exim4-base  4.77-1
ii  exim4-daemon-light  4.77-1+b1

exim4 recommends no packages.

exim4 suggests no packages.

-- debconf information:
  exim4/drec:


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



Bug#699724: radicale: Insufficient dependency on python-radicale

2013-02-11 Thread Jonas Smedegaard
Quoting Salvatore Bonaccorso (2013-02-11 07:38:44)
 Hi Jonas
 
 On Mon, Feb 11, 2013 at 05:37:06AM +0100, Jonas Smedegaard wrote:
  Quoting Salvatore Bonaccorso (2013-02-10 21:26:46)
   Hi Jonas, Hi Martin
   
   On Mon, Feb 04, 2013 at 04:12:00AM +0100, Cyril Brulebois wrote:
Package: radicale
Version: 0.7-1
Severity: serious
Tags: patch
Justification: dependency issue

Hi,

radicale depends on python-radicale, without a version. Partial upgrades
from squeeze can leave python-radicale at 0.3-2, leading to:
| ~$ /usr/bin/radicale -H 127.0.0.1 -p 8765
| Traceback (most recent call last):
|   File /usr/bin/radicale, line 29, in module
| import radicale.__main__
| ImportError: No module named __main__

Tagging as patch as adding (= ${binary:Version) or ditto with = should
fix this.
   
   Looking trough the RC bugs open for wheezy I noticed #699724 on
   package radicale.
   
   Do you have time to prepare a fix for this? I can prepare a NMU and
   upload to DELAYED/5 queue, so there will be enought time to cancel it
   in case.
  
  You are quite welcome to upload without delay (I am on LowNMU list).
  
  The package is in collab-maint: Would be nice if you commit and release 
  with git-buildpackage.
  
  Thanks for your help, however you do it,
 
 Thank you! I will prepare an upload later on today and will push the
 changes to collab-maint git repo!

Excellent!

NB! You need not worry about CDBS if you don't want to - just add the 
new dependency to control file directly (i.e. ignore control.in) and I 
can integrate with CDBS later.


 - Jonas

-- 
 * Jonas Smedegaard - idealist  Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: signature


Bug#700298: munin: never cleans /var/lib/munin/cgi-tmp

2013-02-11 Thread Helmut Grohne
Package: munin
Version: 2.0.6-3
Severity: wishlist

When using cgi graphing the /var/lib/munin/cgi-tmp directory is filled
with images over time. The amount is limited by the number of plugins
and hosts, but if they change old files are never cleaned. Files in
there generally lose any validity after one day. I therefore propose
adding a daily cron job to remove old images.

$ cat /etc/cron.daily/munin-cgi-tmp
#!/bin/sh
find /var/lib/munin/cgi-tmp/ -type f -mtime +1 -delete
find /var/lib/munin/cgi-tmp/ -type d -mindepth 1 -empty -delete
$

As a little nitpickery, the directory should be located in /var/cache to
comply with FHS.

Helmut


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



Bug#681133: [libreoffice-impress] also on i386

2013-02-11 Thread Rene Engelhard
[ good that the BTS didn't even send me the initial bugreport afair. Now it's
too late for wheezy ]

Hi,

On Sun, Feb 10, 2013 at 10:31:43PM +0100, Francesco Muzio wrote:
when I choose to close the window it silently crash and a message like
this
 
soffice.bin[10904]: segfault at 73 ip b5a41c72 sp bfd11468 error 4 in
libvcllo.so[b58da000+72f000]

Ah. Good. Please test with a supported version. 3.5.4 is dead. And maybe
give some backtrace so googling and/or looking up in bugzilla can find 
something.
The above one is not useful.

Either with 3.6.5 (was replaced by 4.0.0 but is still available at
http://people.debian.org/~rene/libreoffice/3.6.5/ or experimentals 4.0.0)
Sorry, didn't upload 3.5.7 packages anywhere yet...

Regards,

Rene


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



Bug#700300: infinoted: needs Breaks: infinoted-0.4 and needs to clean up forgotten alternative

2013-02-11 Thread Andreas Beckmann
Package: infinoted
Version: 0.5.2-6
Severity: serious
Tags: patch
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package left unowned files on
the system after purge, which is a violation of policy 6.8:

http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-removedetails

The leftover files are actually alternatives that were installed by the
package but have not been properly removed.

This was observed on upgrades from squeeze to wheezy.

Since infinoted has stopped using alternatives and instead it ships the
/usr/bin/infinoted symlink, there needs to be Breaks: against all
packages that were still using alternatives to handle infinoted.

Furthermore the infinoted-0.4/squeeze package does not clean up the
alternative on removal (it tries to remove a infinoted-0.3 alternative
instead), so this should be handled by infinoted/wheezy, too.

From the attached log (scroll to the bottom...):

0m56.6s INFO: Warning: Package purging left files on system:
  /etc/alternatives/infinoted - /usr/bin/infinoted-0.4  not owned
  /usr/bin/infinoted - /etc/alternatives/infinoted  owned by: infinoted

Filing this as serious as mixing shipped symlinks and alternatives can
easily break things, as seen above: /usr/bin/infinoted still points to
infinoted-0.4 via the alternative instead of -0.5 as in the shipped
symlink.

I'll attach a patch once I got the bug number and intend to NMU
libinfinity in a few days to get this fixed in wheezy.


cheers,

Andreas


infinoted_0.5.2-6.log.gz
Description: GNU Zip compressed data


Bug#700301: gfortran: Fails to assign slice to allocatable array of derived type

2013-02-11 Thread Stanislav Fyodorov
Package: gfortran
Version: 4:4.7.2-1
Severity: normal

Dear Maintainer,

The code below leads to segmentaion fault:

program allocatables

   implicit none

   integer, parameter :: CH_ = 4 
   type with_character
   character(kind=CH_)   :: Post = CH__ 
   integer:: i = 0
   end type
   
   type with_string
   character(4, kind=CH_)   :: Post = CH__ 
   integer:: i = 0
   end type

   type(with_character) :: CharList(10)
   type(with_string) :: StringList(10)
   type(with_character), allocatable :: CharAlloc(:)
   type(with_string), allocatable :: StringAlloc(:)

   CharAlloc%Post = CharList%Post
   CharAlloc = Pack(CharAlloc(2:), .true.) ! First segmentation fault.

   StringAlloc%Post = StringList%Post
   StringAlloc = Pack(StringList(2:), .true.) ! Second segmentation fault of 
another type.
end program allocatables

=
First segmentation fault:
 malloc.c:3096: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *)
 ((av)-bins[((1) - 1) * 2])) - __builtin_offsetof (struct
 malloc_chunk, fd  old_size == 0) || ((unsigned long) (old_size)
 = (unsigned long)__builtin_offsetof (struct malloc_chunk,
 fd_nextsize))+((2 * (sizeof(size_t))) - 1))  ~((2 * (sizeof(size_t)))
 - 1)))  ((old_top)-size  0x1)  ((unsigned long)old_end 
 pagemask) == 0)' failed.

 Program received signal SIGABRT: Process abort signal.

 Backtrace for this error:

==
Second segmentation fault:

*** glibc detected *** ./lab_1_3.exe: free(): invalid next size
(normal): 0x022690d0 ***
=== Backtrace: =
/lib/x86_64-linux-gnu/libc.so.6(+0x76d76)[0x2b7871151d76]
/lib/x86_64-linux-gnu/libc.so.6(cfree+0x6c)[0x2b7871156aac]
../lab_1_3.exe[0x400fa7]
../lab_1_3.exe[0x400ff3]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfd)[0x2b78710f9ead]
../lab_1_3.exe[0x400969]
=== Memory map: 
0040-00402000 r-xp  08:02 1843005
/home/stanislav/tmp/lab_1_3/bin/lab_1_3.exe
00601000-00602000 rw-p 1000 08:02 1843005
/home/stanislav/tmp/lab_1_3/bin/lab_1_3.exe
02266000-02287000 rw-p  00:00 0
[heap]
2b78704d5000-2b78704f5000 r-xp  08:01 1450064
/lib/x86_64-linux-gnu/ld-2.13.so
2b78704f5000-2b78704f7000 rw-p  00:00 0 
2b78706f4000-2b78706f5000 r--p 0001f000 08:01 1450064
/lib/x86_64-linux-gnu/ld-2.13.so
2b78706f5000-2b78706f6000 rw-p 0002 08:01 1450064
/lib/x86_64-linux-gnu/ld-2.13.so
2b78706f6000-2b78706f7000 rw-p  00:00 0 
2b78706f7000-2b787080b000 r-xp  08:01 1308169
/usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0
2b787080b000-2b7870a0b000 ---p 00114000 08:01 1308169
/usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0
2b7870a0b000-2b7870a0d000 rw-p 00114000 08:01 1308169
/usr/lib/x86_64-linux-gnu/libgfortran.so.3.0.0
2b7870a0d000-2b7870a8e000 r-xp  08:01 1450058
/lib/x86_64-linux-gnu/libm-2.13.so
2b7870a8e000-2b7870c8d000 ---p 00081000 08:01 1450058
/lib/x86_64-linux-gnu/libm-2.13.so
2b7870c8d000-2b7870c8e000 r--p 0008 08:01 1450058
/lib/x86_64-linux-gnu/libm-2.13.so
2b7870c8e000-2b7870c8f000 rw-p 00081000 08:01 1450058
/lib/x86_64-linux-gnu/libm-2.13.so
2b7870c8f000-2b7870c9 rw-p  00:00 0 
2b7870c9-2b7870ca5000 r-xp  08:01 1439008
/lib/x86_64-linux-gnu/libgcc_s.so.1
2b7870ca5000-2b7870ea5000 ---p 00015000 08:01 1439008
/lib/x86_64-linux-gnu/libgcc_s.so.1
2b7870ea5000-2b7870ea6000 rw-p 00015000 08:01 1439008
/lib/x86_64-linux-gnu/libgcc_s.so.1
2b7870ea6000-2b7870edb000 r-xp  08:01 1311727
/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
2b7870edb000-2b78710da000 ---p 00035000 08:01 1311727
/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
2b78710da000-2b78710db000 rw-p 00034000 08:01 1311727
/usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0
2b78710db000-2b787125b000 r-xp  08:01 1450061
/lib/x86_64-linux-gnu/libc-2.13.so
2b787125b000-2b787145b000 ---p 0018 08:01 1450061
/lib/x86_64-linux-gnu/libc-2.13.so
2b787145b000-2b787145f000 r--p 0018 08:01 1450061
/lib/x86_64-linux-gnu/libc-2.13.so
2b787145f000-2b787146 rw-p 00184000 08:01 1450061
/lib/x86_64-linux-gnu/libc-2.13.so
2b787146-2b7871467000 rw-p  00:00 0 
2b787400-2b7874021000 rw-p  00:00 0 
2b7874021000-2b787800 ---p  00:00 0 
7fffa2f9d000-7fffa2fbe000 rw-p  00:00 0
[stack]
7fffa2fff000-7fffa300 r-xp  00:00 0
[vdso]
ff60-ff601000 r-xp  00:00 0
[vsyscall]

Program received signal SIGABRT: Process abort signal.

Backtrace for this error:



First error doesn't apears if CH_ = 1 in code.

-- System Information:
Debian Release: 6.0.6
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 
'proposed-updates'), (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

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

Bug#700297: exim4: to send mails is impossible with port 587

2013-02-11 Thread Marc Haber
On Mon, Feb 11, 2013 at 11:05:27AM +0100, Pierre Crescenzo wrote:
 To send mails is possible with port 587 with version 4.77-1 of exim4 but is
 impossible with more recent versions in testing. This problem is here since a
 few months.

What do your logs say?

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 31958061
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 31958062


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



Bug#699656: general: System freezes while using multimedia via DRI [Intel 82865G chip] on kernels above 3.2.0-3-686-pae

2013-02-11 Thread marc_sm...@gmx.com

11.02.2013 03:33, Ben Hutchings wrote:

I realise it's critical to you, but if it doesn't affect other users
then I'm afraid it's just not that high a priority.  Most i865 systems
have been thrown out by now, and to be brutally honest I personally a
more concerned about supporting today's hardware properly.

You should also test with the older kernel to confirm that this is a
software and not hardware failure.  You can get older package versions
from http://snapshot.debian.org/package/linux/.  I would guess that
you were previously using version 3.2.23-1 (please don't mix up the
package version with the ABI version in the package name).

If that older version still works then please also test the intermediate
package versions 3.2.29-1 and 3.2.30-1.  This should give us a smaller
range of changes to consider.

If you have time then you could also test the package linked from
http://bugs.debian.org/687442#131.  I don't expect this to make a
difference but they might.

Ben.



Ok. So much for the backward Debian Linux compatibility, I suppose.
What hardware user wants to use is the user's decision, and it most 
certainly makes sense for that user.


If it ain't broken - don't fix it

That's for the hardware. For the software it should be:

If it's broken - fix it

But I understand developers are not interrested in fixing ALL bugs. As a 
programmer - however - you should prorobly know that the old bugs tend 
to bite developers in their back even after many years. Also, breaking 
the old code to fix new code isn't the best practice, as one could imagine.


I already tested it with many kernels - older and newer. Both older and 
newer kernels don't break anything. The ones I submitted to bugreport do.
I've already described everything in my previous messages. I would 
probobly not mix ABI with package version, but this whole naming scheme 
is highly confusing and - as an amateur programmer and regular user - I 
don't understand it.


I don't know if that makes a difference, but I observed [DIFF] 
differences between two kernel version's configs - the one that's 
working and the newer one that doesn't work:


 CONFIG_FB_I810_GTF=y
 CONFIG_FB_I810_I2C=y


Thank you for your time


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



Bug#700300: infinoted: needs Breaks: infinoted-0.4 and needs to clean up forgotten alternative

2013-02-11 Thread Andreas Beckmann
Followup-For: Bug #700300

Attaching the patch.

Andreas
diffstat for libinfinity-0.5.2 libinfinity-0.5.2

 changelog |   10 ++
 control   |2 +-
 infinoted.preinst |   11 +++
 3 files changed, 22 insertions(+), 1 deletion(-)

diff -Nru libinfinity-0.5.2/debian/changelog libinfinity-0.5.2/debian/changelog
--- libinfinity-0.5.2/debian/changelog	2012-11-27 14:32:21.0 +0100
+++ libinfinity-0.5.2/debian/changelog	2013-02-11 13:36:07.0 +0100
@@ -1,3 +1,13 @@
+libinfinity (0.5.2-6.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * infinoted: Add Breaks: infinoted-0.4, infinoted-0.3 as they handled
+/usr/bin/infinoted via alternatives.
+  * infinoted.preinst: Remove the alternative left over after removal of
+infinoted-0.4.  (Closes: #700300)
+
+ -- Andreas Beckmann a...@debian.org  Mon, 11 Feb 2013 13:17:42 +0100
+
 libinfinity (0.5.2-6) unstable; urgency=low
 
   * Add a patch that fixes a crash when trying to show a selection
diff -Nru libinfinity-0.5.2/debian/control libinfinity-0.5.2/debian/control
--- libinfinity-0.5.2/debian/control	2012-10-24 00:06:54.0 +0200
+++ libinfinity-0.5.2/debian/control	2013-02-11 10:45:59.0 +0100
@@ -101,7 +101,7 @@
 Pre-Depends: dpkg (= 1.15.6)
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Replaces: infinoted-0.5 ( 0.5.2-3~)
-Breaks: infinoted-0.5 ( 0.5.2-3~)
+Breaks: infinoted-0.5 ( 0.5.2-3~), infinoted-0.4, infinoted-0.3
 Description: dedicated server for infinote-based collaborative editing
  infinoted is a dedicated server which allows clients to edit plain text
  documents and source files collaboratively over a network. Changes
diff -Nru libinfinity-0.5.2/debian/infinoted.preinst libinfinity-0.5.2/debian/infinoted.preinst
--- libinfinity-0.5.2/debian/infinoted.preinst	1970-01-01 01:00:00.0 +0100
+++ libinfinity-0.5.2/debian/infinoted.preinst	2013-02-11 12:37:48.0 +0100
@@ -0,0 +1,11 @@
+#!/bin/sh
+set -e
+
+if [ $1 = install ] || [ $1 = upgrade ]
+then
+	# removal of infinoted-0.4/squeeze unregisters the wrong alternative
+	# and leaves this behind
+	update-alternatives --remove infinoted /usr/bin/infinoted-0.4
+fi
+
+#DEBHELPER#


Bug#700297: exim4: to send mails is impossible with port 587

2013-02-11 Thread Pierre Crescenzo
Hello,

 To send mails is possible with port 587 with version 4.77-1 of exim4
 but is impossible with more recent versions in testing. This problem
 is here since a few months.

 What do your logs say?

For example in /var/log/exim4/mainlog:


2013-02-10 11:55:09 exim 4.80 daemon started: pid=15289, -q30m, listening for 
SMTP on [127.0.0.1]:25
2013-02-10 11:55:09 Start queue run: pid=15291
2013-02-10 11:55:09 End queue run: pid=15291
2013-02-10 11:55:36 1U4UZM-0004QQ-5d = pierre.cresce...@unice.fr U=pierre 
P=local S=377
2013-02-10 11:55:37 1U4UZM-0004QQ-5d TLS error on connection to naxos2.unice.fr 
[134.59.1.112] (gnutls_handshake): The Diffie-Hellman prime sent by the server 
is not acceptable (not long enough).
2013-02-10 11:55:37 1U4UZM-0004QQ-5d TLS session failure: delivering 
unencrypted to naxos2.unice.fr [134.59.1.112] (not in hosts_require_tls)
2013-02-10 11:55:38 1U4UZM-0004QQ-5d cram_md5 authenticator failed 
H=naxos2.unice.fr [134.59.1.112] 535 5.7.0 authentication failed
2013-02-10 11:55:38 1U4UZM-0004QQ-5d ** pie...@crescenzo.nom.fr R=smarthost 
T=remote_smtp_smarthost: SMTP error from remote mail server after MAIL 
FROM:pierre.cresce...@unice.fr SIZE=1411: host naxos2.unice.fr 
[134.59.1.112]: 530 5.7.0 Authentication required
2013-02-10 11:55:38 1U4UZO-0004QY-Qw =  R=1U4UZM-0004QQ-5d U=Debian-exim 
P=local S=1354
2013-02-10 11:55:38 1U4UZM-0004QQ-5d Completed


(The same mail is OK with version 4.77-1 of exim4.)

Thank you.

Regards,

-- 
  Pierre Crescenzo
mailto:pie...@crescenzo.nom.fr
http://www.crescenzo.nom.fr/


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



Bug#700302: unblock: ctwm/3.7-3.3

2013-02-11 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package ctwm

  * Correctly remove the x-window-manager alternative on package removal.
(Closes: #668449)

Leaving a broken symlink in /usr/bin is not nice.

unblock ctwm/3.7-3.3
diffstat for ctwm_3.7-3.2 ctwm_3.7-3.3

 changelog |8 
 prerm |2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff -u ctwm-3.7/debian/changelog ctwm-3.7/debian/changelog
--- ctwm-3.7/debian/changelog
+++ ctwm-3.7/debian/changelog
@@ -1,3 +1,11 @@
+ctwm (3.7-3.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Correctly remove the x-window-manager alternative on package removal.
+(Closes: #668449)
+
+ -- Andreas Beckmann a...@debian.org  Wed, 30 Jan 2013 15:35:21 +0100
+
 ctwm (3.7-3.2) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u ctwm-3.7/debian/prerm ctwm-3.7/debian/prerm
--- ctwm-3.7/debian/prerm
+++ ctwm-3.7/debian/prerm
@@ -14,7 +14,7 @@
 case $1 in
   upgrade|failed-upgrade) ;;
   remove|deconfigure)
-update-alternatives --remove x-window-manager /usr/bin/X11/ctwm
+update-alternatives --remove x-window-manager /usr/bin/ctwm
 ;;
 esac
 


Bug#700303: vim-gtk: vim-athena conflicts with vim-gtk

2013-02-11 Thread Anthony Campbell
Package: vim-gtk
Version: 2:7.3.547-7
Severity: normal


Following the recent change to vim-athena, gvim was producing a screen
with very small fonts. I could no longer change the text font via gfn.
I purged vim-athena and everything came back to normal.


-- Package-specific info:

--- real paths of main Vim binaries ---
/usr/bin/vi is /usr/bin/vim.gtk
/usr/bin/vim is /usr/bin/vim.gtk
/usr/bin/gvim is /usr/bin/vim.gtk

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

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

Versions of packages vim-gtk depends on:
ii  libacl1 2.2.51-8
ii  libc6   2.13-38
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.33.12+really2.32.4-5
ii  libgpm2 1.20.4-6
ii  libgtk2.0-0 2.24.10-2
ii  libice6 2:1.0.8-2
ii  liblua5.1-0 5.1.5-4
ii  libpango1.0-0   1.30.0-1
ii  libperl5.14 5.14.2-18
ii  libpython2.72.7.3-6
ii  libruby1.9.11.9.3.194-5
ii  libselinux1 2.1.9-5
ii  libsm6  2:1.2.1-2
ii  libtinfo5   5.9-10
ii  libx11-62:1.5.0-1
ii  libxt6  1:1.1.3-1
ii  tcl8.5  8.5.11-2
ii  vim-common  2:7.3.547-7
ii  vim-gui-common  2:7.3.547-7
ii  vim-runtime 2:7.3.547-7

vim-gtk recommends no packages.

Versions of packages vim-gtk suggests:
pn  cscopenone
ii  gnome-icon-theme  3.4.0-2
ii  ttf-dejavu2.33-3
pn  vim-doc   none

-- 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#699656: general: System freezes while using multimedia via DRI [Intel 82865G chip] on kernels above 3.2.0-3-686-pae

2013-02-11 Thread Ben Hutchings
On Mon, 2013-02-11 at 13:34 +0100, marc_sm...@gmx.com wrote:
[...]
 I already tested it with many kernels - older and newer.  Both older and 
 newer kernels don't break anything. The ones I submitted to bugreport do.
 I've already described everything in my previous messages. I would 
 probobly not mix ABI with package version, but this whole naming scheme 
 is highly confusing and - as an amateur programmer and regular user - I 
 don't understand it.

Ignore the numbers in the package name.  Just look at the package
versions.

 I don't know if that makes a difference, but I observed [DIFF] 
 differences between two kernel version's configs - the one that's 
 working and the newer one that doesn't work:
 
   CONFIG_FB_I810_GTF=y
   CONFIG_FB_I810_I2C=y

These affect the i810fb driver, which you aren't using.

Are you going to test the versions I asked about, from
snapshot.debian.org?

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


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


Bug#700304: unblock: xview/3.2p1.4-28.1

2013-02-11 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package xview

  * Correctly remove the x-window-manager alternatives on package removal.
(Closes: #656450, #668448)

Leaving broken symlinks in /usr/bin is not nice.

Andreas

unblock xview/3.2p1.4-28.1
diffstat for xview-3.2p1.4 xview-3.2p1.4

 changelog   |8 
 olvwm.prerm |2 +-
 olwm.prerm  |2 +-
 3 files changed, 10 insertions(+), 2 deletions(-)

diff -Nru xview-3.2p1.4/debian/changelog xview-3.2p1.4/debian/changelog
--- xview-3.2p1.4/debian/changelog	2011-08-22 05:46:07.0 +0200
+++ xview-3.2p1.4/debian/changelog	2013-01-30 15:47:14.0 +0100
@@ -1,3 +1,11 @@
+xview (3.2p1.4-28.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Correctly remove the x-window-manager alternatives on package removal.
+(Closes: #656450, #668448)
+
+ -- Andreas Beckmann a...@debian.org  Wed, 30 Jan 2013 15:47:14 +0100
+
 xview (3.2p1.4-28) unstable; urgency=low
 
   * Adopting (closes: #560744)
diff -Nru xview-3.2p1.4/debian/olvwm.prerm xview-3.2p1.4/debian/olvwm.prerm
--- xview-3.2p1.4/debian/olvwm.prerm	2011-02-26 21:32:35.0 +0100
+++ xview-3.2p1.4/debian/olvwm.prerm	2013-01-16 02:19:58.0 +0100
@@ -7,6 +7,6 @@
 case $1 in
   upgrade) ;;
   remove|failed-upgrade|deconfigure)
-update-alternatives --remove x-window-manager /usr/bin/X11/olvwm-x-window-manager
+update-alternatives --remove x-window-manager /usr/bin/olvwm-x-window-manager
 ;;
 esac
diff -Nru xview-3.2p1.4/debian/olwm.prerm xview-3.2p1.4/debian/olwm.prerm
--- xview-3.2p1.4/debian/olwm.prerm	2011-02-26 21:32:35.0 +0100
+++ xview-3.2p1.4/debian/olwm.prerm	2013-01-16 02:20:12.0 +0100
@@ -7,6 +7,6 @@
 case $1 in
   upgrade) ;;
   remove|failed-upgrade|deconfigure)
-update-alternatives --remove x-window-manager /usr/bin/X11/olwm-x-window-manager
+update-alternatives --remove x-window-manager /usr/bin/olwm-x-window-manager
 ;;
 esac


Bug#700305: unblock: vnc4/4.1.1+X4.3.0-37.1

2013-02-11 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package vnc4

  * vnc4server.prerm: Correctly remove the vncconfig alternative.
(Closes: #656217)

Leaving a broken symlink in /usr/bin is not nice.

Andreas

unblock vnc4/4.1.1+X4.3.0-37.1
diff -u vnc4-4.1.1+X4.3.0/debian/vnc4server.prerm vnc4-4.1.1+X4.3.0/debian/vnc4server.prerm
--- vnc4-4.1.1+X4.3.0/debian/vnc4server.prerm
+++ vnc4-4.1.1+X4.3.0/debian/vnc4server.prerm
@@ -11,7 +11,7 @@
 update-alternatives --remove \
 	vncpasswd $BIN/vnc4passwd
 update-alternatives --remove \
-	vnc4config $BIN/vnc4config
+	vncconfig $BIN/vnc4config
 fi
 
 #DEBHELPER#
diff -u vnc4-4.1.1+X4.3.0/debian/changelog vnc4-4.1.1+X4.3.0/debian/changelog
--- vnc4-4.1.1+X4.3.0/debian/changelog
+++ vnc4-4.1.1+X4.3.0/debian/changelog
@@ -1,3 +1,11 @@
+vnc4 (4.1.1+X4.3.0-37.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * vnc4server.prerm: Correctly remove the vncconfig alternative.
+(Closes: #656217)
+
+ -- Andreas Beckmann a...@debian.org  Wed, 30 Jan 2013 17:05:12 +0100
+
 vnc4 (4.1.1+X4.3.0-37) unstable; urgency=low
 
   * Applied patch from Ben Armstrong sy...@debian.org that makes dpi


Bug#700240: [openstack-dev] Essex patch for CVE-2013-0270

2013-02-11 Thread Dolph Mathews
Dan Prince also wrote a more specific fix for the same issue and backported
it to essex here:
https://bugs.launchpad.net/keystone/+bug/1098307


-Dolph


On Sun, Feb 10, 2013 at 9:45 PM, Thomas Goirand z...@debian.org wrote:

 Hi,

 I've been notified of CVE-2013-0270 [1], and I would like to fix
 Keystone in Debian Wheezy. Is there an Essex version for what is
 available here:

 https://review.openstack.org/#/c/19567/

 Cheers,

 Thomas Goirand (zigo)

 [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700240

 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev



Bug#700306: unblock: spotweb/20111002+dfsg-4.1

2013-02-11 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package spotweb

  * spotweb.cron.hourly: Gracefully skip the cronjob with an exit code of 0
after the package was removed.  (Closes: #663030)

Cronjobs erroring out after package removal may produce unwanted log
noise.

Andreas

unblock spotweb/20111002+dfsg-4.1
diffstat for spotweb-20111002+dfsg spotweb-20111002+dfsg

 changelog   |8 
 spotweb.cron.hourly |4 +++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff -Nru spotweb-20111002+dfsg/debian/changelog spotweb-20111002+dfsg/debian/changelog
--- spotweb-20111002+dfsg/debian/changelog	2012-01-10 16:22:39.0 +0100
+++ spotweb-20111002+dfsg/debian/changelog	2013-02-03 23:09:14.0 +0100
@@ -1,3 +1,11 @@
+spotweb (20111002+dfsg-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * spotweb.cron.hourly: Gracefully skip the cronjob with an exit code of 0
+after the package was removed.  (Closes: #663030)
+
+ -- Andreas Beckmann a...@debian.org  Sun, 03 Feb 2013 23:09:14 +0100
+
 spotweb (20111002+dfsg-4) unstable; urgency=low
 
   * Update Dutch debconf translation
diff -Nru spotweb-20111002+dfsg/debian/spotweb.cron.hourly spotweb-20111002+dfsg/debian/spotweb.cron.hourly
--- spotweb-20111002+dfsg/debian/spotweb.cron.hourly	2012-01-10 16:22:39.0 +0100
+++ spotweb-20111002+dfsg/debian/spotweb.cron.hourly	2013-01-30 20:25:51.0 +0100
@@ -1,3 +1,5 @@
 #!/bin/sh
 
-[ -e /usr/share/spotweb/scripts/retrieve.sh ]  /usr/share/spotweb/scripts/retrieve.sh  /var/log/spotweb.log
+test -x /usr/share/spotweb/scripts/retrieve.sh || exit 0
+
+/usr/share/spotweb/scripts/retrieve.sh  /var/log/spotweb.log


Bug#699724: radicale: Insufficient dependency on python-radicale

2013-02-11 Thread Salvatore Bonaccorso
On Mon, Feb 11, 2013 at 12:42:10PM +0100, Jonas Smedegaard wrote:
 Quoting Salvatore Bonaccorso (2013-02-11 07:38:44)
  Hi Jonas
  
  On Mon, Feb 11, 2013 at 05:37:06AM +0100, Jonas Smedegaard wrote:
   Quoting Salvatore Bonaccorso (2013-02-10 21:26:46)
Hi Jonas, Hi Martin

On Mon, Feb 04, 2013 at 04:12:00AM +0100, Cyril Brulebois wrote:
 Package: radicale
 Version: 0.7-1
 Severity: serious
 Tags: patch
 Justification: dependency issue
 
 Hi,
 
 radicale depends on python-radicale, without a version. Partial 
 upgrades
 from squeeze can leave python-radicale at 0.3-2, leading to:
 | ~$ /usr/bin/radicale -H 127.0.0.1 -p 8765
 | Traceback (most recent call last):
 |   File /usr/bin/radicale, line 29, in module
 | import radicale.__main__
 | ImportError: No module named __main__
 
 Tagging as patch as adding (= ${binary:Version) or ditto with = 
 should
 fix this.

Looking trough the RC bugs open for wheezy I noticed #699724 on
package radicale.

Do you have time to prepare a fix for this? I can prepare a NMU and
upload to DELAYED/5 queue, so there will be enought time to cancel it
in case.
   
   You are quite welcome to upload without delay (I am on LowNMU list).
   
   The package is in collab-maint: Would be nice if you commit and release 
   with git-buildpackage.
   
   Thanks for your help, however you do it,
  
  Thank you! I will prepare an upload later on today and will push the
  changes to collab-maint git repo!
 
 Excellent!
 
 NB! You need not worry about CDBS if you don't want to - just add the 
 new dependency to control file directly (i.e. ignore control.in) and I 
 can integrate with CDBS later.

Okay I have uploaded the package, and the changes pushed back for
collab-maint.

Regards,
Salvatore


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



Bug#700307: mozc-utils-gui: Some menus won't work by strange error

2013-02-11 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: mozc-utils-gui
Severity: important
Version: 1.5.1090.102-4

Dear Maintainer,

I installed fresh Wheezy to VirtualBox guest (amd64) and
noticed some actions in Mozc GUI menu failed to launch.
It is very similar with #670685 which is previously closed.
I'm using Mozc with UIM.

- - Config dialog: works
- - Dictionary tool, Word register dialog: popup shows, but closes immediately.
  libprotobuf ERROR google/protobuf/descriptor_database.cc:57] File already 
exists in database: config/config.proto
  libprotobuf FATAL google/protobuf/descriptor.cc:862] CHECK failed: 
generated_database_-Add(encoded_file_descriptor, size):
  terminate called after throwing an instance of 
'google::protobuf::FatalException'
  what():  CHECK failed: generated_database_-Add(encoded_file_descriptor, 
size):
- - Character pallete, Hand writing: none shows, just fails
  libprotobuf ERROR google/protobuf/descriptor_database.cc:57] File already 
exists in database: config/config.proto
  libprotobuf FATAL google/protobuf/descriptor.cc:862] CHECK failed: 
generated_database_-Add(encoded_file_descriptor, size):
  terminate called after throwing an instance of 
'google::protobuf::FatalException'
  what():  CHECK failed: generated_database_-Add(encoded_file_descriptor, 
size):
- - Reconvert: Application (Gnome-Terminal) crashes after reconvert. (It is 
different from this bug issue)

Thanks,
- -- 
Kenshi Muto
km...@debian.org

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

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.9 http://mailcrypt.sourceforge.net/

iQIcBAEBCgAGBQJRGPEOAAoJEB0hyD3EUuD8tCQP+wU5KjGLHimNXX5bMRdjhN+f
yYzkxKMYX3j6YDeSj36EX3oQuELcg2cq4urVgntCUZOBAU0L31C4n1jufj9Zf/Xo
V+KRJNgjN7KAvOTBI4MY67ru1nrKm4Ln5A61dLklDl3Cn4QQghOTc9e8LnAdq2ZB
oOYIF8CAWl55lviTxMNcn9LvJ+cSbvx/pKrvzVVLsP4ho5ZbVR4IcVCrQdKUwhGx
LT3FOqR1qmb4UjHs16XPqgWTDWwxzxFavAxpmylIII32T6hor/HhB8274WiE5TPw
+jhUSRsV1DfWi5K+bBxn4FoXMuf6hZv0NYFkpvrsCJSpghNg6f2bt4HM2pLV2Sti
pqOk2CFOJT13+QiCemI5i1yZBdP/F7S8pEgGG/D0n7XbEH8IOoPYGU85oFhsRVxo
UOgoGTKvq6MkeN9s6DsSZM6YClh8+8/qXv092OAd1wDNWSCVYA7r6GqgDtO0KBCS
asCPUWKzPiXzWDIi5BzlCGeJLtqeHm56D7OgUlSIFJqp0GyQlrJAgg1z863tabOl
yCYlK0ZdxDjy6PRzZQ5vQTCVcmKCFol2GumjULpl8hamV6aSYapCS7w7zBmYSa6K
bEGPEOIRN9bAi/bWLojaB+whep9BRevzA7y26yixjRD/jp+uleoxipPX0OdLLYbL
x8OwfndRZ/5vZd8cQcZG
=kpYq
-END PGP SIGNATURE-


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



Bug#700297: exim4: to send mails is impossible with port 587

2013-02-11 Thread Marc Haber
On Mon, Feb 11, 2013 at 01:39:14PM +0100, Pierre Crescenzo wrote:
 2013-02-10 11:55:37 1U4UZM-0004QQ-5d TLS error on connection to 
 naxos2.unice.fr [134.59.1.112] (gnutls_handshake): The Diffie-Hellman prime 
 sent by the server is not acceptable (not long enough).

Please see #676563, which reports this issue already, and gives a
workaround. The better solution would, however, be to advise the
administrators of naxos2 that they should upgrad their key lengths.

I'm going to close this bug report in a week unless you say that the
workaround given in #676563 does not work for you.

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 31958061
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 31958062


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



Bug#646180: gdm3 makes fvwm fail and cannot restart X

2013-02-11 Thread Vincent Lefevre
On 2012-08-04 04:41:25 +0200, Vincent Lefevre wrote:
 Possibly a related bug: #681830

Does the fix for bug 681830 also fixes this bug 646180?

(Note: I don't use GNOME, thus I have no gnome-session.)

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


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



Bug#681815: Fixed in new upstream version

2013-02-11 Thread Tollef Fog Heen

I experienced the same problem, and it went away by upgrading to Prophet
0.750 and sd 0.75.

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are


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



Bug#700308: src:pixman: CVE-2013-1591

2013-02-11 Thread Helmut Grohne
Package: src:pixman
Severity: grave
Tags: security

The pixman library may be affected by CVE-2013-1591.

| Stack-based buffer overflow in libpixman, as used in Pale Moon before
| 15.4, has unspecified impact and attack vectors.

The only references I could find so far were:

http://www.palemoon.org/releasenotes-ng.shtml
http://people.canonical.com/~ubuntu-security/cve/2013/CVE-2013-1591.html

Please investigate which pixman versions (if any) are affected by this
issue and update version information for this bug report.

Helmut


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



Bug#679005: mame: Segfaults on armel or armhf

2013-02-11 Thread Thomas Maass
Package: mame
Version: 0.146-5
Followup-For: Bug #679005

The problem still persists with the 146-5 package. This is all, that gdb shows,
as there are no debugging symbols:

[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/arm-linux-gnueabihf/libthread_db.so.1.

Program received signal SIGSEGV, Segmentation fault.
0x0135dd44 in ?? ()



-- System Information:
Debian Release: 7.0
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 'testing')
Architecture: armhf (armv7l)

Kernel: Linux 3.8.0-rc2-1-ac100 (SMP w/2 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

Versions of packages mame depends on:
ii  gconf-service   3.2.5-1+build1
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-37
ii  libexpat1   2.1.0-1
ii  libflac81.2.1-6+b1
ii  libfontconfig1  2.9.0-7.1
ii  libgcc1 1:4.7.2-5
ii  libgconf-2-43.2.5-1+build1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.33.12+really2.32.4-3
ii  libgtk2.0-0 2.24.10-2
ii  libjpeg88d-1
ii  libpango1.0-0   1.30.0-1
ii  libsdl-ttf2.0-0 2.0.11-2
ii  libsdl1.2debian 1.2.15-5
ii  libstdc++6  4.7.2-5
ii  libx11-62:1.5.0-1
ii  libxinerama12:1.1.2-1
ii  zlib1g  1:1.2.7.dfsg-13

mame recommends no packages.

Versions of packages mame suggests:
pn  gnome-video-arcade  none
pn  mame-tools  none

-- 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#700309: wotsap: Wotsap can't read latest .wot files from http://wot.christoph-egger.org/

2013-02-11 Thread Elena Grandi
Package: wotsap
Version: 0.7-2
Severity: normal

When trying to use a recent (  2013-01-30 ) .wot file from 
http://wot.christoph-egger.org/ I get the following error:

$ wotsap -w 2013-02-09.wot 01809E2A
Strange. Found longkeys file.
Traceback (most recent call last):
  File /usr/bin/wotsap, line 1903, in module
wotsapmain(sys.argv)
  File /usr/bin/wotsap, line 1751, in wotsapmain
wot = Wot(wotfile)
  File /usr/bin/wotsap, line 1471, in __init__
self.loadfile(dumpfile)
  File /usr/bin/wotsap, line 1484, in loadfile
self.filename, self.fileversion, self.debug) = loadfile(dumpfile)
  File /usr/bin/wotsap, line 462, in loadfile
f.seek(size + (size1), 1)
IOError: [Errno 29] Illegal seek

bunzip2: I/O or other error, bailing out.  Possible reason follows.
bunzip2: Broken pipe
Input file = (stdin), output file = (stdout)

The .wot file is a valid bzip2 file (tested with bunzip2 2013-02-09.wot) 
and it seems that the pathfinder at http://pgp.cs.uu.nl/ is able to 
read the new files, which is why I suspect (but I'm not sure) that the problem 
could be in wotsap itself.

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

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

Versions of packages wotsap depends on:
ii  fonts-freefont-ttf [ttf-freefont]  20120503-1
ii  python 2.7.3~rc2-1
ii  python-imaging 1.1.7-4
ii  ttf-dejavu 2.33-3

wotsap recommends no packages.

Versions of packages wotsap suggests:
ii  gnupg  1.4.12-7
ii  wget   1.13.4-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#700054: fonts-takao: does not remove ttf-japanese-*.ttf alternatives on upgrades from squeeze

2013-02-11 Thread Andreas Beckmann
On 2013-02-07 23:29, Andreas Beckmann wrote:
 Please get this fixed in sid and unblocked for wheezy to fix this
 upgrade problem. I also offer (and intend to) to NMU fonts-takao to take
 care of this.

NMU uploaded to DELAYED/5.
Please let me know if I should delay it longer.


Andreas


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



Bug#700058: fonts-hanazono: does not remove ttf-japanese-mincho.ttf alternative on upgrades from squeeze

2013-02-11 Thread Andreas Beckmann
On 2013-02-08 00:32, Andreas Beckmann wrote:
 Please get this fixed in sid and unblocked for wheezy to fix this
 upgrade problem. I also offer (and intend to) to NMU fonts-hanazono to take
 care of this.

NMU uploaded to DELAYED/5
Please let me know if I should delay it longer,

Andreas


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



Bug#700310: maint-guide: Mention wnpp-alert

2013-02-11 Thread Osamu Aoki
Package: maint-guide
Version: 1.2.31
Severity: wishlist

Mention wnpp-alert package and possibly add to suggests
 wnpp-alert - check for installed packages up for adoption or orphaned

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (500, 'testing'), (10, 'unstable'), (9, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

maint-guide depends on no packages.

maint-guide recommends no packages.

Versions of packages maint-guide suggests:
ii  debian-policy 3.9.4.0
ii  developers-reference  3.4.9
ii  devscripts2.12.6
ii  dh-make   0.61
ii  doc-base  0.10.4
ii  dput  0.9.6.3+nmu1
ii  fakeroot  1.18.4-2
ii  lintian   2.5.10.3
ii  pbuilder  0.213
ii  quilt 0.60-7

-- 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#675681: [INTL: it] Italian translation of debconf messages - matlab-support

2013-02-11 Thread Michael Hanke
Hey,

[embarassing reply after an insanely long time]

On Sat, Jun 2, 2012 at 6:35 PM, Beatrice Torracca beatri...@libero.itwrote:

 Package: matlab-support
 Severity: wishlist
 Tags: l10n patch

 Hi.
 Please find attached the Italian translation of matlab-support debconf
 messages proofread by the Italian localization team.


I am preparing the next upload now and checked the file you submitted. It
seems to have
problems:

% msgfmt -cv it.po
it.po:41:40: invalid multibyte sequence
it.po:41:75: invalid multibyte sequence
it.po:42:4: invalid multibyte sequence
it.po:42:64: invalid multibyte sequence
it.po:58:42: invalid multibyte sequence
it.po:59:69: invalid multibyte sequence
it.po:60:29: invalid multibyte sequence
it.po:62:41: invalid multibyte sequence
it.po:63:4: invalid multibyte sequence
it.po:63:24: invalid multibyte sequence
it.po:93:34: invalid multibyte sequence
it.po:115:14: invalid multibyte sequence
it.po:116:39: invalid multibyte sequence
it.po:126:17: invalid multibyte sequence
msgfmt: found 14 fatal errors


Could you please have a look and send me a fixed version?

Thanks and sorry for not replying earlier.

Michael
-- 
GPG key:  1024D/3144BE0F Michael Hanke
http://mih.voxindeserto.de
Jabber: michael.ha...@gmail.com


Bug#658430: Hardened build flags not fully enabled

2013-02-11 Thread Simon Ruderich
reopen 658430
thanks

Hello,

The hardening flags are still missing in a few places:

$ blhc newt_0.52.14-11_amd64.log
CFLAGS missing (-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security):  \gcc -D_GNU_SOURCE -I/usr/include/slang 
-D_FORTIFY_SOURCE=2  $PIFLAGS $PCFLAGS -fPIC -c -o $ver/snackmodule.o 
snackmodule.c
CFLAGS missing (-O2): \ gcc -I/usr/include/tcl8.5 -g -O0 
-fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security 
-I/usr/include/${ver}_d -fPIC -c -o $ver/snackmodule_d.o snackmodule.c
CPPFLAGS missing (-D_FORTIFY_SOURCE=2): \ gcc 
-I/usr/include/tcl8.5 -g -O0 -fstack-protector --param=ssp-buffer-size=4 
-Wformat -Werror=format-security -I/usr/include/${ver}_d -fPIC -c -o 
$ver/snackmodule_d.o snackmodule.c
LDFLAGS missing (-Wl,-z,relro): \ gcc --shared -fPIC  -fPIC 
-o $ver/_snackmodule_d.so $ver/snackmodule_d.o -L .  -lnewt
CFLAGS missing (-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security):  \gcc -D_GNU_SOURCE -I/usr/include/slang 
-D_FORTIFY_SOURCE=2  $PIFLAGS $PCFLAGS -fPIC -c -o $ver/snackmodule.o 
snackmodule.c
CFLAGS missing (-O2): \ gcc -I/usr/include/tcl8.5 -g -O0 
-fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security 
-I/usr/include/${ver}_d -fPIC -c -o $ver/snackmodule_d.o snackmodule.c
CPPFLAGS missing (-D_FORTIFY_SOURCE=2): \ gcc 
-I/usr/include/tcl8.5 -g -O0 -fstack-protector --param=ssp-buffer-size=4 
-Wformat -Werror=format-security -I/usr/include/${ver}_d -fPIC -c -o 
$ver/snackmodule_d.o snackmodule.c
LDFLAGS missing (-Wl,-z,relro): \ gcc --shared -fPIC  -fPIC 
-o $ver/_snackmodule_d.so $ver/snackmodule_d.o -L .  -lnewt

The attached patch fixes the issue. It should be merged with
other patches touching those lines in Makefile.in.

If possible -O0 should be replaced with at least -O1 to support
-D_FORTIFY_SOURCE=2 (not sure why -O2 is disabled for the debug
build).

Regards,
Simon
-- 
+ privacy is necessary
+ using gnupg http://gnupg.org
+ public key id: 0x92FEFDB7E44C32F9
Description: Use build flags from environment (dpkg-buildflags).
 Necessary for hardening flags.
Author: Simon Ruderich si...@ruderich.org
Last-Update: 2013-02-11

Index: newt-0.52.14/Makefile.in
===
--- newt-0.52.14.orig/Makefile.in	2013-02-11 15:05:16.165039397 +0100
+++ newt-0.52.14/Makefile.in	2013-02-11 15:05:16.157039353 +0100
@@ -83,10 +83,10 @@
 			PIFLAGS=`$$ver-config --includes`; \
 			PLDFLAGS=`$$ver-config --ldflags | sed -e 's/\-lpython[0-9.]*//'`; \
 			PLFLAGS=`$$ver-config --libs | sed -e 's/\-lpython[0-9.]*//'`; \
-	$(CC) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -fPIC -c -o $$ver/snackmodule.o snackmodule.c ;\
+	$(CC) $(CPPFLAGS) $(CFLAGS) $$PIFLAGS $$PCFLAGS -fPIC -c -o $$ver/snackmodule.o snackmodule.c ;\
 	$(CC) --shared -fPIC $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o $$ver/_snackmodule.so $$ver/snackmodule.o -L.  -lnewt $(LIBS);\
-$(CC) $(subst -O2,-O0,$(CFLAGS)) -I/usr/include/$${ver}_d -fPIC -c -o $$ver/snackmodule_d.o snackmodule.c ;\
-$(CC) --shared -fPIC  $(SHCFLAGS) -o $$ver/_snackmodule_d.so $$ver/snackmodule_d.o -L .  -lnewt  ;\
+$(CC) $(CPPFLAGS) $(subst -O2,-O0,$(CFLAGS)) -I/usr/include/$${ver}_d -fPIC -c -o $$ver/snackmodule_d.o snackmodule.c ;\
+$(CC) --shared -fPIC  $(SHCFLAGS) $(LDFLAGS) -o $$ver/_snackmodule_d.so $$ver/snackmodule_d.o -L .  -lnewt  ;\
 	done || :
 	touch $@
 


signature.asc
Description: Digital signature


Bug#698701: tpu: dspam/3.10.1+dfsg-8

2013-02-11 Thread Thomas Preud'homme
Le dimanche 3 février 2013 14:51:39, Thomas Preud'homme a écrit :
 
 Anyway, I tried to get certainty by reading the code to see any assumption
 the code is using but I couldn't understand enough of the code. So I
 reached upstream and he shall give me an explanation about wether it's
 safe or not and why in the next days.

I pinged again upstream last wednesday without answer. Given the risk, I'm 
going to drop the patch for the recipient corruption. I don't like it but it's 
not a regression and the bug is only of severity important.

Anyway, the package had around 3 weeks of testing in unstable so I proceeded 
with the upload to tpu. The changes only include the fix for the ucf RC bug 
issue. See attached debdiff.

 
 I'll get back to you asap.
 
 Best regards.
 
 Thomas
 
 By the way, my condolence for entering the RT ;-)

Best regards,

Thomas
diff -Nru dspam-3.10.1+dfsg/debian/changelog dspam-3.10.1+dfsg/debian/changelog
--- dspam-3.10.1+dfsg/debian/changelog	2013-01-19 21:11:32.0 +0100
+++ dspam-3.10.1+dfsg/debian/changelog	2013-01-22 13:38:35.0 +0100
@@ -1,3 +1,11 @@
+dspam (3.10.1+dfsg-8) testing-proposed-updates; urgency=low
+
+  * Stop shipping ucf template as a conffile: this avoid unnecessary prompt
+when upgrading if configuration files have not been modified by the user
+(Closes: #698580).
+
+ -- Thomas Preud'homme robo...@debian.org  Mon, 21 Jan 2013 22:25:00 +0100
+
 dspam (3.10.1+dfsg-7) testing-proposed-updates; urgency=low
 
   * Disable multi-arch since it create many problems with regards to the
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.dirs dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.dirs
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.dirs	2013-01-19 21:11:32.0 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.dirs	2013-01-22 13:38:35.0 +0100
@@ -1,3 +1,4 @@
 etc/dspam/dspam.d
+usr/share/libdspam7-drv-mysql
 usr/share/dbconfig-common/data/libdspam7-drv-mysql/install
 usr/share/dbconfig-common/data/libdspam7-drv-mysql/upgrade
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.install.in dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.install.in
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.install.in	2013-01-19 21:11:32.0 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.install.in	2013-01-22 13:38:35.0 +0100
@@ -1,7 +1,7 @@
 debian/sqlfiles/install/mysql usr/share/dbconfig-common/data/libdspam7-drv-mysql/install
 debian/sqlfiles/upgrade/mysql usr/share/dbconfig-common/data/libdspam7-drv-mysql/upgrade
 usr/lib/@DEB_HOST_MULTIARCH@/dspam/libmysql_drv.so*
-src/mysql.confetc/dspam/dspam.d/
+src/mysql.confusr/share/libdspam7-drv-mysql
 src/tools.mysql_drv/mysql_objects-4.1.sql usr/share/doc/libdspam7-drv-mysql/sql/
 src/tools.mysql_drv/purge-4.1.sql usr/share/doc/libdspam7-drv-mysql/sql/
 src/tools.mysql_drv/virtual_user_aliases.sql  usr/share/doc/libdspam7-drv-mysql/sql/
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postinst dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postinst
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postinst	2013-01-19 21:11:32.0 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-mysql.postinst	2013-01-22 13:38:35.0 +0100
@@ -9,7 +9,7 @@
 
 # Set some variables
 dbc_generate_include=template:/etc/dspam/dspam.d/mysql.conf
-dbc_generate_include_args=-U -o template_infile='/etc/dspam/dspam.d/mysql.conf'
+dbc_generate_include_args=-U -o template_infile='/usr/share/libdspam7-drv-mysql/mysql.conf'
 
 # Run dbconfig
 dbc_go libdspam7-drv-mysql $@
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-pgsql.dirs dspam-3.10.1+dfsg/debian/libdspam7-drv-pgsql.dirs
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-pgsql.dirs	2013-01-19 21:11:32.0 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-pgsql.dirs	2013-01-22 13:38:35.0 +0100
@@ -1,4 +1,5 @@
 etc/dspam/dspam.d
+usr/share/libdspam7-drv-pgsql
 usr/share/dbconfig-common/data/libdspam7-drv-pgsql/install
 usr/share/dbconfig-common/data/libdspam7-drv-pgsql/upgrade
 usr/share/dbconfig-common/data/libdspam7-drv-pgsql/install-dbadmin
diff -Nru dspam-3.10.1+dfsg/debian/libdspam7-drv-pgsql.install.in dspam-3.10.1+dfsg/debian/libdspam7-drv-pgsql.install.in
--- dspam-3.10.1+dfsg/debian/libdspam7-drv-pgsql.install.in	2013-01-19 21:11:32.0 +0100
+++ dspam-3.10.1+dfsg/debian/libdspam7-drv-pgsql.install.in	2013-01-22 13:38:35.0 +0100
@@ -2,7 +2,7 @@
 debian/sqlfiles/install/pgsql  usr/share/dbconfig-common/data/libdspam7-drv-pgsql/install
 debian/sqlfiles/upgrade/pgsql  usr/share/dbconfig-common/data/libdspam7-drv-pgsql/upgrade
 usr/lib/@DEB_HOST_MULTIARCH@/dspam/libpgsql_drv.so*
-src/pgsql.conf etc/dspam/dspam.d/
+src/pgsql.conf usr/share/libdspam7-drv-pgsql
 src/tools.pgsql_drv/pgsql_objects.sql  

Bug#700311: osmosis: OsmosisRuntimeException: Cannot represent 2147633961 as an integer.

2013-02-11 Thread Petter Reinholdtsen

Package: osmosis
Version: 0.34+ds1-1
Severity: important
Tags: upstream

I ran into this problem while trying to filter out all cameras in
Norway.

When I use this processing rule on the extract available from
URL: http://download.geofabrik.de/openstreetmap/europe/norway.osm.bz2 

 % osmosis --read-xml norway.osm \
--node-key-value \
keyValueList=man_made.surveillance,highway.speed_camera \
--write-xml surveillance.osm

I get this backtrace:


SEVERE: Thread for task 1-read-xml failed
org.openstreetmap.osmosis.core.OsmosisRuntimeException: Cannot represent 
2147633961 as an integer.
at 
org.openstreetmap.osmosis.core.util.LongAsInt.longToInt(LongAsInt.java:33)
at 
org.openstreetmap.osmosis.core.domain.v0_6.CommonEntityData.init(CommonEntityData.java:142)
at 
org.openstreetmap.osmosis.core.domain.v0_6.CommonEntityData.init(CommonEntityData.java:74)
at 
org.openstreetmap.osmosis.core.domain.v0_6.Entity.init(Entity.java:61)
at org.openstreetmap.osmosis.core.domain.v0_6.Node.init(Node.java:71)
at 
org.openstreetmap.osmosis.core.xml.v0_6.impl.NodeElementProcessor.begin(NodeElementProcessor.java:87)
at 
org.openstreetmap.osmosis.core.xml.v0_6.impl.OsmHandler.startElement(OsmHandler.java:90)
at 
com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:504)
at 
com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser.emptyElement(AbstractXMLDocumentParser.java:182)
at 
com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(XMLDocumentFragmentScannerImpl.java:1320)
at 
com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2732)
at 
com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:625)
at 
com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:488)
at 
com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:812)
at 
com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:741)
at 
com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:123)
at 
com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1208)
at 
com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:525)
at javax.xml.parsers.SAXParser.parse(SAXParser.java:392)
at javax.xml.parsers.SAXParser.parse(SAXParser.java:195)
at 
org.openstreetmap.osmosis.core.xml.v0_6.XmlReader.run(XmlReader.java:108)
at java.lang.Thread.run(Thread.java:636)
Feb 11, 2013 3:24:36 PM org.openstreetmap.osmosis.core.Osmosis main
SEVERE: Execution aborted.
org.openstreetmap.osmosis.core.OsmosisRuntimeException: One or more tasks 
failed.
at 
org.openstreetmap.osmosis.core.pipeline.common.Pipeline.waitForCompletion(Pipeline.java:146)
at org.openstreetmap.osmosis.core.Osmosis.run(Osmosis.java:85)
at org.openstreetmap.osmosis.core.Osmosis.main(Osmosis.java:30)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at 
org.codehaus.plexus.classworlds.launcher.Launcher.launchStandard(Launcher.java:328)
at 
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:238)
at 
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:408)
at 
org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:351)
at org.codehaus.classworlds.Launcher.main(Launcher.java:31)


I guess OSM started using IDs larger than the value range of integers,
and that this will bother any user trying to process recent data.
Thus severity important as it affect many but not all users.

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

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

Versions of packages osmosis depends on:
ii  ant   1.8.0-4Java based build tool like make
ii  libcommons-codec- 1.4-2  encoder and decoders such as Base6
ii  libcommons-compre 1.0-1  Java API for working with tar, zip
ii  libcommons-dbcp-j 1.4-1  Database Connection Pooling Servic
ii  libjpf-java   1.5.1+dfsg-2   Java Plugin Framework: plug-in inf
ii  

Bug#700312: fs2ram 0.3.10 conflict with sysvinit

2013-02-11 Thread Philippe Le Brouster
Package: fs2ram
Version: 0.3.10
Severity: Serious

Hi,

fs2ram by default mount /run into tmpfs. Since wheezy, /run is also
mounted as tmpfs by sysvinit. This cause mountall-bootclean.sh 
checkroot-bootclean.sh to fail at startup.

The version 0.3.12 of fs2ram fix this bug. 

-- 
Philippe Le Brouster
 


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



Bug#700313: sharutils: Enable -Wformat-security

2013-02-11 Thread Simon Ruderich
Package: sharutils
Severity: normal
Tags: patch

Dear Maintainer,

The attached patch fixes the build with -Wformat-security. It
should be forwarded to upstream if possible.

diff -Nru sharutils-4.11.1/debian/rules sharutils-4.11.1/debian/rules
--- sharutils-4.11.1/debian/rules   2012-06-02 19:22:17.0 +0200
+++ sharutils-4.11.1/debian/rules   2013-02-11 15:34:10.0 +0100
@@ -2,8 +2,6 @@
 
 package = sharutils
 
-export DEB_BUILD_MAINT_OPTIONS=hardening=-format
-
 %:
dh $@
 

Regards,
Simon
-- 
+ privacy is necessary
+ using gnupg http://gnupg.org
+ public key id: 0x92FEFDB7E44C32F9
Description: Fix compilation with -Werror=format-security.
Author: Simon Ruderich si...@ruderich.org
Last-Update: 2012-06-12

Index: sharutils-4.11.1/src/shar.c
===
--- sharutils-4.11.1.orig/src/shar.c	2011-01-15 02:38:38.0 +0100
+++ sharutils-4.11.1/src/shar.c	2013-02-11 15:33:42.0 +0100
@@ -513,7 +513,7 @@
 
   if (stat (local_name, struct_stat))
 {
-  error (0, errno, local_name);
+  error (0, errno, %s, local_name);
   return 1;
 }
 
@@ -522,7 +522,7 @@
 
   if (directory = opendir (local_name), !directory)
 {
-  error (0, errno, local_name);
+  error (0, errno, %s, local_name);
   return 1;
 }
 
@@ -615,7 +615,7 @@
 #else
   if (closedir (directory))
 {
-  error (0, errno, local_name);
+  error (0, errno, %s, local_name);
   return 1;
 }
 #endif
@@ -666,7 +666,7 @@
 int status = stat (local_name_copy, struct_stat);
 
 if (status != 0)
-  error (0, errno, local_name_copy);
+  error (0, errno, %s, local_name_copy);
 else
   status = (*routine) (local_name_copy, restore_name);
 
Index: sharutils-4.11.1/src/unshar.c
===
--- sharutils-4.11.1.orig/src/unshar.c	2011-01-15 02:39:02.0 +0100
+++ sharutils-4.11.1/src/unshar.c	2013-02-11 15:33:42.0 +0100
@@ -453,7 +453,7 @@
   strcpy (cp, arg);
 }
   if (file = fopen (name_buffer, r), !file)
-error (EXIT_FAILURE, errno, name_buffer);
+error (EXIT_FAILURE, errno, %s, name_buffer);
   unarchive_shar_file (name_buffer, file);
   fclose (file);
 }
@@ -511,13 +511,13 @@
   {
 int fd = mkstemp (pz_fname);
 if (fd  0)
-  error (EXIT_FAILURE, errno, pz_fname);
+  error (EXIT_FAILURE, errno, %s, pz_fname);
 
 fp = fdopen (fd, w+);
   }
 
   if (fp == NULL)
-error (EXIT_FAILURE, errno, pz_fname);
+error (EXIT_FAILURE, errno, %s, pz_fname);
 
   {
 char *buf = malloc (pg_sz);


signature.asc
Description: Digital signature


Bug#700314: darktable: please remove (build)depends on flickcurl for wheezy

2013-02-11 Thread Ivo De Decker
package: darktable
severity: serious
version: 1.0.4-1

Dear maintainer,

You package darktable had a (build) dependency on flickcurl, which is waiting
to be removed from wheezy. More info in bug #700150:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700150#10

Please remove this (build-)depends.

Thanks,

Ivo


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



Bug#700315: rawstudio: please remove (build)depends on flickcurl for wheezy

2013-02-11 Thread Ivo De Decker
package: rawstudio
severity: serious
version: 2.0-1

Dear maintainer,

You package rawstudio has a (build) dependency on flickcurl, which is waiting
to be removed from wheezy. More info in bug #700150:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700150#10

Please remove this (build-)depends.

Thanks,

Ivo


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



Bug#700316: tpu: curl/7.26.0-1+wheezy1

2013-02-11 Thread Alessandro Ghedini
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

I have prepared a tpu upload for curl to fix #72 (aka CVE-2013-0249) which
is already fixed in sid by curl/7.29.0-1.

See attached debdiff.

Cheers

-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (600, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.7-trunk-amd64 (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
diff -Nru curl-7.26.0/debian/changelog curl-7.26.0/debian/changelog
--- curl-7.26.0/debian/changelog	2012-05-25 15:20:44.0 +0200
+++ curl-7.26.0/debian/changelog	2013-02-10 19:15:35.0 +0100
@@ -1,3 +1,12 @@
+curl (7.26.0-1+wheezy1) testing-proposed-updates; urgency=high
+
+  * Fix buffer overflow when negotiating SMTP DIGEST-MD5 authentication
+as per CVE-2013-0249 (Closes: #72)
+http://curl.haxx.se/docs/adv_20130206.html
+  * Set urgency=high accordingly
+
+ -- Alessandro Ghedini gh...@debian.org  Sun, 10 Feb 2013 19:14:47 +0100
+
 curl (7.26.0-1) unstable; urgency=low
 
   * New upstream release
diff -Nru curl-7.26.0/debian/patches/05_curl-sasl-CVE-2013-0249.patch curl-7.26.0/debian/patches/05_curl-sasl-CVE-2013-0249.patch
--- curl-7.26.0/debian/patches/05_curl-sasl-CVE-2013-0249.patch	1970-01-01 01:00:00.0 +0100
+++ curl-7.26.0/debian/patches/05_curl-sasl-CVE-2013-0249.patch	2013-02-10 19:17:22.0 +0100
@@ -0,0 +1,60 @@
+Description: Fix buffer overflow in SMTP DIGEST-MD5 negotiation
+ When negotiating SMTP DIGEST-MD5 authentication, the function
+ smtp_state_authdigest_resp() uses the data provided from the
+ server without doing the proper length checks and that data is then
+ appended to a local fixed-size buffer on the stack.
+Origin: vendor, adapted from http://curl.haxx.se/curl-sasl.patch
+Bug: http://curl.haxx.se/docs/adv_20130206.html
+Bug-Debian: http://bugs.debian.org/72
+Forwarded: not-needed
+Author: Alessandro Ghedini gh...@debian.org
+Last-Update: 2013-02-10
+
+--- a/lib/smtp.c
 b/lib/smtp.c
+@@ -879,7 +879,7 @@
+   char cnonce[] = 12345678; /* will be changed */
+   char method[] = AUTHENTICATE;
+   char qop[]= auth;
+-  char uri[128] = smtp/;
++  char uri[128];
+   char response[512];
+ 
+   (void)instate; /* no use for this yet */
+@@ -963,8 +963,8 @@
+   for(i = 0; i  MD5_DIGEST_LEN; i++)
+ snprintf(HA1_hex[2 * i], 3, %02x, digest[i]);
+ 
+-  /* Orepare URL string, append realm to the protocol */
+-  strcat(uri, realm);
++  /* Prepare the URL string */
++  snprintf(uri, sizeof(uri), smtp/%s, realm);
+ 
+   /* Calculate H(A2) */
+   ctxt = Curl_MD5_init(Curl_DIGEST_MD5);
+@@ -1008,20 +1008,11 @@
+   for(i = 0; i  MD5_DIGEST_LEN; i++)
+ snprintf(resp_hash_hex[2 * i], 3, %02x, digest[i]);
+ 
+-  strcpy(response, username=\);
+-  strcat(response, conn-user);
+-  strcat(response, \,realm=\);
+-  strcat(response, realm);
+-  strcat(response, \,nonce=\);
+-  strcat(response, nonce);
+-  strcat(response, \,cnonce=\);
+-  strcat(response, cnonce);
+-  strcat(response, \,nc=);
+-  strcat(response, nonceCount);
+-  strcat(response, ,digest-uri=\);
+-  strcat(response, uri);
+-  strcat(response, \,response=);
+-  strcat(response, resp_hash_hex);
++  snprintf(response, sizeof(response),
++   username=\%s\,realm=\%s\,nonce=\%s\,
++   cnonce=\%s\,nc=\%s\,digest-uri=\%s\,response=%s,
++   conn-user, realm, nonce,
++   cnonce, nonceCount, uri, resp_hash_hex);
+ 
+   /* Encode it to base64 and send it */
+   result = Curl_base64_encode(data, response, 0, rplyb64, len);
diff -Nru curl-7.26.0/debian/patches/series curl-7.26.0/debian/patches/series
--- curl-7.26.0/debian/patches/series	2012-05-25 15:20:44.0 +0200
+++ curl-7.26.0/debian/patches/series	2013-02-10 19:14:42.0 +0100
@@ -2,6 +2,7 @@
 02_art_http_scripting.patch
 03_keep_symbols_compat.patch
 04_workaround_as_needed_bug.patch
+05_curl-sasl-CVE-2013-0249.patch
 
 90_gnutls.patch
 99_nss.patch


signature.asc
Description: Digital signature


Bug#700317: sbuild -s fails if package has Build-Depends-Indep

2013-02-11 Thread Ian Campbell
-asm.patch
dpkg-source: info: applying CVE-2012-4544-pre
dpkg-source: info: applying CVE-2012-4544
dpkg-source: info: applying CVE-2012-5511
dpkg-source: info: applying CVE-2012-5511-fixup
dpkg-source: info: applying CVE-2012-5634
dpkg-source: info: applying CVE-2013-0153-pre
dpkg-source: info: applying CVE-2013-0153-1
dpkg-source: info: applying CVE-2013-0153-2
dpkg-source: info: applying CVE-2013-0153-3
dpkg-source: info: applying CVE-2013-0153-4

Check disc space


Sufficient free space for build

User Environment


HOME=/sbuild-nonexistent
LOGNAME=ijc
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SCHROOT_ALIAS_NAME=squeeze-amd64-sbuild
SCHROOT_CHROOT_NAME=squeeze-amd64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=ijc
SCHROOT_SESSION_ID=squeeze-amd64-sbuild-9c6bdf51-3ad6-4963-ac19-1642fe4c050d
SCHROOT_UID=1000
SCHROOT_USER=ijc
SHELL=/bin/sh
TERM=xterm
USER=ijc

dpkg-buildpackage
─

dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export CPPFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2
dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): 
dpkg-buildpackage: source package xen
dpkg-buildpackage: source version 4.0.1-5.7
dpkg-buildpackage: source changed by Ian Campbell i...@hellion.org.uk
 dpkg-source --before-build xen-4.0.1
dpkg-buildpackage: host architecture amd64
dpkg-checkbuilddeps: Unmet build dependencies: graphviz gs-common 
texlive-fonts-recommended texlive-latex-recommended
dpkg-buildpackage: warning: Build dependencies/conflicts unsatisfied; aborting.
dpkg-buildpackage: warning: (Use -d flag to override.)

Build finished at 20130211-1312

Finished


E: Build failure (dpkg-buildpackage died)

┌──┐
│ Cleanup  │
└──┘

Purging /«BUILDDIR»
Not cleaning session: cloned chroot in use
E: 05lvm: File descriptor 3 (/usr/share/bash-completion/completions) leaked on 
lvremove invocation. Parent PID 32634: /bin/sh

┌──┐
│ Summary  │
└──┘

Build Architecture: amd64
Build-Space: 47328
Build-Time: 1
Distribution: squeeze
Fail-Stage: build
Host Architecture: amd64
Install-Time: 77
Job: /local/scratch/ijc/development/debian/xen_4.0.1-5.7.dsc
Machine Architecture: amd64
Package: xen
Package-Time: 90
Source-Version: 4.0.1-5.7
Space: 47328
Status: attempted
Version: 4.0.1-5.7

Finished at 20130211-1312
Build needed 00:01:30, 47328k disc space


Bug#700315: rawstudio: please remove (build)depends on flickcurl for wheezy

2013-02-11 Thread Ivo De Decker
Control: tags -1 patch

On Mon, Feb 11, 2013 at 03:53:11PM +0100, Ivo De Decker wrote:
 You package rawstudio has a (build) dependency on flickcurl, which is waiting
 to be removed from wheezy. More info in bug #700150:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700150#10
 
 Please remove this (build-)depends.

The attached patch removes this (build-)dependency and builds fine in unstable.

Cheers,

Ivo


diff -u rawstudio-2.0/debian/changelog rawstudio-2.0/debian/changelog
--- rawstudio-2.0/debian/changelog
+++ rawstudio-2.0/debian/changelog
@@ -1,3 +1,11 @@
+rawstudio (2.0-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove build-dependency on libflickcurl-dev, to allow removal from wheezy. 
+(Closes: #700315)
+
+ -- Ivo De Decker ivo.dedec...@ugent.be  Mon, 11 Feb 2013 15:58:52 +0100
+
 rawstudio (2.0-1) unstable; urgency=low
 
   * [3750b2cf] Merge commit 'upstream/2.0'
diff -u rawstudio-2.0/debian/control rawstudio-2.0/debian/control
--- rawstudio-2.0/debian/control
+++ rawstudio-2.0/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer:  Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
 Uploaders: Bernd Zeimetz b...@debian.org
-Build-Depends: debhelper (= 7.2.14), autotools-dev (= 20100122.1), 
dh-autoreconf, libdbus-1-dev, libexiv2-dev, libgconf2-dev, libgtk2.0-dev, 
liblcms1-dev, libjpeg8-dev, libtiff4-dev, libxml2-dev, quilt (= 0.46-7), 
libfftw3-dev, liblensfun-dev, libcurl4-gnutls-dev, libflickcurl-dev, 
libsqlite3-dev, libgphoto2-2-dev
+Build-Depends: debhelper (= 7.2.14), autotools-dev (= 20100122.1), 
dh-autoreconf, libdbus-1-dev, libexiv2-dev, libgconf2-dev, libgtk2.0-dev, 
liblcms1-dev, libjpeg8-dev, libtiff4-dev, libxml2-dev, quilt (= 0.46-7), 
libfftw3-dev, liblensfun-dev, libcurl4-gnutls-dev, libsqlite3-dev, 
libgphoto2-2-dev
 Standards-Version: 3.8.3
 Homepage: http://www.rawstudio.org/
 Vcs-Browser: http://git.debian.org/?p=pkg-phototools/rawstudio.git
diff -u rawstudio-2.0/debian/patches/series rawstudio-2.0/debian/patches/series
--- rawstudio-2.0/debian/patches/series
+++ rawstudio-2.0/debian/patches/series
@@ -2,0 +3 @@
+0003-rawstudio-noflickr.patch
only in patch2:
unchanged:
--- rawstudio-2.0.orig/debian/patches/0003-rawstudio-noflickr.patch
+++ rawstudio-2.0/debian/patches/0003-rawstudio-noflickr.patch
@@ -0,0 +1,23 @@
+diff -ur rawstudio-2.0/configure.in rawstudio-2.0.ivo/configure.in
+--- rawstudio-2.0/configure.in 2011-04-07 19:19:01.0 +
 rawstudio-2.0.ivo/configure.in 2013-02-11 14:11:38.823356344 +
+@@ -83,7 +83,7 @@
+ fi
+ AC_SUBST(LIBTIFF)
+ 
+-pkg_modules=gtk+-2.0 = 2.8.0 libxml-2.0 = 2.4 gconf-2.0 = 2.0 lcms dbus-1 
exiv2 fftw3f lensfun libcurl flickcurl sqlite3 libgphoto2 x11
++pkg_modules=gtk+-2.0 = 2.8.0 libxml-2.0 = 2.4 gconf-2.0 = 2.0 lcms dbus-1 
exiv2 fftw3f lensfun libcurl sqlite3 libgphoto2 x11
+ PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
+ AC_SUBST(PACKAGE_CFLAGS)
+ AC_SUBST(PACKAGE_LIBS)
+diff -ur rawstudio-2.0/plugins/Makefile.am 
rawstudio-2.0.ivo/plugins/Makefile.am
+--- rawstudio-2.0/plugins/Makefile.am  2011-03-21 21:14:00.0 +
 rawstudio-2.0.ivo/plugins/Makefile.am  2013-02-11 14:10:03.681817325 
+
+@@ -24,7 +24,6 @@
+   meta-x3f \
+   output-jpegfile \
+   output-facebook \
+-  output-flickr \
+   output-picasa \
+   output-pngfile \
+   output-tifffile \


Bug#700314: darktable: please remove (build)depends on flickcurl for wheezy

2013-02-11 Thread Ivo De Decker
Control: fixed -1 1.1.3-1
Control: tags -1 patch

On Mon, Feb 11, 2013 at 03:52:01PM +0100, Ivo De Decker wrote:
 You package darktable had a (build) dependency on flickcurl, which is waiting
 to be removed from wheezy. More info in bug #700150:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700150#10
 
 Please remove this (build-)depends.

The version in unstable has a lot of changes compared to wheezy
(636 files changed, 175318 insertions(+), 57429 deletions(-)),
so this bug will need to be fixed via testing-proposed-updates. This bug is
not relevant for unstable, so I'm marking it as fixed there.

The attached patch should fix the problem in wheezy. It just removes the
build-dependency. It builds fine in wheezy (tested with pbuilder).

Cheers,

Ivo

diff -Nru darktable-1.0.4/debian/changelog darktable-1.0.4/debian/changelog
--- darktable-1.0.4/debian/changelog2012-06-04 01:14:18.0 +0200
+++ darktable-1.0.4/debian/changelog2013-02-11 16:02:33.0 +0100
@@ -1,3 +1,11 @@
+darktable (1.0.4-1+deb7u1) testing-proposed-updates; urgency=low
+
+  * Non-maintainer upload.
+  * Remove dependency on libflickcurl-dev to allow removal from wheezy
+(Closes: #700314)
+
+ -- Ivo De Decker ivo.dedec...@ugent.be  Mon, 11 Feb 2013 16:02:10 +0100
+
 darktable (1.0.4-1) unstable; urgency=low
 
   * New upstream release
diff -Nru darktable-1.0.4/debian/control darktable-1.0.4/debian/control
--- darktable-1.0.4/debian/control  2012-06-04 01:14:18.0 +0200
+++ darktable-1.0.4/debian/control  2013-02-11 14:08:01.0 +0100
@@ -9,7 +9,7 @@
  libtiff-dev, libexiv2-dev, intltool, libglade2-dev,
  libsqlite3-dev, libopenexr-dev, libgphoto2-2-dev,
  libcurl4-gnutls-dev|libcurl-dev, libdbus-glib-1-dev, libgnome-keyring-dev,
- librsvg2-dev, libflickcurl-dev
+ librsvg2-dev
 Standards-Version: 3.9.3
 Homepage: http://darktable.sourceforge.net/
 Vcs-Git: git://git.debian.org/pkg-phototools/darktable.git


Bug#700150: RM: flickcurl/1.22-1

2013-02-11 Thread Ivo De Decker
Control: block -1 by 700314
Control: block -1 by 700315

Hi,

On Sat, Feb 09, 2013 at 08:54:20AM -0600, Kumar Appaiah wrote:
  Checking reverse dependencies...
  # Broken Depends:
  darktable: darktable [amd64 i386 kfreebsd-amd64 kfreebsd-i386]
  rawstudio: rawstudio
  
  # Broken Build-Depends:
  darktable: libflickcurl-dev
  rawstudio: libflickcurl-dev
 
 I see the problem. Now, this is the situation:
 
 138 files changed, 8688 insertions(+), 3873 deletions(-)
 
 The cause for this is that the way parameters are passed around has
 been re-engineered in this version. Functionally, this doesn't alter
 much, but it makes it nearly impossible to backport just the
 authentication mechanism.
 
 Could you please advise me on what to do in this case, given that
 darktable and rawstudio are fairly popular packages?

I filed bugs (with patches) against both packages, to have the
(build-)dependency on flickcurl removed:
http://bugs-master.debian.org/cgi-bin/bugreport.cgi?bug=700314
http://bugs-master.debian.org/cgi-bin/bugreport.cgi?bug=700315

For darktable, this will have to go via TPU.

Cheers,

Ivo


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



Bug#669457: libvirt-bin: libvirt_lxc segfault

2013-02-11 Thread Guido Günther
Hi,
On Thu, Apr 19, 2012 at 09:17:28PM +0200, Samuel Hassine wrote:
 Package: libvirt-bin
 Version: 0.9.11-2
 Severity: important
 
 Hi mainteners,
 
 We are trying to run a LXC container through libvirt binary with the 
 following command: 
 
 /usr/lib/libvirt/libvirt_lxc --name instance-000c --console 22 
 --handshake 25 --background --veth veth1

Is this how you'r invoking it our how libvirt invokes it? I can't seem
to reproduct this with 1.0.2. Could you check? If it still breaks please
attache the domain xml as well.
Cheers,
 -- Guido

 
 We have the error:
 
 root@PAR-SRV-02-MASTER:/# /usr/lib/libvirt/libvirt_lxc --name 
 instance-000c --console 22 --handshake 25 --background --veth veth1
 2012-04-19 19:10:27.189+: 14242: info : libvirt version: 0.9.11
 2012-04-19 19:10:27.189+: 14242: warning : lxcCapsInit:77 : Failed to get 
 host power management capabilities
 Segmentation fault
 
 In the syslog:
 
 Apr 19 20:58:22 PAR-SRV-02-MASTER kernel: [ 3122.548430] libvirt_lxc[13788]: 
 segfault at 0 ip 7f960ae68788 sp 7fff55eaeb38 error 4 in 
 libc-2.13.so[7f960ae31000+17d000]
 Apr 19 21:10:27 PAR-SRV-02-MASTER kernel: [ 3846.923857] libvirt_lxc[14242]: 
 segfault at 0 ip 7fe2185a3788 sp 7fffe882ade8 error 4 in 
 libc-2.13.so[7fe21856c000+17d000]
 
 With strace:
 
 futex(0x7f1115c05ba8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
 stat(/var/run/libvirt/lxc/instance-000c.xml, {st_mode=S_IFREG|0600, 
 st_size=1980, ...}) = 0
 stat(/var/run/libvirt/lxc/instance-000c.xml, {st_mode=S_IFREG|0600, 
 st_size=1980, ...}) = 0
 stat(/var/run/libvirt/lxc/instance-000c.xml, {st_mode=S_IFREG|0600, 
 st_size=1980, ...}) = 0
 open(/var/run/libvirt/lxc/instance-000c.xml, O_RDONLY) = 5
 lseek(5, 0, SEEK_CUR)   = 0
 read(5, !--\nWARNING: THIS IS AN AUTO-GE..., 8192) = 1980
 read(5, , 6212)   = 0
 brk(0x261e000)  = 0x261e000
 close(5)= 0
 --- SIGSEGV (Segmentation fault) @ 0 (0) ---
 +++ killed by SIGSEGV +++
 Segmentation fault
 
 Full strace on pastebin:
 
 http://pastebin.com/qdJFFudn
 
 With gdb:
 
 Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
 2012-04-19 19:11:37.358+: 14299: info : libvirt version: 0.9.11
 2012-04-19 19:11:37.358+: 14299: warning : lxcCapsInit:77 : Failed to get 
 host power management capabilities
 
 Program received signal SIGSEGV, Segmentation fault.
 0x76240788 in random_r () from /lib/x86_64-linux-gnu/libc.so.6
 (gdb) bt
 #0  0x76240788 in random_r () from /lib/x86_64-linux-gnu/libc.so.6
 #1  0x0043e906 in ?? ()
 #2  0x00434374 in ?? ()
 #3  0x00469055 in ?? ()
 #4  0x00469194 in ?? ()
 #5  0x0044d7c5 in ?? ()
 #6  0x0045e819 in ?? ()
 #7  0x0045fdd2 in ?? ()
 #8  0x004606cb in ?? ()
 #9  0x00408d6a in ?? ()
 #10 0x76227ead in __libc_start_main () from 
 /lib/x86_64-linux-gnu/libc.so.6
 #11 0x0040b221 in ?? ()
 #12 0x7fffdfc8 in ?? ()
 #13 0x001c in ?? ()
 #14 0x0005 in ?? ()
 7fffe270 in ?? ()
 #16 0x7fffe28d in ?? ()
 #17 0x7fffe294 in ?? ()
 #18 0x7fffe2a6 in ?? ()
 #19 0x7fffe2a9 in ?? ()
 #20 0x in ?? ()
 
 Best regards.
 Sam
 
 -- System Information:
 Debian Release: wheezy/sid
   APT prefers unstable
   APT policy: (500, 'unstable')
 rchitecture: amd64 (x86_64)
 
 nel: Linux 3.2.0-2-amd64 (SMP w/8 CPU cores)
 Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
 Shell: /bin/sh linked to /bin/dash
 
 Versions of packages libvirt-bin depends on:
 ii  adduser 3.113+nmu1
 ii  gettext-base0.18.1.1-5
 ii  libavahi-client30.6.31-1
 ii  libavahi-common30.6.31-1
 ii  libblkid1   2.20.1-4
 ii  libc6   2.13-30
 ii  libcap-ng0  0.6.6-1
 ii  libdevmapper1.02.1  2:1.02.67-2
 ii  libgcrypt11 1.5.0-3
 ii  libgnutls26 2.12.18-1
 ii  libnetcf1   0.1.9-2
 ii  libnl1  1.1-7
 ii  libnuma12.0.8~rc3-1
 ii  libparted0debian1   2.3-9.1
 ii  libpcap0.8  1.2.1-1
 ii  libpciaccess0   0.13.1-1
 ii  libreadline66.2-8
 ii  libsasl2-2  2.1.25.dfsg1-4
 ii  libudev0175-3.1
 ii  libvirt00.9.11-2
 ii  libxenstore3.0  4.1.2-4
 ii  libxml2 2.7.8.dfsg-8
 ii  libyajl22.0.4-2
 ii  logrotate   3.8.1-1
 
 Versions of packages libvirt-bin recommends:
 ii  bridge-utils1.5-2
 ii  dmidecode   2.11-6
 ii  dnsmasq-base2.60-2
 ii  ebtables2.0.9.2-2.1
 ii  gawk1:4.0.1+dfsg-1
 ii  iproute 20120319-1
 ii  iptables1.4.13-1
 ii  libxml2-utils   2.7.8.dfsg-8
 ii  netcat-openbsd  1.105-5
 ii  parted  2.3-9.1
 ii  qemu-kvm1.0+dfsg-11
 
 Versions of packages libvirt-bin suggests:
 pn  policykit-1  none
 pn  radvdnone
 
 -- 

Bug#700318: unblock: darktable/1.0.4-1+deb7u1 TPU pre-approval

2013-02-11 Thread Ivo De Decker
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Hi,

To allow the removal of flickcurl, darktable needs to be built without
(build-)dependency on flickcurl. The attached patch does that.

The version in unstable is very different from the one in wheezy:
 636 files changed, 175318 insertions(+), 57429 deletions(-)

Please pre-approve the attached patch for a TPU upload.

I tested the build in a pbuilder wheezy chroot.

Cheers,

Ivo

diff -Nru darktable-1.0.4/debian/changelog darktable-1.0.4/debian/changelog
--- darktable-1.0.4/debian/changelog2012-06-04 01:14:18.0 +0200
+++ darktable-1.0.4/debian/changelog2013-02-11 16:02:33.0 +0100
@@ -1,3 +1,11 @@
+darktable (1.0.4-1+deb7u1) testing-proposed-updates; urgency=low
+
+  * Non-maintainer upload.
+  * Remove dependency on libflickcurl-dev to allow removal from wheezy
+(Closes: #700314)
+
+ -- Ivo De Decker ivo.dedec...@ugent.be  Mon, 11 Feb 2013 16:02:10 +0100
+
 darktable (1.0.4-1) unstable; urgency=low
 
   * New upstream release
diff -Nru darktable-1.0.4/debian/control darktable-1.0.4/debian/control
--- darktable-1.0.4/debian/control  2012-06-04 01:14:18.0 +0200
+++ darktable-1.0.4/debian/control  2013-02-11 14:08:01.0 +0100
@@ -9,7 +9,7 @@
  libtiff-dev, libexiv2-dev, intltool, libglade2-dev,
  libsqlite3-dev, libopenexr-dev, libgphoto2-2-dev,
  libcurl4-gnutls-dev|libcurl-dev, libdbus-glib-1-dev, libgnome-keyring-dev,
- librsvg2-dev, libflickcurl-dev
+ librsvg2-dev
 Standards-Version: 3.9.3
 Homepage: http://darktable.sourceforge.net/
 Vcs-Git: git://git.debian.org/pkg-phototools/darktable.git


Bug#670902: planning (a) hsqldb transition(s)

2013-02-11 Thread Rene Engelhard
Hi,

On Mon, Jan 07, 2013 at 11:09:41AM +0100, Rene Engelhard wrote:
  Or is this silent agreement? 
  (If so then please do not complain if a upgrade of libhsqldb-java from 
  1.8.0.10 to
  libhsqldb-java 2.2.8 breaks anything - you had advance warning.
 
 This is the LAST ping. When there will be no reply (well, -med and
 Sebastien[1] answered, this targets -java..) I *will* take this as a
 silent agreement and do it immediately when the freeze ends
 (and libreoffice will directly switch to libhsqldb1.8.0-java).

Quoting IRC with Niels (2013-01-07):

11:01 _rene_ ping?
11:06 nthykier yes
11:06 _rene_ http://lists.debian.org/debian-openoffice/2012/04/msg00227.html 
   etc
11:07 _rene_ no pkg-java answer since February 2011
11:07 _rene_ I will send a last ping and if there's no reply just do it(tm) 
   once we unfreeze
11:07 _rene_ see also 
http://packages.qa.debian.org/h/hsqldb/news/20130107T011735Z.html and 
   http://ftp-master.debian.org/new/hsqldb1.8.0_1.8.0.10-15.html
11:08 _rene_ will also send a mail ping
11:09 _rene_ but here jfyi ;)
11:09 nthykier perhaps not the day we unfreeze, but yeah - I think silence 
 is acceptance is a good approach for the Java team atm, which 
 is generally not very active anymore
11:10 _rene_ mail sent

Nothing happened by now, so I *will* take this as silent consensus and
not ask any further. Will upload the new hsqldb after the freeze[1] and 
make LO use either the internal hsqldb 1.8.0 or libhsqldb1.8.0-java[2]..

Regards,
 
Rene

[1] Now that 698943 is fixed the new libhsqldb-java now is visible in
experimentals Packages files
[2] right now in NEW 
(http://ftp-master.debian.org/new/hsqldb1.8.0_1.8.0.10-15.html))


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



Bug#700267: [Pkg-libvirt-maintainers] Bug#700267: libvirt-bin: libvirtd segfaults with added usb device to lxc domain

2013-02-11 Thread Guido Günther
Hi,
On Sun, Feb 10, 2013 at 10:11:08PM +0400, Alexander Kudrevatykh wrote:
 Package: libvirt-bin
 Version: 1.0.2-2
 Severity: normal
 
 When trying to add usb device to lxc domain with  hostdev mode='subsystem' 
 type='usb' managed='yes' got segfault on start of domain
 attached gdb output and libvirtd debug output

Thanks for the info. Could you please also attache the XML of the
debian-cups domain and the command you use to attach the device?
Cheers,
 -- Guido

 
 
 
 -- System Information:
 Debian Release: 7.0
   APT prefers testing
   APT policy: (500, 'testing'), (1, 'experimental')
 Architecture: i386 (x86_64)
 Foreign Architectures: amd64
 
 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
 Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages libvirt0 depends on:
 ii  libaudit0   1:1.7.18-1.1
 ii  libavahi-client30.6.31-1
 ii  libavahi-common30.6.31-1
 ii  libc6   2.13-37
 ii  libcap-ng0  0.6.6-2
 ii  libdbus-1-3 1.6.8-1
 ii  libdevmapper1.02.1  2:1.02.74-4
 ii  libgcrypt11 1.5.0-3
 ii  libgnutls26 2.12.20-4
 ii  libnl-3-200 3.2.7-4
 ii  libnl-route-3-200   3.2.7-4
 ii  libnuma12.0.8~rc4-1
 ii  libsasl2-2  2.1.25.dfsg1-6
 ii  libxml2 2.8.0+dfsg1-7
 ii  libyajl22.0.4-2
 
 Versions of packages libvirt0 recommends:
 ii  lvm2  2.02.95-4
 
 libvirt0 suggests no packages.
 
 -- no debconf information

 [New LWP 17814]
 [New LWP 17808]
 [New LWP 17813]
 [New LWP 17804]
 [New LWP 17805]
 [New LWP 17812]
 [New LWP 17811]
 [New LWP 17807]
 [New LWP 17810]
 [New LWP 17803]
 [New LWP 17809]
 [New LWP 17806]
 [Thread debugging using libthread_db enabled]
 Using host libthread_db library 
 /lib/i386-linux-gnu/i686/cmov/libthread_db.so.1.
 Core was generated by `libvirtd'.
 Program terminated with signal 11, Segmentation fault.
 #0  usbDeviceListFind (list=0x0, dev=dev@entry=0x95798b0) at 
 /tmp/buildd/libvirt-1.0.2/./src/util/virusb.c:510
 
 Thread 12 (Thread 0xf5b2bb70 (LWP 17806)):
 #0  0xf7795425 in __kernel_vsyscall ()
 No symbol table info available.
 #1  0xf70b120a in pthread_cond_wait@@GLIBC_2.3.2 () from 
 /lib/i386-linux-gnu/i686/cmov/libpthread.so.0
 No symbol table info available.
 #2  0xf753e40a in virCondWait (c=c@entry=0x9514cd4, m=m@entry=0x9514cbc) at 
 /tmp/buildd/libvirt-1.0.2/./src/util/virthreadpthread.c:117
 ret = optimized out
 #3  0xf753e957 in virThreadPoolWorker (opaque=opaque@entry=0x94fc820) at 
 /tmp/buildd/libvirt-1.0.2/./src/util/virthreadpool.c:103
 data = 0x0
 pool = 0x9514ca0
 cond = 0x9514cd4
 priority = false
 job = 0x0
 #4  0xf753e138 in virThreadHelper (data=0x94fc7d0) at 
 /tmp/buildd/libvirt-1.0.2/./src/util/virthreadpthread.c:161
 args = 0x0
 local = {func = 0xf753e7d0 virThreadPoolWorker, opaque = 0x94fc820}
 #5  0xf70acc39 in start_thread () from 
 /lib/i386-linux-gnu/i686/cmov/libpthread.so.0
 No symbol table info available.
 #6  0xf701178e in clone () from /lib/i386-linux-gnu/i686/cmov/libc.so.6
 No symbol table info available.
 
 Thread 11 (Thread 0xf41ffb70 (LWP 17809)):
 #0  0xf7795425 in __kernel_vsyscall ()
 No symbol table info available.
 #1  0xf70b120a in pthread_cond_wait@@GLIBC_2.3.2 () from 
 /lib/i386-linux-gnu/i686/cmov/libpthread.so.0
 No symbol table info available.
 #2  0xf753e40a in virCondWait (c=c@entry=0x9514d50, m=m@entry=0x9514cbc) at 
 /tmp/buildd/libvirt-1.0.2/./src/util/virthreadpthread.c:117
 ret = optimized out
 #3  0xf753e980 in virThreadPoolWorker (opaque=opaque@entry=0xf4200528) at 
 /tmp/buildd/libvirt-1.0.2/./src/util/virthreadpool.c:103
 data = 0x0
 pool = 0x9514ca0
 cond = 0x9514d50
 priority = true
 job = 0x0
 #4  0xf753e138 in virThreadHelper (data=0xf4200538) at 
 /tmp/buildd/libvirt-1.0.2/./src/util/virthreadpthread.c:161
 args = 0x0
 local = {func = 0xf753e7d0 virThreadPoolWorker, opaque = 0xf4200528}
 #5  0xf70acc39 in start_thread () from 
 /lib/i386-linux-gnu/i686/cmov/libpthread.so.0
 No symbol table info available.
 #6  0xf701178e in clone () from /lib/i386-linux-gnu/i686/cmov/libc.so.6
 No symbol table info available.
 
 Thread 10 (Thread 0xf6e64750 (LWP 17803)):
 #0  0xf7795425 in __kernel_vsyscall ()
 No symbol table info available.
 #1  0xf7003d96 in poll () from /lib/i386-linux-gnu/i686/cmov/libc.so.6
 No symbol table info available.
 #2  0xf75149e5 in virEventPollRunOnce () at 
 /tmp/buildd/libvirt-1.0.2/./src/util/vireventpoll.c:630
 fds = 0xf420f7f8
 ret = optimized out
 timeout = -1
 nfds = 13
 __func__ = virEventPollRunOnce
 __FUNCTION__ = virEventPollRunOnce
 #3  0xf751336b in virEventRunDefaultImpl () at 
 /tmp/buildd/libvirt-1.0.2/./src/util/virevent.c:247
 __func__ = virEventRunDefaultImpl
 #4  0xf7633d05 in virNetServerRun (srv=srv@entry=0x9514b98) at 
 

Bug#700121: kdm: second login on static server makes kwin freeze

2013-02-11 Thread Maximiliano Curia
Hi,

I'm using kdm in a number of machines and I could not reproduce the problem.
However, I suspect the problem might be related to the composite manager
startup (the second time) due to a video driver glitch.

Can you please provide the hardware info of the video card you are using?

Can you test the problem using Xrender as the composing type?
(System Settings - Workspace Appearance and Behavior - Desktop Effects -
Advanced - Compositing type)

Also, the steps to reproduce the problem are somewhat eclectic, please, could
you provide a series of steps to reproduce the problem in a clean machine.

Thanks,
-- 
If the code and the comments disagree, then both are probable wrong.
-- Norm Schryer
Saludos /\/\ /\  `/


signature.asc
Description: Digital signature


Bug#699813: libvirt refuses to use newer CPU models that are presented as default

2013-02-11 Thread Guido Günther
Hi Philipp,
On Tue, Feb 05, 2013 at 02:59:05PM +0100, Philipp Kern wrote:
 Package: libvirt-bin
 Version: 0.9.12-5
 Severity: normal
 
 libvirt in wheezy calls qemu with -nodefconfig to query the supported CPU
 models (-cpu ?). This ignores the cpu definition qemu ships
 (/usr/share/kvm/cpus-x86_64.conf in qemu-kvm). When copying
 the CPU flags of the host processor virt-manager will pick, in my case,
 SandyBridge, which libvirt then discards as not being supported.
 libvirt 0.9.13 will call qemu with -no-user-config[0], which will
 still present the newer CPU models.

I'm not sure I'm following. I do see that we're missing the
-no-user-config patch in Wheezy's libvirt but if I read this correctly
even with that patch applied you're not seeing the exected result which
would be what exactly?
Cheers,
 -- Guido

 
 root@garona:~# kvm -nodefconfig -cpu ?
 x86   [n270]
 x86 [athlon]
 x86   [pentium3]
 x86   [pentium2]
 x86[pentium]
 x86[486]
 x86[coreduo]
 x86  [kvm32]
 x86 [qemu32]
 x86  [kvm64]
 x86   [core2duo]
 x86 [phenom]
 x86 [qemu64]
 
 root@garona:~# kvm -cpu ?
 x86   Opteron_G4
 x86   Opteron_G3
 x86   Opteron_G2
 x86   Opteron_G1
 x86  SandyBridge
 x86 Westmere
 x86  Nehalem
 x86   Penryn
 x86   Conroe
 x86   [n270]
 x86 [athlon]
 x86   [pentium3]
 x86   [pentium2]
 x86[pentium]
 x86[486]
 x86[coreduo]
 x86  [kvm32]
 x86 [qemu32]
 x86  [kvm64]
 x86   [core2duo]
 x86 [phenom]
 x86 [qemu64]
 
 root@garona:~# diff (kvm -cpu ?) (kvm -no-user-config -cpu ?)
 root@garona:~# 
 
 That's supported since qemu 1.1, which is in wheezy.
 
 Kind regards
 Philipp Kern
 
 [0] https://bugzilla.redhat.com/show_bug.cgi?id=804224#c11


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



Bug#695744: libvirtError: An error occurred, but the cause is unknown on virDomainDestroy()

2013-02-11 Thread Guido Günther
Hi,
On Wed, Dec 12, 2012 at 10:36:23AM +0200, noxdafox wrote:
 Package: python-libvirt
 Version: 1.0.0-1
 Severity: normal
 Tags: upstream
 
 I'm running several Virtual Machines on a single system with qemu-kvm; their
 lifecycle is short and the system is under pretty heavy load.

Could you recheck with 1.0.2? We had several bugs fixed in that area and
I'm not seeing this on any host. If it still happens please have a
closer look at the libvirt logs (running the daemon in debug mode).
Cheers,
 -- Guido

 
 Occasionally, when shutting down an environment I get the following error:
 
 File /usr/lib/python2.7/dist-packages/libvirt.py, line 734, in destroy
 if ret == -1: raise libvirtError ('virDomainDestroy() failed', dom=self)
 libvirtError: An error occurred, but the cause is unknown
 
 Looking at the QEMU log everything seems fine to me:
 
 2012-12-11 16:16:55.259+: starting up
 LC_ALL=C PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
 HOME=/root USER=root LOGNAME=root QEMU_AUDIO_DRV=none /usr/bin/kvm -name
 27395167-d05a-45b0-b866-86c4d232da44 -S -M pc-1.1 -cpu qemu32 -enable-kvm -m
 512 -smp 1,sockets=1,cores=1,threads=1 -uuid 27395167-d05a-
 45b0-b866-86c4d232da44 -no-user-config -nodefaults -chardev
 socket,id=charmonitor,path=/var/lib/libvirt/qemu/27395167-d05a-
 45b0-b866-86c4d232da44.monitor,server,nowait -mon
 chardev=charmonitor,id=monitor,mode=control -rtc base=utc -no-shutdown -device
 piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 -drive file=/dev/shm/see/27395167
 -d05a-45b0-b866-86c4d232da44/27395167-d05a-
 45b0-b866-86c4d232da44.qcow2,if=none,id=drive-ide0-0-0,format=qcow2 -device
 ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 -netdev
 tap,fd=75,id=hostnet0 -device
 rtl8139,netdev=hostnet0,id=net0,mac=52:54:00:d5:29:e1,bus=pci.0,addr=0x3 -vnc
 127.0.0.1:12 -vga cirrus -device virtio-balloon-
 pci,id=balloon0,bus=pci.0,addr=0x4
 Domain id=11932 is tainted: custom-monitor
 qemu: terminating on signal 15 from pid 24005
 2012-12-11 16:20:44.892+: shutting down
 
 I'm running libvirt 1.0.0 at the moment but the problem seems to occur also
 with the 0.9.13 release.
 
 Here the libvirt XML:
 
 ?xml version=1.0 encoding=UTF-8 ?
 domain type='kvm' id='1'
   memory unit='KiB'524288/memory
   currentMemory unit='KiB'524288/currentMemory
   vcpu1/vcpu
   os
 type arch='i686' machine='pc'hvm/type
 boot dev='hd'/
   /os
   features
 acpi/
 apic/
 pae/
   /features
   clock offset='utc'/
   on_poweroffpreserve/on_poweroff
   on_rebootrestart/on_reboot
   on_crashpreserve/on_crash
   devices
 emulator/usr/bin/kvm/emulator
 disk type='file' device='disk'
   driver name='qemu' type='qcow2'/
   target dev='hda' bus='ide'/
 /disk
 interface type='network'
   source network='default'/
 /interface
 graphics type='vnc' port='5900' autoport='yes'/
   /devices
   seclabel type='dynamic' relabel='yes'/
 /domain
 
 
 
 -- System Information:
 Debian Release: wheezy/sid
   APT prefers testing
   APT policy: (500, 'testing')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 3.2.0-3-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 python-libvirt depends on:
 ii  libaudit0   1:1.7.18-1.1
 ii  libavahi-client30.6.31-1
 ii  libavahi-common30.6.31-1
 ii  libc6   2.13-37
 ii  libcap-ng0  0.6.6-2
 ii  libdbus-1-3 1.6.8-1
 ii  libdevmapper1.02.1  2:1.02.74-4
 ii  libgcrypt11 1.5.0-3
 ii  libgnutls26 2.12.20-2
 ii  libnl-3-200 3.2.7-4
 ii  libnl-route-3-200   3.2.7-4
 ii  libnuma12.0.8~rc4-1
 ii  libsasl2-2  2.1.25.dfsg1-6
 ii  libvirt01.0.0-1
 ii  libxml2 2.8.0+dfsg1-6
 ii  libyajl22.0.4-2
 ii  python  2.7.3~rc2-1
 
 Versions of packages python-libvirt recommends:
 ii  libvirt-bin  1.0.0-1
 
 python-libvirt 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#700318: unblock: darktable/1.0.4-1+deb7u1 TPU pre-approval

2013-02-11 Thread Ivo De Decker
On Mon, Feb 11, 2013 at 04:17:54PM +0100, Ivo De Decker wrote:
 To allow the removal of flickcurl, darktable needs to be built without
 (build-)dependency on flickcurl. The attached patch does that.
 
 The version in unstable is very different from the one in wheezy:
  636 files changed, 175318 insertions(+), 57429 deletions(-)
 
 Please pre-approve the attached patch for a TPU upload.

I also should have noted that I don't think it makes sense to change this in
unstable, as flickcurl will stay there (probably with an updated version that
fixes the original problem in the first place).

Cheers,

Ivo


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



Bug#695265: fs2ram

2013-02-11 Thread Philippe Le Brouster
unarchive 695265
reopen 695265
thanks

Hi,

The version 0.3.10 of fs2ram doesn't fit for wheezy. Please see the
Bug#700312 fixed in the version 0.3.12.

There are two possibilities that sounds good for me:

- Pull fs2ram 0.3.12 to testing[1]
 or 
- Remove fs2ram 0.3.10 from testing (and fs2ram will be backported for 
wheezy after released)

[1] Bug#691742, especially 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691742#20

Cheers,
-- 
Philippe Le Brouster
 


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



Bug#699813: libvirt refuses to use newer CPU models that are presented as default

2013-02-11 Thread Philipp Kern
On Mon, Feb 11, 2013 at 04:33:01PM +0100, Guido Günther wrote:
  libvirt in wheezy calls qemu with -nodefconfig to query the supported CPU
  models (-cpu ?). This ignores the cpu definition qemu ships
  (/usr/share/kvm/cpus-x86_64.conf in qemu-kvm). When copying
  the CPU flags of the host processor virt-manager will pick, in my case,
  SandyBridge, which libvirt then discards as not being supported.
  libvirt 0.9.13 will call qemu with -no-user-config[0], which will
  still present the newer CPU models.
 I'm not sure I'm following. I do see that we're missing the
 -no-user-config patch in Wheezy's libvirt but if I read this correctly
 even with that patch applied you're not seeing the exected result which
 would be what exactly?

It should use -no-user-config, not -nodefconfig, as otherwise the models
defined in qemu's system configuration are not available. I didn't mean
to imply that it would not work after applying that patch.

My main point is that either virt-manager or libvirt from wheezy (I
don't know where it's coming from) propose SandyBridge as the default
CPU model on this machine (which, admittedly, is the closed match),
while it's not available on the hypervisor due to the odd qemu call
(i.e. KVM will fall back due to the global configuration not being
loaded).

Kind regards
Philipp Kern


signature.asc
Description: Digital signature


Bug#617342: [ow...@bugs.debian.org: Bug#699939 closed by s...@debian.org (Steve M. Robbins) (Bug#699939: fixed in mriconvert 2.0.250-1)]

2013-02-11 Thread Steve M. Robbins
retitle 617342 32-bit multiframe image conversion ignores frames
thanks

On February 10, 2013 05:44:27 PM Yaroslav Halchenko wrote:
 Hi Steve,
 
 Thank you for the upload!  I wonder if I have misread
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617342
 or it should have also been fixed with the correct .235?

Well, it *should* have been fixed in rev235.  It was fixed in
the rev235 *binary* that I tried.  Unfortunately, the source tarball on the 
site was not updated when r235 was released, so it wasn't actually fixed in the 
Debian package.

Also of note: while the output is indeed 32-bit pixels, the particular file 
Mathieu supplied is still not handled properly because only one of the frames 
is output.So it wasn't likely fixed even with the correct r235.

Thus I am leaving the bug open, with the updated title.

Best regards,
-Steve


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



Bug#698582: isc-dhcp-client: prompting due to modified conffiles which were not modified by the user: /etc/dhcp/dhclient.conf

2013-02-11 Thread gregor herrmann
On Sun, 10 Feb 2013 18:16:15 +0100, gregor herrmann wrote:

 Ok, first attempt (patch against the package in testing) attached;
 improvements welcome.

As pointed out on IRC, this might fail if dhcp3-client was purged in
the meantime (and /etc/dhcp3/dhclient.conf removed); here's a second
version that checks only the (copied) /etc/dhcp/dhclient.conf.

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Rolling Stones
diff -Nru isc-dhcp-4.2.2.dfsg.1/debian/changelog isc-dhcp-4.2.2.dfsg.1/debian/changelog
--- isc-dhcp-4.2.2.dfsg.1/debian/changelog	2012-10-15 00:04:44.0 +0200
+++ isc-dhcp-4.2.2.dfsg.1/debian/changelog	2013-02-10 18:14:12.0 +0100
@@ -1,3 +1,16 @@
+isc-dhcp (4.2.2.dfsg.1-5+deb70u3) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Fix prompting due to modified conffiles which were not modified by
+the user: /etc/dhcp/dhclient.conf:
+mangle /etc/dhcp/dhclient.conf in debian/isc-dhcp-client.preinst: if it's
+the same as /etc/dhcp3/dhclient.conf from lenny's dhcp3-client, change it
+to the same as a freshly installed /etc/dhcp/dhclient.conf from squeeze's
+isc-dhcp-client.
+(Closes: #698582)
+
+ -- gregor herrmann gre...@debian.org  Sun, 10 Feb 2013 17:06:05 +0100
+
 isc-dhcp (4.2.2.dfsg.1-5+deb70u2) testing-proposed-updates; urgency=high
 
   * Non-maintainer upload by the Security Team.
diff -Nru isc-dhcp-4.2.2.dfsg.1/debian/isc-dhcp-client.preinst isc-dhcp-4.2.2.dfsg.1/debian/isc-dhcp-client.preinst
--- isc-dhcp-4.2.2.dfsg.1/debian/isc-dhcp-client.preinst	2012-09-14 05:24:53.0 +0200
+++ isc-dhcp-4.2.2.dfsg.1/debian/isc-dhcp-client.preinst	2013-02-11 16:52:00.0 +0100
@@ -15,6 +15,15 @@
 		cp /etc/dhclient.conf /etc/dhcp3/dhclient.conf.oldconfig
 fi
 
+	# if the /etc/dhcp/dhclient.conf is the same as the
+	# /etc/dhcp3/dhclient.conf from lenny, mangle it to the one of a freshly
+	# installed squeeze /etc/dhcp/dhclient.conf, otherwise we get a dpkg
+	# prompt at updates to wheezy (#698582)
+	if [ -e /etc/dhcp/dhclient.conf ]  \
+		[ `md5sum /etc/dhcp/dhclient.conf  | awk '{print $1;}'` = 6e3910d75cd5cde0042ecb6d48492ae9 ]; then
+		sed -i -e 's/rfc3442-classless-static-routes;/rfc3442-classless-static-routes, ntp-servers;/' /etc/dhcp/dhclient.conf
+	fi
+
 	# We renamed debug-enter to debug - handle the transition
 	if [ ! -e /etc/dhcp3/dhclient-enter-hooks.d/debug ]  \
 	  [ -e /etc/dhcp3/dhclient-enter-hooks.d/debug-enter ]; then


signature.asc
Description: Digital signature


Bug#700121: kdm: second login on static server makes kwin freeze

2013-02-11 Thread Shai Berger
On Monday 11 February 2013 17:25:51 Maximiliano Curia wrote:
 Hi,
 
 I'm using kdm in a number of machines and I could not reproduce the
 problem. However, I suspect the problem might be related to the composite
 manager startup (the second time) due to a video driver glitch.
 

This could well be. Both machines I tested with earlier use NVidia cards (with 
proprietary driver); I just tested on this machine (intel card) and the 
problem was not reproduced.

 Can you please provide the hardware info of the video card you are using?


NVidia, updated binary drivers; I will be able to provide more accurate info 
(lspci etc) when I get home later today.
 
 Can you test the problem using Xrender as the composing type?
 (System Settings - Workspace Appearance and Behavior - Desktop Effects -
 Advanced - Compositing type)
 

Ditto.

 Also, the steps to reproduce the problem are somewhat eclectic, please,
 could you provide a series of steps to reproduce the problem in a clean
 machine.
 
Oh, the steps were very simple:

0. Assuming default KDM setup, once machine boots up, 
1. Log in. 
2. Log out. 
3. Log in again (same user or a different user). 
The X Session freezes with KWin at 100% CPU.

Thanks for your quick reply,

Shai.


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



Bug#699619: psi: breaks audio after some sounds (maybe about 30 or 50) were played

2013-02-11 Thread Jan Niehusmann
Hi Martin,

On Sat, Feb 02, 2013 at 02:22:07PM +0100, Martin Teufel wrote:
 After some sound-notifications were played, the sounddevice somehow
 breaks. I.e. no more sounds are played (of course psi tries to) and I
 can't output any sound/music at all (e.g. with mplayer or something).

Psi just calls an external program to play sounds. You can configure the
command to use in general/options/sound/player.

If the configuration is empty, psi autodetects if it should use play
or aplay. (aplay in case /proc/asound exists, play otherwise).

In any case, I don't see how the behaviour you describe could be a psi
bug. (Of course, I could be wrong.)

Do you have a player manually configured?

Does the same problem occur if you play sounds by manually calling
'aplay' (or 'play')?

Regards,
Jan


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



Bug#700319: kgb-bot should allow to use the real name or entire mail address in messages

2013-02-11 Thread Wolodja Wentland
Package: kgb-bot
Version: 1.25-1
Severity: wishlist

Dear Maintainer,

the current way in which author names are extracted from commit logs leads to
suboptimal commit messages in some cases. This is, in particular, the case if
somebody committed as, say, deb...@example.com. Currently this would result
in commit messages such as:

debian master file1 file2 * wonderful changes that improve everything

It is hard or even impossible to figure out /who/ actually commited to the
repository and people would have to check the log manually. I would like to be
able to configure kgb-bot to either show the entire mail address or, even
better, the real name of the user.

The bug seems to be that the regular expression to parse reflogs in
lib/App/KGB/Client/Git.pm uses ^author .+ ([^]+@[^]+/; to extract
author. I would propose to change this to either:

* ^author (.+) [^]+@[^]+/;# real name
* ^author .+ ([^]+@[^]+)/;# entire address

It would probably be best to simply give end users a way to configure this
themselves (either by letting them define the regex themselves or by providing
a number of defaults).

Thanks for your work and may you have a nice day!


-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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


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



Bug#675546: Vous avez dépassé la limite de stockage sur votre boîte aux lettres.

2013-02-11 Thread ph . admissions
Vous avez dépassé la limite de stockage sur votre boîte aux lettres.

Vous ne serez pas en mesure d'envoyer ou de recevoir de nouveaux messages 
jusqu'à ce que vous mettez à niveau votre quota de courrier électronique.

Copiez le lien ci-dessous et remplissez le formulaire pour mettre à niveau 
votre compte.

http://www.puntabrown.cl/generador/use/limit/form1.html

Administrateur système


Bug#700029: fs2ram: Fs2ram 0.3.10 doesn't keep filecontent, please pull 0.3.12 to debian testing.

2013-02-11 Thread Philippe Le Brouster
Hi,

You're trying to use the option/script 'keep_file_content' that exists
only since the version 0.3.12. fs2ram probably fails because of that.

You can put custom scripts in the folder /etc/fs2ram/unmount-scripts.
I've not tested but probably copying the script
/lib/fs2ram/unmount-scripts/keep_file_content from fs2ram-0.3.12 to the
folder /etc/fs2ram/unmount-scripts and use it with fs2ram-0.3.10 should
probably works...

However, the current version in testing is not suitable for wheezy (not
usable out-of-the-box). I've just filled the Bug#700312 for that. So
there are two possibilities for fs2ram:

- the release team pulls the version 0.3.12 from testing
- the release team removes the version 0.3.10 from testing (and the
  0.3.12 will be backported to wheezy when released).

Please follow the Bug#695265 for more information.

Cheers,
Philippe.


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



Bug#699813: libvirt refuses to use newer CPU models that are presented as default

2013-02-11 Thread Guido Günther
Hi Philipp,
On Mon, Feb 11, 2013 at 04:47:55PM +0100, Philipp Kern wrote:
 On Mon, Feb 11, 2013 at 04:33:01PM +0100, Guido Günther wrote:
   libvirt in wheezy calls qemu with -nodefconfig to query the supported CPU
   models (-cpu ?). This ignores the cpu definition qemu ships
   (/usr/share/kvm/cpus-x86_64.conf in qemu-kvm). When copying
   the CPU flags of the host processor virt-manager will pick, in my case,
   SandyBridge, which libvirt then discards as not being supported.
   libvirt 0.9.13 will call qemu with -no-user-config[0], which will
   still present the newer CPU models.
  I'm not sure I'm following. I do see that we're missing the
  -no-user-config patch in Wheezy's libvirt but if I read this correctly
  even with that patch applied you're not seeing the exected result which
  would be what exactly?
 
 It should use -no-user-config, not -nodefconfig, as otherwise the models
 defined in qemu's system configuration are not available. I didn't mean
 to imply that it would not work after applying that patch.
 
 My main point is that either virt-manager or libvirt from wheezy (I
 don't know where it's coming from) propose SandyBridge as the default
 CPU model on this machine (which, admittedly, is the closed match),
 while it's not available on the hypervisor due to the odd qemu call
 (i.e. KVM will fall back due to the global configuration not being
 loaded).

I see. Any chance to check if 1.0.2 from experimental fixes this for
you? I'd be happy to backport the -no-user-config part for wheezy since
it's very unintrusive.
Cheers,
 -- Guido

 
 Kind regards
 Philipp Kern


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



Bug#700320: cmake: Cmake licensing may not be open source

2013-02-11 Thread Nigel Horne
Package: cmake
Version: 2.8.9-1
Severity: normal

Dear Maintainer,

According to Copright.txt in cmake:

CMake - Cross Platform Makefile Generator
Copyright 2000-2011 Kitware, Inc., Insight Software Consortium
All rights reserved.

It's either open source or all rights reservered.  The caveats underneath
that notice are not relavent since the two are mutually incompatible.


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

Kernel: Linux 3.2.0-4-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 cmake depends on:
ii  cmake-data 2.8.9-1
ii  libarchive12   3.0.4-2
ii  libc6  2.13-38
ii  libcurl3-gnutls7.28.0-3
ii  libexpat1  2.1.0-1
ii  libgcc11:4.7.2-5
ii  libstdc++6 4.7.2-5
ii  libxmlrpc-core-c3  1.16.33-3.2
ii  procps 1:3.3.4-2
ii  zlib1g 1:1.2.7.dfsg-13

cmake recommends no packages.

Versions of packages cmake suggests:
ii  gcc   4:4.7.2-1
ii  make  3.81-8.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#699619: psi: breaks audio after some sounds (maybe about 30 or 50) were played

2013-02-11 Thread Martin Teufel
Hi Jan,

 Psi just calls an external program to play sounds. You can configure
 the command to use in general/options/sound/player.
that's interesting, but makes sense.

 Do you have a player manually configured?
No, I don't have a player configured manually. The configuration is
empty.

 If the configuration is empty, psi autodetects if it should use play
 or aplay. (aplay in case /proc/asound exists, play otherwise).
Yes, /proc/asound/ exists. It should use aplay then, assuming you're
right.

 Does the same problem occur if you play sounds by manually calling
 'aplay' (or 'play')?
I'm testing it at the moment, but not so far.

My problem with the situation: What _if_ aplay plays correctly all the
time, but in psi it breaks the sound after a while?
(At the moment, for me, it seems to be the case.)

Best regards,
Martin


On Mon, Feb 11, 2013 at 04:39:57PM +0100, Jan Niehusmann wrote:
 Psi just calls an external program to play sounds. You can configure the
 command to use in general/options/sound/player.
 
 If the configuration is empty, psi autodetects if it should use play
 or aplay. (aplay in case /proc/asound exists, play otherwise).
 
 In any case, I don't see how the behaviour you describe could be a psi
 bug. (Of course, I could be wrong.)
 
 Do you have a player manually configured?
 
 Does the same problem occur if you play sounds by manually calling
 'aplay' (or 'play')?
 
 Regards,
 Jan


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



Bug#700321: Add extension tar.xz to upstream-tarball.mk

2013-02-11 Thread Vasudev Kamath
Package: cdbs
Version: 0.4.120
Severity: normal

Hi,

upstream-tarball.mk marks extension tar.xz as unsupported. For eg one of
my package threw me following output when running debian/rules
get-orig-source

Upstream source tarball have been already downloaded: 
../tarballs/fonts-gargi_2.0.orig.tar.xz
Upstream tarball is trusted!
Unknown extension for upstream tarball fonts-gargi_2.0.orig.tar.xz

So I request adding the tar.xz as supported extension on upstream-tarball.mk

Thanks

-- System Information:
Debian Release: 7.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
armel

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

cdbs depends on no packages.

Versions of packages cdbs recommends:
ii  autotools-dev  20120608.1

Versions of packages cdbs suggests:
ii  devscripts  2.12.6

-- no debconf information

-- 
Vasudev Kamath
http://copyninja.info
Connect on ~friendica: copyninja@{frndk.de | vasudev.homelinux.net}
IRC nick: copyninja | vasudev {irc.oftc.net | irc.freenode.net}
GPG Key: C517 C25D E408 759D 98A4  C96B 6C8F 74AE 8770 0B7E


signature.asc
Description: Digital signature


Bug#700322: ikiwiki: !man shortcuts do not work

2013-02-11 Thread Dmitry Smirnov
Package: ikiwiki
Version: 3.20120629
Severity: minor

The following shortcut:

[[!man tune2fs]]

point to 

http://linux.die.net/man/tune2fs

which is 404 Not Found page.

I think it would make sense to update MAN shortcut to use 

manpages.debian.net:

http://manpages.debian.net/cgi-bin/man.cgi?query=tune2fs

or man.cx:

http://man.cx/tune2fs

By the way although I can create my own shortcut it seems to be impossible to 
override default ikiwiki-provided shortcuts. Is this intentional?

Thanks.

-- 
Regards,
 Dmitry Smirnov
 GPG key : 4096R/53968D1B


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



Bug#699853: icedove-gcontactsync: incompatibility with icedove-10.0.12

2013-02-11 Thread gregor herrmann
On Tue, 05 Feb 2013 22:37:28 +0100, Sree Harsha Totakura wrote:

 Package: icedove-gcontactsync
 Version: 0.2.8-1
 Severity: grave
 Justification: renders package unusable
 
 unable to use this addon after upgrading icedove to 10.0.12 from squeeze-
 backports. Icedove complains that this version is incompatible.

It's IMO not too surprising that the old icedove-gcontactsync from
stable doesn't work with the newer icedove from
testing/squeeze-backports.

Could you try with icedove-gcontactsync 0.3.5-1 from testing, please?
At least
https://addons.mozilla.org/en-US/thunderbird/addon/gcontactsync/
claims Works with Thunderbird 2.0.0.8 - 20.0a1.


Cheers,
gregor

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


signature.asc
Description: Digital signature


Bug#690004: lyx: letter (g-brief) does NOT depend on europs.sty (which is gone)

2013-02-11 Thread Adrian Immanuel Kiess
Package: lyx
Version: 2.0.3-3
Followup-For: Bug #690004

Dear Maintainer,

I can confirm this bug with g-brief2 on Debian/testing.
Still can use the document file, but the error message appears everytime you
open the document.

Sincerely,

Adrian Immanuel KIESS



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

Kernel: Linux 3.2.0-4-amd64 (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 lyx depends on:
ii  libboost-regex1.49.01.49.0-3.2
ii  libboost-signals1.49.0  1.49.0-3.2
ii  libc6   2.13-37
ii  libenchant1c2a  1.6.0-7
ii  libgcc1 1:4.7.2-5
ii  libmythes-1.2-0 2:1.2.2-1
ii  libqtcore4  4:4.8.2+dfsg-11
ii  libqtgui4   4:4.8.2+dfsg-11
ii  libstdc++6  4.7.2-5
ii  lyx-common  2.0.3-3
ii  xdg-utils   1.1.0~rc1+git20111210-6
ii  zlib1g  1:1.2.7.dfsg-13

Versions of packages lyx recommends:
ii  dvipng   1.14-1+b1
ii  elyxer   1.2.3-1
ii  epdfview [pdf-viewer]0.1.8-3
ii  evince [pdf-viewer]  3.4.0-3.1
ii  fonts-lyx2.0.3-3
ii  ghostscript  9.05~dfsg-6.3
ii  gv [pdf-viewer]  1:3.7.3-1
ii  imagemagick  8:6.7.7.10-5
ii  latex2html   2008-debian1-7
ii  okular [pdf-viewer]  4:4.8.4-3+b1
ii  poppler-utils0.18.4-5
ii  preview-latex-style  11.86-11
ii  psutils  1.17.dfsg-1
ii  tex4ht   20090611-1.1+b1
ii  texlive-fonts-recommended2012.20120611-5
ii  texlive-generic-extra2012.20120611-2
ii  texlive-generic-recommended  2012.20120611-5
ii  texlive-latex-extra  2012.20120611-2
ii  texlive-latex-recommended2012.20120611-5
ii  texlive-science  2012.20120611-2
ii  xpdf [pdf-viewer]3.03-10

Versions of packages lyx suggests:
ii  chktex  1.6.4-4
pn  dvipost none
ii  etoolbox2.1-1
pn  gnuhtml2latex   none
ii  groff   1.21-9
ii  inkscape0.48.3.1-1.3
pn  latex2rtf   none
ii  librsvg2-bin2.36.1-1
ii  libtiff-tools   4.0.2-6
pn  linuxdoc-tools  none
pn  lyx-dbg none
pn  noweb   none
ii  rcs 5.8.1-1
pn  sgmltools-lite  none
ii  texlive-xetex   2012.20120611-5
pn  writer2latexnone
ii  wv  1.2.9-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#700323: bsdgames: unable to load saved monop game

2013-02-11 Thread treaki
Package: bsdgames
Version: 2.17-19
Severity: normal

hi,

i am unable to load a savegame with monop. i get this error:

filename [Mon Feb 11 16:54:12 2013]
Segmentation fault

as attachment i am trying it to do within gdb (but im dont understanding gdb)

i think i dont am able to help you out with any more informaions.

greetings treaki
contact me:

email:
tre...@treaki.tk
tre...@gmail.com

(Send again because the mail configuration on my thinkpad isn't woeking with 
debian bug report)



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

Kernel: Linux 3.2.0-0.bpo.3-686-pae (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bsdgames depends on:
ii  libc6 2.11.3-4   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  wamerican [wordlist]  6-3American English dictionary words 
ii  wbritish-large [wordlist] 6-3British English dictionary words f
ii  wngerman [wordlist]   20091006-4.2   New German orthography wordlist

bsdgames recommends no packages.

bsdgames suggests no packages.

-- no debconf information

--
Diese Nachricht wurde von meinem Android-Mobiltelefon mit K-9 Mail gesendet.

|_|0|_|
|_|_|0|
|0|0|0|

http://treaki.tk/
http://treaki.ath.cx/treaki@treakis-thinkpad:~$ /usr/games/monop filename
filename [Mon Feb 11 16:54:12 2013]
Segmentation fault
treaki@treakis-thinkpad:~$ gdb /usr/games/monop
GNU gdb (GDB) 7.0.1-debian
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/games/monop...(no debugging symbols found)...done.
(gdb) run
Starting program: /usr/games/monop 
How many players? 2
Player 1's name: p1
Player 2's name: p2

p1 (1) rolls 10
p2 (2) rolls 5
p1 (1) goes first

p1 (1) (cash $1500) on === GO ===
-- Command: restore
Which file do you wish to restore from? filename
monop: malloc.c:3097: sYSMALLOc: Assertion `(old_top == (((mbinptr) (((char *) 
((av)-bins[((1) - 1) * 2])) - __builtin_offsetof (struct malloc_chunk, fd 
 old_size == 0) || ((unsigned long) (old_size) = (unsigned 
long)__builtin_offsetof (struct malloc_chunk, fd_nextsize))+((2 * 
(sizeof(size_t))) - 1))  ~((2 * (sizeof(size_t))) - 1)))  ((old_top)-size  
0x1)  ((unsigned long)old_end  pagemask) == 0)' failed.

Program received signal SIGSEGV, Segmentation fault.
_IO_flush_all_lockp (do_lock=0) at genops.c:842
842 genops.c: No such file or directory.
in genops.c
(gdb) run
The program being debugged has been started already.
Start it from the beginning? (y or n) y
Starting program: /usr/games/monop 
How many players? 
How many players? 
How many players? 0
Sorry. Number must range from 1 to 9
How many players? 1
Player 1's name: 
Player 1's name: a

a (1) rolls 7
a (1) goes first

a (1) (cash $1500) on === GO ===
-- Command: quit

Do you all really want to quit? y

Program exited normally.
(gdb) quit
treaki@treakis-thinkpad:~$ gdb --args /usr/games/monop filename
GNU gdb (GDB) 7.0.1-debian
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/games/monop...(no debugging symbols found)...done.
(gdb) run
Starting program: /usr/games/monop filename
filename [Mon Feb 11 16:54:12 2013]

Program received signal SIGSEGV, Segmentation fault.
0x0804abdd in ?? ()
(gdb) q
A debugging session is active.

Inferior 1 [process 26523] will be killed.

Quit anyway? (y or n) y
treaki@treakis-thinkpad:~$ 



Bug#700178: unattended-upgrades: minor corruption caused by Content-Transfer-Encoding: quoted-printable

2013-02-11 Thread Sam Morris
On Mon, 2013-02-11 at 09:34 +0100, Michael Vogt wrote:
 On Sat, Feb 09, 2013 at 02:21:27PM +, Sam Morris wrote:
  Package: unattended-upgrades
  Version: 0.79.4
  Severity: minor
 
 Thanks for your bugreport.
 
 [..] 
  My MUA formats the final part of the unattended-upgrades result mail as
  follows:
 [..]
  Correctly encoded, it should look like this:
  
  Allowed origins are: ['o=3DDebian,n=3Dwheezy', 
  'o=3DDebian,n=3Dwheezy-updates', 
  'o=3DDebian,n=3Dwheezy,l=3DDebian-Security', 
  'origin=3DDebian,archive=3Dstable,label=3DDebian-Security']
 
 Indeed, I just verified the issue and fixed it in trunk. It should
 work correctly there, if you want to give test-run it just get the
 latest version from bzr via:
 $ bzr branch lp:unattended-upgrades
 and run it from the local checkout.
 
 Cheers,
  Michael

Hi Michael, the fix looks good. As an alternative, you can avoid having
to explicitly encode the message body yourself by moving msg.set_charset
to after msg.set_payload. For example:

# coding=utf-8
from email import Charset
from email.header import Header
from email.message import Message

m = Message ()
m['To'] = Header (u'someøne')
m.set_payload ('body=neéds=CTE')

c = Charset.Charset ('utf-8')
c.body_encoding = Charset.QP
m.set_charset (c)

print m.as_string ()

This outputs:

To: =?utf-8?q?some=C3=B8ne?=
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable

body=3Dne=C3=A9ds=3DCTE

Including the bonus unintelligible but 7-bit clean To header. OTOH,
perhaps it's better to be explicit, since the ordering dependency isn't
obvious to someone who isn't familiar with the Python email module.

Anyway, cheers for the timely fix!

-- 
Sam Morris https://robots.org.uk/
3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078


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


Bug#700324: manpages-de: Please keep in sync with english (french) man pages

2013-02-11 Thread Helge Kreutzmann
Package: manpages-de
Version: 1.2-1
Severity: normal
X-Debbugs-CC: debian-l10n-ger...@lists.debian.org

There have been several releases of the english (and corresponding
french) man pages. However, the German ones last update was on October
(unfortunately it is difficult to obtain the version the German
translation is based on from debian/changelog.debian).

Since the French ones are kept in sync, I suppose a freeze exception
for the German ones might be granted as well.

For the lates update, see e.g. the following links:
https://lists.debian.org/debian-release/2013/01/msg01114.html
https://lists.debian.org/debian-release/2013/01/msg01192.html
https://lists.debian.org/debian-release/2013/01/msg01193.html
https://lists.debian.org/debian-release/2013/01/msg01245.html

Thanks

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

Kernel: Linux 3.2.36sneo.01-grsec (SMP w/6 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash

manpages-de depends on no packages.

manpages-de recommends no packages.

Versions of packages manpages-de suggests:
ii  konqueror [man-browser]  4:4.8.4-2
ii  man-db [man-browser] 2.6.2-1
ii  manpages 3.44-1

-- no debconf information

-- 
  Dr. Helge Kreutzmann deb...@helgefjell.de
   Dipl.-Phys.   http://www.helgefjell.de/debian.php
64bit GNU powered gpg signed mail preferred
   Help keep free software libre: http://www.ffii.de/


signature.asc
Description: Digital signature


Bug#699656: general: System freezes while using multimedia via DRI [Intel 82865G chip] on kernels above 3.2.0-3-686-pae

2013-02-11 Thread marc_sm...@gmx.com

Are you going to test the versions I asked about, from
snapshot.debian.org?

Ben.



I have tested kernel linux-image-3.2.0-4.drm-686-pae suggested by you 
and the results were even worse than before. On previously reported 
[faulty] kernel version going from fullscreen mode of playing video to 
the windowed mode was freezing the system. On this version 
[linux-image-3.2.0-4.drm-686-pae] even going from the static player 
window to the fullscreen freezes everything [same results as with the 
reported faulty kernel version - screen goes black and whole OS is 
completely unresponsive].



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



Bug#699619: psi: breaks audio after some sounds (maybe about 30 or 50) were played

2013-02-11 Thread Jan Niehusmann
On Mon, Feb 11, 2013 at 05:23:01PM +0100, Martin Teufel wrote:
 My problem with the situation: What _if_ aplay plays correctly all the
 time, but in psi it breaks the sound after a while?
 (At the moment, for me, it seems to be the case.)

Maybe some kind of concurrency problem? Psi may call aplay again while
an earlier instance is still running.

Regards,
Jan


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



Bug#700325: squeak-vm contains a bug in bitblit that is solved in upstream

2013-02-11 Thread Martin Kuball
Package: squeak-vm
Version: 1:4.10.2.2614-1
Severity: important



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

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

Versions of packages squeak-vm depends on:
ii  gettext-base   0.18.1.1-3
ii  konsole [x-terminal-emulator]  4:4.8.4-1
ii  libc6  2.13-21
ii  libfreetype6   2.3.11-1
ii  whiptail   0.52.14-8
ii  xterm [x-terminal-emulator]278-1

Versions of packages squeak-vm recommends:
pn  zenity | kdebase-bin  none

Versions of packages squeak-vm suggests:
pn  etoys  none

-- no debconf information

To reproduce the bug get the latest cuis image from
 http://www.jvuletich.org/Cuis/Index.html
and open it with squeak-vm. You see a black background but it should be blue. 
And if you move windows around they leave a trail
on the background which you can't get rid of.

The bug is fixed in upstream.

Martin


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



Bug#700322: ikiwiki: !man shortcuts do not work

2013-02-11 Thread Joey Hess
Dmitry Smirnov wrote:
 By the way although I can create my own shortcut it seems to be impossible to 
 override default ikiwiki-provided shortcuts. Is this intentional?

Edit the shortcuts page.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#700326: selinux-policy-default: should be added dac_override for fail2ban_t

2013-02-11 Thread Alexander Kudrevatykh
Package: selinux-policy-default
Version: 2:2.20110726-12
Severity: normal

fail2ban server should read files with rights like
-rw-r-. 1 syslog adm 165426 Feb 11 20:55 /var/log/auth.log
but dac_override permission is missed in default policy
here redhat bugreport for that problem 
https://bugzilla.redhat.com/show_bug.cgi?id=640796


-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: i386 (x86_64)
Foreign Architectures: amd64

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

Versions of packages selinux-policy-default depends on:
ii  libpam-modules   1.1.3-7.1
ii  libselinux1  2.1.9-5
ii  libsepol12.1.4-3
ii  policycoreutils  2.1.10-9
ii  python   2.7.3~rc2-1

Versions of packages selinux-policy-default recommends:
ii  checkpolicy  2.1.8-2
pn  setools  none

Versions of packages selinux-policy-default suggests:
ii  logcheck1.3.15
pn  syslog-summary  none

-- Configuration Files:
/etc/selinux/default/modules/active/file_contexts.local [Errno 13] Permission 
denied: u'/etc/selinux/default/modules/active/file_contexts.local'

-- 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#547092: [Pkg-nagios-devel] Bug#547092: Bug#547092: Bug#547092: nrpe ssl security problem

2013-02-11 Thread Alexander Wirt
On Sun, 10 Feb 2013, Thijs Kinkhorst wrote:

 Hi Alex,
 
   All agreed... but would you consider to add some big warnings about that
   fact? :)
  Thats something for the release notes or readme.debian. Feel free to send a
  patch. 
 
 I do not believe the issue should mean that NRPE is so critically flawed that 
 it should be removed from Wheezy: as sketched there are quite some ways to 
 use 
 NRPE safely, including other ways to do encryption. Also, when not allowing 
 command line parameters in the protocol (the default), for many environment 
 the existing network-level safeguards and local firewalls and network acl's 
 may provide adequate protection. So the key to this bug is to add 
 documentation that this specific feature is not to be relied on, as you said.
 
 I've added a patch which I think does this. It adds a warning in 
 README.Debian, it rewrites the shipped SECURITY file to convert the mention 
 of 
 the facility into a warning against it, and doesn't ship the README.SSL 
 anymore. I believe it should then be clear enough what the status of the 
 feature is.
 
 I don't think that adding something to the release notes is appropriate per 
 se 
 since this is not a new thing for wheezy at all.
 
 If this can be applied in unstable/wheezy, I believe the bug can be 
 downgraded 
 to a non-RC bug about the broken functionality.
 
 Please consider to apply and upload. I'm happy to NMU if you prefer, please 
 let me know.
And uploaded.

Thanks
Alex



pgpHx2IgKywdu.pgp
Description: PGP signature


Bug#630532: xorg hangs in screensaver (radeon chipset)

2013-02-11 Thread Michel Dänzer
On Mon, 2013-02-11 at 17:42 +0100, Adrian Immanuel Kiess wrote: 
 Package: xserver-xorg-video-radeon
 Version: 1:6.14.4-6
 Followup-For: Bug #630532

Unless you get the same kernel messages as reported in #630532, it's
probably not the same bug. Please file your own against libgl1-mesa-dri.


-- 
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



  1   2   3   >