Hello, @@TO_NAME!

2009-12-24 Thread packages
Good Day...

I was wondering if you might like to chat with me?
I found your profile online and would like to get to know you better.
Please email me back me...@acemailfast.com


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



Bug#562295: and: FTBFS on GNU/kFreeBSD

2009-12-24 Thread Cyril Brulebois
Package: and
Version: 1.2.2-3
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package FTBFS on GNU/kFreeBSD because it needs a little
buildsys-related porting. I did so by using a variable to gather all CC
settings for architectures supported by Debian (Linux, GNU(/Hurd) and
GNU/kFreeBSD). There's also the '/' pitfall meaning it's needed to tweak
ARCH a bit before using it in a filename. As for the addition of the
and-GNU_kFreeBSD.c file, I've used and-GNU.c

Thanks for considering.

Mraw,
KiBi.
--- a/Makefile
+++ b/Makefile
@@ -89,13 +89,14 @@ MANPAGES=and.8 and.conf.5 and.priorities
 #
 # Determine architecture from uname(1)
 #
-ARCH=$(shell uname)
+ARCH=$(shell uname|sed 's,/,_,')
 
 #
 # Architecture-dependent settings: ANSI C compiler and linker
 #
+DEBIAN_GCC = gcc -ansi -pedantic -Wall -g
 ifeq (${ARCH},Linux)
-  CC = gcc -ansi -pedantic -Wall -g
+  CC = $(DEBIAN_GCC)
   LD = gcc
   LIBS =
 else
@@ -127,7 +128,12 @@ ifeq (${ARCH},IRIX64)
   LD = cc
 else
 ifeq (${ARCH},GNU)
-  CC = gcc -ansi -pedantic -Wall -g
+  CC = $(DEBIAN_GCC)
+  LD = gcc
+  LIBS =
+else
+ifeq (${ARCH},GNU_kFreeBSD)
+  CC = $(DEBIAN_GCC)
   LD = gcc
   LIBS =
 else
@@ -143,6 +149,7 @@ endif
 endif
 endif
 endif
+endif
 
 
 #
@@ -189,6 +196,8 @@ and-SunOS.o: and.h and-OSF1.c
 and-GNU.o: and.h and-GNU.c
 	$(CC) -c and-GNU.c
 
+and-GNU_kFreeBSD.o: and.h and-GNU_kFreeBSD.c
+	$(CC) -c and-GNU_kFreeBSD.c
 
 #
 # Create script for SysV init
