Bug#387195: add patch tag

2006-09-13 Thread zinosat
tags 387195 + patch
thanks


Naviga e telefona senza limiti con Tiscali 
Scopri le promozioni Tiscali adsl: navighi e telefoni senza canone Telecom

http://abbonati.tiscali.it/adsl/



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



Bug#387247: evolution: Evolution is not installable

2006-09-13 Thread Oyvind Harboe
Package: evolution
Severity: grave
Justification: renders package unusable


I can't install Evolution:

pest:/home/oyvind# apt-get install evolution
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  evolution: Depends: libdbus-1-2 (= 0.62) but it is not installable
E: Broken packages




-- 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.17-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


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



Bug#387183: ctn: Cannot open ANY dicom file on AMD64

2006-09-13 Thread Andreas Tille

On Wed, 13 Sep 2006, Thijs Kinkhorst wrote:


Of course, anyone willing to hack on CTN to bring it up to speed with
current environments is welcome. But I think at this point it's not that
sensible to try to keep CTN alive in Debian without upstream support or
other longer-time commitments to code maintenance; especially since the
popcon numbers are not impressive and I don't use it myself anymore.


Well, I think popcon is not really a good help for specialized software
like this.  We just know that very view users (compared to the amount
of Debian users as a whole) deal with medical imaging.  Relying on
statistics of a small set is wrong (ups I hope no doctors are reading
this ;-)).


I'm cc'ing this to debian-med; maybe someone there is interested in
reviving CTN. If a release manager reads this - CTN can be removed from
testing for the time being.


So if CTN has RC bugs that we can not fix it will be removed from testing
anyway and there is no need to do extra action.  This is just a technical
matter.  It would be really great if we would find a way to fix the
problems in the Debian-Med group and force Upstream with patches into
action.

Kind regards

 Andreas.
--
http://fam-tille.de


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



Bug#379920: freetype: buffer overflow [CVE-2006-3467]

2006-09-13 Thread Steve Langasek
Hi guys,

Looks like it's time for another try at freetype.  CVE-2006-3467 appears to
be a potentially exploitable integer overflow in freetype's PCF parser. 
I've uploaded freetype_2.1.7-6 to
http://people.debian.org/~vorlon/freetype-DSA/, replacing the previous
version there; signed sources, unsigned changes.  Please do whatever's
necessary with the package to make it suitable for a DSA release -- I won't
be uploading it at all to the security.d.o dak queue, given the poor outcome
of my other recent attempts.

debdiff vs. 2.1.7-5 in stable (r3) is also attached to this mail, in case
that's more convenient.

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 freetype-2.1.7/debian/rules freetype-2.1.7/debian/rules
--- freetype-2.1.7/debian/rules
+++ freetype-2.1.7/debian/rules
@@ -178,6 +178,9 @@
# Fix integer overflows (CVE-2006-2493)
patch -p0 -i $(patchdir)/400-CVE-2006-2493_integer-overflows.diff
 
+   # Fix further integer overflows (CVE-2006-3467)
+   patch -p0 -i $(patchdir)/500-CVE-2006-3467_pcf-strlen.diff
+
cd $(freetype_u)  ./configure --prefix=/usr CFLAGS=\$(CFLAGS)\
 #  cd $(freetype_u)  ./configure --prefix=/usr
$(MAKE) -C $(freetype_u)
diff -u freetype-2.1.7/debian/changelog freetype-2.1.7/debian/changelog
--- freetype-2.1.7/debian/changelog
+++ freetype-2.1.7/debian/changelog
@@ -1,3 +1,12 @@
+freetype (2.1.7-6) stable-security; urgency=low
+
+  * Add debian/patches-freetype/CVE-2006-3467_pcf-strlen.patch for
+CVE-2006-3467, a missing string length check in PCF files that
+leads to a possibly exploitable integer overflow.  Thanks to Martin 
+Pitt for the patch.  Closes: #379920.
+
+ -- Steve Langasek [EMAIL PROTECTED]  Tue, 12 Sep 2006 23:27:20 -0700
+
 freetype (2.1.7-5) stable; urgency=low
 
   * Backport the fix for bug #367579 (use CURDIR instead of PWD) so that
only in patch2:
unchanged:
--- freetype-2.1.7.orig/debian/patches/500-CVE-2006-3467_pcf-strlen.diff
+++ freetype-2.1.7/debian/patches/500-CVE-2006-3467_pcf-strlen.diff
@@ -0,0 +1,34 @@
+Index: freetype-2.1.7/src/pcf/pcfread.c
+===
+--- freetype-2.1.7.orig/src/pcf/pcfread.c  2006-07-26 12:59:30.0 
+0200
 freetype-2.1.7/src/pcf/pcfread.c   2006-07-26 12:59:46.0 +0200
+@@ -433,6 +433,14 @@
+ 
+ for ( i = 0; i  nprops; i++ )
+ {
++  /* 2006:0500 (mbarnes) - Detect invalid string length.
++   * XXX Is this is best error code to return? */
++  if ( props[i].name  0 )
++  {
++error = FT_Err_Invalid_File_Format;
++goto Bail;
++  }
++
+   /* XXX: make atom */
+   if ( FT_NEW_ARRAY( properties[i].name,
+  ft_strlen( strings + props[i].name ) + 1 ) )
+@@ -443,6 +451,14 @@
+ 
+   if ( props[i].isString )
+   {
++  /* 2006:0500 (mbarnes) - Detect invalid string length.
++ * XXX Is this the best error code to return? */
++if ( props[i].value  0 )
++{
++  error = FT_Err_Invalid_File_Format;
++  goto Bail;
++}
++
+ if ( FT_NEW_ARRAY( properties[i].value.atom,
+ft_strlen( strings + props[i].value ) + 1 ) )
+   goto Bail;


signature.asc
Description: Digital signature


Processed: tagging 385727

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 tags 385727 sid
Bug#385727: needs rebuild against libgcj7-0
There were no tags set.
Tags added: sid


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#387238: xen-hypervisor: Xen hypervisor reboots when scrubbing ram message is reached: confirmed on AMD64 and i386

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 387238 xen-hypervisor-3.0.2-1-i386
Bug#387238: xen-hypervisor: Xen hypervisor reboots when scrubbing ram message 
is reached: confirmed on AMD64 and i386
Warning: Unknown package 'xen-hypervisor'
Bug reassigned from package `xen-hypervisor' to `xen-hypervisor-3.0.2-1-i386'.

 --
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#387247: marked as done (evolution: Evolution is not installable)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 00:04:50 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#387247: evolution: Evolution is not installable
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)

---BeginMessage---
Package: evolution
Severity: grave
Justification: renders package unusable


I can't install Evolution:

pest:/home/oyvind# apt-get install evolution
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  evolution: Depends: libdbus-1-2 (= 0.62) but it is not installable
E: Broken packages




-- 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.17-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

---End Message---
---BeginMessage---
On Wed, Sep 13, 2006 at 08:35:40AM +0200, Oyvind Harboe wrote:
 Package: evolution
 Severity: grave
 Justification: renders package unusable

 I can't install Evolution:

 pest:/home/oyvind# apt-get install evolution
 Reading package lists... Done
 Building dependency tree... Done
 Some packages could not be installed. This may mean that you have
 requested an impossible situation or if you are using the unstable
 distribution that some required packages have not yet been created
 or been moved out of Incoming.

 Since you only requested a single operation it is extremely likely that
 the package is simply not installable and a bug report against
 that package should be filed.
 The following information may help to resolve the situation:

 The following packages have unmet dependencies:
   evolution: Depends: libdbus-1-2 (= 0.62) but it is not installable
 E: Broken packages

This is not a bug in evolution, the package merely requires a rebuild for
the dbus library transition.  This rebuild has already been scheduled, so
I'm going to go ahead and close 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/
---End Message---


Bug#387250: [NONFREE-DOC] Package contains IETF RFC/I-D

2006-09-13 Thread Simon Josefsson
Package: libaws-doc
Version: 2.2-1
Severity: serious

Hi!

It seems your package contains non-free IETF RFC/I-D's:

usr/share/doc/libaws-doc/rfc0821.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc1738.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc1867.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc1939.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc1945.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2045.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2049.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2109.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2183.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2195.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2554.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2595.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2616.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2617.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2817.txt.gz doc/libaws-doc
usr/share/doc/libaws-doc/rfc2818.txt.gz doc/libaws-doc

The license on IETF RFC/I-D's is not DFSG-free, see:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=199810
http://release.debian.org/removing-non-free-documentation

I believe the options are:

1) Remove the file from the package (which may include re-packaging
   the source code).

2) Move the files to a non-free package (which may also include
   re-packaging the source code).

If you disagree with this, because this bug is reported for several
packages at once, it seems better to discuss this on debian-legal, in
this thread:

http://thread.gmane.org/gmane.linux.debian.devel.legal/25993

The severity is serious, because this violates the Debian policy
http://www.debian.org/doc/debian-policy/ch-archive.html#s-dfsg.

I'm sorry if this report is filed in error, I went over many packages
looking for suspicious filenames, and there may be false positives.

Thanks,
Simon


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



Processed: setting package to console-data console-keymaps-acorn console-keymaps-amiga console-keymaps-at console-keymaps-atari console-keymaps-dec console-keymaps-mac console-keymaps-sun console-keym

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 package console-data console-keymaps-acorn console-keymaps-amiga 
 console-keymaps-at console-keymaps-atari console-keymaps-dec 
 console-keymaps-mac console-keymaps-sun console-keymaps-usb
Ignoring bugs not assigned to: console-keymaps-usb console-keymaps-atari 
console-keymaps-acorn console-keymaps-dec console-keymaps-amiga 
console-keymaps-sun console-keymaps-mac console-data console-keymaps-at

 tags 387195 + pending
Bug#387195: console-data: FTBFS `latin_diacr.fallback'
There were no tags set.
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#387183: ctn: Cannot open ANY dicom file on AMD64

2006-09-13 Thread Michael Hanke

Hi,

On Wed, Sep 13, 2006 at 02:20:42AM +0200, Thijs Kinkhorst wrote:
 On Tue, September 12, 2006 21:37, Michael Hanke wrote:
  I'm packaging a DICOM - NIfTI converter which uses the CTN library. I
  had to discover that the converter does not work on AMD64 machine, while
  everything is ok on i386.
 
 Thanks for your report. I've heard some other (more casual) comments
 about 64-bit incompatibilities before. I've passed these on to upstream,
 upstream has been promising a new release for over a year now but to no
 avail.
 
 Since the current packaged version is from 2002 and has a number of
 other problems, I'm quite inclined to *not* release ctn with etch unless
 there's new upstream work. I think this is the extra drop that was
 needed to take that decision.
 
 Of course, anyone willing to hack on CTN to bring it up to speed with
 current environments is welcome. But I think at this point it's not that
 sensible to try to keep CTN alive in Debian without upstream support or
 other longer-time commitments to code maintenance; especially since the
 popcon numbers are not impressive and I don't use it myself anymore.
 
 I'm cc'ing this to debian-med; maybe someone there is interested in
 reviving CTN. If a release manager reads this - CTN can be removed from
 testing for the time being.
Really sad news. As you might know I'm working on getting a whole
toolchain for (medical-imaging|neuroscience) research into Debian. One key
feature is of course a converter that moves the data from the scanner
into a useful dataformat. I think this is NIfTI. 

The make the story short, the best converter that I know of depends on
CTN. Upstream rereleased it under the GPL (for Debian main), several bugfixes
are on the way, but this might be the end!?

I haven't looked at the CTN package, but I also think that it is a heavy
job to maintain it without upstream.

Do you know, by any chance, some good candidate to replace CTN? I do not
really care for the console tools, but for the library itself.


Cheers,

Michael


-- 
GPG key:  1024D/3144BE0F Michael Hanke
http://apsy.gse.uni-magdeburg.de/hanke
ICQ: 48230050


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



Processed: setting package to asterisk asterisk-bristuff asterisk-classic asterisk-config asterisk-dev asterisk-doc asterisk-h323 asterisk-sounds-main asterisk-web-vmail ...

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 package asterisk asterisk-bristuff asterisk-classic asterisk-config 
 asterisk-dev asterisk-doc asterisk-h323 asterisk-sounds-main 
 asterisk-web-vmail
Ignoring bugs not assigned to: asterisk-classic asterisk-web-vmail 
asterisk-bristuff asterisk-config asterisk-doc asterisk-dev asterisk 
asterisk-sounds-main asterisk-h323

 tags 386361 + pending
Bug#386361: binary blob in asterisk-classic package
There were no tags set.
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]



Processed: Re: Bug#384791: fbtv: fails with `mmap: Invalid argument'

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 package fbtv
Ignoring bugs not assigned to: fbtv

 reopen 384791
Bug#384791: fbtv: fails with `mmap: Invalid argument'
'reopen' is deprecated when a bug has been closed with a version;
use 'found' or 'submitter' as appropriate instead.
Bug reopened, originator not changed.

 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#384585: manedit: crashes with autogenerated rc file

2006-09-13 Thread Thomas Girard
Selon Nacho Barrientos Arias [EMAIL PROTECTED]:

 (gdb) print style_ptr-font
 $2 = (GdkFont *) 0x7083d0

(gdb) next
(gdb) print style_ptr-font
Is it NULL now?

 Yes,

 (gdb) next
 170 style_ptr = styles_list-edit_text_background;
 (gdb) print style_ptr-font
 $3 = (GdkFont *) 0x0

Great, thanks.  Could you please try the attached patch?  It tries to
avoid the problem you're facing.

Thomas--- prefop.c-	2006-09-13 07:54:20.0 +
+++ prefop.c	2006-09-13 07:58:01.0 +
@@ -156,10 +156,12 @@
  */
 #define DO_APPLY_ENTRY_FONT_NAME {			\
 if((font_name != NULL)  (style_ptr != NULL)) {	\
- if(style_ptr-font != NULL)\
-  gdk_font_unref(style_ptr-font);			\
- style_ptr-font = gdk_font_load(font_name);		\
-} }
+ GdkFont *new_font = gdk_font_load(font_name);		\
+ if(new_font != NULL) {\
+   if(style_ptr-font != NULL)\
+ gdk_font_unref(style_ptr-font);			\
+   style_ptr-font = new_font;\
+} } }
 
 	/* Font editable text */
 	font_name = (gchar *)PrefParmGetValueP(


Bug#384791: fbtv: fails with `mmap: Invalid argument'

2006-09-13 Thread Mario 'BitKoenig' Holbe
package fbtv
reopen 384791
thanks

On Tue, Sep 05, 2006 at 12:32:31AM +0200, Aurelien Jarno wrote:
 They have failed due to a temporary problem, but the buildd maintainers 
 of those architecture haven't requeued them. I will ask them.

Hmmm, this seems to take a while. I'll reopen then bug to prevent the
wrong version from entering testing. It should be closed automagically
anyways once all archs are built. However, if it should not, I will
also take care of this :)


Mario
-- 
Why are we hiding from the police, daddy?  | J. E. Guenther
Because we use SuSE son, they use SYSVR4.  | de.alt.sysadmin.recovery


signature.asc
Description: Digital signature


Bug#387238: marked as done (xen-hypervisor: Xen hypervisor reboots when scrubbing ram message is reached: confirmed on AMD64 and i386)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 10:34:57 +0200
with message-id [EMAIL PROTECTED]
and subject line fixed
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)

---BeginMessage---
Package: xen-hypervisor
Version: xen-hypervisor-3.0-i386_3.0.2+hg9697-2_i386
Severity: grave
Justification: renders package unusable

I have installed the precompiled packages : 

xen-hypervisor-3.0-i386_3.0.2+hg9697-2_i386, 
xen-utils-3.0_3.0.2+hg9697-2_i386 and 
linux-image-2.6.16-2-xen-k7_2.6.16-18_i386 

on a debian etch system. However when the hypervisor starts-up, and reaches 
Scrubbing RAM message 
the system reboots automatically. 

This was observed on an AMD Opteron x86_64 system (2xCPU, 2GB, Tyan S2881), 
Intel P4 and AMD AthlonXP(1900MHz, 1GB) system. Later , I removed these 
packages and 
recompiled xen from xen-3.0 sources (from cam.ac.uk) and the system runs fine, 
so the hardware and my methods are OK. Definitely a problem with debian etch 
packages listed above.

Please contact me if you want more details (eg with sync_console or noreboot 
option) or any other details

Regards
Anand Vaidya

-- 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.16-2-xen-k7
Locale: LANG=en_SG.UTF-8, LC_CTYPE=en_SG.UTF-8 (charmap=UTF-8)

---End Message---
---BeginMessage---
You saw a difference in the interface between kernel and hypervisor, it
is not a bug to fail then.

Bastian

