Bug#325155: marked as done (warped: FTBFS: Please change the Build-Depends from "mpich" to 'libmpich1.0-dev')

2006-02-10 Thread Debian Bug Tracking System
Your message dated Sat, 11 Feb 2006 08:06:47 +0100
with message-id <[EMAIL PROTECTED]>
and subject line warped: #325155 fixed in latest unstable version
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: warped
Version: 20031216-5
Severity: serious
Tags: patch

When building 'warped' in a clean 'unstable' chroot,
I get the following error:

Reading package lists...
Building dependency tree...
E: Package mpich has no installation candidate
E: Failed to satisfy Build-Depends dependency for warped: mpich
Package mpich is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

Please change the Build-Depends from 'mpich' to 'libmpich1.0-dev'
in debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/warped-20031216/debian/control ./debian/control
--- ../tmp-orig/warped-20031216/debian/control  2005-08-26 12:44:44.0 
+
+++ ./debian/control2005-08-26 11:49:26.0 +
@@ -1,5 +1,5 @@
 Source: warped
-Build-Depends: debhelper (>> 4.1.0), libtool, libclutils0-dev, mpich, 
libltdl3-dev
+Build-Depends: debhelper (>> 4.1.0), libtool, libclutils0-dev, 
libmpich1.0-dev, libltdl3-dev
 Section: devel
 Priority: optional
 Maintainer: Dale E Martin <[EMAIL PROTECTED]>

--- End Message ---
--- Begin Message ---
This has been fixed in unstable, thanks!

--- End Message ---


Bug#268250: marked as done (warped: FTBFS with gcc-3.4: `INT64_MAX' was not declared in this scope)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Sat, 11 Feb 2006 08:15:55 +0100
with message-id <[EMAIL PROTECTED]>
and subject line warped: #268250 fixed in latest unstable version
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: warped
Severity: normal
Tags: patch

When building 'warped' with gcc-3.4 I get the following error:

Making all in src
make[2]: Entering directory `/warped-20031216/src'
if /bin/sh ../libtool --mode=compile x86_64-linux-g++ -DHAVE_CONFIG_H -I. -I. 
-I../src/warped -I../src/warped -I../src -I../src  -I/usr/include/mpi 
-I/usr/include/pccts  -g -O2 -MT Serializable.lo -MD -MP -MF 
".deps/Serializable.Tpo" \
  -c -o Serializable.lo `test -f 'warped/Serializable.cpp' || echo 
'./'`warped/Serializable.cpp; \
then mv -f ".deps/Serializable.Tpo" ".deps/Serializable.Plo"; \
else rm -f ".deps/Serializable.Tpo"; exit 1; \
fi
mkdir .libs
x86_64-linux-g++ -DHAVE_CONFIG_H -I. -I. -I../src/warped -I../src/warped 
-I../src -I../src -I/usr/include/mpi -I/usr/include/pccts -g -O2 -MT 
Serializable.lo -MD -MP -MF .deps/Serializable.Tpo -c warped/Serializable.cpp  
-fPIC -DPIC
In file included from warped/SerializedInstance.h:26,
 from warped/Serializable.cpp:2:
warped/warped.h:39: error: `INT64_MAX' was not declared in this scope
warped/warped.h:40: error: `INT64_MIN' was not declared in this scope
warped/warped.h:41: error: `INT32_MAX' was not declared in this scope
warped/warped.h:42: error: `INT32_MIN' was not declared in this scope
make[2]: *** [Serializable.lo] Error 1
make[2]: Leaving directory `/warped-20031216/src'

With the attached patch 'warped' can be compiled using gcc-3.4.

Regards
Andreas Jochens

diff -urN ../tmp-orig/warped-20031216/src/warped/controlkit/SyncSensor.h 
./src/warped/controlkit/SyncSensor.h
--- ../tmp-orig/warped-20031216/src/warped/controlkit/SyncSensor.h  
2003-01-16 21:59:19.0 +0100
+++ ./src/warped/controlkit/SyncSensor.h2004-08-26 20:35:09.101488049 
+0200
@@ -54,7 +54,7 @@
 
/// get the type of this sensor
sensorType getType(){
-  return sensor_type;
+  return this->sensor_type;
};
 
NormalType& getSensorData(){
@@ -63,12 +63,12 @@

/// return the name of this sensor
string& getSensorName(){
-  return sensorName;
+  return this->sensorName;
}

/// dump the values of this sensor to the ostream
void dump(ostream &out){
-  out << sensorName << ": value: " << controlledElement << endl;
+  out << this->sensorName << ": value: " << controlledElement << std::endl;
};

/// overloaded assignment operator
diff -urN ../tmp-orig/warped-20031216/src/warped/eclmpl/eclmplTimer.cpp 
./src/warped/eclmpl/eclmplTimer.cpp
--- ../tmp-orig/warped-20031216/src/warped/eclmpl/eclmplTimer.cpp   
2002-08-02 16:24:21.0 +0200
+++ ./src/warped/eclmpl/eclmplTimer.cpp 2004-08-26 22:13:08.469688225 +0200
@@ -4,7 +4,7 @@
   start();
 } // End of constructor.
 
-inline void 
+void 
 eclmplTimer::start() {
   gettimeofday(&startTime, NULL);
 } // End of start().
diff -urN ../tmp-orig/warped-20031216/src/warped/warped.h ./src/warped/warped.h
--- ../tmp-orig/warped-20031216/src/warped/warped.h 2003-05-02 
16:59:39.0 +0200
+++ ./src/warped/warped.h   2004-08-26 20:21:48.501197793 +0200
@@ -29,13 +29,13 @@
 enumerations used in the system. */
 
 #ifdef HAVE_STDINT_H
-// The following is a C-99ism...
-#ifndef __STDC_LIMIT_MACROS
-#define __STDC_LIMIT_MACROS
 #include 
-#endif
 typedef int64_t warped64_t;
 typedef int32_t warped32_t;
+# define INT32_MIN  (-2147483647-1)
+# define INT64_MIN  (-9223372036854775807-1)
+# define INT32_MAX  (2147483647)
+# define INT64_MAX  (9223372036854775807)
 const warped64_t warped64Max = INT64_MAX;
 const warped64_t warped64Min = INT64_MIN;
 const warped64_t warped32Max = INT32_MAX;

--- End Message ---
--- Begin Message ---
This has been fixed, thanks!
--- End Message ---


Bug#352309: tioga: FTBFS: Missing Build-Depends on 'ruby1.8'

2006-02-10 Thread Andreas Jochens
Package: tioga
Version: 1.0.I-2
Severity: serious
Tags: patch

When building 'tioga' in a clean 'unstable' chroot,
I get the following error:

dh_clean 
 debian/rules build
dh_testdir
# Add here commands to configure the package.
cd make;\
PREFIX=/usr ruby1.8 extconf.rb --debian;
/bin/sh: line 1: ruby1.8: command not found
make: *** [configure-stamp] Error 127

Please add the missing Build-Depends on 'ruby1.8' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/tioga-1.0.I/debian/control ./debian/control
--- ../tmp-orig/tioga-1.0.I/debian/control  2006-02-11 06:25:34.0 
+
+++ ./debian/control2006-02-11 06:24:23.0 +
@@ -2,7 +2,7 @@
 Section: graphics
 Priority: optional
 Maintainer: Vincent Fourmond <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0.0), ruby1.8-dev
+Build-Depends: debhelper, ruby1.8-dev, ruby1.8
 Standards-Version: 3.6.2
 
 Package: tioga


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#349195: marked as done (FTBFS: configure doesn't use pangoft2 flags)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 21:47:14 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#349195: fixed in sablevm-classlib 1.13-2
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: sablevm-classlib
Severity: serious
Justification: FTBFS

sablevm-classlib FTBFS:

   gcc -DHAVE_CONFIG_H -I. -I. -I../../../include -I../../../include 
-I../../../native/jni/classpath -I../../../native/target/Linux 
-I../../../native/target/generic -DXTHREADS -pthread -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo 
-I/usr/include/pango-1.0 -I/usr/X11R6/include -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/libart-2.0 -g -O2 -MT 
gnu_java_awt_peer_gtk_GdkFontPeer.lo -MD -MP -MF 
.deps/gnu_java_awt_peer_gtk_GdkFontPeer.Tpo -c 
gnu_java_awt_peer_gtk_GdkFontPeer.c  -fPIC -DPIC -o 
.libs/gnu_java_awt_peer_gtk_GdkFontPeer.o
In file included from /usr/include/pango-1.0/pango/pangofc-font.h:25,
 from /usr/include/pango-1.0/pango/pangoft2.h:29,
 from gdkfont.h:46,
 from gnu_java_awt_peer_gtk_GdkFontPeer.c:38:
/usr/include/ft2build.h:56:38: error: freetype/config/ftheader.h: No such file 
or directory
In file included from /usr/include/pango-1.0/pango/pangoft2.h:29,
 from gdkfont.h:46,
 from gnu_java_awt_peer_gtk_GdkFontPeer.c:38:
/usr/include/pango-1.0/pango/pangofc-font.h:26:10: error: #include expects 
"FILENAME" or 

It looks like ftheader.h is found in libfreetype6-dev.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14.3
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)

--- End Message ---
--- Begin Message ---
Source: sablevm-classlib
Source-Version: 1.13-2

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

libsablevm-classlib1-java_1.13-2_all.deb
  to pool/main/s/sablevm-classlib/libsablevm-classlib1-java_1.13-2_all.deb
libsablevm-native1_1.13-2_i386.deb
  to pool/main/s/sablevm-classlib/libsablevm-native1_1.13-2_i386.deb
sablevm-classlib_1.13-2.diff.gz
  to pool/main/s/sablevm-classlib/sablevm-classlib_1.13-2.diff.gz