--- /dev/null
+++ b/and-GNU_kFreeBSD.c
@@ -0,0 +1,136 @@
+/*
+
+AND auto nice daemon - renice programs according to their CPU usage.
+Copyright (C) 1999-2003 Patrick Schemitz 
+http://and.sourceforge.net/
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+*/
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include  /* kernel interrupt frequency: HZ */
+
+
+#include "and.h"
+
+
+/*
+
+  AND -- auto-nice daemon/GNU version.
+  
+  GNU-specific AND version. Makes excessive use of the GNU
+  /proc filesystem and is not portable.
+  
+  1999-2003 Patrick Schemitz, 
+  http://and.sourceforge.net/
+  
+*/
+
+
+static DIR *linux_procdir = 0;
+
+
+static struct and_procent linux_proc;
+
+
+int linux_readproc (char *fn)
+{
+  /* Scan /proc//stat file. Format described in proc(5).
+ l1: pid comm state ppid 
+ l2: pgrp session tty tpgid
+ l3: flags minflt cminflt majflt cmajflt
+ l4: utime stime cutime cstime
+ l5: counter priority
+  */
+  FILE* f;
+  int i;
+  long li;
+  long unsigned u, ujf, sjf;
+  char state;
+  char buffer [1024];
+  if (!(f = fopen(fn,"rt"))) return 0;
+  fscanf(f,"%d %1023s %c %d",&(linux_proc.pid),buffer,&state,&(linux_proc.ppid));
+  fscanf(f,"%d %d %d %d",&i,&i,&i,&i);
+  fscanf(f,"%lu %lu %lu %lu %lu",&u,&u,&u,&u,&u);
+  fscanf(f,"%lu %lu %ld %ld",&ujf,&sjf,&li,&li);
+  fscanf(f,"%ld %d",&li,&(linux_proc.nice));
+  i = feof(f);
+  fclose(f);
+  if (i) return 0;
+  if (state == 'Z') return 0; /* ignore zombies */
+  ujf += sjf;  /* take into account both usr and sys time */
+  ujf /= 60;   /* convert jiffies to seconds */
+  linux_proc.utime = ujf > INT_MAX ? INT_MAX: (int) ujf;
+  buffer[strlen(buffer)-1] = 0;   /* remove () around command name */
+  strncpy(linux_proc.command,&buffer[1],1023);
+  linux_proc.command[1023] = 0;
+  and_printf(3, "GNU: process %s pid: %d ppid: %d\n", 
+ linux_proc.command, linux_proc.pid, linux_proc.ppid);
+  return 1;
+}
+
+
+struct and_procent *linux_getnext ()
+{
+  char name [1024];
+  struct dirent *entry;
+  struct stat dirstat;
+  if (!linux_procdir) return NULL;
+  while ((entry = readdir(linux_procdir)) != NULL) { /* omit . .. apm bus... */
+if (isdigit(entry->d_name[0])) break;
+  }
+  if (!entry) return NULL;
+  /* stat() /proc/ directory to get uid/gid */
+  snprintf(name, 1024, "/proc/%s",entry->d_name);
+  if (stat(name,&dirstat)) return linux_getnext();
+  /* read the job's stat "file" to get command, nice level, etc */
+  snprintf(name, 1024, "/proc/%s/stat",entry->d_name);
+  if (!linux_readproc(name)) return linux_getnext();
+  linux_proc.uid = dirstat.st_uid;
+  linux_proc.gid = dirstat.st_gid;
+  return &linux_proc;
+}
+
+
+struct and_procent *linux_getfirst ()
+{
+  if (linux_procdir) {
+rewind

Bug#562359: smlnj: FTBFS: Nonexistent build-dependency: tetex-extra

2009-12-24 Thread Lucas Nussbaum
Source: smlnj
Version: 110.69-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091213 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper (>= 5), gcc-multilib [amd64]
> Build-Depends-Indep: texlive-latex-base, texlive-pictures, 
> texlive-math-extra, texlive-latex-recommended, transfig, 
> texlive-generic-extra, tetex-extra, dvi2ps, dvipdfmx, ghostscript
> 
> ┌──┐
> │ Install build dependencies  
>  │
> └──┘
> 
> Checking for already installed source dependencies...
> debhelper: missing
> Using default version 7.4.10
> gcc-multilib: missing
> texlive-latex-base: missing
> texlive-pictures: missing
> texlive-math-extra: missing
> texlive-latex-recommended: missing
> transfig: missing
> texlive-generic-extra: missing
> tetex-extra: missing
> dvi2ps: missing
> dvipdfmx: missing
> ghostscript: missing
> Checking for source dependency conflicts...
> E: Package tetex-extra has no installation candidate

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/12/13/smlnj_110.69-1_lsid64.buildlog

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

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

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



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



Bug#562353: apcupsd: FTBFS: Nonexistent build-dependency: tetex-bin

2009-12-24 Thread Lucas Nussbaum
Source: apcupsd
Version: 3.14.6-3
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091213 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper (>= 7), autotools-dev, quilt, mawk | awk, 
> libgd2-noxpm-dev, libncurses5-dev | libncurses-dev, libsnmp-dev, libssl-dev, 
> libwrap0-dev, po-debconf, tetex-bin, texinfo, tcpd
> 
> ┌──┐
> │ Install build dependencies  
>  │
> └──┘
> 
> Checking for already installed source dependencies...
> debhelper: missing
> Using default version 7.4.10
> autotools-dev: missing
> quilt: missing
> mawk: already installed (1.3.3-15)
> libgd2-noxpm-dev: missing
> libncurses5-dev: missing
> libncurses-dev: missing
> libsnmp-dev: missing
> libssl-dev: missing
> libwrap0-dev: missing
> po-debconf: missing
> tetex-bin: missing
> texinfo: missing
> tcpd: missing
> Checking for source dependency conflicts...
> E: Package tetex-bin has no installation candidate

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/12/13/apcupsd_3.14.6-3_lsid64.buildlog

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

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

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



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



Processed: [sun-java6-plugin] Does not work at all, raising severity

2009-12-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 534174 grave
Bug #534174 [sun-java6-plugin] sun-java6-plugin: package does not register with 
alternatives
Severity set to 'grave' from 'important'

> quit
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#534174: [sun-java6-plugin] Does not work at all, raising severity

2009-12-24 Thread Bastian Venthur
severity 534174 grave
quit

Package does not work at all, rising severity.




-- 
Bastian Venthur  http://venthur.de
Debian Developer venthur at debian org




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



Bug#562373: valknut: FTBFS: Nonexistent build-dependency: libdc0-dev

2009-12-24 Thread Lucas Nussbaum
Source: valknut
Version: 0.3.13-1
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091213 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper (>= 5.0.0), cdbs, docbook-to-man, libdc0-dev (>= 
> 0.3.13), libqt3-mt-dev, libqt3-i18n, libxml2-dev, libpng12-dev, zlib1g-dev, 
> libssl-dev, libbz2-dev
> 
> ┌──┐
> │ Install build dependencies  
>  │
> └──┘
> 
> Checking for already installed source dependencies...
> debhelper: missing
> Using default version 7.4.10
> cdbs: missing
> docbook-to-man: missing
> libdc0-dev: missing
> libqt3-mt-dev: missing
> libqt3-i18n: missing
> libxml2-dev: missing
> libpng12-dev: missing
> zlib1g-dev: missing
> libssl-dev: missing
> libbz2-dev: missing
> Checking for source dependency conflicts...
> E: Package libdc0-dev has no installation candidate

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/12/13/valknut_0.3.13-1_lsid64.buildlog

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

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

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



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



Bug#560940: CVE-2009-3560 and CVE-2009-3720 denial-of-services

2009-12-24 Thread Sylvain Beucler
On Tue, Dec 15, 2009 at 01:31:30PM +0100, Sylvain Beucler wrote:
> Patched package available at:
> http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=tla

Ben noticed that part of the bundled libexpat was still used.

I missed 2 "-I ../lib/expat" occurrences, I'll upload a new version in
a bit.

-- 
Sylvain


signature.asc
Description: Digital signature


Bug#562407: graphviz: Depends on python2.4 packages

2009-12-24 Thread dktrkranz
Source: graphviz
Version: 2.20.2-6
Severity: important
User: debian-pyt...@lists.debian.org
Usertags: python2.4-removal

Squeze will release with Python 2.5 and Python 2.6, while Python 2.4
is scheduled for removal when no packages will depend on it. Recent
python-defaults disabled support for Python 2.4 already, so it is no
longer supported version for module and extension building.

This package build-depends or depends on one or more packages built
on top of the python2.4 source package, and will be uninstallable
when they will be removed from Sid and Squeeze.

You should consider dropping build-dependencies and dependencies on
those packages, checking if code is compatible with newer releases of
Python. These links explain changes introduced and should ease your
work:

* http://docs.python.org/whatsnew/2.5.html

* http://docs.python.org/whatsnew/2.6.html 



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



Bug#560940: CVE-2009-3560 and CVE-2009-3720 denial-of-services

2009-12-24 Thread Sylvain Beucler
> > Patched package available at:
> > http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=tla

The fixed version is up.

$ interdiff tla1.diff tla2.diff | diffstat
 patches/06-disable_builtin_expat.dpatch |   50 +++-
 rules   |5 +--
 2 files changed, 34 insertions(+), 21 deletions(-)


diff -u tla-1.3.5+dfsg/debian/rules tla-1.3.5+dfsg/debian/rules
--- tla-1.3.5+dfsg/debian/rules
+++ tla-1.3.5+dfsg/debian/rules
@@ -56,8 +56,9 @@
 
# Disable builtin expat
# See also patches/06-disable_builtin_expat.dpatch
-   rm -f src/expat/PLUGIN/AUTOCONF
-   rm -f src/expat/PLUGIN/REQ
+   #rm -f src/expat/PLUGIN/AUTOCONF
+   #rm -f src/expat/PLUGIN/REQ
+   rm -rf src/expat/  # Let's play safe
rm -f src/libneon/PLUGIN/REQ
 
# Cleaning package
diff -u tla-1.3.5+dfsg/debian/patches/06-disable_builtin_expat.dpatch 
tla-1.3.5+dfsg/debian/patches/06-disable_builtin_expat.dpatch
--- tla-1.3.5+dfsg/debian/patches/06-disable_builtin_expat.dpatch
+++ tla-1.3.5+dfsg/debian/patches/06-disable_builtin_expat.dpatch
@@ -2,22 +2,12 @@
 ## 06-disable_builtin_expat.dpatch by Sylvain Beucler 
 ##
 ## All lines beginning with `## DP:' are a description of the patch.
-## DP: use system expat to address CVE-2009-3560 and CVE-2009-3720 DoS
-## DP: see also debian/rules, target 'clean'
+## DP: No description.
 
 tla-1.3.5+dfsg.orig/src/tla/tla/Makefile.in
-+++ tla-1.3.5+dfsg/src/tla/tla/Makefile.in
-@@ -21,7 +21,7 @@
- endif
- 
- $(programs):%$(cfg__exec_suffix):%.o $(thelib) $(filter-out -L%, $(filter-out 
-l%, $(libs)))
--  $(SHELL) $(objroot)/libneon/libtool --mode=link $(CC) $(CFLAGS) 
-L../../expat -o $@ $< $(thelib) $(libs)
-+  $(SHELL) $(objroot)/libneon/libtool --mode=link $(CC) $(CFLAGS) -o $@ 
$< $(thelib) $(libs)
- 
- clean: clean-prog
- 
 tla-1.3.5+dfsg.orig/src/libneon/Makefile.in
-+++ tla-1.3.5+dfsg/src/libneon/Makefile.in
+...@dpatch@
+diff -urNad tla-1.3.5+dfsg~/src/libneon/Makefile.in 
tla-1.3.5+dfsg/src/libneon/Makefile.in
+--- tla-1.3.5+dfsg~/src/libneon/Makefile.in2009-12-24 12:30:27.0 
+0100
 tla-1.3.5+dfsg/src/libneon/Makefile.in 2009-12-24 12:30:41.0 
+0100
 @@ -33,7 +33,7 @@
  
  @SET_MAKE@
@@ -30,11 +20,33 @@
 tla-1.3.5+dfsg.orig/src/libneon/src/Makefile.in
-+++ tla-1.3.5+dfsg/src/libneon/src/Makefile.in
-@@ -26,7 +26,7 @@
+diff -urNad tla-1.3.5+dfsg~/src/libneon/src/Makefile.in 
tla-1.3.5+dfsg/src/libneon/src/Makefile.in
+--- tla-1.3.5+dfsg~/src/libneon/src/Makefile.in2009-12-24 
12:30:27.0 +0100
 tla-1.3.5+dfsg/src/libneon/src/Makefile.in 2009-12-24 12:31:28.0 
+0100
+@@ -25,14 +25,14 @@
+ 
  # Flags
  CPPFLAGS = @DEFS@ @CPPFLAGS@
- CFLAGS = @CFLAGS@  -I$(top_builddir) -I$(top_srcdir)/../expat/lib 
@NEON_CFLAGS@
+-CFLAGS = @CFLAGS@  -I$(top_builddir) -I$(top_srcdir)/../expat/lib 
@NEON_CFLAGS@
 -LDFLAGS = -L$(top_builddir)/../expat @LDFLAGS@
++CFLAGS = @CFLAGS@  -I$(top_builddir) @NEON_CFLAGS@
 +LDFLAGS = @LDFLAGS@
  NEON_LINK_FLAGS = @NEON_LINK_FLAGS@
  # Note: don't substitute @LIBS@ in here; during a bundled
  # build of this directory, @LIBS@ may include -lneon.
+ LIBS = @NEON_LIBS@ @NEON_LTLIBS@
+ 
+-COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS)  -I$(top_builddir) 
-I$(top_srcdir)/../expat/lib @NEON_CFLAGS@
++COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS)  -I$(top_builddir) @NEON_CFLAGS@
+ LINK = $(LIBTOOL) --quiet --mode=link $(CC) $(LDFLAGS)
+ 
+ NEON_BASEOBJS = ne_reque...@neon_objext@ ne_sessi...@neon_objext@ \
+diff -urNad tla-1.3.5+dfsg~/src/tla/tla/Makefile.in 
tla-1.3.5+dfsg/src/tla/tla/Makefile.in
+--- tla-1.3.5+dfsg~/src/tla/tla/Makefile.in2009-12-24 12:30:27.0 
+0100
 tla-1.3.5+dfsg/src/tla/tla/Makefile.in 2009-12-24 12:30:41.0 