-- 
Each kiss is as the first.
-- Miramanee, Kirk's wife, The Paradise Syndrome,
   stardate 4842.6
---End Message---


Bug#384791: fbtv: fails with `mmap: Invalid argument'

2006-09-13 Thread Steve Langasek
close 384791 3.95-4
thanks

On Wed, Sep 13, 2006 at 09:47:18AM +0200, Mario 'BitKoenig' Holbe wrote:
 package fbtv
 reopen 384791
 thanks

 On Tue, Sep 05, 2006 at 12:32:31AM +0200, Aurelien Jarno wrote:
  They have failed due to a temporary problem, but the buildd maintainers 
  of those architecture haven't requeued them. I will ask them.

 Hmmm, this seems to take a while. I'll reopen then bug to prevent the
 wrong version from entering testing.

There's no danger of that happening.

 It should be closed automagically anyways once all archs are built.

No, this would not happen.  Bugs are only closed automatically for sourceful
uploads, and the versioned close previously sent gave the BTS accurate
information about the state of this bug (TTBOMK) -- your reopen removed that
bug state unnecessarily.

As for getting the package built, both arm and i386 should be taking another
crack at xawtv now.

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/



Processed: setting package to mdadm mdadm-udeb, tagging 385951, tagging 385994

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 package mdadm mdadm-udeb
Ignoring bugs not assigned to: mdadm mdadm-udeb

 tags 385951 + pending
Bug#385951: Fail to scan array in some case when partition is at the end of the 
disk
Tags were: patch upstream
Tags added: pending

 tags 385994 + pending
Bug#385994: mdadm: Missing versionned dep on debconf
Tags were: confirmed
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#384962: locale unusable with current firefox

2006-09-13 Thread Nis Martensen
On Tue, 12 Sep 2006 21:51:31 +0200, gerhard oettl wrote:
 Same story here, but as suggested in bug 364454
 
 aptitude reinstall firefox-locale-de
 
 revived the language support.

As already stated in bug 364454, running
touch /usr/lib/firefox/extensions/langpack-*
is much faster than reinstalling and does the trick, too.

 Maybe the postinst script of firefix should search
 for language-packages and reinstall them. Overkill?

Both overkill and not a solution, because both reinstalling and the
above command only work on user accounts with an already existing
.mozilla directory. Newly created users will still have an english
firefox.

Since firefox' locales are not included in the firefox package itself
(upstream packages are also separate), new uploads of the debian
packages are needed for any new firefox version (any firefox upload? --
has anybody checked?). 

This sucks, because it requires timely action by the maintainer. It
would really be nicer if firefox itself would cope better with this
situation. But this probably won't happen in time for etch.

Luk, could you please upload a new version?

Thanks,
 Nis


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



Bug#384585: manedit: crashes with autogenerated rc file

2006-09-13 Thread Thomas Girard
Nacho Congratulations, i applied it to a clean source tree and it works for
Nacho me. Now, i can execute Manedit with an existing RC file.

Great! So the previous patch manedit.diff is not needed?  I believe drag and
drop could crash without it, but this is not related to this bug.

Me Heck.  Here's the patch.

Oh well.  My webmail is hiding attachments.  Sorry for the duplicate.

Thomas



Bug#384585: manedit: crashes with autogenerated rc file

2006-09-13 Thread Nacho Barrientos Arias
tags 384585 + patch
thanks

Date: Wed, 13 Sep 2006 10:05:21 +0200
Thomas Girard [EMAIL PROTECTED] wrote:

 Great, thanks.  Could you please try the attached patch?  It tries to
 avoid the problem you're facing.

Congratulations, i applied it to a clean source tree and it works for
me. Now, i can execute Manedit with an existing RC file.

-- 
bye,
- Nacho


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



Processed: Re: Bug#384585: manedit: crashes with autogenerated rc file

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 384585 + patch
Bug#384585: manedit: crashes with autogenerated rc file
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#384585: manedit: crashes with autogenerated rc file

2006-09-13 Thread Thomas Girard
Selon Thomas Girard [EMAIL PROTECTED]:

 Great, thanks.  Could you please try the attached patch?  It tries to
 avoid the problem you're facing.

Heck.  Here's the patch.--- prefop.c-	2006-09-13 07:54:20.0 +
+++ prefop.c	2006-09-13 07:58:01.0 +
@@ -156,10 +156,12 @@
  */
 #define DO_APPLY_ENTRY_FONT_NAME {			\
 if((font_name != NULL)  (style_ptr != NULL)) {	\
- if(style_ptr-font != NULL)\
-  gdk_font_unref(style_ptr-font);			\
- style_ptr-font = gdk_font_load(font_name);		\
-} }
+ GdkFont *new_font = gdk_font_load(font_name);		\
+ if(new_font != NULL) {\
+   if(style_ptr-font != NULL)\
+ gdk_font_unref(style_ptr-font);			\
+   style_ptr-font = new_font;\
+} } }
 
 	/* Font editable text */
 	font_name = (gchar *)PrefParmGetValueP(


Bug#387250: [NONFREE-DOC] Package contains IETF RFC/I-D

2006-09-13 Thread Simon Josefsson
Ludovic Brenta [EMAIL PROTECTED] writes:

 Simon,

 Thanks for bringing this issue to my attention.  I will remove the RFC
 documents from the package, as I'm sure they're in doc-rfc anyway.
 However, before I do that, I'll ask upstream when a new release is
 planned, and whether they'd be willing to delete the documents from
 their tarballs.

Sounds fine!  Thanks for your swift response.

/Simon


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



Bug#387250: [NONFREE-DOC] Package contains IETF RFC/I-D

2006-09-13 Thread Ludovic Brenta
Simon,

Thanks for bringing this issue to my attention.  I will remove the RFC
documents from the package, as I'm sure they're in doc-rfc anyway.
However, before I do that, I'll ask upstream when a new release is
planned, and whether they'd be willing to delete the documents from
their tarballs.

-- 
Ludovic Brenta.


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



Processed: notfound 385097 in 0.2.6-2, found 385097 in 0.2.8-1

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 notfound 385097 0.2.6-2
Bug#385097: beagle 0.2.8-1 doesnt't start anymore
Bug marked as not found in version 0.2.6-2.
(By the way, this Bug is currently marked as done.)

 found 385097 0.2.8-1
Bug#385097: beagle 0.2.8-1 doesnt't start anymore
Bug marked as found in version 0.2.8-1.


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#387249: Acknowledgement ([NONFREE-DOC] Package contains IETF RFC/I-D)

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 387249 serious
Bug#387249: [NONFREE-DOC] Package contains IETF RFC/I-D
Severity set to `serious' from `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#385980: err.. sorry

2006-09-13 Thread Marc Fargas

My previous message was for #345931, sorry ;)

--
The probability of failure of a (computer) system is exponentially
proportional to the physical distance between it and the one who could
fix it. -- Martin F. Krafft


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



Bug#345931: If the problem is that the user doesn't know he won't be able to reboot...

2006-09-13 Thread Marc Fargas

Steve Langasek [EMAIL PROTECTED] writes:

Surely this is still a bug in the grub shell for failing to notice that it
had rendered the system unbootable?


Grub shell is supposed to be used by experienced users, and if the
big problem is that setup() doesn't copy those files to /boot/ there
are two lines of action:
a) On a call to setup() output a nice warning message that clearly
says that the files MUST be manually copied by the user encouragin the
use of grub-install
b) On a call to setup() take care of copying the files.

I'd vote for option a, with that warning in place the bug would be ok,
right? I've never touched inside grub but I can try to patch it if you
select A, and less maybe for B ;) [so, is option A ok for closing the
bug? at least the user knows that he/she won't boot again... hehe]

Cheers,
Marc.

--
The probability of failure of a (computer) system is exponentially
proportional to the physical distance between it and the one who could
fix it. -- Martin F. Krafft


--
The probability of failure of a (computer) system is exponentially
proportional to the physical distance between it and the one who could
fix it. -- Martin F. Krafft


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



Processed: severity of 377731 is important

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 severity 377731 important
Bug#377731: xserver-xorg-video-ati: dual head mergedfb without dri causes 
system freeze
Severity set to `important' from `critical'


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#387240: marked as done (gnome-screensaver_2.14.3-1 (unstable): FTBFS: undefined reference to `dbus_connection_disconnect')

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 02:02:27 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#387240: fixed in gnome-screensaver 2.14.3-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)

---BeginMessage---
Package: gnome-screensaver
Version: 2.14.3-1
Severity: serious
Tags: sid

Hi folks,

The binNMUs of gnome-screensaver for the dbus transition are failing to
build with this error:

[...]
cc -g -Wall -O2 -o gnome-screensaver-command gnome-screensaver-command.o 
/usr/lib/libgobject-2.0.so -ldbus-glib-1 -ldbus-1 /usr/lib/libglib-2.0.so
gnome-screensaver-command.o: In function `main':
/build/buildd/gnome-screensaver-2.14.3/src/gnome-screensaver-command.c:323: 
undefined reference to `dbus_connection_disconnect'
/build/buildd/gnome-screensaver-2.14.3/src/gnome-screensaver-command.c:323: 
undefined reference to `dbus_connection_disconnect'
collect2: ld returned 1 exit status
make[5]: *** [gnome-screensaver-command] Error 1
make[5]: Leaving directory /build/buildd/gnome-screensaver-2.14.3/src'
[...]

A full build log can be found at
http://buildd.debian.org/fetch.php?pkg=gnome-screensaverarch=alphaver=2.14.3-1%2Bb1stamp=1158035780file=log,
but I think the failure is self-explanatory: gnome-screensaver uses a dbus
interface which is no longer present in libdbus-1-3, so will need to be
updated.

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/

---End Message---
---BeginMessage---
Source: gnome-screensaver
Source-Version: 2.14.3-2

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

gnome-screensaver_2.14.3-2.diff.gz
  to pool/main/g/gnome-screensaver/gnome-screensaver_2.14.3-2.diff.gz
gnome-screensaver_2.14.3-2.dsc
  to pool/main/g/gnome-screensaver/gnome-screensaver_2.14.3-2.dsc
gnome-screensaver_2.14.3-2_i386.deb
  to pool/main/g/gnome-screensaver/gnome-screensaver_2.14.3-2_i386.deb



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

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

Debian distribution maintenance software
pp.
Sjoerd Simons [EMAIL PROTECTED] (supplier of updated gnome-screensaver 
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, 13 Sep 2006 10:38:38 +0200
Source: gnome-screensaver
Binary: gnome-screensaver
Architecture: source i386
Version: 2.14.3-2
Distribution: unstable
Urgency: low
Maintainer: Guilherme de S. Pastore [EMAIL PROTECTED]
Changed-By: Sjoerd Simons [EMAIL PROTECTED]
Description: 
 gnome-screensaver - GNOME screen saver and locker
Closes: 387240
Changes: 
 gnome-screensaver (2.14.3-2) unstable; urgency=low
 .
   * debian/patches/00_dbus_0.90.patch
 - Added. Use dbus_connection_close instead of dbus_connection_disconnect,
 fixes FTBS with libdbus-1 = 0.90 (Closes: #387240)
Files: 
 7d3f3cdcd435491d88d4091e5bc0430e 1687 gnome optional 
gnome-screensaver_2.14.3-2.dsc
 02e5728317e9300a6330cceee93afcd3 6900 gnome optional 
gnome-screensaver_2.14.3-2.diff.gz
 a14aa33bd4186384a7655c8660598704 1718232 gnome optional 
gnome-screensaver_2.14.3-2_i386.deb

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

iD8DBQFFB8XngTd+SodosdIRAg5YAKCIypn8ZuHVfO4Qlk1qvVHbbxC36QCglJCx
+oXVgvXHieG8idoqSIO3evU=
=haRI
-END PGP SIGNATURE-

---End Message---


Bug#384585: manedit: crashes with autogenerated rc file

2006-09-13 Thread Nacho Barrientos Arias
Date: Wed, 13 Sep 2006 10:35:24 +0200
Thomas Girard [EMAIL PROTECTED] wrote:

 Great! So the previous patch manedit.diff is not needed?  I believe drag and
 drop could crash without it, but this is not related to this bug.

It seems to work without this patch at the moment, but i only tested it
dragging and dropping manpage sections in left menu. I'll continue
testing it.

Anyway, attach the other patch to the corresponding bug or, if not
exists, clone this bug or report a new one :)

-- 
bye,
- Nacho


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



Bug#387261: watchdog: Fails to configure

2006-09-13 Thread Lionel Elie Mamane
Package: watchdog
Version: 5.2.6-3
Severity: grave
Justification: renders package unusable

Setting up watchdog (5.2.6-3) ...
udev active, devices will be created in /dev/.static/dev/
udev active, devices will be created in /dev/.static/dev/
dpkg: error processing watchdog (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 watchdog


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

Versions of packages watchdog depends on:
ii  debconf [debconf-2.0]1.5.3   Debian configuration management sy
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  makedev  2.3.1-83creates device files in /dev
ii  udev 0.093-1 /dev/ and hotplug management daemo

watchdog recommends no packages.

-- debconf information:
* watchdog/restart: true
* watchdog/run: true


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



Bug#387195: patch

2006-09-13 Thread Christian Perrier
Quoting Davide Viti ([EMAIL PROTECTED]):
 Tags: patch
 
 The attached patch fixes compilation by removing dependency from
 ${unidatadir}/UnicodeData.txt in the $(AUTO_FALLBACKS_FB) and
 $(AUTO_FALLBACKS_NFB) rules


Thanks, Davide. I'd prefer Alastair uploading a new version than
myself as I have no skill to judge whether that patch is correct or
not (I suspect it is...:-)).




signature.asc
Description: Digital signature


Bug#387263: flashplugin-nonfree: Fails to install; fails to fail to install

2006-09-13 Thread Sam Morris
Package: flashplugin-nonfree
Version: 7.0.63.8
Severity: grave
Justification: renders package unusable

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I installed version 7.0.63.8 today but the update-flashplayer script
failed to complete. It appears the md5sum of the package has changed.

Strangely, aptitude didn't retry the failed configuration attempt; it
seems that the package's postinst does not exit with a failure status
when the upgrade script fails. If I hadn't noticed this then I would be
unknowingly left with the old version installed.

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

Versions of packages flashplugin-nonfree depends on:
ii  debconf [debconf-2.0] 1.5.3  Debian configuration management sy
ii  gsfonts-x11   0.20   Make Ghostscript fonts available t
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxmu6   1:1.0.2-2  X11 miscellaneous utility library
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  wget  1.10.2-2   retrieves files from the web

Versions of packages flashplugin-nonfree recommends:
pn  xfs   none (no description available)

- -- debconf information:
  flashplugin-nonfree/httpget: true
  flashplugin-nonfree/not_exist:
  flashplugin-nonfree/http_proxy:
  flashplugin-nonfree/local:
  flashplugin-nonfree/delete: false
  flashplugin-nonfree/failed:

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

iD8DBQFFB9NEshl/216gEHgRAqy4AJ9VzeWvnrBDDeNucNbVifeX9gNLvACfQAot
n8xkqUD+5zFrRJcQCFlEWZg=
=QKf5
-END PGP SIGNATURE-


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



Bug#382706: amaya crashes with GDK error traced to this component

2006-09-13 Thread Steve Langasek
severity 382706 normal
retitle 382706 libgl1-mesa-dri: rendering glitches on radeon
thanks

The title and severity of this bug are incorrect.  The only reproducible
problem reported in the original report that's related to libgl1-mesa-dri is
display errors using the Radeon driver.  I imagine this isn't a bug in libgl
at all, but anyway it's not a release-critical one.

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/



Bug#386899: Last NMU does not solve the problem

2006-09-13 Thread Yannick Roehlly
Hi Andrea,

Your last NMU does not solve the problem!

The problem is that in the debian/rules $${binary:Version} in not evaluated as 
the binary version of libexiv2-0.10 package but is left as it in the shlibs 
file.

In the 0.10.1.2 package, the libexiv2-0.10.shlibs contains

libexiv2 0.10 libexiv2-0.10 (= ${binary:Version})

Building a package against this one will lead to the problems pointed out 
above.

If you replace in the debian/rules

dh_makeshlibs -V'libexiv2-0.10 (= $${binary:Version})'
by
dh_makeshlibs -V

this will produce the shlibs file as you intent to although its not 
recommended in the dh_makeshlibs man page (maybe you should ask dh_makeshlibs 
gurus for information).

Sincerely,

Yannick


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



Bug#387268: flashplugin-nonfree: APSB06-11 fixes multiple vulnerabilities in Flash player

2006-09-13 Thread Sam Morris
Package: flashplugin-nonfree
Version: 7.0.63.7
Severity: grave
Tags: security
Justification: user security hole

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

- From http://www.adobe.com/support/security/bulletins/apsb06-11.html:

Multiple Vulnerabilities in Adobe Flash Player 8.0.24.0 and Earlier Versions

CVE-2006-3014 Arbitrary javascript execution [Windows/MS Excel only]

CVE-2006-3311 Buffer overflow allows remote arbitrary code execution

CVE-2006-3587 Remote arbitrary code execution [flash 8 only]

CVE-2006-3588 Remote DOS (browser crash) [flash 8 only]

CVE-2006-4640 Remote bypass of scripting protections

Critical vulnerabilities have been identified in Flash Player 8.0.24.0 and
earlier versions that could allow an attacker who successfully exploits
these vulnerabilities to take control of the affected system.

Although the text on the page is unclear, it seems that the Linux Flash
player is fixed in version 7.0.68.0.

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

Versions of packages flashplugin-nonfree depends on:
ii  debconf [debconf-2.0] 1.5.3  Debian configuration management sy
ii  gsfonts-x11   0.20   Make Ghostscript fonts available t
ii  wget  1.10.2-2   retrieves files from the web

Versions of packages flashplugin-nonfree recommends:
pn  libstdc++2.10-glibc2.2none (no description available)
pn  xfs   none (no description available)

- -- debconf information:
  flashplugin-nonfree/httpget: true
  flashplugin-nonfree/not_exist:
  flashplugin-nonfree/http_proxy:
  flashplugin-nonfree/local:
  flashplugin-nonfree/delete: false
  flashplugin-nonfree/failed:

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

iD8DBQFFB9V9shl/216gEHgRAsnaAKDpjdDfrzSBG4qC1pe5In0awvRJfwCff5HV
5vkJ7gy8yhrREjpIktTrJt8=
=eKHj
-END PGP SIGNATURE-


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



Bug#386263: FTBFS: aclocal: macro `AM_PROG_MKDIR_P' required but not defined

2006-09-13 Thread Santiago Vila
On Thu, 7 Sep 2006, Steve Langasek wrote:

 On Wed, Sep 06, 2006 at 11:33:17AM +, Martin Michlmayr wrote:
  # Rebootstrap the package
  aclocal -I macros
  aclocal: macro `AM_PROG_MKDIR_P' required but not defined
  aclocal: macro `AM_PROG_MKDIR_P' required but not defined
 
 So in addition to the gettext pseudobug (#385235), we seem to have an
 incompatibility between the latest gettext and automake 1.4/1.7.  These
 versions are still in active use, which makes it impractical to include a
 gettext in etch that doesn't support them.

Simple question: Is this the kind of bug that may be forwarded upstream
and fixed?

Alternatively, if it helps, I could greate a gettext-0.14 package on
which older packages could build-depend (the same way they already
build-depend on an old automake).

Thanks.


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



Processed: Re: amaya crashes with GDK error traced to this component

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 382706 normal
Bug#382706: amaya crashes with GDK error traced to this component
Severity set to `normal' from `grave'

 retitle 382706 libgl1-mesa-dri: rendering glitches on radeon
Bug#382706: amaya crashes with GDK error traced to this component
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#386831: User tomcat5 problem after removing tomcat5 but keeping tomcat5.5

2006-09-13 Thread Ruben Puettmann
On Tue, Sep 12, 2006 at 03:30:45PM +0200, Arnaud Vandyck wrote:
 
 I don't know how to solve this issue.
 A solution could be to change the user of tomcat5.5 as tomcat5-5.

Yes this would be the best way. Cause so it is posible that tomcat5 and
tomcat5.5 runs on the same Server with different users. But if you do
you must keep the people in mind that already has installed the package.

 
 Thanks for help on this bug.
 
No Problem I need it here for some productiv webservices. If there is a
new package I can test it. But it must be runable under testing.


Ruben 


-- 
Ruben Puettmann
[EMAIL PROTECTED]
http://www.puettmann.net


signature.asc
Description: Digital signature


Processed: Fixed in NMU of lynx 2.8.5-2sarge1.2

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 238057 + fixed
Bug#238057: lynx: FTBFS on GNU/Hurd (and GNU/k*BSD)
Tags were: fixed-upstream patch sid
Tags added: fixed

 tag 384725 + fixed
Bug#384725: lynx: [CVE-2004-1617] remote DoS-fix missing from etch/sid package
Tags were: security 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: found 387268 in 7.0.25-5

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 found 387268 7.0.25-5
Bug#387268: flashplugin-nonfree: APSB06-11 fixes multiple vulnerabilities in 
Flash player
Bug marked as found in version 7.0.25-5.


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#387195: patch

2006-09-13 Thread Alastair McKinstry
Christian Perrier wrote:
 Quoting Davide Viti ([EMAIL PROTECTED]):
   
 Tags: patch

 The attached patch fixes compilation by removing dependency from
 ${unidatadir}/UnicodeData.txt in the $(AUTO_FALLBACKS_FB) and
 $(AUTO_FALLBACKS_NFB) rules
 


 Thanks, Davide. I'd prefer Alastair uploading a new version than
 myself as I have no skill to judge whether that patch is correct or
 not (I suspect it is...:-)).


   
Patch is already in subversion :-)
I hope to upload a new console-data as soon as I've pulled in some
other patches - 379110, 382507, 319069, etc. Hopefully today or tomorrow.

