Processed: CVE-2011-2512

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 631975 OOB memory access caused by negative vq notifies 
 (CVE-2011-2512)
Bug #631975 [qemu-kvm] OOB memory access caused by negative vq notifies (CVE 
pending)
Changed Bug title to 'OOB memory access caused by negative vq notifies 
(CVE-2011-2512)' from 'OOB memory access caused by negative vq notifies (CVE 
pending)'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
631975: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631975
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#612124: libxerces2-java: Depends-line broken due to hidden special character

2011-06-30 Thread Jonathan Nieder
tags 612124 + moreinfo
severity 612124 important
quit

Hi Martin,

Martin Millnert wrote:

 [Subject: libxerces2-java: Depends-line broken due to hidden special 
 character]

Unfortunately the above description seems to fall into the the
tachyon modulation must be wrongly polarised category described at [1].
Could you please describe the symptoms briefly, for a human to read,
by saying (1) what you did, (2) what you expected to happen, and
(3) what happened instead?

Afterwards, it should be possible to try to figure out the cause.

Sorry for the trouble, and hope that helps.

Regards,
Jonathan

[1] http://www.chiark.greenend.org.uk/~sgtatham/bugs.html



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



Processed: Re: libxerces2-java: Depends-line broken due to hidden special character

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 612124 + moreinfo
Bug #612124 [libxerces2-java] libxerces2-java: Depends-line broken due to 
hidden special character
Added tag(s) moreinfo.
 severity 612124 important
Bug #612124 [libxerces2-java] libxerces2-java: Depends-line broken due to 
hidden special character
Severity set to 'important' from 'grave'

 quit
Stopping processing here.

Please contact me if you need assistance.
-- 
612124: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612124
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#631975: [rt.debian.org #3254]: OOB memory access caused by negative vq notifies (CVE-2011-2512)

2011-06-30 Thread Michael Tokarev
29.06.2011 00:31, Michael Tokarev wrote:
 Additional information:
 http://patchwork.ozlabs.org/patch/94604/ (upstream patch)
 https://bugzilla.redhat.com/show_bug.cgi?id=717399
 
 The problem affects both sqeeze and sid versions.  It is present in
 lenny too, but that one is hopeless (we should provide fixes for
 lenny backports instead).

Actually, lenny version (kvm-72) is _not_ affected, -- the original
first implementation was correct, the bug has been introduced later
when the code has been refactored and moved to a separate function.
So only squeeze and sid versions are affected (and bpo50).

I updated both packages in collab-maint git (and the bugreport)
to mention the newly assigned CVE-2011-2512 (renamed the patch
accordingly and updated the changelog entry).  New debdiff is
attached.

Thank you!