+0100
+@@ -21,7 +21,7 @@
+ endif
+ 
+ $(programs):%$(cfg__exec_suffix):%.o $(thelib) $(filter-out -L%, $(filter-out 
-l%, $(libs)))
+-  $(SHELL) $(objroot)/libneon/libtool --mode=link $(CC) $(CFLAGS) 
-L../../expat -o $@ $< $(thelib) $(libs)
++  $(SHELL) $(objroot)/libneon/libtool --mode=link $(CC) $(CFLAGS) -o $@ 
$< $(thelib) $(libs)
+ 
+ clean: clean-prog
+ 


signature.asc
Description: Digital signature


Bug#562407: graphviz: Depends on python2.4 packages

2009-12-24 Thread David Claughton
dktrkr...@debian.org wrote:
> Source: graphviz
> Version: 2.20.2-6
> Severity: important
> User: debian-pyt...@lists.debian.org
> Usertags: python2.4-removal
> 
> Squeze will release with Python 2.5 and Python 2.6, while Python 2.4
> is scheduled for removal when no packages will depend on it. Recent
> python-defaults disabled support for Python 2.4 already, so it is no
> longer supported version for module and extension building.
> 
> This package build-depends or depends on one or more packages built
> on top of the python2.4 source package, and will be uninstallable
> when they will be removed from Sid and Squeeze.
> 
> You should consider dropping build-dependencies and dependencies on
> those packages, checking if code is compatible with newer releases of
> Python. These links explain changes introduced and should ease your
> work:
> 
> * http://docs.python.org/whatsnew/2.5.html
> 
> * http://docs.python.org/whatsnew/2.6.html 
> 
> 
> 
> 