sablevm-classlib_1.13-2.dsc
  to pool/main/s/sablevm-classlib/sablevm-classlib_1.13-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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Grzegorz B. Prokopski <[EMAIL PROTECTED]> (supplier of updated sablevm-classlib 
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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 00:20:44 -0500
Source: sablevm-classlib
Binary: libsablevm-native1 libsablevm-classlib1-java
Architecture: source all i386
Version: 1.13-2
Distribution: unstable
Urgency: low
Maintainer: Grzegorz B. Prokopski <[EMAIL PROTECTED]>
Changed-By: Grzegorz B. Prokopski <[EMAIL PROTECTED]>
Description: 
 libsablevm-classlib1-java - GNU Classpath modified to work with SableVM JVM
 libsablevm-native1 - GNU Classpath modified to work with SableVM JVM (native 
part)
Closes: 347083 349195
Changes: 
 sablevm-classlib (1.13-2) unstable; urgency=low
 .
   * Replaced obsolete Build-dep: on xlibs-dev with libxt-dev and
 libxtst-dev (thanks to Andreas Jochens <[EMAIL PROTECTED]>).
 Closes: #347083
   * Pangoft2 flags corrected (upstream).  Closes: #349195
Files: 
 811318e7ab62a57a969501892755fe31 1047 libs optional sablevm-classlib_1.13-2.dsc
 079f9837fba196021f55e2a5c6afd6b0 65467 libs optional 
sablevm-classlib_1.13-2.diff.gz
 a2c665b64f1f5433c5ded85385ed5b2f 5273092 libs optional 
libsablevm-classlib1-java_1.13-2_all.deb
 941a531e6b1c355d4c0aeae8769d5bc5 369170 libs optional 
libsablevm-native1_1.13-2_i386.deb

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

iQEVAwUBQ+1wFiV5Kodqy9MGAQJEXQf/Ur7NLqlD6ht62GEzkmdo1rJXaLDhyWj2
70HqTavtrJhFQFhf+mhZzK6S0aGYVLw7WzMJf9tXr+0gIdMTry1Kyht6llSuaiY+
syTgskCUkiBDIy+kB+ITQ7pUQpSR25MGo17osCx7vB04R38qghvTFFWLiTYpN1t4
EpusAshWlA

Bug#347083: marked as done (sablevm-classlib: FTBFS: build-depends on removed xlibs-dev)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 21:47:14 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#347083: fixed in sablevm-classlib 1.13-2
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: sablevm-classlib
Version: 1.11.3-2
Severity: serious

Hello,

  This is a serious bug filed against your package because it
  build-depends on xlibs-dev, which as announced in [1] a while ago, is
  no longer available in sid. This makes your package fail to build from
  source.

[1] http://lists.debian.org/debian-devel-announce/2005/11/msg00022.html

  To fix this bug, you need to update your build-dependencies and
  substitute xlibs-dev for the list of individual X development
  libraries that your package needs to be built. You can find detailed
  information about how to do that in the DependsXlibsDev wiki page [2].

[2] http://wiki.debian.org/DependsXlibsDev

  As indicated by the Release Team [3], the full transition from XFree86
  to Xorg is a release blocker for Etch, which means that Etch will not
  be released until this bug is fixed (or your package removed from
  testing). So, please, try to fix in a timely manner.

[3] http://lists.debian.org/debian-devel-announce/2005/10/msg4.html

  The number of affected packages by the xlibs-dev transition is huge,
  so if you feel like helping with patches or uploads, feel free to
  follow the instructions contained in the wiki page above. A list of
  affected packages can be found here [4].

[4] http://people.debian.org/~adeodato/release-usertag/transition-xlibs-dev

  Finally, if there's a strong reason for which your package should not
  be NMUed, please note so in this bug report. Prospective NMUers will
  read your reasoning, and will decide if it's strong enough to delay
  their upload.

  Thanks for your collaboration!

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org


--- End Message ---
--- Begin Message ---
Source: sablevm-classlib
Source-Version: 1.13-2

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

libsablevm-classlib1-java_1.13-2_all.deb
  to pool/main/s/sablevm-classlib/libsablevm-classlib1-java_1.13-2_all.deb
libsablevm-native1_1.13-2_i386.deb
  to pool/main/s/sablevm-classlib/libsablevm-native1_1.13-2_i386.deb
sablevm-classlib_1.13-2.diff.gz
  to pool/main/s/sablevm-classlib/sablevm-classlib_1.13-2.diff.gz
sablevm-classlib_1.13-2.dsc
  to pool/main/s/sablevm-classlib/sablevm-classlib_1.13-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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Grzegorz B. Prokopski <[EMAIL PROTECTED]> (supplier of updated sablevm-classlib 
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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 00:20:44 -0500
Source: sablevm-classlib
Binary: libsablevm-native1 libsablevm-classlib1-java
Architecture: source all i386
Version: 1.13-2
Distribution: unstable
Urgency: low
Maintainer: Grzegorz B. Prokopski <[EMAIL PROTECTED]>
Changed-By: Grzegorz B. Prokopski <[EMAIL PROTECTED]>
Description: 
 libsablevm-classlib1-java - GNU Classpath modified to work with SableVM JVM
 libsablevm-native1 - GNU Classpath modified to work with SableVM JVM (native 
part)
Closes: 347083 349195
Changes: 
 sablevm-classlib (1.13-2) unstable; urgency=low
 .
   * Replaced obsolete Build-dep: on xlibs-dev with libxt-dev and
 libxtst-dev (thanks to Andreas Jochens <[EMAIL PROTECTED]>).
 Closes: #347083
   * Pangoft2 flags corrected (upstream).  Closes: #349195
Files: 
 811318e7ab62a57a969501892755fe31 1047 libs optional sablevm-classlib_1.13-2.dsc
 079f9837fba196021f55e2a5c6afd6b0 65467 libs optional 
sablevm-classlib_1.13-2.diff.gz
 a2c665b64f1f5433c5ded85385ed5b2f 5273092 libs optional 
libsablevm-classlib1-java_1.13-2_all.deb
 941a531e6b1c355d4c0aeae8769d5bc5 369170 libs optional 
libsablevm-native1_1.13-2_i386.deb

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

iQEVAwUBQ+1wFiV5Kodqy9MGAQ

Processed: Re: Bug#352297: perl-modules 5.8.8-2 needs to depend on perl-base 5.8.8-2

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 352297 normal
Bug#352297: perl-modules 5.8.8-2 needs to depend on perl-base 5.8.8-2
Severity set to `normal'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Fixed in NMU of libdockapp 1:0.5.0-1.3

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 349853 + fixed
Bug#349853: libdockapp-dev - depends against unavailable package xlibx11-dev
Tags were: patch
Tags added: fixed

> quit
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352306: stgit: FTBFS: Missing Build-Depends on 'python-dev'

2006-02-10 Thread Andreas Jochens
Package: stgit
Version: 0.8.1-1
Severity: serious
Tags: patch

When building 'stgit' in a clean 'unstable' chroot,
I get the following error:

#/usr/bin/make install DESTDIR=/stgit-0.8.1/debian/stgit
python setup.py install --root=/stgit-0.8.1/debian/stgit
running install
error: invalid Python installation: unable to open 
/usr/lib/python2.3/config/Makefile (No such file or directory)
make: *** [install] Error 1

Please add the missing Build-Depends on 'python-dev' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/stgit-0.8.1/debian/control ./debian/control
--- ../tmp-orig/stgit-0.8.1/debian/control  2006-02-11 05:09:30.0 
+
+++ ./debian/control2006-02-11 05:09:22.0 +
@@ -2,7 +2,7 @@
 Section: devel
 Priority: optional
 Maintainer: Anand Kumria <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0.0), python
+Build-Depends: debhelper, python-dev
 Standards-Version: 3.6.2
 
 Package: stgit


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352297: perl-modules 5.8.8-2 needs to depend on perl-base 5.8.8-2

2006-02-10 Thread Steve Langasek
severity 352297 normal
thanks

On Fri, Feb 10, 2006 at 07:02:40PM -0800, Blars Blarson wrote:
> Package: perl-modules
> Version: 5.8.8-2
> Severity: grave
> Justification: renders package unusable

> On my amd64 system, today's upgrade got me perl-base 5.8.8-1 and
> perl-modules 5.8.8-2 .  With the fix for bug 352074, neither contains
> overload.pm, making the install of other packages break.  perl-modules
> without overload.pm needs to depend on perl-base with overload.pm.

This is a transient bug in perl-base; it has since been fixed, it's not an
RC bug in perl-modules that one of its dependencies was temporarily broken.

Left to the maintainer's discretion whether to bump the versioned dep, but
downgraded.

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Processed: Re: libdockapp-dev - depends against unavailable package xlibx11-dev

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 349853 patch
Bug#349853: libdockapp-dev - depends against unavailable package xlibx11-dev
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#349853: libdockapp-dev - depends against unavailable package xlibx11-dev

2006-02-10 Thread Steve Langasek
tags 349853 patch
thanks

Hi Jeff,

I've prepared a fixed NMU to correct the botched package name in the
previous NMU.  Please find the patch for this attached.

The NMU will be uploaded to incoming shortly, as this is one of only a
handful of packages left that break with the new xorg.

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/
diff -u libdockapp-0.5.0/debian/changelog libdockapp-0.5.0/debian/changelog
--- libdockapp-0.5.0/debian/changelog
+++ libdockapp-0.5.0/debian/changelog
@@ -1,3 +1,12 @@
+libdockapp (1:0.5.0-1.3) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * High-urgency upload for RC bugfix.
+  * Fix the xlibs-dev transition; depend on libx11-dev, libxpm-dev instead
+of on non-existent "xlibx11-dev".  Closes: #349853.
+
+ -- Steve Langasek <[EMAIL PROTECTED]>  Fri, 10 Feb 2006 20:52:49 -0800
+
 libdockapp (1:0.5.0-1.2) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u libdockapp-0.5.0/debian/control libdockapp-0.5.0/debian/control
--- libdockapp-0.5.0/debian/control
+++ libdockapp-0.5.0/debian/control
@@ -24,7 +24,7 @@
 Package: libdockapp-dev
 Architecture: any
 Section: devel
-Depends: libdockapp2 (= ${Source-Version}), xlibx11-dev, libxpm-dev
+Depends: libdockapp2 (= ${Source-Version}), libx11-dev, libxpm-dev
 Description: Window Maker Dock App support (development files)
  Simple library that eases the creation of Window Maker dock apps. It
  provides functions that set up a dock app in such a way that they can be


signature.asc
Description: Digital signature


Bug#352219: marked as done (gri: Please rebuild with current netcdf.)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 19:47:12 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#352219: fixed in gri 2.12.10-6
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: gri
Version: 2.12.10-5
Severity: grave
Justification: package uninstallable

The netcdf3g package has been renamed and split into C and C++ parts,
but the i386 package of gri still depends on the removed netcdf3g and
therefore cannot be installed at the moment. A simple rebuild should be
sufficient to fix the problem.

An automated binary-only rebuild of gri failed because the upstream
tarball ships debian/changelog with write permission bits unset[0].
Please chmod u+w debian/changelog in the clean target to allow for
future binNMUs.

Regards,

Daniel.

[0] 
http://buildd.debian.org/fetch.php?pkg=gri&arch=i386&ver=2.12.10-5%2Bb1&stamp=1139461973&file=log

--- End Message ---
--- Begin Message ---
Source: gri
Source-Version: 2.12.10-6

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

gri-el_2.12.10-6_all.deb
  to pool/main/g/gri/gri-el_2.12.10-6_all.deb
gri-html-doc_2.12.10-6_all.deb
  to pool/main/g/gri/gri-html-doc_2.12.10-6_all.deb
gri-ps-doc_2.12.10-6_all.deb
  to pool/main/g/gri/gri-ps-doc_2.12.10-6_all.deb
gri_2.12.10-6.diff.gz
  to pool/main/g/gri/gri_2.12.10-6.diff.gz
gri_2.12.10-6.dsc
  to pool/main/g/gri/gri_2.12.10-6.dsc
gri_2.12.10-6_i386.deb
  to pool/main/g/gri/gri_2.12.10-6_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Peter S Galbraith <[EMAIL PROTECTED]> (supplier of updated gri 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 11:02:42 -0500
Source: gri
Binary: gri-html-doc gri-el gri gri-ps-doc
Architecture: source all i386
Version: 2.12.10-6
Distribution: unstable
Urgency: high
Maintainer: Peter S Galbraith <[EMAIL PROTECTED]>
Changed-By: Peter S Galbraith <[EMAIL PROTECTED]>
Description: 
 gri- a language for scientific illustration.
 gri-el - Emacs major-mode for gri, a language for scientific graphics.
 gri-html-doc - HTML manual for gri, a language for scientific graphics.
 gri-ps-doc - PostScript manual for gri, a language for scientific graphics.
Closes: 352219
Changes: 
 gri (2.12.10-6) unstable; urgency=high
 .
   * Bug fix: "gri: Please rebuild with current netcdf.", thanks to Daniel
 Kobras (Closes: #352219).
   * Set permissions to user writable on debian/changelog for binary-only
 rebuilds.
   * Switch to debhelper 4.
Files: 
 0d76b4f80f45fb56e6fb1db19ecd7055 842 science optional gri_2.12.10-6.dsc
 5d5d280fdf6fcc27f5fdad9790e80bdf 2151 science optional gri_2.12.10-6.diff.gz
 57a1c5d2a31ae458ba40159956060ad6 63644 science optional 
gri-el_2.12.10-6_all.deb
 3b59202620801164014dd6a84bf328e1 1207366 doc optional 
gri-html-doc_2.12.10-6_all.deb
 1211b4c3aa3443e645050dd4be6dfb0e 952652 doc optional 
gri-ps-doc_2.12.10-6_all.deb
 b10c626e2b3e626cba7978bf0a4198d0 744306 science optional gri_2.12.10-6_i386.deb

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

iQCVAwUBQ+1biLwVH8jSqROhAQLMmQP7BYdxoEcyvb5Wi0UfXnPpoJQDoa711VsG
ddDfk0W5n0/MCO9WaXoEgZVBdwyGGGE6zNXmzYeh3p1vMv8mdPHSbB3b0gcoMXVI
xX86YZhRB2gbt9ahXmNvSccgbP0IDRA6gnr9khId9QvazkHGPHYu6tOr44BwtLkp
9JBqFe/sOzQ=
=bdt5
-END PGP SIGNATURE-

--- End Message ---


Bug#352183: running test

2006-02-10 Thread Blars Blarson
I'll try to get to it next week, I'm helping with a debian booth this
weekend.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352299: My debconf-settings do not have efect

2006-02-10 Thread Juhapekka Tolvanen

Package: console-setup
Version: 1.0
Severity: serious


I thougth I chose right settings, when debconf was run during
installation. But somehow they have no effect. For example I have Finnish
keyboard layout and 102 keys. But as you can see below, debconf did not
care my choices at all.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing-proposed-updates'), (500, 
'proposed-updates'), (101, 'testing'), (99, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=fi_FI.utf8, LC_CTYPE=fi_FI.utf8 (charmap=UTF-8)

Versions of packages console-setup depends on:
ii  console-terminus  4.16-2 Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.4.70 Debian configuration management sy

Versions of packages console-setup recommends:
ii  console-tools  1:0.2.3dbs-60 Linux console and font utilities
ii  kbd-compat [kbd]   1:0.2.3dbs-60 Wrappers around console-tools for 

-- debconf information:
* console-setup/variant: U.S. English
  console-setup/modelcode: pc105
* console-setup/fontsize: 16
  console-setup/layoutcode: us
  console-setup/dont_ask_layout:
* console-setup/altgr: Right Alt
* console-setup/ttys: /dev/tty[1-6]
* console-setup/codeset: Lat15
  console-setup/toggle: No toggling
* console-setup/fontface: Terminus
* console-setup/compose: No compose key
  console-setup/switch: No temporary switch
* console-setup/charmap: UTF-8
  console-setup/optionscode: lv3:ralt_switch
* console-setup/layout: U.S. English
  console-setup/variantcode:
* console-setup/model: Generic 105-key (Intl) PC

-- 
Juhapekka "naula" Tolvanen * http colon slash slash iki dot fi slash juhtolv
"She turns me on. She makes me real. I have to apologize for the way I feel."
  Nine Inch Nails


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352297: perl-modules 5.8.8-2 needs to depend on perl-base 5.8.8-2

2006-02-10 Thread Blars Blarson
Package: perl-modules
Version: 5.8.8-2
Severity: grave
Justification: renders package unusable


On my amd64 system, today's upgrade got me perl-base 5.8.8-1 and
perl-modules 5.8.8-2 .  With the fix for bug 352074, neither contains
overload.pm, making the install of other packages break.  perl-modules
without overload.pm needs to depend on perl-base with overload.pm.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352258: marked as done (Recompile libfox1.4-dev due to changes in libxft-dev)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 17:19:03 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#352258: Recompile libfox1.4-dev due to changes in 
libxft-dev
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---

Package: libfox-1.4-dev
Version: 1.4.16-2
Severity: serious

Hi,

I am maintaining rezound, a package that uses the FOX toolkit. Due
to changes in libxft-dev the FOX package has to be recompiled, as
libfox1.4-dev currently depends on the file /usr/lib/libXft.la (which
doesn't exist anymore).

I found a similar problem here:

http://lists.debian.org/debian-qt-kde/2006/01/msg00487.html

They solved it through recompilation.

Cheers,

Günter


--- End Message ---
--- Begin Message ---
On Fri, Feb 10, 2006 at 07:36:42PM +0100, geiger wrote:

> I am maintaining rezound, a package that uses the FOX toolkit. Due
> to changes in libxft-dev the FOX package has to be recompiled, as
> libfox1.4-dev currently depends on the file /usr/lib/libXft.la (which
> doesn't exist anymore).

> I found a similar problem here:

> http://lists.debian.org/debian-qt-kde/2006/01/msg00487.html

> They solved it through recompilation.

This package has been queued for binNMUs on all architectures; no further
maintainer action should be required to address this bug.

(Oh, and you also missed the package name when filing the bug, it should
have been libfox1.4-dev. :)

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature
--- End Message ---


Processed: severity of 352286 is normal, merging 352286 352267

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.11
>  # bts abuse
> severity 352286 normal
Bug#352286: apt-get purges packages after it asks for permission to remove them.
Severity set to `normal'.

> merge 352286 352267
Bug#352267: apt-get --purge remove dbus-1   purges far too much
Bug#352286: apt-get purges packages after it asks for permission to remove them.
Merged 352267 352286.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#347479: Seems to not handle VG creation correctly

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 347479 + pending
Bug#347479: Seems to not handle VG creation correctly
Tags were: patch
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352286: apt-get purges packages after it asks for permission to remove them.

2006-02-10 Thread Greg Kochanski
Package: apt
Version: 0.6.43.2
Severity: grave
Justification: causes non-serious data loss



See the example.   Apt-get asks permission to REMOVE the packages,
but it will actually PURGE them, if given permission.

# apt-get --purge remove samba-common
Reading package lists... Done
Building dependency tree... Done
The following packages will be REMOVED:
  libpam-smbpass* linpopup* samba* samba-common* smbclient* smbfs* swat* 
winbind*
  0 upgraded, 0 newly installed, 8 to remove and 36 not upgraded.
  Need to get 0B of archives.
  After unpacking 29.7MB disk space will be freed.
  Do you want to continue [Y/n]?
  #


A better scheme would be for apt-get to ask whether the dependent
packages should be removed or purged.


-- Package-specific info:

-- apt-config dump --

APT "";
APT::Architecture "i386";
APT::Build-Essential "";
APT::Build-Essential:: "build-essential";
APT::Authentication "";
APT::Authentication::TrustCDROM "true";
Dir "/";
Dir::State "var/lib/apt/";
Dir::State::lists "lists/";
Dir::State::cdroms "cdroms.list";
Dir::State::userstatus "status.user";
Dir::State::status "/var/lib/dpkg/status";
Dir::Cache "var/cache/apt/";
Dir::Cache::archives "archives/";
Dir::Cache::srcpkgcache "srcpkgcache.bin";
Dir::Cache::pkgcache "pkgcache.bin";
Dir::Etc "etc/apt/";
Dir::Etc::sourcelist "sources.list";
Dir::Etc::sourceparts "sources.list.d";
Dir::Etc::vendorlist "vendors.list";
Dir::Etc::vendorparts "vendors.list.d";
Dir::Etc::main "apt.conf";
Dir::Etc::parts "apt.conf.d";
Dir::Etc::preferences "preferences";
Dir::Bin "";
Dir::Bin::methods "/usr/lib/apt/methods";
Dir::Bin::dpkg "/usr/bin/dpkg";
DPkg "";
DPkg::Pre-Install-Pkgs "";
DPkg::Pre-Install-Pkgs:: "/usr/sbin/dpkg-preconfigure --apt || true";
DPkg::Post-Invoke "";
DPkg::Post-Invoke:: "if [ -x /usr/bin/debsums ]; then /usr/bin/debsums 
--generate=nocheck -sp /var/cache/apt/archives; fi";

-- (no /etc/apt/preferences present) --


-- /etc/apt/sources.list --

deb http://mirror.ox.ac.uk/debian/ testing main non-free contrib
deb-src http://mirror.ox.ac.uk/debian/ testing main non-free contrib

deb http://security.debian.org/ testing/updates main contrib non-free

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages apt depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-5  GCC support library
ii  libstdc++64.0.2-5The GNU Standard C++ Library v3

Versions of packages apt recommends:
ii  debian-archive-keyring2006.01.18 GnuPG archive keys of the Debian a

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#351372: marked as done (gdal: FTBFS on mipsel)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 14:47:06 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#351372: fixed in gdal 1.3.1-4
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: gdal
Version: 1.3.1-2
Severity: serious

http://buildd.debian.org/fetch.php?&pkg=gdal&ver=1.3.1-2&arch=mipsel&stamp=1138103949&file=log&as=raw
http://buildd.debian.org/fetch.php?&pkg=gdal&ver=1.3.1-3&arch=mipsel&stamp=1138807257&file=log&as=raw

make[3]: Entering directory `/build/buildd/gdal-1.3.1/frmts/pcraster'
/bin/sh ../../libtool --mode=compile gcc -c  -I../../port -I../../gcore 
-I../../alg -I../../ogr -I../../ogr/ogrsf_frmts -I../../port  -DUSE_IN_GDAL 
-Ilibcsf -Wall  -O2   libcsf/_getcell.c -o ../o/_getcell.o
 gcc -c -I../../port -I../../gcore -I../../alg -I../../ogr 
-I../../ogr/ogrsf_frmts -I../../port -DUSE_IN_GDAL -Ilibcsf -Wall -O2 
libcsf/_getcell.c  
-fPIC -DPIC -o ../o/.libs/_getcell.o
In file included from libcsf/csf.h:9,
 from libcsf/_getcell.c:4:
libcsf/csftypes.h:353:4: error: #error CPU_BIG_ENDIAN and CPU_LITTLE_ENDIAN are 
both defined
make[3]: *** [../o/_getcell.o] Error 1
make[3]: Leaving directory `/build/buildd/gdal-1.3.1/frmts/pcraster'

1.3.1-1 probably has this problem too, but it didn't manifest because of
the patch issue.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


signature.asc
Description: This is a digitally signed message part
--- End Message ---
--- Begin Message ---
Source: gdal
Source-Version: 1.3.1-4

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

gdal-bin_1.3.1-4_i386.deb
  to pool/main/g/gdal/gdal-bin_1.3.1-4_i386.deb
gdal_1.3.1-4.diff.gz
  to pool/main/g/gdal/gdal_1.3.1-4.diff.gz
gdal_1.3.1-4.dsc
  to pool/main/g/gdal/gdal_1.3.1-4.dsc
libgdal-doc_1.3.1-4_all.deb
  to pool/main/g/gdal/libgdal-doc_1.3.1-4_all.deb
libgdal1-1.3.1-dev_1.3.1-4_i386.deb
  to pool/main/g/gdal/libgdal1-1.3.1-dev_1.3.1-4_i386.deb
libgdal1-1.3.1_1.3.1-4_i386.deb
  to pool/main/g/gdal/libgdal1-1.3.1_1.3.1-4_i386.deb
python-gdal_1.3.1-4_i386.deb
  to pool/main/g/gdal/python-gdal_1.3.1-4_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Petter Reinholdtsen <[EMAIL PROTECTED]> (supplier of updated gdal 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 22:46:34 +0100
Source: gdal
Binary: python-gdal libgdal1-1.3.1-dev libgdal-doc gdal-bin libgdal1-1.3.1
Architecture: source i386 all
Version: 1.3.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project 
Changed-By: Petter Reinholdtsen <[EMAIL PROTECTED]>
Description: 
 gdal-bin   - Geospatial Data Abstraction Library - Utility programs
 libgdal-doc - Documentation for the Geospatial Data Abstraction Library
 libgdal1-1.3.1 - Geospatial Data Abstraction Library
 libgdal1-1.3.1-dev - Geospatial Data Abstraction Library - Development files
 python-gdal - Python bindings to the Geospatial Data Abstraction Library
Closes: 321587 351372
Changes: 
 gdal (1.3.1-4) unstable; urgency=low
 .
   [ Paul Wise ]
   * Fix FTBFS on mipsel with patch from upstream. Closes: #351372
 .
   [ Petter Reinholdtsen ]
   * Add myself as uploader.
   * Acknowledge NMU. (Closes: #321587)
Files: 
 4b06cf0714e035acb30a1346d7aad401 1085 science extra gdal_1.3.1-4.dsc
 3736fe20ad97962d4bcd892b43051dd5 5390 science extra gdal_1.3.1-4.diff.gz
 de0a782e9a449aa81e5f1db4b6baf748 1747132 libs extra 
libgdal1-1.3.1_1.3.1-4_i386.deb
 9cdb2a97b6ced786cced1f17a98fb717 2110352 libdevel extra 
libgdal1-1.3.1-dev_1.3.1-4_i386.deb
 0af148e6b567385685fe33ef43bc77cc 72048 science extra gdal-bin_1.3.1-4_i386.deb
 2dba92574042f97fc3da8efa04e8a050 175232 python extra 
python-gdal_1.3.1-4_i386.deb
 33a7b267625cf216f39bd9bad15cb741 947830 doc extra libgdal-doc_1.3.1-4_all.deb

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

iD8DBQFD7RS320zMSyow1ykRApgrAKDNdOCgnQdquzLfA0KNdUWIa0J28wCeJ8vb
WibuuvL8uC48eqRsgaYoXd0=
=g0y5
-END PGP SIGNATURE-

--- End Message ---


Processed: retitle 352243 to Uninstallable on i386/FTBFS elsewhere: depends on experimental libsysfs

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> retitle 352243 Uninstallable on i386/FTBFS elsewhere: depends on experimental 
> libsysfs
Bug#352243: Uninstallable on i386/FTBFS elsewhere: depends on
Changed Bug title.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 351043

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 351043 + upstream
Bug#351043: gnudoku: generates puzzles with multiple solutions
Tags were: help
Tags added: upstream

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Retitle

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> retitle 352243 Uninstallable on i386/FTBFS elsewhere: depends on
Bug#352243: Uninstallable in Sid - depends on experimental libraries
Changed Bug title.

> experimental libsysfs
Unknown command or malformed arguments to command.

> found 352243 1.1-1
Bug#352243: Uninstallable on i386/FTBFS elsewhere: depends on
Bug marked as found in version 1.1-1.

> notfound 352243 1.1.1-1
Bug#352243: Uninstallable on i386/FTBFS elsewhere: depends on
Bug marked as not found in version 1.1.1-1.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352243: Retitle

2006-02-10 Thread Filipus Klutiero
retitle 352243 Uninstallable on i386/FTBFS elsewhere: depends on 
experimental libsysfs

found 352243 1.1-1
notfound 352243 1.1.1-1
thanks

Santiago, I guess Martin was asking to address 347634 in experimental 
until libsysfs2 itself enters unstable :)



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#334235: fixed in visualboyadvance 1.7.2-5

2006-02-10 Thread Steve Langasek
On Fri, Feb 10, 2006 at 06:21:05PM -0200, Jose Carlos Medeiros wrote:

> > Ah, I didn't notice that this bug was about memory usage in g++; I assumed
> > it was a C++ standards bug, like so many others.  Still, this seems to be
> > the only package in all the archive that has such a problem, and the only
> > package which build-depends on g++-3.3; could this bug be addressed by
> > making changes to the VBA source as a workaround?
> I tried to contact upstreamer,  but nobody anwser me :(
> last release of VBA is dated  "2004-05-22".
> Maybe this project was dead.

Well, if no one has updated it to work with g++4 yet, it seems effectively
dead, yes.

> > Er, I don't understand what you mean by an "ABI C++ problem".  Certainly,
> > having looked at the package now, I don't see how it *can* compile
> > successfully via g++-3.3 with a build-dependency on libgtkmm-2.4-dev and
> > libglademm-2.4-dev, since these packages are built for the g++-4.0 ABI now.
> libgtkmm-2.4-dev and  libglademm-2.4-dev,  are just used to link with
> GTK frontend.
> The file that not compile is a doesnt use these libs.

So you would build the GTK frontend with g++, even if using an older
compiler for the main program?  I guess that's ok, if there's an older
compiler to use.

> When I tried to compile VBA with g++3.4 or g++4.0 , g++ consume all my
> memory and swap ..   I dont receive error,,   then its difficult
> debug,,  Maybe g++ group can do it.

> Well,   Popcon  tell  that  61  person use or installed VBA,  I think
> this is few person.  and maybe we can put off VBA from Etch, as VBA is
> the last package that need g++3.0.

> What do you think ?

I think that if VBA isn't fixed to use g++3.4 or g++4.0, this is the likely
outcome.  I don't think Matthias is going to want to maintain g++3.3 in etch
for the benefit of a single package.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Bug#352277: Package places libs in incorrect directory

2006-02-10 Thread Paul van Tilburg
Package: libgtk-trayicon-ruby
Version: 0.1.0-4
Severity: grave
Tags: patch

The package installs the library in a usr/local/lib/site_ruby tree _under_
/usr/lib/ruby.  This directory is obviously not in the $LOAD_PATH and
therefore this package/the lib is not usable at all.

% dpkg -L libgtk-trayicon-ruby1.8
[...]
/usr/lib/ruby/usr/local/lib/site_ruby
/usr/lib/ruby/usr/local/lib/site_ruby/1.8
/usr/lib/ruby/usr/local/lib/site_ruby/1.8/powerpc-linux
/usr/lib/ruby/usr/local/lib/site_ruby/1.8/powerpc-linux/gtktrayicon.so
/usr/lib/ruby/usr/local/lib/site_ruby/1.8/gtktrayicon.rb
[...]

A similar thing happened with Ruby/GNOME2 and recent changes in
mkmf/mkmf-gnome, so I did a similar fix for this package and this is
attached as a patch.

Greetings,

Paul

P.S. The fix is IMO stupid/ugly and there are real problems in
 mkmf/mkmf-gnome2 that should be resolved.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (102, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15-1-powerpc
Locale: LANG=C, LC_CTYPE=nl_NL.UTF8 (charmap=UTF-8)
diff -Nabur libgtk-trayicon-ruby-0.1.0/debian/rules 
libgtk-trayicon-ruby-0.1.0-fixed/debian/rules
--- libgtk-trayicon-ruby-0.1.0/debian/rules 2006-02-10 22:06:21.0 
+
+++ libgtk-trayicon-ruby-0.1.0-fixed/debian/rules   2006-02-10 
22:04:43.0 +
@@ -4,11 +4,18 @@
 
 export DH_COMPAT=4
 
+ruby = ruby1.8
+bin_pkg = libgtk-trayicon-ruby1.8
+
+config  = $(shell $(ruby) -rrbconfig -e 'puts Config::CONFIG["$(1)"]')
+rubylibdir := $(call config,rubylibdir)
+archdir:= $(call config,archdir)
+
 build: build-stamp
 build-stamp:
dh_testdir
 
-   ruby1.8 extconf.rb --enable-fullwidth-reverse-solidus && $(MAKE)
+   $(ruby) extconf.rb --enable-fullwidth-reverse-solidus && $(MAKE)
 
touch build-stamp
 
@@ -27,7 +34,9 @@
dh_installdirs
 
 #  $(MAKE) sitedir=$(CURDIR)/debian/libgtk-trayicon-ruby1.8/usr/lib/ruby 
install
-   $(MAKE) DESTDIR=$(CURDIR)/debian/libgtk-trayicon-ruby1.8/usr/lib/ruby 
install
+   $(MAKE) DESTDIR=$(CURDIR)/debian/$(bin_pkg) \
+   sitelibdir=$(CURDIR)/debian/$(bin_pkg)$(rubylibdir) \
+   sitearchdir=$(CURDIR)/debian/$(bin_pkg)$(archdir) install
 
touch install-stamp
 


Bug#351782: marked as done (subversion_1.3.0-1(sparc/experimental): FTBFS)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 15:39:27 -0600
with message-id <[EMAIL PROTECTED]>
and subject line fixed in ecj
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: subversion
Version: 1.3.0-1
Severity: serious

Hi,

your package failed to build from source.

| Automatic build of subversion_1.3.0-1 on odin by sbuild/sparc 79
| Build started at 20060207-0535
| **
| Checking available source versions...
| Fetching source files...
| Reading Package Lists...
| Building Dependency Tree...
| Need to get 8815kB of source archives.
| Get:1 http://sinclair.farm.ftbfs.de experimental/main subversion 1.3.0-1 
(dsc) [1909B]
| Get:2 http://sinclair.farm.ftbfs.de experimental/main subversion 1.3.0-1 
(tar) [8773kB]
| Get:3 http://sinclair.farm.ftbfs.de experimental/main subversion 1.3.0-1 
(diff) [39.7kB]
| Fetched 8815kB in 1s (8296kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: debhelper, libneon25-dev, apache2-threaded-dev, libapr0-dev 
(>= 2.0.55-3), libdb4.3-dev, libtool, bison, patch, python, python2.3-dev, 
autotools-dev, autoconf, swig, perl, cdbs, libperl-dev, ruby1.8, ruby1.8-dev, 
kaffe-dev [!arm !armeb !mips !mipsel !kfreebsd-i386], kaffe-pthreads [!arm 
!armeb !mips !mipsel !kfreebsd-i386]
| Build-Conflicts: libsvn0 (<< 1.2)
[...]
| make[1]: Entering directory `/build/buildd/subversion-1.3.0/BUILD'
| /usr/lib/kaffe/pthreads/bin/javac  -d subversion/bindings/java/javahl/classes 
-classpath subversion/bindings/java/javahl/classes: 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/CommitMessage.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/LogMessage.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/SVNOutputStream.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/NotifyAction.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/NotifyStatus.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/PropertyData.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/OutputInterface.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/CommitItemStateFlags.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/PromptUserPassword2.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/SVNClientInterface.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Lock.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/StatusKind.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/JNIError.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/SVNClientLogLevel.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/BlameCallback.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/ChangePath.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/DirEntry.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/SVNInputStream.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/ScheduleKind.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/PromptUserPassword.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/RevisionKind.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/SVNClientSynchronized.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/SVNClient.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/CommitItem.java
 
/build/buildd/subversion-1.3.0/subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/No

Bug#350007: marked as done (gkrelldnet - FTBFS: error: gkrellm2/gkrellm.h: No such file or directory)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 13:32:31 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#350007: fixed in gkrelldnet 0.14.2-5
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: gkrelldnet
Version: 0.14.2-4
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of gkrelldnet_0.14.2-4 on debian-31 by sbuild/s390 85
[...]
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper (>= 4.0.0), dpatch (>= 2.0.10), libgtk2.0-dev
[...]
> gcc -Wall -O2 -fPIC -D_GNU_SOURCE `pkg-config gtk+-2.0 --cflags` -c 
> gkrelldnet.c
> In file included from gkrelldnet.c:32:
> gkrelldnet.h:6:30: error: gkrellm2/gkrellm.h: No such file or directory
> gkrelldnet.c:36: error: syntax error before '*' token
> gkrelldnet.c:36: warning: type defaults to 'int' in declaration of 
> 'gkrellm_vbox'
> gkrelldnet.c:36: warning: data definition has no type or storage class

Bastian

--- End Message ---
--- Begin Message ---
Source: gkrelldnet
Source-Version: 0.14.2-5

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

gkrelldnet_0.14.2-5.diff.gz
  to pool/contrib/g/gkrelldnet/gkrelldnet_0.14.2-5.diff.gz
gkrelldnet_0.14.2-5.dsc
  to pool/contrib/g/gkrelldnet/gkrelldnet_0.14.2-5.dsc
gkrelldnet_0.14.2-5_i386.deb
  to pool/contrib/g/gkrelldnet/gkrelldnet_0.14.2-5_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jose Carlos Medeiros <[EMAIL PROTECTED]> (supplier of updated gkrelldnet 
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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  1 Feb 2006 18:53:18 -0200
Source: gkrelldnet
Binary: gkrelldnet
Architecture: source i386
Version: 0.14.2-5
Distribution: unstable
Urgency: low
Maintainer: Jose Carlos Medeiros <[EMAIL PROTECTED]>
Changed-By: Jose Carlos Medeiros <[EMAIL PROTECTED]>
Description: 
 gkrelldnet - dnetc plugin for GKrellM
Closes: 349894 349900 350007
Changes: 
 gkrelldnet (0.14.2-5) unstable; urgency=low
 .
   * Added Build-dependence "gkrellm". (closes: #350007, #349900, #349894)
Files: 
 b8fc2f013057020533b7943c93dc5b36 729 contrib/x11 optional 
gkrelldnet_0.14.2-5.dsc
 bd2f4602532649a4f5f91714ef113206 3193 contrib/x11 optional 
gkrelldnet_0.14.2-5.diff.gz
 b2bfb0db77aa094cc156956d8a4f4720 16382 contrib/x11 optional 
gkrelldnet_0.14.2-5_i386.deb

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

iD8DBQFD7P2gGKGxzw/lPdkRAmorAKCW14Q0ZQGsfUlLS3cTib//LqaP2wCfW84s
+EQki+QvU6sRK8vk/j9i7tQ=
=In7p
-END PGP SIGNATURE-

--- End Message ---


Bug#348529: marked as done (smilutils - FTBFS: error: bswap.h: No such file or directory)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 13:33:43 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#348529: fixed in smilutils 0.3.0-8
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: smilutils
Version: 0.3.0-7+b1
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of smilutils_0.3.0-7+b1 on debian-31 by sbuild/s390 85
[...]
> ** Using build dependencies supplied by package:
> Build-Depends: debhelper, libquicktime-dev, libdv4-dev, libglib2.0-dev, 
> libxml2-dev, libimlib2-dev, libsdl1.2-dev, autotools-dev, libgdk-pixbuf-dev, 
> gdk-imlib1-dev, libgnome-dev, libltdl3-dev, ffmpeg, libavcodec-dev, 
> libavformat-dev, libtool, libvorbis-dev, libogg-dev, libdts-dev
[...]
> Making all in ffmpeg2raw
> make[4]: Entering directory `/build/buildd/smilutils-0.3.0/apps/ffmpeg2raw'
> source='ffmpeg2raw.c' object='ffmpeg2raw.o' libtool=no \
>   depfile='.deps/ffmpeg2raw.Po' tmpdepfile='.deps/ffmpeg2raw.TPo' \
>   depmode=gcc3 /bin/sh ../../depcomp \
>   s390-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../..-O3 -s -Wall 
> -I/usr/include/ffmpeg -I/usr/include/ffmpeg/libavcodec 
> -I/usr/include/ffmpeg/libavformat -D_FILE_OFFSET_BITS=64  -Wall -g -O2 -c 
> `test -f 'ffmpeg2raw.c' || echo './'`ffmpeg2raw.c
> In file included from ffmpeg2raw.c:21:
> /usr/include/ffmpeg/common.h:217:23: error: bswap.h: No such file or directory
> In file included from ffmpeg2raw.c:22:
> /usr/include/ffmpeg/avformat.h:669:24: error: os_support.h: No such file or 
> directory
> ffmpeg2raw.c: In function 'ff2raw_output':
> ffmpeg2raw.c:140: warning: initialization from incompatible pointer type
> ffmpeg2raw.c:159: warning: assignment from incompatible pointer type
> ffmpeg2raw.c:161: error: 'struct AVCodecContext' has no member named 
> 'frame_rate'
> ffmpeg2raw.c:161: error: 'struct AVCodecContext' has no member named 
> 'frame_rate_base'
> ffmpeg2raw.c:172: warning: assignment from incompatible pointer type
> ffmpeg2raw.c:187: error: request for member 'pix_fmt' in something not a 
> structure or union
> ffmpeg2raw.c:187: error: request for member 'width' in something not a 
> structure or union
> ffmpeg2raw.c:187: error: request for member 'height' in something not a 
> structure or union
> ffmpeg2raw.c:188: error: request for member 'width' in something not a 
> structure or union
> ffmpeg2raw.c:188: error: request for member 'height' in something not a 
> structure or union
> ffmpeg2raw.c:238: warning: passing argument 1 of 'avcodec_decode_video' from 
> incompatible pointer type
> ffmpeg2raw.c:269: warning: passing argument 1 of 'avcodec_decode_audio' from 
> incompatible pointer type
> ffmpeg2raw.c: In function 'show_stats':
> ffmpeg2raw.c:343: warning: initialization from incompatible pointer type
> make[4]: *** [ffmpeg2raw.o] Error 1
> make[4]: Leaving directory `/build/buildd/smilutils-0.3.0/apps/ffmpeg2raw'
> make[3]: *** [all-recursive] Error 1
> make[3]: Leaving directory `/build/buildd/smilutils-0.3.0/apps'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/build/buildd/smilutils-0.3.0'
> make[1]: *** [all] Error 2
> make[1]: Leaving directory `/build/buildd/smilutils-0.3.0'
> make: *** [build-stamp] Error 2
> **
> Build finished at 20060115-2102
> FAILED [dpkg-buildpackage died]

--- End Message ---
--- Begin Message ---
Source: smilutils
Source-Version: 0.3.0-8

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

smilutils_0.3.0-8.diff.gz
  to pool/main/s/smilutils/smilutils_0.3.0-8.diff.gz
smilutils_0.3.0-8.dsc
  to pool/main/s/smilutils/smilutils_0.3.0-8.dsc
smilutils_0.3.0-8_i386.deb
  to pool/main/s/smilutils/smilutils_0.3.0-8_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roland Mas <[EMAIL PROTECTED]> (supplier of updated smilutils 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 21:56:55 +0100
Sour

Bug#321551: marked as done (smilutils: uninstallable due to dependency on slang1)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 13:33:43 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#321551: fixed in smilutils 0.3.0-8
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: smilutils
Version: 0.3.0-7
Severity: grave
Tags: sid

Please recompile with libslang1-dev to update dependency.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.3-cph1
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages smilutils depends on:
ii  aalib11.4p5-28   ascii art library - transitional p
ii  gdk-imlib11.9.14-16.2imaging library for use with gtk (
ii  libaa1 [aalib 1.4p5-28   ascii art library
ii  libasound21.0.9-3ALSA library
ii  libaudio2 1.7-2  The Network Audio System (NAS). (s
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libdv40.103-2software library for DV format dig
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.1-3  GCC support library
ii  libgdk-pixbuf 0.22.0-8   The GdkPixBuf image library, gtk+ 
ii  libglib1.21.2.10-10  The GLib library of C routines
ii  libgtk1.2 1.2.10-17  The GIMP Toolkit set of widgets fo
ii  libimlib2 1.2.0-2.2  powerful image loading and renderi
ii  libltdl3  1.5.6-6A system independent dlopen wrappe
ii  libncurses5   5.4-9  Shared libraries for terminal hand
ii  libogg0   1.1.2-1Ogg Bitstream Library
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libquicktime1 0.9.3-2A library for reading and writing 
ii  libsdl1.2debi 1.2.7+1.2.8cvs20041007-5.3 Simple DirectMedia Layer
ii  libstdc++51:3.3.6-7  The GNU Standard C++ Library v3
ii  libsvga1  1:1.4.3-22 console SVGA display libraries
ii  libvorbis0a   1.1.0-1The Vorbis General Audio Compressi
ii  libvorbisenc2 1.1.0-1The Vorbis General Audio Compressi
ii  libx11-6  6.8.2.dfsg.1-4 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-4 X Window System miscellaneous exte
ii  libxi66.8.2.dfsg.1-4 X Window System Input extension li
ii  libxml2   2.6.20-1   GNOME XML library
ii  libxt66.8.2.dfsg.1-4 X Toolkit Intrinsics
ii  slang11.4.9dbs-8 The S-Lang programming library - r
ii  xlibs 6.8.2.dfsg.1-4 X Window System client libraries m
ii  zlib1g1:1.2.3-3  compression library - runtime

smilutils recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: smilutils
Source-Version: 0.3.0-8

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

smilutils_0.3.0-8.diff.gz
  to pool/main/s/smilutils/smilutils_0.3.0-8.diff.gz
smilutils_0.3.0-8.dsc
  to pool/main/s/smilutils/smilutils_0.3.0-8.dsc
smilutils_0.3.0-8_i386.deb
  to pool/main/s/smilutils/smilutils_0.3.0-8_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roland Mas <[EMAIL PROTECTED]> (supplier of updated smilutils 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 21:56:55 +0100
Source: smilutils
Binary: smilutils
Architecture: source i386
Version: 0.3.0-8
Distribution: unstable
Urgency: low
Maintainer: Roland Mas <[EMAIL PROTECTED]>
Changed-By: Roland Mas <[EMAIL PROTECTED]>
Description: 
 smilutils  - Digital Video command line utilities
Closes: 307123 320876 320992 321551 348529
Changes: 
 smilutils (0.3.0-8) unstable; urgency=low
 .
   * Re

Bug#320876: marked as done (uninstallable due to aalib transition)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 13:33:43 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#320876: fixed in smilutils 0.3.0-8
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: smilutils

This package depends on the aalib1 package which has recently been
renamed to libaa1 and which is now a dummy package pending removal.
Please update your packages to build-depend on libaa1-dev and link
against libaa1. This is also an important pare of the slang2 transition.
It will probably be as simple as a recompile.

aalib transition info:
http://lists.debian.org/debian-devel/2005/07/msg00295.html
slang2 transition info: 
http://wiki.debian.net/?EtchSlang2upgrade

-- 
see shy jo


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: smilutils
Source-Version: 0.3.0-8

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

smilutils_0.3.0-8.diff.gz
  to pool/main/s/smilutils/smilutils_0.3.0-8.diff.gz
smilutils_0.3.0-8.dsc
  to pool/main/s/smilutils/smilutils_0.3.0-8.dsc
smilutils_0.3.0-8_i386.deb
  to pool/main/s/smilutils/smilutils_0.3.0-8_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roland Mas <[EMAIL PROTECTED]> (supplier of updated smilutils 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 21:56:55 +0100
Source: smilutils
Binary: smilutils
Architecture: source i386
Version: 0.3.0-8
Distribution: unstable
Urgency: low
Maintainer: Roland Mas <[EMAIL PROTECTED]>
Changed-By: Roland Mas <[EMAIL PROTECTED]>
Description: 
 smilutils  - Digital Video command line utilities
Closes: 307123 320876 320992 321551 348529
Changes: 
 smilutils (0.3.0-8) unstable; urgency=low
 .
   * Removed usr/sbin from debian/dirs.  No need to create a dir if nothing
 goes into it.  Yay for micro-optimisation! (closes: #307123).
   * This rebuild should get us rid of old libraries such as aalib and
 slang1 (closes: #320876, #321551).
   * Adapted to the "new" ffmpeg API (closes: #320992, #348529).
Files: 
 b2c7b62d08b7b284559fc65d2cb66f35 814 graphics extra smilutils_0.3.0-8.dsc
 25c613624eaeda43a3209ab77f80a01f 367297 graphics extra 
smilutils_0.3.0-8.diff.gz
 4d5fc74f3f6bc99e367d83ddcadbadb5 1808304 graphics extra 
smilutils_0.3.0-8_i386.deb

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

iD8DBQFD7QOsDqdWtRRIQ/URAp33AJ9MJ7me0LsrlQk61Yt98Vy3cWS/wACgoSYd
jhohn/nsP84TpmnhBbSMvXs=
=0kJN
-END PGP SIGNATURE-

--- End Message ---


Processed: typo in pseudo-header

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> found 352183 1.4-3
Bug#352183: minc: ftbfs [sparc] Error: MINC file has only 3 dims, volume 
requires 4.
Bug marked as found in version 1.4-3.

> severity 352183 serious
Bug#352183: minc: ftbfs [sparc] Error: MINC file has only 3 dims, volume 
requires 4.
Severity set to `serious'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#352267: apt-get --purge remove dbus-1 purges far too much

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 352267 moreinfo unreproducible
Bug#352267: apt-get --purge remove dbus-1   purges far too much
There were no tags set.
Tags added: moreinfo, unreproducible

> severity 352267 normal
Bug#352267: apt-get --purge remove dbus-1   purges far too much
Severity set to `normal'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352267: apt-get --purge remove dbus-1 purges far too much

2006-02-10 Thread Steve Langasek
tags 352267 moreinfo unreproducible
severity 352267 normal
thanks

On Fri, Feb 10, 2006 at 08:46:26PM +, Greg Kochanski wrote:
> I intended to purge dbus-1 so I could make sure that the config
> files were the Debian defaults.   I intended to re-install
> dbus-1 immediately afterwards.  So, I did
> apt-get --purge dbus-1

> I expected this to purge dbus-1.I expected that other packages
> would be removed (because they depend on dbus-1), but not purged.

Well, that's an incorrect assumption; for a package to be purged, packages
depending on it must also be purged.

> Lo and Behold, a dozen packages were purged.The darn thing
> didn't even stop to ask me!

Well, I *definitely* can't reproduce this.  If I try to purge a package that
has reverse-dependencies installed on the system, I get this:

# apt-get --purge remove samba-common
Reading package lists... Done
Building dependency tree... Done
The following packages will be REMOVED:
  libpam-smbpass* linpopup* samba* samba-common* smbclient* smbfs* swat* 
winbind*
0 upgraded, 0 newly installed, 8 to remove and 36 not upgraded.
Need to get 0B of archives.
After unpacking 29.7MB disk space will be freed.
Do you want to continue [Y/n]?
#

Which explicitly lists all the packages to be removed.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Processed: Tagging pending bugs fixed in SVN

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 345641 + pending
Bug#345641: libc6: libnss_dns-2.3.5.so incompatible with libc-2.3.5.so : 
version GLIBC_PRIVATE not defined
There were no tags set.
Tags added: pending

> tag 351036 + pending
Bug#351036: libc6 should restart Dropbear sshd (or provide a generic mechanism 
for other packages)
There were no tags set.
Tags added: pending

> tag 312927 + pending
Bug#312927: glibc: Please use UTF-8 as the default locale codeset
Tags were: patch
Tags added: pending

> tag 348804 + pending
Bug#348804: te_IN.UTF-8...LC_ADDRESS: invalid escape `%n' sequence in field 
`postal_fmt'
Tags were: l10n
Tags added: pending

> tag 329428 + pending
Bug#329428: [INTL:it] glibc italian debconf templates translation
Tags were: l10n patch
Tags added: pending

> tag 334864 + pending
Bug#334864: glibc: [INTL:sv] Swedish debconf templates translation
Tags were: l10n patch
Tags added: pending

> tag 350103 + pending
Bug#350103: debconf PO translations for the package glibc are outdated
Tags were: l10n
Tags added: pending

> tag 345479 + pending
Bug#345479: Summer time in 2006 Australia/NSW is incorrect...
There were no tags set.
Tags added: pending

> tag 347315 + pending
Bug#347315: libc6: Daylight saving time handling for Australia needs altering 
for 2006
There were no tags set.
Tags added: pending

> tag 351049 + pending
Bug#351049: libc6: America/Havana DST info wrong for 2005/2006
Tags were: fixed-upstream
Tags added: pending

> tag 350501 + pending
Bug#350501: nscd: [hppa] error while loading shared libraries: unexpected reloc 
type 0x42
Tags were: patch sid etch
Tags added: pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#334235: fixed in visualboyadvance 1.7.2-5

2006-02-10 Thread Jose Carlos Medeiros
Hi, Steve

> Ah, I didn't notice that this bug was about memory usage in g++; I assumed
> it was a C++ standards bug, like so many others.  Still, this seems to be
> the only package in all the archive that has such a problem, and the only
> package which build-depends on g++-3.3; could this bug be addressed by
> making changes to the VBA source as a workaround?
I tried to contact upstreamer,  but nobody anwser me :(
last release of VBA is dated  "2004-05-22".
Maybe this project was dead.


> Er, I don't understand what you mean by an "ABI C++ problem".  Certainly,
> having looked at the package now, I don't see how it *can* compile
> successfully via g++-3.3 with a build-dependency on libgtkmm-2.4-dev and
> libglademm-2.4-dev, since these packages are built for the g++-4.0 ABI now.
libgtkmm-2.4-dev and  libglademm-2.4-dev,  are just used to link with
GTK frontend.
The file that not compile is a doesnt use these libs.

When I tried to compile VBA with g++3.4 or g++4.0 , g++ consume all my
memory and swap ..   I dont receive error,,   then its difficult
debug,,  Maybe g++ group can do it.

Well,   Popcon  tell  that  61  person use or installed VBA,  I think
this is few person.  and maybe we can put off VBA from Etch, as VBA is
the last package that need g++3.0.

What do you think ?

Regards,
Jose Carlos




>
> Actually, it does fail to build on alpha, ia64, and powerpc...
>
> Cheers,
> --
> Steve Langasek   Give me a lever long enough and a Free OS
> Debian Developer   to set it on, and I can move the world.
> [EMAIL PROTECTED]   http://www.debian.org/
>
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.1 (GNU/Linux)
>
> iD8DBQFD6a90KN6ufymYLloRAlODAKCtzSBdpRsBQyWzm2OlWUefXGIysACgyAda
> VrEoeOmOCzUvbZt8EcSNSoU=
> =EpYY
> -END PGP SIGNATURE-
>
>
>



Bug#352267: apt-get --purge remove dbus-1 purges far too much

2006-02-10 Thread Greg Kochanski
Package: apt
Version: 0.6.43.2
Severity: critical
Justification: causes serious data loss


I intended to purge dbus-1 so I could make sure that the config
files were the Debian defaults.   I intended to re-install
dbus-1 immediately afterwards.  So, I did
apt-get --purge dbus-1

I expected this to purge dbus-1.I expected that other packages
would be removed (because they depend on dbus-1), but not purged.

Lo and Behold, a dozen packages were purged.The darn thing
didn't even stop to ask me!This is an annoying loss of
config files for the other packages.It could be a critical
loss sometimes.Because the user does not know all the
dependencies, the user may not intend for everything to
be purged.

This is a critical error because a minor error could easily
disable many packages in a way that cannot be simply repaired
and causes an unexpected loss of data for other packages.

To fix this:
Apt-get --purge should not purge any packages that are not
mentioned on the command line without asking permission!


-- Package-specific info:

-- apt-config dump --

APT "";
APT::Architecture "i386";
APT::Build-Essential "";
APT::Build-Essential:: "build-essential";
APT::Authentication "";
APT::Authentication::TrustCDROM "true";
Dir "/";
Dir::State "var/lib/apt/";
Dir::State::lists "lists/";
Dir::State::cdroms "cdroms.list";
Dir::State::userstatus "status.user";
Dir::State::status "/var/lib/dpkg/status";
Dir::Cache "var/cache/apt/";
Dir::Cache::archives "archives/";
Dir::Cache::srcpkgcache "srcpkgcache.bin";
Dir::Cache::pkgcache "pkgcache.bin";
Dir::Etc "etc/apt/";
Dir::Etc::sourcelist "sources.list";
Dir::Etc::sourceparts "sources.list.d";
Dir::Etc::vendorlist "vendors.list";
Dir::Etc::vendorparts "vendors.list.d";
Dir::Etc::main "apt.conf";
Dir::Etc::parts "apt.conf.d";
Dir::Etc::preferences "preferences";
Dir::Bin "";
Dir::Bin::methods "/usr/lib/apt/methods";
Dir::Bin::dpkg "/usr/bin/dpkg";
DPkg "";
DPkg::Pre-Install-Pkgs "";
DPkg::Pre-Install-Pkgs:: "/usr/sbin/dpkg-preconfigure --apt || true";
DPkg::Post-Invoke "";
DPkg::Post-Invoke:: "if [ -x /usr/bin/debsums ]; then /usr/bin/debsums 
--generate=nocheck -sp /var/cache/apt/archives; fi";

-- (no /etc/apt/preferences present) --


-- /etc/apt/sources.list --

deb http://mirror.ox.ac.uk/debian/ testing main non-free contrib
deb-src http://mirror.ox.ac.uk/debian/ testing main non-free contrib

deb http://security.debian.org/ testing/updates main contrib non-free

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages apt depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-5  GCC support library
ii  libstdc++64.0.2-5The GNU Standard C++ Library v3

Versions of packages apt recommends:
ii  debian-archive-keyring2006.01.18 GnuPG archive keys of the Debian a

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: severity of 352231 is important

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.11
> severity 352231 important
Bug#352231: Subject: aptitude: aptitude ignores --target-release option
Severity set to `important'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352207: grub-update does not work since update to 0.97-3

2006-02-10 Thread Steve Langasek
On Fri, Feb 10, 2006 at 02:43:14PM +0100, Didrik Pinte wrote:
> Package: grub
> Version: 0.97-4
> Severity: serious
> Justification: 2

> I've just updated an AMD64 server with dist-upgrade to the latest grub
> version and kernel 2.6.15.

> The upgrade jumped from before 0.97-1 version to 0.97-3 version.

> When calling update-grub, I receive :
> ---
> serveurmeteo:/boot# update-grub
> Searching for GRUB installation directory ... found: /boot/grub
> ---

> When the kernel package was update, the postinst script did not succeed
> because of the update-grub not working.

But your bug doesn't show any errors from update-grub?

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Bug#349794: Patch for 5.51

2006-02-10 Thread Martin Pitt
Hi again,

Martin Pitt [2006-02-10 20:45 +0100]:
> It works for version 5.52; 5.51 still crashes with that patch, I will
> look into this as well.

Ok, done: 5.51 does some unsafe strcpy()s in do_wild(), which are not
present any more in 5.52. Here is the 5.51 patch, maybe it is useful
for fixing woody (which has 5.50):

  http://patches.ubuntu.com/patches/unzip-5.51.CVE-2005-4667.diff

Thanks,

Martin

-- 
Martin Pitthttp://www.piware.de
Ubuntu Developer   http://www.ubuntu.com
Debian Developer   http://www.debian.org

In a world without walls and fences, who needs Windows and Gates?


signature.asc
Description: Digital signature


Processed: Patch, CVE number

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 349794 patch
Bug#349794: unzip: Info-ZIP UnZip File Name Buffer Overflow Vulnerability
Tags were: security
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#349794: Patch, CVE number

2006-02-10 Thread Martin Pitt
tag 349794 patch
thanks

Hi!

I took a stab at this bug; granted, it's not the worst one in the
world, but it should be fixed eventually.

This is the patch I used for the Ubuntu security update:

  http://patches.ubuntu.com/patches/unzip.CVE-2005-4667.diff

It works for version 5.52; 5.51 still crashes with that patch, I will
look into this as well.

Also, this has been assigned CVE-2005-4667, please mention this number
in the changelog when you fix this.

Thanks,

Martin

-- 
Martin Pitthttp://www.piware.de
Ubuntu Developer   http://www.ubuntu.com
Debian Developer   http://www.debian.org

In a world without walls and fences, who needs Windows and Gates?


signature.asc
Description: Digital signature


Bug#352231: Subject: aptitude: aptitude ignores --target-release option

2006-02-10 Thread Christian Perrier
Quoting Grégoire Druant ([EMAIL PROTECTED]):
> Package: aptitude
> Version: 0.4.1-1
> Severity: grave
> 
> Aptitude ignores -t option or its long version --target-release.
> It will allways install the unstable version of the packages I try to
> install.
> If I try aptitude install package -t blablabla, it doesn't mind that
> blablabla is no valid release, proof that the option is ignored.


This actually does not make the bug "grave", imho.

Leaving the decision to Daniel, the package maintainer, but I really
fail to see why it "makes the package in question unusable or mostly
so" or causes data loss.

I would rather tag it important





Bug#352258: Recompile libfox1.4-dev due to changes in libxft-dev

2006-02-10 Thread geiger

Package: libfox-1.4-dev
Version: 1.4.16-2
Severity: serious

Hi,

I am maintaining rezound, a package that uses the FOX toolkit. Due
to changes in libxft-dev the FOX package has to be recompiled, as
libfox1.4-dev currently depends on the file /usr/lib/libXft.la (which
doesn't exist anymore).

I found a similar problem here:

http://lists.debian.org/debian-qt-kde/2006/01/msg00487.html

They solved it through recompilation.

Cheers,

Günter




Processed: Re: Bug#351043: gnudoku

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 351043 +help
Bug#351043: gnudoku: generates puzzles with multiple solutions
There were no tags set.
Tags added: help

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#351043: gnudoku

2006-02-10 Thread David Gil
tags 351043 +help
thanks

I don't know how to deal with this bug. I am quite surprised of its
severity since I totally agree with John.

Of course I don't want to start a "severity war" so I just mark the bug
with the help tag.


> The generation of ambiguous puzzles is a known bug.  None of the authors
> has the time to do anything about it at this time.
> 
> However, I would argue that the poster overestimates the seriousness of
> it.
>  1. Nowhere I can find is there some official definition of Su Doku
> that states puzzles must be unambiguous, although I acknowlege
> that it is conventional.
>  2. gnudoku also serves to load puzzles obtained elsewhere, as well
> as solving puzzles the user inputs.
> 
> > The presence of ksudoku and gnome-sudoku in testing also makes the
> > transition of gnudoku to testing quite useless
> 
> I don't know how debian operates, but I didn't realise that an
> application had to satisfy a criterion of usefulness compared to
> existing alternatives to be allowed into the distribution.
> 
> 



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352253: crashes on startup with wx.PyEventBinder problem

2006-02-10 Thread Joey Hess
Package: ipodder
Version: 2.1.9-4
Severity: serious

[EMAIL PROTECTED]:~>ipodder
Traceback (most recent call last):
  File "/usr/share/ipodder/iPodderGui.py", line 44, in ?
import gui.iPodderWindows
  File "/usr/share/ipodder/gui/iPodderWindows.py", line 21, in ?
import listctrl  as  listmix
  File "/usr/share/ipodder/gui/listctrl.py", line 296, in ?
EVT_DOPOPUPMENU = wx.PyEventBinder(wxEVT_DOPOPUPMENU, 0)
AttributeError: 'module' object has no attribute 'PyEventBinder'

If I comment out the problimatic line, I'm right back to the SplashScreen
bug:

[EMAIL PROTECTED]:~>ipodder
[, ]
Traceback (most recent call last):
  File "/usr/share/ipodder/iPodderGui.py", line 159, in ?
class MySplashScreen(wx.SplashScreen):
AttributeError: 'module' object has no attribute 'SplashScreen'

If I edit that file to remove all mentions of splash screens, it dies with
this error:

[EMAIL PROTECTED]:~>ipodder
[, ]
Traceback (most recent call last):
  File "/usr/share/ipodder/iPodderGui.py", line 173, in ?
class iPodderStatusBar(wx.StatusBar):
AttributeError: 'module' object has no attribute 'StatusBar'

At this point I sorta gave up..

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages ipodder depends on:
ii  bittorrent3.4.2-6Scatter-gather network file transf
ii  python2.3.5-5An interactive high-level object-o
ii  python-feedparser 4.1-2  Universal Feed Parser for Python
ii  python-pyrss2gen  1.0.0-1A Python interface for generating 
ii  python-wxgtk2.6   2.6.1.2wxWidgets Cross-platform C++ GUI t
ii  python-xmms   2.06-3 Python interface to XMMS

ipodder recommends no packages.

-- no debconf information

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#340352: otrs: Multiple SQL injection and Cross-Site-Scripting vulnerabilities

2006-02-10 Thread Moritz Muehlenhoff
Torsten Werner wrote:
> > OTRS is vulnerable to several SQL injection and Cross-Site-Scripting
> > vulnerabilities. Please see here for more information:
> > http://otrs.org/advisory/OSA-2005-01-en/
> > http://moritz-naumann.com/adv/0007/otrsmulti/0007.txt
> > 
> > The new upstream version 1.3.3 fixes all these problems.
> 
> I know that already. The upstream author is preparing a patch for 1.3.2-01.

What's the status of an update for stable?

Cheers,
Moritz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352243: Uninstallable in Sid - depends on experimental libraries

2006-02-10 Thread Adam Majer
Maybe including the dependencies would make more sense in this report :)

[EMAIL PROTECTED]:~$ apt-cache showpkg bridge-utils
Package: bridge-utils
Versions:
1.1-1(/var/lib/apt/lists/debian.yorku.ca_debian_dists_unstable_main_binary-i386_Packages)
1.0.6-1(/var/lib/apt/lists/debian.yorku.ca_debian_dists_etch_main_binary-i386_Packages)(/var/lib/dpkg/status)
1.0.4-1(/var/lib/apt/lists/debian.yorku.ca_debian_dists_sarge_main_binary-i386_Packages)
0.9.5-2(/var/lib/apt/lists/debian.yorku.ca_debian_dists_woody_main_binary-i386_Packages)

Reverse Depends:
  ipmasq,bridge-utils
  netscript-2.4,bridge-utils 0.9.3
  ipmasq,bridge-utils
Dependencies:
1.1-1 - libc6 (2 2.3.5-1) libsysfs2 (0 (null)) ifupdown (0 (null))
ifupdown (3 0.6.0)
1.0.6-1 - libc6 (2 2.3.2.ds1-21) libsysfs1 (0 (null)) ifupdown (0
(null)) ifupdown (3 0.6.0)
1.0.4-1 - libc6 (2 2.3.2.ds1-4) libsysfs1 (0 (null)) ifupdown (0 (null))
ifupdown (3 0.6.0)
0.9.5-2 - libc6 (2 2.2.4-4) ifupdown (2 0.6.0)
Provides:
1.1-1 -
1.0.6-1 -
1.0.4-1 -
0.9.5-2 -
Reverse Provides:



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#310580: marked as done ('kernel-patch-psd' does not apply to any current sarge kernel)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 17:05:55 +0100
with message-id <[EMAIL PROTECTED]>
and subject line These kernel packages / patches have been removed from the 
archive
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: kernel-patch-psd
Version: 2.4.24-1
Severity: grave

Dear Pawel Wiecek 

As reported in http://people.debian.org/~frankie/kernel-patches-checks.txt, 
kernel-patch-psd does not
apply clean to a current kernel-source. If you think this package is anyway 
useful at least with
an up-to-date vanilla kernel and sure that it applies properly, feel free to 
document this in the 
package and reduce the severity of this report, else this kernel-patch will be 
hinted for 
removing in sarge.

See also this ML thread about the issue:

http://lists.debian.org/debian-release/2005/05/msg01325.html

--
Francesco P. Lovergine

--- End Message ---
--- Begin Message ---
All these kernel packages have been removed from the archive, I'm
thus closing the bugs.
--- End Message ---


Bug#310551: marked as done ('kernel-patch-2.4-cobalt' does not apply to any current sarge kernel)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 17:05:55 +0100
with message-id <[EMAIL PROTECTED]>
and subject line These kernel packages / patches have been removed from the 
archive
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: kernel-patch-2.4-cobalt
Version: 13
Severity: grave

Dear Russell Coker 

As reported in http://people.debian.org/~frankie/kernel-patches-checks.txt, 
kernel-patch-2.4-cobalt does not
apply clean to a current kernel-source. If you think this package is anyway 
useful at least with
an up-to-date vanilla kernel and sure that it apply properly, feel free to 
document this in the 
package and reduce the severity of this report, else this kernel-patch will be 
hinted for 
removing in sarge.

See also this ML thread about the issue:

http://lists.debian.org/debian-release/2005/05/msg01325.html

--
Francesco P. Lovergine

--- End Message ---
--- Begin Message ---
All these kernel packages have been removed from the archive, I'm
thus closing the bugs.
--- End Message ---


Bug#255382: marked as done (supports only older kernels, probably should be removed from testing)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 17:05:55 +0100
with message-id <[EMAIL PROTECTED]>
and subject line These kernel packages / patches have been removed from the 
archive
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: kernel-patch-scanlogic
Severity: serious
Tags: sid sarge

Hi,

yes, I know. this package only supports older 2.4 kernels (till 2.4.20).
Probably should be removed from testing now and from unstable if I don't
have time to update it in the next time...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
All these kernel packages have been removed from the archive, I'm
thus closing the bugs.
--- End Message ---


Processed: Serious

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 351043 serious
Bug#351043: gnudoku: generates puzzles with multiple solutions
Severity set to `serious'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352243: Uninstallable in Sid - depends on experimental libraries

2006-02-10 Thread Adam Majer
Package: bridge-utils
Version: 1.1.1-1
Severity: grave

[EMAIL PROTECTED]:~$ apt-cache policy bridge-utils
bridge-utils:
  Installed: 1.0.6-1
  Candidate: 1.1-1
  Version table:
 1.1-1 0
900 http://debian.yorku.ca unstable/main Packages
 *** 1.0.6-1 0
100 http://debian.yorku.ca etch/main Packages
100 /var/lib/dpkg/status
 1.0.4-1 0
 10 http://debian.yorku.ca sarge/main Packages
 0.9.5-2 0
 10 http://debian.yorku.ca woody/main Packages

[EMAIL PROTECTED]:~$ apt-cache policy libsysfs2
libsysfs2:
  Installed: (none)
  Candidate: 2.0.0-3
  Version table:
 2.0.0-3 0
  5 http://ftp.us.debian.org experimental/main Packages


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (900, 'unstable'), (100, 'testing'), (10, 'stable'), (5, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)

Versions of packages bridge-utils depends on:
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libsysfs1 1.3.0-7interface library to sysfs

Versions of packages bridge-utils recommends:
ii  ifupdown  0.6.7  high level tools to configure netw

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#285484: marked as done (ayttm: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 08:02:06 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#285484: fixed in ayttm 0.4.6+34-1
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: ayttm
Severity: normal
Tags: patch

When building 'ayttm' on amd64 with gcc-4.0,
I get the following error:

 gcc -DHAVE_CONFIG_H -I. -I. -I../.. -DUSE_STRUCT_CALLBACKS=1 
-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include 
-Ilibyahoo2 -I../../src -Wall -g -O2 -I../../src -MT yahoo.lo -MD -MP -MF 
.deps/yahoo.Tpo -c yahoo.c  -fPIC -DPIC -o .libs/yahoo.o
yahoo.c: In function 'ext_yahoo_conf_userleave':
yahoo.c:1239: error: invalid lvalue in assignment
yahoo.c: In function 'ext_yahoo_conf_message':
yahoo.c:1421: warning: pointer targets in passing argument 3 of 
'eb_chat_room_show_message' differ in signedness
make[5]: *** [yahoo.lo] Error 1
make[5]: Leaving directory `/ayttm-0.4.6+26/modules/yahoo2'

With the attached patch 'ayttm' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/ayttm-0.4.6+26/modules/yahoo2/yahoo.c 
./modules/yahoo2/yahoo.c
--- ../tmp-orig/ayttm-0.4.6+26/modules/yahoo2/yahoo.c   2004-07-20 
13:14:39.0 +0200
+++ ./modules/yahoo2/yahoo.c2004-12-13 16:11:48.207243776 +0100
@@ -1236,7 +1236,7 @@
if(!strcmp(handle, who)) {
ycrd->members = y_list_remove_link(ycrd->members, l);
FREE(handle);
-   FREE((YList *)l);
+   FREE(l);
break;
}
}

--- End Message ---
--- Begin Message ---
Source: ayttm
Source-Version: 0.4.6+34-1

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

ayttm_0.4.6+34-1.diff.gz
  to pool/main/a/ayttm/ayttm_0.4.6+34-1.diff.gz
ayttm_0.4.6+34-1.dsc
  to pool/main/a/ayttm/ayttm_0.4.6+34-1.dsc
ayttm_0.4.6+34-1_i386.deb
  to pool/main/a/ayttm/ayttm_0.4.6+34-1_i386.deb
ayttm_0.4.6+34.orig.tar.gz
  to pool/main/a/ayttm/ayttm_0.4.6+34.orig.tar.gz



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

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Chris Halls <[EMAIL PROTECTED]> (supplier of updated ayttm 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 15:08:27 +
Source: ayttm
Binary: ayttm
Architecture: source i386
Version: 0.4.6+34-1
Distribution: unstable
Urgency: low
Maintainer: Chris Halls <[EMAIL PROTECTED]>
Changed-By: Chris Halls <[EMAIL PROTECTED]>
Description: 
 ayttm  - Universal Instant Messaging Client
Closes: 285484 308160 314149 314742 344679
Changes: 
 ayttm (0.4.6+34-1) unstable; urgency=low
 .
   * New upstream CVS snapshot:
 - Fix gcc4 compilation
 - IRC commands patch
 - Allow override of connect server for gtalk support
   * xlibs-dev transition: Change to libxpm-dev build dependency
 (closes: #344679)
   * Fix FTBS on amd64, thanks Andreas Jochens for the patch
 (closes: #285484)
   * Enable dependency generation for libjasper (closes: #308160)
   * German translation update from Jens Seidel (closes: #314149)
   * Do not note that modules have changed on first install. Thanks
 Greg Olszewski for patch (closes: #314742)
Files: 
 dcf07a800f2717f80569d2fa0a4a1577 786 net optional ayttm_0.4.6+34-1.dsc
 6ed02913eb2ea44159eee0f942b2402f 2389087 net optional 
ayttm_0.4.6+34.orig.tar.gz
 0a405356f338b474707276e6891000c4 75505 net optional ayttm_0.4.6+34-1.diff.gz
 40da98db6e9563c97ee85f67c01fa320 1864690 net optional ayttm_0.4.6+34-1_i386.deb

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

iD8DBQFD7LXCexmdExmX588RAtCaAJ9MlQM3HJxYmjbTQEEmZM9D7AllgQCeOPsB
xr8fBB52S5ybbzMPCEOwLlM=
=yfFY
-END PGP SIGNATURE-

--- End Message ---


Bug#352196: How does that happen?

2006-02-10 Thread Armin Berres

Filipus Klutiero wrote:

Hi,
Assuming you mean 3.1.2-1, could you indicate the command which 
generates that output?


It was a simple "aptitude upgrade". As I said "aptitude install eclipse" 
configured eclipse and eclipse-sdk worked afterwards.
If no one can verify this problem feel free to close the bug - I just 
wanted to mention it.




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352196: How does that happen?

2006-02-10 Thread Filipus Klutiero

Hi,
Assuming you mean 3.1.2-1, could you indicate the command which 
generates that output?



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#350816: marked as done (tix: tcl/tk can't find libTix8.4.so.1)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 06:47:22 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#350816: fixed in tix 8.4.0-4
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: tix
Version: 8.4.0-3
Severity: grave
Justification: renders package unusable


tcl/tk looks for libTix8.4.so.1 in the wrong place, see following

$ wish
% package require Tix
couldn't load file "/usr/lib/Tix8.4/libTix8.4.so.1":
  /usr/lib/Tix8.4/libTix8.4.so.1: cannot open shared object file: No such file
  or directory
%


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages tix depends on:
ii  tcl8.3 [tclsh]8.3.5-5Tcl (the Tool Command Language) v8
ii  tcl8.4 [tclsh]8.4.12-1   Tcl (the Tool Command Language) v8

tix recommends no packages.

-- no debconf information


Carlo

--
Carlo U. Segre -- Professor of Physics
Associate Dean for Special Projects, Graduate College
Illinois Institute of Technology
Voice: 312.567.3498Fax: 312.567.3494
[EMAIL PROTECTED]http://www.iit.edu/~segre

--- End Message ---
--- Begin Message ---
Source: tix
Source-Version: 8.4.0-4

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

tix-dev_8.4.0-4_i386.deb
  to pool/main/t/tix/tix-dev_8.4.0-4_i386.deb
tix_8.4.0-4.diff.gz
  to pool/main/t/tix/tix_8.4.0-4.diff.gz
tix_8.4.0-4.dsc
  to pool/main/t/tix/tix_8.4.0-4.dsc
tix_8.4.0-4_i386.deb
  to pool/main/t/tix/tix_8.4.0-4_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <[EMAIL PROTECTED]> (supplier of updated tix 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 10 Feb 2006 15:28:01 +0100
Source: tix
Binary: tix tix-dev
Architecture: source i386
Version: 8.4.0-4
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose <[EMAIL PROTECTED]>
Changed-By: Matthias Klose <[EMAIL PROTECTED]>
Description: 
 tix- The Tix library for Tk -- runtime package
 tix-dev- The Tix library for Tk -- development package
Closes: 350816
Changes: 
 tix (8.4.0-4) unstable; urgency=low
 .
   * Fix loading of Tix module (closes: #350816).
Files: 
 84ef2fe254339a63b1eab19eb7a218c1 587 libs optional tix_8.4.0-4.dsc
 d7414ce31de5fa9c4c1cb97732b7c6cc 25740 libs optional tix_8.4.0-4.diff.gz
 9a252ed7bf21ebd2b8498ad199f8cb85 316884 libs optional tix_8.4.0-4_i386.deb
 ae1b86580d39aaf020669e043fb5f5ea 527194 devel optional tix-dev_8.4.0-4_i386.deb

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

iD8DBQFD7KOiStlRaw+TLJwRAtvAAJ9bmpxzU1sE4bvCRsGzfM4Nl2m6zwCgnEHe
/N65FZJPXYCLnUCzWQO0+Ek=
=+HXn
-END PGP SIGNATURE-

--- End Message ---


Processed: Re: Bug#348649: ftbfs: "I can't find file `policy.aux'."

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 348649 + unreproducible moreinfo
Bug#348649: ftbfs: "I can't find file `policy.aux'."
There were no tags set.
Tags added: unreproducible, moreinfo

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Fixed in NMU of zynaddsubfx 2.2.1-4

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 352014 + fixed
Bug#352014: zynaddsubfx: FTBFS: Missing Build-Depends on 'zlib1g-dev'
Tags were: patch
Tags added: fixed

> quit
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 294520

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 294520 + patch
Bug#294520: libparted1.6-13: Incorrect handling of extended partitions
There were no tags set.
Tags added: patch

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352219: gri: Please rebuild with current netcdf.

2006-02-10 Thread Peter S Galbraith
Daniel Kobras <[EMAIL PROTECTED]> wrote:

> Package: gri
> Version: 2.12.10-5
> Severity: grave
> Justification: package uninstallable
> 
> The netcdf3g package has been renamed and split into C and C++ parts,
> but the i386 package of gri still depends on the removed netcdf3g and
> therefore cannot be installed at the moment. A simple rebuild should be
> sufficient to fix the problem.

Thanks.  I wish source-only uploads were possible.  I'll fix it this
evening from home.

> An automated binary-only rebuild of gri failed because the upstream
> tarball ships debian/changelog with write permission bits unset[0].

Yeah, that's a bit annoying.  I'll fix that.  I had not realised that
this was needed for binary-only rebuilds.

> Please chmod u+w debian/changelog in the clean target to allow for
> future binNMUs.

I'll do that for now, but better to fix the source tar ball in the long
run.

> Regards,
> 
> Daniel.
> 
> [0] 
> http://buildd.debian.org/fetch.php?pkg=gri&arch=i386&ver=2.12.10-5%2Bb1&stamp=1139461973&file=log

Thanks!
-- 
Peter


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#348649: ftbfs: "I can't find file `policy.aux'."

2006-02-10 Thread Wolfgang Baer
tags 348649 + unreproducible moreinfo
thanks


Hi,

I just tried it on an uptodate sid and with an uptodate pbuilder
and both built java-common without a problem.

Can you retry and if it still fails provide more information about
the system and the versions of the build-dependencies you are using
during build.

Thanks,
Wolfgang



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352232: python-netcdf: Uninstallable due to netcdf transition.

2006-02-10 Thread Daniel Kobras
Package: python-netcdf
Version: 2.4.9-3
Severity: grave
Justification: package uninstallable

Moi Matthias!

python-netcdf depends on package netcdf3g that was removed in your
recent netcdf NMU. As python-scientific has strictly versioned
dependencies from arch-any to arch-all packages, it can't be binNMUed,
so please do a sourceful upload to follow the netcdf transition.

Thanks,

Daniel.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352231: Subject: aptitude: aptitude ignores --target-release option

2006-02-10 Thread Grégoire Druant
Package: aptitude
Version: 0.4.1-1
Severity: grave

Aptitude ignores -t option or its long version --target-release.
It will allways install the unstable version of the packages I try to
install.
If I try aptitude install package -t blablabla, it doesn't mind that
blablabla is no valid release, proof that the option is ignored.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15.3
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.3-6-3.1 0.6.43.2   Advanced front-end for dpkg
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-8  GCC support library
ii  libncursesw5  5.5-1  Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a2.0.16-3   type-safe Signal Framework for C++
ii  libstdc++64.0.2-8The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
ii  aptitude-doc-fr [aptitude-doc 0.4.1-1French manual for aptitude, a term

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352228: dovecot-common: Overwrites config files

2006-02-10 Thread Hans Fugal
Package: dovecot-common
Version: 1.0.alpha5-1
Severity: serious
Justification: Policy 10.7.3


On upgrade, overwrites configuration files in /etc/dovecot, specifically
(in my case) /etc/dovecot/dovecot{,-ldap}.conf.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable'), (50, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages dovecot-common depends on:
ii  adduser   3.80   Add and remove users and groups
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libcomerr21.38+1.39-WIP-2005.12.31-1 common error description library
ii  libkrb53  1.4.3-5MIT Kerberos runtime libraries
ii  libldap2  2.1.30-12  OpenLDAP libraries
ii  libmysqlclien 4.0.24-10sarge1mysql database client library
ii  libpam-runtim 0.79-3 Runtime support for the PAM librar
ii  libpam0g  0.79-3 Pluggable Authentication Modules l
ii  libpq48.1.0-3PostgreSQL C client library
ii  libssl0.9.8   0.9.8a-6   SSL shared libraries
ii  openssl   0.9.8a-6   Secure Socket Layer (SSL) binary a
ii  zlib1g1:1.2.3-9  compression library - runtime

dovecot-common recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352227: gmt: FTBFS and uninstallable on hppa.

2006-02-10 Thread Daniel Kobras
Package: gmt
Version: 4.0-2
Severity: serious
Justification: FTBFS on release candidate architecture

Despite several attempts, version 4.0-2 of gmt could never be built on
hppa due to linkage problems[0]. As a consequence, 3.4.4-1 is still
current on hppa, but this version is uninstallable because it depends on
the removed netcdf3g package. A binNMU for the netcdf transition failed
just like the previous build attempts. Please investigate.

Regards,

Daniel.

[0] http://buildd.debian.org/build.php?pkg=gmt&arch=hppa&ver=4.0-2


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352225: adduser: severe problem in existing_user_ok()

2006-02-10 Thread Henrique de Moraes Holschuh
Package: adduser
Version: 3.82
Severity: grave
Justification: renders package unusable

Severity is set to grave because it breaks one of the two core
functionalities of adduser, and one that is used by most postinst scripts
that use adduser, to boot.

Adduser is failing to correctly deal with a pre-existing system user when
asked to update it (with no modifications, even!).  This is caused by a bug
in existing_user_ok.

How to reproduce:

Excerpt of /etc/adduser.conf:
# FIRST_SYSTEM_UID to LAST_SYSTEM_UID inclusive is the range for UIDs
# for dynamically allocated administrative and system accounts.
FIRST_SYSTEM_UID=100
LAST_SYSTEM_UID=999

# FIRST_UID to LAST_UID inclusive is the range of UIDs of dynamically
# allocated user accounts.
FIRST_UID=1000
LAST_UID=2

# The USERGROUPS variable can be either "yes" or "no".  If "yes" each
# created user will be given their own group to use as a default, and
# their home directories will be g+s.  If "no", each created user will
# be placed in the group whose gid is USERS_GID (see below).
USERGROUPS=yes

Description of the bug:

# getent passwd hplip
hplip:x:125:7:HPLIP system user,,,:/var/run/hplip:/bin/false

# getent group lp
lp:x:7:lp

# adduser --system --ingroup lp --home /var/run/hplip --gecos 'HPLIP system 
user' --shell /bin/false --disabled-password hplip ; echo $?
adduser: Warning: The home dir you specified already exists.
The user `hplip' already exists with a different uid. Aborting
1

The bug is in routine existing_user_ok.  It must not return 2 if $new_uid is
undefined.  In that case, only 0 and 1 are valid results.

I miss a third return value, "3" for users which exist but are not in the
system range (which is a valid result independent of $new_uid being defined
or not).  It is useful to generate a printf (gtx("The user `%s' already
exists as a non-system user. Aborting\n"), $new_name) error message.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15.2-debian2+bluesmoke+lm85
Locale: LANG=pt_BR.ISO-8859-1, LC_CTYPE=pt_BR.ISO-8859-1 (charmap=ISO-8859-1)

Versions of packages adduser depends on:
ii  debconf [debconf-2.0] 1.4.70 Debian configuration management sy
ii  passwd1:4.0.14-5 change and administer password and
ii  perl-base 5.8.8-1The Pathologically Eclectic Rubbis

adduser recommends no packages.

-- debconf information:
* adduser/homedir-permission: true

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#340375: Subject: kuser destroys all passwords if /etc/shadow isn't present

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 340375 important
Bug#340375: Subject: kuser destroys all passwords if /etc/shadow isn't present
Severity set to `important'.

> stop
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging 349442

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.11
>  # until someone has a better idea
> tags 349442 patch
Bug#349442: dpkg: Assertion `dependtry <= 4' failed (abort).
There were no tags set.
Bug#349120: dpkg: assertion failure after failing to configure a package
Tags added: patch

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#340375: Subject: kuser destroys all passwords if /etc/shadow isn't present

2006-02-10 Thread Christopher Martin
severity 340375 important
stop

Since this bug is largely fixed in Sid, but not so totally resolved that I'd 
want to attach a "fixed" tag, I think the best course of action is to lower 
the bug to important, but keep it open. In any case, the bug isn't a 
regression with respect to what's in Etch at the moment.

Cheers,
Christopher Martin

On Saturday 17 December 2005 14:57, Christopher Martin wrote:
> On Tuesday 22 November 2005 20:23, Charles G Montgomery wrote:
> > Subject: kuser destroys all passwords if /etc/shadow isn't present
> > Package: kuser
> > Version: 4:3.4.2-1
> > Severity: grave
> > Justification: renders package unusable
>
> Hello,
>
> I forwarded the issue upstream, and a check was added for the /etc/shadow
> file in the KDE 3.5 branch. The kdeadmin upload that should clear NEW and
> be in experimental shortly contains this fix. However, as you noted
> yourself, this doesn't completely resolve the issue, since /etc/shadow
> could be present but shadow passwords still not in use.
>
> Upstream seems to be under the astonishing impression that the ability to
> disable the use of shadow passwords by clearing "/etc/shadow" from the
> shadow file text field in Configure KUser is intuitive and clear to
> users. Even the check for /etc/shadow was added reluctantly, and upstream
> has stated that he has no intention of adding further checks.
>
> So what to do? Having /etc/shadow but not using shadow passwords is
> probably a pretty rare configuration. We could add a README.Debian to
> warn users of this quirk, but there is no guarantee that people would
> read it.
>
> Any ideas, comments, suggestions from the team? Should the bug remain RC
> once 3.5 enters unstable?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352219: gri: Please rebuild with current netcdf.

2006-02-10 Thread Daniel Kobras
Package: gri
Version: 2.12.10-5
Severity: grave
Justification: package uninstallable

The netcdf3g package has been renamed and split into C and C++ parts,
but the i386 package of gri still depends on the removed netcdf3g and
therefore cannot be installed at the moment. A simple rebuild should be
sufficient to fix the problem.

An automated binary-only rebuild of gri failed because the upstream
tarball ships debian/changelog with write permission bits unset[0].
Please chmod u+w debian/changelog in the clean target to allow for
future binNMUs.

Regards,

Daniel.

[0] 
http://buildd.debian.org/fetch.php?pkg=gri&arch=i386&ver=2.12.10-5%2Bb1&stamp=1139461973&file=log


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352210: websvn: Temporary files not compliant to FSH

2006-02-10 Thread Claudio Sacerdoti Coen
Package: websvn
Version: 1.61-16
Severity: critical
Justification: breaks the whole system


 Temporary directories and files are created in /usr/share/websvn/temp.
 IMHO this behaviour is not compliant with FSH.

 Moreover, it seems that the temporary files are never got rid of.
 In a few days 4.18GBytes of temporary data were generated in /usr/...,
 until the disk was full!

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.23-mowgli
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages websvn depends on:
ii  apache [httpd]  1.3.34-1 versatile, high-performance HTTP s
ii  apache2-mpm-prefork [httpd] 2.0.55-3 traditional model for Apache2
ii  debconf [debconf-2.0]   1.4.66   Debian configuration management sy
ii  libapache2-mod-php4 4:4.4.0-4server-side, HTML-embedded scripti
ii  php44:4.4.0-4server-side, HTML-embedded scripti
ii  po-debconf  0.9.2manage translated Debconf template
ii  subversion  1.2.3dfsg1-3 advanced version control system (a
ii  ucf 2.004Update Configuration File: preserv

Versions of packages websvn recommends:
ii  enscript  1.6.4-7Converts ASCII text to Postscript,

-- debconf information:
* websvn/configuration: true
* websvn/parentpath: /local/svn
* websvn/repositories: /local/svn/helm
* websvn/permissions:
* websvn/webservers: apache, apache-ssl, apache-perl, apache2


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#170795: fixed in opensp 1.5.2-1

2006-02-10 Thread Steinar H. Gunderson
On Fri, Feb 10, 2006 at 07:44:23AM -0500, Neil Roeth wrote:
> Correct on both counts: it would be just "pushing it ahead", and I am
> reluctant at this time to turn off DTDDECL in stable, because that is removing
> behavior, though the longer the package remains in unstable with DTDDECL
> handling turned off and no complaints, the less reluctant I will be to make
> the corresponding change in stable.

What does the DTDDECL thing _do_, BTW? I don't think I've gotten to that part
yet :-)

But will a workaround for this be to simply use a temporary file instead of
reading from a pipe? I guess I can do that, I don't need the validation in
production code...

/* Steinar */
-- 
Homepage: http://www.sesse.net/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#294520: Patch for this bug(?)

2006-02-10 Thread Bas Wijnen
Tags: patch

Hello,

I have traced this problem down to libparted (and reassigned the bug
accordingly).  I think I have found the problem, but since I cannot reproduce
the behaviour, I am not sure.  I attached a patch for libparted/disk_dos.c.

The problem seems to be that the partition number does not get initialized.
This is supposed to happen later, but there is a check that it will not
renumber primary partitions.  The patch initializes the number to -1, so the
renumbering will indeed happen.

Could you please test if the problem is solved with this patch?  In case you
don't want to build from source, I built a .deb which I put at
http://pcbcn10.phys.rug.nl/~shevek/debian/parted/

Maintainers: The package mentioned above is all set up to do an NMU.  I don't
expect this will happen, as you seem to be pretty responsive.  The reason is
I'm currently in NM, and I needed an RC bug to prepare an NMU for.  Before I
reassigned it, this was a good candidate. ;-)  

Thanks,
Bas Wijnen

-- 
I encourage people to send encrypted e-mail (see http://www.gnupg.org).
If you have problems reading my e-mail, use a better reader.
Please send the central message of e-mails as plain text
   in the message body, not as HTML and definitely not as MS Word.
Please do not use the MS Word format for attachments either.
For more information, see http://129.125.47.90/e-mail.html
#! /bin/sh /usr/share/dpatch/dpatch-run
## extended.dpatch by  <[EMAIL PROTECTED]>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.

@DPATCH@
diff -urNad parted-1.6.25.1~/libparted/disk_dos.c 
parted-1.6.25.1/libparted/disk_dos.c
--- parted-1.6.25.1~/libparted/disk_dos.c   2005-11-11 13:35:53.0 
+0100
+++ parted-1.6.25.1/libparted/disk_dos.c2006-02-10 13:05:48.0 
+0100
@@ -850,6 +850,8 @@
goto error;
if (!is_extended_table)
part->num = i + 1;
+   else
+   part->num = -1;
if (type != PED_PARTITION_EXTENDED)
part->fs_type = ped_file_system_probe (&part->geom);
 


signature.asc
Description: Digital signature


Bug#352197: Acknowledgement (eclipse: locally installed plugins vanished)

2006-02-10 Thread Armin Berres

Michael Koch wrote:

I dont investigated your problem yet but why dont your install CDT from
Debian (apt-get install eclipse-cdt)?


Oh, great. Didn't notice we have this :)
Will use it...


Cheers,
Michael


Thanks,
Armin



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#350874: [Pkg-kde-extras] Bug#350874: [Kmymoney2-developer] Re: kmymoney 0.8.2 build dependency on $(HOME) directory

2006-02-10 Thread Thomas Baumgart
Hi all,

on Friday 10 February 2006 12:27, Mark Purcell wrote:

> On Thursday 02 February 2006 17:19, Thomas Baumgart wrote:
> > The real problem though is, that our configure script does not support
> > being called by an absolute path. I changed that in the current CVS
> > HEAD version and try to backport it for the next stable release.
> >
> > How could this be tested upfront?
>
> Thomas,
>
> I took your changes from CVS head and we still have the issue with
> trying to build without a $(HOME).

Can you provide me with 'config.log' and the output please for further 
analysis?

-- 

Regards

Thomas Baumgart

[EMAIL PROTECTED]   Check the KMyMoney open source
http://www.net-bembel.de/   project at http://kmymoney2.sf.net/

public key available under [EMAIL PROTECTED]  at  http://www.keyserver.net
GPG-FP: E55E D592 F45F 116B 8429   4F99 9C59 DB40 B75D D3BA
-
"Hey! I could use Tex!" and I've only gotten to use it a little
so far but it's so far superiour to MS Words "be everywhere do
everything"-ness it's not even funny... (lordSauron)
-


pgpDFZllFOz9U.pgp
Description: PGP signature


Bug#352207: grub-update does not work since update to 0.97-3

2006-02-10 Thread Didrik Pinte
Package: grub
Version: 0.97-4
Severity: serious
Justification: 2


Hi,

I've just updated an AMD64 server with dist-upgrade to the latest grub
version and kernel 2.6.15.

The upgrade jumped from before 0.97-1 version to 0.97-3 version.

When calling update-grub, I receive :
---
serveurmeteo:/boot# update-grub
Searching for GRUB installation directory ... found: /boot/grub
---

When the kernel package was update, the postinst script did not succeed
because of the update-grub not working.

The problem should be in the update-grub script after the look for the
grub installation directory but before the testing for the existance of
the menu.lst file ... Probably in the device detection ...

In case of, here is my fstab :
serveurmeteo:/boot# cat /etc/fstab
---
# /etc/fstab: static file system information.
#
#
proc/proc   procdefaults0   0
/dev/sda1   /   ext3defaults,errors=remount-ro 0
1
/dev/sda5   noneswapsw  0   0
/dev/hda/media/cdrom0   udf,iso9660 ro,user,noauto  0   0
/dev/fd0/media/floppy0  autorw,user,noauto  0   0

serveurmeteo:/boot#
---

The SATA drives are mounted in a RAID hardware system. So there won't be
interaction with RAID software as it seems to sometimes appear...

Any help is welcome.

Didrik


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-amd64-k8
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352197: Acknowledgement (eclipse: locally installed plugins vanished)

2006-02-10 Thread Michael Koch
On Fri, Feb 10, 2006 at 12:46:16PM +0100, Armin Berres wrote:
> Got some more Information:
> After reinstalling CDT from the CDT update site subclipse also reappeard 
> partially. I can use it from the menu and it is on the update site 
> again, but the "subclipse view" doesn't work (eclipse gave me a message 
> about this too). The CDT view seems to be broken too.
> Basic functionallity came back, but there seems to be a problem with the UI.

I dont investigated your problem yet but why dont your install CDT from
Debian (apt-get install eclipse-cdt)?


Cheers,
Michael
-- 
Escape the Java Trap with GNU Classpath!
http://www.gnu.org/philosophy/java-trap.html

Join the community at http://planet.classpath.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352202: CVE-2006-0635: Incorrect parsing of sizeof() may introduce integer overflows

2006-02-10 Thread Moritz Muehlenhoff
Package: tcc
Version: 0.9.23-2
Severity: grave
Tags: security
Justification: user security hole

"XFocus Security" discovered that tcc incorrectly evaluates certain sizeof()
expressions, which may lead integer overflows. Please see 
http://www.securityfocus.com/archive/1/archive/1/424257/100/0/threaded
for details.

This has been assigned CVE-2006-0635, please mention it in the changelog when
fixing it.

Cheers,
Moritz

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-2-686
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages tcc depends on:
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an

Versions of packages tcc recommends:
ii  libc6-dev [libc-dev]  2.3.5-13   GNU C Library: Development Librari

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Move bug to libparted

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 294520 libparted1.6-13
Bug#294520: QTParted Mixes Up Partiton Numbers
Bug reassigned from package `qtparted' to `libparted1.6-13'.

> retitle 294520 libparted1.6-13: Incorrect handling of extended partitions
Bug#294520: QTParted Mixes Up Partiton Numbers
Changed Bug title.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352197: Acknowledgement (eclipse: locally installed plugins vanished)

2006-02-10 Thread Armin Berres

Got some more Information:
After reinstalling CDT from the CDT update site subclipse also reappeard 
partially. I can use it from the menu and it is on the update site 
again, but the "subclipse view" doesn't work (eclipse gave me a message 
about this too). The CDT view seems to be broken too.

Basic functionallity came back, but there seems to be a problem with the UI.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#350874: [Pkg-kde-extras] Bug#350874: [Kmymoney2-developer] Re: kmymoney 0.8.2 build dependency on $(HOME) directory

2006-02-10 Thread Mark Purcell
On Thursday 02 February 2006 17:19, Thomas Baumgart wrote:
> The real problem though is, that our configure script does not support
> being called by an absolute path. I changed that in the current CVS HEAD
> version and try to backport it for the next stable release.
>
> How could this be tested upfront?

Thomas,

I took your changes from CVS head and we still have the issue with trying to 
build without a $(HOME).

Mark


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352197: eclipse: locally installed plugins vanished

2006-02-10 Thread Armin Berres
Package: eclipse
Version: 3.1.2-1
Severity: grave
Justification: causes non-serious data loss

I just updated to 3.2.1-1 and with this update all my plugins which
were installed via eclipse vanished (CDT, sublipse, checkstyle and even
more). 
The plugins living in /usr/local/lib/eclipse/plugins/ are still there.
"Help>Software Updates>Find and Install>Search for New Feature" also doesn't
show me my update sites anymore.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15.2
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages eclipse depends on:
ii  eclipse-jdt   3.1.2-1Java Development Tools plug-ins fo
ii  eclipse-pde   3.1.2-1Plug-in Development Environment to
ii  eclipse-source3.1.2-1Eclipse source code plug-ins

eclipse recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352196: eclipse-sdk: update to 3.1.2-1 failed

2006-02-10 Thread Armin Berres
Package: eclipse-sdk
Version: 3.1.2-1
Severity: grave
Justification: renders package unusable

I just tried to update to 3.2.1-1, but it failed and made eclipse
unusable.

###
dpkg: dependency problems prevent configuration of eclipse-sdk:
 eclipse-sdk depends on eclipse (= 3.1.2-1); however:
   Version of eclipse on system is 3.1.1-8.
   dpkg: error processing eclipse-sdk (--configure):
dependency problems - leaving unconfigured
##
"aptitude install eclipse" did the job and everything works now. Don't
know if this is a bug on your or a bug on my side. Just wanted to tell
you.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15.2
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages eclipse-sdk depends on:
ii  eclipse   3.1.1-8Extensible Tool Platform and Java 

eclipse-sdk recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352086: marked as done (libkjsembed-dev: libkjsembed.la depends on /usr/lib/libXft.la which no longer exists in debian)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 02:21:53 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#352086: libkjsembed-dev: libkjsembed.la depends on 
/usr/lib/libXft.la which no longer exists in debian
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: libkjsembed-dev
Version: 4:3.4.3-3
Severity: grave
Justification: renders package unusable

The file /usr/lib/libkjsembed.la has /usr/lib/libXft.la in the dependency_libs 
line, but
this file is no longer shipped with libxft-dev since version 2.1.8.2-1.
This causes, that compiling a program using libtool, which depends on 
libkjsembed fails with error
(for example new version of krusader):

>libtool: link: cannot find the library `/usr/lib/libXft.la'

Removing the "/usr/lib/libXft.la" from the list in the "dependency_libs" helps 
(at least for me, I have
no deep knowledge of libtool).


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-deb+pcsp
Locale: LANG=cs_CZ, LC_CTYPE=cs_CZ (charmap=ISO-8859-2)

Versions of packages libkjsembed-dev depends on:
ii  libkjsembed1  4:3.4.3-3  Embedded JavaScript library

libkjsembed-dev recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
On Thu, Feb 09, 2006 at 06:08:53PM +0100, Vaclav Juza wrote:
> Package: libkjsembed-dev
> Version: 4:3.4.3-3
> Severity: grave
> Justification: renders package unusable

> The file /usr/lib/libkjsembed.la has /usr/lib/libXft.la in the 
> dependency_libs line, but
> this file is no longer shipped with libxft-dev since version 2.1.8.2-1.
> This causes, that compiling a program using libtool, which depends on 
> libkjsembed fails with error
> (for example new version of krusader):

> >libtool: link: cannot find the library `/usr/lib/libXft.la'

kdebindings has been queued for binNMUs on all architectures.  No further
maintainer action should be required to resolve this bug.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature
--- End Message ---


Processed: tweaks

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> retitle 352182 Crash in the ASN.1 DER decoder
Bug#352182: Crash in the 
Changed Bug title.

> clone 352182 -1
Bug#352182: Crash in the ASN.1 DER decoder
Bug 352182 cloned as bug 352188.

> reassign -1 libtasn1-0 0.1.2-5
Bug#352188: Crash in the ASN.1 DER decoder
Bug reassigned from package `libtasn1-2' to `libtasn1-0'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: merging 308879 352179

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.11
> merge 308879 352179
Bug#308879: endless loop on startup
Bug#352179: tinyca: Sarge-Version of TINYCA still affected of #308879
Merged 308879 352179.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#349729: Was: sudo update to 1.6.8p7-1.3 breaks scripts: is this the permanent fix?

2006-02-10 Thread Jan Grant
Apologies for resubmission; I've jsut found this bug report. I'd like to 
add my voice to the requests that this be re-evaluated. In particular, 
"env_check" does not suffice.

See below:

From: Jan Grant <[EMAIL PROTECTED]>
Subject: sudo update to 1.6.8p7-1.3 breaks scripts: is this the permanent fix?

I'm looking at this:

http://www.debian.org/security/2006/dsa-946

I'm afraid I was just bitten by this. Sudo no longer conforms to the 
behaviour described in its man pages: in particular, I don't mind if my 
environment is stripped away from me but I'd expect that env_keep would 
carry on working, or that I'd be able to supply "!env_reset" to avoid 
the sanitisation in specific cases.

The issue I'm facing is that I have a large collection of scripts that 
rely on sudo, and need environment variables passing through from caller 
to callee. Unfortunately, the format of those variables' content 
includes "/" characters - this is unavoidable. Alas, env_keep, etc, no 
longer work as described.

I'm currently working around this by holding my sudo at 1.6.8p7-1.2; 
however, I'd prefer to be able to track it normally.

Are the future plans for sudo to include this rather draconian "fix"? Is 
this coming from upstream? (In which case I'll chase it with the 
upstream supplier.) Otherwise I'd plead that the changes to sudo be 
relaxed somewhat.

Many thanks for your excellent efforts.

Cheers,
jan

-- 
jan grant, ISYS, University of Bristol. http://www.bris.ac.uk/
Tel +44 (0)117 3317661   http://ioctl.org/jan/
The Java disclaimer: values of 'anywhere' may vary between regions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352182: Crash in the

2006-02-10 Thread Florian Weimer
Package: libtasn1-2
Version: 0.2.17-1
Severity: grave
Tags: security

A crash in the DER decoder of GnuTLS has been disclosed.

From: Simon Josefsson <[EMAIL PROTECTED]>
Subject: GnuTLS 1.2.10 - Security release
Newsgroups: gnu.announce
To: [EMAIL PROTECTED], help-gnutls@gnu.org, info-gnu@gnu.org
Date: Thu, 09 Feb 2006 16:46:28 +0100
Message-ID: <[EMAIL PROTECTED]>

We are pleased to announce the availability of GnuTLS version 1.2.10,
a security bug-fix release on the stable 1.2.x branch.

This release fixes several serious bugs that would make the DER
decoder in libtasn1 crash on invalid input.  The problems were
reported by Evgeny Legerov on the 31th of January.

[...]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352179: marked as done (tinyca: Sarge-Version of TINYCA still affected of #308879)

2006-02-10 Thread Debian Bug Tracking System
Your message dated Fri, 10 Feb 2006 01:32:12 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#352179: tinyca: Sarge-Version of TINYCA still affected of 
#308879
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--- Begin Message ---
Package: tinyca
Version: 0.6.8-1
Severity: grave
Justification: renders package unusable


After upgrading from Debian 3.0 "Woody" to 3.1 "Sarge" it is impossible
to access existing CA, certificates and keys of production systems.

The issue is described in bug report  #308879, this one is resolved, 
but it is not applicable here because tinyca-0.7 is not available for  
Debian 3.1 "Sarge". 

Using "unstable" packages caused degradation of startup time and
"responsivness".  

Please advise.

Best regards
Erik Weber.


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.26-omx
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages tinyca depends on:
ii  libgnome-perl   0.7009-2 Perl module for the gnome and zvt 
ii  libgtk-perl 0.7009-2 Perl module for the gtk+ library
ii  liblocale-gettext-perl  1.01-17  Using libc functions for internati
ii  openssl 0.9.8a-3mea0 Secure Socket Layer (SSL) binary a
ii  perl [libmime-base64-perl]  5.8.7-10 Larry Wall's Practical Extraction 

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 0.7.0-1
tags 308879 -sid
merge 352179 308879
thanks

On Fri, Feb 10, 2006 at 10:16:10AM +0100, eweber wrote:
> Package: tinyca
> Version: 0.6.8-1
> Severity: grave
> Justification: renders package unusable

> After upgrading from Debian 3.0 "Woody" to 3.1 "Sarge" it is impossible
> to access existing CA, certificates and keys of production systems.

> The issue is described in bug report  #308879, this one is resolved, 
> but it is not applicable here because tinyca-0.7 is not available for  
> Debian 3.1 "Sarge". 

Then this is still a duplicate of the other bug; which, with the BTS's
current version tracking support, should not (AFAIK) require a separate bug
report, since 308879 is still listed in the BTS as applicable to sarge.

Not that this addresses your concern about getting it fixed in sarge --
don't mind me, just doing BTS maintenance. :)

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature
--- End Message ---


Processed: Re: Bug#352179: tinyca: Sarge-Version of TINYCA still affected of #308879

2006-02-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> Version: 0.7.0-1
Unknown command or malformed arguments to command.

> tags 308879 -sid
Bug#308879: endless loop on startup
Tags were: sid
Tags removed: sid

> merge 352179 308879
Bug#308879: endless loop on startup
Bug#352179: tinyca: Sarge-Version of TINYCA still affected of #308879
Mismatch - only Bugs in same state can be merged:
Values for `done mark' don't match:
 #308879 has `done';
 #352179 has `open'

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#207932: Time to close this bug ?

2006-02-10 Thread Xavier Roche
Shouldn't we stop this madeness and close this bug ?

I don't think our beloved users need such extrmist attitude. 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352179: tinyca: Sarge-Version of TINYCA still affected of #308879

2006-02-10 Thread eweber
Package: tinyca
Version: 0.6.8-1
Severity: grave
Justification: renders package unusable


After upgrading from Debian 3.0 "Woody" to 3.1 "Sarge" it is impossible
to access existing CA, certificates and keys of production systems.

The issue is described in bug report  #308879, this one is resolved, 
but it is not applicable here because tinyca-0.7 is not available for  
Debian 3.1 "Sarge". 

Using "unstable" packages caused degradation of startup time and
"responsivness".  

Please advise.

Best regards
Erik Weber.


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.26-omx
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages tinyca depends on:
ii  libgnome-perl   0.7009-2 Perl module for the gnome and zvt 
ii  libgtk-perl 0.7009-2 Perl module for the gtk+ library
ii  liblocale-gettext-perl  1.01-17  Using libc functions for internati
ii  openssl 0.9.8a-3mea0 Secure Socket Layer (SSL) binary a
ii  perl [libmime-base64-perl]  5.8.7-10 Larry Wall's Practical Extraction 

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#352177: relocation error: symbol png_read_data, version PNG12_0 not defined in file libpng12.so.0 with link time reference

2006-02-10 Thread Michael Neuffer
Package: pngcrush
Version: 1.5.10-2
Severity: grave

[Desktop]# pngcrush Logo-1.png Logo-2.png 
Warning: versions are different between png.h and png.c
  png.h version: 1.2.7
  png.c version: 1.2.8


 | pngcrush 1.5.10, Copyright (C) 1998-2002 Glenn Randers-Pehrson
 | This is a free, open-source program.  Permission is irrevocably
 | granted to everyone to use this version of pngcrush without
 | payment of any fee.
 | Executable name is pngcrush
 | It was built with libpng version 1.2.7, and is
 | running with  libpng version 1.2.8 - December 3, 2004 (header)
 |Copyright (C) 1998-2002 Glenn Randers-Pehrson,
 |Copyright (C) 1996, 1997 Andreas Dilger,
 |Copyright (C) 1995, Guy Eric Schalnat, Group 42 Inc.,
 | and zlib version 1.2.2, Copyright (C) 1998,
 |Jean-loup Gailly and Mark Adler.

pngcrush: relocation error: pngcrush: symbol png_read_data, version PNG12_0 not 
defined in file libpng12.so.0 with link time reference
[Desktop]# ldd `which pngcrush`
linux-gate.so.1 =>  (0xe000)
libpng12.so.0 => /usr/lib/libpng12.so.0 (0xb7f4e000)
libz.so.1 => /usr/lib/libz.so.1 (0xb7f3a000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7e04000)
libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7dde000)
/lib/ld-linux.so.2 (0xb7f8e000)



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-rc5-mm3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages pngcrush depends on:
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  zlib1g1:1.2.3-9  compression library - runtime

pngcrush recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]