/mjt
diff -u qemu-kvm-0.12.5+dfsg/debian/changelog 
qemu-kvm-0.12.5+dfsg/debian/changelog
--- qemu-kvm-0.12.5+dfsg/debian/changelog
+++ qemu-kvm-0.12.5+dfsg/debian/changelog
@@ -1,3 +1,10 @@
+qemu-kvm (0.12.5+dfsg-5+squeeze4) stable; urgency=high
+
+  * virtio: guard against negative vq notifies -- fixes a guest-triggerable
+bug in virtio implementation (CVE-2011-2512) (Closes: #631975)
+
+ -- Michael Tokarev m...@tls.msk.ru  Wed, 29 Jun 2011 00:44:36 +0400
+
 qemu-kvm (0.12.5+dfsg-5+squeeze3) stable; urgency=low
 
   * cirrus_vga:fix-division-by-0-for-color-expansion-rop-92d675d1c1.diff
diff -u qemu-kvm-0.12.5+dfsg/debian/patches/series 
qemu-kvm-0.12.5+dfsg/debian/patches/series
--- qemu-kvm-0.12.5+dfsg/debian/patches/series
+++ qemu-kvm-0.12.5+dfsg/debian/patches/series
@@ -45,0 +46 @@
+virtio-guard-against-negative-vq-notifies-CVE-2011-2512.diff
only in patch2:
unchanged:
--- 
qemu-kvm-0.12.5+dfsg.orig/debian/patches/virtio-guard-against-negative-vq-notifies-CVE-2011-2512.diff
+++ 
qemu-kvm-0.12.5+dfsg/debian/patches/virtio-guard-against-negative-vq-notifies-CVE-2011-2512.diff
@@ -0,0 +1,62 @@
+upstream commit 7157e2e23e89adcd436caeab31fdd6b47eded377
+Author: Stefan Hajnoczi stefa...@linux.vnet.ibm.com
+Date:   Sun May 8 22:29:07 2011 +0100
+
+virtio: guard against negative vq notifies
+
+The virtio_queue_notify() function checks that the virtqueue number is
+less than the maximum number of virtqueues.  A signed comparison is used
+but the virtqueue number could be negative if a buggy or malicious guest
+is run.  This results in memory accesses outside of the virtqueue array.
+
+It is risky doing input validation in common code instead of at the
+guest-host boundary.  Note that virtio_queue_set_addr(),
+virtio_queue_get_addr(), virtio_queue_get_num(), and many other virtio
+functions do *not* validate the virtqueue number argument.
+
+Instead of fixing the comparison in virtio_queue_notify(), move the
+comparison to the virtio bindings (just like VIRTIO_PCI_QUEUE_SEL) where
+we have a uint32_t value and can avoid ever calling into common virtio
+code if the virtqueue number is invalid.
+
+Signed-off-by: Stefan Hajnoczi stefa...@linux.vnet.ibm.com
+Signed-off-by: Michael S. Tsirkin m...@redhat.com
+Backported-to-0.12-by: Michael Tokarev m...@tls.msk.ru
+
+--- a/hw/syborg_virtio.c
 b/hw/syborg_virtio.c
+@@ -145,7 +145,9 @@ static void syborg_virtio_writel(void *o
+ vdev-queue_sel = value;
+ break;
+ case SYBORG_VIRTIO_QUEUE_NOTIFY:
+-virtio_queue_notify(vdev, value);
++if (value  VIRTIO_PCI_QUEUE_MAX) {
++virtio_queue_notify(vdev, value);
++}
+ break;
+ case SYBORG_VIRTIO_STATUS:
+ vdev-status = value  0xFF;
+--- a/hw/virtio-pci.c
 b/hw/virtio-pci.c
+@@ -197,7 +197,9 @@ static void virtio_ioport_write(void *op
+ vdev-queue_sel = val;
+ break;
+ case VIRTIO_PCI_QUEUE_NOTIFY:
+-virtio_queue_notify(vdev, val);
++if (val  VIRTIO_PCI_QUEUE_MAX) {
++virtio_queue_notify(vdev, val);
++}
+ break;
+ case VIRTIO_PCI_STATUS:
+ vdev-status = val  0xFF;
+--- a/hw/virtio.c
 b/hw/virtio.c
+@@ -558,7 +558,7 @@ int virtio_queue_get_num(VirtIODevice *v
+ 
+ void virtio_queue_notify(VirtIODevice *vdev, int n)
+ {
+-if (n  VIRTIO_PCI_QUEUE_MAX  vdev-vq[n].vring.desc) {
++if (vdev-vq[n].vring.desc) {
+ vdev-vq[n].handle_output(vdev, vdev-vq[n]);
+ }
+ }


Bug#632165: v-sim-plugins and v-sim-doc: error when trying to install together

2011-06-30 Thread Ralf Treinen
Package: v-sim-doc,v-sim-plugins
Version: v-sim-doc/3.6.0-1
Version: v-sim-plugins/3.6.0-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2011-06-30
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  multiarch-support gcc-4.6-base libgcc1 libstdc++6 libgpg-error0 libgcrypt11
  libkeyutils1 libtasn1-3 libavahi-common-data libavahi-common3 libdbus-1-3
  libavahi-client3 libgnutls26 libkrb5support0 libk5crypto3 libkrb5-3
  libgssapi-krb5-2 libcups2 libidn11 libsasl2-2 libldap-2.4-2 librtmp0 openssl
  ca-certificates libcurl3-gnutls libdatrie1 libdrm2 libffi5 libexpat1
  libfreetype6 ucf ttf-dejavu-core fontconfig-config libfontconfig1
  libquadmath0 libgfortran3 libxau6 libxdmcp6 libxcb1 libx11-data libx11-6
  libxfixes3 libxdamage1 libxext6 libxxf86vm1 libgl1-mesa-glx libglu1-mesa
  libthai-data libthai0 libxcb-render0 libxcb-shm0 libxcomposite1 libxrender1
  libxcursor1 libxft2 libxi6 libxinerama1 libxrandr2 libdb4.8 libpcre3 libxml2
  mime-support python2.6-minimal python2.6 fontconfig libglib2.0-0
  libgirepository-1.0-1 gir1.2-glib-2.0 libatk1.0-data libatk1.0-0
  gir1.2-atk-1.0 libpixman-1-0 libpng12-0 libcairo2 libcairo-gobject2
  gir1.2-freedesktop libjpeg62 libjasper1 libtiff4 libgdk-pixbuf2.0-0
  gir1.2-gdkpixbuf-2.0 libgtk2.0-common libpango1.0-0 gir1.2-pango-1.0
  shared-mime-info libgtk2.0-0 gir1.2-gtk-2.0 gir1.2-v-sim-1.0
  libhdf5-serial-1.8.4 libnetcdf6 libopenbabel4 libpython2.6 v-sim-common
  v-sim v-sim-doc v-sim-plugins

Extracting templates from packages: 31%
Extracting templates from packages: 62%
Extracting templates from packages: 93%
Extracting templates from packages: 100%
Preconfiguring packages ...
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package multiarch-support.
(Reading database ... 9216 files and directories currently installed.)
Unpacking multiarch-support (from .../multiarch-support_2.13-7_amd64.deb) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up multiarch-support (2.13-7) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
(Reading database ... 9220 files and directories currently installed.)
Preparing to replace gcc-4.6-base 4.6.0-11 (using 
.../gcc-4.6-base_4.6.1-1_amd64.deb) ...
Unpacking replacement gcc-4.6-base ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up gcc-4.6-base (4.6.1-1) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
(Reading database ... 9218 files and directories currently installed.)
Preparing to replace libgcc1 1:4.6.0-11 (using 
.../libgcc1_1%3a4.6.1-1_amd64.deb) ...
Unpacking replacement libgcc1 ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up libgcc1 (1:4.6.1-1) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
(Reading database ... 9218 files and directories currently installed.)
Preparing to replace libstdc++6 4.6.0-11 (using 
.../libstdc++6_4.6.1-1_amd64.deb) ...
Unpacking replacement libstdc++6 ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Setting up libstdc++6 (4.6.1-1) ...
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libgpg-error0.
(Reading database ... 9218 files and directories currently installed.)
Unpacking libgpg-error0 (from .../libgpg-error0_1.10-0.3_amd64.deb) ...
Selecting previously deselected package libgcrypt11.
Unpacking libgcrypt11 (from .../libgcrypt11_1.4.6-7_amd64.deb) ...
Selecting previously deselected package libkeyutils1.
Unpacking libkeyutils1 (from .../libkeyutils1_1.4-5_amd64.deb) ...
Selecting previously deselected package libtasn1-3.
Unpacking libtasn1-3 (from .../libtasn1-3_2.9-4_amd64.deb) ...
Selecting previously deselected package libavahi-common-data.
Unpacking libavahi-common-data (from 
.../libavahi-common-data_0.6.30-3_amd64.deb) ...
Selecting previously deselected package libavahi-common3.
Unpacking libavahi-common3 (from .../libavahi-common3_0.6.30-3_amd64.deb) ...
Selecting previously deselected package libdbus-1-3.
Unpacking libdbus-1-3 (from .../libdbus-1-3_1.4.12-2_amd64.deb) ...
Selecting previously deselected package libavahi-client3.
Unpacking libavahi-client3 (from .../libavahi-client3_0.6.30-3_amd64.deb) ...
Selecting previously deselected package libgnutls26.
Unpacking libgnutls26 (from .../libgnutls26_2.10.5-2_amd64.deb) ...
Selecting previously deselected package libkrb5support0.
Unpacking libkrb5support0 (from .../libkrb5support0_1.9.1+dfsg-1+b1_amd64.deb) 
...
Selecting previously deselected package libk5crypto3.
Unpacking libk5crypto3 (from .../libk5crypto3_1.9.1+dfsg-1+b1_amd64.deb) ...
Selecting previously deselected package libkrb5-3.
Unpacking libkrb5-3 

Bug#611072: marked as done (please depend on python-sip instead of on python-sip4)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 09:50:16 +0200
with message-id 20110630075016.ga7...@pps.jussieu.fr
and subject line done in 1.4.0-1
has caused the Debian Bug report #611072,
regarding please depend on python-sip instead of on python-sip4
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
611072: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=611072
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-ball, python-ballview
Version: 1.3.2-2
Severity: important

I uploaded sip4 source package (previously: sip4-qt3) without transitional
packages (python-sip4, sip4, python-sip4-dev and python-sip4-dbg). It's
currently in NEW, but please update your dependencies in python-ball and
python-ballview binary packages. Sorry for late notice, it was
deprecated a year ago and I thought every package is already updated.

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

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


---End Message---
---BeginMessage---
Version: 1.4.0-1

This bug has been closed by the recent upload of ball but apparently the bug
was not closed since version 1.3.2-3 was not uploaded:

[Andreas Hildebrandt]
   * Depend on python-sip-dev instead of python-sip4-dev (Closes: #611072)

-Ralf
-- 
Ralf Treinen
Laboratoire Preuves, Programmes et Systèmes
Université Paris Diderot, Paris, France.
http://www.pps.jussieu.fr/~treinen/

---End Message---


Bug#628973: Blocked by subvertpy bug

2011-06-30 Thread Jelmer Vernooij
This is currently blocked by a subvertpy bug: 
https://bugs.launchpad.net/subvertpy/+bug/803353




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



Bug#632120: marked as done (gtk-vector-screenshot: FTBFS - need to b-d on pkg-config, GTK+ 3)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 08:47:36 +
with message-id e1qccuo-000253...@franck.debian.org
and subject line Bug#632120: fixed in gtk-vector-screenshot 0.2-2
has caused the Debian Bug report #632120,
regarding gtk-vector-screenshot: FTBFS - need to b-d on pkg-config, GTK+ 3
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
632120: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632120
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: gtk-vector-screenshot
Version: 0.2-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

Builds of gtk-vector-screenshot in minimal environments (as on the
autobuilders) have been failing because they can't find pkg-config or
GTK+ 3:

checking for pkg-config... no
configure: error: in `.../gtk-vector-screenshot-0.2':
configure: error: The pkg-config script could not be found or is too old.  Make 
sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
path to pkg-config.

Alternatively, you may set the environment variables GTK3_CFLAGS
and GTK3_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

To get pkg-config, see http://pkg-config.freedesktop.org/.
See `config.log' for more details
checking for GTK3... no
make: *** [debian/stamp-autotools] Error 1

Could you please add build dependencies on pkg-config and libgtk-3-dev
and check (with pbuilder or the like) that no others are missing?

Thanks!


---End Message---
---BeginMessage---
Source: gtk-vector-screenshot
Source-Version: 0.2-2

We believe that the bug you reported is fixed in the latest version of
gtk-vector-screenshot, which is due to be installed in the Debian FTP archive:

gtk-vector-screenshot_0.2-2.debian.tar.gz
  to main/g/gtk-vector-screenshot/gtk-vector-screenshot_0.2-2.debian.tar.gz
gtk-vector-screenshot_0.2-2.dsc
  to main/g/gtk-vector-screenshot/gtk-vector-screenshot_0.2-2.dsc
gtk-vector-screenshot_0.2-2_amd64.deb
  to main/g/gtk-vector-screenshot/gtk-vector-screenshot_0.2-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 632...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Joachim Breitner nome...@debian.org (supplier of updated 
gtk-vector-screenshot package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Jun 2011 10:27:31 +0200
Source: gtk-vector-screenshot
Binary: gtk-vector-screenshot
Architecture: source amd64
Version: 0.2-2
Distribution: unstable
Urgency: low
Maintainer: Joachim Breitner nome...@debian.org
Changed-By: Joachim Breitner nome...@debian.org
Description: 
 gtk-vector-screenshot - takes screenshots of applications as PDF or SVG files
Closes: 632120
Changes: 
 gtk-vector-screenshot (0.2-2) unstable; urgency=low
 .
   * Duh, completely forgot about the Build-Depends (Closes: #632120)
Checksums-Sha1: 
 4ee145062301a7fa2429f513db5be84f3a066453 1309 gtk-vector-screenshot_0.2-2.dsc
 84f2699fa1affd74dcc7df9cf6697ee8c16466dd 1831 
gtk-vector-screenshot_0.2-2.debian.tar.gz
 4fcde3e71074fc3f6e8f64413c491f7c6c3a9e0d 19226 
gtk-vector-screenshot_0.2-2_amd64.deb
Checksums-Sha256: 
 60c4506835ed3adc23e25b352c369451e55edc26100816a2f0a9463503a1bbc6 1309 
gtk-vector-screenshot_0.2-2.dsc
 60c8286d8f875446dbd88aee5a52fd4e774aa8c95e0bed25816bacf4104930f8 1831 
gtk-vector-screenshot_0.2-2.debian.tar.gz
 950e3a8045e775cd2ed69aab8ccc6cc28d58bbe95181ec98fb29ac9449036c71 19226 
gtk-vector-screenshot_0.2-2_amd64.deb
Files: 
 50b1ea213944a588336a99e6a2c11448 1309 gnome optional 
gtk-vector-screenshot_0.2-2.dsc
 111bae7558781da09d82c9a6d92e8603 1831 gnome optional 
gtk-vector-screenshot_0.2-2.debian.tar.gz
 8c512f7559d01ef436befe5151227fa4 19226 gnome optional 
gtk-vector-screenshot_0.2-2_amd64.deb

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

iEYEARECAAYFAk4MM5kACgkQ9ijrk0dDIGysRQCeNmDZ58Ta/vu9TsjutaFZBgqi
NokAn1Ad7/zMq2vHbunxcgpD5vnUJ0yD
=l/SF
-END PGP SIGNATURE-


---End Message---


Bug#632177: /usr/share/doc/bash/copyright contains outdated copyright information

2011-06-30 Thread Adrian Bunk
Package: bash
Version: 4.1-3
Severity: serious

/usr/share/doc/bash/copyright says:

--  snip  --


Bash is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.


--  snip  --


The source files say:


--  snip  --


   Bash is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.


--  snip  --



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



Bug#628952: minidlna: Possible unknown copyright status of hardcoded image blobs in source code

2011-06-30 Thread Benoît Knecht
tag 628952 pending
--

Hi everyone,

First of all, I'd like to thank everyone for their comments, they were
all very helpful.

And in light of all of this, I think the best approach is first of all
removing the Netgear logo since we're not using it in Debian anyway, and
then replacing the Tux logo with the Debian logo.

This should be fixed in the next upload of minidlna.

Thanks again to everyone.

-- 
Benoît Knecht



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



Processed: Re: Bug#628952: minidlna: Possible unknown copyright status of hardcoded image blobs in source code

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 628952 pending
Bug #628952 [minidlna] minidlna: Possible unknown copyright status of hardcoded 
image blobs in source code
Added tag(s) pending.
 --
Stopping processing here.

Please contact me if you need assistance.
-- 
628952: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628952
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: Modifying bug report

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notfound 579226 0.7.0-1
Bug #579226 [virtaal] virtaal: Ctrl-down while navigating incomplete entries 
moves to the one after the next incomplete one
Ignoring request to alter found versions of bug #579226 to the same values 
previously set
 notfound 602386 1.9.0-1
Bug #602386 [translate-toolkit] translate-toolkit: 'MSetItem' object does not 
support indexing on test_indexers.py for XapianIndexer
Ignoring request to alter found versions of bug #602386 to the same values 
previously set
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
602386: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602386
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#613592: /sbin/fdisk: Can't create at sector 63

2011-06-30 Thread Olaf van der Spek
On Wed, Jun 29, 2011 at 6:52 PM, Alexander Kurtz
kurtz.a...@googlemail.com wrote:
 On Wed, 2011-06-29 at 18:24 +0200, Olaf van der Spek wrote:
 So what's the advantage of c/sfdisk?

 Well, it's smaller, has fewer dependencies and is installed on almost
 every system. And since most administrators are familiar with it and it
 is more than sufficient for most of the common tasks, there is no reason
 not to keep it...

Fair enough.
It's still bad that I had trouble resizing a partition. :p
-- 
Olaf



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



Bug#631975: marked as done (OOB memory access caused by negative vq notifies (CVE-2011-2512))

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 12:03:23 +
with message-id e1qcfxr-0003kg...@franck.debian.org
and subject line Bug#631975: fixed in qemu-kvm 0.14.1+dfsg-2
has caused the Debian Bug report #631975,
regarding OOB memory access caused by negative vq notifies (CVE-2011-2512)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
631975: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631975
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: qemu-kvm
Version: 0.12.5+dfsg-5+squeeze3
Severity: grave
Tags: upstream security squeeze sid

The virtio_queue_notify() function checks that the virtqueue number is
less than the maximum number of virtqueues.  A signed comparison is used
but the virtqueue number could be negative if a buggy or malicious guest
is run.  This results in memory accesses outside of the virtqueue array.

This can be triggered by malicious guest - unprivileged guest user can
either crash the qemu process or, possible, gain extra privileges on
the host.

Additional information:
http://patchwork.ozlabs.org/patch/94604/ (upstream patch)
https://bugzilla.redhat.com/show_bug.cgi?id=717399

The problem affects both sqeeze and sid versions.  It is present in
lenny too, but that one is hopeless (we should provide fixes for
lenny backports instead).


---End Message---
---BeginMessage---
Source: qemu-kvm
Source-Version: 0.14.1+dfsg-2

We believe that the bug you reported is fixed in the latest version of
qemu-kvm, which is due to be installed in the Debian FTP archive:

kvm_0.14.1+dfsg-2_amd64.deb
  to main/q/qemu-kvm/kvm_0.14.1+dfsg-2_amd64.deb
qemu-kvm-dbg_0.14.1+dfsg-2_amd64.deb
  to main/q/qemu-kvm/qemu-kvm-dbg_0.14.1+dfsg-2_amd64.deb
qemu-kvm_0.14.1+dfsg-2.debian.tar.gz
  to main/q/qemu-kvm/qemu-kvm_0.14.1+dfsg-2.debian.tar.gz
qemu-kvm_0.14.1+dfsg-2.dsc
  to main/q/qemu-kvm/qemu-kvm_0.14.1+dfsg-2.dsc
qemu-kvm_0.14.1+dfsg-2_amd64.deb
  to main/q/qemu-kvm/qemu-kvm_0.14.1+dfsg-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 631...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Tokarev m...@tls.msk.ru (supplier of updated qemu-kvm package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 29 Jun 2011 00:53:54 +0400
Source: qemu-kvm
Binary: qemu-kvm qemu-kvm-dbg kvm
Architecture: source amd64
Version: 0.14.1+dfsg-2
Distribution: unstable
Urgency: high
Maintainer: Jan Lübbe jlue...@debian.org
Changed-By: Michael Tokarev m...@tls.msk.ru
Description: 
 kvm- dummy transitional package from kvm to qemu-kvm
 qemu-kvm   - Full virtualization on x86 hardware
 qemu-kvm-dbg - Debugging info for qemu-kvm
Closes: 631975
Changes: 
 qemu-kvm (0.14.1+dfsg-2) unstable; urgency=high
 .
   * virtio: guard against negative vq notifies -- fixes a guest-triggerable
 bug in virtio implementation (CVE-2011-2512) (Closes: #631975)
 Urgency is high due to security fix.
Checksums-Sha1: 
 54d817e1eeac450e45d960662ad037ae329509a1 1698 qemu-kvm_0.14.1+dfsg-2.dsc
 9fa9ff7bbf0e9699cc3c7dba3a03573840e0cb56 24806 
qemu-kvm_0.14.1+dfsg-2.debian.tar.gz
 f3cbfda6d8d860179a8d489962f5373848cd50e7 1274594 
qemu-kvm_0.14.1+dfsg-2_amd64.deb
 0a50d63033febd5267f23c536ba97ebf1167ec2d 3319678 
qemu-kvm-dbg_0.14.1+dfsg-2_amd64.deb
 0c14de717a55cc814e64d4056f13a7a7f22b6da9 8858 kvm_0.14.1+dfsg-2_amd64.deb
Checksums-Sha256: 
 4e799e793dee357cecb12295eaf34d846076eb52e9ca6c898c811067878a5f07 1698 
qemu-kvm_0.14.1+dfsg-2.dsc
 f35dfe4a953f44a39f3fdc030fa7b794a7c56016773791249ce4e41df75f68b9 24806 
qemu-kvm_0.14.1+dfsg-2.debian.tar.gz
 712d5794bde18b8b83d51359094f11f72637c0ca03f625787a663ed4998c85de 1274594 
qemu-kvm_0.14.1+dfsg-2_amd64.deb
 e124fe6c58f55dba388519301c772145ae79d0bc67f90f8236c97eb3ad9f35b7 3319678 
qemu-kvm-dbg_0.14.1+dfsg-2_amd64.deb
 3573b4683f05e992b1ecfb587e8d63e16c5ab0fb4e0a15efd0a6b70e6cb45be8 8858 
kvm_0.14.1+dfsg-2_amd64.deb
Files: 
 4d78f2268bb6768dc215432463f8b03e 1698 misc optional qemu-kvm_0.14.1+dfsg-2.dsc
 9f73a92ede70a1eccc83b450622cf440 24806 misc optional 
qemu-kvm_0.14.1+dfsg-2.debian.tar.gz
 07e9494649d3873dfee6b530545b0290 1274594 misc optional 
qemu-kvm_0.14.1+dfsg-2_amd64.deb
 bb94aa793b4b96e9fa5bba3ee0377be6 3319678 debug extra 

Processed: unblock 622279 with 621993 614498

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # not in testing: libdesktop-agnostic, guppy
 unblock 622279 with 621993 614498
Bug #622279 [release.debian.org] transition: python-defaults (switching 
default: 2.6 - 2.7)
Was blocked by: 628860 629085 628243 625676 623587 622966 623578 629087 625171 
606363 631800 622912 625153 624917 625040 631823 624940 621879 625880 631820 
624824 625151 624901 621993 626800 625520 618094 599127 622976 614498 608640 
622154 628827 553961 625677 625108 629091 623418 622001 618055 622072 625722 
625853 622070 621992 555767 625137 606006 616364 626259 605875 623165 621402 
628820 625678 622978 618084 628826 553930 624889 621948 628830 629122 624787 
626199 628839 629817 623927 625707 624950 625115 554552 629148 628852 631856 
629145 624740 626421 618159 631821 629090 606681 622027 625011 624811 626416 
624982 606642 625679 624597 625087 625135 610777 628828 624429 621932
Removed blocking bug(s) of 622279: 621993 and 614498
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
622279: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622279
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#631938: The problem is still exist in 0.1.3

2011-06-30 Thread ilias
Package: glx-diversions
Version: 0.1.3
Followup-For: Bug #631938

I've tried to update glx-diversions to 0.1.3 and my system still can't 
configure it:

$ sudo apt-get --reinstall install glx-diversions glx-alternative-mesa \
  glx-alternative-fglrx fglrx-driver fglrx-glx-ia32 xvba-va-driver \
  fglrx-control fglrx-glx
Reading package lists... Done
Building dependency tree   
Reading state information... Done
0 upgraded, 0 newly installed, 8 reinstalled, 0 to remove and 0 not upgraded.
8 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
0 upgraded, 0 newly installed, 8 reinstalled, 0 to remove and 0 not upgraded.
8 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Setting up glx-diversions (0.1.3) ...
dpkg: error processing glx-diversions (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of glx-alternative-mesa:
 glx-alternative-mesa depends on glx-diversions (= 0.1.3); however:
  Package glx-diversions is not configured yet.
dpkg: error processing glx-alternative-mesa (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of glx-alternative-fglrx:
 glx-alternative-fglrx depends on glx-diversions (= 0.1.3); however:
  Package glx-diversions is not configured yet.
 glx-alternative-fglrx depends on glx-alternative-mesa; however:
  Package glx-alternative-mesa is not configured yet.
dpkg: error processing glx-alternative-fglrx (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of fglrx-driver:
 fglrx-driver depends on glx-alternative-fglrx (= 0.1.2); however:
  Package glx-alternative-fglrx is not cconfigured to not write apport reports
  
configured 
to not write apport reports

configured 
to not write apport reports
configured to not write apport reports
  configured to not write apport reports

configured 
to not write apport reports

  configured 
to not write apport reports


configured 
to not write apport reports
onfigured yet.
dpkg: error processing fglrx-driver (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of fglrx-glx-ia32:
 fglrx-glx-ia32 depends on fglrx-driver (= 1:11-6-2); however:
  Package fglrx-driver is not configured yet.
dpkg: error processing fglrx-glx-ia32 (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of xvba-va-driver:
 xvba-va-driver depends on fglrx-driver (= 1:11-6); however:
  Package fglrx-driver is not configured yet.
dpkg: error processing xvba-va-driver (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of fglrx-control:
 fglrx-control depends on fglrx-driver; however:
  Package fglrx-driver is not configured yet.
dpkg: error processing fglrx-control (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of fglrx-glx:
 fglrx-glx depends on fglrx-driver (= 1:11-6-2); however:
  Package fglrx-driver is not configured yet.
 fglrx-glx depends on glx-alternative-fglrx (= 0.1.2); however:
  Package glx-alternative-fglrx is not configured yet.
dpkg: error processing fglrx-glx (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 glx-diversions
 glx-alternative-mesa
 glx-alternative-fglrx
 fglrx-driver
 fglrx-glx-ia32
 xvba-va-driver
 fglrx-control
 fglrx-glx
E: Sub-process /usr/bin/dpkg returned an error code (1)

-- Package-specific info:
Diversions:
diversion of /usr/lib32/libGL.so.1 to /usr/lib32/fglrx/diversions/libGL.so.1 
by fglrx-glx-ia32
diversion of /usr/lib32/libGL.so.1.2 to 
/usr/lib32/fglrx/diversions/libGL.so.1.2 by fglrx-glx-ia32

/usr/lib/fglrx/diversions:
total 300
drwxr-xr-x 2 root root 22 Jun 27 14:45 .
drwxr-xr-x 3 root root 94 Jun 27 15:41 ..
-rw-r--r-- 1 root root 305864 Jun 17 20:15 libglx.so

/usr/lib/mesa-diverted:
total 116
drwxr-xr-x   4 root root50 Jun 27 15:40 .
drwxr-xr-x 192 root root 77824 Jun 30 13:50 ..
drwxr-xr-x   2 root root 6 Jun 26 20:57 i386-linux-gnu
drwxr-xr-x   2 root root 6 Jun 26 20:57 x86_64-linux-gnu

/usr/lib/mesa-diverted/i386-linux-gnu/:
total 0
drwxr-xr-x 2 

Bug#631938: The problem is still exist in 0.1.3

2011-06-30 Thread Andreas Beckmann
clone 631938 -1
submitter -1 il...@thechampion.ru
found -1 0.1.3
notfound 631938 0.1.3
retitle -1 glx-diversions postinst fails without printing any messages
severity -1 important
summary -1 47
thanks

On 2011-06-30 15:00, ilias wrote:
 Setting up glx-diversions (0.1.3) ...
 dpkg: error processing glx-diversions (--configure):
  subprocess installed post-installation script returned error exit status 1

With no output at all? That's strange, but a completely different issue,
so cloning.


Andreas



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



Processed: Re: Bug#631938: The problem is still exist in 0.1.3

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 clone 631938 -1
Bug#631938: glx-diversions: fails to upgrade or uninstall due to missing 
diversions with fglrx drivers
Bug 631938 cloned as bug 632197.

 submitter -1 il...@thechampion.ru
Bug #632197 {Done: Andreas Beckmann deb...@abeckmann.de} [glx-diversions] 
glx-diversions: fails to upgrade or uninstall due to missing diversions with 
fglrx drivers
Changed Bug submitter to 'il...@thechampion.ru' from 'Mathias Kende 
math...@kende.fr'
 found -1 0.1.3
Bug #632197 {Done: Andreas Beckmann deb...@abeckmann.de} [glx-diversions] 
glx-diversions: fails to upgrade or uninstall due to missing diversions with 
fglrx drivers
Did not alter found versions and reopened.
 notfound 631938 0.1.3
Bug #631938 {Done: Andreas Beckmann deb...@abeckmann.de} [glx-diversions] 
glx-diversions: fails to upgrade or uninstall due to missing diversions with 
fglrx drivers
Bug No longer marked as found in versions glx-alternatives/0.1.3.
 retitle -1 glx-diversions postinst fails without printing any messages
Bug #632197 [glx-diversions] glx-diversions: fails to upgrade or uninstall due 
to missing diversions with fglrx drivers
Changed Bug title to 'glx-diversions postinst fails without printing any 
messages' from 'glx-diversions: fails to upgrade or uninstall due to missing 
diversions with fglrx drivers'
 severity -1 important
Bug #632197 [glx-diversions] glx-diversions postinst fails without printing any 
messages
Severity set to 'important' from 'serious'

 summary -1 47
Bug #632197 [glx-diversions] glx-diversions postinst fails without printing any 
messages
Summary recorded from message bug 632197 message 47
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
632197: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632197
631938: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631938
-1: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=-1
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#565094: marked as done (nepenthes: ftbfs with gcc-4.5)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 14:49:39 +
with message-id e1qciyl-0008ht...@franck.debian.org
and subject line Bug#565094: fixed in nepenthes 0.2.2-6.1
has caused the Debian Bug report #565094,
regarding nepenthes: ftbfs with gcc-4.5
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
565094: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565094
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: nepenthes
Version: 0.2.2-5
Severity: normal
Tags: sid
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.5

The package fails to build in a test rebuild on at least amd64 with
gcc-4.5/g++-4.5, but succeeds to build with gcc-4.4/g++-4.4.
For the compiler version used, see:
http://lists.debian.org/debian-devel/2010/01/msg00230.html

The full build log can be found at:
http://people.debian.org/~lucas/logs/2010/01/08b/nepenthes_0.2.2-5_lsid64b.buildlog
The last lines of the build log are cwat the end of this report.

The reason of the build failure is likely in the package (compiler or
linker message found in the build log), if this turns out as a gcc bug,
please reassign to the gcc-4.5 package. If the build ends with a
message confused by earlier errors, bailing out, please
ignore it for now; these compiler errors are filed separately.


[...]
  - Packet Capture Lib (pcap) : yes
dh_testdir
# Add here commands to compile the package.
/usr/bin/make
make[1]: Entering directory 
`/build/user-nepenthes_0.2.2-5-amd64-JdUJlc/nepenthes-0.2.2'
/usr/bin/make  all-recursive
make[2]: Entering directory 
`/build/user-nepenthes_0.2.2-5-amd64-JdUJlc/nepenthes-0.2.2'
Making all in nepenthes-core
make[3]: Entering directory 
`/build/user-nepenthes_0.2.2-5-amd64-JdUJlc/nepenthes-0.2.2/nepenthes-core'
Making all in src
make[4]: Entering directory 
`/build/user-nepenthes_0.2.2-5-amd64-JdUJlc/nepenthes-0.2.2/nepenthes-core/src'
if x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../..  -I../include -I ../.. 
-Wall -Werror -D _GNU_SOURCE -I/usr/local/include -D_FILE_OFFSET_BITS=64 
-D_LARGEFILE_SOURCE -D_LARGE_FILES  -g -O2 -fno-strict-aliasing -MT Buffer.o 
-MD -MP -MF .deps/Buffer.Tpo -c -o Buffer.o Buffer.cpp; \
then mv -f .deps/Buffer.Tpo .deps/Buffer.Po; else rm -f 
.deps/Buffer.Tpo; exit 1; fi
if x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../..  -I../include -I ../.. 
-Wall -Werror -D _GNU_SOURCE -I/usr/local/include -D_FILE_OFFSET_BITS=64 
-D_LARGEFILE_SOURCE -D_LARGE_FILES  -g -O2 -fno-strict-aliasing -MT 
Compatibility.o -MD -MP -MF .deps/Compatibility.Tpo -c -o Compatibility.o 
Compatibility.cpp; \
then mv -f .deps/Compatibility.Tpo .deps/Compatibility.Po; else rm 
-f .deps/Compatibility.Tpo; exit 1; fi
if x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../..  -I../include -I ../.. 
-Wall -Werror -D _GNU_SOURCE -I/usr/local/include -D_FILE_OFFSET_BITS=64 
-D_LARGEFILE_SOURCE -D_LARGE_FILES  -g -O2 -fno-strict-aliasing -MT Config.o 
-MD -MP -MF .deps/Config.Tpo -c -o Config.o Config.cpp; \
then mv -f .deps/Config.Tpo .deps/Config.Po; else rm -f 
.deps/Config.Tpo; exit 1; fi
cc1plus: warnings being treated as errors
Config.cpp: In member function 'virtual char* 
nepenthes::Config::terminateString(char*)':
Config.cpp:693:15: error: value computed is not used
make[4]: *** [Config.o] Error 1
make[4]: Leaving directory 
`/build/user-nepenthes_0.2.2-5-amd64-JdUJlc/nepenthes-0.2.2/nepenthes-core/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory 
`/build/user-nepenthes_0.2.2-5-amd64-JdUJlc/nepenthes-0.2.2/nepenthes-core'
make[2]: *** [all-recursive] Error 1
make[1]: *** [all] Error 2
make: *** [build-stamp] Error 2
make[2]: Leaving directory 
`/build/user-nepenthes_0.2.2-5-amd64-JdUJlc/nepenthes-0.2.2'
make[1]: Leaving directory 
`/build/user-nepenthes_0.2.2-5-amd64-JdUJlc/nepenthes-0.2.2'
dpkg-buildpackage: error: debian/rules build gave error exit status 2


---End Message---
---BeginMessage---
Source: nepenthes
Source-Version: 0.2.2-6.1

We believe that the bug you reported is fixed in the latest version of
nepenthes, which is due to be installed in the Debian FTP archive:

nepenthes_0.2.2-6.1.diff.gz
  to main/n/nepenthes/nepenthes_0.2.2-6.1.diff.gz
nepenthes_0.2.2-6.1.dsc
  to main/n/nepenthes/nepenthes_0.2.2-6.1.dsc
nepenthes_0.2.2-6.1_i386.deb
  to main/n/nepenthes/nepenthes_0.2.2-6.1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 565...@bugs.debian.org,
and the maintainer will reopen the bug 

Bug#607737: marked as done (numconv: broken on 64-bit architectures)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 14:48:49 +
with message-id e1qcixx-0007xz...@franck.debian.org
and subject line Bug#607737: fixed in libuninum 2.7-1.1
has caused the Debian Bug report #607737,
regarding numconv: broken on 64-bit architectures
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
607737: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607737
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---

Package: numconv
Version: 2.7-1
Severity: grave
Justification: renders package unusable

numconv appears to be completely broken on amd64 (and presumably other 
64-bit architectures):


$ echo 42 | numconv -t Roman_Upper
Cannot identify input number system.


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

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

Versions of packages numconv depends on:
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  libgmp3c2 2:4.3.2+dfsg-1 Multiprecision arithmetic library
ii  libuninum52.7-1  library for handling numbers as Un

--
Jakub Wilk


---End Message---
---BeginMessage---
Source: libuninum
Source-Version: 2.7-1.1

We believe that the bug you reported is fixed in the latest version of
libuninum, which is due to be installed in the Debian FTP archive:

libuninum-dev_2.7-1.1_i386.deb
  to main/libu/libuninum/libuninum-dev_2.7-1.1_i386.deb
libuninum5_2.7-1.1_i386.deb
  to main/libu/libuninum/libuninum5_2.7-1.1_i386.deb
libuninum_2.7-1.1.diff.gz
  to main/libu/libuninum/libuninum_2.7-1.1.diff.gz
libuninum_2.7-1.1.dsc
  to main/libu/libuninum/libuninum_2.7-1.1.dsc
numconv_2.7-1.1_i386.deb
  to main/libu/libuninum/numconv_2.7-1.1_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 607...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Luk Claes l...@debian.org (supplier of updated libuninum package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 25 Jun 2011 16:14:09 +0200
Source: libuninum
Binary: libuninum-dev libuninum5 numconv
Architecture: source i386
Version: 2.7-1.1
Distribution: unstable
Urgency: low
Maintainer: Bartosz Fenski fe...@debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 libuninum-dev - development files for Libuninum library
 libuninum5 - library for handling numbers as Unicode strings
 numconv- utility for conversion numbers as Unicode strings
Closes: 607737 622442
Changes: 
 libuninum (2.7-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't ship .la files (Closes: #622442).
   * Make 64-bit ready (Closes: #607737).
Checksums-Sha1: 
 1faf9e98a9716699478354be1bc2e6257edb4b69 1060 libuninum_2.7-1.1.dsc
 d4e2e7e4c967ff3c0e19d753c6edb1f68ada19bb 2941 libuninum_2.7-1.1.diff.gz
 f31e48a21598cc2600d0368c0fe8c56a4646a2be 56044 libuninum-dev_2.7-1.1_i386.deb
 0fa081c2247a2db336ed04d200a81083c8fd066e 41824 libuninum5_2.7-1.1_i386.deb
 441ecd757a59b3a5a8398ca2d20d72788123e177 15410 numconv_2.7-1.1_i386.deb
Checksums-Sha256: 
 82bc253be8d6cc54843594f32dd305b10f5ff3435dfc73340fdb80ae658fccaf 1060 
libuninum_2.7-1.1.dsc
 2fa413fb4d8f7fb2e05468de259b1557e190985f72cfbe8e41ef80020bb1536b 2941 
libuninum_2.7-1.1.diff.gz
 6f6d891bb22e8f81d24f5ddb89b06b66f25c17c93901e76d1c8cb274b9bb85a9 56044 
libuninum-dev_2.7-1.1_i386.deb
 c7d17b8d6a4b1f3002a6faf6bdf7c3179c65cadadb905b847b186a9adc98b28d 41824 
libuninum5_2.7-1.1_i386.deb
 9a1fe4f1f4d82c0c30576bb6935b184a94ea55bce991cb97cac9f8da274dda54 15410 
numconv_2.7-1.1_i386.deb
Files: 
 bab44a3d601ea31932a3253824a2ab7d 1060 libs extra libuninum_2.7-1.1.dsc
 07a9a50e32e7c5a88a0131230906f514 2941 libs extra libuninum_2.7-1.1.diff.gz
 1c6fe28edacbaa38140ff13042f59c2e 56044 libdevel extra 
libuninum-dev_2.7-1.1_i386.deb
 a5011e014fb9a46d95881ca98ef366af 41824 libs extra libuninum5_2.7-1.1_i386.deb
 1388228bbbda5920fb2ee7adf77ff0cc 15410 utils extra numconv_2.7-1.1_i386.deb

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

iEYEARECAAYFAk4F7cYACgkQ5UTeB5t8Mo2hlACcCInmV8R7zBRpHezzRv0RPncO

Bug#626672: marked as done (raxml: Uses -msse)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 14:51:52 +
with message-id e1qciau-5f...@franck.debian.org
and subject line Bug#626672: fixed in raxml 7.2.8-1
has caused the Debian Bug report #626672,
regarding raxml: Uses -msse
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
626672: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=626672
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: raxml
Version: 7.2.6-1
Severity: grave

Hi,

It seems your package is using -msse.  Please don't do this, since
not all cpus supported by Debian support it.  If you want to make
use of sse, please detect that it's available and only execute
that part of the code when it is.

Also, the option isn't supported on all architectures.


Kurt



---End Message---
---BeginMessage---
Source: raxml
Source-Version: 7.2.8-1

We believe that the bug you reported is fixed in the latest version of
raxml, which is due to be installed in the Debian FTP archive:

raxml_7.2.8-1.debian.tar.gz
  to main/r/raxml/raxml_7.2.8-1.debian.tar.gz
raxml_7.2.8-1.dsc
  to main/r/raxml/raxml_7.2.8-1.dsc
raxml_7.2.8-1_amd64.deb
  to main/r/raxml/raxml_7.2.8-1_amd64.deb
raxml_7.2.8.orig.tar.bz2
  to main/r/raxml/raxml_7.2.8.orig.tar.bz2



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 626...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Tille ti...@debian.org (supplier of updated raxml package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Jun 2011 16:10:28 +0200
Source: raxml
Binary: raxml
Architecture: source amd64
Version: 7.2.8-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 raxml  - Randomized Axelerated Maximum Likelihood of phylogenetic trees
Closes: 626672
Changes: 
 raxml (7.2.8-1) unstable; urgency=low
 .
   * New upstream version
   * debian/copyright: Mention dmtcpaware.h as public domain
   * debian/watch: tried to fix download but finally failed.
 Now at least the correct version number is obtained.
 .
   * debian/control: Mark as buildable only on amd64 and i386 architectures
 (linux and bsd kernel) - SSE support is required for this package.
 Thanks to Marcin Juszkiewicz for the patch
 Closes: #626672 (LP: #791321)
Checksums-Sha1: 
 c396721db0a5885120bad0e62740911b28b7427e 1330 raxml_7.2.8-1.dsc
 06088d8db5e66193604b6837cb1aec226895aa58 235528 raxml_7.2.8.orig.tar.bz2
 fb728c5da95757b1ef8bc325694b95c28c251de5 2980 raxml_7.2.8-1.debian.tar.gz
 3b7b5b89741025f59764a0579a7cadd37de227cb 462316 raxml_7.2.8-1_amd64.deb
Checksums-Sha256: 
 5ee9753546af461ee7e056dee2574e463df3abfa94fc37b0e7116e03666a9126 1330 
raxml_7.2.8-1.dsc
 4680498590d00c5bd3c0c3b687d62902ca5d6231ef9b4e524571820390e5d43d 235528 
raxml_7.2.8.orig.tar.bz2
 37980da3d37f53bee7523870604e60a501ea03367094c8aa0225e84272d6ea0a 2980 
raxml_7.2.8-1.debian.tar.gz
 12c8735d38d20b5d40352e36bf1dce59bc070d6718168e8fb90585fbc0bdf5a5 462316 
raxml_7.2.8-1_amd64.deb
Files: 
 a72c1d62e3c904665a891a76b4a0f36f 1330 science optional raxml_7.2.8-1.dsc
 de658ee18049e178744b4759adb286da 235528 science optional 
raxml_7.2.8.orig.tar.bz2
 b042cde7a35e7887b8464bb44b61f729 2980 science optional 
raxml_7.2.8-1.debian.tar.gz
 c5b0a7df710cf28e3aaad7f1e02bf7f1 462316 science optional 
raxml_7.2.8-1_amd64.deb

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

iEYEARECAAYFAk4MiHsACgkQYDBbMcCf01oEsACfWYE7AhXFTLwRGRNSAo/P8QD3
IycAoKQkmo7zEEwerS6Lgv3yMzglOnHS
=57gr
-END PGP SIGNATURE-


---End Message---


Processed: Modifying bug report

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 fixed 602386 1.9.0-1
Bug #602386 [translate-toolkit] translate-toolkit: 'MSetItem' object does not 
support indexing on test_indexers.py for XapianIndexer
Bug Marked as fixed in versions translate-toolkit/1.9.0-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
602386: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602386
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#632217: python-django: empty __init__.py files not packaged, modules can't be imported

2011-06-30 Thread Simon Schubert
Package: python-django
Version: 1.3-2
Severity: grave
Justification: renders package unusable


The python-django package omits all __init__.py files that are 0-sized.
The django upstream sources contain a lot of such files.  These missing
files lead to many django modules not being available, because python
expects module directories to contain a __init__.py file.


How to reproduce:

python -c 'import django.core'


Expected result:

No error


Actual result:

Traceback (most recent call last):
  File string, line 1, in module
ImportError: No module named core


Solution:

Package even 0-sized files.


NB: python-openid has the same problem in extesions/draft.  Problem also
presents for squeeze package versions.

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

Kernel: Linux 2.6.32-238.12.1.el5.028stab091.1 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-django depends on:
ii  python  2.6.6-3+squeeze6 interactive high-level object-orie
ii  python-support  1.0.10   automated rebuilding support for P

Versions of packages python-django recommends:
ii  libjs-jquery  1.4.2-2JavaScript library for dynamic web

Versions of packages python-django suggests:
ii  python-flup   1.0.2-1Implements Python Web Server Gatew
pn  python-mysqldbnone (no description available)
pn  python-psycopgnone (no description available)
pn  python-psycopg2   none (no description available)
ii  python-sqlite 1.0.1-7+b1 python interface to SQLite 2
pn  python-yaml   none (no description available)

-- no debconf information



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



Processed: reassign 632134 to src:xorg-server

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 632134 src:xorg-server 2:1.10.2-1
Bug #632134 [xserver-xorg-video-intel] xserver-xorg-video-intel: segfault on 
xsetroot
Bug reassigned from package 'xserver-xorg-video-intel' to 'src:xorg-server'.
Bug No longer marked as found in versions xserver-xorg-video-intel/2:2.15.0-3.
Bug #632134 [src:xorg-server] xserver-xorg-video-intel: segfault on xsetroot
Bug Marked as found in versions xorg-server/2:1.10.2-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
632134: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632134
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#625120: clonalframe: FTBFS: src/move_hidden.cpp:169:62: error: taking address of temporary [-fpermissive]

2011-06-30 Thread Sebastian Ramacher
On 06/29/2011 09:17 AM, Andreas Tille wrote:
 sorry for the late reply to this bug.  I can reproduce the problem on my
 side but I'm not finally sure that this is really a problem of clonalframe
 or whether it is a bad coincidence with libgsl0-dev.  The line in question
 where the problem occures is:
 
  src/move_hidden.cpp:423:59: error: taking address of temporary 
 [-fpermissive]
  
 
  423:Util::normalize((gsl_matrix_row(e,i+1).vector));
 
 So I suspect that there are temporary variables used where they should
 not but these are not declared in Move_hidden::makee().  My c++
 knowledge ist too limited to track down the problem in a reasonable time
 frame and thus I CC debian-mentors and upstream (Xavier please find the
 full log of this bug below or at http://bugs.debian.org/625120).

The attached patch should fix this issue. The problem here is that the return
value of gsl_matrix_row is a non-lvalue and thus one cannot take its address.

Kind regards,
-- 
Sebastian Ramacher
--- clonalframe-1.2.orig/src/move_hidden.cpp
+++ clonalframe-1.2/src/move_hidden.cpp
@@ -166,7 +166,8 @@ namespace wb
 sum+=gsl_matrix_get(f,j,i)*q[j][state][site-siteprev-1];
 gsl_matrix_set(f,state,i+1,sum*gsl_matrix_get(e,state,msgs[site]));
 }
-Util::normalize((gsl_matrix_column(f,i+1).vector));
+gsl_vector_view view = gsl_matrix_column(f,i+1);
+Util::normalize(view.vector);
 }
 return f;
 }
@@ -420,7 +421,8 @@ namespace wb
 gsl_matrix_set(e,i+1,2,(1.0-m2)*m3+(1.0-m3)*m2);
 }
 
-Util::normalize((gsl_matrix_row(e,i+1).vector));
+gsl_vector_view view = gsl_matrix_row(e,i+1);
+Util::normalize(view.vector);
 }
 }
 


signature.asc
Description: OpenPGP digital signature


Bug#632225: subvertpy: FTBFS on ia64: testsuite fails

2011-06-30 Thread Jakub Wilk

Source: subvertpy
Version: 0.8.2+bzr2352-1
Severity: serious
Justification: fails to build from source

Sorry, it's me again. ;)

subvertpy failed to build from source on ia64:
| set -e -x; \
|   for py in 2.7 2.6; do \
|   cd $(ls -d 
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib.*-$py);
 python$py -m testtools.run subvertpy.tests.test_suite ;\
|   cd $(ls -d 
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib_d.*-$py
 2/dev/null || ls -d 
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib.*$py-pydebug);
 python$py-dbg -m testtools.run subvertpy.tests.test_suite ;\
|   done
| + ls -d 
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib.linux-ia64-2.7
| + cd 
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib.linux-ia64-2.7
| + python2.7 -m testtools.run subvertpy.tests.test_suite
| Killed
| make[1]: *** [override_dh_auto_test] Error 137

Full build logs:
https://buildd.debian.org/status/fetch.php?pkg=subvertpyarch=ia64ver=0.8.2%2Bbzr2352-1stamp=1308578642
https://buildd.debian.org/status/fetch.php?pkg=subvertpyarch=ia64ver=0.8.2%2Bbzr2352-1stamp=1308437181

--
Jakub Wilk



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



Bug#629852: openjdk-6?

2011-06-30 Thread Harald Staub

The security tracker still shows openjdk-6 as needs to be checked, e.g.:
http://security-tracker.debian.org/tracker/CVE-2011-0872

OTOH, Ubuntu has issued a Security Notice for openjdk-6 on June 17:
http://www.ubuntu.com/usn/usn-1154-1/

So I should assume the Debian stable package to be vulnerable?

Cheers
 Harry



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



Bug#632225: subvertpy: FTBFS on ia64: testsuite fails

2011-06-30 Thread Jelmer Vernooij

On 30/06/11 18:43, Jakub Wilk wrote:

Source: subvertpy
Version: 0.8.2+bzr2352-1
Severity: serious
Justification: fails to build from source

Sorry, it's me again. ;)
Thanks for the bug reports; I'm glad we're catching this by running the 
testsuite.


subvertpy failed to build from source on ia64:
| set -e -x; \
| for py in 2.7 2.6; do \
| cd $(ls -d
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib.*-$py);
python$py -m testtools.run subvertpy.tests.test_suite ;\
| cd $(ls -d
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib_d.*-$py
2/dev/null || ls -d
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib.*$py-pydebug);
python$py-dbg -m testtools.run subvertpy.tests.test_suite ;\
| done
| + ls -d
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib.linux-ia64-2.7
| + cd
/build/buildd-subvertpy_0.8.2+bzr2352-1-ia64-6vHAKt/subvertpy-0.8.2+bzr2352/build/lib.linux-ia64-2.7
| + python2.7 -m testtools.run subvertpy.tests.test_suite
| Killed
| make[1]: *** [override_dh_auto_test] Error 137

Full build logs:
https://buildd.debian.org/status/fetch.php?pkg=subvertpyarch=ia64ver=0.8.2%2Bbzr2352-1stamp=1308578642

https://buildd.debian.org/status/fetch.php?pkg=subvertpyarch=ia64ver=0.8.2%2Bbzr2352-1stamp=1308437181


Unfortunately this doesn't give an awful lot of information, and the 
other architectures seem to be fine. Do you have any idea why it's being 
killed?


I can't find anything in the logs other than the fact that the process 
was killed but I don't have much experience dealing with the buildds.


Cheers,

jelmer



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



Bug#632228: csound: FTBFS on sparc

2011-06-30 Thread Jakub Wilk

Source: csound
Version: 1:5.13.0~dfsg-3
Severity: serious
Justification: fails to build from source
User: debian-sp...@lists.debian.org
Usertags: sparc

csound quite regularly fails to build from source on sparc:

1:5.13.0~dfsg-3:
| sparc-linux-gnu-gcc -o Opcodes/pvsband.os -c -Wno-format -DGNU_GETTEXT -g 
-fomit-frame-pointer -freorder-blocks -DLINUX -DPIPES -fPIC 
-DHAVE_LIBSNDFILE=1016 -DHAVE_FLTK -DUSE_DOUBLE -DHAVE_SOCKETS 
-DHAVE_PTHREAD_BARRIER_INIT -DHAVE_FCNTL_H -DHAVE_UNISTD_H -DHAVE_STDINT_H 
-DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_TERMIOS_H -DHAVE_VALUES_H 
-DHAVE_SOCKETS -DHAVE_DIRENT_H -I. -IH -I/usr/include/lua5.1 -I/usr/include/tcl 
-I/usr/lib/jvm/default-java/include -I/usr/lib/jvm/default-java/include/linux 
-I/usr/include/stk -I/usr/local/include -I/usr/include -I/usr/include 
-I/usr/X11R6/include Opcodes/pvsband.c
| scons: *** [Opcodes/pvsband.os] Error -11

1:5.13.0~dfsg-3.1:
| swig -o frontends/CsoundAC/CsoundAC_wrap.cc -c++ -includeall -verbose -outdir 
. -DGNU_GETTEXT -DLINUX -DPIPES -DHAVE_LIBSNDFILE=1016 -DHAVE_FLTK -DUSE_DOUBLE 
-DHAVE_SOCKETS -DHAVE_PTHREAD_BARRIER_INIT -DHAVE_FCNTL_H -DHAVE_UNISTD_H 
-DHAVE_STDINT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_TERMIOS_H 
-DHAVE_VALUES_H -DHAVE_SOCKETS -DHAVE_DIRENT_H -Ifrontends/CsoundAC 
-Iinterfaces -I. -I./H -I/usr/include/lua5.1 -I/usr/include/tcl 
-I/usr/lib/jvm/default-java/include -I/usr/lib/jvm/default-java/include/linux 
-I/usr/include/stk -I/usr/local/include -I/usr/include -I/usr/X11R6/include 
-I/usr/include/freetype2 -I/usr/include/python2.6 
-I/usr/local/include/python2.6 -python frontends/CsoundAC/CsoundAC.i
| scons: *** [frontends/CsoundAC/CsoundAC_wrap.cc] Error -10

(As far as I understand it Error -10 means killed by SIGBUS, and 
Error -11 means killed by SIGSEGV).


SPARC porters cced, as I couldn't reproduce this bug on smetana. :(

Full build logs:
https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3stamp=1298329817
https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3.1stamp=1309297483

--
Jakub Wilk



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



Processed: found 632131 in 1.0.2-2

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 632131 1.0.2-2
Bug #632131 [mybashburn] mybashburn: symlinks preclude coinstallation with 
bashburn
Bug Marked as found in versions mybashburn/1.0.2-2.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
632131: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632131
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: reassign 620527 to ooo-build-extensions

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 620527 ooo-build-extensions
Bug #620527 [ooo-build-extensions] ooo-build-extensions: uninstallable in sid
Ignoring request to reassign bug #620527 to the same package
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
620527: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=620527
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#632235: source contains non-DFSG components

2011-06-30 Thread Daniel Baumann

Package: console-data
Severity: serious

apart from the fact that the copyright file is almost useless as there 
is no way to see which specific files you're talking about..


debian/copyright says:

---snip---
Agafari:
  Donated by the Ethiopican Science and Technology Commision·
  n...@padis.gn.apc.org or n...@telecom.net.et and may be redistributed
  for non-commercial use under Unix environments only.

  [These fonts are not included into the binary package. -The maintainer.]
---snap---

src:console-data is in main, therefore any parts, regardless if they are 
installed into the binary packages or not, needs to fulfil the DFSG. the 
'Agafari' files clearly are not DFSG compliant.


please remove the files from the source, and please consider to write an 
copyright file that has references to files so that normal people can 
dereference it.


--
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-rc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#611995: flush: FTBFS due to ld --no-add-needed

2011-06-30 Thread Ansgar Burchardt
Hi,

I noticed you added a comment (on Launchpad) that this might be fixed in
0.9.10, but that version has not been uploaded to the Debian archive.

Did you have problems finding a sponsor?  As you maintain a PPA with the
newer version, you still seem to be interested in the package.

Regards,
Ansgar



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



Bug#632225: subvertpy: FTBFS on ia64: testsuite fails

2011-06-30 Thread Jakub Wilk

* Jelmer Vernooij jel...@samba.org, 2011-06-30, 18:51:

| + python2.7 -m testtools.run subvertpy.tests.test_suite
| Killed
| make[1]: *** [override_dh_auto_test] Error 137

Full build logs:
https://buildd.debian.org/status/fetch.php?pkg=subvertpyarch=ia64ver=0.8.2%2Bbzr2352-1stamp=1308578642

https://buildd.debian.org/status/fetch.php?pkg=subvertpyarch=ia64ver=0.8.2%2Bbzr2352-1stamp=1308437181


Unfortunately this doesn't give an awful lot of information, and the 
other architectures seem to be fine. Do you have any idea why it's 
being killed?


Unfortunately, I have no idea. Perhaps it was killed by the OOM Killer?  
I guess the only way to find out is to try to reproduce the bug on a 
porter box.


--
Jakub Wilk



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



Bug#611995: flush: FTBFS due to ld --no-add-needed

2011-06-30 Thread Dmitry Konishchev
On Thu, Jun 30, 2011 at 9:56 PM, Ansgar Burchardt ans...@debian.org wrote:
 Hi,

 I noticed you added a comment (on Launchpad) that this might be fixed in
 0.9.10, but that version has not been uploaded to the Debian archive.

 Did you have problems finding a sponsor?  As you maintain a PPA with the
 newer version, you still seem to be interested in the package.

 Regards,
 Ansgar

Hi,

I simply have very little free time and can't support all distros,
especially Debian which changes the packaging rules (which I have to
follow) quicker than I issue new versions. Sorry.

-- 
Dmitry Konishchev
mailto:konishc...@gmail.com



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



Bug#629818: marked as done (xen-qemu-dm-4.0: not compatible with Xen 4.1 to be migrated to testing)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Fri, 01 Jul 2011 02:30:47 +0800
with message-id 4e0cc0d7.4060...@goirand.fr
and subject line Nothing to fix
has caused the Debian Bug report #629818,
regarding xen-qemu-dm-4.0: not compatible with Xen 4.1 to be migrated to testing
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
629818: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=629818
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: xen-qemu-dm-4.0
Version: 4.0.1-3
Severity: serious

Given the source package name it's pretty clear that it isn't compatible with
Xen 4.1 by design.  The latter is now ready to migrate to wheezy and this
package also blocks the removal of python2.5 from testing.  Hence this RC
bug as a notice that it will be removed from testing soon.

Kind regards,
Philipp Kern
-- 
 .''`.  Philipp KernDebian Developer
: :' :  http://philkern.de Stable Release Manager
`. `'   xmpp:p...@0x539.de Wanna-Build Admin
  `-finger pkern/k...@db.debian.org


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
As the package has been removed from Testing and SID (it's rendered
useless because Waldi re-enabled the build of xen-qemu-dm in his last
package), I'm closing this bug entry.

Thomas

---End Message---


Bug#632238: libshell-perl: not installable in sid

2011-06-30 Thread Ralf Treinen
Package: libshell-perl
Version: 0.72-1
Severity: grave
Tags: sid
User: trei...@debian.org
Usertags: edos-uninstallable

Hi,

libshell-perl is not installable in sid on any architecture since May 21
because it conflicts with the current version of perl-modules.

Ralf.



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



Bug#632238: libshell-perl: not installable in sid

2011-06-30 Thread Dominic Hargreaves
On Thu, Jun 30, 2011 at 08:35:05PM +0200, Ralf Treinen wrote:
 libshell-perl is not installable in sid on any architecture since May 21
 because it conflicts with the current version of perl-modules.

As intended; see also #627211. It's currently of interest to those
using perl 5.14 from experimental and has been staged in preparation
for an upload of 5.14 to unstable.

Cheers,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Bug#632240: pylucene: not installable in sid (needs migration to python 2.6)

2011-06-30 Thread Ralf Treinen
Package: pylucene
Version: 2.3.1-1.1+b1
Severity: grave
Tags: sid
User: trei...@debian.org
Usertags: edos-uninstallable

Hi,

pylucene is not installable in sid on any architecture since 22 May 
because:

  pylucene (= 2.3.1-1.1+b1) depends on missing: - python2.5 

Ralf.



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



Bug#632238: libshell-perl: not installable in sid

2011-06-30 Thread Ralf Treinen
On Thu, Jun 30, 2011 at 07:44:36PM +0100, Dominic Hargreaves wrote:
 On Thu, Jun 30, 2011 at 08:35:05PM +0200, Ralf Treinen wrote:
  libshell-perl is not installable in sid on any architecture since May 21
  because it conflicts with the current version of perl-modules.
 
 As intended; see also #627211. It's currently of interest to those
 using perl 5.14 from experimental and has been staged in preparation
 for an upload of 5.14 to unstable.

OK, but then it should have been uploaded to experimental, not sid.
All dependencies of packages in sid must be satisfiable in sid.

-Ralf.



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



Processed: affects 572072

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 affects 572072 computer-janitor-gtk
Bug #572072 [computer-janitor] python-apt 0.8 API transition: Please update 
computer-janitor to new API
Added indication that 572072 affects computer-janitor-gtk
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
572072: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572072
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#632241: pd-pdp: not installable in sid

2011-06-30 Thread Ralf Treinen
Package: pd-pdp
Version: 1:0.12.5-1
Severity: grave
Tags: sid
User: trei...@debian.org
Usertags: edos-uninstallable

Hi,

pd-pdp is not installable in sid on any architecture since May 30 because

 pd-pdp (= 1:0.12.5-1) depends on missing: - libquicktime1 (= 2:1.1.1+debian) 

Ralf.



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



Bug#632240: pylucene: not installable in sid (needs migration to python 2.6)

2011-06-30 Thread Julien Cristau
On Thu, Jun 30, 2011 at 20:53:17 +0200, Ralf Treinen wrote:

 Package: pylucene
 Version: 2.3.1-1.1+b1
 Severity: grave
 Tags: sid
 User: trei...@debian.org
 Usertags: edos-uninstallable
 
 Hi,
 
 pylucene is not installable in sid on any architecture since 22 May 
 because:
 
   pylucene (= 2.3.1-1.1+b1) depends on missing: - python2.5 
 
Please don't file bug tagged sid without wheezy.  In most cases it's
wrong.

Cheers,
Julien



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



Bug#632228: csound: FTBFS on sparc

2011-06-30 Thread Felipe Sateler
On Thu, Jun 30, 2011 at 12:56, Jakub Wilk jw...@debian.org wrote:
 Source: csound
 Version: 1:5.13.0~dfsg-3
 Severity: serious
 Justification: fails to build from source
 User: debian-sp...@lists.debian.org
 Usertags: sparc

 csound quite regularly fails to build from source on sparc:

 1:5.13.0~dfsg-3:
 | sparc-linux-gnu-gcc -o Opcodes/pvsband.os -c -Wno-format -DGNU_GETTEXT -g
 -fomit-frame-pointer -freorder-blocks -DLINUX -DPIPES -fPIC
 -DHAVE_LIBSNDFILE=1016 -DHAVE_FLTK -DUSE_DOUBLE -DHAVE_SOCKETS
 -DHAVE_PTHREAD_BARRIER_INIT -DHAVE_FCNTL_H -DHAVE_UNISTD_H -DHAVE_STDINT_H
 -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_TERMIOS_H -DHAVE_VALUES_H
 -DHAVE_SOCKETS -DHAVE_DIRENT_H -I. -IH -I/usr/include/lua5.1
 -I/usr/include/tcl -I/usr/lib/jvm/default-java/include
 -I/usr/lib/jvm/default-java/include/linux -I/usr/include/stk
 -I/usr/local/include -I/usr/include -I/usr/include -I/usr/X11R6/include
 Opcodes/pvsband.c
 | scons: *** [Opcodes/pvsband.os] Error -11

 1:5.13.0~dfsg-3.1:
 | swig -o frontends/CsoundAC/CsoundAC_wrap.cc -c++ -includeall -verbose
 -outdir . -DGNU_GETTEXT -DLINUX -DPIPES -DHAVE_LIBSNDFILE=1016 -DHAVE_FLTK
 -DUSE_DOUBLE -DHAVE_SOCKETS -DHAVE_PTHREAD_BARRIER_INIT -DHAVE_FCNTL_H
 -DHAVE_UNISTD_H -DHAVE_STDINT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H
 -DHAVE_TERMIOS_H -DHAVE_VALUES_H -DHAVE_SOCKETS -DHAVE_DIRENT_H
 -Ifrontends/CsoundAC -Iinterfaces -I. -I./H -I/usr/include/lua5.1
 -I/usr/include/tcl -I/usr/lib/jvm/default-java/include
 -I/usr/lib/jvm/default-java/include/linux -I/usr/include/stk
 -I/usr/local/include -I/usr/include -I/usr/X11R6/include
 -I/usr/include/freetype2 -I/usr/include/python2.6
 -I/usr/local/include/python2.6 -python frontends/CsoundAC/CsoundAC.i
 | scons: *** [frontends/CsoundAC/CsoundAC_wrap.cc] Error -10

 (As far as I understand it Error -10 means killed by SIGBUS, and Error
 -11 means killed by SIGSEGV).

 SPARC porters cced, as I couldn't reproduce this bug on smetana. :(

 Full build logs:
 https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3stamp=1298329817
 https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3.1stamp=1309297483

This has happened several times during the past year. Smetana has
always been able to build csound, so this is clearly not a csound
issue. I don't think it is reasonable to file serious bugs against a
package when gcc or swig are segfaulting.


-- 

Saludos,
Felipe Sateler



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



Bug#632228: csound: FTBFS on sparc

2011-06-30 Thread Felipe Sateler
On Thu, Jun 30, 2011 at 15:33, Felipe Sateler fsate...@debian.org wrote:
 On Thu, Jun 30, 2011 at 12:56, Jakub Wilk jw...@debian.org wrote:
 Source: csound
 Version: 1:5.13.0~dfsg-3
 Severity: serious
 Justification: fails to build from source
 User: debian-sp...@lists.debian.org
 Usertags: sparc

 csound quite regularly fails to build from source on sparc:

 1:5.13.0~dfsg-3:
 | sparc-linux-gnu-gcc -o Opcodes/pvsband.os -c -Wno-format -DGNU_GETTEXT -g
 -fomit-frame-pointer -freorder-blocks -DLINUX -DPIPES -fPIC
 -DHAVE_LIBSNDFILE=1016 -DHAVE_FLTK -DUSE_DOUBLE -DHAVE_SOCKETS
 -DHAVE_PTHREAD_BARRIER_INIT -DHAVE_FCNTL_H -DHAVE_UNISTD_H -DHAVE_STDINT_H
 -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H -DHAVE_TERMIOS_H -DHAVE_VALUES_H
 -DHAVE_SOCKETS -DHAVE_DIRENT_H -I. -IH -I/usr/include/lua5.1
 -I/usr/include/tcl -I/usr/lib/jvm/default-java/include
 -I/usr/lib/jvm/default-java/include/linux -I/usr/include/stk
 -I/usr/local/include -I/usr/include -I/usr/include -I/usr/X11R6/include
 Opcodes/pvsband.c
 | scons: *** [Opcodes/pvsband.os] Error -11

 1:5.13.0~dfsg-3.1:
 | swig -o frontends/CsoundAC/CsoundAC_wrap.cc -c++ -includeall -verbose
 -outdir . -DGNU_GETTEXT -DLINUX -DPIPES -DHAVE_LIBSNDFILE=1016 -DHAVE_FLTK
 -DUSE_DOUBLE -DHAVE_SOCKETS -DHAVE_PTHREAD_BARRIER_INIT -DHAVE_FCNTL_H
 -DHAVE_UNISTD_H -DHAVE_STDINT_H -DHAVE_SYS_TIME_H -DHAVE_SYS_TYPES_H
 -DHAVE_TERMIOS_H -DHAVE_VALUES_H -DHAVE_SOCKETS -DHAVE_DIRENT_H
 -Ifrontends/CsoundAC -Iinterfaces -I. -I./H -I/usr/include/lua5.1
 -I/usr/include/tcl -I/usr/lib/jvm/default-java/include
 -I/usr/lib/jvm/default-java/include/linux -I/usr/include/stk
 -I/usr/local/include -I/usr/include -I/usr/X11R6/include
 -I/usr/include/freetype2 -I/usr/include/python2.6
 -I/usr/local/include/python2.6 -python frontends/CsoundAC/CsoundAC.i
 | scons: *** [frontends/CsoundAC/CsoundAC_wrap.cc] Error -10

 (As far as I understand it Error -10 means killed by SIGBUS, and Error
 -11 means killed by SIGSEGV).

 SPARC porters cced, as I couldn't reproduce this bug on smetana. :(

 Full build logs:
 https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3stamp=1298329817
 https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3.1stamp=1309297483

 This has happened several times during the past year. Smetana has
 always been able to build csound, so this is clearly not a csound
 issue. I don't think it is reasonable to file serious bugs against a
 package when gcc or swig are segfaulting.

Hmm sorry, this probably sounds more aggressive than I intended. What
I mean is that I think these bugs should be addressed to gcc or swig
since it is not csound that is failing to build, but rather gcc is
segfaulting. I do not have the skills to try to debug why gcc is
segfaulting on a particular buildd.

-- 

Saludos,
Felipe Sateler



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



Bug#629852: openjdk-6?

2011-06-30 Thread Damien Raude-Morvan
Hi,

Le jeudi 30 juin 2011 18:20:03, Harald Staub a écrit :
 The security tracker still shows openjdk-6 as needs to be checked, e.g.:
 http://security-tracker.debian.org/tracker/CVE-2011-0872
 
 OTOH, Ubuntu has issued a Security Notice for openjdk-6 on June 17:
 http://www.ubuntu.com/usn/usn-1154-1/
 
 So I should assume the Debian stable package to be vulnerable?

Ubuntu had just released a new upstream security release of IcedTea [0] which 
aggregate multiple security bugfixes from Oracle. It's not a specific security 
release for this bug.

From RedHat bugtracket [1] and from IcedTea [2] repository, this issues seems 
only related to Windows handling of selector (and only windows files are 
touched by this patch).

So this particular security issue doesn't need an urgent upload for openjdk-6.

[0] http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2011-
June/014607.html
[1] https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2011-0872
[2] 
http://icedtea.classpath.org/hg/release/icedtea6-1.9/file/8d393fbff5d3/patches/security/20110607/6213702.patch

Cheers,
-- 
Damien - Debian Developper
http://wiki.debian.org/DamienRaudeMorvan



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



Bug#625120: marked as done (clonalframe: FTBFS: src/move_hidden.cpp:169:62: error: taking address of temporary [-fpermissive])

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 19:47:09 +
with message-id e1qcncf-0003aw...@franck.debian.org
and subject line Bug#625120: fixed in clonalframe 1.2-2
has caused the Debian Bug report #625120,
regarding clonalframe: FTBFS: src/move_hidden.cpp:169:62: error: taking address 
of temporary [-fpermissive]
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
625120: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=625120
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: clonalframe
Version: 1.2-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20110502 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
 g++ -c -pipe -W -Wall -O3 -static -DHAVE_INLINE -DGSL_RANGE_CHECK_OFF -Isrc 
 -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB 
 -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore 
 -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Ibuild -o build/move_hidden.o 
 src/move_hidden.cpp
 src/move_hidden.cpp:25:5: warning: unused parameter 'p' [-Wunused-parameter]
 src/move_hidden.cpp: In member function 'void 
 wb::Move_hidden::forwardfast(wb::Param*, wb::Tree*)':
 src/move_hidden.cpp:127:33: warning: comparison between signed and unsigned 
 integer expressions [-Wsign-compare]
 src/move_hidden.cpp:133:41: warning: comparison between signed and unsigned 
 integer expressions [-Wsign-compare]
 src/move_hidden.cpp:137:45: warning: comparison between signed and unsigned 
 integer expressions [-Wsign-compare]
 src/move_hidden.cpp:132:21: warning: unused variable 'top' [-Wunused-variable]
 src/move_hidden.cpp:132:27: warning: unused variable 'left' 
 [-Wunused-variable]
 src/move_hidden.cpp:132:34: warning: unused variable 'right' 
 [-Wunused-variable]
 src/move_hidden.cpp: In member function 'gsl_matrix* 
 wb::Move_hidden::forward(wb::Param*)':
 src/move_hidden.cpp:169:62: error: taking address of temporary [-fpermissive]
 src/move_hidden.cpp: In member function 'void 
 wb::Move_hidden::backward(wb::Param*, gsl_matrix*, wb::Tree*)':
 src/move_hidden.cpp:202:17: warning: unused variable 'd' [-Wunused-variable]
 src/move_hidden.cpp: In member function 'void 
 wb::Move_hidden::makee(wb::Param*, wb::Tree*)':
 src/move_hidden.cpp:423:59: error: taking address of temporary [-fpermissive]
 make[2]: *** [build/move_hidden.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/05/02/clonalframe_1.2-1_lsid64.buildlog

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---
Source: clonalframe
Source-Version: 1.2-2

We believe that the bug you reported is fixed in the latest version of
clonalframe, which is due to be installed in the Debian FTP archive:

clonalframe_1.2-2.debian.tar.gz
  to main/c/clonalframe/clonalframe_1.2-2.debian.tar.gz
clonalframe_1.2-2.dsc
  to main/c/clonalframe/clonalframe_1.2-2.dsc
clonalframe_1.2-2_amd64.deb
  to main/c/clonalframe/clonalframe_1.2-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 625...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Tille ti...@debian.org (supplier of updated clonalframe package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Jun 2011 21:09:59 +0200
Source: clonalframe
Binary: clonalframe
Architecture: source amd64
Version: 1.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 clonalframe - inference of bacterial microevolution using multilocus sequence d
Closes: 625120
Changes: 
 clonalframe (1.2-2) unstable; urgency=low

Bug#632228: csound: FTBFS on sparc

2011-06-30 Thread Jakub Wilk

* Felipe Sateler fsate...@debian.org, 2011-06-30, 15:37:

https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3stamp=1298329817
https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3.1stamp=1309297483


This has happened several times during the past year. Smetana has 
always been able to build csound, so this is clearly not a csound 
issue. I don't think it is reasonable to file serious bugs against a 
package when gcc or swig are segfaulting.


Hmm sorry, this probably sounds more aggressive than I intended. What I 
mean is that I think these bugs should be addressed to gcc or swig 
since it is not csound that is failing to build, but rather gcc is 
segfaulting. I do not have the skills to try to debug why gcc is 
segfaulting on a particular buildd.


Please don't take it personally. :) I filed the bug to increase 
visibility of the problem, not to put blame on anyone.


And yes, I tend to agree that does not really look like csound is at 
fault.


Also note that this bug has no effect on testing transition, as the 
package won't migrate anyway before it is built on sparc.


--
Jakub Wilk



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



Bug#632071: marked as done (ruby-cairo is fully broken)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 20:51:58 +
with message-id e1qcodo-0007w9...@franck.debian.org
and subject line Bug#632071: fixed in ruby-cairo 1.10.0-2
has caused the Debian Bug report #632071,
regarding ruby-cairo is fully broken
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
632071: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632071
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: ruby-cairo
Version: 1.10.0-1
Severity: grave
Justification: renders package unusable


Current ruby-cairo is fully broken in debian unstable with ruby1.8.

$ ruby -v
ruby 1.8.7 (2011-02-18 patchlevel 334) [i486-linux]

$ ruby -r cairo -e 'puts :ok'
/usr/lib/ruby/vendor_ruby/1.8/i486-linux/cairo.so: uninitialized constant 
Cairo::Color (NameError)

$ echo $?
1


This also breaks libgtk2-ruby1.8 that depends on it

$ ruby -r gtk2 -e ''
/usr/lib/ruby/vendor_ruby/1.8/i486-linux/cairo.so: uninitialized constant 
Cairo::Color (NameError)
from /usr/lib/ruby/1.8/pango.rb:12
from /usr/lib/ruby/1.8/gtk2/base.rb:13:in `require'
from /usr/lib/ruby/1.8/gtk2/base.rb:13
from /usr/lib/ruby/1.8/gtk2.rb:10:in `require'
from /usr/lib/ruby/1.8/gtk2.rb:10


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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=fr_FR@euro (charmap=ANSI_X3.4-1968) (ignored: LC_ALL 
set to C)
Shell: /bin/sh linked to /bin/bash

Versions of packages ruby-cairo depends on:
ii  libc62.13-7  Embedded GNU C Library: Shared lib
ii  libcairo21.10.2-6The Cairo 2D vector graphics libra
ii  libruby1.8   1.8.7.334-5 Libraries necessary to run Ruby 1.
ii  ruby 4.8 Transitional package for ruby1.8
ii  ruby1.8 [ruby-interpreter]   1.8.7.334-5 Interpreter of object-oriented scr

ruby-cairo recommends no packages.

ruby-cairo suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: ruby-cairo
Source-Version: 1.10.0-2

We believe that the bug you reported is fixed in the latest version of
ruby-cairo, which is due to be installed in the Debian FTP archive:

libcairo-ruby1.8_1.10.0-2_all.deb
  to main/r/ruby-cairo/libcairo-ruby1.8_1.10.0-2_all.deb
libcairo-ruby_1.10.0-2_all.deb
  to main/r/ruby-cairo/libcairo-ruby_1.10.0-2_all.deb
ruby-cairo_1.10.0-2.debian.tar.gz
  to main/r/ruby-cairo/ruby-cairo_1.10.0-2.debian.tar.gz
ruby-cairo_1.10.0-2.dsc
  to main/r/ruby-cairo/ruby-cairo_1.10.0-2.dsc
ruby-cairo_1.10.0-2_amd64.deb
  to main/r/ruby-cairo/ruby-cairo_1.10.0-2_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 632...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Antonio Terceiro terce...@softwarelivre.org (supplier of updated ruby-cairo 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 29 Jun 2011 12:35:38 -0700
Source: ruby-cairo
Binary: ruby-cairo libcairo-ruby libcairo-ruby1.8
Architecture: source amd64 all
Version: 1.10.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Antonio Terceiro terce...@softwarelivre.org
Description: 
 libcairo-ruby - Transitional package for ruby-cairo
 libcairo-ruby1.8 - Transitional package for ruby-cairo
 ruby-cairo - Cairo bindings for the Ruby language
Closes: 632071
Changes: 
 ruby-cairo (1.10.0-2) unstable; urgency=low
 .
   * debian/source/lintian-overrides: added to avoid warning about descriptions
 being too short.
   * Fix name clash between cairo.rb and cairo.so (Closes: #632071)
   * added debian/ruby-cairo.examples to install examples
Checksums-Sha1: 
 e854f473c7249ea3e894984283cc95d2d90546b7 1476 ruby-cairo_1.10.0-2.dsc
 ed146c09664cdaac1ebaa6e4ac036667fcf06023 5586 ruby-cairo_1.10.0-2.debian.tar.gz
 39d66fbafaa3e5f739e7e4ec52acbba6281e39d3 150346 ruby-cairo_1.10.0-2_amd64.deb
 54580f049a44e0e6005c26d122481df02a140a56 4598 libcairo-ruby_1.10.0-2_all.deb
 ab49bd0b32266b3073dcc08039d648a331380b4d 4596 

Bug#632217: marked as done (python-django: empty __init__.py files not packaged, modules can't be imported)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 22:50:20 +0200
with message-id 20110630205019.gc30...@rivendell.home.ouaza.com
and subject line Re: Bug#632217: python-django: empty __init__.py files not 
packaged, modules can't be imported
has caused the Debian Bug report #632217,
regarding python-django: empty __init__.py files not packaged, modules can't be 
imported
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
632217: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632217
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: python-django
Version: 1.3-2
Severity: grave
Justification: renders package unusable


The python-django package omits all __init__.py files that are 0-sized.
The django upstream sources contain a lot of such files.  These missing
files lead to many django modules not being available, because python
expects module directories to contain a __init__.py file.


How to reproduce:

python -c 'import django.core'


Expected result:

No error


Actual result:

Traceback (most recent call last):
  File string, line 1, in module
ImportError: No module named core


Solution:

Package even 0-sized files.


NB: python-openid has the same problem in extesions/draft.  Problem also
presents for squeeze package versions.

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

Kernel: Linux 2.6.32-238.12.1.el5.028stab091.1 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-django depends on:
ii  python  2.6.6-3+squeeze6 interactive high-level object-orie
ii  python-support  1.0.10   automated rebuilding support for P

Versions of packages python-django recommends:
ii  libjs-jquery  1.4.2-2JavaScript library for dynamic web

Versions of packages python-django suggests:
ii  python-flup   1.0.2-1Implements Python Web Server Gatew
pn  python-mysqldbnone (no description available)
pn  python-psycopgnone (no description available)
pn  python-psycopg2   none (no description available)
ii  python-sqlite 1.0.1-7+b1 python interface to SQLite 2
pn  python-yaml   none (no description available)

-- no debconf information


---End Message---
---BeginMessage---
Hi,

On Thu, 30 Jun 2011, Simon Schubert wrote:
 The python-django package omits all __init__.py files that are 0-sized.
 The django upstream sources contain a lot of such files.  These missing
 files lead to many django modules not being available, because python
 expects module directories to contain a __init__.py file.

Yes, this is on purpose, they are removed by python-support at build time and
they are recreated by python-support at install time.

See /usr/share/python-support/private/movemodules:
if sourcefile.endswith(/__init__.py) and not 
os.path.getsize(sourcefile):
  # Remove namespace packages, they will be added automatically
  # by update-python-modules.
  # This will avoid file conflicts at the dpkg level.
  os.remove(sourcefile)

 How to reproduce:
 
 python -c 'import django.core'

Works here.

 Actual result:
 
 Traceback (most recent call last):
   File string, line 1, in module
 ImportError: No module named core

You might want to rerun update-python-modules -f. I don't know what's
wrong on your system but it's not the fault of python-django. Have you
misconfigured your python path to look up in /usr/share/pyshared
by mistake?

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Follow my Debian News ▶ http://RaphaelHertzog.com (English)
  ▶ http://RaphaelHertzog.fr (Français)

---End Message---


Bug#630777: marked as done (depends on iputils-ping which is not available on kfreebsd)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 21:02:11 +
with message-id e1qconh-gd...@franck.debian.org
and subject line Bug#630777: fixed in backuppc 3.2.0-4.1
has caused the Debian Bug report #630777,
regarding depends on iputils-ping which is not available on kfreebsd
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
630777: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=630777
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: backuppc
Version: 3.2.0-4
Severity: serious
Tags: patch

Hi,

backuppc depends on iputils-ping, but this is not available on kfreebsd-*. 
Since backuppc is now arch: any, this fact is considered for testing migration 
and the new package does't migrate to testing.

Attached is a patch to solve that by adding the virtual package 'ping' as an 
alternative.


Cheers,
Thijs


-- 
Thijs Kinkhorst th...@uvt.nl – LIS Unix

Universiteit van Tilburg – Library and IT Services • Postbus 90153, 5000 LE
Bezoekadres  Warandelaan 2 • Tel. 013 466 3035 • G 236 • http://www.uvt.nl
--- debian/control.bak	2011-06-17 11:24:05.017333500 +0200
+++ debian/control	2011-06-17 11:28:39.087845149 +0200
@@ -7,7 +7,7 @@
 
 Package: backuppc
 Architecture: any
-Depends: ${shlibs:Depends}, ${perl:Depends}, libdigest-md5-perl, libcompress-zlib-perl, libarchive-zip-perl, tar ( 1.13), adduser (=3.9), dpkg (=1.8.3), apache2 | httpd, ${misc:Depends}, smbclient, samba-common-bin, bzip2, default-mta | exim4 | mail-transport-agent, iputils-ping, ucf, libtime-modules-perl, libwww-perl
+Depends: ${shlibs:Depends}, ${perl:Depends}, libdigest-md5-perl, libcompress-zlib-perl, libarchive-zip-perl, tar ( 1.13), adduser (=3.9), dpkg (=1.8.3), apache2 | httpd, ${misc:Depends}, smbclient, samba-common-bin, bzip2, default-mta | exim4 | mail-transport-agent, iputils-ping | ping, ucf, libtime-modules-perl, libwww-perl
 Recommends: rsync, libfile-rsyncp-perl (= 0.68), openssh-client | ssh-client, rrdtool, libio-dirent-perl
 Suggests: w3m | www-browser, par2
 Conflicts: libfile-rsyncp-perl ( 0.68)


signature.asc
Description: This is a digitally signed message part.
---End Message---
---BeginMessage---
Source: backuppc
Source-Version: 3.2.0-4.1

We believe that the bug you reported is fixed in the latest version of
backuppc, which is due to be installed in the Debian FTP archive:

backuppc_3.2.0-4.1.diff.gz
  to main/b/backuppc/backuppc_3.2.0-4.1.diff.gz
backuppc_3.2.0-4.1.dsc
  to main/b/backuppc/backuppc_3.2.0-4.1.dsc
backuppc_3.2.0-4.1_amd64.deb
  to main/b/backuppc/backuppc_3.2.0-4.1_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 630...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bernd Zeimetz b...@debian.org (supplier of updated backuppc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 28 Jun 2011 22:31:10 +0200
Source: backuppc
Binary: backuppc
Architecture: source amd64
Version: 3.2.0-4.1
Distribution: unstable
Urgency: low
Maintainer: Ludovic Drolez ldro...@debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 backuppc   - high-performance, enterprise-grade system for backing up PCs
Closes: 630777
Changes: 
 backuppc (3.2.0-4.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Use inetutils-ping as an alternative to iputils-ping. Closes: #630777
Checksums-Sha1: 
 1d6aacecf5b9a412a208edac1d79dc065f45e6e0 1633 backuppc_3.2.0-4.1.dsc
 8e56002fe04c841bc80b44227433c73c35350466 27955 backuppc_3.2.0-4.1.diff.gz
 4fde8b2b0a54c86590acbb9b541eb09c1e4df864 605104 backuppc_3.2.0-4.1_amd64.deb
Checksums-Sha256: 
 15cef19ca548b94a00a71bdf49ad748edf787019648a5d398203c6dce7a21eae 1633 
backuppc_3.2.0-4.1.dsc
 7795aa4a77dad426246858868fa7747e7566b42327138b12d6e58218a333a47c 27955 
backuppc_3.2.0-4.1.diff.gz
 328d2cc26cca997445385ec86ed983026e46a43b8269c560aab502cd0655ef8e 605104 
backuppc_3.2.0-4.1_amd64.deb
Files: 
 13e1518ae92e0a78bf54d0d52c2ac9f8 1633 utils optional backuppc_3.2.0-4.1.dsc
 215649cd415908bb81665caf23bf6600 27955 utils optional 
backuppc_3.2.0-4.1.diff.gz
 318bbaa1a7156df0e5ea14c775b11e14 605104 utils optional 
backuppc_3.2.0-4.1_amd64.deb

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


Bug#611995: flush: FTBFS due to ld --no-add-needed

2011-06-30 Thread Ansgar Burchardt
clone 611995 -1
retitle -1 O: flush -- no time to maintain package in Debian
reassign -1 wnpp
thanks

Hi,

Dmitry Konishchev konishc...@gmail.com writes:
 I simply have very little free time and can't support all distros,
 especially Debian which changes the packaging rules (which I have to
 follow) quicker than I issue new versions. Sorry.

In that case you should orphan the package in Debian so another person
has the chance to maintain it there.  I have just done this, please
complain should I have misunderstood you.

Regards,
Ansgar



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



Bug#632238: libshell-perl: not installable in sid

2011-06-30 Thread Dominic Hargreaves
On Thu, Jun 30, 2011 at 08:54:58PM +0200, Ralf Treinen wrote:
 On Thu, Jun 30, 2011 at 07:44:36PM +0100, Dominic Hargreaves wrote:
  On Thu, Jun 30, 2011 at 08:35:05PM +0200, Ralf Treinen wrote:
   libshell-perl is not installable in sid on any architecture since May 21
   because it conflicts with the current version of perl-modules.
  
  As intended; see also #627211. It's currently of interest to those
  using perl 5.14 from experimental and has been staged in preparation
  for an upload of 5.14 to unstable.
 
 OK, but then it should have been uploaded to experimental, not sid.
 All dependencies of packages in sid must be satisfiable in sid.

I think this is a matter of opinion. It would be practically impossible
to prevent this situation from arising with dual lived modules in
general because of the way we add specific versioned Breaks to perl for
those modules, and I don't see that going to enormous lengths to prevent
the situation benefits anyone. Whilst in this specific case the Breaks
could have been foreseen in advance, and the package could indeed have
been uploaded to experimental, this would just have been one more
complication added to the perl 5.14 transition plans which is not
necessary in my opinion.

It's perfectly okay to file this bug to prevent the uninstallable
package propogating to testing (although in this case there was on
already) but in the context of the development cycle of Debian there
isn't actually anything wrong here.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Processed: block 622279 with 632225 632228, block 622279 with 632234 632249

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # FTBFS in unstable: subvertpy, csound
 block 622279 with 632225 632228
Bug #622279 [release.debian.org] transition: python-defaults (switching 
default: 2.6 - 2.7)
Was blocked by: 628860 629085 628243 625676 623587 622966 623578 629087 625171 
606363 622912 631800 625153 624917 625040 631823 624940 621879 625880 631820 
624824 625151 624901 626800 625520 618094 599127 622976 608640 622154 628827 
553961 625677 625108 629091 622001 623418 618055 625722 622072 625853 622070 
621992 555767 606006 625137 616364 626259 605875 623165 621402 628820 625678 
622978 618084 628826 553930 624889 621948 628830 629122 624787 628839 626199 
629817 624950 625707 623927 625115 554552 629148 631856 628852 629145 624740 
618159 626421 631821 629090 606681 624811 625011 622027 626416 606642 624982 
625679 624597 625087 610777 625135 628828 621932 624429
Added blocking bug(s) of 622279: 632228 and 632225
 # won't build modules for Python 2.7: pypoker-eval, shogun
 block 622279 with 632234 632249
Bug #622279 [release.debian.org] transition: python-defaults (switching 
default: 2.6 - 2.7)
Was blocked by: 628860 629085 628243 625676 623587 622966 623578 629087 625171 
606363 631800 622912 625153 624917 625040 631823 624940 621879 625880 631820 
624824 625151 624901 626800 625520 618094 599127 622976 608640 622154 628827 
553961 625677 625108 629091 623418 622001 618055 622072 625722 625853 622070 
621992 555767 625137 606006 616364 626259 605875 623165 621402 628820 625678 
622978 618084 628826 553930 624889 621948 632225 628830 629122 624787 628839 
626199 629817 623927 625707 624950 625115 554552 632228 629148 628852 631856 
629145 624740 626421 618159 631821 629090 606681 622027 625011 624811 626416 
624982 606642 625679 624597 625087 625135 610777 628828 624429 621932
Added blocking bug(s) of 622279: 632234 and 632249
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
622279: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622279
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#631529: Missing fix for CVE-2010-1447

2011-06-30 Thread Dominic Hargreaves
On Wed, Jun 29, 2011 at 05:30:08PM +0200, Moritz Muehlenhoff wrote:
 On Wed, Jun 29, 2011 at 02:10:17PM +0300, Niko Tyni wrote:
  On Tue, Jun 28, 2011 at 06:28:52PM +0200, Moritz Muehlenhoff wrote:
  
   Ahh, I forgot that mail. Personally I would think the perl update is
   more important than Petal, which is dead upstream and has hardly
   any users in popcon. We can add a note to the DSA, so that people
   who really need it can set the old Perl package on hold. If there's
   no fix for Petal in the next months it can be removed in a point
   update.
  
  Fine by me.
 
 Ok, seems there's no objections from pkg-perl. Dominic, feel free to
 upload to security-master once the update is ready.

Okay, now done for lenny and squeeze.

Thanks,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Processed: severity of 618725 is grave

2011-06-30 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 618725 grave
Bug #618725 [sun-java6-plugin] sun-java6-plugin: Any java applet I've tried 
throws a `ClassNotFoundException'
Severity set to 'grave' from 'important'

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
618725: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=618725
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#632106: marked as done (libibverbs: Mails to Maintainer address are bouncing)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Thu, 30 Jun 2011 23:32:11 +
with message-id e1qcqir-0003dx...@franck.debian.org
and subject line Bug#632106: fixed in libibverbs 1.1.5-1
has caused the Debian Bug report #632106,
regarding libibverbs: Mails to Maintainer address are bouncing
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
632106: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632106
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libibverbs
Version: 1.1.3-2
Severity: serious
Justification: Policy 3.3

Hi, 

Your maintainer address (rola...@cisco.com) is not valid anymore.

Reporting-MTA: dns;xbh-rcd-201.cisco.com
Received-From-MTA: dns;sj-iport-1.cisco.com
Arrival-Date: Mon, 27 Jun 2011 15:20:41 -0500

Final-Recipient: rfc822;rdre...@exch.cisco.com
Action: failed


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

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


---End Message---
---BeginMessage---
Source: libibverbs
Source-Version: 1.1.5-1

We believe that the bug you reported is fixed in the latest version of
libibverbs, which is due to be installed in the Debian FTP archive:

ibverbs-utils_1.1.5-1_amd64.deb
  to main/libi/libibverbs/ibverbs-utils_1.1.5-1_amd64.deb
libibverbs-dev_1.1.5-1_amd64.deb
  to main/libi/libibverbs/libibverbs-dev_1.1.5-1_amd64.deb
libibverbs1-dbg_1.1.5-1_amd64.deb
  to main/libi/libibverbs/libibverbs1-dbg_1.1.5-1_amd64.deb
libibverbs1_1.1.5-1_amd64.deb
  to main/libi/libibverbs/libibverbs1_1.1.5-1_amd64.deb
libibverbs_1.1.5-1.debian.tar.gz
  to main/libi/libibverbs/libibverbs_1.1.5-1.debian.tar.gz
libibverbs_1.1.5-1.dsc
  to main/libi/libibverbs/libibverbs_1.1.5-1.dsc
libibverbs_1.1.5.orig.tar.gz
  to main/libi/libibverbs/libibverbs_1.1.5.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 632...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roland Dreier rol...@digitalvampire.org (supplier of updated libibverbs 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 29 Jun 2011 23:57:34 -0700
Source: libibverbs
Binary: libibverbs1 libibverbs-dev libibverbs1-dbg ibverbs-utils
Architecture: source amd64
Version: 1.1.5-1
Distribution: unstable
Urgency: low
Maintainer: Roland Dreier rol...@digitalvampire.org
Changed-By: Roland Dreier rol...@digitalvampire.org
Description: 
 ibverbs-utils - Examples for the libibverbs library
 libibverbs-dev - Development files for the libibverbs library
 libibverbs1 - Library for direct userspace use of RDMA (InfiniBand/iWARP)
 libibverbs1-dbg - Debugging symbols for the libibverbs library
Closes: 632106
Changes: 
 libibverbs (1.1.5-1) unstable; urgency=low
 .
   * Switch to dpkg-source 3.0 (quilt) format.
   * New upstream releases.
 - Fix handling of madvise() failures
 - Add path record definitions to sa.h
 - Handle huge pages for fork support/madvise
 - Fix crash if no devices and ibv_get_device_list() called multiple times
   * Update maintainer and set DM-Upload-Allowed to yes.  (Closes: #632106)
   * Don't ship .la files.
   * Update to Standards-Version: 3.9.2.
Checksums-Sha1: 
 a04b9e61849beb8c5e5f34fc1ea30a40122bcc10 1778 libibverbs_1.1.5-1.dsc
 b5d45151c559f7d92d72065f36bd4aabd27147a6 365946 libibverbs_1.1.5.orig.tar.gz
 259119da0c541150fef53edddf1d7711a67c8fcf 4706 libibverbs_1.1.5-1.debian.tar.gz
 6a418b50860ac2c27af604cb5c2cec9039342779 35050 libibverbs1_1.1.5-1_amd64.deb
 e45db136534bed29a6203da8f639c2f3685274a5 83930 libibverbs-dev_1.1.5-1_amd64.deb
 f06d15fa2b73fa0abc35d6b6cab6b7f5000bd8e9 193644 
libibverbs1-dbg_1.1.5-1_amd64.deb
 c2c1130043a3a1318f682ccc29b99e7290b1f25c 47306 ibverbs-utils_1.1.5-1_amd64.deb
Checksums-Sha256: 
 1dfffeaf647ddf3951cc530cf62a7db88a0359a6eb6378c893b552550a5e40d2 1778 
libibverbs_1.1.5-1.dsc
 1370843f4caedff302119408b57416eaa4d30a247f91557be9118516a1cb4f31 365946 
libibverbs_1.1.5.orig.tar.gz
 2a222a5a4b6b5e0cf426d70a7a1a6942f6ac3c57cd03b34896d21c513f609164 4706 
libibverbs_1.1.5-1.debian.tar.gz
 

Bug#632260: stardict: Impossible to turn off the network dictionarry

2011-06-30 Thread phcoder
Package: stardict
Version: 3.0.1-7
Severity: grave
Tags: upstream security
Justification: user security hole

Any attempts to uncheck the box Enable network dictionaries is effective only 
until statrdict is closed and network dictionary is activated again after 
restart (the checkbox remains unchecked). Sometime it doesn't even work that 
far. I don't want all my searches to be sent to some server in China or 
elsewhere in the world.

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

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

Versions of packages stardict depends on:
ii  stardict-gtk  3.0.1-7+b1 International dictionary written i

stardict recommends no packages.

stardict suggests no packages.

-- no debconf information



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



Bug#632228: csound: FTBFS on sparc

2011-06-30 Thread Felipe Sateler
On Thu, Jun 30, 2011 at 16:46, Jakub Wilk jw...@debian.org wrote:
 * Felipe Sateler fsate...@debian.org, 2011-06-30, 15:37:


 https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3stamp=1298329817

 https://buildd.debian.org/status/fetch.php?pkg=csoundarch=sparcver=1%3A5.13.0~dfsg-3.1stamp=1309297483

 This has happened several times during the past year. Smetana has always
 been able to build csound, so this is clearly not a csound issue. I don't
 think it is reasonable to file serious bugs against a package when gcc or
 swig are segfaulting.

 Hmm sorry, this probably sounds more aggressive than I intended. What I
 mean is that I think these bugs should be addressed to gcc or swig since it
 is not csound that is failing to build, but rather gcc is segfaulting. I do
 not have the skills to try to debug why gcc is segfaulting on a particular
 buildd.

 Please don't take it personally. :) I filed the bug to increase visibility
 of the problem, not to put blame on anyone.

No worries. I'm not venting at you either, but that I think the
process is broken. This sort of bugs should not be filed against
csound but rather the buildd or port maintainers, since a segfault
somewhere in the toolchain is certainly not a bug in my package. I'm
just frustrated that csound no longer seems to build at first try on
sparc:


https://buildd.debian.org/status/logs.php?pkg=csoundarch=sparc


 And yes, I tend to agree that does not really look like csound is at fault.

 Also note that this bug has no effect on testing transition, as the package
 won't migrate anyway before it is built on sparc.

I wonder if I should just ask for removal on sparc and ask it to be
tagged not-for-us...

Or alternatively, can csound be forced to always build on schroder?
That buildd seems to build csound correctly.

-- 

Saludos,
Felipe Sateler



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



Bug#632262: Invalid maintainer address

2011-06-30 Thread Mike O'Connor
Source: upse
Justification: 3.3
Severity: serious

The listed maintainer of this package is William Pitcock
neno...@sacredspiral.co.uk, however the only listed MX record for this
domain is unusable:

stew@tang:~ $ host -t mx sacredspiral.co.uk
sacredspiral.co.uk mail is handled by 5 ifrit.dereferenced.org.

stew@tang:~ $ telnet ifrit.dereferenced.org 25
Trying 66.212.21.15...
telnet: Unable to connect to remote host: No route to host

A valid email address is required by policy 3.3.



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



Bug#632263: Invalid maintainer address

2011-06-30 Thread Mike O'Connor
Source: qpopper
Justification: 3.3
Severity: serious

The listed maintainer of this package is William Pitcock
neno...@sacredspiral.co.uk, however the only listed MX record for this
domain is unusable:

stew@tang:~ $ host -t mx sacredspiral.co.uk
sacredspiral.co.uk mail is handled by 5 ifrit.dereferenced.org.

stew@tang:~ $ telnet ifrit.dereferenced.org 25
Trying 66.212.21.15...
telnet: Unable to connect to remote host: No route to host

A valid email address is required by policy 3.3.



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



Bug#632264: Invalid maintainer address

2011-06-30 Thread Mike O'Connor
Source: pidgin-mpris
Justification: 3.3
Severity: serious

The listed maintainer of this package is William Pitcock
neno...@sacredspiral.co.uk, however the only listed MX record for this
domain is unusable:

stew@tang:~ $ host -t mx sacredspiral.co.uk
sacredspiral.co.uk mail is handled by 5 ifrit.dereferenced.org.

stew@tang:~ $ telnet ifrit.dereferenced.org 25
Trying 66.212.21.15...
telnet: Unable to connect to remote host: No route to host

A valid email address is required by policy 3.3.



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



Bug#632265: Invalid maintainer address

2011-06-30 Thread Mike O'Connor
Source: pidgin-audacious
Justification: 3.3
Severity: serious

The listed maintainer of this package is William Pitcock
neno...@sacredspiral.co.uk, however the only listed MX record for this
domain is unusable:

stew@tang:~ $ host -t mx sacredspiral.co.uk
sacredspiral.co.uk mail is handled by 5 ifrit.dereferenced.org.

stew@tang:~ $ telnet ifrit.dereferenced.org 25
Trying 66.212.21.15...
telnet: Unable to connect to remote host: No route to host

A valid email address is required by policy 3.3.



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



Bug#632266: Invalid maintainer address

2011-06-30 Thread Mike O'Connor
Source: gtkglext
Justification: 3.3
Severity: serious

The listed maintainer of this package is William Pitcock
neno...@sacredspiral.co.uk, however the only listed MX record for this
domain is unusable:

stew@tang:~ $ host -t mx sacredspiral.co.uk
sacredspiral.co.uk mail is handled by 5 ifrit.dereferenced.org.

stew@tang:~ $ telnet ifrit.dereferenced.org 25
Trying 66.212.21.15...
telnet: Unable to connect to remote host: No route to host

A valid email address is required by policy 3.3.



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



Bug#628727: marked as done (httpcomponents-client security issue CVE-2011-1498)

2011-06-30 Thread Debian Bug Tracking System
Your message dated Fri, 01 Jul 2011 05:17:24 +
with message-id e1qcw6w-0006qy...@franck.debian.org
and subject line Bug#628727: fixed in httpcomponents-client 4.1.1-1
has caused the Debian Bug report #628727,
regarding httpcomponents-client security issue CVE-2011-1498
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
628727: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628727
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: httpcomponents-client
Version: 4.0.1-1
Severity: serious
Tags: security

Hi,

the following CVE (Common Vulnerabilities  Exposures) id was
published for httpcomponents-client.

CVE-2011-1498
[HTTPCLIENT-1061] Fixed critical bug causing Proxy-Authorization header to be
sent to the target host when tunneling requests through a proxy server that
requires authentication. 

http://www.apache.org/dist/httpcomponents/httpclient/RELEASE_NOTES-4.1.x.txt
http://seclists.org/oss-sec/2011/q2/188

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry. Please contact the security team to get
the issue addressed in stable aswell.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-1498
http://security-tracker.debian.org/tracker/CVE-2011-1498


---End Message---
---BeginMessage---
Source: httpcomponents-client
Source-Version: 4.1.1-1

We believe that the bug you reported is fixed in the latest version of
httpcomponents-client, which is due to be installed in the Debian FTP archive:

httpcomponents-client_4.1.1-1.debian.tar.gz
  to main/h/httpcomponents-client/httpcomponents-client_4.1.1-1.debian.tar.gz
httpcomponents-client_4.1.1-1.dsc
  to main/h/httpcomponents-client/httpcomponents-client_4.1.1-1.dsc
httpcomponents-client_4.1.1.orig.tar.gz
  to main/h/httpcomponents-client/httpcomponents-client_4.1.1.orig.tar.gz
libhttpclient-java_4.1.1-1_all.deb
  to main/h/httpcomponents-client/libhttpclient-java_4.1.1-1_all.deb
libhttpmime-java_4.1.1-1_all.deb
  to main/h/httpcomponents-client/libhttpmime-java_4.1.1-1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 628...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Miguel Landaeta mig...@miguel.cc (supplier of updated httpcomponents-client 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 29 Jun 2011 00:13:18 -0430
Source: httpcomponents-client
Binary: libhttpclient-java libhttpmime-java
Architecture: source all
Version: 4.1.1-1
Distribution: unstable
Urgency: high
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Miguel Landaeta mig...@miguel.cc
Description: 
 libhttpclient-java - HTTP/1.1 compliant HTTP agent implementation
 libhttpmime-java - HTTP/1.1 compliant HTTP agent implementation - mime4j 
extension
Closes: 628727 628731
Changes: 
 httpcomponents-client (4.1.1-1) unstable; urgency=high
 .
   * New upstream release:
 Fixed critical bug causing Proxy-Authorization header to be
 sent to the target host when tunneling requests through a proxy
 server that requires authentication: CVE-2011-1498. (Closes: #628727).
   * New maintainer. (Closes: #628731).
   * Bump Standards-Version to 3.9.2. No changes were required.
   * Add Build-Depends on libmockito-java.
   * Update Vcs-* fields.
Checksums-Sha1: 
 3a1fa570924b717d8332bb14d771db2ffe0aa320 2294 httpcomponents-client_4.1.1-1.dsc
 0ef17a593669a08a3c41399a73fead81e621e5d7 1445826 
httpcomponents-client_4.1.1.orig.tar.gz
 33b8738482a3fc9f32728d226f599a73593c0dcd 3334 
httpcomponents-client_4.1.1-1.debian.tar.gz
 3022f9f539edc94ff6556eb5a88eaf3eea463af2 324200 
libhttpclient-java_4.1.1-1_all.deb
 4dbd825865f5ba83f942c7a70258c73a0b9340e2 34118 libhttpmime-java_4.1.1-1_all.deb
Checksums-Sha256: 
 a8dc8a2407711ae806f96f9a07fde42ce00630792413bc4c9626d831b554d342 2294 
httpcomponents-client_4.1.1-1.dsc
 ca8384eaeefba78b3e185f072d66b57f276fbdae296ed08dba9a3dab51c8 1445826 
httpcomponents-client_4.1.1.orig.tar.gz
 0436f00cb3147d7ebc15b4f88f73ef3bbb820a9c631458de0f3844b67e50eb11 3334 
httpcomponents-client_4.1.1-1.debian.tar.gz
 0ce28146f046525465b4443d83227cefaa91f8aff1be09d919db01cdd29b1f35 324200 

Bug#632217: python-django: empty __init__.py files not packaged, modules can't be imported

2011-06-30 Thread Raphael Hertzog
On Fri, 01 Jul 2011, Simon Schubert wrote:
 On 06/30/2011 10:50 PM, Raphael Hertzog wrote:
 On Thu, 30 Jun 2011, Simon Schubert wrote:
 The python-django package omits all __init__.py files that are 0-sized.
 The django upstream sources contain a lot of such files.  These missing
 files lead to many django modules not being available, because python
 expects module directories to contain a __init__.py file.
 Yes, this is on purpose, they are removed by python-support at build time and
 they are recreated by python-support at install time.
 
 Fair enough.  This does not happen for me on install time.  I have
 to run update-python-modules -f manually.  Is this intended?

No it's not intended but I don't see how that could be possible.
Can you show the output of aptitude reinstall python-django ?

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Follow my Debian News ▶ http://RaphaelHertzog.com (English)
  ▶ http://RaphaelHertzog.fr (Français)



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



Bug#611995: flush: FTBFS due to ld --no-add-needed

2011-06-30 Thread Dmitry Konishchev
OK, thanks.

--
Dmitry Konishchev
mailto:konishc...@gmail.com


Bug#632235: source contains non-DFSG components

2011-06-30 Thread Anton Zinoviev
On Thu, Jun 30, 2011 at 07:58:23PM +0200, Daniel Baumann wrote:
 
 src:console-data is in main, therefore any parts, regardless if they
 are installed into the binary packages or not, needs to fulfil the
 DFSG. the 'Agafari' files clearly are not DFSG compliant.
 
 please remove the files from the source, and please consider to
 write an copyright file that has references to files so that normal
 people can dereference it.

All bitmap fonts are public domain by their nature (according to the 
decision of some court).  There is no need to remove these fonts.

http://www.renpy.org/wiki/renpy/misc/Bitmap_Fonts_and_Copyright

Anton Zinoviev




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