Bug#679680: [PATCH] Fix missing unsigned on fetch CAS calls

2012-07-01 Thread Ian Wienand
Hi,

Debian bug #679680 [1] found this issue

In the generalize-small.h template we have

---
#if defined(AO_HAVE_XSIZE_fetch_compare_and_swap_acquire) \
 !defined(AO_HAVE_XSIZE_compare_and_swap_acquire)
  AO_INLINE int
  AO_XSIZE_compare_and_swap_acquire(volatile XCTYPE *addr, XCTYPE old_val,
XCTYPE new_val)
  {
return AO_XSIZE_fetch_compare_and_swap_acquire(addr, old_val, new_val)
 == old_val;
  }
# define AO_HAVE_XSIZE_compare_and_swap_acquire
#endif
---

which matches for ia64; but then it tries to call the fetch CAS with
addr which ia64 defines as 

---
AO_INLINE unsigned char
AO_char_fetch_compare_and_swap_acquire(volatile unsigned char *addr,
unsigned char old, unsigned char new_val)

---

I'm pretty sure the unsigned just got left off in the template

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

-i

* atomic_ops/generalize-small.template : add unsigned qualifier
  when fetch CAS defined (Debian bug #679680)
* atomic_ops/generalize-small.h : regenerate

Signed-off-by: Ian Wienand i...@wienand.org
---
 src/atomic_ops/generalize-small.h|   45 ++
 src/atomic_ops/generalize-small.template |   15 ++
 2 files changed, 36 insertions(+), 24 deletions(-)

diff --git a/src/atomic_ops/generalize-small.h 
b/src/atomic_ops/generalize-small.h
index f30ebac..6cd6e6a 100644
--- a/src/atomic_ops/generalize-small.h
+++ b/src/atomic_ops/generalize-small.h
@@ -158,8 +158,9 @@
 #if defined(AO_HAVE_char_fetch_compare_and_swap_full) \
  !defined(AO_HAVE_char_compare_and_swap_full)
   AO_INLINE int
-  AO_char_compare_and_swap_full(volatile char *addr, char old_val,
- char new_val)
+  AO_char_compare_and_swap_full(volatile unsigned char *addr,
+ unsigned char old_val,
+ unsigned char new_val)
   {
 return AO_char_fetch_compare_and_swap_full(addr, old_val, new_val)
  == old_val;
@@ -170,8 +171,9 @@
 #if defined(AO_HAVE_char_fetch_compare_and_swap_acquire) \
  !defined(AO_HAVE_char_compare_and_swap_acquire)
   AO_INLINE int
-  AO_char_compare_and_swap_acquire(volatile char *addr, char old_val,
-char new_val)
+  AO_char_compare_and_swap_acquire(volatile unsigned char *addr,
+unsigned char old_val,
+unsigned char new_val)
   {
 return AO_char_fetch_compare_and_swap_acquire(addr, old_val, new_val)
  == old_val;
@@ -182,8 +184,9 @@
 #if defined(AO_HAVE_char_fetch_compare_and_swap_release) \
  !defined(AO_HAVE_char_compare_and_swap_release)
   AO_INLINE int
-  AO_char_compare_and_swap_release(volatile char *addr, char old_val,
-char new_val)
+  AO_char_compare_and_swap_release(unsigned volatile char *addr,
+unsigned char old_val,
+unsigned char new_val)
   {
 return AO_char_fetch_compare_and_swap_release(addr, old_val, new_val)
  == old_val;
@@ -781,8 +784,9 @@
 #if defined(AO_HAVE_short_fetch_compare_and_swap_full) \
  !defined(AO_HAVE_short_compare_and_swap_full)
   AO_INLINE int
-  AO_short_compare_and_swap_full(volatile short *addr, short old_val,
- short new_val)
+  AO_short_compare_and_swap_full(volatile unsigned short *addr,
+ unsigned short old_val,
+ unsigned short new_val)
   {
 return AO_short_fetch_compare_and_swap_full(addr, old_val, new_val)
  == old_val;
@@ -793,8 +797,9 @@
 #if defined(AO_HAVE_short_fetch_compare_and_swap_acquire) \
  !defined(AO_HAVE_short_compare_and_swap_acquire)
   AO_INLINE int
-  AO_short_compare_and_swap_acquire(volatile short *addr, short old_val,
-short new_val)
+  AO_short_compare_and_swap_acquire(volatile unsigned short *addr,
+unsigned short old_val,
+unsigned short new_val)
   {
 return AO_short_fetch_compare_and_swap_acquire(addr, old_val, new_val)
  == old_val;
@@ -805,8 +810,9 @@
 #if defined(AO_HAVE_short_fetch_compare_and_swap_release) \
  !defined(AO_HAVE_short_compare_and_swap_release)
   AO_INLINE int
-  AO_short_compare_and_swap_release(volatile short *addr, short old_val,
-short new_val)
+  AO_short_compare_and_swap_release(unsigned volatile short *addr,
+unsigned short old_val,
+unsigned short new_val)
   {
 return AO_short_fetch_compare_and_swap_release(addr, old_val, new_val)
  == old_val;
@@ -1404,8 +1410,9 @@
 #if defined(AO_HAVE_int_fetch_compare_and_swap_full) \
  

Bug#638068: initramfs-tools generates unbootable initrd.img on IA-64

2012-07-01 Thread Adam Conrad
I've committed a fix for #638068 to git.

It doesn't address the fact that klibc/sh appears to not be
good enough to boot ia64 (which is an entirely different
and, I assume, klibc bug), but it should improve the handling
enough to make it at least do as requested for both BUSYBOX=y
and BUSYBOX=n (which should fix ia64, as long as you use =y)

Can someone test out git head and let me know if this works
for you.  It looks obviously correct to me, but I can't
readily test it to make sure it DTRT.

... Adam



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



Bug#679280: [xml/sgml-pkgs] Bug#679280: CVE-2012-2807

2012-07-01 Thread Aron Xu
On Jul 1, 2012 5:24 AM, Michael Gilbert mgilb...@debian.org wrote:

  I'm still investigating the problem and more details about it are
  welcomed, please don't NMU for either unstable or stable.

 Why?  This kind of statement requires some kind of justification (such
 as the proposed commit is incomplete or wrong or something like that).
  Otherwise, why slow down others trying to help?

 Best wishes,
 Mike


Actually I am not very willing to apply random patch without upstream
acknowledgement or a clear statement of what problem it tries to fix. For
this very issue, the solution is not clear to me about what problem it's
trying to mitigate, and at the same time looks ugly on hard coding a magic
size of 1024*1024*512 without a proper description. So I ask people don't
NMU and give me more time to investigate.


Bug#679734: Maintainer address bounces

2012-07-01 Thread Luca Falavigna
Source: ntop
Version: 3:4.99.0-rc+ndpi5237+dfsg1-1
Severity: serious

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  jor...@linuxgen.com
all hosts have been failing for a long time and were last tried after this
message arrived



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

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



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



Processed: pending

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 638068 pending
Bug #638068 [initramfs-tools] [bisected] initramfs-tools generates unbootable 
initrd.img on IA-64 platform (Itanium)
Added tag(s) pending.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.
-- 
638068: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638068
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#679672: ifupdown: ifup doesn't recognize aliases IPs for vlan in form ethX.Y:A

2012-07-01 Thread Andrew Shadura
Hello,

On Sat, 30 Jun 2012 19:37:57 +0300
Adrian Ban adrian@mantech.ro wrote:

 After an upgrade of the system the ifup command doesn't recognize
 anymore the aliases for the VLANs. I have severals vlans configured
 in /etc/network/interfaces like this:

I've just committed a fix.

For this:

iface eth2.2:3 inet static
  address 3.4.5.6/23

It now runs the following:

if test -d /sys/class/net/eth2 -a ! -d /sys/class/net/eth2.2 ; 
then ip link set up dev eth2; ip link add link eth2 name eth2.2 
type vlan id 2; fi
ip addr add 3.4.5.6/255.255.254.0 broadcast 3.4.5.255 dev eth2.2:3 label 
eth2.2:3
ip link set dev eth2.2:3   up

Please check if that's correct.

-- 
WBR, Andrew


signature.asc
Description: PGP signature


Bug#679736: spandsp: test suite fails to run when built in parallel (-j)

2012-07-01 Thread Tzafrir Cohen
Source: spandsp
Version: 0.0.6~pre20-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

The package spandsp has failed to build on some architectures. This is due
to the test suite not intended to build in parallel.

As Upstream does not consider this a bug, the simple fix is to disable
running the tests in parallel. A patch is included in SVN.



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



Bug#679554: Help needed for FTBS on mipsel (alone): #679554 / #679552

2012-07-01 Thread Helge Kreutzmann
Hello,
a few days ago I uploaded a new (debian) version of goobox. It builds
fine on all archs except mipsel, where it dies in the man page
generation / translation (using po4a and nsgmls from the package sp).

Could some porter be so kind to retry goobox 3.0.1-2 on mipsel to
check if that this is a permanent issue or a temporary glitch?

Thanks!

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


signature.asc
Description: Digital signature


Bug#679680: [Gc] [PATCH] Fix missing unsigned on fetch CAS calls

2012-07-01 Thread Ivan Maidanski
Hi Ian,

Thank you. Done (committed to master branch). Please test it.

Regards,
Ivan Maidanski

Sun, 01 Jul 2012 00:08:02 -0700 Ian Wienand i...@wienand.org:
 Hi,
 
 Debian bug #679680 [1] found this issue
 
 In the generalize-small.h template we have
 
 ---
 #if defined(AO_HAVE_XSIZE_fetch_compare_and_swap_acquire) \
  !defined(AO_HAVE_XSIZE_compare_and_swap_acquire)
   AO_INLINE int
   AO_XSIZE_compare_and_swap_acquire(volatile XCTYPE *addr, XCTYPE old_val,
 XCTYPE new_val)
   {
 return AO_XSIZE_fetch_compare_and_swap_acquire(addr, old_val, new_val)
  == old_val;
   }
 # define AO_HAVE_XSIZE_compare_and_swap_acquire
 #endif
 ---
 
 which matches for ia64; but then it tries to call the fetch CAS with
 addr which ia64 defines as 
 
 ---
 AO_INLINE unsigned char
 AO_char_fetch_compare_and_swap_acquire(volatile unsigned char *addr,
 unsigned char old, unsigned char new_val)
 
 ---
 
 I'm pretty sure the unsigned just got left off in the template
 
 [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679680
 
 -i
 
 * atomic_ops/generalize-small.template : add unsigned qualifier
   when fetch CAS defined (Debian bug #679680)
 * atomic_ops/generalize-small.h : regenerate
 
 Signed-off-by: Ian Wienand i...@wienand.org
 ---
  src/atomic_ops/generalize-small.h|   45 
 ++
  src/atomic_ops/generalize-small.template |   15 ++
  2 files changed, 36 insertions(+), 24 deletions(-)
 
 diff --git a/src/atomic_ops/generalize-small.h 
 b/src/atomic_ops/generalize-small.h
 index f30ebac..6cd6e6a 100644
 --- a/src/atomic_ops/generalize-small.h
 +++ b/src/atomic_ops/generalize-small.h
 @@ -158,8 +158,9 @@
  #if defined(AO_HAVE_char_fetch_compare_and_swap_full) \
   !defined(AO_HAVE_char_compare_and_swap_full)
AO_INLINE int
 -  AO_char_compare_and_swap_full(volatile char *addr, char old_val,
 - char new_val)
 +  AO_char_compare_and_swap_full(volatile unsigned char *addr,
 + unsigned char old_val,
 + unsigned char new_val)
{
  return AO_char_fetch_compare_and_swap_full(addr, old_val, new_val)
   == old_val;
 @@ -170,8 +171,9 @@
  #if defined(AO_HAVE_char_fetch_compare_and_swap_acquire) \
   !defined(AO_HAVE_char_compare_and_swap_acquire)
AO_INLINE int
 -  AO_char_compare_and_swap_acquire(volatile char *addr, char old_val,
 -char new_val)
 +  AO_char_compare_and_swap_acquire(volatile unsigned char *addr,
 +unsigned char old_val,
 +unsigned char new_val)
{
  return AO_char_fetch_compare_and_swap_acquire(addr, old_val, new_val)
   == old_val;
 @@ -182,8 +184,9 @@
  #if defined(AO_HAVE_char_fetch_compare_and_swap_release) \
   !defined(AO_HAVE_char_compare_and_swap_release)
AO_INLINE int
 -  AO_char_compare_and_swap_release(volatile char *addr, char old_val,
 -char new_val)
 +  AO_char_compare_and_swap_release(unsigned volatile char *addr,
 +unsigned char old_val,
 +unsigned char new_val)
{
  return AO_char_fetch_compare_and_swap_release(addr, old_val, new_val)
   == old_val;
 @@ -781,8 +784,9 @@
  #if defined(AO_HAVE_short_fetch_compare_and_swap_full) \
   !defined(AO_HAVE_short_compare_and_swap_full)
AO_INLINE int
 -  AO_short_compare_and_swap_full(volatile short *addr, short old_val,
 - short new_val)
 +  AO_short_compare_and_swap_full(volatile unsigned short *addr,
 + unsigned short old_val,
 + unsigned short new_val)
{
  return AO_short_fetch_compare_and_swap_full(addr, old_val, new_val)
   == old_val;
 @@ -793,8 +797,9 @@
  #if defined(AO_HAVE_short_fetch_compare_and_swap_acquire) \
   !defined(AO_HAVE_short_compare_and_swap_acquire)
AO_INLINE int
 -  AO_short_compare_and_swap_acquire(volatile short *addr, short old_val,
 -short new_val)
 +  AO_short_compare_and_swap_acquire(volatile unsigned short *addr,
 +unsigned short old_val,
 +unsigned short new_val)
{
  return AO_short_fetch_compare_and_swap_acquire(addr, old_val, new_val)
   == old_val;
 @@ -805,8 +810,9 @@
  #if defined(AO_HAVE_short_fetch_compare_and_swap_release) \
   !defined(AO_HAVE_short_compare_and_swap_release)
AO_INLINE int
 -  AO_short_compare_and_swap_release(volatile short *addr, short old_val,
 -short new_val)
 +  AO_short_compare_and_swap_release(unsigned volatile short *addr,
 +unsigned short 

Bug#679671: [Pkg-ia32-libs-maintainers] Bug#679671: ia32-libs-i386: depends on removed package libdb4.8

2012-07-01 Thread Goswin von Brederlow
Sven Joachim svenj...@gmx.de writes:

 Package: ia32-libs-i386
 Version: 20120616
 Severity: serious

 Your package depends on libdb4.8 which is no longer available in
 unstable.

It is still in wheezy. I assume it is going to be removed there as well?


Dear Release Team,

as per http://release.debian.org/wheezy/freeze_policy.html I'm CCing you
on this bug (#679671) to ask for a freeze exception.

==
diff -Nru ia32-libs-20120616/debian/control ia32-libs-20120701/debian/control
--- ia32-libs-20120616/debian/control   2012-06-16 21:30:00.0 +0200
+++ ia32-libs-20120701/debian/control   2012-07-01 10:54:26.0 +0200
@@ -31,7 +31,7 @@
  libavahi-common3 (= 0.6.27-2+squeeze1), libbsd0 (= 0.2.0-1),
  libcap2 (= 1:2.19-3),
  libcomerr2 (= 1.41.12-4stable1), libcups2 (= 1.4.4-7+squeeze1),
- libcurl3 (= 7.21.0-2), libdb4.8 (= 4.8.30-2),
+ libcurl3 (= 7.21.0-2),
  libdbus-1-3 (= 1.2.24-4+squeeze1), libdirectfb-1.2-9 (= 1.2.10.0-4),
  libdrm-intel1 (= 2.4.21-1~squeeze3), libdrm-radeon1 (= 2.4.21-1~squeeze3),
  libdrm2 (= 2.4.21-1~squeeze3), libedit2 (= 2.11-20080614-2),
==

The package is uploaded to mentors awaiting sponsoring:

http://mentors.debian.net/package/ia32-libs
http://mentors.debian.net/debian/pool/main/i/ia32-libs/ia32-libs_20120701.dsc

MfG
Goswin



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



Processed: limit source to spandsp, tagging 679736

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #spandsp (0.0.6~pre20-2) UNRELEASED; urgency=low
 #
 #  * Patch serial-test: Don't run tests in parallel (Closes: #679736).
 #
 limit source spandsp
Limiting to bugs with field 'source' containing at least one of 'spandsp'
Limit currently set to 'source':'spandsp'

 tags 679736 + pending
Bug #679736 [src:spandsp] spandsp: test suite fails to run when built in 
parallel (-j)
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679736: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679736
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#675161: Still present in 1:1.0.1-1

2012-07-01 Thread Tollef Fog Heen

found 675161 1:1.0.1-1
thanks

I'm still seeing this bug with:

ii  xserver-xorg-video-nouve 1:1.0.1-1X.Org X server -- Nouveau 
display driver

it seems like it happens less frequently than with older versions.

To the extent it matters, my gfx card is

01:00.0 VGA compatible controller: NVIDIA Corporation GF116 [GeForce GTX 550 
Ti] (rev a1)

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



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



Processed: Still present in 1:1.0.1-1

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 675161 1:1.0.1-1
Bug #675161 {Done: Sven Joachim svenj...@gmx.de} [xserver-xorg-video-nouveau] 
xserver-xorg-video-nouveau: Random artefacts in any application
Marked as found in versions xserver-xorg-video-nouveau/1:1.0.1-1 and reopened.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
675161: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=675161
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#679742: Depends on non-existing libdb4.8

2012-07-01 Thread Ondřej Surý
Package: 389-ds-base-dev
Version: 389-ds-base-dev/1.2.11.7-1
Severity: serious

The hard-coded dependency on lidb4.8 is wrong, since there is no
lidb4.8 package in the archive, and now your package depends on
lidb4.8 and libdb5.1.

That probably applies to all other libsomething hard coded
dependencies in your package.  Also your -dev package probably misses
the -dev dependencies (in case they are needed - that depends on the
symbols exported from the library and headers used - you should test
that before blindly adding all -dev packages to Depends: field).

You should not hard-code such dependencies (unless you need a specific
version), but let the dpkg-shlibs handle it (that's the
${shlibs:Depends} field).

Snippet from debian/control file:

Package: 389-ds-base-libs
Section: libs
Architecture: any
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends},
 libnss3-1d,
 libsvrcore0,
 libsnmp15,
 libdb4.8,

O.
-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (300, 'unstable')
Architecture: amd64 (x86_64)

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



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



Bug#678247: [Pkg-clamav-devel] Bug#678247: Fix debdiff

2012-07-01 Thread Stephen Gran
This one time, at band camp, Scott Kitterman said:
 Attached.

Hi,

Have you tested that that is a valid config file?  I have some vague
memory of freshclam not being happy with a proxyhost but not a
proxyport.

Cheers,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#679746: default --system home directory leads to piuparts RC bugs

2012-07-01 Thread Marc Haber
Package: adduser
Version: 3.113+nmu3
Severity: serious

Hi,

I am really sorry having to file this.

When a package uses adduser --system without explicitly specifying the
home directory of the new user, its home directory gets set to
/home/$USER. Debian QA thinks that this is a policy violation and
supports this by bending FHS
http://www.debian.org/doc/packaging-manuals/fhs/fhs-2.3.html#HOMEUSERHOMEDIRECTORIES
which says:

/home : User home directories (optional)
/home is a fairly standard concept, but it is clearly a site-specific
filesystem. The setup will differ from host to host. Therefore, no
program should rely on this location.

Thus, packages using adduser --system and relying on adduser doing the
right thing will get a piuparts-based RC bug in no time. Adduser
should change its default behavior to something that QA will accept.

Greetings
Marc



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



Bug#679714: postgres-xc: fails to install: missing dependency on postgresql server?

2012-07-01 Thread Andreas Beckmann
On 2012-07-01 01:58, Vladimir Stavrinov wrote:
 On Sun, Jul 01, 2012 at 01:39:30AM +0200, Andreas Beckmann wrote:
 
 + '[' '!' -S /var/run/postgresql/.s.PGSQL.5432 ']'
 + i=11
 + sleep 1
 + '[' 11 -gt 10 ']'
 + exit 1
 dpkg: error processing postgres-xc (--configure):
  subprocess installed post-installation script returned error exit status 1
 Errors were encountered while processing:
  postgres-xc

 Where should the socket come from?
 
 
 It created when coordinator starts. Try to start/stop it with init
 script and see what prevents to do so.

One step further. So installation fails if policy-rc.d is configured to 
forbid starting of services ...

Next problem (after I manually ran service postgres-xc start):

+ i=1
+ '[' '!' -S /var/run/postgresql/.s.PGSQL.5432 ']'
+ sudo su - postgres-xc -c 'psql postgres -c CREATE NODE dn1 WITH 
(TYPE=datanode, PORT=15432); CREATE NODE dn2 WITH (TYPE=datanode, PORT=15433); 
select pgxc_pool_reload();'
/var/lib/dpkg/info/postgres-xc.postinst: line 144: sudo: command not found
dpkg: error processing postgres-xc (--configure):
 subprocess installed post-installation script returned error exit status 127


Andreas



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



Bug#677741: Multiarch issues

2012-07-01 Thread Schrober
block 675797 by 675797 679671 677788
thanks

On Saturday 16 June 2012 17:51:41 you wrote:
 Package: ia32-libs
 Version: 20120616
 Severity: grave
 
 Meta bug to track the remaining issues with a multiarch ia32-libs.

Just tried to update to ia32-libs 20120616 and found following remaining 
problems:

libdb48 = 4.8.30-2 unavailable
sane-utils conflicts with sane-utils:i386
lesstif2 conflicts with lesstif2:i386



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



Bug#679749: src:ntop: maintainer address bounces

2012-07-01 Thread Ansgar Burchardt
Source: ntop
Severity: serious

The maintainer address bounces:

Mail Delivery System mailer-dae...@franck.debian.org writes:
 This message was created automatically by mail delivery software.

 A message that you sent could not be delivered to one or more of its
 recipients. This is a permanent error. The following address(es) failed:

   jor...@linuxgen.com
 retry timeout exceeded

 -- This is a copy of the message, including all the headers. --

 Return-path: d...@franck.debian.org
 Received: from dak by franck.debian.org with local (Exim 4.72)
   (envelope-from d...@franck.debian.org)
   id 1Sjmzo-0004eb-S2
   for jor...@linuxgen.com; Wed, 27 Jun 2012 07:49:04 +
 Message-Id: e1sjmzo-0004eb...@franck.debian.org
 To: jor...@linuxgen.com
 From: Debian FTP Masters ftpmas...@ftp-master.debian.org
 Subject: Processing of ntop_4.99.3+ndpi5517+dfsg1-1_amd64.changes
 Date: Wed, 27 Jun 2012 07:49:04 +
 X-Debian: DAK
 X-DAK: DAK
 X-Debian-Package: ntop
 Sender: Archive Administrator d...@franck.debian.org

 ntop_4.99.3+ndpi5517+dfsg1-1_amd64.changes uploaded successfully to localhost
 along with the files:
   ntop_4.99.3+ndpi5517+dfsg1-1.dsc
   ntop_4.99.3+ndpi5517+dfsg1.orig.tar.gz
   ntop_4.99.3+ndpi5517+dfsg1-1.debian.tar.gz
   ntop_4.99.3+ndpi5517+dfsg1-1_amd64.deb
   ntop-dbg_4.99.3+ndpi5517+dfsg1-1_amd64.deb
   ntop-data_4.99.3+ndpi5517+dfsg1-1_all.deb

 Greetings,

   Your Debian queue daemon (running on host franck.debian.org)



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



Processed: block

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unblock 675797 by 679671 677788
Bug #675797 [sane-utils] sane-utils: should be Multi-Arch: foreign
675797 was not blocked by any bugs.
675797 was blocking: 677741
Removed blocking bug(s) of 675797: 677788 and 679671
 block 677741 by 675797 679671 677788
Bug #677741 [ia32-libs] Multiarch issues
677741 was blocked by: 677735 651024 675797 663040 651475 677733
677741 was not blocking any bugs.
Added blocking bug(s) of 677741: 677788 and 679671
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
675797: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=675797
677741: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677741
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#575339: marked as done (pyscrabble-server: broken in lenny due to no python 2.5 zodb support)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 Jul 2012 12:20:54 +0200
with message-id 201207011221.20...@proffe.kibibyte.se
and subject line Closing outdated bug
has caused the Debian Bug report #575339,
regarding pyscrabble-server: broken in lenny due to no python 2.5 zodb support
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.)


-- 
575339: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=575339
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: pyscrabble-server
Version: 1.6.2-3
Severity: important

In lenny, python2.5 is the default. However, the only python-zodb
package is for python2.4. Since pyscrabble-server uses python2.5 and
requires ZODB, it simply fails to start:

Traceback (most recent call last):
  File ./pyscrabble-server, line 99, in module
x.startConsole()
  File ./pyscrabble-server, line 33, in startConsole
from pyscrabble.net.server import ScrabbleServerFactory
  File /usr/lib/python2.5/site-packages/pyscrabble/net/server.py, line
10, in module
from pyscrabble import db
  File /usr/lib/python2.5/site-packages/pyscrabble/db.py, line 2, in
module
from ZODB import FileStorage, DB as _DB
ImportError: No module named ZODB

Even after installing python2.4 and changing the shebang in
/usr/games/pyscrabble-server to use python2.4 (and NAME=python in
/etc/init.d/pyscrabble-server), it still fails to start:

Traceback (most recent call last):
  File ./pyscrabble-server, line 7, in ?
from pyscrabble import constants
ImportError: No module named pyscrabble

For the pyscrabble module to be usable in python2.4, it needs to be
added to /usr/lib/python2.4/site-packages:

# ln -s /usr/lib/python2.5/site-packages/pyscrabble \
  /usr/lib/python2.4/site-packages/

That will allow pyscrabble-server to use python2.4 and python2.4-zodb on
lenny.

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

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

Versions of packages pyscrabble-server depends on:
ii  adduser 3.110add and remove users and groups
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  pyscrabble-common   1.6.2-3  a multiplayer scrabble implementat
ii  python  2.5.2-3  An interactive high-level object-o
ii  python-central  0.6.8register and build utility for Pyt
ii  python-nevow0.9.31-3 Web application templating system 
ii  python2.4-zodb [python-zodb 1:3.6.0-2+b1 set of tools for using the Zope Ob

pyscrabble-server recommends no packages.

Versions of packages pyscrabble-server suggests:
pn  pyscrabblenone (no description available)

-- no debconf information


---End Message---
---BeginMessage---
Since I never got around to fixing this bug in Lenny, I'm closing it anyway.

-- 
Magnus Holmgrenholmg...@debian.org
Debian Developer 


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


Bug#679671: ia32-libs-i386: depends on removed package libdb4.8

2012-07-01 Thread Sven Joachim
Am 01.07.2012 um 11:13 schrieb Goswin von Brederlow:

 Sven Joachim svenj...@gmx.de writes:

 Package: ia32-libs-i386
 Version: 20120616
 Severity: serious

 Your package depends on libdb4.8 which is no longer available in
 unstable.

 It is still in wheezy.

Not anymore.

 I assume it is going to be removed there as well?

It was removed yesterday when libdb4.8 4.8.30-12 migrated.

Cheers,
   Sven



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



Bug#679671: [Pkg-ia32-libs-maintainers] Bug#679671: ia32-libs-i386: depends on removed package libdb4.8

2012-07-01 Thread Adam D. Barratt
On Sun, 2012-07-01 at 11:13 +0200, Goswin von Brederlow wrote:
 Sven Joachim svenj...@gmx.de writes:
  Your package depends on libdb4.8 which is no longer available in
  unstable.
 
 It is still in wheezy.

No, it isn't (and wasn't when you mailed).

 I assume it is going to be removed there as well?

It was removed in last night's britney run.

 Dear Release Team,
 
 as per http://release.debian.org/wheezy/freeze_policy.html I'm CCing you
 on this bug (#679671) to ask for a freeze exception.
 
 ==
 diff -Nru ia32-libs-20120616/debian/control ia32-libs-20120701/debian/control
 --- ia32-libs-20120616/debian/control   2012-06-16 21:30:00.0 +0200
 +++ ia32-libs-20120701/debian/control   2012-07-01 10:54:26.0 +0200
 @@ -31,7 +31,7 @@
   libavahi-common3 (= 0.6.27-2+squeeze1), libbsd0 (= 0.2.0-1),
   libcap2 (= 1:2.19-3),
   libcomerr2 (= 1.41.12-4stable1), libcups2 (= 1.4.4-7+squeeze1),
 - libcurl3 (= 7.21.0-2), libdb4.8 (= 4.8.30-2),
 + libcurl3 (= 7.21.0-2),
   libdbus-1-3 (= 1.2.24-4+squeeze1), libdirectfb-1.2-9 (= 1.2.10.0-4),
   libdrm-intel1 (= 2.4.21-1~squeeze3), libdrm-radeon1 (= 2.4.21-1~squeeze3),
   libdrm2 (= 2.4.21-1~squeeze3), libedit2 (= 2.11-20080614-2),
 ==

Is that the only (non-changelog) change in the package?  If so then feel
free to get it uploaded and then come back to us with an unblock
request.  Note that in any case the package won't migrate with #677741
in the way.

Looking at the package currently in unstable, I do have to ask what
happened to:

 ia32-libs-20120616/debian/copyright|13164 --

Regards,

Adam




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



Bug#679756: migemo-el: fails to upgrade from 'squeeze' - trying to overwrite /usr/share/emacs/site-lisp/migemo/migemo.el

2012-07-01 Thread Andreas Beckmann
Package: migemo-el
Version: 20110227-5
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'squeeze'.
It installed fine in 'squeeze', then the upgrade to 'sid' fails
because it tries to overwrite files that are owned by other packages
without declaring a Breaks/Replaces relation.

See policy 7.6 at
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

This problem is exposed during the upgrade of the 'migemo'
package, not by upgrading only the buggy package itself.
In order to have piuparts automatically track this problem, I'll mark
this bug as Affects/Found in the exposing package(s), too.

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

  Selecting previously unselected package migemo-el.
  Unpacking migemo-el (from .../migemo-el_20110227-5_all.deb) ...
  dpkg: error processing /var/cache/apt/archives/migemo-el_20110227-5_all.deb 
(--unpack):
   trying to overwrite '/usr/share/emacs/site-lisp/migemo/migemo.el', which is 
also in package migemo 0.40-10
  configured to not write apport reports
  Preparing to replace migemo 0.40-10 (using .../migemo_20110227-5_all.deb) ...
  Remove migemo for emacs
  Unpacking replacement migemo ...


cheers,

Andreas


migemo_20110227-5.log.gz
Description: GNU Zip compressed data


Bug#679757: boinc-app-seti: FTBFS: E: Unable to locate package libboinc-app-dev

2012-07-01 Thread Christoph Egger
Package: src:boinc-app-seti
Version: 6.12~svn1306-1
Severity: serious
Tags: sid wheezy
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the buildds:

E: Unable to locate package libboinc-app-dev

Regards

Christoph

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



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



Bug#549681: bug#549681: mkvmlinuz: use xz to compress vmlinuz-boxed initrd

2012-07-01 Thread Touko Korpela
On Sat, Jun 30, 2012 at 11:01:47PM -0400, Milan Kupcevic wrote:
 The attached patch brings vmlinuz from about 13MB to about 9.5MB, which
 is well under the 12MB limit. Downside is that xz compressing is
 noticeably slower than currently used gzip, but decompressing speed
 difference is not noticeable.
 
 I've tested it on Pegasos II machine, it boots really fast. Updated
 mkvmlinuz package is waiting on mentors.debian.net for a willing sponsor
 for upload.
 ...
 +if test $post_2_6_38; then
 +  XZ=xz --check=crc32 -8
 +else
 +  XZ=false
 +fi

From xz(1) manual page (you can ignore DecMem):
 Preset   DictSize   CompCPU   CompMem   DecMem
   -0 256 KiB   03 MiB1 MiB
   -1   1 MiB   19 MiB2 MiB
   -2   2 MiB   2   17 MiB3 MiB
   -3   4 MiB   3   32 MiB5 MiB
   -4   4 MiB   4   48 MiB5 MiB
   -5   8 MiB   5   94 MiB9 MiB
   -6   8 MiB   6   94 MiB9 MiB
   -7  16 MiB   6  186 MiB   17 MiB
   -8  32 MiB   6  370 MiB   33 MiB
   -9  64 MiB   6  674 MiB   65 MiB

Better to use default setting -6 that has lower memory requirement.



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



Bug#675161: Still present in 1:1.0.1-1

2012-07-01 Thread Sven Joachim
On 2012-07-01 11:17 +0200, Tollef Fog Heen wrote:

 found 675161 1:1.0.1-1
 thanks

 I'm still seeing this bug with:

 ii  xserver-xorg-video-nouve 1:1.0.1-1X.Org X server -- 
 Nouveau display driver

 it seems like it happens less frequently than with older versions.

 To the extent it matters, my gfx card is

 01:00.0 VGA compatible controller: NVIDIA Corporation GF116 [GeForce GTX 550 
 Ti] (rev a1)

Please file your own bug for that, and mark it as forwarded to
https://bugs.freedesktop.org/show_bug.cgi?id=51144.  The current one
exists for people who are unable to find #666468 and its two dozen
duplicates.

Cheers,
   Sven



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



Bug#674303: marked as done (gitmagic: FTBFS: ! LaTeX Error: Encoding scheme `T2A' unknown.)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 11:17:33 +
with message-id e1sli9l-f9...@franck.debian.org
and subject line Bug#674303: fixed in gitmagic 20120520-2
has caused the Debian Bug report #674303,
regarding gitmagic: FTBFS: ! LaTeX Error: Encoding scheme `T2A' unknown.
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.)


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

Hi,

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

Relevant part:
 make[2]: Entering directory `/«PKGBUILDDIR»'
 # Concatenate the text files and feed to AsciiDoc.
 # If a file has not yet been translated for the target language,
 # then substitute the English version.
 # Kludge to support any translation of Preface.
 echo '[specialsections]'  conf ; \
   if [ en != ru ]; then \
   sed -n '/^== .* ==$/p' en/preface.txt | sed 's/^== \(.*\) 
 ==$/^\1$=preface/'  conf ; \
   else \
   cp lang-ru.conf conf ; fi ; \
   ( for FILE in en/preface.txt en/intro.txt en/basic.txt en/clone.txt 
 en/branch.txt en/history.txt en/multiplayer.txt en/grandmaster.txt 
 en/secrets.txt en/drawbacks.txt en/translate.txt ; do if [ -f $FILE ]; then 
 cat $FILE; else \
   cat en/$(basename $FILE); fi; echo ; done ) | \
   asciidoc -a lang=en -d book -b docbook -f conf -  book-en.xml
 xmlto -m custom-html.xsl -o book-en html book-en.xml
 Writing pr01.html for preface(_preface)
 Writing ch01.html for chapter(_introduction)
 Writing ch02.html for chapter(_basic_tricks)
 Writing ch03.html for chapter(_cloning_around)
 Writing ch04.html for chapter(_branch_wizardry)
 Writing ch05.html for chapter(_lessons_of_history)
 Writing ch06.html for chapter(_multiplayer_git)
 Writing ch07.html for chapter(_git_grandmastery)
 Writing ch08.html for chapter(_secrets_revealed)
 Writing apa.html for appendix(_git_shortcomings)
 Writing apb.html for appendix(_translating_this_guide)
 Writing index.html for book
 sed -i'' -e 's/xmlns:fo[^ ]*//g' book-en/*.html
 sed -i -e 's|a name=_|a id=|g' -e 's|8230_and_then_some|and_then_some|g' 
 -e 's|#_|#|g' book-en/*.html
 ls book-en/*.html | xargs -n 1 tidy -utf8 -m -i -q
 ./makeover en
 sed -i -e 's|book\.html|../gitmagic.html|g' -e 
 's|book\.pdf|../gitmagic.pdf|g' book-en/index.html
 xmlto -m custom-nochunks.xsl html-nochunks book-en.xml
 tidy -utf8 -imq book-en.html
 line 2 column 9377 - Warning: a cannot copy name attribute to id
 line 24 column 125 - Warning: a cannot copy name attribute to id
 line 28 column 268 - Warning: a cannot copy name attribute to id
 line 34 column 130 - Warning: a cannot copy name attribute to id
 line 34 column 1030 - Warning: a cannot copy name attribute to id
 line 34 column 2080 - Warning: a cannot copy name attribute to id
 line 34 column 3648 - Warning: a cannot copy name attribute to id
 line 34 column 5814 - Warning: a cannot copy name attribute to id
 line 36 column 468 - Warning: a cannot copy name attribute to id
 line 36 column 1562 - Warning: a cannot copy name attribute to id
 line 38 column 207 - Warning: a cannot copy name attribute to id
 line 41 column 383 - Warning: a cannot copy name attribute to id
 line 42 column 551 - Warning: a cannot copy name attribute to id
 line 61 column 223 - Warning: a cannot copy name attribute to id
 line 63 column 226 - Warning: a cannot copy name attribute to id
 line 64 column 209 - Warning: a cannot copy name attribute to id
 line 64 column 780 - Warning: a cannot copy name attribute to id
 line 64 column 1182 - Warning: a cannot copy name attribute to id
 line 66 column 906 - Warning: a cannot copy name attribute to id
 line 67 column 636 - Warning: a cannot copy name attribute to id
 line 73 column 324 - Warning: a cannot copy name attribute to id
 line 73 column 2065 - Warning: a cannot copy name attribute to id
 line 74 column 448 - Warning: a cannot copy name attribute to id
 line 84 column 134 - Warning: a cannot copy name attribute to id
 line 88 column 158 - Warning: a cannot copy name attribute to id
 line 93 column 351 - Warning: a cannot copy name attribute to id
 line 99 column 427 - Warning: a cannot copy name attribute to id
 line 99 column 1001 - Warning: a cannot copy name attribute to id
 line 99 column 1945 - Warning: a cannot copy name attribute to id
 line 102 column 239 - Warning: a cannot copy name attribute to id
 line 106 

Bug#679671: [Pkg-ia32-libs-maintainers] Bug#679671: ia32-libs-i386: depends on removed package libdb4.8

2012-07-01 Thread Adam D. Barratt
[Dropped pkg-db-devel from Cc because it apparently doesn't accept posts
from non-subscribers]

On Sun, 2012-07-01 at 11:56 +0100, Adam D. Barratt wrote:
 Looking at the package currently in unstable, I do have to ask what
 happened to:
 
  ia32-libs-20120616/debian/copyright|13164 --

Answering my own question, it's presumably a side-effect of no longer
embedding loads of other packages, so not needing to ship their
copyright information.

Regards,

Adam




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



Bug#679714: postgres-xc: fails to install: missing dependency on postgresql server?

2012-07-01 Thread Vladimir Stavrinov
On Sun, Jul 01, 2012 at 11:57:15AM +0200, Andreas Beckmann wrote:

 One step further. So installation fails if policy-rc.d is configured to 
 forbid starting of services ...

It should be discussed what default setting should be. But in any case
it should be taken in account by postinst script.

 + sudo su - postgres-xc -c 'psql postgres -c CREATE NODE dn1 WITH
 (TYPE=datanode, PORT=15432); CREATE NODE dn2 WITH (TYPE=datanode,
 PORT=15433); select pgxc_pool_reload();'
 /var/lib/dpkg/info/postgres-xc.postinst: line 144: sudo: command not
 found

This certainly should be fixed either with dependency or by replacing sudo
with su.

I think postinst script should be rewritten in some other aspects too. So do
not hurry up to take it production and be ready to reinstall it from
scratch.

Thanks You for Your testing.


***
###  Vladimir Stavrinov
###  vstavri...@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#669099: marked as done (FTBFS in up-to-date unstable; test failure)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 11:32:26 +
with message-id e1slioa-0001qu...@franck.debian.org
and subject line Bug#669099: fixed in ggcov 0.8.4-2
has caused the Debian Bug report #669099,
regarding FTBFS in up-to-date unstable; test failure
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.)


-- 
669099: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669099
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: ggcov
Version: 0.8.4-1
Severity: serious
Tags: sid
Justification: fails to build from source (but built successfully in the past)

Hi,

during the testing of possible transition to db5.3, I have found your
package FTBFS in test suite:

Here is the relevant part of build log:

Running tests
hostname: howl
date: 20120417T092112
uname -s: Linux
uname -m: x86_64
uname -r: 2.6.32-5-amd64
head -1 /etc/*-release: 
which gcc: /usr/bin/gcc
gcc --version: gcc (Debian 4.6.3-3) 4.6.3
which g++: /usr/bin/g++
g++ --version: g++ (Debian 4.6.3-3) 4.6.3
PASS: (test001) simple C line coverage test
PASS: (test002) simple C test with early exit()s not from main()
PASS: (test004) simple C++ line coverage test
PASS: (test005) nonlocal flow control using C++ exceptions
PASS: (test006) accumulation of counts in fork()ed children
PASS: (test007) nonlocal flow control using C setjmp/longjmp
PASS: (test008) multiple blocks per line using C for() loop
PASS: (test009) assignment of locations to C++ inline functions defined in 
headers
PASS: (test010) inclusion of .c source files into other .c files
PASS: (test011) suppression of lines by ifdef
PASS: (test013) C with early exit()s from a nonfinal block
PASS: (test014) code in C shared libraries linked by absolute searchable names
PASS: (test015) callgraph diagram layout
PASS: (test016) suppression of lines by magical comment
PASS: (test020) unit test for filename.c
PASS: (test021) unit test for libpopt / fakepopt.c
PASS: (test022) unit test for class php_serializer
PASS: (test023) estring unit test
PASS: (test027) hashtable unit test
FAIL: (test029) foo.c.tggcov.ex differs from foo.c.tggcov.filt
FAIL: (test029) bar.c.tggcov.ex differs from bar.c.tggcov.filt
PASS: (test030) compiledir with yacc
Total: 20/21 tests passed
FAIL: runtest
===
1 of 1 tests failed
===
make[3]: *** [check-TESTS] Error 1
make[3]: Leaving directory `/tmp/buildd/ggcov-0.8.4/test'
make[2]: *** [check-am] Error 2
make[2]: Leaving directory `/tmp/buildd/ggcov-0.8.4/test'
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory `/tmp/buildd/ggcov-0.8.4'
dh_auto_test: make -j1 check returned exit code 2
make: *** [build] Error 29
dpkg-buildpackage: error: debian/rules build gave error exit status 2

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (300, 'unstable'), 
(200, 'experimental')
Architecture: amd64 (x86_64)

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


---End Message---
---BeginMessage---
Source: ggcov
Source-Version: 0.8.4-2

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

ggcov_0.8.4-2.debian.tar.gz
  to main/g/ggcov/ggcov_0.8.4-2.debian.tar.gz
ggcov_0.8.4-2.dsc
  to main/g/ggcov/ggcov_0.8.4-2.dsc
ggcov_0.8.4-2_i386.deb
  to main/g/ggcov/ggcov_0.8.4-2_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 669...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Alastair McKinstry mckins...@debian.org (supplier of updated ggcov 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: Sat, 30 Jun 2012 11:14:12 +0100
Source: ggcov
Binary: ggcov
Architecture: source i386
Version: 0.8.4-2
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry mckins...@debian.org
Changed-By: Alastair McKinstry mckins...@debian.org
Description: 
 ggcov  - Graphical tool for displaying gcov test coverage data
Closes: 669099
Changes: 
 ggcov (0.8.4-2) unstable; urgency=low
 .
   * Disable tests for amd64, as per Ubuntu.  Closes: #669099.
   * Depend on 

Bug#679759: phantomjs: FTBFS[kfreebsd]: The build script does not currently recognize all platforms supported by Qt.

2012-07-01 Thread Christoph Egger
Package: src:phantomjs
Version: 1.6.0-1
Severity: serious
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-...@lists.debian.org
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the kfreebsd-* buildds:

make[1]: Entering directory 
`/build/buildd-phantomjs_1.6.0-1-kfreebsd-amd64-i5dt1L/phantomjs-1.6.0'
(cd src/qt  ./preconfig.sh --qt-config -no-rpath -system-zlib 
-system-libjpeg -system-libpng -no-sql-sqlite  cd ../..)

   The build script does not currently recognize all
   platforms supported by Qt.
   Rerun this script with a -platform option listed to
   set the system/compiler combination you use.


make[2]: *** No targets specified and no makefile found.  Stop.

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=phantomjsarch=kfreebsd-amd64ver=1.6.0-1stamp=1341092472

Regards

Christoph

If you have further questions please mail debian-...@lists.debian.org

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



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



Bug#679760: phantomjs: FTBFS: /usr/bin/ld: cannot find -ljpeg

2012-07-01 Thread Christoph Egger
Package: src:phantomjs
Version: 1.6.0-1
Severity: serious
Tags: sid wheezy
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the buildds:

g++ -Wl,-O1 -o ../bin/phantomjs phantom.o callback.o webpage.o webserver.o 
main.o csconverter.o utils.o networkaccessmanager.o cookiejar.o filesystem.o 
system.o env.o terminal.o encoding.o config.o repl.o replcompletable.o 
gif_err.o gifalloc.o egif_lib.o gif_hash.o quantize.o gifwriter.o mongoose.o 
linenoise.o utf8.o minidump_file_writer.o convert_UTF.o md5.o 
string_conversion.o crash_generation_client.o exception_handler.o log.o 
linux_dumper.o linux_ptrace_dumper.o minidump_writer.o file_id.o guid_creator.o 
memory_mapped_file.o safe_readlink.o moc_phantom.o moc_callback.o moc_webpage.o 
moc_webserver.o moc_networkaccessmanager.o moc_filesystem.o moc_system.o 
moc_env.o moc_config.o moc_repl.o moc_replcompletable.o qrc_phantomjs.o
-L/build/buildd-phantomjs_1.6.0-1-armhf-abzIVl/phantomjs-1.6.0/src/qt/lib -ldl 
-lQtWebKit -lQtGui 
-L/build/buildd-phantomjs_1.6.0-1-armhf-abzIVl/phantomjs-1.6.0/src/qt/lib 
-ljpeg -lQtNetwork -lQtCore -lpthread 
/usr/bin/ld: cannot find -ljpeg
collect2: ld returned 1 exit status
make[3]: *** [../bin/phantomjs] Error 1

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=phantomjsarch=armelver=1.6.0-1stamp=1341120389

Regards

Christoph

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



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



Bug#679761: olsrd: FTBFS[kfreebsd]: fatal error: linux/types.h: No such file or directory

2012-07-01 Thread Christoph Egger
Package: src:olsrd
Version: 0.6.3-3
Severity: serious
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-...@lists.debian.org
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the kfreebsd-* buildds:

[CC] src/lq_plugin_default_float.c
[CC] src/lq_plugin_default_fpm.c
[CC] src/main.c
src/main.c:65:25: fatal error: linux/types.h: No such file or directory
compilation terminated.
make[2]: *** [src/main.o] Error 1
make[2]: Leaving directory 
`/build/buildd-olsrd_0.6.3-3-kfreebsd-amd64-4pNbb2/olsrd-0.6.3'
make[1]: *** [override_dh_auto_build] Error 2
make[1]: Leaving directory 
`/build/buildd-olsrd_0.6.3-3-kfreebsd-amd64-4pNbb2/olsrd-0.6.3'
make: *** [build-arch] Error 2

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=olsrdarch=kfreebsd-amd64ver=0.6.3-3stamp=1341076534

Regards

Christoph

If you have further questions please mail debian-...@lists.debian.org

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



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



Bug#679762: dolfin: FTBFS: Armadillo could not be found. Be sure to set ARMADILLO_DIR. (missing: ARMADILLO_TEST_RUNS)

2012-07-01 Thread Christoph Egger
Package: src:dolfin
Version: 1.0.0-7
Severity: serious
Tags: sid wheezy
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the buildds:

-- Performing Test ARMADILLO_BLAS_TEST_RUNS - Failed
-- Performing Test ARMADILLO_GFORTRAN_TEST_RUNS
-- Performing Test ARMADILLO_GFORTRAN_TEST_RUNS - Failed
CMake Error at 
/usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:97 (MESSAGE):
  Armadillo could not be found.  Be sure to set ARMADILLO_DIR.  (missing:
  ARMADILLO_TEST_RUNS)
Call Stack (most recent call first):
  /usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake:288 
(_FPHSA_FAILURE_MESSAGE)
  cmake/modules/FindArmadillo.cmake:178 (find_package_handle_standard_args)
  CMakeLists.txt:197 (find_package)


-- Configuring incomplete, errors occurred!
make: *** [obj-i486-linux-gnu/CMakeCache.txt] Error 1

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=dolfinarch=kfreebsd-amd64ver=1.0.0-7stamp=1340963024

Regards

Christoph

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



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



Processed: affects 679756, found 656348 in 0.5.4

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 affects 679756 + migemo
Bug #679756 [migemo-el] migemo-el: fails to upgrade from 'squeeze' - trying to 
overwrite /usr/share/emacs/site-lisp/migemo/migemo.el
Added indication that 679756 affects migemo
 found 656348 0.5.4
Bug #656348 {Done: Jonathan Wiltshire j...@debian.org} [iptables-persistent] 
iptables-persistent: fails to install in chroot
Marked as found in versions iptables-persistent/0.5.4.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
656348: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656348
679756: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679756
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: one more instance of #666468

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 679120 - upstream
Bug #679120 [libdrm-nouveau1a] libdrm-nouveau1a: text corruption using nouveau 
(not with video, images or 3d)
Removed tag(s) upstream.
 reassign 679120 xorg-server
Bug #679120 [libdrm-nouveau1a] libdrm-nouveau1a: text corruption using nouveau 
(not with video, images or 3d)
Bug reassigned from package 'libdrm-nouveau1a' to 'xorg-server'.
No longer marked as found in versions libdrm/2.4.33-1.
Ignoring request to alter fixed versions of bug #679120 to the same values 
previously set
 reassign 679120 xorg-server
Bug #679120 [xorg-server] libdrm-nouveau1a: text corruption using nouveau (not 
with video, images or 3d)
Ignoring request to reassign bug #679120 to the same package
 forcemerge 666468 679120
Bug #666468 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666538 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666564 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666565 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #95 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666922 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666998 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667033 [xorg-server] vim-gtk: Invisible text
Bug #667048 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667073 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667445 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667520 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667809 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #668182 [xorg-server] [gnome-terminal] incorrect partial redraw in mc
Bug #668343 [xorg-server] xserver-xorg-video-nouveau: Character rendering 
failures on GeForce 8600M GT with dual screen
Bug #668993 [xorg-server] libgdk-pixbuf2.0-0: Font rendering corruption?
Bug #672260 [xorg-server] libxrender1:amd64: transient graphical corruption on 
many windows after upgrade
Bug #674575 [xorg-server] xorg eats CPU time
Bug #674783 [xorg-server] xserver-xorg-video-nouveau: Since early 3.x kernel X 
became very slooow
Bug #677183 [xorg-server] xorg: Video corruption
Bug #679120 [xorg-server] libdrm-nouveau1a: text corruption using nouveau (not 
with video, images or 3d)
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=47266'.
Severity set to 'grave' from 'important'
667040 was blocked by: 674783 666565 666564 667445 668993 666538 667809 677183 
666998 666922 668343 666468 95 667520 667048 668190 672260 667073 667033 
669629 668172 674575 668182
667040 was not blocking any bugs.
Added blocking bug(s) of 667040: 679120
Added indication that 679120 affects 
xserver-xorg-video-radeon,xserver-xorg-video-nouveau,libcairo2,iceweasel,libreoffice
There is no source info for the package 'xorg-server' at version 
'2:1.11.2.901-1' with architecture ''
Unable to make a source version for version '2:1.11.2.901-1'
There is no source info for the package 'xorg-server' at version '2:1.11.4-1' 
with architecture ''
Unable to make a source version for version '2:1.11.4-1'
Marked as found in versions 2:1.11.2.901-1 and 2:1.11.4-1.
Added tag(s) unreproducible.
Bug #666538 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666564 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666565 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #95 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666922 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #666998 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667033 [xorg-server] vim-gtk: Invisible text
Bug #667048 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667073 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667445 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667520 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #667809 [xorg-server] xorg-server: major text display problems in several 
apps
Bug #668182 [xorg-server] [gnome-terminal] incorrect partial redraw in mc
Bug #668343 [xorg-server] xserver-xorg-video-nouveau: Character rendering 
failures on GeForce 8600M GT with dual screen
Bug #668993 [xorg-server] libgdk-pixbuf2.0-0: Font rendering corruption?
Bug #672260 [xorg-server] libxrender1:amd64: transient graphical corruption on 
many windows after upgrade
Bug #674575 [xorg-server] xorg eats CPU time
Bug #674783 [xorg-server] xserver-xorg-video-nouveau: Since early 3.x kernel X 
became very slooow
Bug #677183 [xorg-server] xorg: Video corruption
Merged 666468 666538 

Bug#676081: rrdtool: diff for NMU version 1.4.7-1.1

2012-07-01 Thread Jonathan Wiltshire
tags 676081 + pending
thanks

Dear maintainer,

I've prepared an NMU for rrdtool (versioned as 1.4.7-1.1) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51

directhex i have six years of solaris sysadmin experience, from
8-10. i am well qualified to say it is made from bonghits
layered on top of bonghits
diff -u rrdtool-1.4.7/debian/changelog rrdtool-1.4.7/debian/changelog
--- rrdtool-1.4.7/debian/changelog
+++ rrdtool-1.4.7/debian/changelog
@@ -1,3 +1,11 @@
+rrdtool (1.4.7-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add ruby_bindings_format_string.patch to fix FTBFS
+(Closes: #676081)
+
+ -- Jonathan Wiltshire j...@debian.org  Sun, 01 Jul 2012 12:37:47 +0100
+
 rrdtool (1.4.7-1) unstable; urgency=low
 
   * [b59bb994] Merge commit 'upstream/1.4.7'
diff -u rrdtool-1.4.7/debian/patches/series rrdtool-1.4.7/debian/patches/series
--- rrdtool-1.4.7/debian/patches/series
+++ rrdtool-1.4.7/debian/patches/series
@@ -7,0 +8 @@
+ruby_bindings_format_string.patch
only in patch2:
unchanged:
--- rrdtool-1.4.7.orig/debian/patches/ruby_bindings_format_string.patch
+++ rrdtool-1.4.7/debian/patches/ruby_bindings_format_string.patch
@@ -0,0 +1,28 @@
+Subject: fix format string in Ruby binding
+Author: Johannes Brandstätter jbrandstaet...@gmail.com
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676081
+Forwarded: no
+Last-Update: 2012-07-01
+
+--- rrdtool-1.4.7.orig/bindings/ruby/main.c
 rrdtool-1.4.7/bindings/ruby/main.c
+@@ -27,7 +27,7 @@
+ 
+ #define RRD_CHECK_ERROR  \
+ if (rrd_test_error()) \
+-  rb_raise(rb_eRRDError, rrd_get_error()); \
++  rb_raise(rb_eRRDError, %s, rrd_get_error()); \
+ rrd_clear_error();
+ 
+ string_arr string_arr_new(
+@@ -56,8 +56,8 @@
+ break;
+ default:
+ rb_raise(rb_eTypeError,
+- invalid argument - %s, expected T_STRING or T_FIXNUM on index %ld,
+- (long)rb_class2name(CLASS_OF(v)), i);
++ invalid argument - %s, expected T_STRING or T_FIXNUM on index %d,
++ rb_class2name(CLASS_OF(v)), i);
+ break;
+ }
+ }


signature.asc
Description: Digital signature


Processed: rrdtool: diff for NMU version 1.4.7-1.1

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 676081 + pending
Bug #676081 [src:rrdtool] rrdtool: FTBFS: main.c:102:5: error: format not a 
string literal and no format arguments [-Werror=format-security]
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
676081: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676081
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#679464: marked as done (Missing copyright information)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 11:48:03 +
with message-id e1slidh-0002ad...@franck.debian.org
and subject line Bug#679464: fixed in isl 0.10-2
has caused the Debian Bug report #679464,
regarding Missing copyright information
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.)


-- 
679464: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679464
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: isl
Version: 0.08-1
Severity: serious

debian/copyright file is incomplete:

 - interface/python.cc, interface/extract_interface.cc: 2-clause BSD
 - isl_qsort.c: Copied from glibc, LGPL-2.1 stands, but not the copyright
holders
 - doc/chicago.bst:
   % Copyright (C) 1985, all rights reserved.
   % Copying of this file is authorized only if either
   % (1) you make absolutely no changes to your copy, including name, or
   % (2) if you do make changes, you name it something other than 'newapa.bst'.
   % There are undoubtably bugs in this style.  If you make bug fixes,
   % improvements, etc.  please let me know.  My e-mail address is:
   %spen...@cgrg.ohio.state.edu or 71160.3...@compuserve.com
This is, as far as I see, DFSG free, and valid, as the file was
renamed. But nevertheless, this is definitely not LGPL-2.1.
 - isl_coalesce.c (and a couple of other files) has
 Copyright 2012  Ecole Normale Superieure



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

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


---End Message---
---BeginMessage---
Source: isl
Source-Version: 0.10-2

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

isl_0.10-2.debian.tar.gz
  to main/i/isl/isl_0.10-2.debian.tar.gz
isl_0.10-2.dsc
  to main/i/isl/isl_0.10-2.dsc
libisl-dbg_0.10-2_amd64.deb
  to main/i/isl/libisl-dbg_0.10-2_amd64.deb
libisl-dev_0.10-2_amd64.deb
  to main/i/isl/libisl-dev_0.10-2_amd64.deb
libisl10_0.10-2_amd64.deb
  to main/i/isl/libisl10_0.10-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 679...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose d...@debian.org (supplier of updated isl 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: Sun, 01 Jul 2012 12:45:46 +0200
Source: isl
Binary: libisl-dev libisl-dbg libisl10
Architecture: source amd64
Version: 0.10-2
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 libisl-dbg - manipulating sets and relations of integer points bounded by line
 libisl-dev - manipulating sets and relations of integer points bounded by line
 libisl10   - manipulating sets and relations of integer points bounded by line
Closes: 658841 679464
Changes: 
 isl (0.10-2) unstable; urgency=low
 .
   * Complete copyright information. Closes: #679464.
   * Note about stdint.h generator differs among architectures
 and breaks multiarch (Gregor Jasny). Closes: #658841.
Checksums-Sha1: 
 b94858e77a3aa827556e8cff38fe03b814c6ad0b 1209 isl_0.10-2.dsc
 9af796a1a8b0bdd2d36d209df0d74a659052ab75 3638 isl_0.10-2.debian.tar.gz
 3e1eaf0ab1b8580fc5373bd90080928109797fcb 528828 libisl-dev_0.10-2_amd64.deb
 6ab8f19893322bc23a70447ff683e135eb565b8b 1034750 libisl-dbg_0.10-2_amd64.deb
 809b80f98545deea2d51de51ed95a0e000f67bef 436528 libisl10_0.10-2_amd64.deb
Checksums-Sha256: 
 ade529225bebd31bf1c5bedbf55af268bc457a2eaa097e362fa22263a782b0a4 1209 
isl_0.10-2.dsc
 ae8c7ac6b58fe556f9837e63b0ce6dd20e00668aa418e56f51a5323d3528a4fa 3638 
isl_0.10-2.debian.tar.gz
 a7fa4eb23bfd4407389c6bece6087cfd5164d9c72928a7aa5bf3b2d26bc81925 528828 
libisl-dev_0.10-2_amd64.deb
 859af4e32c5071779b35159a6da41b51e7efc9a6132c23f5259a43ef589ff813 1034750 
libisl-dbg_0.10-2_amd64.deb
 3a69ca6522399a2df1bf51068cbcf64b71b5a209b5a7e7f10709ed0f5d17fa02 436528 
libisl10_0.10-2_amd64.deb
Files: 
 0240b7f704caaee5958a69f500be822f 1209 libs optional isl_0.10-2.dsc
 

Bug#673370: M$ handshake failure

2012-07-01 Thread Jan Huijsmans
On Sat, Jun 30, 2012 at 11:55:35PM +0200, Boris Petersen wrote:
 On 05/18/2012 02:27 PM, Jan Huijsmans wrote:
  After the debug run I changes msn status in ~/.centerim/config from o to _
  and centerim starts without a problem. The msn connection has changed 
  somehow.
  (I expect M$ to be the problem)
 since this is a release critical bug i guess it can be closed right?

It isn't solved, so I wouldn't release. I jyst updated the computer, tested 
again
and the error persists, when logging into msn, it crashes.

BTW I downgraded to .1 and the problem exists there as well.

Greetings,

Jan Huijsmans



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



Bug#678023: marked as done (makehuman: dependency on python2.7 + libpython2.6)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 12:03:38 +
with message-id e1slism-0003uu...@franck.debian.org
and subject line Bug#678023: fixed in makehuman 1.0.0~alpha6-4
has caused the Debian Bug report #678023,
regarding makehuman: dependency on python2.7 + libpython2.6
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.)


-- 
678023: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=678023
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: makehuman
Version: 1.0.0~alpha6-3
Severity: serious

Hi,

your package depends on both libpython2.6 and python2.7.  That seems
wrong.  Apparently the python version is hardcoded in Makefile.Linux, so
the executable loads libpython2.6.  But the postinst calls 'pycompile -p
makehuman /usr/share/makehuman -V 2.7' which means .py files are
byte-compiled for 2.7.

Cheers,
Julien


---End Message---
---BeginMessage---
Source: makehuman
Source-Version: 1.0.0~alpha6-4

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

makehuman-data_1.0.0~alpha6-4_all.deb
  to main/m/makehuman/makehuman-data_1.0.0~alpha6-4_all.deb
makehuman-doc_1.0.0~alpha6-4_all.deb
  to main/m/makehuman/makehuman-doc_1.0.0~alpha6-4_all.deb
makehuman_1.0.0~alpha6-4.debian.tar.gz
  to main/m/makehuman/makehuman_1.0.0~alpha6-4.debian.tar.gz
makehuman_1.0.0~alpha6-4.dsc
  to main/m/makehuman/makehuman_1.0.0~alpha6-4.dsc
makehuman_1.0.0~alpha6-4_amd64.deb
  to main/m/makehuman/makehuman_1.0.0~alpha6-4_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 678...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Muammar El Khatib muam...@debian.org (supplier of updated makehuman 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, 27 Jun 2012 01:30:04 +0200
Source: makehuman
Binary: makehuman makehuman-data makehuman-doc
Architecture: source amd64 all
Version: 1.0.0~alpha6-4
Distribution: unstable
Urgency: medium
Maintainer: Muammar El Khatib muam...@debian.org
Changed-By: Muammar El Khatib muam...@debian.org
Description: 
 makehuman  - Modelling of 3-Dimensional humanoid characters
 makehuman-data - Modelling of 3-Dimensional humanoid characters (application 
data)
 makehuman-doc - Modelling of 3-Dimensional humanoid characters (documentation)
Closes: 668409 678023
Changes: 
 makehuman (1.0.0~alpha6-4) unstable; urgency=medium
 .
   * Makefile.Linux file was modify to use python2.7 instead of python2.6. With
 this change it is assured a consistency between the python's version that
 is hardcoded in the makefile, and the one picked by debhelper when
 invoking pycompile. (Closes: #678023)
   * Description of the package was emphasizing the application to be open
 source, and free. This is implicit in packages accepted in the main
 section. Thus, the description has been changed to be more neutral as
 pointed out in the bug report that is being closed. Thanks to Gunnar Wolf
 for suggesting a description. (Closes: #668409)
   * Format field in debian/copyright has been updated to point to version 1.0.
Checksums-Sha1: 
 57574287e376d2267fc386870c0bb11147c2354d 1420 makehuman_1.0.0~alpha6-4.dsc
 c7361ca0ba25c9f4b487e54af3a7f0132dbe19cb 7347 
makehuman_1.0.0~alpha6-4.debian.tar.gz
 f1a9a7f262de41db85f638bea7fe56cf702e08fd 1294832 
makehuman_1.0.0~alpha6-4_amd64.deb
 20bc5e599c73441734557146b9295a04b0652fd4 56326254 
makehuman-data_1.0.0~alpha6-4_all.deb
 769679b4f36b171d76f563ddd81c65756152fb99 187390 
makehuman-doc_1.0.0~alpha6-4_all.deb
Checksums-Sha256: 
 5b6bf4914be9aa3ffb56c47e3eadadf0d76abb0fe6f60709b08192f68cd33a87 1420 
makehuman_1.0.0~alpha6-4.dsc
 413763e1f4e2dba04e6160e35dba469bb4ce246b56a27d0aca216d1fbf7ffe33 7347 
makehuman_1.0.0~alpha6-4.debian.tar.gz
 24c82120920aeb2c5b64dbe4d796dea16989aac95763be05fd3a752d1b1e2728 1294832 
makehuman_1.0.0~alpha6-4_amd64.deb
 611799f93d525d9c4d9e0d1322ab3ca940d7194c1c5444f0f8329b6822cc9d1c 56326254 
makehuman-data_1.0.0~alpha6-4_all.deb
 c3eb14efeb7b1bcbd280171d41afc5485882d435e0b32967bf2114dc9cd49352 187390 
makehuman-doc_1.0.0~alpha6-4_all.deb
Files: 
 8bbb49559809fe7c33c2a55a14db99ff 1420 graphics optional 

Bug#679736: marked as done (spandsp: test suite fails to run when built in parallel (-j))

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 12:18:31 +
with message-id e1slj6l-0004ld...@franck.debian.org
and subject line Bug#679736: fixed in spandsp 0.0.6~pre20-2
has caused the Debian Bug report #679736,
regarding spandsp: test suite fails to run when built in parallel (-j)
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.)


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

The package spandsp has failed to build on some architectures. This is due
to the test suite not intended to build in parallel.

As Upstream does not consider this a bug, the simple fix is to disable
running the tests in parallel. A patch is included in SVN.


---End Message---
---BeginMessage---
Source: spandsp
Source-Version: 0.0.6~pre20-2

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

libspandsp-dev_0.0.6~pre20-2_amd64.deb
  to main/s/spandsp/libspandsp-dev_0.0.6~pre20-2_amd64.deb
libspandsp-doc_0.0.6~pre20-2_all.deb
  to main/s/spandsp/libspandsp-doc_0.0.6~pre20-2_all.deb
libspandsp2_0.0.6~pre20-2_amd64.deb
  to main/s/spandsp/libspandsp2_0.0.6~pre20-2_amd64.deb
spandsp_0.0.6~pre20-2.debian.tar.gz
  to main/s/spandsp/spandsp_0.0.6~pre20-2.debian.tar.gz
spandsp_0.0.6~pre20-2.dsc
  to main/s/spandsp/spandsp_0.0.6~pre20-2.dsc



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 679...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Tzafrir Cohen tzaf...@debian.org (supplier of updated spandsp 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: Sun, 01 Jul 2012 12:22:19 +0300
Source: spandsp
Binary: libspandsp2 libspandsp-dev libspandsp-doc
Architecture: source amd64 all
Version: 0.0.6~pre20-2
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org
Changed-By: Tzafrir Cohen tzaf...@debian.org
Description: 
 libspandsp-dev - Telephony signal processing library - development headers
 libspandsp-doc - Documentation for the spandsp signal processing library
 libspandsp2 - Telephony signal processing library
Closes: 679736
Changes: 
 spandsp (0.0.6~pre20-2) unstable; urgency=low
 .
   * Patch serial-test: Don't run tests in parallel (Closes: #679736).
   * Patch array_warning: backported bugfix to kill compiler warning.
Checksums-Sha1: 
 9db746955d4553f5cbba56e503bd438eedc06d27 1741 spandsp_0.0.6~pre20-2.dsc
 5a8d7e44d7a48ba82daaf93a6fee13b97882802a 10496 
spandsp_0.0.6~pre20-2.debian.tar.gz
 6702658487b877e67d81fc3ad35710b30c77e7f9 330728 
libspandsp2_0.0.6~pre20-2_amd64.deb
 a543c4ed8ea62191c0848664f3c865a90c1e612f 541252 
libspandsp-dev_0.0.6~pre20-2_amd64.deb
 3718cb3b40d80eb5b1cb8e2aa0e7f27f241297ef 2732672 
libspandsp-doc_0.0.6~pre20-2_all.deb
Checksums-Sha256: 
 b013ef9658170c8023a8255ffccee69a2cf709f2986420ca3d449c394b927016 1741 
spandsp_0.0.6~pre20-2.dsc
 4a129c4e531dfe90c837b0f853c9c3241dd5fc2567272f715e4f085d46725b15 10496 
spandsp_0.0.6~pre20-2.debian.tar.gz
 51b99a380b980b36a2b65936f8383592708055452529b54420143c04837648b3 330728 
libspandsp2_0.0.6~pre20-2_amd64.deb
 89e5c35d8e9c7c12d9a6c002d31d1aa9f144864768042188e820857e43e53a13 541252 
libspandsp-dev_0.0.6~pre20-2_amd64.deb
 e9a0bd2c2c660ffed46b968990eaffed4f81fa9960f1cdfe384474842e3fb85a 2732672 
libspandsp-doc_0.0.6~pre20-2_all.deb
Files: 
 0f007b49a8ebcf5db8d6795c363f3db2 1741 libs optional spandsp_0.0.6~pre20-2.dsc
 ab481d79febad183b9b25ccbfe79d3bc 10496 libs optional 
spandsp_0.0.6~pre20-2.debian.tar.gz
 2af506597622e46961ae952dd93fc7e6 330728 libs optional 
libspandsp2_0.0.6~pre20-2_amd64.deb
 2cb15aac27984b39f836ade09513e667 541252 libdevel optional 
libspandsp-dev_0.0.6~pre20-2_amd64.deb
 473ffae063d6cc5cd493d3644a4d3adb 2732672 doc optional 
libspandsp-doc_0.0.6~pre20-2_all.deb

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

iEYEARECAAYFAk/wH2IACgkQxArWdkN9MosauACghQToIzfthcbZ/Cq8pz8cULQ9
tmMAnAkqCuK95KzOjP0xJVnizWy4JAEs
=jdFN
-END PGP SIGNATURE-


---End Message---


Bug#637526: Chrony bug 637526

2012-07-01 Thread Ana Guerrero
On Sat, Jun 30, 2012 at 04:13:28PM -0500, John Hasler wrote:
 Package: chrony
 Version: 1.26-1
 
 Should have been mentioned in changelog.
 -- 
 John Hasler 
 jhas...@newsguy.com
 Elmwood, WI USA
 

This bug was already closed by a NMU.



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



Processed: tagging 679671

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 679671 + pending
Bug #679671 [ia32-libs-i386] ia32-libs-i386: depends on removed package libdb4.8
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679671: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679671
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#679765: puppetmaster - CA prone to MD5 collision attacks

2012-07-01 Thread Bastian Blank
Package: puppetmaster
Version: 2.7.14-1
Severity: grave

The included CA still only displays MD5 fingerprints of certificates.
MD5 is not longer save against collision attacks. So a rogue client is
able to use a collision attack to get a certificate for the puppet
master and overtake the clients.

Bastian

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

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



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



Bug#628919: Chrony bug 628919

2012-07-01 Thread Ana Guerrero
On Sat, Jun 30, 2012 at 04:09:56PM -0500, John Hasler wrote:
 Package: chrony
 Version: 1.26-1
 
 Fixed upstream.  Should have been mentioned in the changelog.
 -- 
 John Hasler 
 jhas...@newsguy.com
 Elmwood, WI USA
 

This bug was already closed from a NMU.



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



Bug#661402: manpages-dev: removal of manpages-dev makes files disappear from libaio-dev

2012-07-01 Thread Simon Paillard
Hi Guillem,

On Thu, Mar 08, 2012 at 11:19:55PM +0100, Guillem Jover wrote:
 On Thu, 2012-03-08 at 22:57:32 +0100, Simon Paillard wrote:
  On Mon, Feb 27, 2012 at 12:15:24AM +0100, Andreas Beckmann wrote:
   Package: manpages-dev
   Version: 
   Severity: serious
   User: debian...@lists.debian.org
   Usertags: piuparts replaces-without-breaks
 
 FWIW, I don't think this deserves a serious severity.
  [..] 
   The list of installed files at points (1) and (2) should be identical,
   but the following files have disappeared:
   
 /usr/share/man/man2/io_cancel.2.gz
 /usr/share/man/man2/io_getevents.2.gz
 /usr/share/man/man2/io_submit.2.gz
[..]
  But within the same upload, io* manpages are now installed by libaio, while
  these manpages have been present in manpages-dev for a while (since 2004 for
  what I can see in git).
 
 manpages-dev seems to have only shipped io_*.2, and I only enabled io_*.3
 in libaio-dev on purpose, so in theory there should have been no issue
 due to that. But checking now more carefully, it seems those man pages
 from section 3 have section 2 in the troff sources, so dh_installman fixed
 up their filenames to match reality. I'll fix this for next release.

Do you plan such an upload so that the bug is fixed for Wheezy ? 

Regards.

-- 
Simon Paillard



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



Bug#661402: manpages-dev: removal of manpages-dev makes files disappear from libaio-dev

2012-07-01 Thread Guillem Jover
Hi!

On Sun, 2012-07-01 at 13:55:32 +0200, Simon Paillard wrote:
 On Thu, Mar 08, 2012 at 11:19:55PM +0100, Guillem Jover wrote:
  On Thu, 2012-03-08 at 22:57:32 +0100, Simon Paillard wrote:
   On Mon, Feb 27, 2012 at 12:15:24AM +0100, Andreas Beckmann wrote:
Package: manpages-dev
Version: 
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts replaces-without-breaks
  
  FWIW, I don't think this deserves a serious severity.
   [..] 
The list of installed files at points (1) and (2) should be identical,
but the following files have disappeared:

  /usr/share/man/man2/io_cancel.2.gz
  /usr/share/man/man2/io_getevents.2.gz
  /usr/share/man/man2/io_submit.2.gz
 [..]
   But within the same upload, io* manpages are now installed by libaio, 
   while
   these manpages have been present in manpages-dev for a while (since 2004 
   for
   what I can see in git).
  
  manpages-dev seems to have only shipped io_*.2, and I only enabled io_*.3
  in libaio-dev on purpose, so in theory there should have been no issue
  due to that. But checking now more carefully, it seems those man pages
  from section 3 have section 2 in the troff sources, so dh_installman fixed
  up their filenames to match reality. I'll fix this for next release.
 
 Do you plan such an upload so that the bug is fixed for Wheezy ? 

Oh, I thought I already did with 0.3.109-3! :)

thanks,
guillem



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



Processed: unblock 677762 with 677788

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unblock 677762 with 677788
Bug #677762 [ia32-libs-gtk] Multiarch issues
677762 was blocked by: 677787 677788 650777 676914 661714 650787 676918 641614 
641615 677786 68 69
677762 was not blocking any bugs.
Removed blocking bug(s) of 677762: 677788
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
677762: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677762
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#679120: libdrm-nouveau1a: text corruption using nouveau (not with video, images or 3d)

2012-07-01 Thread Steven Post
On Sun, 2012-07-01 at 13:09 +0200, Sven Joachim wrote:
 On 2012-06-26 15:35 +0200, Steven Post wrote:
 
  Package: libdrm-nouveau1a
  Version: 2.4.33-1
  Severity: important
  Tags: upstream
 
  Dear Maintainer,
 
 * What led up to the situation?
  Using nouveau with multiple monitors (although I don't think that it is 
  related
  to that)
 
  Text very frequently gets corrupted, but images, video and 3d are not 
  affected.
  This mostly occurs when using iceweasel and gnome-terminal, but evolution is
  also affected.
 
 Try the xserver-xorg-video-nouveau package in unstable.
 

Thanks Sven, I'm running the version from sid for about an hour now, so
far no problems yet. With the version from testing the problem appeared
almost instantly.
My apologies for looking at the wrong package.

Regards,
Steven


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


Bug#679671: [Pkg-ia32-libs-maintainers] Bug#679671: ia32-libs-i386: depends on removed package libdb4.8

2012-07-01 Thread Goswin von Brederlow
Adam D. Barratt a...@adam-barratt.org.uk writes:

 [Dropped pkg-db-devel from Cc because it apparently doesn't accept posts
 from non-subscribers]

 On Sun, 2012-07-01 at 11:56 +0100, Adam D. Barratt wrote:
 Looking at the package currently in unstable, I do have to ask what
 happened to:
 
  ia32-libs-20120616/debian/copyright|13164 --

 Answering my own question, it's presumably a side-effect of no longer
 embedding loads of other packages, so not needing to ship their
 copyright information.

 Regards,

 Adam

Indeed. It's just 2 empty transitional packages now that pull in
everything that used to be in ia32-libs through dependencies.
So no embedding of loads of other packages and therefore no need to
repeat the copyright infos. You will notice it got ~400MB smaller too
(including binaries).

MfG
Goswin



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



Bug#637526: Chrony bug 637526

2012-07-01 Thread Ana Guerrero
On Sun, Jul 01, 2012 at 07:41:42AM -0500, John Hasler wrote:
  This bug was already closed by a NMU.
 
 Yet it showed up in grep-excuses.

What is the relation of grep-excuses with a NMU made like 10 months ago :?
BTW, you removed the changelog entry of my NMU, that is not nice.

Ana



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



Bug#667628: libapache2-mod-lisp: diff for NMU version 1.3.1-1.2

2012-07-01 Thread Arno Töll
tags 667628 + patch
tags 667628 + pending
thanks

Dear maintainer,

I've prepared an NMU for libapache2-mod-lisp (versioned as 1.3.1-1.2) and
uploaded it to DELAYED/3. Please feel free to tell me if I
should delay it longer.

Regards.
diff -u libapache2-mod-lisp-1.3.1/debian/changelog
libapache2-mod-lisp-1.3.1/debian/changelog
--- libapache2-mod-lisp-1.3.1/debian/changelog
+++ libapache2-mod-lisp-1.3.1/debian/changelog
@@ -1,3 +1,11 @@
+libapache2-mod-lisp (1.3.1-1.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix Dropping the apache2-dev virtual package by replaying the removed
+build-dependency adequately (Closes: #667628)
+
+ -- Arno Töll a...@debian.org  Sun, 01 Jul 2012 14:30:22 +0200
+
 libapache2-mod-lisp (1.3.1-1.1) unstable; urgency=low

   * Non-maintainer upload.
diff -u libapache2-mod-lisp-1.3.1/debian/control
libapache2-mod-lisp-1.3.1/debian/control
--- libapache2-mod-lisp-1.3.1/debian/control
+++ libapache2-mod-lisp-1.3.1/debian/control
@@ -2,7 +2,7 @@
 Section: devel
 Priority: optional
 Maintainer: Chris Hanson c...@debian.org
-Build-Depends: debhelper ( 5.0.0), apache2-dev
+Build-Depends: debhelper ( 5.0.0), apache2-threaded-dev
 Standards-Version: 3.7.3

 Package: libapache2-mod-lisp



-- 
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D



signature.asc
Description: OpenPGP digital signature


Bug#679133: asterisk-core-sounds-fr-gsm: all sounds files not retrieve after upgrade (1.4.21-1 - 1.4.22-1)

2012-07-01 Thread Tzafrir Cohen
On Tue, Jun 26, 2012 at 11:15:18AM -0400, mnombre wrote:
 Package: asterisk-core-sounds-fr-gsm
 Version: 1.4.22-1
 Severity: grave
 Tags: patch
 Justification: renders package unusable
 
 old links to sounds directory have been deleted by update.
 re-creating the link make all ok, i.e, for exemple 
 ln -s /usr/share/asterisk/sounds/fr_CA_f_June /usr/share/asterisk/sounds/fr

The symlink is generated in the common package asterisk-core-sounds-fr .
The package asterisk-core-sounds-fr-gsm Recommends it (there is a
dependency in the oposite direction: the common package depends on at
least one of the format packages to be installed).

-- 
   Tzafrir Cohen
icq#16849755  jabber:tzafrir.co...@xorcom.com
+972-50-7952406   mailto:tzafrir.co...@xorcom.com
http://www.xorcom.com  iax:gu...@local.xorcom.com/tzafrir



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



Processed: libapache2-mod-lisp: diff for NMU version 1.3.1-1.2

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 667628 + patch
Bug #667628 [src:libapache2-mod-lisp] libapache2-mod-lisp: Dropping the 
apache2-dev virtual package
Bug #669503 [src:libapache2-mod-lisp] libapache2-mod-lisp: FTBFS: 
build-dependency not installable: apache2-dev
Added tag(s) patch.
Added tag(s) patch.
 tags 667628 + pending
Bug #667628 [src:libapache2-mod-lisp] libapache2-mod-lisp: Dropping the 
apache2-dev virtual package
Bug #669503 [src:libapache2-mod-lisp] libapache2-mod-lisp: FTBFS: 
build-dependency not installable: apache2-dev
Added tag(s) pending.
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
667628: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667628
669503: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669503
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#667629: libapache-mod-auth-radius: diff for NMU version 1.5.8-1.1

2012-07-01 Thread Arno Töll
tags 667629 + patch
tags 667629 + pending
thanks

Dear maintainer,

I've prepared an NMU for libapache-mod-auth-radius (versioned as
1.5.8-1.1) and
uploaded it to DELAYED/3. Please feel free to tell me if I
should delay it longer.




diff -u libapache-mod-auth-radius-1.5.8/debian/control
libapache-mod-auth-radius-1.5.8/debian/control
--- libapache-mod-auth-radius-1.5.8/debian/control
+++ libapache-mod-auth-radius-1.5.8/debian/control
@@ -4,7 +4,7 @@
 Section: web
 Priority: optional
 Standards-Version: 3.6.1
-Build-Depends: debhelper (= 5), apache2-dev
+Build-Depends: debhelper (= 5), apache2-threaded-dev

 Package: libapache2-mod-auth-radius
 Architecture: any
diff -u libapache-mod-auth-radius-1.5.8/debian/changelog
libapache-mod-auth-radius-1.5.8/debian/changelog
--- libapache-mod-auth-radius-1.5.8/debian/changelog
+++ libapache-mod-auth-radius-1.5.8/debian/changelog
@@ -1,3 +1,11 @@
+libapache-mod-auth-radius (1.5.8-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix Dropping the apache2-dev virtual package by replaying the removed
+build-dependency adequately (Closes: #667629)
+
+ -- Arno Töll a...@debian.org  Sun, 01 Jul 2012 14:46:08 +0200
+
 libapache-mod-auth-radius (1.5.8-1) unstable; urgency=medium

   * New upstream version. Incorporates all of our patches verbatim since


-- 
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D



signature.asc
Description: OpenPGP digital signature


Processed: libapache-mod-auth-radius: diff for NMU version 1.5.8-1.1

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 667629 + patch
Bug #667629 [src:libapache-mod-auth-radius] libapache-mod-auth-radius: Dropping 
the apache2-dev virtual package
Bug #669476 [src:libapache-mod-auth-radius] libapache-mod-auth-radius: FTBFS: 
build-dependency not installable: apache2-dev
Added tag(s) patch.
Added tag(s) patch.
 tags 667629 + pending
Bug #667629 [src:libapache-mod-auth-radius] libapache-mod-auth-radius: Dropping 
the apache2-dev virtual package
Bug #669476 [src:libapache-mod-auth-radius] libapache-mod-auth-radius: FTBFS: 
build-dependency not installable: apache2-dev
Added tag(s) pending.
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
667629: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=667629
669476: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=669476
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#679769: strongswan: fails to install, trying to overwrite other packages files: /etc/logcheck/ignore.d.server/strongswan

2012-07-01 Thread Andreas Beckmann
Package: strongswan
Version: 4.6.4-4
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package failed to install
because it tries to overwrite other packages files without declaring a
replaces relation.

See policy 7.6 at
http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces

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

  Selecting previously unselected package strongswan.
  (Reading database ... 7722 files and directories currently installed.)
  Unpacking strongswan (from .../strongswan_4.6.4-4_all.deb) ...
  dpkg: error processing /var/cache/apt/archives/strongswan_4.6.4-4_all.deb 
(--unpack):
   trying to overwrite '/etc/logcheck/ignore.d.server/strongswan', which is 
also in package libstrongswan 4.6.4-4
  Errors were encountered while processing:
   /var/cache/apt/archives/strongswan_4.6.4-4_all.deb


cheers,

Andreas


strongswan_4.6.4-4.log.gz
Description: GNU Zip compressed data


Bug#676070: marked as done (slgsl: FTBFS: ./tests/test_err.sl:4:top-level:Open failed)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 13:20:00 +0100
with message-id 4ff04070.8080...@debian.org
and subject line Due to #675125
has caused the Debian Bug report #676070,
regarding slgsl: FTBFS: ./tests/test_err.sl:4:top-level:Open failed
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.)


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

Hi,

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

Relevant part:
 make[2]: Entering directory `/«PKGBUILDDIR»/src'
 Unable to locate require on load path
 ./tests/test_err.sl:4:top-level:Open failed
 Unable to locate require on load path
 ./tests/test_fft.sl:4:top-level:Open failed
 Unable to locate require on load path
 ./tests/test_import.sl:6:test_ns:Open failed
 Unable to locate require on load path
 ./tests/test_interp.sl:3:top-level:Open failed
 Unable to locate require on load path
 ./tests/test_rand.sl:4:top-level:Open failed
 make[2]: *** [test] Error 30

The full build log is available from:
   http://people.debian.org/~lucas/logs/2012/06/04/slgsl_0.7.0-5.1_unstable.log

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 EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.


---End Message---
---BeginMessage---
This is due to a bug in libslang2, which is fixed in #675125.

Best regards
Alastair

-- 
Alastair McKinstry  , alast...@sceal.ie , mckins...@debian.org
http://diaspora.sceal.ie/u/amckinstry

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


---End Message---


Bug#679765: [Pkg-puppet-devel] Bug#679765: puppetmaster - CA prone to MD5 collision attacks

2012-07-01 Thread Stig Sandbeck Mathisen
Bastian Blank wa...@debian.org writes:

 The included CA still only displays MD5 fingerprints of certificates.
 MD5 is not longer save against collision attacks. So a rogue client is
 able to use a collision attack to get a certificate for the puppet
 master and overtake the clients.

Could you submit a bug in the upstream bug tracker at
https://projects.puppetlabs.com/projects/puppet/issues, please? I'll
connect your new upstream bug with this one, so we can track its status.

Having the packaging team as a middleman for an upstream bug of this
magnitute would probably not be constructive.

-- 
Stig Sandbeck Mathisen



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



Bug#637526: Chrony bug 637526

2012-07-01 Thread John Hasler
 This bug was already closed by a NMU.

Yet it showed up in grep-excuses.
-- 
John Hasler 
jhas...@newsguy.com
Elmwood, WI USA



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



Processed: limit source to gamera, tagging 678254

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #gamera (3.3.3-2) UNRELEASED; urgency=low
 #
 #  * Use rdfind instead of fdupes (closes: #678254).
 #
 limit source gamera
Limiting to bugs with field 'source' containing at least one of 'gamera'
Limit currently set to 'source':'gamera'

 tags 678254 + pending
Bug #678254 [src:gamera] gamera: FTBFS: fdupes: unrecognized option '--linkhard'
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
678254: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=678254
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#679769: strongswan: fails to install, trying to overwrite other packages files: /etc/logcheck/ignore.d.server/strongswan

2012-07-01 Thread Yves-Alexis Perez
tag 679745 pending
forcemerge 679745 679769
thanks
On dim., 2012-07-01 at 14:58 +0200, Andreas Beckmann wrote:
 Package: strongswan
 Version: 4.6.4-4
 Severity: serious
 User: debian...@lists.debian.org
 Usertags: piuparts
 
 Hi,
 
 during a test with piuparts I noticed your package failed to install
 because it tries to overwrite other packages files without declaring a
 replaces relation.
 
 See policy 7.6 at
 http://www.debian.org/doc/debian-policy/ch-relationships.html#s-replaces
 
 From the attached log (scroll to the bottom...):
 
   Selecting previously unselected package strongswan.
   (Reading database ... 7722 files and directories currently installed.)
   Unpacking strongswan (from .../strongswan_4.6.4-4_all.deb) ...
   dpkg: error processing /var/cache/apt/archives/strongswan_4.6.4-4_all.deb 
 (--unpack):
trying to overwrite '/etc/logcheck/ignore.d.server/strongswan', which is 
 also in package libstrongswan 4.6.4-4
   Errors were encountered while processing:
/var/cache/apt/archives/strongswan_4.6.4-4_all.deb
 
Doesn't that look like #679745?

Regards,
-- 
Yves-Alexis


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


Processed (with 1 errors): Re: Bug#679769: strongswan: fails to install, trying to overwrite other packages files: /etc/logcheck/ignore.d.server/strongswan

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 679745 pending
Bug #679745 [libstrongswan] libstrongswan: strongswan-4.6.4-4 conflicts with 
libstrongswan-4.6.4-4 (/etc/logcheck/ignore.d.server/strongswan)
Added tag(s) pending.
 forcemerge 679745 679769
Bug #679745 [libstrongswan] libstrongswan: strongswan-4.6.4-4 conflicts with 
libstrongswan-4.6.4-4 (/etc/logcheck/ignore.d.server/strongswan)
Unable to merge bugs because:
package of #679769 is 'strongswan' not 'libstrongswan'
Failed to forcibly merge 679745: Did not alter merged bugs
Debbugs::Control::set_merged('transcript', 'GLOB(0xcc6f18)', 
'requester', 'Yves-Alexis Perez cor...@debian.org', 'request_addr', 
'cont...@bugs.debian.org', 'request_msgid', 
'1341148383.19229.12.camel@scapa', 'request_subject', ...) called at 
/usr/lib/debbugs/service line 887
eval {...} called at /usr/lib/debbugs/service line 886

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679745: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679745
679769: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679769
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 679745 to strongswan, forcibly merging 679745 679769

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 679745 strongswan
Bug #679745 [libstrongswan] libstrongswan: strongswan-4.6.4-4 conflicts with 
libstrongswan-4.6.4-4 (/etc/logcheck/ignore.d.server/strongswan)
Bug reassigned from package 'libstrongswan' to 'strongswan'.
No longer marked as found in versions strongswan/4.6.4-4.
Ignoring request to alter fixed versions of bug #679745 to the same values 
previously set
 forcemerge 679745 679769
Bug #679745 [strongswan] libstrongswan: strongswan-4.6.4-4 conflicts with 
libstrongswan-4.6.4-4 (/etc/logcheck/ignore.d.server/strongswan)
Bug #679745 [strongswan] libstrongswan: strongswan-4.6.4-4 conflicts with 
libstrongswan-4.6.4-4 (/etc/logcheck/ignore.d.server/strongswan)
Marked as found in versions strongswan/4.6.4-4.
Bug #679769 [strongswan] strongswan: fails to install, trying to overwrite 
other packages files: /etc/logcheck/ignore.d.server/strongswan
Severity set to 'normal' from 'serious'
Added tag(s) pending.
Merged 679745 679769
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679745: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679745
679769: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679769
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: Debian Bug report logs - #679337

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 679337 grave
Bug #679337 [python-virtualenv] python-virtualenv: Embedded pip in virtualenv 
crashes with Python = 2.7.3, 3.2.3
Severity set to 'grave' from 'important'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679337: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679337
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#676063: marked as done (slcfitsio: FTBFS: ./tests/test_fits.sl:5:top-level:Open failed)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 14:18:07 +0100
with message-id 4ff04e0f.3010...@debian.org
and subject line Due to #675125
has caused the Debian Bug report #676063,
regarding slcfitsio: FTBFS: ./tests/test_fits.sl:5:top-level:Open failed
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.)


-- 
676063: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676063
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: slcfitsio
Version: 0.3.8+nosvn-4.1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20120604 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[1]: Entering directory `/«BUILDDIR»/slcfitsio-0.3.8+nosvn/src'
 Unable to locate require on load path
 ./tests/test_fits.sl:5:top-level:Open failed
 Unable to locate require on load path
 ./tests/test_wcs.sl:5:top-level:Open failed
 make[1]: *** [test] Error 30

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2012/06/04/slcfitsio_0.3.8+nosvn-4.1_unstable.log

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 EC2 VM instances from
Amazon Web Services, using a clean, minimal and up-to-date chroot. Every
failed build was retried once to eliminate random failures.


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

This bug was due to #675125, a buggy libslang2.
This has been fixed in slang2-2.2.4-14 upload.

regards
Alastair

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

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


---End Message---


Bug#675397: marked as done (slhist: FTBFS in sid: ./tests/test_hist.sl:19:top-level:Open failed)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 14:16:49 +0100
with message-id 4ff04dc1.3040...@debian.org
and subject line Due to #675125
has caused the Debian Bug report #675397,
regarding slhist: FTBFS in sid: ./tests/test_hist.sl:19:top-level:Open failed
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.)


-- 
675397: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=675397
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: slhist
Version: 0.3.2a-3.1
Severity: serious
Justification: FTBFS

Hello,

slhist currently FTBFS in sid:

Unable to locate require on load path
./tests/test_hist.sl:19:top-level:Open failed

See attached full log.

Samuel

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

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

-- 
Samuel Thibault samuel.thiba...@fnac.net
Pour un père, autant mourir que de faire plein de calculs et pas s'occuper
de son fils
 -+- y sur #ens-mim - sombres histoires de zombies -+-
W: /home/samy/.pbuilderrc does not exist
dpkg-checkbuilddeps: Unmet build dependencies: slsh
W: Unmet build-dependency in source
dpkg-buildpackage: source package slhist
dpkg-buildpackage: source version 0.3.2a-3.1
dpkg-buildpackage: source changed by Simon Paillard spaill...@debian.org
 dpkg-source -i -I --before-build slhist-0.3.2a
dpkg-checkbuilddeps: Unmet build dependencies: slsh
dpkg-buildpackage: warning: Build dependencies/conflicts unsatisfied; aborting.
dpkg-buildpackage: warning: (Use -d flag to override.)
dpkg-buildpackage: warning: This is currently a non-fatal warning with -S, but
dpkg-buildpackage: warning: will probably become fatal in the future.
 fakeroot debian/rules clean
test -x debian/rules
dh_testroot
rm -f debian/stamp-makefile-build debian/stamp-makefile-install
/usr/bin/make  -C .  -k distclean
make[1]: Entering directory `/tmp/slhist-0.3.2a'
make[1]: *** No rule to make target `distclean'.
make[1]: Leaving directory `/tmp/slhist-0.3.2a'
make: [makefile-clean] Error 2 (ignored)
rm -f debian/stamp-makefile-check
rm -f debian/stamp-autotools
rmdir --ignore-fail-on-non-empty .
rmdir: failed to remove `.': Invalid argument
make: [makefile-clean] Error 1 (ignored)
for i in ./autoconf/config.guess ./autoconf/config.sub  ; do \
if test -e $i.cdbs-orig ; then \
mv $i.cdbs-orig $i ; \
fi ; \
done
rm -f debian/stamp-autotools-files
dh_clean 
 dpkg-source -i -I -b slhist-0.3.2a
dpkg-source: warning: no source format specified in debian/source/format, see 
dpkg-source(1)
dpkg-source: info: using source format `1.0'
dpkg-source: info: building slhist using existing slhist_0.3.2a.orig.tar.gz
dpkg-source: info: building slhist in slhist_0.3.2a-3.1.diff.gz
dpkg-source: warning: file slhist-0.3.2a/debian/examples has no final newline 
(either original or modified version)
dpkg-source: info: building slhist in slhist_0.3.2a-3.1.dsc
 dpkg-genchanges -S ../slhist_0.3.2a-3.1_source.changes
dpkg-genchanges: not including original source code in upload
 dpkg-source -i -I --after-build slhist-0.3.2a
dpkg-buildpackage: source only, diff-only upload (original source NOT included)
W: /home/samy/.pbuilderrc does not exist
I: using fakeroot in build.
I: Current time: Thu May 31 22:18:08 CEST 2012
I: pbuilder-time-stamp: 1338495488
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/base.tgz]
I: creating local configuration
I: copying local configuration
I: mounting /proc filesystem
I: mounting /dev/pts filesystem
I: Mounting /var/cache/pbuilder/ccache
I: policy-rc.d already exists
I: Obtaining the cached apt archive contents
I: Setting up ccache
I: Installing the build-deps
 - Attempting to satisfy build-dependencies
 - Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team pbuilder-ma...@lists.alioth.debian.org
Description: Dummy package to satisfy dependencies with aptitude - created by 
pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: debhelper (= 7), libslang2-dev (= 2.0.4-6), slsh, cdbs
dpkg-deb: building package `pbuilder-satisfydepends-dummy' in 
`/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package 

Processed: tagging 629293

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # libtie-regexphash-perl was removed from the archive
 tags 629293 + squeeze - sid wheezy
Bug #629293 [src:libtie-regexphash-perl] libtie-regexphash-perl: FTBFS with 
perl 5.14: test failures
Added tag(s) squeeze.
Bug #629293 [src:libtie-regexphash-perl] libtie-regexphash-perl: FTBFS with 
perl 5.14: test failures
Removed tag(s) sid and wheezy.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
629293: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=629293
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: tagging 629293

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # not really applicable to squeeze as it has older Perl
 tags 629293 - squeeze
Bug #629293 [src:libtie-regexphash-perl] libtie-regexphash-perl: FTBFS with 
perl 5.14: test failures
Removed tag(s) squeeze.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
629293: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=629293
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#637526: Chrony bug 637526

2012-07-01 Thread John Hasler
 What is the relation of grep-excuses with a NMU made like 10 months
 ago :?

Grep-excuses told me that the bug was still open and blocking.  Also,
there was this from DDPO:

=== chrony:
= 2 Release Critical bug(s):
- #637526 http://bugs.debian.org/637526
  incorrect copyright file
- #628919 http://bugs.debian.org/628919
  /usr/sbin/chronyd: Starting with kernel v3.0, chronyd will refuse to
  start

 BTW, you removed the changelog entry of my NMU, that is not nice.

Sorry.  That was unintentional.
-- 
John Hasler 
jhas...@newsguy.com
Elmwood, WI USA



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



Bug#679779: quilt - Fails to refresh patch with name including :

2012-07-01 Thread Bastian Blank
Package: quilt
Version: 0.60-2
Severity: grave

quilt is not able to refresh a patch which name includes a :. It just
prints an error but does not handle it and effectively looses the error:

| sed: -e expression #1, char 43: unknown option to `s'
| Nothing in patch upstream-25290:7a6dcecb1781-rework

/usr/share/quilt/refresh uses sed to remove the name of the patch from
filenames:

| sed -e s:.pc/upstream-25290:7a6dcecb1781-rework/::

Bastian

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

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



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



Bug#679780: ia32-libs: please document how to perform automated package install and upgrade tests that involve ia32-libs

2012-07-01 Thread Andreas Beckmann
Package: ia32-libs
Version: 20120616
Severity: serious

Hi,

please provide detailed instructions how to perform piuparts tests on
packages that depend on (or are) ia32-libs. These tests are done
fully automatic with DEBIAN_FRONTEND=noninteractive.
Ideally provide custom scripts that can be added to /etc/piuparts/scripts/

There are primarily two tests to be considered:

* installation in a minimal sid (and later wheezy, too) chroot

* dist-upgrade tests from squeeze to wheezy or to sid

Piuparts supports running custom scripts at certain phases of the test.

For the installation test, it's probably a pre_install script that needs
to be added that runs dpkg --add-architecture and apt-get update if and
only if this is neccessary, i.e. I don't want to always enable a foreign
architecture.
The environment variables PIUPARTS_OBJECTS, PIUPARTS_DISTRIBUTION,
PIUPARTS_TEST, PIUPARTS_PHASE should provide the information needed to
decide the operations.

For the dist-upgrade test the following will be done in the chroot:
* replace sources.list to point ot the next distribution
* run pre_distupgrade scripts (above variables + PIUPARTS_DISTRIBUTION_NEXT)
* apt-get dist-upgrade
* run post_distupgrade scripts (above variables + PIUPARTS_DISTRIBUTION_PREV)
The pre-distupgrade script can probably check for certain packages being
installed currently that require enabling i386 as a foreign architecture
to perform the upgrade.

Please see the piuparts documentation for details:
http://piuparts.debian.org/doc/README.html#_custom_scripts_with_piuparts

I'm asking the ia32-libs maintainers since I assume they will write that
respective chapter for the release notes, so these scripts should
reflect what's being written into the release notes.

And you probably want to know whether the ia32-libs upgrade path is
smooth if the instructions are followed.

Please reassign this bug to piuparts after adding sufficient
information.


Thanks,

Andreas



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



Bug#678247: [Pkg-clamav-devel] Bug#678247: Fix debdiff

2012-07-01 Thread Scott Kitterman
I did test it. It defaults to 8080 if you don't specify.

Stephen Gran sg...@debian.org wrote:

This one time, at band camp, Scott Kitterman said:
 Attached.

Hi,

Have you tested that that is a valid config file? I have some vague
memory of freshclam not being happy with a proxyhost but not a
proxyport.

Cheers,
-- 
_

| ,''`. Stephen Gran |
| : :' : sg...@debian.org |
| `. `' Debian user, admin, and developer |
| `- http://www.debian.org |
_



Bug#642165: Observations

2012-07-01 Thread Stefan Hornburg (Racke)

Hello,

on my local machine it fails too in my sid /chroot. Building the package
from my installed wheezy works fine.

Regards
Racke

--
LinuXia Systems = http://www.linuxia.de/
Expert Interchange Consulting and System Administration
ICDEVGROUP = http://www.icdevgroup.org/
Interchange Development Team




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



Bug#679526: Bug#638741: test results

2012-07-01 Thread Etienne Millon
* Goswin von Brederlow goswin-...@web.de [120629 22:56]:
 Etienne: Could you please build a patched libao and test zsnes under
 multiarch to give a second point of reference?

Hello,

I could install zsnes:i386 on a amd64 system (with a bit pinning as
#673770 blocks SDL in testing) using the patched libao and a
multi-arch zsnes.

But, it segfaults on start (cf attached gdb trace), I believe that it
is on libao's side.

Have a nice day !

-- 
Etienne Millon



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



Bug#679526: Bug#638741: test results

2012-07-01 Thread Etienne Millon
* Etienne Millon etienne.mil...@gmail.com [120701 16:08]:
 (cf attached gdb trace)

Here it is.

-- 
Etienne Millon
$ gdb zsnes
GNU gdb (GDB) 7.4.1-debian
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as x86_64-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/zsnes...(no debugging symbols found)...done.
(gdb) r
Starting program: /usr/bin/zsnes 
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
ZSNES v1.51, (c) 1997-2007, ZSNES Team
Be sure to check http://www.zsnes.com/ for the latest version.

ZSNES is written by the ZSNES Team (See AUTHORS.TXT)
ZSNES comes with ABSOLUTELY NO WARRANTY.  This is free software,
and you are welcome to redistribute it under certain conditions;
please read 'LICENSE.TXT' thoroughly before doing so.

Use ZSNES -? for command line definitions.

Starting Mouse detection.
Unable to poll /dev/input/event1. Make sure you have read permissions to it.
Unable to poll /dev/input/event6. Make sure you have read permissions to it.
Unable to poll /dev/input/event5. Make sure you have read permissions to it.
Unable to poll /dev/input/event4. Make sure you have read permissions to it.
Unable to poll /dev/input/event3. Make sure you have read permissions to it.
Unable to poll /dev/input/event2. Make sure you have read permissions to it.
Unable to poll /dev/input/event0. Make sure you have read permissions to it.
ManyMouse: 0 mice detected.
[New Thread 0xf669fb70 (LWP 13995)]
[New Thread 0xf5d46b70 (LWP 14008)]

Program received signal SIGSEGV, Segmentation fault.
__strlen_sse2_bsf () at ../sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S:52
52  ../sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: No such file or 
directory.
(gdb) bt
#0  __strlen_sse2_bsf () at ../sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S:52
#1  0xf7e7ed2a in _sanitize_matrix (maxchannels=2, matrix=0x5 Address 0x5 out 
of bounds, device=error reading variable: Unhandled dwarf expression opcode 
0xfa, 
device=error reading variable: Unhandled dwarf expression opcode 0xfa) at 
audio_out.c:633
#2  0xf7e80a02 in _open_device (driver_id=optimized out, format=0xd318, 
options=0x0, file=0x0) at audio_out.c:989
#3  0x082faf8f in ?? ()
#4  0x082fe4df in ?? ()
#5  0x082fba24 in ?? ()
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
(gdb) q
A debugging session is active.

Inferior 1 [process 13992] will be killed.

Quit anyway? (y or n) y


Bug#675842: marked as done (webkitkde: FTBFS[kfreebsd]: symbol changes)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 15:52:48 +0200
with message-id d8b38a13a87826f987c2d2627b1e6...@adrieng.homeip.net
and subject line Done: webkitkde: FTBFS[kfreebsd]: symbol changes
has caused the Debian Bug report #675842,
regarding webkitkde: FTBFS[kfreebsd]: symbol changes
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.)


-- 
675842: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=675842
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: src:webkitkde
Version: 0.9.6svn1180498-2.1
Severity: serious
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-...@lists.debian.org
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the kfreebsd-* buildds:

dh_makeshlibs -Xkwebkitpart.so
dpkg-gensymbols: warning: some new symbols appeared in the symbols file: see 
diff output below
dpkg-gensymbols: warning: some symbols or patterns disappeared in the symbols 
file: see diff output below
dpkg-gensymbols: warning: debian/libkwebkit1/DEBIAN/symbols doesn't match 
completely debian/libkwebkit1.symbols
--- debian/libkwebkit1.symbols (libkwebkit1_0.9.6svn1180498-2.1_kfreebsd-amd64)
+++ dpkg-gensymbolsIYl2nr   2012-05-23 00:50:02.0 +
@@ -11,8 +11,8 @@
  (c++)KWebKitPart::staticMetaObject@Base 0.9.6svn1158036
  (c++)KWebKitPart::view()@Base 0.9.6svn1158036
  (c++)KWebKitPart::~KWebKitPart()@Base 0.9.6svn1158036
- (optional|c++)QColor KConfigGroup::readCheckQColor(char const*, QColor 
const) const@Base 0.9.6svn1158036
- (optional|c++)QColor KConfigGroup::readEntryQColor(char const*, QColor 
const) const@Base 0.9.6svn1158036
+#MISSING: 0.9.6svn1180498-2.1# (optional|c++)QColor 
KConfigGroup::readCheckQColor(char const*, QColor const) const@Base 
0.9.6svn1158036
+#MISSING: 0.9.6svn1180498-2.1# (optional|c++)QColor 
KConfigGroup::readEntryQColor(char const*, QColor const) const@Base 
0.9.6svn1158036
  (c++)VTT for KWebKitPart@Base 0.9.6svn1158036
  (c++)WebKitSettings::WebKitSettings()@Base 0.9.6svn1158036
  (c++)WebKitSettings::WebKitSettings(WebKitSettings const)@Base 
0.9.6svn1158036
@@ -87,6 +87,12 @@
  (c++)WebKitSettings::windowStatusPolicy(QString const) const@Base 
0.9.6svn1158036
  (c++)WebKitSettings::zoomTextOnly() const@Base 0.9.6svn1158036
  (c++)WebKitSettings::~WebKitSettings()@Base 0.9.6svn1158036
+ _ZN10KWebWallet7WebFormD1Ev@Base 0.9.6svn1180498-2.1
+ _ZN10KWebWallet7WebFormD2Ev@Base 0.9.6svn1180498-2.1
+ _ZN3KIO8MetaDataD1Ev@Base 0.9.6svn1180498-2.1
+ _ZN3KIO8MetaDataD2Ev@Base 0.9.6svn1180498-2.1
+ _ZN4KUrl4ListD1Ev@Base 0.9.6svn1180498-2.1
+ _ZN4KUrl4ListD2Ev@Base 0.9.6svn1180498-2.1
  (optional|c++)bool KConfigGroup::readCheckbool(char const*, bool const) 
const@Base 0.9.6svn1158036
  (optional|c++)bool KConfigGroup::readEntrybool(QString const, bool 
const) const@Base 0.9.6svn1158036
  (optional|c++)bool KConfigGroup::readEntrybool(char const*, bool const) 
const@Base 0.9.6svn1158036
@@ -96,8 +102,8 @@
  (optional|c++)int KConfigGroup::readCheckint(char const*, int const) 
const@Base 0.9.6svn1158036
  (optional|c++)int KConfigGroup::readEntryint(char const*, int const) 
const@Base 0.9.6svn1158036
  (c++)non-virtual thunk to KWebKitPart::~KWebKitPart()@Base 0.9.6svn1158036
- (c++|arch=kfreebsd-amd64 kfreebsd-i386)operator delete(void*, void*)@Base 
0.9.6svn1158036
- (optional|c++|regex)operator new\(unsigned (int|long), void\*\)@Base 
0.9.6svn1158036
+#MISSING: 0.9.6svn1180498-2.1# (c++|arch=kfreebsd-amd64 
kfreebsd-i386)operator delete(void*, void*)@Base 0.9.6svn1158036
+#MISSING: 0.9.6svn1180498-2.1# (optional|c++|regex)operator new\(unsigned 
(int|long), void\*\)@Base 0.9.6svn1158036
  (c++)typeinfo for KWebKitPart@Base 0.9.6svn1158036
  (c++)typeinfo for WebKitSettings@Base 0.9.6svn1158036
  (c++)typeinfo name for KWebKitPart@Base 0.9.6svn1158036
dh_makeshlibs: dpkg-gensymbols -plibkwebkit1 -Idebian/libkwebkit1.symbols 
-Pdebian/libkwebkit1 returned exit code 1
make: *** [binary-arch] Error 1

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=webkitkdearch=kfreebsd-amd64ver=0.9.6svn1180498-2.1stamp=1337734210

Regards

Christoph

If you have further questions please mail debian-...@lists.debian.org

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


---End Message---
---BeginMessage---
Package: src:webkitkde
Version: 1.3~git20120518.9a111005-2

Hi,

I mark the bug as fixed, as it now builds on kfreebsd. If you think it's
wrong, please feel free to re-open it.

Regards,

Adrien Grellier


Bug#679337: [Python-modules-team] Bug#679337: Bug#679337: Bug#679337: python-virtualenv: Embedded pip in virtualenv crashes with Python = 2.7.3, 3.2.3

2012-07-01 Thread chaica
On Sun, 1 Jul 2012 10:30:34 +0200, Stefano Rivera stefa...@debian.org
wrote:
 Hi Vincent (2012.06.29_21:38:36_+0200)
 Or copy pip/distribute/setuptools from the system? Or link it?
 
 Not that simple. pip is currently installed with easy_install,
 installing it from the installed version on the system would require
 manually installing all the necessary files, and re-writing the shebang.
 
 Patching the tarball in the source, or patching the installed file
 programmatically from virtualenv, is probably the way to go.
 
 Carl: Why did you use a sub-RC severity? I think virtualenv users would
 consider this RC.

Hi Stefano,

I thought it was. It's a RC. I'm modifying the severity right now.

Bye,
Carl Chenet






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



Processed: udev breakage is serious

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 677097 679523
Bug #677097 [initscripts] mountall-bootclean.sh nukes udev's data in /run
Bug #679523 [initscripts] initscripts: 2.88dsf-28 version (unstable) creates 
issues with udev
Marked as found in versions sysvinit/2.88dsf-27.
Bug #677097 [initscripts] mountall-bootclean.sh nukes udev's data in /run
Marked as found in versions sysvinit/2.88dsf-28.
Merged 677097 679523
 severity 677097 serious
Bug #677097 [initscripts] mountall-bootclean.sh nukes udev's data in /run
Bug #679523 [initscripts] initscripts: 2.88dsf-28 version (unstable) creates 
issues with udev
Severity set to 'serious' from 'important'
Severity set to 'serious' from 'important'
 tags 677097 +pending
Bug #677097 [initscripts] mountall-bootclean.sh nukes udev's data in /run
Bug #679523 [initscripts] initscripts: 2.88dsf-28 version (unstable) creates 
issues with udev
Added tag(s) pending.
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
677097: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677097
679523: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679523
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#678247: [Pkg-clamav-devel] Bug#678247: Fix debdiff

2012-07-01 Thread Stephen Gran
This one time, at band camp, Scott Kitterman said:
 I did test it. It defaults to 8080 if you don't specify.

Perfect :)   Just my memory being bad, then.

Cheers,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#679746: default --system home directory leads to piuparts RC bugs

2012-07-01 Thread Stephen Gran
This one time, at band camp, Marc Haber said:
 Thus, packages using adduser --system and relying on adduser doing the
 right thing will get a piuparts-based RC bug in no time. Adduser
 should change its default behavior to something that QA will accept.

And what directory would that be, then?

I think this is a strange interpretation of policy, that it's the tool
that is buggy and not the invocation.

Cheers,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#674863: marked as done (faumachine: maintainer address bounces)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 Jul 2012 16:38:50 +0200
with message-id 20120701143850.ga3...@suut.lan
and subject line re: faumachine: maintainer address bounces
has caused the Debian Bug report #674863,
regarding faumachine: maintainer address bounces
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.)


-- 
674863: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=674863
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: faumachine
Version: 20100527-2
Severity: serious

The maintainer address bounces:

mailer-dae...@faui45.informatik.uni-erlangen.de (Mail Delivery System)
writes:
 This is the mail system at host faui45.informatik.uni-erlangen.de.

 I'm sorry to have to inform you that your message could not
 be delivered to one or more recipients. It's attached below.

 For further assistance, please send mail to postmaster.

 If you do so, please include this problem report. You can
 delete your own text from the attached returned message.

The mail system

 vrs...@immd3.informatik.uni-erlangen.de (expanded from
 vrs...@i3.informatik.uni-erlangen.de): host
 faui3es.informatik.uni-erlangen.de[131.188.33.16] said: 550 5.1.1
 vrs...@immd3.informatik.uni-erlangen.de... User unknown (in reply to 
 RCPT
 TO command)

 pot...@i3.informatik.uni-erlangen.de: host
 faui3es.informatik.uni-erlangen.de[131.188.33.16] said: 550 5.1.1
 pot...@i3.informatik.uni-erlangen.de... User unknown (in reply to RCPT 
 TO
 command)

 s...@i3.informatik.uni-erlangen.de: host
 faui3es.informatik.uni-erlangen.de[131.188.33.16] said: 550 5.1.1
 s...@i3.informatik.uni-erlangen.de... User unknown (in reply to RCPT TO
 command)

 Reporting-MTA: dns; faui45.informatik.uni-erlangen.de
 X-Postfix-Queue-ID: C73C1741F57
 X-Postfix-Sender: rfc822; envel...@ftp-master.debian.org
 Arrival-Date: Mon, 28 May 2012 12:33:32 +0200 (CEST)

 Final-Recipient: rfc822; vrs...@immd3.informatik.uni-erlangen.de
 Original-Recipient: rfc822;i...@faumachine.org
 Action: failed
 Status: 5.1.1
 Remote-MTA: dns; faui3es.informatik.uni-erlangen.de
 Diagnostic-Code: smtp; 550 5.1.1 vrs...@immd3.informatik.uni-erlangen.de...
 User unknown

 Final-Recipient: rfc822; pot...@i3.informatik.uni-erlangen.de
 Original-Recipient: rfc822;i...@faumachine.org
 Action: failed
 Status: 5.1.1
 Remote-MTA: dns; faui3es.informatik.uni-erlangen.de
 Diagnostic-Code: smtp; 550 5.1.1 pot...@i3.informatik.uni-erlangen.de... 
 User
 unknown

 Final-Recipient: rfc822; s...@i3.informatik.uni-erlangen.de
 Original-Recipient: rfc822;i...@faumachine.org
 Action: failed
 Status: 5.1.1
 Remote-MTA: dns; faui3es.informatik.uni-erlangen.de
 Diagnostic-Code: smtp; 550 5.1.1 s...@i3.informatik.uni-erlangen.de... User
 unknown

 From: Debian FTP Masters ftpmas...@ftp-master.debian.org
 Subject: faumachine override disparity
 To: Matthias Klose d...@debian.org, FAUmachine Team i...@faumachine.org
 Date: Mon, 28 May 2012 10:33:09 +


---End Message---
---BeginMessage---
Package: faumachine
Version: 20100527-2
kthxbye

Hi,

the rejects were caused by a power outage. The uploader addresses are now
working correctly again. Closing this bug report.

Cheers,
  Stefan.


---End Message---


Bug#549681: mkvmlinuz: use xz to compress vmlinuz-boxed initrd

2012-07-01 Thread Milan Kupcevic
On 07/01/2012 07:05 AM, Touko Korpela wrote:
 ...
 +if test $post_2_6_38; then
 +  XZ=xz --check=crc32 -8
 +else
 +  XZ=false
 +fi
 
 From xz(1) manual page (you can ignore DecMem):
  Preset   DictSize   CompCPU   CompMem   DecMem
-0 256 KiB   03 MiB1 MiB
-1   1 MiB   19 MiB2 MiB
-2   2 MiB   2   17 MiB3 MiB
-3   4 MiB   3   32 MiB5 MiB
-4   4 MiB   4   48 MiB5 MiB
-5   8 MiB   5   94 MiB9 MiB
-6   8 MiB   6   94 MiB9 MiB
-7  16 MiB   6  186 MiB   17 MiB
-8  32 MiB   6  370 MiB   33 MiB
-9  64 MiB   6  674 MiB   65 MiB
 
 Better to use default setting -6 that has lower memory requirement.
 

Here is timing for re-compression from gzip to xz on Pegasos II with
Freescale 7447 1GhZ processor and 1Gb RAM:

set   time compressed size
-91m43.962s9.5MB
-81m44.824s9.5MB
-61m35.097s9.6MB
-31m10.080s10.6MB
-20m45.609s10.7MB
-00m19.286s11.1MB

I've originally decided to go with -8, mainly because the same preset is
used in mkinitramfs form initramfs-tools package. It may be worth
hearing arguments about the timing given that all presets currently
produce vmlinuz smaller than the 12MB limit, but the compression time is
very different.

Milan



signature.asc
Description: OpenPGP digital signature


Bug#679746: default --system home directory leads to piuparts RC bugs

2012-07-01 Thread Marc Haber
On Sun, Jul 01, 2012 at 03:43:42PM +0100, Stephen Gran wrote:
 This one time, at band camp, Marc Haber said:
  Thus, packages using adduser --system and relying on adduser doing the
  right thing will get a piuparts-based RC bug in no time. Adduser
  should change its default behavior to something that QA will accept.
 
 And what directory would that be, then?

Since policy does not give any hints about that, adduser --system
should probably insist on --home being given.

Greetings
Marc

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



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



Processed: 676105 caused by missing build-dependency on ruby-gettext

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 retitle 676105 rbbr: FTBFS: missing build-dependency on ruby-gettext
Bug #676105 [src:rbbr] rbbr: FTBFS: L10n is not supported on this environment.
Changed Bug title to 'rbbr: FTBFS: missing build-dependency on ruby-gettext' 
from 'rbbr: FTBFS: L10n is not supported on this environment.'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
676105: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676105
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#653584: marked as done (fracplanet: FTBFS on ia64: one or more PCH files were found, but they were invalid)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 15:22:19 +
with message-id e1sllyd-000197...@franck.debian.org
and subject line Bug#653584: fixed in fracplanet 0.4.0-3
has caused the Debian Bug report #653584,
regarding fracplanet: FTBFS on ia64: one or more PCH files were found, but they 
were invalid
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.)


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

Source: fracplanet
Version: 0.4.0-1.1
Severity: serious
Justification: fails to build from source
User: debian-i...@lists.debian.org
Usertags: ia64

fracplanet FTBFS on ia64:
| /usr/bin/make
| make[1]: Entering directory 
`/build/buildd-fracplanet_0.4.0-1.1-ia64-XyBT_D/fracplanet-0.4.0'
| g++ -c -include obj/fracplanet -pipe -O2 -DFRACPLANET_VERSION=0.4.0 
-DFRACPLANET_BUILD=0.4.0 (release build) -DNDEBUG -DQT_NO_ASCII_CAST -D_REENTRANT -Wall 
-W -DQT_DLL -DQT_NO_DEBUG -DQT_OPENGL_LIB -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/QtOpenGL -I/usr/include/qt4 -I/usr/X11R6/include -Imoc -o 
obj/dialog_documentation.o dialog_documentation.cpp
| cc1plus: error: one or more PCH files were found, but they were invalid
| cc1plus: error: use -Winvalid-pch for more information
| cc1plus: fatal error: obj/fracplanet: No such file or directory
| compilation terminated.
| make[1]: *** [obj/dialog_documentation.o] Error 1
| make[1]: Leaving directory 
`/build/buildd-fracplanet_0.4.0-1.1-ia64-XyBT_D/fracplanet-0.4.0'
| make: *** [build-stamp] Error 2

Full build log:
https://buildd.debian.org/status/fetch.php?pkg=fracplanetarch=ia64ver=0.4.0-1.1stamp=1325164404

--
Jakub Wilk


---End Message---
---BeginMessage---
Source: fracplanet
Source-Version: 0.4.0-3

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

fracplanet_0.4.0-3.debian.tar.gz
  to main/f/fracplanet/fracplanet_0.4.0-3.debian.tar.gz
fracplanet_0.4.0-3.dsc
  to main/f/fracplanet/fracplanet_0.4.0-3.dsc
fracplanet_0.4.0-3_amd64.deb
  to main/f/fracplanet/fracplanet_0.4.0-3_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 653...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bernhard R. Link brl...@debian.org (supplier of updated fracplanet 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: Sun, 01 Jul 2012 16:36:55 +0200
Source: fracplanet
Binary: fracplanet
Architecture: source amd64
Version: 0.4.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Bernhard R. Link brl...@debian.org
Description: 
 fracplanet - Fractal planet generator
Closes: 653584
Changes: 
 fracplanet (0.4.0-3) unstable; urgency=low
 .
   * QA upload.
   * fix configure calling
   - use proper stamp file, avoiding recompilation (Closes: 653584)
   - use dpkg-buildflags
   - use correct variables to pass flags (thus respecting DEB_BUILD_OPTIONS)
Checksums-Sha1: 
 24f4807f4cc28881cbc55f1b9cc79e711ede95d6 1832 fracplanet_0.4.0-3.dsc
 3c602bb063a069f7ca73d667688db127ac91af93 3522 fracplanet_0.4.0-3.debian.tar.gz
 d2a01c834b59f42ef320ff57d0d9f1b077f5f822 149550 fracplanet_0.4.0-3_amd64.deb
Checksums-Sha256: 
 0e5345cd72720f2c19adb5ef392ef4dad4da012522a99744de62af4397d42469 1832 
fracplanet_0.4.0-3.dsc
 a45aa705fc52d5e815c36198e7f1651774688dfbb90dd197e0b62a2379f2967f 3522 
fracplanet_0.4.0-3.debian.tar.gz
 6110e1e3f0f5fcb86d72722400ed3abc6eb705e176913046032bd287a84b27ff 149550 
fracplanet_0.4.0-3_amd64.deb
Files: 
 3f897df4cfc5fcfcaeb35606f095bed8 1832 graphics optional fracplanet_0.4.0-3.dsc
 123d706a5b229c2656a8125dfc2b9e2f 3522 graphics optional 
fracplanet_0.4.0-3.debian.tar.gz
 2a4519054aef6f810635797da3214b3a 149550 graphics optional 
fracplanet_0.4.0-3_amd64.deb

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

iQIcBAEBCAAGBQJP8GjAAAoJEOxkTtbr1QJDI10P/2lEURvwCj44bAdKWzwOFnIi
cQDFn8KN/pzFztHkEGOWECBLQ370Nbvtt3e2sKnEM+FcwMf3znEyAnDJbB+1a11F
LQZ6ASaJBy05q7g1LMxccP3ZwUUnl1nvjRYS63rTPa3wlZnK+4wk+Z1vCcolbf5L

Processed: tagging 679765

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 679765 + fixed-upstream
Bug #679765 [puppetmaster] puppetmaster - CA prone to MD5 collision attacks
Added tag(s) fixed-upstream.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679765: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679765
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#676014: scim-skk: Patch for scim-skk to be built with gtk3 and the latest scim.

2012-07-01 Thread Tz-Huan Huang
Package: scim-skk
Version: 0.5.2-7
Followup-For: Bug #676014

Dear Maintainer,

Here is the patch to let scim-skk build-able with gtk3 and the latest scim.
Please consider accept it, thanks.

Tz-Huan



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

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

Versions of packages scim-skk depends on:
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-33
ii  libcairo2   1.12.2-1
ii  libfontconfig1  2.9.0-6
ii  libfreetype62.4.9-1
ii  libgcc1 1:4.7.0-8
ii  libglib2.0-02.32.3-1
ii  libgtk2.0-0 2.24.10-1
ii  libpango1.0-0   1.30.0-1
ii  libscim8c2a 1.4.13-5
ii  libstdc++6  4.7.0-8
ii  scim1.4.13-5
ii  skkdic  20110529-1

scim-skk recommends no packages.

scim-skk suggests no packages.

-- no debconf information
diff --git a/bootstrap b/bootstrap
index b28695b..433e35e 100755
--- a/bootstrap
+++ b/bootstrap
@@ -20,9 +20,9 @@
 #! /bin/sh
 
 set -x
-aclocal-1.9 -I m4
+aclocal -I m4
 autoheader
 libtoolize -c --automake 
-automake-1.9 --add-missing --copy --include-deps
+automake --add-missing --copy --include-deps
 autoconf
 ## @end 1
diff --git a/src/scim_skk_imengine_setup.cpp b/src/scim_skk_imengine_setup.cpp
index f881e33..47b5c16 100644
--- a/src/scim_skk_imengine_setup.cpp
+++ b/src/scim_skk_imengine_setup.cpp
@@ -179,7 +179,10 @@ static GtkWidget* __widget_annot_target= 0;
 static GtkWidget* __widget_annot_highlight = 0;
 static GtkWidget* __widget_ignore_return   = 0;
 static GtkWidget* __widget_selection_style = 0;
+#if GTK_CHECK_VERSION(2, 12, 0)
+#else
 static GtkTooltips  * __widget_tooltips= 0;
+#endif
 
 static KeyboardConfigData __config_keyboards_common [] =
 {
@@ -477,25 +480,43 @@ create_combo_widget (const char *label_text, GtkWidget **widget,
 {
 GtkWidget *hbox, *label;
 
+#if GTK_CHECK_VERSION(3, 0, 0)
+hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
+#else
 hbox = gtk_hbox_new (FALSE, 0);
+#endif
 gtk_widget_show (hbox);
 
 label = gtk_label_new (label_text);
 gtk_widget_show (label);
 gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 4);
 
+#if GTK_CHECK_VERSION(2, 4, 0)
+*widget = gtk_combo_box_text_new_with_entry ();
+gtk_editable_set_editable (
+GTK_EDITABLE (gtk_bin_get_child (GTK_BIN (*widget))), FALSE);
+#else
 *widget = gtk_combo_new ();
 gtk_combo_set_value_in_list (GTK_COMBO (*widget), TRUE, FALSE);
 gtk_combo_set_case_sensitive (GTK_COMBO (*widget), TRUE);
-gtk_entry_set_editable (GTK_ENTRY (GTK_COMBO (*widget)-entry), FALSE);
+gtk_editable_set_editable (GTK_EDITABLE (GTK_COMBO (*widget)-entry), FALSE);
+#endif
 gtk_widget_show (*widget);
 gtk_box_pack_start (GTK_BOX (hbox), *widget, FALSE, FALSE, 4);
+#if GTK_CHECK_VERSION(2, 4, 0)
+g_object_set_data (G_OBJECT (gtk_bin_get_child (GTK_BIN (*widget))), DATA_POINTER_KEY,
+   (gpointer) candidates_p);
+g_signal_connect ((gpointer) gtk_bin_get_child (GTK_BIN (*widget)), changed,
+  G_CALLBACK (on_default_combo_changed),
+  data_p);
+#else
 g_object_set_data (G_OBJECT (GTK_COMBO (*widget)-entry), DATA_POINTER_KEY,
(gpointer) candidates_p);
-
 g_signal_connect ((gpointer) GTK_COMBO (*widget)-entry, changed,
   G_CALLBACK (on_default_combo_changed),
   data_p);
+#endif
+
 
 return hbox;
 }
@@ -506,7 +527,11 @@ create_color_button (ColorConfigData *entry)
 GtkWidget *hbox, *label = NULL;
 if (!entry) return NULL;
 
+#if GTK_CHECK_VERSION(3, 0, 0)
+hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
+#else
 hbox = gtk_hbox_new (FALSE, 0);
+#endif
 gtk_widget_show (hbox);
 
 if (entry-label) {
@@ -528,11 +553,18 @@ create_color_button (ColorConfigData *entry)
 if (label)
 gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry-widget);
 
+#if GTK_CHECK_VERSION(2, 12, 0)
+#else
 if (!__widget_tooltips)
 __widget_tooltips = gtk_tooltips_new();
+#endif
 if (entry-tooltip)
+#if GTK_CHECK_VERSION(2, 12, 0)
+gtk_widget_set_tooltip_text(entry-widget, _(entry-tooltip));
+#else
 gtk_tooltips_set_tip(__widget_tooltips, entry-widget,
  _(entry-tooltip), NULL);
+#endif
 
 return hbox;
 }
@@ -558,7 +590,11 @@ create_options_page ()
 GtkWidget *annot_widgets, *bgcolor_widgets;
 gchar *markup;
 
+#if GTK_CHECK_VERSION(3, 0, 0)
+vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
+#else
 vbox = gtk_vbox_new (FALSE, 0);
+#endif
 gtk_widget_show (vbox);
 
 /* title 1 */
@@ -574,7 +610,11 @@ create_options_page ()
 
 
 /* list size */
-widget= 

Processed: bug 679765 is forwarded to http://projects.puppetlabs.com/issues/13435

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forwarded 679765 http://projects.puppetlabs.com/issues/13435
Bug #679765 [puppetmaster] puppetmaster - CA prone to MD5 collision attacks
Set Bug forwarded-to-address to 'http://projects.puppetlabs.com/issues/13435'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679765: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679765
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: tagging 679765

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 679765 + confirmed upstream
Bug #679765 [puppetmaster] puppetmaster - CA prone to MD5 collision attacks
Added tag(s) upstream and confirmed.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679765: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679765
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#679790: 389-ds-base: Package will not install because of unsatisfied dependancy

2012-07-01 Thread Nikolai Lusan
Package: 389-ds-base
Version: 1.2.11.7-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

While I am glad to see that this package has finally made it into Debian it 
carries a dependancy on libdb4.8 (aswell as libdb5.1). libdb4.8 is unavailable
and hence the package will not install.

Thanks

-- 
Nikolai Lusan niko...@lusan.id.au

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

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



-- 
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#661402: manpages-dev: removal of manpages-dev makes files disappear from libaio-dev

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 661402 libaio-dev
Bug #661402 [manpages-dev] manpages-dev: removal of manpages-dev makes files 
disappear from libaio-dev
Bug reassigned from package 'manpages-dev' to 'libaio-dev'.
No longer marked as found in versions manpages/3.40-0.1 and manpages/3.35-0.1.
Ignoring request to alter fixed versions of bug #661402 to the same values 
previously set
 forcemerge 650108 661402
Bug #650108 {Done: Guillem Jover guil...@debian.org} [libaio-dev] trying to 
overwrite '/usr/share/man/man2/io_getevents.2.gz', which is also in package 
manpages-dev 3.25-1
Bug #661402 [libaio-dev] manpages-dev: removal of manpages-dev makes files 
disappear from libaio-dev
Severity set to 'important' from 'serious'
Marked Bug as done
Removed indication that 661402 affects libaio-dev
Marked as fixed in versions libaio/0.3.109-3.
Marked as found in versions libaio/0.3.107-7.
Merged 650108 661402
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
650108: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650108
661402: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=661402
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#679178: marked as done (FTBFS on armel: selected processor does not support ARM mode `pld [r1]')

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 15:47:54 +
with message-id e1slmno-0003mc...@franck.debian.org
and subject line Bug#679178: fixed in mpeg2dec 0.5.1-4
has caused the Debian Bug report #679178,
regarding FTBFS on armel: selected processor does not support ARM mode `pld 
[r1]'
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.)


-- 
679178: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679178
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: mpeg2dec
Version: 0.5.1-3
Severity: serious
Justification: fails to build from source


mpeg2dec fails to build from source on armel, but built in the past:

motion_comp_arm_s.S:200: Error: selected processor does not support ARM mode 
`pld [r1]'
motion_comp_arm_s.S:215: Error: selected processor does not support ARM mode 
`pld [r1]'
motion_comp_arm_s.S:230: Error: selected processor does not support ARM mode 
`pld [r1]'
motion_comp_arm_s.S:254: Error: selected processor does not support ARM mode 
`pld [r1]'
motion_comp_arm_s.S:275: Error: selected processor does not support ARM mode 
`pld [r1]'
motion_comp_arm_s.S:287: Error: selected processor does not support ARM mode 
`pld [r1]'
motion_comp_arm_s.S:300: Error: selected processor does not support ARM mode 
`pld [r1]'
motion_comp_arm_s.S:313: Error: selected processor does not support ARM mode 
`pld [r1]'
make[3]: *** [motion_comp_arm_s.lo] Error 1
make[3]: Leaving directory 
`/build/buildd-mpeg2dec_0.5.1-3-armel-Uix7W9/mpeg2dec-0.5.1/libmpeg2'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory 
`/build/buildd-mpeg2dec_0.5.1-3-armel-Uix7W9/mpeg2dec-0.5.1/libmpeg2'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory 
`/build/buildd-mpeg2dec_0.5.1-3-armel-Uix7W9/mpeg2dec-0.5.1'
make: *** [debian/stamp-makefile-build] Error 2

https://buildd.debian.org/status/fetch.php?pkg=mpeg2decarch=armelver=0.5.1-3stamp=1338780719


---End Message---
---BeginMessage---
Source: mpeg2dec
Source-Version: 0.5.1-4

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

libmpeg2-4-dev_0.5.1-4_amd64.deb
  to main/m/mpeg2dec/libmpeg2-4-dev_0.5.1-4_amd64.deb
libmpeg2-4_0.5.1-4_amd64.deb
  to main/m/mpeg2dec/libmpeg2-4_0.5.1-4_amd64.deb
mpeg2dec_0.5.1-4.debian.tar.gz
  to main/m/mpeg2dec/mpeg2dec_0.5.1-4.debian.tar.gz
mpeg2dec_0.5.1-4.dsc
  to main/m/mpeg2dec/mpeg2dec_0.5.1-4.dsc
mpeg2dec_0.5.1-4_amd64.deb
  to main/m/mpeg2dec/mpeg2dec_0.5.1-4_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 679...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loïc Minier l...@debian.org (supplier of updated mpeg2dec 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: Sun, 01 Jul 2012 16:57:29 +0200
Source: mpeg2dec
Binary: libmpeg2-4-dev libmpeg2-4 mpeg2dec
Architecture: source amd64
Version: 0.5.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Loïc Minier l...@debian.org
Description: 
 libmpeg2-4 - MPEG1 and MPEG2 video decoder library
 libmpeg2-4-dev - libmpeg2 development libraries and headers
 mpeg2dec   - Simple libmpeg2 video decoder application
Closes: 679178
Changes: 
 mpeg2dec (0.5.1-4) unstable; urgency=low
 .
   * Fix ARM tests in configure.ac to check for availability of the pld [r1]
 assembly snippet rather than relying on triplets; drop ARM specific logic
 from rules; closes: #679178.  NB: these ARM specific optimizations aren't
 picked up at runtime due to lack of autodetection on ARM.
Checksums-Sha1: 
 be984287ae44c3e0143c6d1c82aa727bd388b102 1557 mpeg2dec_0.5.1-4.dsc
 49282c95d045ffd494e2f67014c5020b02e7d230 569019 mpeg2dec_0.5.1-4.debian.tar.gz
 5487af3653880caf23128c6f6ca2194e71a82b1b 88750 libmpeg2-4-dev_0.5.1-4_amd64.deb
 c483c92634433a8b579a476dedf389427c304fd0 71418 libmpeg2-4_0.5.1-4_amd64.deb
 608ab05e0892996f194289d295cf87a64a6cbae5 43658 mpeg2dec_0.5.1-4_amd64.deb
Checksums-Sha256: 
 e0ecac49af6f4f340dd730ff9cb5a7312e1cf525ab8e9ed80c5dfce8ed847b4b 1557 
mpeg2dec_0.5.1-4.dsc
 1d0016a009225df1c9e3ecc629d997e038ccca893d7b6b20f379d6bc49f82f9c 569019 

Bug#678072: marked as done (puppet-lint: fails to run)

2012-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 01 Jul 2012 17:53:27 +0200
with message-id 87pq8fa360@dagon.fnord.no
and subject line This should be fixed
has caused the Debian Bug report #678072,
regarding puppet-lint: fails to run
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.)


-- 
678072: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=678072
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: puppet-lint
Version: 0.1.13-1
Severity: important

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


$ puppet-lint
Unable to require puppet.  Please gem install puppet and try again.

Running puppet-lint fails every time, with or without any arguments.  This
coincided with a recent change of ruby to default to 1.9.1 instead of 1.8. The
puppet-common package, which puppet-lint depends on, doesn't include support
for 1.9.1.

You can get this working by changing the default ruby back to 1.8 using
update-alternatives. Though this seems like it will break other software
eventually.

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


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

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

Versions of packages puppet-lint depends on:
ii  puppet-common 2.7.14-1
ii  ruby  4.9
ii  ruby1.8 [ruby-interpreter]1.8.7.358-4
ii  ruby1.9.1 [ruby-interpreter]  1.9.3.194-1

puppet-lint recommends no packages.

Versions of packages puppet-lint suggests:
pn  rake  none

-- no debconf information


---End Message---
---BeginMessage---

After the packaging of puppet was switched to follow the new ruby
policy, this should be fixed.

-- 
Stig Sandbeck Mathisen


pgpuVgPbYNxVf.pgp
Description: PGP signature
---End Message---


Bug#679792: fldigi bundles Tango Icon Library pixmaps licensed CC-BY-SA-2.5

2012-07-01 Thread Kamal Mostafa
Package: fldigi
Version: 3.21.45-1
Severity: serious
Tags: upstream
Justification: Policy 2.1

Fldigi (src/misc/pixmaps.cxx) bundles pixmaps converted from an old version
of the Tango Icon Library which indicates its license as CC-BY-SA-2.5, a
license which is not suitable for Debian main.

Note that this has been fixed in fldigi 3.21.48 upstream (the old pixmaps are
replaced by new ones from a more recent version Tango Icon Library that was
released into the public domain).



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



Processed: tagging 679447

2012-07-01 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 679447 + moreinfo unreproducible
Bug #679447 [libcoro-perl] libcoro-perl often segfaults
Added tag(s) unreproducible and moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
679447: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679447
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#679799: rbbr: calls ruby1.9.1 but depends on ruby1.8

2012-07-01 Thread Bernhard R. Link
Package: rbbr
Version: 0.6.0-4
Severity: serious

The only binary /usr/bin/rbbr starts with:

#!/usr/bin/ruby1.9.1

but the package depends on ruby1.8:

-- System Information:
Versions of packages rbbr depends on:
ii  libgettext-ruby1.8 2.2.1-1
ii  libgtk2-ruby   1.1.3-2
ii  ruby-gettext [libgettext-ruby1.8]  2.2.1-1
ii  ruby-gtk2 [libgtk2-ruby]   1.1.3-2+b1
ii  ruby1.81.8.7.358-4

Versions of packages rbbr recommends:
ii  ri  4.9

rbbr 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#549681: bug#549681: mkvmlinuz: use xz to compress vmlinuz-boxed initrd

2012-07-01 Thread Ben Hutchings
On Sat, 2012-06-30 at 23:01 -0400, Milan Kupcevic wrote:
[...]
 --- mkvmlinuz   (revision 19233)
 +++ mkvmlinuz   (working copy)
[...]
 @@ -158,6 +153,12 @@
post_2_6_19=
  fi
  
 +if dpkg --compare-versions $release ge 2.6.38  test $arch != prep ; 
 then
 +  post_2_6_38=Yes
 +else
 +  post_2_6_38=
 +fi
 +
[...]

We should actually check for CONFIG_RD_XZ=y in /boot/config-$release, to
allow for custom kernels that don't enable it.  And of course the
variable name should be something like is_xz_supported.

Ben.

-- 
Ben Hutchings
If you seem to know what you are doing, you'll be given more to do.


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


  1   2   >