Hi,

I'm currently working on the packaging for the latest upstream version
(2.26.0) and I have made the necessary changes in the git repo on
collab-maint [1]

I do not currently anticipate any need to update the 2.20 version.

[1]
http://git.debian.org/?p=collab-maint/graphviz.git;a=shortlog;h=refs/heads/dev-2.26


Cheers,

David.



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



Bug#560506: marked as done (debtags-edit: FTBFS: string.h:63: error: 'vasprintf' was not declared in this scope)

2009-12-24 Thread Debian Bug Tracking System
Your message dated Thu, 24 Dec 2009 18:16:13 +0100
with message-id <20091224171613.ga30...@xanadu.blop.info>
and subject line Re: Bug#560506: debtags-edit: FTBFS: string.h:63: error: 
'vasprintf' was not declared in this scope
has caused the Debian Bug report #560506,
regarding debtags-edit: FTBFS: string.h:63: error: 'vasprintf' was not declared 
in this scope
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.)


-- 
560506: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560506
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: debtags-edit
Version: 1.5
Severity: serious
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20091210 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
> g++ -DHAVE_CONFIG_H -I. -I.. -I/usr/include/tagcoll-2.0.11   -D_REENTRANT 
> -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include 
> -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include 
> -I/usr/include/giomm-2.4 -I/usr/lib/giomm-2.4/include 
> -I/usr/include/pangomm-1.4 -I/usr/lib/pangomm-1.4/include 
> -I/usr/include/gtk-2.0 -I/usr/include/gtk-unix-print-2.0 
> -I/usr/include/atkmm-1.6 -I/usr/include/gdkmm-2.4 
> -I/usr/lib/gdkmm-2.4/include -I/usr/include/glibmm-2.4 
> -I/usr/lib/glibmm-2.4/include -I/usr/include/glib-2.0 
> -I/usr/lib/glib-2.0/include -I/usr/include/cairomm-1.0 
> -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 
> -I/usr/include/freetype2 -I/usr/include/directfb -I/usr/include/libpng12 
> -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0  -Wall -g -O2 -g -Wall 
> -O2 -c -o DebtagsDocument.o DebtagsDocument.cc
> In file included from /usr/include/wibble/test.h:3,
>  from /usr/include/wibble/exception.h:25,
>  from /usr/include/ept/apt/apt.h:27,
>  from DebtagsDocument.h:26,
>  from DebtagsDocument.cc:23:
> /usr/include/wibble/string.h: In function 'std::string 
> wibble::str::fmt(std::string, ...)':
> /usr/include/wibble/string.h:63: error: 'vasprintf' was not declared in this 
> scope
> make[3]: *** [DebtagsDocument.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2009/12/10/debtags-edit_1.5_lsid64.buildlog

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

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

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


--- End Message ---
--- Begin Message ---
no longer fails, closing

On 11/12/09 at 09:12 +0100, Lucas Nussbaum wrote:
> Source: debtags-edit
> Version: 1.5
> Severity: serious
> User: debian...@lists.debian.org
> Usertags: qa-ftbfs-20091210 qa-ftbfs
> Justification: FTBFS on amd64
> 
> Hi,
> 
> During a rebuild of all packages in sid, your package failed to build on
> amd64.
> 
> Relevant part:
> > g++ -DHAVE_CONFIG_H -I. -I.. -I/usr/include/tagcoll-2.0.11   -D_REENTRANT 
> > -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include 
> > -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include 
> > -I/usr/include/giomm-2.4 -I/usr/lib/giomm-2.4/include 
> > -I/usr/include/pangomm-1.4 -I/usr/lib/pangomm-1.4/include 
> > -I/usr/include/gtk-2.0 -I/usr/include/gtk-unix-print-2.0 
> > -I/usr/include/atkmm-1.6 -I/usr/include/gdkmm-2.4 
> > -I/usr/lib/gdkmm-2.4/include -I/usr/include/glibmm-2.4 
> > -I/usr/lib/glibmm-2.4/include -I/usr/include/glib-2.0 
> > -I/usr/lib/glib-2.0/include -I/usr/include/cairomm-1.0 
> > -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 
> > -I/usr/include/freetype2 -I/usr/include/directfb -I/usr/include/libpng12 
> > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0  -Wall -g -O2 -g 
> > -Wall -O2 -c -o DebtagsDocument.o DebtagsDocument.cc
> > In file included from /usr/include/wibble/test.h:3,
> >  from /usr/include/wibble/exception.h:25,
> >  from /usr/include/ept/apt/apt.h:27,
> >  from DebtagsDocument.h:26,
> >  from DebtagsDocument.cc:23:
> > /usr/include/wibble/string.h: In function 'std::string 
> > wibble::str::fmt(std::string, ...)':
> > /usr/include/wibble/string.h:63: error: 'vasprintf' was not declared in 
> > this scope
> > make[3]: *** [DebtagsDocument.o] Error 1
> 
> The full build

Bug#562476: libmusicbrainz-2.1: Depends on ctypes

2009-12-24 Thread dktrkranz
Source: libmusicbrainz-2.1
Version: 2.1.5-3
Severity: important
User: debian-pyt...@lists.debian.org
Usertags: python2.4-removal

Your package build-depends or depends on packages built on top of
ctypes source package, which is scheduled to be removed soon due to
python2.4 removal.

ctypes is already part of standard library since Python 2.5, so you
should remove its packages from Build-Depends or Depends and bump
python to be at least >= 2.5. 



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



Bug#562477: pynetsnmp: Depends on ctypes

2009-12-24 Thread dktrkranz
Source: pynetsnmp
Version: 0.28.13-2
Severity: important
User: debian-pyt...@lists.debian.org
Usertags: python2.4-removal

Your package build-depends or depends on packages built on top of
ctypes source package, which is scheduled to be removed soon due to
python2.4 removal.

ctypes is already part of standard library since Python 2.5, so you
should remove its packages from Build-Depends or Depends and bump
python to be at least >= 2.5. 



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



Processing of remotefs_0.11+debian-3_i386.changes

2009-12-24 Thread Archive Administrator
remotefs_0.11+debian-3_i386.changes uploaded successfully to localhost
along with the files:
  remotefs_0.11+debian-3.dsc
  remotefs_0.11+debian-3.diff.gz
  rfs-client_0.11+debian-3_i386.deb
  rfs-server_0.11+debian-3_i386.deb

Greetings,

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


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



Bug#526671: marked as done (FTBFS with GCC 4.4: dereferencing pointer breaks strict-aliasing rules)

2009-12-24 Thread Debian Bug Tracking System
Your message dated Fri, 25 Dec 2009 03:18:57 +
with message-id 
and subject line Bug#526671: fixed in remotefs 0.11+debian-3
has caused the Debian Bug report #526671,
regarding FTBFS with GCC 4.4: dereferencing pointer breaks strict-aliasing rules
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.)