Regards
Alastair


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



Processed: Re: Bug#387261: watchdog: Fails to configure

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 387261 normal
Bug#387261: watchdog: Fails to configure
Severity set to `normal' from `grave'

 tag 387261 unreproducible
Bug#387261: watchdog: Fails to configure
There were no tags set.
Tags added: unreproducible

 tag 387261 moreinfo
Bug#387261: watchdog: Fails to configure
Tags were: unreproducible
Tags added: 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]



Bug#386897: marked as done (FTBFS on sparc: maximum interrupt nesting depth (32) exceeded)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 11:03:50 +0200
with message-id [EMAIL PROTECTED]
and subject line SBCL has built on Sparc now
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)

---BeginMessage---
Package: sbcl
Version: 1:0.9.16.0-1
Severity: serious

; /build/buildd/sbcl-0.9.16.0/obj/from-host/src/compiler/target/vm.lisp-obj-tmp 
written
; compilation finished in 0:00:10
; compiling file /build/buildd/sbcl-0.9.16.0/src/code/early-type.lisp 
(written 05 SEP 2006 05:58:10 AM):
; compiling (IN-PACKAGE SB!KERNEL)
; compiling (!BEGIN-COLLECTING-COLD-INIT-FORMS)
; compiling (DEFSTRUCT (HAIRY-TYPE # ...) ...)
; compiling (!DEFINE-TYPE-CLASS HAIRY)
; compiling (DEFSTRUCT (UNKNOWN-TYPE # ...))
; compiling (DEFSTRUCT (NEGATION-TYPE # ...) ...)
; compiling (!DEFINE-TYPE-CLASS NEGATION)
; compiling (DEFSTRUCT (ARGS-TYPE # ...) ...)
; compiling (DEFUN CANONICALIZE-ARGS-TYPE-ARGS ...)
; compiling (DEFUN ARGS-TYPES ...)
; compiling (DEFSTRUCT (VALUES-TYPE # ...))
; compiling (DEFUN-CACHED (MAKE-VALUES-TYPE-CACHED :HASH-BITS ...) ...)
; compiling (DEFUN MAKE-VALUES-TYPE ...)
; compiling (!DEFINE-TYPE-CLASS VALUES)
; compiling (DEFSTRUCT (FUN-TYPE # ...) ...)
; compiling (DEFUN MAKE-FUN-TYPE ...)fatal error encountered in SBCL pid 14037:
maximum interrupt nesting depth (32) exceeded

make: *** [build-arch-stamp] Error 1

http://buildd.debian.org/fetch.php?pkg=sbclarch=sparcver=1%3A0.9.16.0-1stamp=1157664368file=log

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

Hi,

after we have two people (including me) that managed to build SBCL
with the current SBCL package in a current Sid chroot, the autobuilder
also built and installed SBCL successfully.

http://people.debian.org/~igloo/status.php?packages=sbcl

Therefore I close this bug.

  René
-- 
René van Bevern [EMAIL PROTECTED]
http://progn.org  http://www.debian.org  http://www.pro-linux.de


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


Processed: Re: Bug#387136: dbconfig-load-include ignores varnames

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 387136 grave
Bug#387136: dbconfig-load-include ignores varnames
Severity set to `grave' from `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#385889: Fixed in NMU of phpmyadmin 4:2.8.2-0.2

2006-09-13 Thread Thijs Kinkhorst
reopen 385889
severity normal
thanks

 I've NMUed for this bug (fixing the bug to use versioning instead of the
 fixed tag, to ease tracking through testing); here's the changelog:
 
   phpmyadmin (4:2.8.2-0.2) unstable; urgency=medium
   .
 * Non-maintainer upload.
 * Fix issue with /var/www pointing to /usr/share/phpmyadmin.
   (Closes: #385889)
   * Make sure we install /var/www as a directory, since we make a 
  symlink into
 it and we can't rely on it being there.
   * Explicitly link to /var/www/phpmyadmin instead of /var/www, to make 
  sure
 we don't make a new /var/www even if it should be removed for some
 reason.

Thanks for your work, but I do not agree that this is the proper fix.
The major problem has been resolved, so it's not release critical
anymore. But this whole symlink should just be removed and the package
not touch /var/www.

Most Debian webapps provide webserver config snippets that use Alias to
make themselves available. This is highly flexible for the administrator
and is referenced in the webapps policy. Setting a symlink in /var/www
might impede the current configuration of the administrator, and opens
up the databases to plain text remote logins instantly with no good way
to undo (the symlink will be recreated on the next login).

I advise to use the Alias way documented in the webapps policy.

By the way Piotr, there've been some recent NMU's for phpmyadmin in
unstable and stable. Are you interested in passing the package on? If
so, I'm interested to take it. If you're just temporarily busy that's of
course also just fine :)


Thijs



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


Bug#386578: speechd-el: speechd-speak-read-.* don't speak

2006-09-13 Thread Boris Daix
Milan Zamazal [EMAIL PROTECTED] writes:

 BD == Boris Daix [EMAIL PROTECTED] writes:

[...]

 BD My conclusion is that speechd-el is not fully installed.  Could
 BD you add the lines mentioned in point 5, section 2.1
 BD installation of speechd-el info file to
 BD /etc/emacs/site-start.d/50speechd-el.el?  

 I don't think this is a good idea, since users who don't use speech
 output (e.g. when they use Braille output only) would receive error
 messages about not being able to connect to Speech Dispatcher.

Errors may be polite warnings.  speechd-enable-ssip and
speechd-enable-braille variables could be set to t by default:
speechd-speak would load corresponding libraries, would try to connect
to speech-dispatcher and brlapi, would politely warn user if one of
them is unavailable.  The user may as well set one of these variables
to nil so that neither loading nor probing/warning happen anymore.  It
is my expectation, what do you think of it?  At least,
speechd-speak-read-.* may warn user if none of ssip or braille are
loaded.

 BD Otherwise you could drop a note about it in README.Debian as
 BD user is required to resume the installation.

 Yes, it should be documented more visibly.  It's documented in
 installation instructions in README, but apparently not all users read
 it :-), especially on upgrades (you're not the first one who got
 confused).

I expect (or an admin expects) apt-get install speechd-el to do the
job...  If this isn't enough, maintainer should have dropped a note in
README.Debian.  Users use, they don't install do they? :-) Debian is
very nice about that.

 I'll put a warning into README.Debian and NEWS.Debian.

Yes, but think about my suggestion above, it would even be easier for
everybody.

 Do you have some suggestion where to put the necessary instructions
 in the general speechd-el documentation so that even non-Debian
 users wouldn't overlook them?

You may emphasize that ssip and braille libraries are not loaded
automatically unless add-hook sexps are added to .emacs.el.  But I
agree, those who install speechd-el themselves (without apt-get
install) should definitely read the installation section until the
end...

Thanks,
-- 
Boris Daix


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



Processed: Re: Fixed in NMU of phpmyadmin 4:2.8.2-0.2

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reopen 385889
Bug#385889: link var/www - /usr/share/phpmyadmin/ not good !
'reopen' is deprecated when a bug has been closed with a version;
use 'found' or 'submitter' as appropriate instead.
Bug reopened, originator not changed.

 severity normal
Unknown command or malformed arguments to command.

 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#387195: patch

2006-09-13 Thread Christian Perrier
 Patch is already in subversion :-)
 I hope to upload a new console-data as soon as I've pulled in some
 other patches - 379110, 382507, 319069, etc. Hopefully today or tomorrow.


I also have a possible patch for #385467 which I'm working on.

Actually, I'm a bit handicapped by the dbs build system which I'm very
unfamiliar with.

Could we consider a move to cdbs+quilt?




signature.asc
Description: Digital signature


Processed: flashplugin-nonfree: Fails to install; fails to fail to install

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 387263 wishlist
Bug#387263: flashplugin-nonfree: Fails to install; fails to fail to install
Severity set to `wishlist' from `grave'

 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: reopening 383165, closing 383165

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 reopen 383165
Bug#383165: mysql-server-4.1: [sarge] replication slave crash when a query with 
multiupdate and subselects is used.
Bug reopened, originator not changed.

 close 383165 4.1.11a-4sarge7
Bug#383165: mysql-server-4.1: [sarge] replication slave crash when a query with 
multiupdate and subselects is used.
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4.1.11a-4sarge7, send any further explanations 
to Frederik Schueler [EMAIL PROTECTED]


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#384791: fbtv: fails with `mmap: Invalid argument'

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 close 384791 3.95-4
Bug#384791: fbtv: fails with `mmap: Invalid argument'
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 3.95-4, send any further explanations to Mario 
'BitKoenig' Holbe [EMAIL PROTECTED]

 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: reopening 348767, closing 348767

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 reopen 348767
Bug#348767: ERROR: Unbound variable: gnc:menuname-ncreports
'reopen' is deprecated when a bug has been closed with a version;
use 'found' or 'submitter' as appropriate instead.
Bug reopened, originator not changed.

 close 348767
Bug#348767: ERROR: Unbound variable: gnc:menuname-ncreports
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug closed, send any further explanations to Remi Vanicat [EMAIL PROTECTED]


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#386831: User tomcat5 problem after removing tomcat5 but keeping tomcat5.5

2006-09-13 Thread Kalle Kivimaa
Ruben Puettmann [EMAIL PROTECTED] writes:
 Yes this would be the best way. Cause so it is posible that tomcat5 and
 tomcat5.5 runs on the same Server with different users. But if you do
 you must keep the people in mind that already has installed the package.

I think the better way would be to check at remove/purge if the other
package is installed, and if yes, not to remove the tomcat5 user. That
way we could even replace it with a (IMO) more sane tomcat users.

-- 
* Sufficiently advanced magic is indistinguishable from technology (T.P)  *
*   PGP public key available @ http://www.iki.fi/killer   *


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



Bug#385951: marked as done (Fail to scan array in some case when partition is at the end of the disk)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 05:47:06 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385951: fixed in mdadm 2.5.3.git200608202239-3
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)

---BeginMessage---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: mdadm
Version: 2.5.2-7
Severity: critical

Tha actual mdadm in testing makes the whole system to unbootable if on
raid slice is on the end of a disk. (In some cases)

My config:
- ---mdadm.conf---
DEVICE partitions
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=88cf7fb7:6fab12d7:b713c983:af6eaca5
MAILADDR root
- 

- ---hdc---
Disk /dev/hdc: 60.0 GB, 60060155904 bytes
16 heads, 63 sectors/track, 116374 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/hdc1   *   1 496  249983+  83  Linux
/dev/hdc2 4971488  499968   82  Linux swap / Solaris
/dev/hdc31489  11637457902544   fd  Linux raid autodetect
- -
- ---hdd---
Disk /dev/hdd: 320.0 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/hdd1   1972878140159+  8e  Linux LVM
/dev/hdd29729   1945678140160   8e  Linux LVM
/dev/hdd3   31705   3891357906292+  fd  Linux raid autodetect
- -

- ---/proc/mdstat---
Personalities : [raid1] 
read_ahead 1024 sectors
md0 : active raid1 hdd3[0]
  57902464 blocks [2/1] [U_]
  
unused devices: none
- --

Please note that I had to run the raid in degraded mode as /dev/hdc3
cannot be in the array (See below).

When I do a mdadm --assemble --scan --auto=yes (as done in
/etc/init.d/mdadm-raid) then I get the following error:

- ---
mdadm: no recogniseable superblock on /dev/hda2
mdadm: /dev/hda2 has wrong uuid.
mdadm: no recogniseable superblock on /dev/hda1
mdadm: /dev/hda1 has wrong uuid.
mdadm: no recogniseable superblock on /dev/hda
mdadm: /dev/hda has wrong uuid.
mdadm: no RAID superblock on /dev/hdd2
mdadm: /dev/hdd2 has wrong uuid.
mdadm: no RAID superblock on /dev/hdd1
mdadm: /dev/hdd1 has wrong uuid.
mdadm: no RAID superblock on /dev/hdd
mdadm: /dev/hdd has wrong uuid.
mdadm: no RAID superblock on /dev/hdc2
mdadm: /dev/hdc2 has wrong uuid.
mdadm: no RAID superblock on /dev/hdc1
mdadm: /dev/hdc1 has wrong uuid.
mdadm: no RAID superblock on /dev/vg1/lv_hathi
mdadm: /dev/vg1/lv_hathi has wrong uuid.
mdadm: no RAID superblock on /dev/vg1/lv_misc
mdadm: /dev/vg1/lv_misc has wrong uuid.
mdadm: no RAID superblock on /dev/vg1/lv_mirror
mdadm: /dev/vg1/lv_mirror has wrong uuid.
mdadm: WARNING /dev/hdc3 and /dev/hdc appear to have very similar superblocks.
  If they are really different, please --zero the superblock on one
  If they are the same, please remove one from the list.
- ---

Cleaning the superblock of /dev/hdc also clean the one of /dev/hdc3 and
so leaving the raid in a degraded state. But at least I can now boot the
system after running the md0 by hand.

Note that the partition /dev/hdd3 is also at the end of the disk but do
not make problemes.

This is a very critical bug and should be fixed in etch (I think, this
is release critical!!!)

- -- Package-specific info:
- --- mount output
/dev/hda1 on / type ext3 (rw)
proc on /proc type proc (rw)
tmpfs on /dev/shm type tmpfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,mode=1777)
/dev/sysvg/lv_usr on /usr type ext3 (rw,noatime)
/dev/sysvg/lv_var on /var type reiserfs (rw)
/dev/sysvg/lv_local on /usr/local type ext3 (rw,noatime)
/dev/sysvg/lv_home on /home type reiserfs (rw,nosuid,nodev)
/dev/vg1/lv_misc on /misc type reiserfs (rw,nosuid,nodev)
/dev/vg1/lv_mirror on /mirror type reiserfs (rw,nosuid,nodev)
/dev/vg1/lv_hathi on /hathi type ext2 (ro)
capifs on /dev/capi type capifs (rw,mode=0666)
/proc/bus/usb on /proc/bus/usb type usbdevfs (rw)
AFS on /afs type afs (rw)
localhost:/var/lib/cfs/.cfsfs on /var/cfs type nfs 
(rw,port=3049,intr,nfsvers=2,addr=127.0.0.1)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)

- --- mdadm.conf
DEVICE partitions
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=88cf7fb7:6fab12d7:b713c983:af6eaca5
MAILADDR root

- --- /proc/mdstat:
Personalities : [raid1] 
read_ahead 1024 sectors
md0 : active raid1 hdd3[0]
  57902464 blocks [2/1] [U_]
  
unused devices: none

Bug#385994: marked as done (mdadm: Missing versionned dep on debconf)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 05:47:06 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385994: fixed in mdadm 2.5.3.git200608202239-3
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)

---BeginMessage---
Package: mdadm
Version: 2.4.1-6
Severity: important

I'm unable to install mdadm 2.5.3.git200608202239-2 with debconf
1.4.30.13. I get the following error:

Setting up mdadm (2.5.3.git200608202239-2) ...
Installing new version of config file /etc/init.d/mdadm ...
Installing new version of config file /etc/init.d/mdadm-raid ...
/var/lib/dpkg/info/mdadm.config: line 1: debconf-escape: command not found
/var/lib/dpkg/info/mdadm.config: line 42: return: If: numeric argument required
dpkg: error processing mdadm (--configure):
 subprocess post-installation script returned error exit status 255
Errors were encountered while processing:
 mdadm
E: Sub-process /usr/bin/dpkg returned an error code (1)


debconf-escape has been introduced in debconf 1.4.72, please add the
versionned dep.

Thanks

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

Versions of packages mdadm depends on:
ii  debconf [debconf-2.0] 1.5.2  Debian configuration management sy
ii  libc6 2.3.6-19   GNU C Library: Shared libraries
ii  lsb-base  3.1-10 Linux Standard Base 3.1 init scrip
ii  makedev   2.3.1-82   creates device files in /dev

Versions of packages mdadm recommends:
ii  exim4-daemon-heavy [mail-tran 4.62-2 exim MTA (v4) daemon with extended

-- debconf information:
* mdadm/autostart: false
* mdadm/warning:
* mdadm/start_daemon: false
  mdadm/mail_to: root

-- 
Cyril Bouthors


pgpSbAIO2uFyp.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Source: mdadm
Source-Version: 2.5.3.git200608202239-3

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

mdadm-udeb_2.5.3.git200608202239-3_i386.udeb
  to pool/main/m/mdadm/mdadm-udeb_2.5.3.git200608202239-3_i386.udeb
mdadm_2.5.3.git200608202239-3.diff.gz
  to pool/main/m/mdadm/mdadm_2.5.3.git200608202239-3.diff.gz
mdadm_2.5.3.git200608202239-3.dsc
  to pool/main/m/mdadm/mdadm_2.5.3.git200608202239-3.dsc
mdadm_2.5.3.git200608202239-3_i386.deb
  to pool/main/m/mdadm/mdadm_2.5.3.git200608202239-3_i386.deb



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

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

Debian distribution maintenance software
pp.
martin f. krafft [EMAIL PROTECTED] (supplier of updated mdadm 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: Thu,  7 Sep 2006 14:32:04 +0200
Source: mdadm
Binary: mdadm mdadm-udeb
Architecture: source i386
Version: 2.5.3.git200608202239-3
Distribution: unstable
Urgency: medium
Maintainer: Debian mdadm maintainers [EMAIL PROTECTED]
Changed-By: martin f. krafft [EMAIL PROTECTED]
Description: 
 mdadm  - tool to administer Linux MD arrays (software RAID)
 mdadm-udeb - tool to administer Linux MD arrays (software RAID) (udeb)
Closes: 384614 384754 385017 385690 385951 385994 386468 387017
Changes: 
 mdadm (2.5.3.git200608202239-3) unstable; urgency=medium
 .
   * Urgency medium because of RC bugs.
   * Add versioned dependency to debconf (closes: #385994); temporary fix until
 we find a proper fix for #386439.
   * Add patch by Steinar H. Gunderson to ensure mdadm does not interpret
 a superblock as belonging to a device when it's actually part of
 a partition on that device (closes: #385951).
   * Do not override the superblock default version in mdadm.conf to prevent
 creation of superblocks that the kernel can't handle (closes: #384614).
   * Added a note to alert people that the warning about arrays not listed in
 the configuration file is only relevant if the arrays are needed to be
 brought up by mdadm from initramfs during boot (closes: 

Processed: Fixed in NMU of djvulibre 3.5.17-1.1

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 386032 + fixed
Bug#386032: FTBFS on alpha
There were no tags set.
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#387295: ocamlnet needs rebuild

2006-09-13 Thread Luca Brivio
Severity: serious
Package: libocamlnet-ocaml
Version: 1.1-11

ocamlnet needs rebuild against newer libpcre-ocaml.

--
Luca Brivio


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



Bug#383140: marked as done (Uninstallable due to unmet dep on libgdal1-1.3.1)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 07:17:10 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#383140: fixed in mapserver 4.8.4-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)

---BeginMessage---
Package: perl-mapscript
Severity: serious
Version: 4.8.3-2

Hi

Your package depends on libgdal1-1.3.1 which is not available in
unstable anymore. You might want to investigate if your package also
works with libgdal1-1.3.2...

Cheers

Luk

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D



signature.asc
Description: OpenPGP digital signature
---End Message---
---BeginMessage---
Source: mapserver
Source-Version: 4.8.4-1

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

cgi-mapserver_4.8.4-1_i386.deb
  to pool/main/m/mapserver/cgi-mapserver_4.8.4-1_i386.deb
mapserver-bin_4.8.4-1_i386.deb
  to pool/main/m/mapserver/mapserver-bin_4.8.4-1_i386.deb
mapserver-doc_4.8.4-1_all.deb
  to pool/main/m/mapserver/mapserver-doc_4.8.4-1_all.deb
mapserver_4.8.4-1.diff.gz
  to pool/main/m/mapserver/mapserver_4.8.4-1.diff.gz
mapserver_4.8.4-1.dsc
  to pool/main/m/mapserver/mapserver_4.8.4-1.dsc
mapserver_4.8.4.orig.tar.gz
  to pool/main/m/mapserver/mapserver_4.8.4.orig.tar.gz
perl-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/perl-mapscript_4.8.4-1_i386.deb
php4-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/php4-mapscript_4.8.4-1_i386.deb
php5-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/php5-mapscript_4.8.4-1_i386.deb
python-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/python-mapscript_4.8.4-1_i386.deb



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

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

Debian distribution maintenance software
pp.
Paul Wise [EMAIL PROTECTED] (supplier of updated mapserver 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: Mon, 21 Aug 2006 09:47:48 +0800
Source: mapserver
Binary: mapserver-doc perl-mapscript mapserver-bin cgi-mapserver php5-mapscript 
python-mapscript php4-mapscript
Architecture: source all i386
Version: 4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Francesco Paolo Lovergine [EMAIL PROTECTED]
Changed-By: Paul Wise [EMAIL PROTECTED]
Description: 
 cgi-mapserver - cgi module of mapserver
 mapserver-bin - mapserver binary utilities
 mapserver-doc - documentation for mapserver
 perl-mapscript - perl mapserver library
 php4-mapscript - module for php4-cgi to use mapserver
 php5-mapscript - module for php5-cgi to use mapserver
 python-mapscript - python mapserver lib
Closes: 360576 373461 383140 383830 386073
Changes: 
 mapserver (4.8.4-1) unstable; urgency=low
 .
   * New upstream release
   * Update for new Python policy (Closes: #373461, #360576)
   * Install shp2mysql.pl as shp2mysql
   * Remove question from long desc for php mapscript debconf questions
   * Remove shp2pdf, since mapserver is build without PDFlib (non-free)
   * Suggest libdbi-perl for mapserver-bin for shp2mysql
   * Fix shebang lines in debian/php*-config
   * Remove python mapscript build dirs on clean
   * Bump Standards-Version (no changes)
   * Fix gdal build-dep - new upstream is libgdal1-1.3.2-dev (Closes: #383140, 
#383830, #386073)
   * Update debconf templates and translations
Files: 
 de3b6fc64151b59dbf9d83488f9bc352 1268 devel extra mapserver_4.8.4-1.dsc
 0e1b362c3b931731e01da456105388df 1537100 devel extra 
mapserver_4.8.4.orig.tar.gz
 8adaac0da10c5b278efefdb5f8f598a5 17210 devel extra mapserver_4.8.4-1.diff.gz
 37b1e614db9649f111ebe8e7e59b5b6b 87456 doc extra mapserver-doc_4.8.4-1_all.deb
 f433d1c9ed9c7f85ae196ba6efe45681 507466 web extra 
php4-mapscript_4.8.4-1_i386.deb
 931e7e22089557c935e6d68fa3a0feee 507814 web extra 
php5-mapscript_4.8.4-1_i386.deb
 ab2bce29b480a6497f35293a99c1b216 657324 perl extra 
perl-mapscript_4.8.4-1_i386.deb
 2bb92843fbfa107a40c3f5d820715916 419162 web extra 
cgi-mapserver_4.8.4-1_i386.deb
 3713bf299b8949dd13ed5f70416eee5c 1002162 python extra 
python-mapscript_4.8.4-1_i386.deb
 f14455370c20a67b0676d7b470a1d5e8 

Bug#383830: marked as done (mapserver: FTBFS: build-dep on missing libgdal1-1.3.2-dev)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 07:17:10 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#383830: fixed in mapserver 4.8.4-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)

---BeginMessage---
Package: mapserver
Version: 4.8.3-2
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of mapserver_4.8.3-2 on avidan by sbuild/i386 0.49
 Build started at 20060819-2215
 **
 Checking available source versions...
 Fetching source files...
 Reading package lists...
 Building dependency tree...
 Need to get 1552kB of source archives.
 Get:1 http://ftp.fr.debian.org sid/main mapserver 4.8.3-2 (dsc) [1197B]
 Get:2 http://ftp.fr.debian.org sid/main mapserver 4.8.3-2 (tar) [1535kB]
 Get:3 http://ftp.fr.debian.org sid/main mapserver 4.8.3-2 (diff) [16.5kB]
 Fetched 1552kB in 3s (420kB/s)
 Download complete and in download only mode
 ** Using build dependencies supplied by package:
 Build-Depends: debhelper (= 4), dpatch, libcurl3-gnutls-dev | libcurl3-dev, 
 libpng12-dev, zlib1g-dev (= 1.1.4), libgd2-xpm-dev (= 2.0.1-10), 
 libfreetype6-dev (= 2.0.9), libjpeg62-dev, libgdal1-1.3.1-dev, proj, 
 libwww-dev, postgresql-dev (= 7.3.3-1), php4-dev, php5-dev, swig, 
 python-dev, libgeos-dev
 Build-Depends-Indep: python-docutils
 Build-Conflicts: libcurl3-openssl-dev
 Checking for already installed source dependencies...
 debhelper: already installed (5.0.37.3 = 4 is satisfied)
 dpatch: missing
 libcurl3-gnutls-dev: missing
 libcurl3-dev: missing
 libpng12-dev: already installed (1.2.8rel-5.2)
 zlib1g-dev: already installed (1:1.2.3-13 = 1.1.4 is satisfied)
 libgd2-xpm-dev: missing
 libfreetype6-dev: already installed (2.2.1-2 = 2.0.9 is satisfied)
 libjpeg62-dev: already installed (6b-13)
 libgdal1-1.3.1-dev: missing
 proj: missing
 libwww-dev: missing
 postgresql-dev: missing
 php4-dev: missing
 php5-dev: missing
 swig: missing
 python-dev: missing
 libgeos-dev: missing
 libcurl3-openssl-dev: already deinstalled
 Checking for source dependency conflicts...
 Reading package lists...
 Building dependency tree...
 Package libgdal1-1.3.1-dev 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
 However the following packages replace it:
   libgdal1-1.3.2-dev
 E: Package libgdal1-1.3.1-dev has no installation candidate
 apt-get failed.
 Package installation failed
 Trying to reinstall removed packages:
 Trying to uninstall newly installed packages:
 Source-dependencies not satisfied; skipping mapserver
 **
 Finished at 20060819-2215
 Build needed 00:00:09, 284k disk space

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: mapserver
Source-Version: 4.8.4-1

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

cgi-mapserver_4.8.4-1_i386.deb
  to pool/main/m/mapserver/cgi-mapserver_4.8.4-1_i386.deb
mapserver-bin_4.8.4-1_i386.deb
  to pool/main/m/mapserver/mapserver-bin_4.8.4-1_i386.deb
mapserver-doc_4.8.4-1_all.deb
  to pool/main/m/mapserver/mapserver-doc_4.8.4-1_all.deb
mapserver_4.8.4-1.diff.gz
  to pool/main/m/mapserver/mapserver_4.8.4-1.diff.gz
mapserver_4.8.4-1.dsc
  to pool/main/m/mapserver/mapserver_4.8.4-1.dsc
mapserver_4.8.4.orig.tar.gz
  to pool/main/m/mapserver/mapserver_4.8.4.orig.tar.gz
perl-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/perl-mapscript_4.8.4-1_i386.deb
php4-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/php4-mapscript_4.8.4-1_i386.deb
php5-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/php5-mapscript_4.8.4-1_i386.deb
python-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/python-mapscript_4.8.4-1_i386.deb



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

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

Debian distribution maintenance software
pp.
Paul Wise [EMAIL PROTECTED] (supplier of updated mapserver package)

(This message was generated 

Bug#386593: marked as done (firefox: doesn't start anymore. corrupted display)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 07:32:29 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#386367: fixed in firefox 1.5.dfsg+1.5.0.6-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)

---BeginMessage---
Package: firefox
Version: 1.5.dfsg+1.5.0.6-4
Severity: normal

I've just upgrade and FF doesn't start anymore. I just get a dialog
with no text, two un-clickable buttons on startup. I can just close this
dialog and firefox doesn't start.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-powerpc
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)

Versions of packages firefox depends on:
ii  debianutils   2.17   Miscellaneous utilities specific t
ii  fontconfig2.3.2-7generic font configuration library
ii  libatk1.0-0   1.12.1-1   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-4GNU C Library: Shared libraries
ii  libcairo2 1.2.4-1The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-7generic font configuration library
ii  libfreetype6  2.2.1-3FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-13 GCC support library
ii  libglib2.0-0  2.10.3-3   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-1   The GTK+ graphical user interface 
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.12.3-2   Layout and rendering of internatio
ii  libpng12-01.2.8rel-5.2   PNG library - runtime
ii  libstdc++64.1.1-13   The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.0-8  X11 client-side library
ii  libxft2   2.1.8.2-8  FreeType-based font drawing librar
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  psmisc22.3-1 Utilities that use the proc filesy
ii  zlib1g1:1.2.3-13 compression library - runtime

firefox recommends no packages.

-- no debconf information

---End Message---
---BeginMessage---
Source: firefox
Source-Version: 1.5.dfsg+1.5.0.6-5

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

firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
firefox_1.5.dfsg+1.5.0.6-5.diff.gz
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.diff.gz
firefox_1.5.dfsg+1.5.0.6-5.dsc
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.dsc
firefox_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5_i386.deb
mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb
  to pool/main/f/firefox/mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb



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

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

Debian distribution maintenance software
pp.
Eric Dorland [EMAIL PROTECTED] (supplier of updated firefox 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, 13 Sep 2006 01:45:20 -0400
Source: firefox
Binary: firefox-dbg firefox-gnome-support firefox-dom-inspector mozilla-firefox 

Bug#387126: marked as done (firefox: textless dialog with two buttons and then nothing, after upgrade)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 07:32:29 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#386367: fixed in firefox 1.5.dfsg+1.5.0.6-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)

---BeginMessage---
Package: firefox
Version: 1.5.dfsg+1.5.0.6-4
Severity: grave
Justification: renders package unusable

Upgrading from 1.5.dfsg+1.5.0.4-1 to 1.5.dfsg+1.5.0.6-4 gives me an unusable 
Firefox.

Launching Firefox, I get a textless dialog with two buttons. Clicking either 
button
produces no result; the dialog is still there. I tried disabling Pango, 
starting in
safe mode and removing all extensions. Still no good.

Given how this is supposed to be a minor upgrade (1.5.0.4 to 1.5.0.6), this is 
very
suspicious. In any case, it makes Firefox COMPLETELY unusable for me, since I 
cannot
even get to a browsing window, thus this grave severity level.

-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17-imac
Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8)

Versions of packages firefox depends on:
ii  debianutils   2.17   Miscellaneous utilities specific t
ii  fontconfig2.3.2-7generic font configuration library
ii  libatk1.0-0   1.12.2-1   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-4GNU C Library: Shared libraries
ii  libcairo2 1.2.4-1The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-7generic font configuration library
ii  libfreetype6  2.2.1-2FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-13 GCC support library
ii  libglib2.0-0  2.10.3-3   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-1   The GTK+ graphical user interface
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG
ii  libpango1.0-0 1.12.3-2   Layout and rendering of internatio
ii  libpng12-01.2.8rel-5.2   PNG library - runtime
ii  libstdc++64.1.1-13   The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.0-8  X11 client-side library
ii  libxft2   2.1.8.2-8  FreeType-based font drawing librar
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  psmisc22.3-1 Utilities that use the proc filesy
ii  zlib1g1:1.2.3-13 compression library - runtime

firefox recommends no packages.

PS:  sorry if you received this report twice. I had not received any
reply from the BTS more than 1 hour after initially submitting this.

-- 
Martin-Éric Racine
http://q-funk.iki.fi


signature.asc
Description: Digitaalisesti allekirjoitettu viestin osa
---End Message---
---BeginMessage---
Source: firefox
Source-Version: 1.5.dfsg+1.5.0.6-5

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

firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
firefox_1.5.dfsg+1.5.0.6-5.diff.gz
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.diff.gz
firefox_1.5.dfsg+1.5.0.6-5.dsc
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.dsc
firefox_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5_i386.deb
mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb
  to pool/main/f/firefox/mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb



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

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


Bug#387114: marked as done (firefox: textless dialog with two buttons and then nothing, after upgrade)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 07:32:29 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#386367: fixed in firefox 1.5.dfsg+1.5.0.6-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)

---BeginMessage---
Package: firefox
Version: 1.5.dfsg+1.5.0.6-4
Severity: grave
Justification: renders package unusable

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Upgrading from 1.5.dfsg+1.5.0.4-1 to 1.5.dfsg+1.5.0.6-4 gives me an unusable 
Firefox.

Launching Firefox, I get a textless dialog with two buttons. Clicking either 
button 
produces no result; the dialog is still there. I tried disabling Pango, 
starting in 
safe mode and removing all extensions. Still no good.

Given how this is supposed to be a minor upgrade (1.5.0.4 to 1.5.0.6), this is 
very
suspicious. In any case, it makes Firefox COMPLETELY unusable for me, since I 
cannot 
even get to a browsing window, thus this grave severity level.

- -- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17-imac
Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8)

Versions of packages firefox depends on:
ii  debianutils   2.17   Miscellaneous utilities specific t
ii  fontconfig2.3.2-7generic font configuration library
ii  libatk1.0-0   1.12.2-1   The ATK accessibility toolkit
ii  libc6 2.3.6.ds1-4GNU C Library: Shared libraries
ii  libcairo2 1.2.4-1The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-7generic font configuration library
ii  libfreetype6  2.2.1-2FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-13 GCC support library
ii  libglib2.0-0  2.10.3-3   The GLib library of C routines
ii  libgtk2.0-0   2.8.20-1   The GTK+ graphical user interface 
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.12.3-2   Layout and rendering of internatio
ii  libpng12-01.2.8rel-5.2   PNG library - runtime
ii  libstdc++64.1.1-13   The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.0-8  X11 client-side library
ii  libxft2   2.1.8.2-8  FreeType-based font drawing librar
ii  libxinerama1  1:1.0.1-4.1X11 Xinerama extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  psmisc22.3-1 Utilities that use the proc filesy
ii  zlib1g1:1.2.3-13 compression library - runtime

firefox recommends no packages.

- -- no debconf information

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

iD8DBQFFBoVpeXr56x4Muc0RAgIHAJ9QhNKLcMRO4PAlxYGOMT3jXq8eAQCfbl5w
GuiJcykbmaYMz2EbeM4GCZ8=
=KoZN
-END PGP SIGNATURE-

---End Message---
---BeginMessage---
Source: firefox
Source-Version: 1.5.dfsg+1.5.0.6-5

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

firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
firefox_1.5.dfsg+1.5.0.6-5.diff.gz
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.diff.gz
firefox_1.5.dfsg+1.5.0.6-5.dsc
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.dsc
firefox_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5_i386.deb
mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb
  to pool/main/f/firefox/mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb



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

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

Bug#386742: marked as done (Firefox won't start and puts up empty dialog)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 07:32:29 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#386367: fixed in firefox 1.5.dfsg+1.5.0.6-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)

---BeginMessage---
Package: firefox
Version: 1.5.dfsg+1.5.0.6-4

When I start the program normally a dialog appaers, with a title
Unnamed, and which empty except two buttons without text, each about
five pixels high and with normal width. Neither button does anything
when clicked.

I've tried this for multiple users on the machine.

I am using Debian GNU/Linux powerpc/unstable, kernel 2.6.15-1-powerpc
and libc 2.3.6.ds1-4.

---End Message---
---BeginMessage---
Source: firefox
Source-Version: 1.5.dfsg+1.5.0.6-5

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

firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
firefox_1.5.dfsg+1.5.0.6-5.diff.gz
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.diff.gz
firefox_1.5.dfsg+1.5.0.6-5.dsc
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.dsc
firefox_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5_i386.deb
mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb
  to pool/main/f/firefox/mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb



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

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

Debian distribution maintenance software
pp.
Eric Dorland [EMAIL PROTECTED] (supplier of updated firefox 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, 13 Sep 2006 01:45:20 -0400
Source: firefox
Binary: firefox-dbg firefox-gnome-support firefox-dom-inspector mozilla-firefox 
mozilla-firefox-gnome-support mozilla-firefox-dom-inspector firefox
Architecture: source all i386
Version: 1.5.dfsg+1.5.0.6-5
Distribution: unstable
Urgency: high
Maintainer: Eric Dorland [EMAIL PROTECTED]
Changed-By: Eric Dorland [EMAIL PROTECTED]
Description: 
 firefox- lightweight web browser based on Mozilla
 firefox-dbg - debugging symbols for firefox
 firefox-dom-inspector - tool for inspecting the DOM of pages in Mozilla Firefox
 firefox-gnome-support - Support for Gnome in Mozilla Firefox
 mozilla-firefox - Transition package for firefox rename
 mozilla-firefox-dom-inspector - Transition package for firefox rename
 mozilla-firefox-gnome-support - Transition package for firefox rename
Closes: 386367 386988
Changes: 
 firefox (1.5.dfsg+1.5.0.6-5) unstable; urgency=high
 .
   * Severity high because we fix an RC bug.
   * debian/control: Adjust mozilla-firefox-dom-inspector for binNMU safety
 as well.
   * debian/firefox.desktop: Patch from Yavor Doganov to add a Bulgarian
 translation. (Closes: #386988)
   * xpcom/reflect/xptcall/src/md/unix/Makefile.in: Fix slight mistake in
 Mike's previous patch that misrecognized ppc arches. Thanks Markus for
 the patch. (Closes: #386367)
Files: 
 ba8002823b256eccd973e3b0048e723a 1115 web optional 
firefox_1.5.dfsg+1.5.0.6-5.dsc
 89c998f697a756a484de7e7688136a39 153709 web optional 
firefox_1.5.dfsg+1.5.0.6-5.diff.gz
 b390adcbdff61d84d8eb78379c47b316 49418 web optional 
mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb
 7a0a96d480547e6168ba9f6ffdc7f38a 48614 web optional 
mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
 dace5f4868562dd917e8e47518d709cb 48614 gnome optional 
mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
 b596c0cff53d91eb0f35e08950092d90 7973210 web optional 
firefox_1.5.dfsg+1.5.0.6-5_i386.deb
 42430e22b1236d16c1b214b4449828cb 248618 web optional 

Bug#386073: marked as done (mapserver: bad build-dep, FTBFS)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 07:17:10 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#386073: fixed in mapserver 4.8.4-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)

---BeginMessage---
Package: mapserver
Version: 4.8.3-2
Severity: serious

http://buildd.debian.org/fetch.php?pkg=mapserverarch=sparcver=4.8.3-2%2Bb2stamp=1157330722file=log

Package libgdal1-1.3.1-dev 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
However the following packages replace it:
  libgdal1-1.3.2-dev
E: Package libgdal1-1.3.1-dev has no installation candidate apt-get failed.
Package installation failed

---End Message---
---BeginMessage---
Source: mapserver
Source-Version: 4.8.4-1

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

cgi-mapserver_4.8.4-1_i386.deb
  to pool/main/m/mapserver/cgi-mapserver_4.8.4-1_i386.deb
mapserver-bin_4.8.4-1_i386.deb
  to pool/main/m/mapserver/mapserver-bin_4.8.4-1_i386.deb
mapserver-doc_4.8.4-1_all.deb
  to pool/main/m/mapserver/mapserver-doc_4.8.4-1_all.deb
mapserver_4.8.4-1.diff.gz
  to pool/main/m/mapserver/mapserver_4.8.4-1.diff.gz
mapserver_4.8.4-1.dsc
  to pool/main/m/mapserver/mapserver_4.8.4-1.dsc
mapserver_4.8.4.orig.tar.gz
  to pool/main/m/mapserver/mapserver_4.8.4.orig.tar.gz
perl-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/perl-mapscript_4.8.4-1_i386.deb
php4-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/php4-mapscript_4.8.4-1_i386.deb
php5-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/php5-mapscript_4.8.4-1_i386.deb
python-mapscript_4.8.4-1_i386.deb
  to pool/main/m/mapserver/python-mapscript_4.8.4-1_i386.deb



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

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

Debian distribution maintenance software
pp.
Paul Wise [EMAIL PROTECTED] (supplier of updated mapserver 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: Mon, 21 Aug 2006 09:47:48 +0800
Source: mapserver
Binary: mapserver-doc perl-mapscript mapserver-bin cgi-mapserver php5-mapscript 
python-mapscript php4-mapscript
Architecture: source all i386
Version: 4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Francesco Paolo Lovergine [EMAIL PROTECTED]
Changed-By: Paul Wise [EMAIL PROTECTED]
Description: 
 cgi-mapserver - cgi module of mapserver
 mapserver-bin - mapserver binary utilities
 mapserver-doc - documentation for mapserver
 perl-mapscript - perl mapserver library
 php4-mapscript - module for php4-cgi to use mapserver
 php5-mapscript - module for php5-cgi to use mapserver
 python-mapscript - python mapserver lib
Closes: 360576 373461 383140 383830 386073
Changes: 
 mapserver (4.8.4-1) unstable; urgency=low
 .
   * New upstream release
   * Update for new Python policy (Closes: #373461, #360576)
   * Install shp2mysql.pl as shp2mysql
   * Remove question from long desc for php mapscript debconf questions
   * Remove shp2pdf, since mapserver is build without PDFlib (non-free)
   * Suggest libdbi-perl for mapserver-bin for shp2mysql
   * Fix shebang lines in debian/php*-config
   * Remove python mapscript build dirs on clean
   * Bump Standards-Version (no changes)
   * Fix gdal build-dep - new upstream is libgdal1-1.3.2-dev (Closes: #383140, 
#383830, #386073)
   * Update debconf templates and translations
Files: 
 de3b6fc64151b59dbf9d83488f9bc352 1268 devel extra mapserver_4.8.4-1.dsc
 0e1b362c3b931731e01da456105388df 1537100 devel extra 
mapserver_4.8.4.orig.tar.gz
 8adaac0da10c5b278efefdb5f8f598a5 17210 devel extra mapserver_4.8.4-1.diff.gz
 37b1e614db9649f111ebe8e7e59b5b6b 87456 doc extra mapserver-doc_4.8.4-1_all.deb
 f433d1c9ed9c7f85ae196ba6efe45681 507466 web extra 
php4-mapscript_4.8.4-1_i386.deb
 931e7e22089557c935e6d68fa3a0feee 507814 web extra 
php5-mapscript_4.8.4-1_i386.deb
 ab2bce29b480a6497f35293a99c1b216 657324 perl extra 
perl-mapscript_4.8.4-1_i386.deb
 2bb92843fbfa107a40c3f5d820715916 419162 web extra 
cgi-mapserver_4.8.4-1_i386.deb
 3713bf299b8949dd13ed5f70416eee5c 1002162 python 

Bug#386367: marked as done (firefox: Newest Firefox fails to start on PowerPC)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 07:32:29 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#386367: fixed in firefox 1.5.dfsg+1.5.0.6-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)

---BeginMessage---
Package: FirefoxVersion: 1.5.dfsg+1.5.0I am using the testing release for powerpc, with the newest kernel and so on (2.6.17). Firefox doesn't start at all. You just get a dialogue box with two buttons which have no text in them. Pushing the buttons does nothing. I have done a complete purge and reinstall and get the same results. Happy to give help with debugging if I can. Please free me from Galeon!Adam Bartley
---End Message---
---BeginMessage---
Source: firefox
Source-Version: 1.5.dfsg+1.5.0.6-5

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

firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dbg_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_i386.deb
firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox-gnome-support_1.5.dfsg+1.5.0.6-5_i386.deb
firefox_1.5.dfsg+1.5.0.6-5.diff.gz
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.diff.gz
firefox_1.5.dfsg+1.5.0.6-5.dsc
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5.dsc
firefox_1.5.dfsg+1.5.0.6-5_i386.deb
  to pool/main/f/firefox/firefox_1.5.dfsg+1.5.0.6-5_i386.deb
mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
  to 
pool/main/f/firefox/mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb
  to pool/main/f/firefox/mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb



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

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

Debian distribution maintenance software
pp.
Eric Dorland [EMAIL PROTECTED] (supplier of updated firefox 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, 13 Sep 2006 01:45:20 -0400
Source: firefox
Binary: firefox-dbg firefox-gnome-support firefox-dom-inspector mozilla-firefox 
mozilla-firefox-gnome-support mozilla-firefox-dom-inspector firefox
Architecture: source all i386
Version: 1.5.dfsg+1.5.0.6-5
Distribution: unstable
Urgency: high
Maintainer: Eric Dorland [EMAIL PROTECTED]
Changed-By: Eric Dorland [EMAIL PROTECTED]
Description: 
 firefox- lightweight web browser based on Mozilla
 firefox-dbg - debugging symbols for firefox
 firefox-dom-inspector - tool for inspecting the DOM of pages in Mozilla Firefox
 firefox-gnome-support - Support for Gnome in Mozilla Firefox
 mozilla-firefox - Transition package for firefox rename
 mozilla-firefox-dom-inspector - Transition package for firefox rename
 mozilla-firefox-gnome-support - Transition package for firefox rename
Closes: 386367 386988
Changes: 
 firefox (1.5.dfsg+1.5.0.6-5) unstable; urgency=high
 .
   * Severity high because we fix an RC bug.
   * debian/control: Adjust mozilla-firefox-dom-inspector for binNMU safety
 as well.
   * debian/firefox.desktop: Patch from Yavor Doganov to add a Bulgarian
 translation. (Closes: #386988)
   * xpcom/reflect/xptcall/src/md/unix/Makefile.in: Fix slight mistake in
 Mike's previous patch that misrecognized ppc arches. Thanks Markus for
 the patch. (Closes: #386367)
Files: 
 ba8002823b256eccd973e3b0048e723a 1115 web optional 
firefox_1.5.dfsg+1.5.0.6-5.dsc
 89c998f697a756a484de7e7688136a39 153709 web optional 
firefox_1.5.dfsg+1.5.0.6-5.diff.gz
 b390adcbdff61d84d8eb78379c47b316 49418 web optional 
mozilla-firefox_1.5.dfsg+1.5.0.6-5_all.deb
 7a0a96d480547e6168ba9f6ffdc7f38a 48614 web optional 
mozilla-firefox-dom-inspector_1.5.dfsg+1.5.0.6-5_all.deb
 dace5f4868562dd917e8e47518d709cb 48614 gnome optional 
mozilla-firefox-gnome-support_1.5.dfsg+1.5.0.6-5_all.deb
 b596c0cff53d91eb0f35e08950092d90 7973210 web optional 
firefox_1.5.dfsg+1.5.0.6-5_i386.deb
 42430e22b1236d16c1b214b4449828cb 248618 web optional 

Bug#379152: marked as done (stardict - FTBFS: error: no matching function for call to 'min(long unsigned int, guint32)')

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 23:00:41 +0800
with message-id [EMAIL PROTECTED]
and subject line (no subject)
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)

---BeginMessage---
Package: stardict
Version: 2.4.7-2
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of stardict_2.4.7-2 on debian-31 by sbuild/s390 85
[...]
 if s390-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. -Wall -DORBIT2=1 -pthread 
 -I/usr/include/libgnomeui-2.0 -I/usr/include/libgnome-2.0 
 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/gtk-2.0 
 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 
 -I/usr/include/libbonoboui-2.0 -I/usr/include/gnome-vfs-2.0 
 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gnome-keyring-1 
 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/orbit-2.0 
 -I/usr/include/libbonobo-2.0 -I/usr/include/bonobo-activation-2.0 
 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/lib/gtk-2.0/include 
 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/libxml2   
 -DDATADIR=\/usr/share\ -DGNOME_ICONDIR=\/usr/share/pixmaps\ 
 -DSTARDICT_LOCALEDIR=\/usr/share/locale\ 
 -DSTARDICT_DATA_DIR=\/usr/share/stardict\   -g -O2 -MT 
 lib.o -MD -MP -MF .deps/lib.Tpo -c -o lib.o lib.cpp; \
   then mv -f .deps/lib.Tpo .deps/lib.Po; else rm -f .deps/lib.Tpo; 
 exit 1; fi
 lib.cpp: In member function 'const gchar* 
 offset_index::read_first_on_page_key(glong)':
 lib.cpp:509: error: no matching function for call to 'min(long unsigned int, 
 guint32)'
 make[4]: *** [lib.o] Error 1
 make[4]: Leaving directory 
 `/build/buildd/stardict-2.4.7/build/stardict-2.4.7/src'
 make[3]: *** [all-recursive] Error 1
 make[3]: Leaving directory 
 `/build/buildd/stardict-2.4.7/build/stardict-2.4.7/src'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory `/build/buildd/stardict-2.4.7/build/stardict-2.4.7'
 make[1]: *** [all] Error 2
 make[1]: Leaving directory `/build/buildd/stardict-2.4.7/build/stardict-2.4.7'
 make: *** [build-stamp] Error 2
 **
 Build finished at 20060721-0755
 FAILED [dpkg-buildpackage died]

---End Message---
---BeginMessage---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

The stardict 2.4.8-1 is in archive already, so I close this bug now.

- -Andrew
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFCB0WnQYz4bYlCYURAgRpAKCTKBHaElbV7R0pyZmcVLuZCV7N+QCgkus4
fCvpWWk06Pls6uchLD+JgKI=
=SNuN
-END PGP SIGNATURE-

---End Message---


Bug#386831: User tomcat5 problem after removing tomcat5 but keeping tomcat5.5

2006-09-13 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Kalle Kivimaa wrote:
 Ruben Puettmann [EMAIL PROTECTED] writes:
 Yes this would be the best way. Cause so it is posible that tomcat5 and
 tomcat5.5 runs on the same Server with different users. But if you do
 you must keep the people in mind that already has installed the package.
 
 I think the better way would be to check at remove/purge if the other
 package is installed, and if yes, not to remove the tomcat5 user. That
 way we could even replace it with a (IMO) more sane tomcat users.

OK, I'll try to patch the postrm script

- --
Arnaud Vandyck, STE fi, ULg
Formateur Cellule Programmation.
Java Trap: http://www.gnu.org/philosophy/java-trap.html
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFCB2g4vzFZu62tMIRAhrNAKCVtkv+AB8x6uX1//5UJRft2NAtvwCgodIp
WszQn6qkaqwaqjG62QAEJwo=
=qZsT
-END PGP SIGNATURE-
begin:vcard
fn:Arnaud Vandyck
n:Vandyck;Arnaud
org;quoted-printable:Universit=C3=A9 de Li=C3=A8ge;STE-Formations Informatiques
adr;quoted-printable;quoted-printable;quoted-printable:B=C3=A2timent C1;;Rue Armand St=C3=A9vard, 2;Li=C3=A8ge;;4000;Belgique
email;internet:[EMAIL PROTECTED]
title;quoted-printable:Attach=C3=A9 (formateur)
tel;work:+32 4 366 90 55
tel;fax:+32 4 366 90 59
tel;home:+32 4 349 09 69
tel;cell:+32 486 31 10 47
x-mozilla-html:FALSE
url:http://www.ste.fapse.ulg.ac.be/
version:2.1
end:vcard



Processed: That bug is not grave for makedev

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 #Maybe important at most.
 severity 387111 normal
Bug#387111: watchdog: Fails to configure: don't know how to make device misc
Severity set to `normal' from `grave'

 retitle 387111 New experimental package cannot make misc
Bug#387111: watchdog: Fails to configure: don't know how to make device misc
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#387313: banshee crashes on startup with stacktrace

2006-09-13 Thread Lars Heppler
Package: banshee
Version: 0.10.12-1
Severity: grave
Justification: renders package unusable

hi,
i get following stacktrace when starting banshee :

=
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=

Stacktrace:

  at (wrapper managed-to-native)
DBus.Connection.dbus_connection_setup_with_g_main (intptr,intptr)
0x4
  at (wrapper managed-to-native)
DBus.Connection.dbus_connection_setup_with_g_main (intptr,intptr)
0x
  at DBus.Connection.SetupWithMain () 0x0001a
  at DBus.Bus.GetBus (DBus.Bus/BusType) 0x00059
  at DBus.Bus.GetSessionBus () 0x9
  at Banshee.RemotePlayer.FindInstance () 0xd
  at Banshee.BansheeEntry.DetectInstanceAndDbus () 0x00011
  at Banshee.BansheeEntry.Startup (string[]) 0x004fd
  at Banshee.BansheeEntry.Main (string[]) 0xa
  at (wrapper runtime-invoke) System.Object.runtime_invoke_void_string[]
(object,intptr,intptr,intptr) 0x

Native stacktrace:

banshee(mono_handle_native_sigsegv+0xe6) [0x8155b96]
banshee [0x8122998]
[0xe440]
[0xb740905d]
[0xb7409013]
[0xb7407842]
[0xb74077b2]
[0xb7407726]
[0xb74076ba]
[0xb7403e1e]
[0xb740383b]
[0xb74037c3]
banshee(mono_runtime_exec_main+0x60) [0x80995b0]
banshee(mono_runtime_run_main+0x1b3) [0x8099893]
banshee(mono_main+0xe54) [0x805d3b4]
banshee [0x805c082]
/lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xc8)
[0xb7d86ea8]
banshee [0x805bfd1]
Abgebrochen


-- 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.16-28-m6ne-cz
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages banshee depends on:
ii  gconf2 2.14.0-4  GNOME configuration
database syste
ii  gstreamer0.10-gnomevfs 0.10.9-2  GStreamer plugin for
GnomeVFS
ii  gstreamer0.10-plugins-base 0.10.9-2  GStreamer plugins from the
base
ii  gstreamer0.10-plugins-good 0.10.3-3  GStreamer plugins from the
good
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D
graphi
ii  libatk1.0-01.12.2-1  The ATK accessibility
toolkit
ii  libbonobo2-0   2.14.0-1  Bonobo CORBA interfaces
library
ii  libbonoboui2-0 2.14.0-4  The Bonobo UI library
ii  libc6  2.3.6.ds1-4   GNU C Library: Shared
libraries
ii  libcairo2  1.2.4-1   The Cairo 2D vector
graphics libra
ii  libdbus-1-20.62-4simple interprocess
messaging syst
ii  libdbus-1-cil  0.62-4CLI binding for D-BUS
interprocess
ii  libdbus-glib-1-2   0.71-2simple interprocess
messaging syst
ii  libfontconfig1 2.3.2-7   generic font configuration
library
ii  libgconf2-42.14.0-4  GNOME configuration
database syste
ii  libgconf2.0-cil2.8.3-1   CLI binding for GConf 2.12
ii  libglade2.0-cil2.8.3-1   CLI binding for the Glade
librarie
ii  libglib2.0-0   2.10.3-3  The GLib library of C
routines
ii  libglib2.0-cil 2.8.3-1   CLI binding for the GLib
utility l
ii  libgnome-desktop-2 2.14.3-1  Utility library for
loading .deskt
ii  libgnome-keyring0  0.4.9-1   GNOME keyring services
library
ii  libgnome2-02.14.1-3  The GNOME 2 library -
runtime file
ii  libgnome2.0-cil2.8.3-1   CLI binding for GNOME 2.12
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented
display
ii  libgnomeui-0   2.14.1-2  The GNOME 2 libraries (User
Interf
ii  libgnomevfs2-0 2.14.2-2+b1   GNOME virtual file-system
(runtime
ii  libgstreamer0.10-0 0.10.9-2  Core GStreamer libraries
and eleme
ii  libgtk2.0-02.8.20-1  The GTK+ graphical user
interface
ii  libgtk2.0-cil  2.8.3-1   CLI binding for the GTK+
toolkit 2
ii  libhal10.5.7.1-2 Hardware Abstraction Layer
- share
ii  libice61:1.0.1-2 X11 Inter-Client Exchange
library
ii  libipoddevice0 0.4.5-4+b1library for retrieving
information
ii  libmono-corlib1.0-cil  1.1.17.1-2Mono core library (1.0)
ii  libmono-security1.0-cil1.1.17.1-2Mono Security library
ii  libmono-sqlite1.0-cil  1.1.17.1-2Mono Sqlite library
ii  libmono-system-data1.0-cil 1.1.17.1-2Mono System.Data library
ii  libmono-system-web1.0-cil  1.1.17.1-2Mono System.Web library
ii  libmono-system1.0-cil  1.1.17.1-2Mono System libraries (1.0)
ii  libmono1.0-cil  

Bug#386032: marked as done (FTBFS on alpha)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 17:06:09 +0200
with message-id [EMAIL PROTECTED]
and subject line Fixed in NMU of djvulibre 3.5.17-1.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)

---BeginMessage---
Package: djvulibre
Version: 3.5.17-1
Severity: serious

FTBFS on alpha, compiling kviewshell/plugins/djvu/libdjvu/GString.cpp.
See #381717. Please compile this file using -O0 on alpha.

---End Message---
---BeginMessage---
Version: 3.5.17-1.1

I've NMUed for this bug (fixing the bug to use versioning instead of the
fixed tag, to ease tracking through testing); here's the changelog:

  djvulibre (3.5.17-1.1) unstable; urgency=medium
  .
* Non-maintainer upload.
* On alpha, build GString.cpp with -O0 to work around a bug in GCC 4.1/4.2.
  Fixes FTBFS. (Closes: #386032)

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


Bug#387111: That bug is not grave for makedev

2006-09-13 Thread Lionel Elie Mamane
#Maybe important at most.
severity 387111 normal
retitle 387111 New experimental package cannot make misc
thanks



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



Bug#387295: marked as done (ocamlnet needs rebuild)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 08:47:05 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#387295: fixed in ocamlnet 1.1-12
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)

---BeginMessage---
Severity: serious
Package: libocamlnet-ocaml
Version: 1.1-11

ocamlnet needs rebuild against newer libpcre-ocaml.

--
Luca Brivio

---End Message---
---BeginMessage---
Source: ocamlnet
Source-Version: 1.1-12

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

libocamlnet-ocaml-dev_1.1-12_i386.deb
  to pool/main/o/ocamlnet/libocamlnet-ocaml-dev_1.1-12_i386.deb
libocamlnet-ocaml_1.1-12_i386.deb
  to pool/main/o/ocamlnet/libocamlnet-ocaml_1.1-12_i386.deb
ocamlnet_1.1-12.diff.gz
  to pool/main/o/ocamlnet/ocamlnet_1.1-12.diff.gz
ocamlnet_1.1-12.dsc
  to pool/main/o/ocamlnet/ocamlnet_1.1-12.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.
Stefano Zacchiroli [EMAIL PROTECTED] (supplier of updated ocamlnet 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, 13 Sep 2006 17:20:39 +0200
Source: ocamlnet
Binary: libocamlnet-ocaml libocamlnet-ocaml-dev
Architecture: source i386
Version: 1.1-12
Distribution: unstable
Urgency: low
Maintainer: Stefano Zacchiroli [EMAIL PROTECTED]
Changed-By: Stefano Zacchiroli [EMAIL PROTECTED]
Description: 
 libocamlnet-ocaml - OCaml application-level Internet protocols and conventions 
librar
 libocamlnet-ocaml-dev - OCaml application-level Internet protocols and 
conventions librar
Closes: 387295
Changes: 
 ocamlnet (1.1-12) unstable; urgency=low
 .
   * debian/control
 - bumped dependencies on pcre-ocaml (closes: #387295)
Files: 
 95814acb49148cb856fd386677df3124 798 devel optional ocamlnet_1.1-12.dsc
 535ec33812a10230154b2dbed444604d 8017 devel optional ocamlnet_1.1-12.diff.gz
 59e236185d681346ae461afcf3657d22 1920520 libdevel optional 
libocamlnet-ocaml-dev_1.1-12_i386.deb
 3af59edc4a1a78c5acd75f8f7695a01f 8908 libs optional 
libocamlnet-ocaml_1.1-12_i386.deb

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

iD8DBQFFCCLb1cqbBPLEI7wRAoYdAKC2YS34QPs+aN/Y4i3PWZrJo5XrTgCguFlq
M1SktCfCG7Iz/Xus1LHvNhw=
=fBMo
-END PGP SIGNATURE-

---End Message---


Bug#379278: fixed in subversion 1.3.2-5

2006-09-13 Thread Agustin Martin
On Mon, Jul 24, 2006 at 02:33:43PM -0700, Troy Heber wrote:
 Source: subversion
 Source-Version: 1.3.2-5
  subversion (1.3.2-5) unstable; urgency=medium
  .
[ Peter Samuelson ]
* python-subversion.{prerm,postinst}: use pyversions, fix stupid bug
  (Closes: #379278) in prerm.  Tighten python build-dep to ensure
  availability of pyversions.

Note that some upgrades might still be a problem,

---
Preparing to replace python-subversion 1.3.2-4 (using
.../python-subversion_1.4.0-1_i386.deb) ...
/var/lib/dpkg/info/python-subversion.prerm: line 8: cd:
/usr/lib/python2.5/site-packages: No such file or directory
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
usage: update-python-modules [-v] [-c] package_directory [...]
usage: update-python-modules [-v] [-c] package.dirs [...]
   update-python-modules [-v] [-a|-f]

update-python-modules: error: /usr/share/python-support/python-subversion
does not exist
dpkg: error processing
/var/cache/apt/archives/python-subversion_1.4.0-1_i386.deb (--unpack):
---

Checking in the prerm that /usr/share/python-support/python-subversion
actually exists might help. I worked around this problem by manually
adding /usr/share/python-support/python-subversion dir, and then
reinstalling.

-- 
Agustin


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



Bug#387319: ocamldap needs to be rebuilt against the new pcre-ocaml

2006-09-13 Thread Stefano Zacchiroli
Package: libldap-ocaml-dev
Version: 2.1.8-1
Severity: serious

After my upload of libpcre-ocaml-dev 5.11.1-1 ocamldap needs to be
rebuilt against it:

  [EMAIL PROTECTED]:~$ ledit ocaml
  Objective Caml version 3.09.2

  Findlib has been successfully loaded. Additional directives:
#require package;;  to load a package
#list;;   to list the available packages
#camlp4o;;to load camlp4 (standard syntax)
#camlp4r;;to load camlp4 (revised syntax)
#predicates p,q,...;;   to set these predicates
Topfind.reset();; to force that packages will be reloaded
#thread;; to enable threads

  # #require ocamldap;;
  /usr/lib/ocaml/3.09.2/pcre: added to search path
  /usr/lib/ocaml/3.09.2/pcre/pcre.cma: loaded
  /usr/lib/ocaml/3.09.2/unix.cma: loaded
  /usr/lib/ocaml/3.09.2/netstring: added to search path
  /usr/lib/ocaml/3.09.2/netstring/netstring.cma: loaded
  /usr/lib/ocaml/3.09.2/netstring/netstring_top.cmo: loaded
  /usr/lib/ocaml/3.09.2/netstring/netaccel.cma: loaded
  /usr/lib/ocaml/3.09.2/netstring/netaccel_link.cmo: loaded
  /usr/lib/ocaml/3.09.2/netstring/compatcgi.cma: loaded
  /usr/lib/ocaml/3.09.2/str.cma: loaded
  /usr/lib/ocaml/3.09.2/ssl: added to search path
  /usr/lib/ocaml/3.09.2/ssl/ssl.cma: loaded
  /usr/lib/ocaml/3.09.2/ocamldap: added to search path
  /usr/lib/ocaml/3.09.2/ocamldap/ocamldap.cma: loaded
  The files /usr/lib/ocaml/3.09.2/ocamldap/ocamldap.cma
  and /usr/lib/ocaml/3.09.2/pcre/pcre.cma
  disagree over interface Pcre

Let me know if you want an NMU for that.

Cheers.

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

Versions of packages libldap-ocaml-dev depends on:
ii  libocamlnet-ocaml-dev 1.1-12 OCaml application-level Internet p
ii  libssl-ocaml-dev  0.3.1-5OCaml bindings for OpenSSL
ii  ocaml-nox [ocaml-nox-3.09.2]  3.09.2-6   ML language implementation with a 

libldap-ocaml-dev recommends no packages.

-- no debconf information


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



Bug#387185: picprog: Fails to detect programmer in amd64

2006-09-13 Thread Jan Wagemakers
Fernando M. Maresca schreef:

 picprog does not detect the chip in the programmer in my amd64 unstable
 box. I'm using the programmer from the package docs.

[...]

 In another box running 32bit unstable picprog works fine:

Are you sure that the problem is amd64 related?
Can you check the voltage of your serial port? JDM-style programmers don't
work on 'low-voltage' serial ports.

For example here picprog works without a problem on my normal PC, but
doesn't work on my laptop because the voltage of the serial port of my
laptop¹ is not high enough.

 Can anyone check this?

I can not test it because I don't have a amd64 PC.


[1] 
http://janw.wisclub.org/nanoblogger/archives/2006/04/#e2006-04-01T13_24_44.txt
-- 
Met vriendelijke groetjes - Jan Wagemakers -

... I'm no missionary! I don't even believe in Jebus!--Homer Simpson


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



Processed: Re: Bug#387286: Acknowledgement (postrm_hook is not run)

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 387286 grub
Bug#387286: postrm_hook is not run
Bug reassigned from package `kernel-package' to `grub'.

 severity 387286 grave
Bug#387286: postrm_hook is not run
Severity set to `grave' from `normal'

 retitle 387286 grub path transition is breaking kernel removals
Bug#387286: postrm_hook is not run
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#325849: marked as done (isakmpd: uninstallable in sid: please rebuild against libgmp3c2)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 18:35:45 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#334624: fixed in isakmpd 20041012-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)

---BeginMessage---
Package: isakmpd
Version: 20041012-1
Severity: grave

The current version of isakmpd is not installable in unstable, because
it still depends on libgmp3.  The libgmp3 package has been renamed to
libgmp3c2 due to the C++ ABI transition; even if your package does not
use the C++ bindings, it will need to be rebuilt so that it is
installable again.

Since updating glibc in testing is now held up by the libgmp3
transition, isakmpd/20041012-1 will be removed from testing so that it
doesn't block the rest of the archive from being updated.  It can get
back into testing as soon as this bug is fixed.

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---
---BeginMessage---
Source: isakmpd
Source-Version: 20041012-3

On Wed, Aug 09, 2006 at 08:32:11AM -0700, Jochen Friedrich wrote:
  isakmpd (20041012-2) unstable; urgency=low
  .
* New maintainer (Closes: #358800)
* Replace SADB_X_SPDADD by SADB_X_SPDUPDATE (Closes: #346214)
* Fix NAT-T (Closes: #324753)
* Fix openssl incompatibility with version 0.9.8b (Closes: #334624)
* Fix dependencies (Closes: #320393, #325849)
* gcc compiler fixes (Closes: #318241)
* Update standards version to 3.7.2

There's something odd with the BTS' view of this bug; it looks like the
classic “forgot to keep this changelog snippet in the next version”, but the
next version seems to be “sakmpd/20041012-2” for some reason. Anyhow, I'm
closing it properly now so the BTS understands it doesn't apply to the
current version in sid.

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


Bug#325849: marked as done (isakmpd: uninstallable in sid: please rebuild against libgmp3c2)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 18:35:45 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#334624: fixed in isakmpd 20041012-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)

---BeginMessage---
Package: isakmpd
Version: 20041012-1
Severity: grave

The current version of isakmpd is not installable in unstable, because
it still depends on libgmp3.  The libgmp3 package has been renamed to
libgmp3c2 due to the C++ ABI transition; even if your package does not
use the C++ bindings, it will need to be rebuilt so that it is
installable again.

Since updating glibc in testing is now held up by the libgmp3
transition, isakmpd/20041012-1 will be removed from testing so that it
doesn't block the rest of the archive from being updated.  It can get
back into testing as soon as this bug is fixed.

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---
---BeginMessage---
Source: isakmpd
Source-Version: 20041012-3

On Wed, Aug 09, 2006 at 08:32:11AM -0700, Jochen Friedrich wrote:
  isakmpd (20041012-2) unstable; urgency=low
  .
* New maintainer (Closes: #358800)
* Replace SADB_X_SPDADD by SADB_X_SPDUPDATE (Closes: #346214)
* Fix NAT-T (Closes: #324753)
* Fix openssl incompatibility with version 0.9.8b (Closes: #334624)
* Fix dependencies (Closes: #320393, #325849)
* gcc compiler fixes (Closes: #318241)
* Update standards version to 3.7.2

There's something odd with the BTS' view of this bug; it looks like the
classic “forgot to keep this changelog snippet in the next version”, but the
next version seems to be “sakmpd/20041012-2” for some reason. Anyhow, I'm
closing it properly now so the BTS understands it doesn't apply to the
current version in sid.

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


Bug#334624: marked as done (FTBFS: struct x506_store_st has no member named flags)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 18:35:45 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#334624: fixed in isakmpd 20041012-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)

---BeginMessage---
Package: isakmpd
Version: 20041012-1
Severity: serious

isakmpd fails to build:

 cc -O2 -g -Wall -DNEED_SYSDEP_APP -I/tmp/buildd/isakmpd-20041012 
 -I/tmp/buildd/isakmpd-20041012/sysdep/linux -I.  -DHAVE_GETNAMEINFO 
 -DUSE_OLD_SOCKADDR -DHAVE_PCAP -DNEED_SYSDEP_APP -DMP_FLAVOUR=MP_FLAVOUR_GMP 
 -DUSE_AES -I/tmp/buildd/isakmpd-20041012/sysdep/linux/include 
 -I/tmp/buildd/isakmpd-20041012/sysdep/common -I/usr/include/openssl  
 -DUSE_DEBUG  -DUSE_TRIPLEDES  -DUSE_BLOWFISH  -DUSE_CAST  -DUSE_EC  
 -DUSE_AGGRESSIVE  -DUSE_X509  -DUSE_POLICY  -DUSE_DPD  -DUSE_NAT_TRAVERSAL  
 -DUSE_ISAKMP_CFG  -DUSE_DES  -DUSE_AES -DUSE_KEYNOTE -DUSE_LIBCRYPTO 
 -DUSE_PF_KEY_V2   -c -o x509.o x509.c
 x509.c: In function 'x509_cert_validate':
 x509.c:913: error: 'struct x509_store_st' has no member named 'flags'
 x509.c: In function 'x509_DN_string':
 x509.c:1421: warning: passing argument 2 of 'd2i_X509_NAME' from incompatible 
 pointer type
 make[1]: *** [x509.o] Error 1
 make[1]: Leaving directory `/tmp/buildd/isakmpd-20041012'
 make: *** [build-stamp] Error 2

-- 
Matt


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: isakmpd
Source-Version: 20041012-3

On Wed, Aug 09, 2006 at 08:32:11AM -0700, Jochen Friedrich wrote:
  isakmpd (20041012-2) unstable; urgency=low
  .
* New maintainer (Closes: #358800)
* Replace SADB_X_SPDADD by SADB_X_SPDUPDATE (Closes: #346214)
* Fix NAT-T (Closes: #324753)
* Fix openssl incompatibility with version 0.9.8b (Closes: #334624)
* Fix dependencies (Closes: #320393, #325849)
* gcc compiler fixes (Closes: #318241)
* Update standards version to 3.7.2

There's something odd with the BTS' view of this bug; it looks like the
classic “forgot to keep this changelog snippet in the next version”, but the
next version seems to be “sakmpd/20041012-2” for some reason. Anyhow, I'm
closing it properly now so the BTS understands it doesn't apply to the
current version in sid.

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


Bug#320393: marked as done (isakmpd is uninstallable)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 18:35:45 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#334624: fixed in isakmpd 20041012-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)

---BeginMessage---
Package: isakmpd
Severity: grave

isakmpd is uninstallable on all architectures since it depends on
libgmp3, which is no longer in the archive. This package needs a
rebuild.

-- 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.12
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

---End Message---
---BeginMessage---
Source: isakmpd
Source-Version: 20041012-3

On Wed, Aug 09, 2006 at 08:32:11AM -0700, Jochen Friedrich wrote:
  isakmpd (20041012-2) unstable; urgency=low
  .
* New maintainer (Closes: #358800)
* Replace SADB_X_SPDADD by SADB_X_SPDUPDATE (Closes: #346214)
* Fix NAT-T (Closes: #324753)
* Fix openssl incompatibility with version 0.9.8b (Closes: #334624)
* Fix dependencies (Closes: #320393, #325849)
* gcc compiler fixes (Closes: #318241)
* Update standards version to 3.7.2

There's something odd with the BTS' view of this bug; it looks like the
classic “forgot to keep this changelog snippet in the next version”, but the
next version seems to be “sakmpd/20041012-2” for some reason. Anyhow, I'm
closing it properly now so the BTS understands it doesn't apply to the
current version in sid.

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


Bug#320393: marked as done (isakmpd is uninstallable)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 18:35:45 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#334624: fixed in isakmpd 20041012-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)

---BeginMessage---
Package: isakmpd
Severity: grave

isakmpd is uninstallable on all architectures since it depends on
libgmp3, which is no longer in the archive. This package needs a
rebuild.

-- 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.12
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

---End Message---
---BeginMessage---
Source: isakmpd
Source-Version: 20041012-3

On Wed, Aug 09, 2006 at 08:32:11AM -0700, Jochen Friedrich wrote:
  isakmpd (20041012-2) unstable; urgency=low
  .
* New maintainer (Closes: #358800)
* Replace SADB_X_SPDADD by SADB_X_SPDUPDATE (Closes: #346214)
* Fix NAT-T (Closes: #324753)
* Fix openssl incompatibility with version 0.9.8b (Closes: #334624)
* Fix dependencies (Closes: #320393, #325849)
* gcc compiler fixes (Closes: #318241)
* Update standards version to 3.7.2

There's something odd with the BTS' view of this bug; it looks like the
classic “forgot to keep this changelog snippet in the next version”, but the
next version seems to be “sakmpd/20041012-2” for some reason. Anyhow, I'm
closing it properly now so the BTS understands it doesn't apply to the
current version in sid.

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


Bug#387150: marked as done (Superfluous versioned Conflicts on older tetex-bin; breaks some upgrades)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 09:47:50 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#387150: fixed in tetex-base 3.0-21
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)

---BeginMessage---
Package: tetex-base
Version: 2.0.2c-8
Severity: serious
Justification: Policy 9.1.2

Trying to upgrade from 20.2c-8 to 3.0.10:

dpkg: tetex-base: dependency problems, but removing anyway as you request:
 tetex-bin depends on tetex-base.
(Reading database ... 98267 files and directories currently installed.)
Removing tetex-base ...
rm: cannot remove `/usr/local/share/texmf/ls-R': Read-only file system
dpkg: error processing tetex-base (--remove):
 subprocess pre-removal script returned error exit status 1
Errors were encountered while processing:
 tetex-base
E: Sub-process /usr/bin/dpkg returned an error code (1)
Ack!  Something bad happened while installing packages.  Trying to recover:
dpkg: dependency problems prevent configuration of tetex-extra:
 tetex-extra depends on tetex-bin (= 2.99); however:
  Version of tetex-bin on system is 2.0.2-31.
dpkg: error processing tetex-extra (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 tetex-extra


-- Package-specific info:
##
 List of ls-R files

-rw-r--r--  1 latex latex 9789 May 19 11:14 /usr/local/share/texmf/ls-R
-rw-rw-r--  1 root users 853 Nov 11 06:29 /var/lib/texmf/ls-R
lrwxrwxrwx  1 root root 29 Aug  8 11:22 /usr/share/texmf/ls-R - 
/var/lib/texmf/ls-R-TEXMFMAIN

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

Versions of packages tetex-base depends on:
ii  debconf  1.4.58  Debian configuration management sy
ii  dpkg 1.13.11.0.1 package maintenance system for Deb
ii  texinfo  4.7-2.2 Documentation system for on-line i
ii  ucf  2.003   Update Configuration File: preserv

Versions of packages tetex-base recommends:
pn  tetex-doc none (no description available)

Versions of packages tetex-bin depends on:
ii  debconf  1.4.58  Debian configuration management sy
ii  debianutils  2.15Miscellaneous utilities specific t
ii  dpkg 1.13.11.0.1 package maintenance system for Deb
ii  ed   0.2-20  The classic unix line editor
ii  libc62.3.5-7 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.2-3   GCC support library
ii  libice6  6.8.2.dfsg.1-10 Inter-Client Exchange library
ii  libkpathsea3 2.0.2-31path search library for teTeX (run
ii  libpaper11.1.14-3Library for handling paper charact
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libsm6   6.8.2.dfsg.1-10 X Window System Session Management
ii  libstdc++6   4.0.2-3 The GNU Standard C++ Library v3
ii  libt1-5  5.1.0-2 Type 1 font rasterizer library - r
ii  libwww0  5.4.0-9 The W3C WWW library
ii  libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li
ii  libxaw7  6.8.2.dfsg.1-7  X Athena widget set library
ii  libxext6 6.8.2.dfsg.1-10 X Window System miscellaneous exte
ii  libxmu6  6.8.2.dfsg.1-10 X Window System miscellaneous util
ii  libxt6   6.8.2.dfsg.1-10 X Toolkit Intrinsics
ii  mime-support 3.35-1  MIME files 'mime.types'  'mailcap
ii  perl 5.8.7-7 Larry Wall's Practical Extraction 
ii  sed  4.1.4-4 The GNU sed stream editor
ii  ucf  2.003   Update Configuration File: preserv
ii  xlibs6.8.2.dfsg.1-10 X Window System client libraries m
ii  zlib1g   1:1.2.3-6   compression library - runtime

Versions of packages tetex-extra depends on:
ii  dpkg 1.13.11.0.1 package maintenance system for Deb
ii  tetex-bin2.0.2-31The teTeX binary files
ii  ucf  2.003   Update Configuration File: preserv

-- 

Bug#386668: close this?

2006-09-13 Thread Joey Hess
I successfully built and uploaded this version of arts on an arm
machine.

The quoted warnings don't cause the failure, the actual failing line is
the link line, which is /dev/null 21 so we don't see whatever the
build error was. (/dev/nulling errors during compiles considered
self-defeating.)

Anyway, I can't reproduce it, so unless it happens on a future build on
the buildd, I don't think it's RC.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#359855: lilypond and thanks to Rob Browning

2006-09-13 Thread Thomas Bushnell BSG

Rob Browning, the guile maintainer, has been doing a lot of hard work
trying to get guile-1.8 into Debian.  Turns out there were some
critical timing bugs affecting the operation of fork in the guile
threading implementation, bugs which are too intractible to solve
immediately.

Rob has uploaded guile-1.8 with the threading option turned off, which
seems to work fine, and since lilypond doesn't rely on threads in
guile, should enable the long-awaited upload of lilypond 2.8.

It is my hope that #359855 will not exist in the new lilypond.
However, this is just a hope.  If ghostscript continues to have such a
bug, then solving it will become of critical priority for getting
lilypond into the release.

So right now, I'm waiting for ftpmaster to approve the new guile-1.8
packages, and then I can build and upload lilypond 2.8 without delay.

Thomas


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



Bug#387286: marked as done (grub path transition is breaking kernel removals)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 10:17:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#387286: fixed in kernel-package 10.056
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)

---BeginMessage---
Package: kernel-package
Version: 10.055
Severity: normal

/etc/kernel-img.conf contains:

# Do not create symbolic links in /
do_symlinks = no
relative_links = no
do_bootloader = no
do_bootfloppy = no
do_initrd = yes
link_in_boot = no
postinst_hook = update-grub
postrm_hook = update-grub


When I install a new kernel, update-grub is successfully executed but not upon
deinstallation. I have to run update-grub manually to update 
/boot/grub/menu.lst.

Cheers,
Michael

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

Versions of packages kernel-package depends on:
ii  dpkg  1.13.22package maintenance system for Deb
ii  dpkg-dev  1.13.22package building tools for Debian
ii  file  4.17-3 Determines file type using magic
ii  gcc [c-compiler]  4:4.1.1-7  The GNU C compiler
ii  gcc-4.1 [c-compiler]  4.1.1-13   The GNU C compiler
ii  gettext   0.15-2 GNU Internationalization utilities
ii  make  3.81-3 The GNU version of the make util
ii  perl  5.8.8-6.1  Larry Wall's Practical Extraction 
ii  po-debconf1.0.5  manage translated Debconf template

Versions of packages kernel-package recommends:
ii  bzip21.0.3-6 high-quality block-sorting file co
ii  libc6-dev [libc-dev] 2.3.6.ds1-4 GNU C Library: Development Librari

-- no debconf information

---End Message---
---BeginMessage---
Source: kernel-package
Source-Version: 10.056

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

kernel-package_10.056.dsc
  to pool/main/k/kernel-package/kernel-package_10.056.dsc
kernel-package_10.056.tar.gz
  to pool/main/k/kernel-package/kernel-package_10.056.tar.gz
kernel-package_10.056_all.deb
  to pool/main/k/kernel-package/kernel-package_10.056_all.deb



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

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

Debian distribution maintenance software
pp.
Manoj Srivastava [EMAIL PROTECTED] (supplier of updated kernel-package 
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, 13 Sep 2006 11:31:35 -0500
Source: kernel-package
Binary: kernel-package
Architecture: source all
Version: 10.056
Distribution: unstable
Urgency: low
Maintainer: Manoj Srivastava [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 kernel-package - A utility for building Linux kernel related Debian packages.
Closes: 387286
Changes: 
 kernel-package (10.056) unstable; urgency=low
 .
   * Bug fix: postrm_hook is not run, thanks to Michael Biebl. Gak. A
 thinko made the postrm still test to see if the script was executable
 before looking for it in the path. (Closes: #387286).
Files: 
 81ac7b796b7e7ac87a3ad9d48c87b920 485 misc optional kernel-package_10.056.dsc
 7ccfa5274fabb58ac1815588917b148c 822419 misc optional 
kernel-package_10.056.tar.gz
 8bde496efc802f2cbbb0c25957376ace 494298 misc optional 
kernel-package_10.056_all.deb

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

iD8DBQFFCDibIbrau78kQkwRAg2IAKCaU4BgguJgzVgo7qcTj4fJBzRxfACZAZjQ
NFTN8+lZ1wx6b/fi3ogMFGE=
=Rbqp
-END PGP SIGNATURE-

---End Message---


Bug#387268: [Fwd: flashplugin-nonfree 7.0.68.0.1]

2006-09-13 Thread Bart Martens

---BeginMessage---
Hi Alex,

Could you verify and upload this package please?
http://knars.be/bartm/debian/etch/flashplugin-nonfree_7.0.68.0.1.dsc

Thanks,

Bart Martens



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


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


Processed: severity of 385517 is serious

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.21
 # Uninstallable
 severity 385517 serious
Bug#385517: ifrit: please migrate to VTK 5
Severity set to `serious' from `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#387286: Acknowledgement (postrm_hook is not run)

2006-09-13 Thread Frans Pop
reassign 387286 kernel-package
retitle 387286 postrm_hook is not run
severity 387286 normal
thanks

On Wednesday 13 September 2006 19:18, Manoj Srivastava wrote:
 Note that grub is not breaking, nor does grub transition break
  anything -- if users follow the advice in NEWS.Debian from grub, then
  they intriducean user error. So it is a documentation bug, which
  ought not to be grave, in my opinion.

OK. Sorry for the noise then. Reverting the reassignment.


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



Bug#387330: Uninstallable due to unmet dep on libdbus-1-cil

2006-09-13 Thread Luk Claes
Package: f-spot
Severity: serious
Version: 0.2.0-1

Hi

Your package is not installable as it depends on libdbus-1-cil which is only
available in experimental.

Cheers

Luk

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D



signature.asc
Description: OpenPGP digital signature


Bug#387332: Uninstallable due to unmet dep on libdbus-1-cil

2006-09-13 Thread Luk Claes
Package: muine
Severity: serious
Version: 0.8.5-1+b1

Hi

Your package is not installable as it depends on libdbus-1-cil which is not
available in unstable (it's in experimental though).

Cheers

Luk

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D



signature.asc
Description: OpenPGP digital signature


Processed: Re: Bug#387286: Acknowledgement (postrm_hook is not run)

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 387286 kernel-package
Bug#387286: grub path transition is breaking kernel removals
Bug reassigned from package `grub' to `kernel-package'.

 retitle 387286 postrm_hook is not run
Bug#387286: grub path transition is breaking kernel removals
Changed Bug title.
(By the way, that Bug is currently marked as done.)

 severity 387286 normal
Bug#387286: postrm_hook is not run
Severity set to `normal' from `grave'

 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#387331: Uninstallable due to unmet dep on kernel-image-2.4.27-3-686-smp

2006-09-13 Thread Luk Claes
Package: kernel-image-2.4-686-smp
Severity: serious
Version: 101sarge1

Hi

Your package is not installable as it depends on kernel-image-2.4.27-3-686-smp
which is not available in unstable anymore.

Cheers

Luk

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D



signature.asc
Description: OpenPGP digital signature


Bug#387334: Uninstallable due to unmet dep on python ( 2.4)

2006-09-13 Thread Luk Claes
Package: python-cad
Severity: serious
Version: 0.1.33-1

Hi

Your package is not installable as it depends on python ( 2.4) which is not
available in unstable anymore.

Cheers

Luk

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D



signature.asc
Description: OpenPGP digital signature


Bug#387335: python-gnome2-extras: Uninstalable on sid. Depends on unexisting libdbus-1-2

2006-09-13 Thread Luis Rodrigo Gallardo Cruz
Package: python-gnome2-extras
Version: 2.14.2-1
Severity: grave
Justification: renders package unusable

dbus 0.92-2, uploaded on sept 9, 2006, no longer builds binary package
libdbus-1-2. Please update the dependency to libdbus-1-3

-- 
Rodrigo Gallardo
GPG-Fingerprint: 7C81 E60C 442E 8FBC D975  2F49 0199 8318 ADC9 BC28


signature.asc
Description: Digital signature


Bug#386487: FTBFS: aclocal: macro `AM_PROG_MKDIR_P' required but not defined

2006-09-13 Thread Denis Barbier
[Sent to 386487 instead of 386263, this is a gettext issue and not gnome-lokkit]

On Wed, Sep 13, 2006 at 11:57:42AM +0200, Santiago Vila wrote:
 On Thu, 7 Sep 2006, Steve Langasek wrote:
 
  On Wed, Sep 06, 2006 at 11:33:17AM +, Martin Michlmayr wrote:
   # Rebootstrap the package
   aclocal -I macros
   aclocal: macro `AM_PROG_MKDIR_P' required but not defined
   aclocal: macro `AM_PROG_MKDIR_P' required but not defined
  
  So in addition to the gettext pseudobug (#385235), we seem to have an
  incompatibility between the latest gettext and automake 1.4/1.7.  These
  versions are still in active use, which makes it impractical to include a
  gettext in etch that doesn't support them.
 
 Simple question: Is this the kind of bug that may be forwarded upstream
 and fixed?

No, these bugs are not caused by gettext itself, but by bad practices.
Let's look at all different cases:
  1. aclocal is not called during package build:
 aclocal.m4 and po/Makefile.in.in come from upstream and are
 compatible.
  2. aclocal is called during package build:
2.a. gettext.m4 is found in a local copy, usually under m4/
 There is no problem, m4/gettext.m4 and po/Makefile.in.in come
 from upstream and are compatible
2.b. gettext.m4 is found in /usr/share/aclocal/
 Here gettext.m4 may be incompatible with po/Makefile.in.in

The only problem is with 2.b.  In this case, developers should call
autopoint before aclocal.  Bruno Haible provided autopoint for this
exact purpose.  It can regenerate m4/gettext.m4 and
po/Makefile.in.in for any previous version of gettext, this tool
is really great.  Since autopoint 0.11.3, one can for instance add
  AM_GNU_GETTEXT_VERSION([0.12.1])
just after AM_GNU_GETTEXT in configure.ac to request files from
gettext 0.12.1.  This is useful with packages which depend on
automake 1.4, one can use more recent versions; ideally we should
try to reproduce the exact same version as upstream to avoid
problems.
Caveats:
  * Packages have to Build-Depends: cvs because cvs is needed by
autopoint.
  * As explained in gettext documentation, one may have to add
AC_GNU_SOURCE into configure.ac 

 Alternatively, if it helps, I could greate a gettext-0.14 package on
 which older packages could build-depend (the same way they already
 build-depend on an old automake).

Santiago, I requested some help to rebuild packages on gettext to
see how many packages are corrupted:
  http://lists.debian.org/debian-qa/2006/09/msg00018.html
A more detailed analysis is available at
  http://lists.debian.org/debian-qa/2006/09/msg00029.html
In short, 2 packages only have to be fixed now.  IMO there is no need
to add a gettext-0.14 package, especially thanks to autopoint.

About the issue with plural forms, I checked almost all PO files in
Debian.  Most problems come from ja.po files, but they are not
critical because packages ship MO files and do not compile PO files,
so this is an upstream issue.
There is only one package to fix in Debian, namely meld.
I discussed about that with Kenshi Muto during our i18n meeting in
Extremadura, and he contacted those Japanese translators, so these
translations will be fixed upstream soon.

Denis


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



Bug#384905: marked as done (bzrtools plugins do not register)

2006-09-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Sep 2006 11:32:10 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#384905: fixed in bzrtools 0.10.0-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)

---BeginMessage---
Package: bzrtools
Version: 0.9.0-1
Severity: grave
Justification: renders package unusable

hi, i just installed bzrtools, but unfortunately, none of the plugins
show up. i first noticed this with bzr shelf ls:

bzr: ERROR: unknown command shelf

bzr help commands reveals no commands from bzrtools.

and, upon further inspection, i found no files in
/usr/lib/python2.4/site-packages/bzrlib/plugins/bzrtools/

any ideas?

live well,
  vagrant

package versions:

ii  bzr  0.9-2  bazaar-ng, the next-generation 
distributed version control system
ii  python   2.4.3-11   An interactive high-level 
object-oriented language (default version)
ii  python-support   0.4.1  automated rebuilding support 
for python modules
ii  python2.42.4.3-8An interactive high-level 
object-oriented language (version 2.4)

---End Message---
---BeginMessage---
Source: bzrtools
Source-Version: 0.10.0-1

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

bzrtools_0.10.0-1.diff.gz
  to pool/main/b/bzrtools/bzrtools_0.10.0-1.diff.gz
bzrtools_0.10.0-1.dsc
  to pool/main/b/bzrtools/bzrtools_0.10.0-1.dsc
bzrtools_0.10.0-1_all.deb
  to pool/main/b/bzrtools/bzrtools_0.10.0-1_all.deb
bzrtools_0.10.0.orig.tar.gz
  to pool/main/b/bzrtools/bzrtools_0.10.0.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.
Adeodato Simó [EMAIL PROTECTED] (supplier of updated bzrtools 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, 13 Sep 2006 20:10:51 +0200
Source: bzrtools
Binary: bzrtools
Architecture: source all
Version: 0.10.0-1
Distribution: unstable
Urgency: low
Maintainer: Etienne Goyer [EMAIL PROTECTED]
Changed-By: Adeodato Simó [EMAIL PROTECTED]
Description: 
 bzrtools   - Collection of tools for bzr
Closes: 384905
Changes: 
 bzrtools (0.10.0-1) unstable; urgency=low
 .
   * Sync from Ubuntu. Thanks for the package, Etienne Goyer. The package does
 not still use either of pycentral or pysupport, but installs modules in a
 way compatible with pycentral, so this upload closes: #384905.
 .
   * Add myself to Uploaders, and make small adjustments here and there:
 + prevent instalation with bzr !~ 0.10.
 + drop version requirements in Suggests.
 + promote rsync and patch to Recommends.
Files: 
 e29204145b724fb458728ee63760ca0f 814 devel optional bzrtools_0.10.0-1.dsc
 2d0aaadded251dc17678034e77f122d6 70282 devel optional 
bzrtools_0.10.0.orig.tar.gz
 4e616c0bcf9b34299a03d157fa597f56 2639 devel optional bzrtools_0.10.0-1.diff.gz
 c573d7f7a6c0611c81342edf3ba344cf 60194 devel optional bzrtools_0.10.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Signed by Adeodato Simó [EMAIL PROTECTED]

iEYEARECAAYFAkUISioACgkQOzsxEBcMRN12ZACfdtDtZd8G8olGSuXeZoxGe66P
HrkAoNi3KfsDbaWVdck8t3xd35mZ0hAM
=nnep
-END PGP SIGNATURE-

---End Message---


Bug#386458: libavcodec-dev: Missing dependencies for libraw1394-dev libdc1934-dev

2006-09-13 Thread Niko Tyni
tags 386458 patch
thanks

On Thu, Sep 07, 2006 at 10:06:48PM +0300, Rémi Denis-Courmont wrote:
 Package: libavcodec-dev
 Version: 0.cvs20060823-3
 Severity: grave
 Justification: renders package unusable
 
 
 ffmpeg-config --libs mentions library whose development packages
 libavcodec-dev does not depend upon. Yet without these, the package is
 pretty much unusable, since any attempt to link against it will fail.

Hi,

this is because the variable substitution trick in debian/rules does
not quite work. The attached patch should fix it.

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]
--- ffmpeg-0.cvs20060823/debian/rules
+++ ffmpeg-0.cvs20060823/debian/rules
@@ -9,7 +9,7 @@
 
 ifneq (,$(findstring linux,$(DEB_HOST_GNU_TYPE)))
   confflags += --enable-dc1394
-  lib1394-dev = libraw1394-dev libdc1394-13-dev
+  lib1394-dev = libraw1394-dev, libdc1394-13-dev
 else
   lib1394-dev =
 endif
@@ -177,7 +177,7 @@
dh_makeshlibs -p libpostproc0d -V 'libpostproc0d (= 0.cvs20060823)'
dh_installdeb
dh_shlibdeps -L libavcodec0d -L libpostproc0d -L libavformat0d -l 
debian/libavcodec0d/usr/lib:debian/libavformat0d/usr/lib:debian/libpostproc0d/usr/lib
-   dh_gencontrol -Vlib1394-dev=$(lib1394-dev)
+   dh_gencontrol -- -Vlib1394-dev=$(lib1394-dev)
dh_md5sums
dh_builddeb
 


Processed: Re: Bug#386458: libavcodec-dev: Missing dependencies for libraw1394-dev libdc1934-dev

2006-09-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 386458 patch
Bug#386458: libavcodec-dev: Missing dependencies for libraw1394-dev 
libdc1934-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]



  1   2   >