-- 
526671: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526671
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: remotefs
Version: 0.11+debian-1
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.4

Your package fails to build with GCC 4.4.  You can reproduce this problem
with gcc-4.4/g++-4.4 from unstable.

> Automatic build of remotefs_0.11+debian-1 on em64t by sbuild/amd64 0.53
...
> Compile src/server.o
> cc1: warnings being treated as errors
> src/server.c: In function 'handle_connection':
> src/server.c:240: error: dereferencing pointer 'client_addr.26' does break 
> strict-aliasing rules
> src/server.c:240: note: initialized from here
> make[3]: *** [src/server.o] Error 1
> make[3]: Leaving directory `/build/tbm/remotefs-0.11+debian'

-- 
Martin Michlmayr
http://www.cyrius.com/


--- End Message ---
--- Begin Message ---
Source: remotefs
Source-Version: 0.11+debian-3

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

remotefs_0.11+debian-3.diff.gz
  to main/r/remotefs/remotefs_0.11+debian-3.diff.gz
remotefs_0.11+debian-3.dsc
  to main/r/remotefs/remotefs_0.11+debian-3.dsc
rfs-client_0.11+debian-3_i386.deb
  to main/r/remotefs/rfs-client_0.11+debian-3_i386.deb
rfs-server_0.11+debian-3_i386.deb
  to main/r/remotefs/rfs-server_0.11+debian-3_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 526...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Barry deFreese  (supplier of updated remotefs package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 24 Dec 2009 20:16:28 -0500
Source: remotefs
Binary: rfs-client rfs-server
Architecture: source i386
Version: 0.11+debian-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group 
Changed-By: Barry deFreese 
Description: 
 rfs-client - simple user-space network file system for embedded systems (clien
 rfs-server - simple user-space network file system for embedded systems (serve
Closes: 526671
Changes: 
 remotefs (0.11+debian-3) unstable; urgency=low
 .
   * QA upload.
   * Add quilt patch system.
   * 01_gcc_44.diff - Fix aliasing with gcc-4.4. (Closes: #526671).
 + Patch taken from David Sugar at Ubuntu, thanks.
   * Update init to check if file exists. (Policy 9.3.2).
   * Add watch file.
Checksums-Sha1: 
 d5be9efcad936c26eca853bfb4df69d1e9073b89 1097 remotefs_0.11+debian-3.dsc
 b4e086277e09cca16b5d944aa97e3ee1d3dd1e8b 4492 remotefs_0.11+debian-3.diff.gz
 7b3b40225aaa56f100c176117474158c24f40470 36424 
rfs-client_0.11+debian-3_i386.deb
 66d1d60d0e61ba22890b22678e4228819ff0508d 36206 
rfs-server_0.11+debian-3_i386.deb
Checksums-Sha256: 
 ee51fe4782ec76e687d34c2d1933dd10503db28994aa93483297b7979b84a3e6 1097 
remotefs_0.11+debian-3.dsc
 8b3034cc3ac6b2b634b460ea2ff1758cca2b732a0ab6238d88011bc1ddf27565 4492 
remotefs_0.11+debian-3.diff.gz
 511b7770269501fdf57a568cf2f004a9c53ac857abbdf54d4e474c3a1a7a67dd 36424 
rfs-client_0.11+debian-3_i386.deb
 fd42bd49e6a764c1ccc598ddab3a0a30623c7f7320e63a4616ba3c960dbeb699 36206 
rfs-server_0.11+debian-3_i386.deb
Files: 
 cedab4915bc91a140e3e12c8b274418c 1097 net optional remotefs_0.11+debian-3.dsc
 100b192cd8dc8bc82d7f895065fbf685 4492 net optional 
remotefs_0.11+debian-3.diff.gz
 c776169fdf165e4f46623ae1ab3d953d 36424 net optional 
rfs-client_0.11+debian-3_i386.deb
 9f0de34b4b68cac919d254bbfe481efb 36206 net optional 
rfs-server_0.11+debian-3_i386.deb

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

iEYEARECAAYFAks0IvYACgkQ5ItltUs5T34ctACdHt+/EUjVLyjUMpzUrQJtDSS6
HRUAmgKfrJDE3t20gO9JwDoJYIaYabUA
=cJeO
-END PGP SIGNATURE-


--- End Message ---


sun-java6-jre does not work on Debian Sid - Fix immediately

2009-12-24 Thread Jiri Kanicky

Hi.

New update broke my java. Can you someone test it before releasing 
something nonfunctional.



--

Jiri




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