Bug#606810: systraq: diff for NMU version 0.0.20081217-2.1

2010-12-21 Thread Joost van Baal
Hi Julien,

Op Tue 21 Dec 2010 om 08:38:52 +0100 schreef Julien Valroff:
 tags 606810 + pending
 thanks
 
 Dear maintainer,
 
 I've prepared an NMU for systraq (versioned as 0.0.20081217-2.1) and
 uploaded it to DELAYED/2. Please feel free to tell me if I
 should delay it longer.

DELAYED/2 is fine.  Thanks for the NMU, it's appreciated.

Bye,

Joost




signature.asc
Description: Digital signature


Bug#587668: fixed in desktop-base 6.0.0

2010-12-21 Thread Yves-Alexis Perez
On mar., 2010-12-21 at 00:40 +0100, Ulrich Hansen wrote:
 Maybe Valessio and Yves-Alexis have an opinion about this?

IIrc the source svg has the guidelines for cut while the various
artworks are generated from the source svg at the correct format.


The thing is, for the splash.svg they are both identical since there's
only one variant, so yes it could be removed, but for consistency I've
let it there.

It might be revisited later, for now I think it's easier like this for
now.

Regards,
-- 
Yves-Alexis


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


Bug#607458: desktop-base 6.0.4 upload

2010-12-21 Thread Yves-Alexis Perez
I'm gonna upload a new desktop-base today, fixing the various RC bugs
still around.

If you have something to include there, please say so *now*, I won't be
able to work on it of the next few days.

Check the svn and report back (preferably with patch) if you think
something is missing.

Especially, Josselin, if you could take care of the gnome-debian-sid
artwork (either clarify the license or drop it completely), and
Francesco if you could find out the various licensing issues you noted
which remain?

Regards,
-- 
Yves-Alexis


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


Bug#607662: ncurses-base: backspace key deletes forwards on the kFreeBSD console

2010-12-21 Thread Thomas Dickey

On Tue, 21 Dec 2010, Sven Joachim wrote:


On 2010-12-21 04:58 +0100, brian m. carlson wrote:


On Mon, Dec 20, 2010 at 10:06:00PM +0100, Sven Joachim wrote:

The changes to the kFreeBSD console and the kbdcontrol package (see
#605065 and #605777) need to be accompanied by changing the cons25
terminfo entry accordingly, otherwise ncurses-based programs severely
misbehave.


You really can't just unilaterally change the cons25 terminfo entry.  If
this proposed change is implemented, people running stock FreeBSD will
have their consoles broken if they log into a Debian system.


Right, they will have the opposite problem then, the delete key deletes
backwards while backspace works correctly.  Note that a similar problem
already exists for the xterm terminfo entry, see
/usr/share/doc/libncurses5/FAQ.


If kFreeBSD needs different settings than the stock cons25 entry, it
needs to create and use a different TERM type.


I suppose that ncurses-base would ship the terminfo entry for it, and
kfreebsd-image-* packages need to depend on an ncurses-base version that
has this terminfo entry, right?  Any suggestions for the name?


perhaps kons25

--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net



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



Processed: merging 605615 607434, severity of 605615 is serious

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

 merge 605615 607434
Bug#605615: grub-pc: Error in catalan translation that makes system unbootable
Bug#607434: [grub-pc] can not start linux
Merged 605615 607434.

 severity 605615 serious
Bug #605615 [grub-pc] grub-pc: Error in catalan translation that makes system 
unbootable
Bug #607434 [grub-pc] [grub-pc] can not start linux
Severity set to 'serious' from 'important'

Severity set to 'serious' from 'important'

 thanks
Stopping processing here.

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


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



Bug#593082: about digest.rb

2010-12-21 Thread Hideki Yamane
Hi,

 I've got updated digest.rb from upstream author, so it would be better
 to use this. Please consider to apply to your package, thanks.



## -*- Ruby -*-
## DOMHASH test implementation
## 1999 by yoshidam
##
## Apr 20, 1999 Change for draft-hiroshi-dom-hash-01.txt
##

require 'xml/dom/core'
require 'digest/md5'

module XML
  module DOM
def self.tou16(str)
  if defined?(::Encoding)
str.encode(::Encoding::UTF_16BE).force_encoding(::Encoding::ASCII_8BIT)
  else
str.unpack(U*).map {|v|
  if v = 0x1  v = 0x10
## surrogate pair
hi = ((v - 0x1)  10) | 0xd800
low = (v  1023) | 0xdc00
[hi, low].pack(n*)
  else
[v].pack(n*)
  end
}.join
  end
end

class Node
  def getDigest(algorithm = Digest::MD5, force = false)
nil
  end
end

class Text
  def getDigest(algorithm = Digest::MD5, force = false)
(!force  @digest) ||
  @digest = algorithm.digest([TEXT_NODE].pack(N) + 
DOM.tou16(nodeValue))
@digest
  end
end

##class Comment
##  def getDigest(algorithm = Digest::MD5, force = false)
##(!force  @digest) ||
##  @digest = algorithm.digest([COMMENT_NODE].pack(N) + 
DOM.tou16(data)).digest
##  end
##end

class ProcessingInstruction
  def getDigest(algorithm = Digest::MD5, force = false)
(!force  @digest) ||
  @digest = algorithm.digest([PROCESSING_INSTRUCTION_NODE].pack(N) +
 DOM.tou16(target) + \0\0 + 
DOM.tou16(data))
  end
end

class Attr
  def getDigest(algorithm = Digest::MD5, force = false)
(!force  @digest) ||
  @digest = algorithm.digest([ATTRIBUTE_NODE].pack(N) +
 DOM.tou16(nodeName) + \0\0 + 
DOM.tou16(nodeValue))
  end
end

class NamedNodeMap
  include Enumerable
end

class NodeList
  include Enumerable
end

class Element
  def getDigest(algorithm = Digest::MD5, force = false)
return @digest if (!force  @digest)
attr = attributes
children = childNodes
attr_digests = 
children_digests = 
if attr
  attr_array = attr.sort {|a, b|
DOM.tou16(a.nodeName) = DOM.tou16(b.nodeName)}
  attr_array.each {|a|
attr_digests  a.getDigest(algorithm, force)
  }
end
children_num = 0
children.each {|c|
  next if c.nodeType == COMMENT_NODE
  children_num += 1
  children_digests  c.getDigest(algorithm, force)
}
@digest = algorithm.digest([ELEMENT_NODE].pack(N) +
   DOM.tou16(nodeName) +
   \0\0 +
   [attr.length].pack(N) +
   attr_digests +
   [children_num].pack(N) +
   children_digests)
  end
end

  end
end


pgp4Zn2tNPX4L.pgp
Description: PGP signature


Bug#606000: libmail-spf-query-perl: Incorrect query results with IPv6 addresses; should warn about missing IPv6 support and/or fail graciously

2010-12-21 Thread Devin Carraway
On Sun, Dec 19, 2010 at 12:35:32PM +0100, gregor herrmann wrote:
 Right, I set #607472 to grave under the assumption that we want to
 drop libmail-spf-query-perl which would leave qpsmtpd without a
 dependency.
 
 I'm cc'ing the release team to get an opinion if this plan is ok.

I've deployed a production instance of qpsmtpd 0.84-1 with the SPF plugin
taken from upstream git and libmail-spf 2.005-1.  No immediate trouble
observed, but I'll let it run a couple of days to see.

The upstream git SPF plugin and the one from the 0.84 release are
config-compatible, so this won't require patching of live configs.  There are
two config settings that will cease to have any effect (trusted forwarded
accreditation and best-guess processing, both nonstandard/legacy features
unsupported by Mail::SPF).  The existence of one of those two settings was
documented in Lenny's qpsmtpd, so this should also get a config update to
remove the mention of it.

Based on initial findings and assuming a problem-free test period, I'd support
shipping 0.84 with the backported plugin if the release team agrees.


Devin

-- 
Devin  \ aqua(at)devin.com, IRC:Requiem; http://www.devin.com
Carraway \ 1024D/E9ABFCD2: 13E7 199E DD1E 65F0 8905 2E43 5395 CA0D E9AB FCD2


signature.asc
Description: Digital signature


Bug#607368: Please decide how kernel ABI should be managed

2010-12-21 Thread Julien BLACHE
Julien BLACHE jbla...@debian.org wrote:

Hi,

 Furthermore it is indeed quite unclear if said company is not effectively
 violating GPL and several core dev do indeed think so.

 Uh? [citation needed] please, especially given VMware modules ship as
 source although I can't remember their licensing terms right now.

I've done that now and all the modules are GPL. There goes your claim.

JB.

-- 
 Julien BLACHE - Debian  GNU/Linux Developer - jbla...@debian.org 
 
 Public key available on http://www.jblache.org - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 



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



Bug#606706: netams: installation fails

2010-12-21 Thread Hideki Yamane
Hi,

 It seems a bug in debian/netams.config file, it calls db_input without || 
true,
 so it returns 30.


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane



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



Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Daniel Baumann

Package: ifupdown
Severity: serious
Tag: patch

Hi,

if dependency based booting is enabled, then S02mountdevsubfs.sh is 
started *after* S08ifupdown, which means that /etc/network/run - 
/dev/shm/network that gets created with S08ifupdown is effectively 
removed again.


this in turn makes ifupdown fail as it cannot write to 
/etc/network/run/ifstate (which would reside in /dev/shm/network/ifstate).


as a concequence, there is no network at all, which is a serious bug.

i can reproduce this problem with all bootstrapped chroots using 
different virtualization technologies (e.g. lxc or kvm), but it's not 
related to the virtualization.


the solution is to have S02mountdevsubfs.sh being started *before* 
S08ifupdown, by making it depend on mountdevsubfs. a patch will follow 
once i've got the bug number.


Regards,
Daniel

--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Daniel Baumann

attaching patch.

--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
From 3e436692a6e2ef324c08ae2a179cf8a5db23c120 Mon Sep 17 00:00:00 2001
From: Daniel Baumann daniel.baum...@progress-technologies.net
Date: Tue, 21 Dec 2010 12:51:13 +0100
Subject: [PATCH] Adding missing depends to mountdevsubfs in ifupdown initscript (Closes: #607713).

---
 debian/ifupdown.init |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/ifupdown.init b/debian/ifupdown.init
index a6aab3e..31b0086 100644
--- a/debian/ifupdown.init
+++ b/debian/ifupdown.init
@@ -1,7 +1,7 @@
 #!/bin/sh -e
 ### BEGIN INIT INFO
 # Provides:  ifupdown
-# Required-Start:ifupdown-clean
+# Required-Start:mountdevsubfs ifupdown-clean
 # Required-Stop: $local_fs
 # Default-Start: S
 # Default-Stop:  0 6
-- 
1.7.2.3



Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Julien Cristau
On Tue, Dec 21, 2010 at 12:43:39 +0100, Daniel Baumann wrote:

 Package: ifupdown
 Severity: serious
 Tag: patch
 
 Hi,
 
 if dependency based booting is enabled, then S02mountdevsubfs.sh is
 started *after* S08ifupdown, which means that /etc/network/run -
 /dev/shm/network that gets created with S08ifupdown is effectively
 removed again.
 
 this in turn makes ifupdown fail as it cannot write to
 /etc/network/run/ifstate (which would reside in
 /dev/shm/network/ifstate).
 
sounds to me like the ifstate file should be in /lib/init/rw, not
/dev/shm.  Which would solve this for free, afaict?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Julien Cristau
On Tue, Dec 21, 2010 at 12:43:39 +0100, Daniel Baumann wrote:

 Package: ifupdown
 Severity: serious
 Tag: patch
 
 Hi,
 
 if dependency based booting is enabled, then S02mountdevsubfs.sh is
 started *after* S08ifupdown, which means that /etc/network/run -
 /dev/shm/network that gets created with S08ifupdown is effectively
 removed again.
 
So, err.

/etc/rcS.d/S17ifupdown:# Required-Start:ifupdown-clean
/etc/rcS.d/S10ifupdown-clean:# Required-Start:checkroot
/etc/rcS.d/S08checkroot.sh:# Required-Start:mountdevsubfs hostname

How do you manage to get mountdevsubfs started after ifupdown?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Sven Joachim
On 2010-12-21 12:43 +0100, Daniel Baumann wrote:

 Package: ifupdown
 Severity: serious
 Tag: patch

 Hi,

 if dependency based booting is enabled, then S02mountdevsubfs.sh is
 started *after* S08ifupdown, which means that /etc/network/run - 
 /dev/shm/network that gets created with S08ifupdown is effectively
 removed again.

I don't see how this can happen, unless you have overridden the standard
LSB headers.

 this in turn makes ifupdown fail as it cannot write to
 /etc/network/run/ifstate (which would reside in
 /dev/shm/network/ifstate).

 as a concequence, there is no network at all, which is a serious bug.

 i can reproduce this problem with all bootstrapped chroots using
 different virtualization technologies (e.g. lxc or kvm), but it's not
 related to the virtualization.

 the solution is to have S02mountdevsubfs.sh being started *before*
 S08ifupdown, by making it depend on mountdevsubfs.

It already depends on it via the dependency chain
ifupdown - ifupdown-clean - checkroot - mountdevsubfs.

Sven



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



Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Daniel Baumann

On 12/21/2010 01:22 PM, Sven Joachim wrote:

It already depends on it via the dependency chain
ifupdown -  ifupdown-clean -  checkroot -  mountdevsubfs.


no checkroot, see #601001.

--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Bug#605615: [PATCH] Fix gettext quotation in util/grub.d

2010-12-21 Thread Colin Watson
http://bugs.debian.org/605615

This happens when the system shell is bash rather than dash.  The behaviour
of printf when the format string contains the character sequence \' is
unspecified.

Adding an extra layer of quotation and making sure that everything that uses
it goes through printf (so that that extra layer is consistently removed) is
easy.  I added a gettext_printf function to help with this, which is briefer
and involves fewer nested layers of open-coded quotation.

The tricky bit is making sure that xgettext understands what's going on!
Adding --keyword=gettext_printf is obvious, but I noticed along the way
that we weren't setting c-format flags so that translations were checked
for the right number of %s entries and the like.  I tried adding
--flag=gettext_quoted:1:c-format --flag=gettext_printf:1:c-format, but
it turns out that xgettext refuses to include c-format flags for strings
it extracted from a shell file.  Whoops.  Since we already had a
modified version of po/Makefile.in.in, I changed it a bit further to fix
things up with sed.

Finally, xgettext refuses to extract strings from here-documents (which
I think is probably a bug, and if I can manage to write a reduced test
case for it I'll report it to the gettext maintainers).  Thus, I
extracted translatable strings from here-documents and used a temporary
variable for them instead.

2010-12-21  Colin Watson  cjwat...@ubuntu.com

* util/grub-mkconfig_lib.in (gettext_quoted): Add clarifying
comment.  Add an extra layer of quotation, requiring the output of
this function to be used in a printf format string.
(gettext_printf): New function.
* util/grub.d/10_hurd.in: Use gettext_printf where appropriate.
Extract translatable strings from here-documents and use a temporary
variable instead, so that xgettext can find them.
* util/grub.d/10_kfreebsd.in: Likewise.
* util/grub.d/10_linux.in: Likewise.
* util/grub.d/20_linux_xen.in: Likewise.

* po/grub.d.sed: New file.
* po/Makefile.in.in ($(DOMAIN).pot-update): Extract gettext_printf
arguments.  Set c-format flags on all strings extracted from
util/grub.d/ (xgettext refuses to include these itself for strings
it extracted from a shell file, but these really are c-format).

=== modified file 'po/Makefile.in.in'
--- po/Makefile.in.in   2010-09-20 23:09:23 +
+++ po/Makefile.in.in   2010-12-21 12:05:05 +
@@ -173,7 +173,8 @@ $(DOMAIN).pot-update: $(POTFILES) $(srcd
  --files-from=$(srcdir)/POTFILES-shell.in \
  --copyright-holder='$(COPYRIGHT_HOLDER)' \
  --msgid-bugs-address=$$msgid_bugs_address \
- --join-existing --language=Shell --keyword=gettext_quoted \
+ --join-existing --language=Shell \
+ --keyword=gettext_quoted --keyword=gettext_printf \
;; \
  *) \
$(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
@@ -183,10 +184,13 @@ $(DOMAIN).pot-update: $(POTFILES) $(srcd
  --package-name=$${package_g...@package@ \
  --package-version='@VERSION@' \
  --msgid-bugs-address=$$msgid_bugs_address \
- --join-existing --language=Shell --keyword=gettext_quoted \
+ --join-existing --language=Shell \
+ --keyword=gettext_quoted --keyword=gettext_printf \
;; \
esac
test ! -f $(DOMAIN).po || { \
+ sed -f grub.d.sed  $(DOMAIN).po  $(DOMAIN).1po  \
+ mv $(DOMAIN).1po $(DOMAIN).po; \
  if test -f $(srcdir)/$(DOMAIN).pot; then \
sed -f remove-potcdate.sed  $(srcdir)/$(DOMAIN).pot  
$(DOMAIN).1po  \
sed -f remove-potcdate.sed  $(DOMAIN).po  $(DOMAIN).2po  \

=== added file 'po/grub.d.sed'
--- po/grub.d.sed   1970-01-01 00:00:00 +
+++ po/grub.d.sed   2010-12-21 12:02:27 +
@@ -0,0 +1,2 @@
+/^#: util\/grub\.d\//a\
+#, c-format

=== modified file 'util/grub-mkconfig_lib.in'
--- util/grub-mkconfig_lib.in   2010-09-15 12:46:53 +
+++ util/grub-mkconfig_lib.in   2010-12-21 12:13:33 +
@@ -187,8 +187,20 @@ version_find_latest ()
   echo $a
 }
 
+# One layer of quotation is eaten by , the second by sed, and the third by
+# printf; so this turns ' into \'.  Note that you must use the output of
+# this function in a printf format string.
 gettext_quoted () {
-  $gettext $@ | sed s/'/'''/g
+  $gettext $@ | sed s/'/'''/g
+}
+
+# Run the first argument through gettext_quoted, and then pass that and all
+# remaining arguments to printf.  This is a useful abbreviation and tends to
+# be easier to type.
+gettext_printf () {
+  local format=$1
+  shift
+  printf $(gettext_quoted $format) $@
 }
 
 uses_abstraction () {

=== modified file 'util/grub.d/10_hurd.in'
--- util/grub.d/10_hurd.in  2010-11-01 11:49:40 +
+++ util/grub.d/10_hurd.in  2010-12-21 11:45:56 +
@@ -81,14 +81,16 @@ do
 menuentry 

Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Daniel Baumann

retitle 607713 ifupdown-clean: use explicit depends to not break network
tag 607713 sid
thanks

updated patch attached.

--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/
From 1c432d715ce7120253f1c175fc42a1945c04efa8 Mon Sep 17 00:00:00 2001
From: Daniel Baumann daniel.baum...@progress-technologies.net
Date: Tue, 21 Dec 2010 12:51:13 +0100
Subject: [PATCH] Adding explicit depends in ifupdown-clean to avoid checkroot dependency (Closes: #607713).

---
 debian/ifupdown-clean.init |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/ifupdown-clean.init b/debian/ifupdown-clean.init
index fa89bc3..1774205 100644
--- a/debian/ifupdown-clean.init
+++ b/debian/ifupdown-clean.init
@@ -1,7 +1,7 @@
 #!/bin/sh
 ### BEGIN INIT INFO
 # Provides:  ifupdown-clean
-# Required-Start:checkroot
+# Required-Start:mountdevsubfs hostname
 # Required-Stop: 
 # Default-Start: S
 # Default-Stop:
-- 
1.7.2.3



Processed: Re: Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

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

 retitle 607713 ifupdown-clean: use explicit depends to not break network
Bug #607713 [ifupdown] ifupdown: wrong depends in ifupdown-clean initscript 
breaks networking
Changed Bug title to 'ifupdown-clean: use explicit depends to not break 
network' from 'ifupdown: wrong depends in ifupdown-clean initscript breaks 
networking'
 tag 607713 sid
Bug #607713 [ifupdown] ifupdown-clean: use explicit depends to not break network
Added tag(s) sid.
 thanks
Stopping processing here.

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


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



Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Julien Cristau
severity 607713 normal
kthxbye

On Tue, Dec 21, 2010 at 13:26:19 +0100, Daniel Baumann wrote:

 On 12/21/2010 01:22 PM, Sven Joachim wrote:
 It already depends on it via the dependency chain
 ifupdown -  ifupdown-clean -  checkroot -  mountdevsubfs.
 
 no checkroot, see #601001.
 
Then you get to keep the pieces.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

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

 severity 607713 normal
Bug #607713 [ifupdown] ifupdown-clean: use explicit depends to not break network
Severity set to 'normal' from 'serious'

 kthxbye
Stopping processing here.

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


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



Processed: Re: Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

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

 severity 607713 serious
Bug #607713 [ifupdown] ifupdown-clean: use explicit depends to not break network
Severity set to 'serious' from 'normal'

 thanks
Stopping processing here.

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


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



Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Julien Cristau
On Tue, Dec 21, 2010 at 13:41:37 +0100, Daniel Baumann wrote:

 severity 607713 serious
 thanks
 
 On 12/21/2010 01:38 PM, Julien Cristau wrote:
 Then you get to keep the pieces.
 
 it remains serious, although sid only (which i tagged before).
 
Since when is i broke my system and now it doesn't work serious?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#606785: stumpwm: package fails to upgrade properly from lenny

2010-12-21 Thread Desmond O. Chang
Hi gregor,

On Mon, Dec 20, 2010 at 23:28, gregor herrmann gre...@debian.org wrote:
 On Mon, 20 Dec 2010 23:15:55 +0800, Desmond O. Chang wrote:

  What surprises me is that common-lisp-controller _does_ depend on
  adduser. Do we need a Pre-Depends here since adduser is used in the
  .preinst?
 Or moving adduser to 'postinst configure'?  Which one is right?

 Oh yes, that sounds much better.
 Unless the user is already needed earlier, but the .preinst seems to
 only rm old stuff, AFAICS.

I've uploaded 7.6 to mentors.  Could you sponsor it?

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/c/common-lisp-controller
- Source repository: deb-src http://mentors.debian.net/debian unstable
main contrib non-free
- dget 
http://mentors.debian.net/debian/pool/main/c/common-lisp-controller/common-lisp-controller_7.6.dsc

Thanks,
Des



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



Bug#606785: stumpwm: package fails to upgrade properly from lenny

2010-12-21 Thread gregor herrmann
On Tue, 21 Dec 2010 21:01:37 +0800, Desmond O. Chang wrote:

  Or moving adduser to 'postinst configure'?  Which one is right?
  Oh yes, that sounds much better.
  Unless the user is already needed earlier, but the .preinst seems to
  only rm old stuff, AFAICS.
 I've uploaded 7.6 to mentors.  Could you sponsor it?

Done.

Thanks for your work!
 

Cheers,
gregor

-- 
 .''`.   http://info.comodo.priv.at/ -- GPG key IDs: 0x8649AA06, 0x00F3CFE4
 : :' :  Debian GNU/Linux user, admin,  developer - http://www.debian.org/
 `. `'   Member of VIBE!AT  SPI, fellow of Free Software Foundation Europe
   `-NP: Rolling Stones: Everlasting


signature.asc
Description: Digital signature


Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Julien Cristau
On Tue, Dec 21, 2010 at 13:44:54 +0100, Julien Cristau wrote:

 On Tue, Dec 21, 2010 at 13:41:37 +0100, Daniel Baumann wrote:
 
  severity 607713 serious
  thanks
  
  On 12/21/2010 01:38 PM, Julien Cristau wrote:
  Then you get to keep the pieces.
  
  it remains serious, although sid only (which i tagged before).
  
 Since when is i broke my system and now it doesn't work serious?
 
I could agree with this being a grave bug in lxc, though, if you wanted
to make that case.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: tagging 605615

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

 # Automatically generated email from bts, devscripts version 2.10.35lenny7
 tags 605615 pending
Bug #605615 [grub-pc] grub-pc: Error in catalan translation that makes system 
unbootable
Bug #607434 [grub-pc] [grub-pc] can not start linux
Added tag(s) pending.
Added tag(s) pending.

End of message, stopping processing here.

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


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



Bug#607142: overwrites custom plymouth configuration

2010-12-21 Thread Yves-Alexis Perez
In the end, as I don't have a better idea, I'll just drop the postinst
call and just add a note in README.Debian on how to enable the theme.

The package is mostly ready, waiting for the last fixes for #607458 to
be pushed.

Regards,
-- 
Yves-Alexis


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


Bug#607142: overwrites custom plymouth configuration

2010-12-21 Thread Daniel Baumann

On 12/21/2010 02:34 PM, Yves-Alexis Perez wrote:

In the end, as I don't have a better idea, I'll just drop the postinst
call and just add a note in README.Debian on how to enable the theme.


that sounds reasonable given the circumstances.

sorry for not replying earlier.. i'll see to fix it in sid soon with an 
alternative, but it's probably not suitable for squeeze i guess.


--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Processed: Re: Bug#568062: Prompted for changed configuration file /etc/lisp-config.lisp

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

 forcemerge 601957 568062
Bug#601957: common-lisp-controller: config file conflict when upgrading from 
lenny
Bug#568062: /etc/lisp-config.lisp: Prompted for changed configuration file 
/etc/lisp-config.lisp
Forcibly Merged 568062 601957.

 thanks
Stopping processing here.

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


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



Bug#607732: opensc: buffer overflow with rogue cards

2010-12-21 Thread Jamie Strandboge
Package: opensc
Version: 0.11.13-1
Severity: grave
Tags: patch security
Justification: user security hole
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu natty ubuntu-patch



In Ubuntu, the attached patch was applied to achieve the following:

  * SECURITY UPDATE: specially crafted cards may be able to execute code.
- debian/patches/min-max.patch: Add MIN and MAX macros for last patch
- debian/patches/buffer-overflow.patch: Fix potential buffer overflow
  by rogue cards. (LP: #692483)

This is upstream changesets:
https://www.opensc-project.org/opensc/changeset/4912
https://www.opensc-project.org/opensc/changeset/4913

This was originally submitted as an Ubuntu bug in:
https://bugs.launchpad.net/ubuntu/+source/opensc/+bug/692483

This does not currently have a CVE assigned. Thanks for considering the patch.


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

Kernel: Linux 2.6.37-10-generic (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru opensc-0.11.13/debian/changelog opensc-0.11.13/debian/changelog
diff -Nru opensc-0.11.13/debian/patches/buffer-overflow.patch opensc-0.11.13/debian/patches/buffer-overflow.patch
--- opensc-0.11.13/debian/patches/buffer-overflow.patch	1969-12-31 18:00:00.0 -0600
+++ opensc-0.11.13/debian/patches/buffer-overflow.patch	2010-12-21 08:02:31.0 -0600
@@ -0,0 +1,48 @@
+## Description: Fix buffer overflow
+## Origin: upstream, https://www.opensc-project.org/opensc/changeset/4913
+## Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/opensc/+bug/692483
+Index: opensc-0.11.13/src/libopensc/card-acos5.c
+===
+--- opensc-0.11.13.orig/src/libopensc/card-acos5.c	2010-12-21 09:50:31.963758002 +0100
 opensc-0.11.13/src/libopensc/card-acos5.c	2010-12-21 09:50:28.265608001 +0100
+@@ -140,8 +140,8 @@
+ 	/*
+ 	 * Cache serial number.
+ 	 */
+-	memcpy(card-serialnr.value, apdu.resp, apdu.resplen);
+-	card-serialnr.len = apdu.resplen;
++	memcpy(card-serialnr.value, apdu.resp, MIN(apdu.resplen, SC_MAX_SERIALNR)); 
++ 	   card-serialnr.len = MIN(apdu.resplen, SC_MAX_SERIALNR); 
+ 
+ 	/*
+ 	 * Copy and return serial number.
+Index: opensc-0.11.13/src/libopensc/card-atrust-acos.c
+===
+--- opensc-0.11.13.orig/src/libopensc/card-atrust-acos.c	2010-12-21 09:50:31.903788002 +0100
 opensc-0.11.13/src/libopensc/card-atrust-acos.c	2010-12-21 09:50:28.265608001 +0100
+@@ -853,8 +853,8 @@
+ 	if (apdu.sw1 != 0x90 || apdu.sw2 != 0x00)
+ 		return SC_ERROR_INTERNAL;
+ 	/* cache serial number */
+-	memcpy(card-serialnr.value, apdu.resp, apdu.resplen);
+-	card-serialnr.len = apdu.resplen;
++	memcpy(card-serialnr.value, apdu.resp, MIN(apdu.resplen, SC_MAX_SERIALNR)); 
++ 	card-serialnr.len = MIN(apdu.resplen, SC_MAX_SERIALNR); 
+ 	/* copy and return serial number */
+ 	memcpy(serial, card-serialnr, sizeof(*serial));
+ 	return SC_SUCCESS;
+Index: opensc-0.11.13/src/libopensc/card-starcos.c
+===
+--- opensc-0.11.13.orig/src/libopensc/card-starcos.c	2010-12-21 09:50:32.043718002 +0100
 opensc-0.11.13/src/libopensc/card-starcos.c	2010-12-21 09:50:28.265608001 +0100
+@@ -1289,8 +1289,8 @@
+ 	if (apdu.sw1 != 0x90 || apdu.sw2 != 0x00)
+ 		return SC_ERROR_INTERNAL;
+ 	/* cache serial number */
+-	memcpy(card-serialnr.value, apdu.resp, apdu.resplen);
+-	card-serialnr.len = apdu.resplen;
++	memcpy(card-serialnr.value, apdu.resp, MIN(apdu.resplen, SC_MAX_SERIALNR)); 
++	card-serialnr.len = MIN(apdu.resplen, SC_MAX_SERIALNR); 
+ 	/* copy and return serial number */
+ 	memcpy(serial, card-serialnr, sizeof(*serial));
+ 	return SC_SUCCESS;
diff -Nru opensc-0.11.13/debian/patches/min-max.patch opensc-0.11.13/debian/patches/min-max.patch
--- opensc-0.11.13/debian/patches/min-max.patch	1969-12-31 18:00:00.0 -0600
+++ opensc-0.11.13/debian/patches/min-max.patch	2010-12-21 08:02:31.0 -0600
@@ -0,0 +1,39 @@
+## Description: Add MIN and MAX macros for buffer overflow patch
+## Origin: upstream, https://www.opensc-project.org/opensc/changeset/4912
+## Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/opensc/+bug/692483
+Index: opensc-0.11.13/src/libopensc/internal.h
+===
+--- opensc-0.11.13.orig/src/libopensc/internal.h	2010-12-21 09:51:32.763343000 +0100
 opensc-0.11.13/src/libopensc/internal.h	2010-12-21 09:51:29.894778002 +0100
+@@ -48,6 +48,13 @@
+ #else
+ #define msleep(t)	Sleep(t)
+ #define sleep(t)	Sleep((t) * 1000)
++#endif 
++
++#ifndef MAX 
++#define MAX(x, y) (((x)  (y)) ? (x) : (y)) 
++#endif 
++#ifndef MIN 
++#define MIN(x, y) (((x)  (y)) ? (x) : (y)) 
+ #endif
+ 
+ struct 

Bug#607713: ifupdown: wrong depends in ifupdown-clean initscript breaks networking

2010-12-21 Thread Daniel Baumann

On 12/21/2010 02:15 PM, Julien Cristau wrote:

I could agree with this being a grave bug in lxc, though, if you wanted
to make that case.


checkroot is not suitable at all in lxc (or any container based 
virtualization), therefore it should be disabled (otherwise booting a 
container hangs for several minutes until checkroot times out). the 
right solution is not to fix checkrootfs, but to just not run it in the 
first place.


that, with current ifupdown, equates to having no network. which is a 
bug in ifupdown that is relaying on indirect depends on mountdevsubfs 
rather than direct depends.


--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Bug#607662: ncurses-base: backspace key deletes forwards on the kFreeBSD console

2010-12-21 Thread Robert Millan
2010/12/21 Sven Joachim svenj...@gmx.de:
 I suppose that ncurses-base would ship the terminfo entry for it, and
 kfreebsd-image-* packages need to depend on an ncurses-base version that
 has this terminfo entry, right?  Any suggestions for the name?

Given that we might want to try merge these changes upstream
(FreeBSD) someday, I suggest that we consensuate a name with
them.

-- 
Robert Millan



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



Bug#605065: Bug#607662: ncurses-base: backspace key deletes forwards on the kFreeBSD console

2010-12-21 Thread Robert Millan
2010/12/21 Petr Salinger petr.salin...@seznam.cz:

 I propose revert changes in kernel and kbdcontrol and ask for ignore tag
 for this technology preview release.

I second this.  This would make it easier to coordinate with
upstream and at least agree on what name to use.  Release
pressure wouldn't play well with that.

-- 
Robert Millan



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



Bug#607713: ifupdown: wrong depends in ifupdown-clean, initscript breaks networking

2010-12-21 Thread Steven Chamberlain
Hi,

Just wanted to suggest an idea;  could lxc generate a dummy 'lxcroot'
initscript containing Provides: checkroot and the same dependencies as
the real 'checkroot'?  That should fill the 'gap' in the dependency
chain, and would also make it clear that lxc and checkroot directly
conflict.

Since checkroot is part of initscripts, being a required package in the
base system, and considering a remote risk of breaking something on
'clean' systems during the deep freeze for Squeeze, it would think it a
good idea to prefer to fix this in lxc.

At the moment, it looks to me like the initscripts in the base system
don't depend on implied (indirect) child dependencies.  Perhaps
deliberately, or else the dependency graph would become more complex and
probably more difficult to maintain in the long run.

p.s., I made a pretty graph of this:  http://pyro.eu.org/stuff/rcS.png

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org



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



Bug#607458: desktop-base: debian/copyright file is outdated

2010-12-21 Thread Ulrich Hansen

 * there does not seem to be any clear copyright notice
   (with years and copyright holders) and license for
   debian-security.xcf, which is derived from the DOUL
   (under the Expat/MIT license) and from a GNOME icon
   (under which license?!?)


“created” and “updated” looks to me like pretty clear, though years 
are

missing. Will ping initial author to get some information.



I did a short Web research. If you want it more precisely, write:

--

The  debian-security.xcf  file  (and  the resulting  .png  file)  was 
created
by Colin Walters walt...@debian.org in 2002  and updated by Ulrich 
Hansen
uhan...@mainz-online.de in 2010. They are based on the Debian “Open 
Use” (without

“Debian” word) logo and the lock-button from GNOME 1.4.

---

I am not _absolutely_ sure about Colin Walters creation date of 
debian-security.xcf. But I guessed that it would be 2002, as according 
to the header of the ./debian/copyright file he debianized the package 
in 2002 and that was exactly when the icon from Gnome 1.4 (Woody) was in 
use.


The lock icon comes from Gnome 1.4, look at the picture in the 
handbook:

http://www.linuxselfhelp.com/gnome/users-guide/specialobjects.html

Hope this helps

Ulrich Hansen




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



Bug#607737: numconv: broken on 64-bit architectures

2010-12-21 Thread Jakub Wilk

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

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


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


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

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

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

--
Jakub Wilk



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



Bug#603428: snort: prompting due to modified conffiles which where not modified by the user

2010-12-21 Thread Javier Fernandez-Sanguino
Becas right now, with the current code, changes gets overwritten by debconf
on package (re)configuration.

Just like it previously happened with a given section of the config file.

Regards

Javier

El 20/12/2010 22:22, Julien Cristau jcris...@debian.org escribió:

On Mon, Dec 20, 2010 at 22:20:35 +0100, Javier Fernandez-Sanguino wrote:

 Which warning? The NEWS ...
The config file.  Why would you want to discourage editing that
directly?

Cheers,
Julien

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

iQIcBAEBCAAGBQJND8kjAAoJEDEBgAUJBeQMlr4QANWdboAB2S5DBNj/b1eSkigo
0g+N68HaSxhdYNYKnmJc4RwATGFcwHkhSGYuX9VmnbVZHpgdggQHfBqJs1Ck7HB/
UI09oy+qDJ3ucXcYDM3SQ6MAY2polHYD4489hiFcdzPiXT2XImfMD4KFED/Mbks0
aqL0ezNxdum2OaMqJQFN4pYnlCkKrxjyJ4xmswNQathBh6bbGbhiuBO29vADZ17L
dk/PTLLF7uiibkQ5zgDxSJoCJPVI+rT48f4+QUbP21lX+LWDMkpi1PR2mfBzk2La
BB8U/ai0DVmlsICIa+UTs4ft3cDMUHHve7xDeQUsFXn3TiujIv1RYgJ/QTEQkMQh
IQpvWIEgQ7KyRp8sOdaBGvrqUl1JoL18n61FFdVA6YP3mVv+Sdy9QHeC1qjRqp3k
QSBiOAsBAkTMqF/lByBaE2T86pvlTFZ0z01Uzi5rnge84sd+VxzUhGpNSIpkJYvq
TXedFtKAEVDWzVxbR1K7jZQSuiDvDu1TKvzcHcLm9w3Z3hcqByPyxJ/yduD/gWX3
vMI6BKbfMQtjoiGiuWKYBkEU+6Gr2w6o4x/NswrE93/EauRp7QKQMi8f5cBSe5Ta
Ub+ZL1JHikvVjZih9xCfGLzm03KoH6qcp/W3gznEK9m32H0a58/vfADlKAfQU/pY
gQkfQG3mu48iG4RaoNjo
=YlJe
-END PGP SIGNATURE-


Bug#605484: libapache2-mod-fcgid in lenny vulnerable to hole for weeks

2010-12-21 Thread John Goerzen

Hi folks,

I reported bug #605484 regarding a security hole in lenny.  I believe 
the security team was CC'd.


Prior to my report, 
http://security-tracker.debian.org/tracker/CVE-2010-3872 said that 
Debian/stable was not vulnerable.  I also notified them to correct this 
issue.


My question here is: who's got the ball on security issues?  It seems 
that this issue didn't trigger any bugs being created or any bugs being 
filed in Debian when it came out.  When I did what I thought was 
appropriate, it also didn't trigger much.  The maintainer was interested 
in it, but AFAICT there are, as yet, no new packages.


This is not an attack on any person/team, just a question about whether 
we have an organizational problem we need to correct.


Thanks,

-- John Goerzen



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



Bug#603428: snort: prompting due to modified conffiles which where not modified by the user

2010-12-21 Thread Julien Cristau
On Tue, Dec 21, 2010 at 17:07:09 +0100, Javier Fernandez-Sanguino wrote:

 Becas right now, with the current code, changes gets overwritten by debconf
 on package (re)configuration.
 
That sounds like a serious bug in the maintainer scripts then.  Why not
fix that?

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#560963: cl-cffi: Loading cffi fails

2010-12-21 Thread Desmond O. Chang
forcemerge 560781 560963
thanks

This bug should be closed since it's the same as #560781.



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



Processed: Re: Bug#607673: gnucash: Left arrow, right arrow and backspace keys don't work in register

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

 severity 607673 serious
Bug #607673 [gnucash] gnucash: Left arrow, right arrow and backspace keys don't 
work in register
Severity set to 'serious' from 'important'

 tags 607673 + moreinfo help
Bug #607673 [gnucash] gnucash: Left arrow, right arrow and backspace keys don't 
work in register
Added tag(s) help and moreinfo.
 thanks
Stopping processing here.

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


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



Bug#560963: marked as done (cl-cffi: Loading cffi fails)

2010-12-21 Thread Debian Bug Tracking System
Your message dated Wed, 22 Dec 2010 00:44:50 +0800
with message-id aanlktinqfj9goj1xesk3o7+vynzoz-ktpzw-k34z9...@mail.gmail.com
and subject line Re: Bug#560963: cl-cffi: Loading cffi fails
has caused the Debian Bug report #560963,
regarding cl-cffi: Loading cffi fails
to be marked as done.

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

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


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

Package: cl-cffi
Version: 20090823-2
Justification: renders package unusable
Severity: grave

* (asdf:operate 'asdf:load-op 'cffi)

debugger invoked on a ASDF:MISSING-COMPONENT in thread #THREAD  
initial thread RUNNING {AB16701}:

  component cffi not found


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.25.4dedibox-r9-smp-x32
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages cl-cffi depends on:
ii  cl-alexandria   0.0.20091101-1   A collection of portable  
Common Li
ii  cl-babel0.3.0+20090601-2 A charset encoding/ 
decoding librar
ii  cl-trivial-features 0.6-1An abstraction layer for  
the *feat
ii  common-lisp-controller  6.20 Common Lisp source and  
compiler ma


cl-cffi recommends no packages.

cl-cffi suggests no packages.

-- no debconf information



---End Message---
---BeginMessage---
Package: common-lisp-controller
Version: 6.20

---End Message---


Bug#607713: ifupdown: wrong depends in ifupdown-clean, initscript breaks networking

2010-12-21 Thread Daniel Baumann

On 12/21/2010 04:29 PM, Steven Chamberlain wrote:

Just wanted to suggest an idea;  could lxc generate a dummy 'lxcroot'
initscript containing Provides: checkroot and the same dependencies as
the real 'checkroot'?  That should fill the 'gap' in the dependency
chain, and would also make it clear that lxc and checkroot directly
conflict.


no; the real solution is to just not run checkroot and disable it with 
update-rc.d. that is what an init system is good for, disabling/enabling 
things, no need for ugly hacks of diverting things.



Since checkroot is part of initscripts, being a required package in the
base system, and considering a remote risk of breaking something on
'clean' systems during the deep freeze for Squeeze, it would think it a
good idea to prefer to fix this in lxc.


it's not required to fix this specifically for squeeze (as lxc in 
squeeze is not much useful anyway). after squeeze, this should be fixed 
in ifupdown, hence the tag 'sid' to the bug.


--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/



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



Bug#607673: gnucash: Left arrow, right arrow and backspace keys don't work in register

2010-12-21 Thread Micha Lenk
severity 607673 serious
tags 607673 + moreinfo help
thanks

Hi Shannon,

thank you for your feedback on the Debian package for Gnucash.

Unfortunately I was not able to reproduce the mis-behaviour you described.
I have no problems to use the left arrow or right arrow keys when editing a
transaction.

The issue might somehow be related to the fix for Debian Bug #587298, which was
introduced in gnucash 2.2.9-6 to fix broken SCIM input methods. Can you please
re-triage your bug with a package built without the patch
10_fix_broken_SCIM_input_bug_587298? To do this you would need to download and
unpack the most recent source package of gnucash, remove the mentioned patch
from debian/patches/00list and build the package. Does the problem persist with
the resulting packages installed?

Regards,
Micha



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



Bug#510130: Error calculing volhdr partition boundaries on SGI disklabel

2010-12-21 Thread LaMont Jones
On Wed, Dec 08, 2010 at 09:05:06PM +0100, Moritz Muehlenhoff wrote:
 On Tue, Nov 30, 2010 at 11:43:45PM +0100, Moritz Muehlenhoff wrote:
  On Tue, Nov 30, 2010 at 03:42:11PM -0700, LaMont Jones wrote:
  That should be fine, thanks!
 What's the status?

fix-committed, one more bug to decide how/if to address, I'll make some
time this afternoon and upload in either case.

lamont



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



Bug#607458: desktop-base: debian/copyright file is outdated

2010-12-21 Thread Francesco Poli
On Tue, 21 Dec 2010 16:09:55 +0100 Ulrich Hansen wrote:

   * there does not seem to be any clear copyright notice
 (with years and copyright holders) and license for
 debian-security.xcf, which is derived from the DOUL
 (under the Expat/MIT license) and from a GNOME icon
 (under which license?!?)
 
  “created” and “updated” looks to me like pretty clear, though years 
  are
  missing. Will ping initial author to get some information.
 
 
  I did a short Web research. If you want it more precisely, write:
 
  --
 
  The  debian-security.xcf  file  (and  the resulting  .png  file)  was 
  created
  by Colin Walters walt...@debian.org in 2002  and updated by Ulrich 
  Hansen
  uhan...@mainz-online.de in 2010. They are based on the Debian “Open 
  Use” (without
  “Debian” word) logo and the lock-button from GNOME 1.4.
 
  ---
 
  I am not _absolutely_ sure about Colin Walters creation date of 
  debian-security.xcf. But I guessed that it would be 2002, as according 
  to the header of the ./debian/copyright file he debianized the package 
  in 2002 and that was exactly when the icon from Gnome 1.4 (Woody) was in 
  use.
 
  The lock icon comes from Gnome 1.4, look at the picture in the 
  handbook:
  http://www.linuxselfhelp.com/gnome/users-guide/specialobjects.html
 
  Hope this helps

Yes, I think it helps a lot!
Thank you very much!

Now we should try hard to find out the copyright notice and license for
that old GNOME 1.4 lock-button.

As an aside, I remember very well that lock-button: I used to use it on
the GNOME panel some 10 years ago on my GNOME 1.x desktop...
Unfortunately, I don't know who is the copyright holder and under which
precise license it was released.:-(


As an alternative strategy to solve this issue, I am currently
considering the possibility of creating a new debian-security.png from
scratch, based on Debian “Open Use” (without “Debian” word) logo and on
a public domain clipart, such as
http://www.openclipart.org/detail/33493
or maybe
http://www.openclipart.org/detail/32017
If this is considered a good idea, I could probably make an attempt
later this evening. Please let me know...


-- 
 http://www.inventati.org/frx/frx-gpg-key-transition-2010.txt
 New GnuPG key, see the transition document!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgpX51Y13Zvxf.pgp
Description: PGP signature


Bug#584942: Bug#583738: Bug#584942: by the way

2010-12-21 Thread Peter Gervai
Found: 9.00~dfsg-2~0jones1

 You posted above to my personal email address.

Yes.

 Please repost to the bugreport - and only there.  Thanks.

I will not post publicly private data, sorry.

But I'll send a mail that it's still won't work if you insist, without
the attachments.

Peter



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



Bug#594150: Possible curl t-p-u ?

2010-12-21 Thread Ramakrishnan Muthukrishnan
On Tue, Dec 21, 2010 at 5:27 AM, Neil Williams codeh...@debian.org wrote:

 I'm still dubious about this whole bug/patch - especially that this
 entire process has been only tested against a single setup, the bug
 only shows up in a single frontend and the bug has not had any input
 from the maintainer who has been otherwise active with uploads and
 fixes.

Hi,

I didn't respond to this bug because I don't really know curl or apt
internals enough to respond to it. I generally either raise such
things to upstream. Daniel  Stenberg (the curl upstream author) had
been very kind enough to respond directly to many such bug reports.

On this particular issue, I leave it to those of you who know apt and
curl internals better than me. I guess Daniel Stenberg may be the
right person to comment on this problem and comment on your patch.

Thanks
Ramakrishnan



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



Bug#607751: snort: Update gives current Snort configuration is invalid error and it will not start

2010-12-21 Thread GSR
Package: snort
Version: 2.8.5.2-3
Severity: grave
Justification: renders package unusable

After updating and with default configuration files the following
happens:

---8---
Configuring snort-common


Configuration error

The current Snort configuration is invalid and will prevent Snort starting up 
normally. Please review and correct it.

To diagnose an error in a Snort configuration file, use '/usr/sbin/snort -T -c 
file'.

Setting up snort (2.8.5.2-3) ...
Stopping Network Intrusion Detection System : snortNo running snort instance 
found ... (warning).
Starting Network Intrusion Detection System : snort (eth0 using 
/etc/snort/snort.conf ...ERROR: failed (check /var/log/daemon.log, 
/var/log/syslog and /var/log/snort/)) failed!
invoke-rc.d: initscript snort, action start failed.
dpkg: error processing snort (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up libva1 (1.0.4-1.3) ...
configured to not write apport reports
  Errors were encountered while processing:
 snort
E: Sub-process /usr/bin/dpkg returned an error code (1)
---8---

Trying the command to check the config gives:

---8---
# /usr/sbin/snort -T -c /etc/snort/snort.conf
Running in Test mode

--== Initializing Snort ==--
Initializing Output Plugins!
Initializing Preprocessors!
Initializing Plug-ins!
Parsing Rules file /etc/snort/snort.conf
PortVar 'HTTP_PORTS' defined :  [ 80 ]
PortVar 'SHELLCODE_PORTS' defined :  [ 0:79 81:65535 ]
PortVar 'ORACLE_PORTS' defined :  [ 1521 ]
PortVar 'FTP_PORTS' defined :  [ 21 ]
Tagged Packet Limit: 256
Loading dynamic engine /usr/lib/snort_dynamicengine/libsf_engine.so... done
Loading all dynamic preprocessor libs from 
/usr/lib/snort_dynamicpreprocessor/...
  Loading dynamic preprocessor library 
/usr/lib/snort_dynamicpreprocessor//libsf_ssl_preproc.so... done
  Loading dynamic preprocessor library 
/usr/lib/snort_dynamicpreprocessor//libsf_dns_preproc.so... done
  Loading dynamic preprocessor library 
/usr/lib/snort_dynamicpreprocessor//lib_sfdynamic_preprocessor_example.so... 
done
  Loading dynamic preprocessor library 
/usr/lib/snort_dynamicpreprocessor//libsf_smtp_preproc.so... done
  Loading dynamic preprocessor library 
/usr/lib/snort_dynamicpreprocessor//libsf_ssh_preproc.so... done
  Loading dynamic preprocessor library 
/usr/lib/snort_dynamicpreprocessor//libsf_dce2_preproc.so... done
  Loading dynamic preprocessor library 
/usr/lib/snort_dynamicpreprocessor//libsf_ftptelnet_preproc.so... done
  Loading dynamic preprocessor library 
/usr/lib/snort_dynamicpreprocessor//libsf_dcerpc_preproc.so... done
  Finished Loading all dynamic preprocessor libs from 
/usr/lib/snort_dynamicpreprocessor/
Frag3 global config:
Max frags: 65536
Fragment memory cap: 4194304 bytes
Frag3 engine config:
Target-based policy: FIRST
Fragment timeout: 60 seconds
Fragment min_ttl:   1
Fragment Problems: 1
Overlap Limit: 10
Min fragment Length: 0
Stream5 global config:
Track TCP sessions: ACTIVE
Max TCP sessions: 8192
Memcap (for reassembly packet storage): 8388608
Track UDP sessions: INACTIVE
Track ICMP sessions: INACTIVE
Log info if session memory consumption exceeds 1048576
Stream5 TCP Policy config:
Reassembly Policy: FIRST
Timeout: 30 seconds
Min ttl:  1
Maximum number of bytes to queue per session: 1048576
Maximum number of segs to queue per session: 2621
Reassembly Ports:
  21 client (Footprint) 
  23 client (Footprint) 
  25 client (Footprint) 
  42 client (Footprint) 
  53 client (Footprint) 
  80 client (Footprint) 
  110 client (Footprint) 
  111 client (Footprint) 
  135 client (Footprint) 
  136 client (Footprint) 
  137 client (Footprint) 
  139 client (Footprint) 
  143 client (Footprint) 
  445 client (Footprint) 
  513 client (Footprint) 
  514 client (Footprint) 
  1433 client (Footprint) 
  1521 client (Footprint) 
  2401 client (Footprint) 
  3306 client (Footprint) 
HttpInspect Config:
GLOBAL CONFIG
  Max Pipeline Requests:0
  Inspection Type:  STATELESS
  Detect Proxy Usage:   NO
  IIS Unicode Map Filename: /etc/snort/unicode.map
  IIS Unicode Map Codepage: 1252
DEFAULT SERVER CONFIG:
  Server profile: All
  Ports: 80 8080 8180 
  Server Flow Depth: 300
  Client Flow Depth: 300
  Max Chunk Length: 50
  Max Header Field Length: 0
  Max Number Header Fields: 0
  Inspect Pipeline Requests: YES
  URI Discovery Strict Mode: NO
  Allow Proxy Usage: NO
  Disable Alerting: NO
  Oversize Dir Length: 500
  Only inspect URI: NO
  Normalize HTTP Headers: NO
  Normalize HTTP Cookies: NO
  Ascii: YES alert: NO
  Double Decoding: YES alert: YES
  %U Encoding: YES alert: YES
  Bare Byte: YES alert: YES
  Base36: 

Bug#607458: desktop-base 6.0.4 upload

2010-12-21 Thread Francesco Poli
On Tue, 21 Dec 2010 10:39:31 +0100 Yves-Alexis Perez wrote:

 I'm gonna upload a new desktop-base today, fixing the various RC bugs
 still around.
 
 If you have something to include there, please say so *now*, I won't be
 able to work on it of the next few days.

I understand your lack of time and I sympathize with you: I am often in
a similar situation of spare time scarcity.
However, time constraints should not be a reason to fix bugs in an
incomplete manner: I will try hard to provide as much help as I
possibly can during this evening, but this bug report should not be
considered as closed, until all the issues are properly dealt with (of
course). 

 
 Check the svn and report back (preferably with patch) if you think
 something is missing.
 
 Especially, Josselin, if you could take care of the gnome-debian-sid
 artwork (either clarify the license or drop it completely), and
 Francesco if you could find out the various licensing issues you noted
 which remain?

What follows is a summary of the remaining issues in Rev 238
http://svn.debian.org/wsvn/debian-desktop/packages/trunk/desktop-base/?rev=238sc=1
as far as I can tell:


 * there does not seem to be any clear copyright notice
   (with years and copyright holders) and license for
   debian-security.xcf, which is derived from the DOUL
   (as correctly documented) and from a GNOME icon
   (under which license?!?)

   N.B.: Yves-Alexis Perez said that he would ping initial author to get
   some information.
   Ulrich Hansen provided additional information, but the copyright
   notice and license for the GNOME lock-button is still to be found.
   Now that I think of it: even the license for the resulting
   debian-security.xcf is yet to be specified...

   N.B.: an alternative approach could be to create a new
   debian-security.png from scratch, as I mentioned previously in
   http://bugs.debian.org/607458#65


 * we still have to find out the copyright and license for the GNOME
   foot logo

   N.B.: it seems that the GNOME foot Logo is released under the terms
   of the LGPL v2.1 or later; at least that's what is stated on
   
http://commons.wikimedia.org/w/index.php?title=File:Gnomelogo.svgoldid=39892275
   However, I would like to find more official information about the
   license; moreover, I still cannot find a proper copyright notice...


 * we still have to find out the copyright and license for the KDE logo

   N.B.: the KDE Official Oxygen Logo seems to be released under the terms
   of the LGPL v2.1 or later, see http://www.kde.org/stuff/clipart.php and
   
http://commons.wikimedia.org/w/index.php?title=File:KDE_logo.svgoldid=43994097
   I would like to find more official statement about the LGPL version
   and about the proper copyright notice...


I will try and prepare a patch for the debian/copyright (against Rev
238) later this evening (hopefully), so stay tuned!


-- 
 http://www.inventati.org/frx/frx-gpg-key-transition-2010.txt
 New GnuPG key, see the transition document!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgpnWigdaaM3U.pgp
Description: PGP signature


Bug#607458: desktop-base 6.0.4 upload

2010-12-21 Thread Yves-Alexis Perez
On mar., 2010-12-21 at 19:07 +0100, Francesco Poli wrote:
 On Tue, 21 Dec 2010 10:39:31 +0100 Yves-Alexis Perez wrote:
 
  I'm gonna upload a new desktop-base today, fixing the various RC bugs
  still around.
  
  If you have something to include there, please say so *now*, I won't be
  able to work on it of the next few days.
 
 I understand your lack of time and I sympathize with you: I am often in
 a similar situation of spare time scarcity.
 However, time constraints should not be a reason to fix bugs in an
 incomplete manner: I will try hard to provide as much help as I
 possibly can during this evening, but this bug report should not be
 considered as closed, until all the issues are properly dealt with (of
 course). 

Sure. It won't be closed if not everything is solved. But I won't lose
more time on this.
 
  
  Check the svn and report back (preferably with patch) if you think
  something is missing.
  
  Especially, Josselin, if you could take care of the gnome-debian-sid
  artwork (either clarify the license or drop it completely), and
  Francesco if you could find out the various licensing issues you noted
  which remain?
 
 What follows is a summary of the remaining issues in Rev 238
 http://svn.debian.org/wsvn/debian-desktop/packages/trunk/desktop-base/?rev=238sc=1
 as far as I can tell:
 
 
  * there does not seem to be any clear copyright notice
(with years and copyright holders) and license for
debian-security.xcf, which is derived from the DOUL
(as correctly documented) and from a GNOME icon
(under which license?!?)
 
N.B.: Yves-Alexis Perez said that he would ping initial author to get
some information.
Ulrich Hansen provided additional information, but the copyright
notice and license for the GNOME lock-button is still to be found.
Now that I think of it: even the license for the resulting
debian-security.xcf is yet to be specified...
 
N.B.: an alternative approach could be to create a new
debian-security.png from scratch, as I mentioned previously in
http://bugs.debian.org/607458#65

That or I'll drop it completely.
 
 
  * we still have to find out the copyright and license for the GNOME
foot logo
 
N.B.: it seems that the GNOME foot Logo is released under the terms
of the LGPL v2.1 or later; at least that's what is stated on

 http://commons.wikimedia.org/w/index.php?title=File:Gnomelogo.svgoldid=39892275
However, I would like to find more official information about the
license; moreover, I still cannot find a proper copyright notice...
 
 
  * we still have to find out the copyright and license for the KDE logo
 
N.B.: the KDE Official Oxygen Logo seems to be released under the terms
of the LGPL v2.1 or later, see http://www.kde.org/stuff/clipart.php and

 http://commons.wikimedia.org/w/index.php?title=File:KDE_logo.svgoldid=43994097
I would like to find more official statement about the LGPL version
and about the proper copyright notice...
 
 
 I will try and prepare a patch for the debian/copyright (against Rev
 238) later this evening (hopefully), so stay tuned!
 
 
Thanks. Note that I won't be able to upload post midnight (CET) or so.

Regards,
-- 
Yves-Alexis


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


Bug#605065: Bug#607662: ncurses-base: backspace key deletes forwards on the kFreeBSD console

2010-12-21 Thread Modestas Vainius
Hello,

On antradienis 21 Gruodis 2010 09:24:35 Petr Salinger wrote:
  The changes to the kFreeBSD console and the kbdcontrol package (see
  #605065 and #605777) need to be accompanied by changing the cons25
  terminfo entry accordingly, otherwise ncurses-based programs severely
  misbehave.
  
  You really can't just unilaterally change the cons25 terminfo entry.  If
  this proposed change is implemented, people running stock FreeBSD will
  have their consoles broken if they log into a Debian system.  If
  kFreeBSD needs different settings than the stock cons25 entry, it needs
  to create and use a different TERM type.
 
 Yes, changing cons25 terminfo entry is no option.
 The creating of completely new terminfo entry is also no option,
 as it means the new entry would be unknown on all other systems.
 Moreover it would need changes to some other packages, at least sysvinit.

I (as reporter of the original bug #605777) think that BSD team and release 
managers should decide what's the best way to go for Squeeze. However, if the 
decision is to ignore this for Squeeze, #605777 should stay open at its 
current severity (tagged as squeeze-ignore).

Speaking with my DD hat on, the biggest practical problem I see here is that I 
am forced to support kfreebsd while kfreebsd doesn't exactly welcome me with 
arms open. Having backspace and delete keys broken is big deal and has a great 
impact on my efficiency. However, now I know that X environment does not 
suffer from this problem so there is some light at the end of tunnel.

As a temporary workaround, I would suggest (if it's possible) creating a new 
optional userspace keymap (maybe called US Debian or something) which would 
be the same as standard kfbsd kernel keymap expect assign proper actions to 
backspace and delete keys. Obviously, this keymap might have some bad side- 
effects (hence it wouldn't be default) but at least users would have a choice.

-- 
Modestas Vainius mo...@debian.org


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


Bug#607458: desktop-base: debian/copyright file is outdated

2010-12-21 Thread Ulrich Hansen

Am 21.12.2010 18:31, schrieb Francesco Poli:

As an alternative strategy to solve this issue, I am currently
considering the possibility of creating a new debian-security.png from
scratch, based on Debian “Open Use” (without “Debian” word) logo and on
a public domain clipart, such as
http://www.openclipart.org/detail/33493
or maybe
http://www.openclipart.org/detail/32017
If this is considered a good idea, I could probably make an attempt
later this evening. Please let me know...


Oh, why bother to take it from others. I just photographed a lock and 
created a new version, which is attached. The copyright is noted 
inside the XCF:


Copyright Ulrich Hansen (uhan...@mainz-online.de), Mainz, Germany 
2010, Published under GPL2 or higher (at your option)


Please tell me if you like the result.

regards
Ulrich
attachment: debian-security.pngattachment: debian-security.xcf

Bug#605615: marked as done (grub-pc: Error in catalan translation that makes system unbootable)

2010-12-21 Thread Debian Bug Tracking System
Your message dated Tue, 21 Dec 2010 19:17:34 +
with message-id e1pv7ii-0004rc...@franck.debian.org
and subject line Bug#605615: fixed in grub2 1.99~20101221-1
has caused the Debian Bug report #605615,
regarding grub-pc: Error in catalan translation that makes system unbootable
to be marked as done.

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

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


-- 
605615: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605615
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: grub-pc
Version: 1.98+20100804-10
Severity: important

System boots again when I changed these messages:

echo'S'''està carregant el Linux 2.6.34-1-686 ...'
to
echo'Carregant el Linux 2.6.34-1-686 ...'

echo'S'\''està carregant la ramdisk inicial ...'
to
echo'Carregant la ramdisk inicial ...'

Before this, the system doesn't boots with Unrecognized token, Syntax error 
and Incorrect command Grub errors.

Best regards.


-- Package-specific info:

*** BEGIN /proc/mounts
/dev/disk/by-uuid/08308c19-770b-44a8-bb1d-4ad853e9f3b6 / ext3 
rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/sdb1 /media/disk ext4 rw,nosuid,nodev,relatime,barrier=1,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/disk/by-id/ata-ST3250310AS_6RY9FPZB
(hd1)   
/dev/disk/by-id/usb-WD_15EADS_External_57442D574341565930353639343538-0:0
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default=0
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 08308c19-770b-44a8-bb1d-4ad853e9f3b6
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 08308c19-770b-44a8-bb1d-4ad853e9f3b6
set locale_dir=($root)/boot/grub/locale
set lang=ca
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, amb el Linux 2.6.34-1-686' --class debian --class 
gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 08308c19-770b-44a8-bb1d-4ad853e9f3b6
echo'Carregant el Linux 2.6.34-1-686 ...'
linux   /boot/vmlinuz-2.6.34-1-686 
root=UUID=08308c19-770b-44a8-bb1d-4ad853e9f3b6 ro quiet radeon.modeset=0
echo'Carregant la ramdisk inicial ...'
initrd  /boot/initrd.img-2.6.34-1-686
}
menuentry 'Debian GNU/Linux, amb el Linux 2.6.34-1-686 (mode de restabliment)' 
--class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 08308c19-770b-44a8-bb1d-4ad853e9f3b6
echo'Carregant el Linux 2.6.34-1-686 ...'
linux   /boot/vmlinuz-2.6.34-1-686 
root=UUID=08308c19-770b-44a8-bb1d-4ad853e9f3b6 ro single radeon.modeset=0
echo'Carregant la ramdisk inicial ...'
initrd  /boot/initrd.img-2.6.34-1-686
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
*** END /boot/grub/grub.cfg

-- System Information:
Debian Release: squeeze

Bug#607434: marked as done ([grub-pc] can not start linux)

2010-12-21 Thread Debian Bug Tracking System
Your message dated Tue, 21 Dec 2010 19:17:34 +
with message-id e1pv7ii-0004rc...@franck.debian.org
and subject line Bug#605615: fixed in grub2 1.99~20101221-1
has caused the Debian Bug report #605615,
regarding [grub-pc] can not start linux
to be marked as done.

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

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


-- 
605615: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605615
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: grub-pc
Version: 1.98+20100804-10
Severity: important

--- Please enter the report below this line. ---
when open thew computer lines for start linux has errors and not apear in grub 
menu.
Unrecognized token
syntax error
Incorrect command


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.32-5-amd64

Debian Release: 6.0
  500 unstableftp.caliu.cat 
  500 unstableftp.bg.debian.org 
  500 testing security.debian.org 
  500 testing ftp.es.debian.org 
  500 testing ftp.caliu.cat 
  500 lucid   ppa.launchpad.net 
1 experimentalftp.caliu.cat 

--- Package information. ---
Depends   (Version) | Installed
===-+-=
libc6  (= 2.3) | 2.11.2-7
libdevmapper1.02.1   (= 2:1.02.36) | 2:1.02.48-4
debconf   (= 0.5)  | 1.5.37
 OR debconf-2.0 | 
grub-common(= 1.98+20100804-10) | 1.98+20100804-10
ucf | 3.0025+nmu1


Package's Recommends field is empty.

Suggests  (Version) | Installed
===-+-===
desktop-base (= 4.0.6) | 



--- Output from package bug script ---

*** BEGIN /proc/mounts
/dev/disk/by-uuid/7eaad052-d1d7-4efa-bf4f-02953932d8be / ext3 
rw,relatime,errors=remount-ro,acl,data=ordered 0 0
/dev/sda1 /boot ext3 rw,relatime,errors=continue,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/disk/by-id/ata-ST31000340AS_3QJ016QF
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default=0
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_msdos
insmod ext2
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set 7eaad052-d1d7-4efa-bf4f-02953932d8be
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
set locale_dir=($root)/grub/locale
set lang=ca
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, amb el Linux 2.6.32-5-amd64' --class debian 
--class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'S'''est?? carregant el Linux 2.6.32-5-amd64 ...'
linux   /vmlinuz-2.6.32-5-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro  quiet
echo'S'\''est?? carregant la ramdisk inicial ...'
initrd  /initrd.img-2.6.32-5-amd64
}
menuentry 'Debian GNU/Linux, amb el Linux 2.6.32-5-amd64 (mode de 
restabliment)' --class debian --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set 7a3fd54f-0b6f-4e08-8d9b-4e05a2ad7a3b
echo'S'''est?? carregant el Linux 2.6.32-5-amd64 ...'
linux   /vmlinuz-2.6.32-5-amd64 
root=UUID=7eaad052-d1d7-4efa-bf4f-02953932d8be ro single 
echo'S'\''est?? carregant la ramdisk inicial ...'
initrd

Bug#607673: gnucash: Left arrow, right arrow and backspace keys don't work in register

2010-12-21 Thread Shannon Dealy


Hi Micha,

Your idea that it was SCIM related was correct, however, it wasn't the 
patch that is the problem.


I tried rebuilding and installing gnucash as you suggested without the 
10_fix_broken_SCIM_input_bug_587298 patch and it had no effect.
However, I do run with SCIM installed (for use with other programs), and 
terminating it allowed both versions of gnucash to start working 
correctly (with and without the above patch).  Restart the background 
daemon and gnucash immediately stops working correctly.


So the problem would appear to be SCIM related, but (not knowing the 
internals of gnucash), I do find it puzzling that the problem only 
affects transaction editing (register and scheduled transactions), but not 
any other dialogs that I have tried.  I would have expected that all 
keyboard input to the program would behave the same.


Regards,

Shannon C. Dealy  |   DeaTech Research Inc.
de...@deatech.com |  - Custom Software Development -
Phone: (800) 467-5820 |  - Natural Building Instruction -
   or: (541) 929-4089 |  www.deatech.com



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



Bug#606791: Full install/removal/upgrade test results available

2010-12-21 Thread Jakub Wilk

* Mike Hommey m...@glandium.org, 2010-11-19, 09:18:

Mike Hommey gland...@debian.org
   python-xpcom (U)


I /think/ this could be solved by not using a pre-depends on
xulrunner-1.9.1.


Indeed.

OTOH, the pre-depends solves a part of another problem though not 
entirely, due to triggers ordering: the xulrunner-1.9.1 trigger can't 
work until the python-support trigger has been run...


I don't see how pre-depends could have helped here. On the first glance 
it makes it only worse. E.g., when I install python-xpcom in a clean 
chroot I get:


| Unpacking python-xpcom (from .../python-xpcom_1%3a0.0~hg20100212-2_i386.deb) 
...
| Processing triggers for xulrunner-1.9.1 ...
| Obtaining the module object from Python failed.
|
| type 'exceptions.ImportError': No module named xpcom.server
| Obtaining the module object from Python failed.
|
| type 'exceptions.ImportError': No module named xpcom.server

When I moved ${xulrunner:Depends} from Pre-Depends to Depends, 
everything was registered just fine.


The only fix for that issue that I can think of would be to stop using 
python-support... If other people have ideas, I'm all ears.


I think you could manually trigger xulrunner-1.9.1 in python-xpcom's 
postinst if it's not already registered. See the attached patch (well, 
except maybe xulrunner version shouldn't be hardcoded).


--
Jakub Wilk
diff -u pyxpcom-0.0~hg20100212/debian/control pyxpcom-0.0~hg20100212/debian/control
--- pyxpcom-0.0~hg20100212/debian/control
+++ pyxpcom-0.0~hg20100212/debian/control
@@ -18,8 +18,8 @@
 Provides: ${python:Provides}
 Depends: ${shlibs:Depends},
  ${misc:Depends},
- ${python:Depends}
-Pre-Depends: ${xulrunner:Depends}
+ ${python:Depends},
+ ${xulrunner:Depends}
 Breaks: epiphany-gecko ( 2.28)
 XB-Python-Version: ${python:Versions}
 Description: XPCOM bindings for Python
diff -u pyxpcom-0.0~hg20100212/debian/postinst pyxpcom-0.0~hg20100212/debian/postinst
--- pyxpcom-0.0~hg20100212/debian/postinst
+++ pyxpcom-0.0~hg20100212/debian/postinst
@@ -9,2 +9,7 @@
 
+if ! grep -F '@mozilla.org/module-loader/python;' /usr/lib/xulrunner-1.9.1/components/compreg.dat  /dev/null
+then
+	dpkg-trigger /usr/lib/xulrunner-1.9.1/components
+fi
+
 #DEBHELPER#


Bug#594150: downgrading on advice from upstream

2010-12-21 Thread Neil Williams
severity 594150 important
tag 594150 fixed-upstream
thanks

On Tue, 21 Dec 2010 23:25:47 +0530
Ramakrishnan Muthukrishnan rkrish...@debian.org wrote:

 On Tue, Dec 21, 2010 at 5:27 AM, Neil Williams codeh...@debian.org
 wrote:
 
  I'm still dubious about this whole bug/patch - especially that this
  entire process has been only tested against a single setup, the bug
  only shows up in a single frontend and the bug has not had any input
  from the maintainer who has been otherwise active with uploads and
  fixes.
 
 I didn't respond to this bug because I don't really know curl or apt
 internals enough to respond to it. I generally either raise such
 things to upstream. Daniel  Stenberg (the curl upstream author) had
 been very kind enough to respond directly to many such bug reports.

It was Daniel's comments which led me to doubt the fix when the test
results were not clear with regard to apt-transport-https:

Sun, 14 Nov 2010 12:51:34 +0100 (CET)
Daniel Stenberg dan...@haxx.se wrote:
 This turned out to be a minor bug in curl, yes, and I've fixed it
 upstream now. BUT, I'd like to stress that the timeout problem was
 just a false track and it simply made the error reporting a bit
 confused and now with my fix curl will instead say this:
 [...]
 curl: (35) gnutls_handshake() failed: Decryption has failed.

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594150#44

I do get that result with the test configuration IF the SSHv3 force
option is removed and this minor bug in curl is patched. It does not
mean that this bug is the proper fix for the original bug, AFAICT.

I'm not going to proceed on what upstream deem a false track and which
isn't providing clear information in testing. The patch is the wrong
solution to the original issue filed by Johannes. Somewhere through the
CVE patches which led to the original manifestation (lenny vs squeeze),
apt-transport-https lost the ability to cope with the particular
configuration used by the submitter. *If* there is a real bug in that
situation, IMHO it is not a bug in curl itself.
 
 On this particular issue, I leave it to those of you who know apt and
 curl internals better than me. I guess Daniel Stenberg may be the
 right person to comment on this problem and comment on your patch.

Thanks. I think Daniel's been clear on the problem, so I'm downgrading
this bug, to important initially. Ramakrishnan, feel free to downgrade
further.

Johannes - please investigate the original issue further within your
test setup. That comment about forcing SSHv3 looks like a good place to
start. Unless the original apt-transport-https bug can be reproduced
with another configuration unrelated to the current test site or some
one else is able to provide some more detailed insight into this bug,
I'm going to leave any curl part of this to upstream. 

I'm not going to make any curl upload for this bug. IMHO the bug should
not be reassigned to apt-transport-https unless someone can reproduce
the issue or isolate the actual problem in apt-transport-https.

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgppimMapBFJv.pgp
Description: PGP signature


Processed: Re: Bug#594150: downgrading on advice from upstream

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

 severity 594150 important
Bug #594150 [libcurl3-gnutls] no useful error message if server attempts 
insecure renegotiation
Bug #594153 [libcurl3-gnutls] no useful error message if server attempts 
insecure renegotiation
Severity set to 'important' from 'grave'

Severity set to 'important' from 'grave'

 tag 594150 fixed-upstream
Bug #594150 [libcurl3-gnutls] no useful error message if server attempts 
insecure renegotiation
Bug #594153 [libcurl3-gnutls] no useful error message if server attempts 
insecure renegotiation
Added tag(s) fixed-upstream.
Added tag(s) fixed-upstream.
 thanks
Stopping processing here.

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


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



Bug#607458: desktop-base: debian/copyright file is outdated

2010-12-21 Thread Francesco Poli
On Tue, 21 Dec 2010 19:55:30 +0100 Ulrich Hansen wrote:

 Am 21.12.2010 18:31, schrieb Francesco Poli:
  As an alternative strategy to solve this issue, I am currently
  considering the possibility of creating a new debian-security.png from
  scratch,
[...]
 Oh, why bother to take it from others. I just photographed a lock and 
 created a new version, which is attached. The copyright is noted 
 inside the XCF:
 
 Copyright Ulrich Hansen (uhan...@mainz-online.de), Mainz, Germany 
 2010, Published under GPL2 or higher (at your option)
 
 Please tell me if you like the result.

Yes, I like the result: it's really nice!
Thanks a lot for that!:-)

If the maintainers of the package agree to replace the current
debian-security.{xcf|png} with your newly created ones, I will document
this copyright and license in the debian/copyright patch.
Please let me know.
 

-- 
 http://www.inventati.org/frx/frx-gpg-key-transition-2010.txt
 New GnuPG key, see the transition document!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE


pgpFCTpliToUS.pgp
Description: PGP signature


Bug#606791: Full install/removal/upgrade test results available

2010-12-21 Thread Mike Hommey
On Tue, Dec 21, 2010 at 08:37:53PM +0100, Jakub Wilk wrote:
 * Mike Hommey m...@glandium.org, 2010-11-19, 09:18:
 Mike Hommey gland...@debian.org
python-xpcom (U)
 
 I /think/ this could be solved by not using a pre-depends on
 xulrunner-1.9.1.
 
 Indeed.
 
 OTOH, the pre-depends solves a part of another problem though not
 entirely, due to triggers ordering: the xulrunner-1.9.1 trigger
 can't work until the python-support trigger has been run...
 
 I don't see how pre-depends could have helped here.

I don't remember the details, but it made things half better.

 On the first
 glance it makes it only worse. E.g., when I install python-xpcom in
 a clean chroot I get:
 
 | Unpacking python-xpcom (from 
 .../python-xpcom_1%3a0.0~hg20100212-2_i386.deb) ...
 | Processing triggers for xulrunner-1.9.1 ...
 | Obtaining the module object from Python failed.
 |
 | type 'exceptions.ImportError': No module named xpcom.server
 | Obtaining the module object from Python failed.
 |
 | type 'exceptions.ImportError': No module named xpcom.server
 
 When I moved ${xulrunner:Depends} from Pre-Depends to Depends,
 everything was registered just fine.
 
 The only fix for that issue that I can think of would be to stop
 using python-support... If other people have ideas, I'm all ears.
 
 I think you could manually trigger xulrunner-1.9.1 in python-xpcom's
 postinst if it's not already registered. See the attached patch
 (well, except maybe xulrunner version shouldn't be hardcoded).

I'd expect that to fail as well, because of python-support trigger not
having been run yet.

Part of the problem is that the xulrunner-1.9.1's postinst or trigger can
run with python-xpcom unpacked but not registered with python-support.

Adding update-python-modules -p in python-xpcom postinst could make
things slightly better, but that would still leave xulrunner-1.9.1's
postinst complaining if it's run before python-xpcom's.

What if xulrunner-1.9.1's postinst would do nothing for configure ?
would the trigger still kick in when one installs xulrunner-1.9.1 only?

Mike



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



Bug#606791: Full install/removal/upgrade test results available

2010-12-21 Thread Jakub Wilk

* Mike Hommey m...@glandium.org, 2010-12-21, 20:59:
I think you could manually trigger xulrunner-1.9.1 in python-xpcom's 
postinst if it's not already registered. See the attached patch (well, 
except maybe xulrunner version shouldn't be hardcoded).


I'd expect that to fail as well, because of python-support trigger not
having been run yet.

Part of the problem is that the xulrunner-1.9.1's postinst or trigger can
run with python-xpcom unpacked but not registered with python-support.

Adding update-python-modules -p in python-xpcom postinst could make
things slightly better,


update-python-modules -p is already in python-xpcom's postinst and it 
does exactly what python-support trigger would do.


but that would still leave xulrunner-1.9.1's postinst complaining if 
it's run before python-xpcom's.


Unfortunately, this is true.

--
Jakub Wilk



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



Bug#607458: desktop-base 6.0.4 upload

2010-12-21 Thread Francesco Poli
On Tue, 21 Dec 2010 19:41:53 +0100 Yves-Alexis Perez wrote:

 On mar., 2010-12-21 at 19:07 +0100, Francesco Poli wrote:
  On Tue, 21 Dec 2010 10:39:31 +0100 Yves-Alexis Perez wrote:
  
   I'm gonna upload a new desktop-base today, fixing the various RC bugs
   still around.
   
   If you have something to include there, please say so *now*, I won't be
   able to work on it of the next few days.
  
  I understand your lack of time and I sympathize with you: I am often in
  a similar situation of spare time scarcity.
  However, time constraints should not be a reason to fix bugs in an
  incomplete manner: I will try hard to provide as much help as I
  possibly can during this evening, but this bug report should not be
  considered as closed, until all the issues are properly dealt with (of
  course). 
 
 Sure. It won't be closed if not everything is solved. But I won't lose
 more time on this.

OK.

[...]
  What follows is a summary of the remaining issues in Rev 238
  http://svn.debian.org/wsvn/debian-desktop/packages/trunk/desktop-base/?rev=238sc=1
  as far as I can tell:
  
  
   * there does not seem to be any clear copyright notice
 (with years and copyright holders) and license for
 debian-security.xcf, which is derived from the DOUL
 (as correctly documented) and from a GNOME icon
 (under which license?!?)
[...]
 N.B.: an alternative approach could be to create a new
 debian-security.png from scratch, as I mentioned previously in
 http://bugs.debian.org/607458#65
 
 That or I'll drop it completely.

This issue can be solved by replacing the current
debian-security.{xcf|png} with Ulrich Hansen's newly created ones.

Please replace those two files, if you agree with me that the proposed
replacements are nice.

  
  
   * we still have to find out the copyright and license for the GNOME
 foot logo
[...]
   * we still have to find out the copyright and license for the KDE logo
[...]
  I will try and prepare a patch for the debian/copyright (against Rev
  238) later this evening (hopefully), so stay tuned!
  
  
 Thanks. Note that I won't be able to upload post midnight (CET) or so.

OK, the attached patch for the debian/copyright file (patch created
against Rev 238) should fix the majority of the remaining issues
(provided that the new debian-security.{xcf|png} by Ulrich Hansen are
accepted as replacements for the old ones).


After my patch is applied (and Ulrich's new debian-security.{xcf|png}
are accepted), the remaining issues will be the following ones:

  * I think that more official information about the license the GNOME
foot Logo should be found; moreover, a proper copyright notice
should be reconstructed

  * I think that a more official statement about the LGPL version of
KDE Official Oxygen Logo should be found; and its proper copyright
notice should be reconstructed

I hope this helps.
Bye.


-- 
 http://www.inventati.org/frx/frx-gpg-key-transition-2010.txt
 New GnuPG key, see the transition document!
. Francesco Poli .
 GnuPG key fpr == CA01 1147 9CD2 EFDF FB82  3925 3E1C 27E1 1F69 BFFE
--- rev238/debian/copyright	2010-12-21 21:05:27.0 +0100
+++ rev238_patched/debian/copyright	2010-12-21 21:33:16.0 +0100
@@ -3,8 +3,9 @@
 
 This package is comprised of bits and pieces from various sources.
 
+
 The Debian “Open Use” (without “Debian” word) logo is used in various bits of
-artwork.
+artwork:
 
 Copyright (c) 1999 Software in the Public Interest
 
@@ -26,10 +27,11 @@
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
 
-The  debian-security.xcf  file  (and  the resulting  .png  file)  was created
-by Colin Walters walt...@debian.org  and updated by Ulrich Hansen
-uhan...@mainz-online.de. They are based on the Debian “Open Use” (without
-“Debian” word) logo and a GNOME icon
+
+The debian-security.xcf file (and the resulting .png file) are
+Copyright Ulrich Hansen uhan...@mainz-online.de, Mainz, Germany, 2010,
+published under GPL2 or higher (at your option)
+They are based on the Debian “Open Use” (without “Debian” word) logo.
 
 The .desktop  files included  in this package  were compiled  by Colin
 Walters walt...@debian.org.
@@ -38,8 +40,7 @@
 licensed under the GPL.
 - SVG background, backgrounds/debian-blueish-wallpaper.svg.
 - PNG splash, splash/gnome-splash-curves.png.
-
-They both includes the Debian “Open Use” (without “Debian” word) logo.
+They are both based on the Debian “Open Use” (without “Debian” word) logo.
 
 The SpaceFun theme is © 2010 Valessio S. Brito and released under the GPLv2.
 KDM and Splashy themes are © 2010 Yves-Alexis Perez using artwork from Valessio
@@ -51,16 +52,28 @@
 Spacefun KDM theme is © Valessio Brito, with others authors beeing Amir
 Dizdarević, Nuno Pinheiro, Riccardo Iaconelli and Marco Martin.
 
-They both includes the Debian “Open 

Bug#606791: Full install/removal/upgrade test results available

2010-12-21 Thread Mike Hommey
On Tue, Dec 21, 2010 at 09:41:54PM +0100, Jakub Wilk wrote:
 * Mike Hommey m...@glandium.org, 2010-12-21, 20:59:
 I think you could manually trigger xulrunner-1.9.1 in
 python-xpcom's postinst if it's not already registered. See the
 attached patch (well, except maybe xulrunner version shouldn't
 be hardcoded).
 
 I'd expect that to fail as well, because of python-support trigger not
 having been run yet.
 
 Part of the problem is that the xulrunner-1.9.1's postinst or trigger can
 run with python-xpcom unpacked but not registered with python-support.
 
 Adding update-python-modules -p in python-xpcom postinst could make
 things slightly better,
 
 update-python-modules -p is already in python-xpcom's postinst and
 it does exactly what python-support trigger would do.

Which I must have added in an attempt to fix the issue, so it's possibly
not enough.

 but that would still leave xulrunner-1.9.1's postinst complaining
 if it's run before python-xpcom's.
 
 Unfortunately, this is true.

But then, it's only noise, which is still better than a failure to
upgrade. So in the worst case scenario where we don't find anything
better, and if we are sure it doesn't break any other case, we could
just remove the pre-depend and be done with it.

Mike



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



Bug#607762: dbus-glib: requires higher versioned build-dep on glib

2010-12-21 Thread Andres Salomon
Package: dbus-glib
Version: 0.88-2
Severity: serious

While backporting this package for lenny, I hit the following build
error:

checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
/dbus-glib-0.88/./configure: line 12053: ./po/POTFILES.in: No such file
or directory checking for XML_ParserCreate_MM in -lexpat... yes
checking expat.h usability... yes
checking expat.h presence... yes
checking for expat.h... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DBUS... yes
checking for DBUS_GLIB... no
checking for DBUS_GLIB_THREADS... yes
configure: error: GLib development libraries not found
make: *** [config.status] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
debuild: fatal error at line 1319:
dpkg-buildpackage -rfakeroot -D -us -uc -sa -v0.84-1 failed
dev:/dbus-glib-0.88#

It would appear that I'd hit the following in configure.ac:

PKG_CHECK_MODULES(DBUS_GLIB, gobject-2.0 = 2.24, have_glib=yes,
have_glib=no)

The current build-dep for glib is libglib2.0-dev (= 2.10), while the
version installed in the chroot is

ii  libglib2.0-dev2.16.6-3

Bumping the build-dep to libglib2.0-dev (= 2.24) and installing
libglib2.0-dev 2.24.2-1~bpo50+1 fixes the build.




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



Bug#605484: libapache2-mod-fcgid in lenny vulnerable to hole for weeks

2010-12-21 Thread Stefan Fritsch
On Tuesday 21 December 2010, John Goerzen wrote:
 I reported bug #605484 regarding a security hole in lenny.  I
 believe the security team was CC'd.
 
 Prior to my report,
 http://security-tracker.debian.org/tracker/CVE-2010-3872 said that
 Debian/stable was not vulnerable.  I also notified them to correct
 this issue.
 
 My question here is: who's got the ball on security issues?  It
 seems that this issue didn't trigger any bugs being created or any
 bugs being filed in Debian when it came out.  When I did what I
 thought was appropriate, it also didn't trigger much.  The
 maintainer was interested in it, but AFAICT there are, as yet, no
 new packages.
 
 This is not an attack on any person/team, just a question about
 whether we have an organizational problem we need to correct.

The problem is a combination of several security team members being 
inactive because of work/thesis/... and the other members being kept 
busy by things which had higher priority. For example fixing the 
recent exim remote root vulnerability and sorting out infrastructure 
breakage due to the dak upgrade on security-master. The upgrade was 
was necessary to support squeeze.

My understanding is that the mod_fcgid issue cannot be triggered by 
browsers but only if there is a malicious fcgi app on the server, 
which is not a very common setup. Therefore this seemed like a not-so-
high priority issue. I am sorry that nobody found the time to mail 
this to you.

FWIW, it seems the infrastructure has been finally fixed today, so I 
hope things will improve now. But I do think that there are currently 
to few active members in the security team. I am pretty sure we will 
send out a request for new volunteers soon.

Cheers,
Stefan



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



Bug#607737: Patch for 607737

2010-12-21 Thread brian m. carlson
tags 607737 + patch
kthxbye

I can reproduce this problem on amd64.  With the attached patch, the
numconv example works as intended.

-- 
brian m. carlson / brian with sandals: Houston, Texas, US
+1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only
OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187
diff -ur libuninum.old/unicode.h libuninum-2.7/unicode.h
--- libuninum.old/unicode.h	2010-12-21 21:35:42.0 +
+++ libuninum-2.7/unicode.h	2010-12-21 21:36:04.0 +
@@ -1,4 +1,4 @@
-typedef unsigned long	UTF32;	/* at least 32 bits */
+typedef unsigned int	UTF32;	/* at least 32 bits */
 typedef unsigned short	UTF16;	/* at least 16 bits */
 typedef unsigned short	UCS2;	/* at least 16 bits */
 typedef unsigned char	UTF8;	/* 8 bits */


signature.asc
Description: Digital signature


Processed: Patch for 607737

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

 tags 607737 + patch
Bug #607737 [numconv] numconv: broken on 64-bit architectures
Added tag(s) patch.
 kthxbye
Stopping processing here.

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


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



Bug#607390: Can libtextcat0 depend on not only libtextcat-data but also libtextcat-data-utf8?

2010-12-21 Thread Rene Engelhard
Hi,

On Sun, Dec 19, 2010 at 09:07:39PM +0900, Hideki Yamane wrote:
  However, libtextcat source package also generates libtextcat-data-utf8 and
  if libtextcat0 can depend on libtextcat-data-utf8, this problem will be 
 solved.
  I'm not sure, but can we set it libtextcat0's dependency as below?

No. The normal libtextcat afaik can't handle utf8 encoded things,
the -utf8 one also works with OOos patched version (and that's the
sole reason this package exists).

Grüße/Regards,

René



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



Bug#607390: libtextcat0 dependency

2010-12-21 Thread Rene Engelhard
tag 607390 - patch
thanks

On Sun, Dec 19, 2010 at 10:17:59PM +0900, Hideki Yamane wrote:
  Here's a proposed patch (2nd), discard previous one.

As said in my first reply, no, wrong.

  And this would fix Bug#607517 as well.

True, but that's the only thing it does, it doesn't fix anything from
here, actually it creates bugs in both libtextcat0/pinot and OOo/LibO
(when they pick up the wrong data files)

Grüße/Regards,

René



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



Processed: Re: Bug#607390: libtextcat0 dependency

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

 tag 607390 - patch
Bug #607390 [libtextcat0] libtextcat0 dependency
Removed tag(s) patch.
 thanks
Stopping processing here.

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


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



Bug#607390: pinot: package fails to install

2010-12-21 Thread Rene Engelhard
On Fri, Dec 17, 2010 at 08:42:22PM +0100, Sebastian Steinhuber wrote:
 Package: pinot
 Version: all
 Severity: grave
 Justification: renders package unusable

I am not pinots maintainer (but OOos/LibOs), but this is nonsense.

 it depends on libtextcat-data, which conflicts with libreoffice and
 openoffice. Uninstalling libreoffice is no option. Btw, there is a
 package libtextcat-data-utf8, which wouldn't conflict.

Just that openoffice.org and libreoffice just _Recommend_ libtextcat-data-utf8.
There's no dependency. So you *could* remove it if you wish (though
you then miss many languages in the language detection of OOo/LinO)

 Okay, I dont't blame pinot at all, maybe this report should be sent to a
 libtext* maintainer, or to libreoffice, I don't know.

Neither of them. I don't see any place where it's said that libtextcat-data-utf8
and stuff using libtextcat0 (unpatched!) can co-exist.

That's also one of the reasons why libtextcat-data-utf8 is only
a *Recommends*, not a *Depends* for OOo/LibO.

Grüße/Regards,

René



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



Bug#587668: marked as done (The Debian open logo with Debian is not compliant to the Debian policy)

2010-12-21 Thread Debian Bug Tracking System
Your message dated Tue, 21 Dec 2010 22:02:50 +
with message-id e1pvaie-0003lh...@franck.debian.org
and subject line Bug#587668: fixed in desktop-base 6.0.5
has caused the Debian Bug report #587668,
regarding The Debian open logo with Debian is not compliant to the Debian 
policy
to be marked as done.

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

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


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

Package: desktop-base
Version: 5.0.3
Severity: serious
Distribution: stable
Section: main


Hello,

This package includes a modified version of the Debian open logo with
Debian which the license is not compliant to the Debian policy.

The license of the Debian open logo with Debian says:

  This logo or a modified version may be used by anyone to refer to the
  Debian project, but does not indicate endorsement by the project.

  see http://www.debian.org/logos/index.en.html


whereas the Debian policy §2.1 (aka DFSG) says:


  Derived Works

The license must allow modifications and derived works, and must
  allow them to be distributed under the same terms as the license of
  the original software.

  which is not allowed if the derivative work doesn't refer to Debian


  No Discrimination Against Fields of Endeavor

The license must not restrict anyone from making use of the program
  in a specific field of endeavor. For example, it may not restrict the
  program from being used in a business, or from being used for genetic
  research.

  the license above restricts the way anyone would use the logo with
  Debian


  License Must Not Be Specific to Debian

   The rights attached to the program must not depend on the program's
  being part of a Debian system. If the program is extracted from Debian
  and used or distributed without Debian but otherwise within the terms
  of the program's license, all parties to whom the program is
  redistributed must have the same rights as those that are granted in
  conjunction with the Debian system.

  see http://www.debian.org/doc/debian-policy/ch-archive.html


The files concerned are:

  /usr/share/apps/kdm/themes/moreblue-orbit/background.png
  /usr/share/apps/kdm/themes/moreblue-orbit/background.svg
  /usr/share/apps/ksplash/Themes/moreblue-orbit-default/Preview.png
  /usr/share/apps/ksplash/Themes/moreblue-orbit-default/splash_top.png


Regards

Pompee William


---End Message---
---BeginMessage---
Source: desktop-base
Source-Version: 6.0.5

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

desktop-base_6.0.5.dsc
  to main/d/desktop-base/desktop-base_6.0.5.dsc
desktop-base_6.0.5.tar.gz
  to main/d/desktop-base/desktop-base_6.0.5.tar.gz
desktop-base_6.0.5_all.deb
  to main/d/desktop-base/desktop-base_6.0.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 587...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yves-Alexis Perez cor...@debian.org (supplier of updated desktop-base package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 21 Dec 2010 22:05:48 +0100
Source: desktop-base
Binary: desktop-base
Architecture: source all
Version: 6.0.5
Distribution: unstable
Urgency: low
Maintainer: Gustavo Franco stra...@debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 desktop-base - common files for the Debian Desktop
Closes: 587668 607101 607142 607458
Changes: 
 desktop-base (6.0.5) unstable; urgency=low
 .
   * gnome-backgrounds.xml: rename wallpaper to not display the release name at
 all.closes: #607101
   * debian/copyright updated, thanks to Francesco Poli. closes: #607458
   * debian-desktop-logo.png dropped, its' not installed anywhere anyway.
   * source/spacefun/splash updated to the DFSG-free version.closes: #587668
   * usplash theme dropped, wasn't installed anyway.
   * debian/post{inst,rm}: don't configure plymouth theme, it'll override user
 settings. A better solution needs to be found for Wheezycloses: #607142
   * debian/README.Debian: indicate how to enable 

Bug#607458: marked as done (desktop-base: debian/copyright file is outdated)

2010-12-21 Thread Debian Bug Tracking System
Your message dated Tue, 21 Dec 2010 22:02:50 +
with message-id e1pvaie-0003lt...@franck.debian.org
and subject line Bug#607458: fixed in desktop-base 6.0.5
has caused the Debian Bug report #607458,
regarding desktop-base: debian/copyright file is outdated
to be marked as done.

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

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


-- 
607458: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607458
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: desktop-base
Version: 6.0.4
Severity: serious
Justification: Policy 4.5

Hi desktop-base maintainers!

First of all, thank you very much for fixing bug #587668.

However, the changes needed to fix that bug do not seem to
be properly documented in the debian/copyright file, unfortunately.

It seems to me that this file is rather outdated and in need of
a complete review and update.
Please review the copyrights and licenses of all the files shipped
in the package and fix the debian/copyright file.

Some random checks highlight at least the following issues:

 * the debian-background.svg file seems to be no longer present
   in the package (that's a relief, since it was apparently
   derived from the non-free DOUL-with)
 
 * there does not seem to be any clear copyright notice
   (with years and copyright holders) and license for
   debian-security.xcf, which is derived from the DOUL
   (under the Expat/MIT license) and from a GNOME icon
   (under which license?!?)

 * the debian-official-logo-small.png image seems to be no longer
   present (that's a relief, since the official logo is non-free)

 * there does not seem to be any clear copyright notice
   (with years and copyright holders) and license for
   the gnome-debian-sid kit, which is (now) derived from
   at least the DOUL (under the Expat/MIT license)

 * the SpaceFun theme copyright notice and license does not seem to be
   complete, since it does not mention that the theme was derived from
   the DOUL (which is copyright (c) 1999 Software in the Public
   Interest and released under the Expat/MIT license, a license
   which is distinct from the GPLv2, even though compatible with it)

 * I cannot see any information about the nightly and moreblue-orbit
   themes ...
 
 * I cannot find any information about the emblem-debian.icon and
   emblem-debian.png files ...


Nomenclature:

  DOUL   Debian Open Use Logo without Debian
 (which is DFSG-free, under the Expat/MIT license)
 http://www.debian.org/logos/openlogo-nd.svg

  DOUL-with  Debian Open Use Logo with Debian
 (which is non-free, under it own custom license)
 http://www.debian.org/logos/openlogo.svg


I really hope the debian/copyright file may be fixed in time
for the squeeze release.
Thanks for your time and for your great contributions to the
Debian distribution!




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

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


---End Message---
---BeginMessage---
Source: desktop-base
Source-Version: 6.0.5

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

desktop-base_6.0.5.dsc
  to main/d/desktop-base/desktop-base_6.0.5.dsc
desktop-base_6.0.5.tar.gz
  to main/d/desktop-base/desktop-base_6.0.5.tar.gz
desktop-base_6.0.5_all.deb
  to main/d/desktop-base/desktop-base_6.0.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 607...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yves-Alexis Perez cor...@debian.org (supplier of updated desktop-base package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 21 Dec 2010 22:05:48 +0100
Source: desktop-base
Binary: desktop-base
Architecture: source all
Version: 6.0.5
Distribution: unstable
Urgency: low
Maintainer: Gustavo Franco stra...@debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 desktop-base - common files for the Debian Desktop
Closes: 587668 607101 607142 607458
Changes: 
 

Bug#607390: Bug#593897: libtextcat-data-utf8 incompatible with libtextcat0

2010-12-21 Thread Rene Engelhard
severity 607390 important
merge 593897 607390
thanks

On Sun, Aug 22, 2010 at 01:17:39AM +0200, Siegfried-Angel Gevatter Pujals wrote:
 I'd like to use libtextcat0 in an application I'm developing, but I
 can't seem to install it without removing OpenOffice.org since the
 later depends on libtextcat-data-utf8, which is set to be incompatible

NO, OOo _Recommends_ it.

 However, changing package libtextcat0 to accept libtextcat-data-utf8
 as an alternative dependency to libtextcat-data and removing the
 Breaks: libtextcat0 from libtextcat-data-utf8 I've been able to
 install libtextcat0 and use it successfully with the data from
 libtextcat-data-utf8 (writing my own conf.txt file, since
 libtextcat-data-utf8 seems to be missing such a file).
 
 So, is there any reason why libtextcat-data-utf8 is defined as
 breaking libtextcat0?

I am not aware that libtextcat0 standalone can handle UTF8?
If it was, why would OOo patch UTF8 suppport in?

http://hg.services.openoffice.org/OOO320/file/09bd18c82158/libtextcat/libtextcat-2.2.patch

That's the reason libtextcat0 conflicts against the -utf8.

Grüße/Regards,

René



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



Processed: Re: Bug#593897: libtextcat-data-utf8 incompatible with libtextcat0

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

 severity 607390 important
Bug #607390 [libtextcat0] libtextcat0 dependency
Severity set to 'important' from 'grave'

 merge 593897 607390
Bug#593897: libtextcat-data-utf8 incompatible with libtextcat0
Bug#607390: libtextcat0 dependency
Merged 593897 607390.

 thanks
Stopping processing here.

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


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



Bug#607142: marked as done (overwrites custom plymouth configuration)

2010-12-21 Thread Debian Bug Tracking System
Your message dated Tue, 21 Dec 2010 22:02:50 +
with message-id e1pvaie-0003lq...@franck.debian.org
and subject line Bug#607142: fixed in desktop-base 6.0.5
has caused the Debian Bug report #607142,
regarding overwrites custom plymouth configuration
to be marked as done.

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

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


-- 
607142: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607142
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: desktop-base
Version: 6.0.4
Severity: serious

Hi,

I'm using a custom theme for plymouth and desktop-base overwrites that
setting on each upgrade.

I'm filing this bug with severity serious as the package overwrites
custom configuration in /etc/ (/etc/plymouth/plymouthd.conf).

Michael


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (200, 'experimental')
Architecture: i386 (i686)

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

Versions of packages desktop-base depends on:
ii  librsvg2-common   2.26.3-1   SAX-based renderer library for SVG

desktop-base recommends no packages.

Versions of packages desktop-base suggests:
ii  gnome 1:2.30+7   The GNOME Desktop Environment, wit

-- no debconf information


---End Message---
---BeginMessage---
Source: desktop-base
Source-Version: 6.0.5

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

desktop-base_6.0.5.dsc
  to main/d/desktop-base/desktop-base_6.0.5.dsc
desktop-base_6.0.5.tar.gz
  to main/d/desktop-base/desktop-base_6.0.5.tar.gz
desktop-base_6.0.5_all.deb
  to main/d/desktop-base/desktop-base_6.0.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 607...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Yves-Alexis Perez cor...@debian.org (supplier of updated desktop-base package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 21 Dec 2010 22:05:48 +0100
Source: desktop-base
Binary: desktop-base
Architecture: source all
Version: 6.0.5
Distribution: unstable
Urgency: low
Maintainer: Gustavo Franco stra...@debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 desktop-base - common files for the Debian Desktop
Closes: 587668 607101 607142 607458
Changes: 
 desktop-base (6.0.5) unstable; urgency=low
 .
   * gnome-backgrounds.xml: rename wallpaper to not display the release name at
 all.closes: #607101
   * debian/copyright updated, thanks to Francesco Poli. closes: #607458
   * debian-desktop-logo.png dropped, its' not installed anywhere anyway.
   * source/spacefun/splash updated to the DFSG-free version.closes: #587668
   * usplash theme dropped, wasn't installed anyway.
   * debian/post{inst,rm}: don't configure plymouth theme, it'll override user
 settings. A better solution needs to be found for Wheezycloses: #607142
   * debian/README.Debian: indicate how to enable plymouth theme.
   * drop all gnome-debian-sid artwork.
   * pixmaps/debian-security.png updated, thanks to Ulrich Hansen.
Checksums-Sha1: 
 fd698a73f744c2ff0461f3592a4daa10502ef024 1712 desktop-base_6.0.5.dsc
 fc8be03d0e8c58d891d5ab9db5a83fd7b08a3220 8151289 desktop-base_6.0.5.tar.gz
 c040c3ecee3f43561e794b57e173eda185422639 6648794 desktop-base_6.0.5_all.deb
Checksums-Sha256: 
 afba1098304fa42ade26c403b81ebc6ea7b3faa55cc94ab631635513d839d81c 1712 
desktop-base_6.0.5.dsc
 6f2b82e23d5a988b6c6f8438dfb0a5baa47a1cae6f4c7ebf0c0e7f045da09e0d 8151289 
desktop-base_6.0.5.tar.gz
 e6016be9543aa7f10350f571ef37dabcc5ceb995071b257bd1ca8f95fd3bf193 6648794 
desktop-base_6.0.5_all.deb
Files: 
 365a7bc8781bf83f2f87a2eaff9dc97d 1712 x11 optional desktop-base_6.0.5.dsc
 1bf3daa737570463a9e5d7000b6bc483 8151289 x11 optional desktop-base_6.0.5.tar.gz
 066bb007909b4a74b13306847ba787bb 6648794 x11 optional 
desktop-base_6.0.5_all.deb

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

iQIcBAEBCgAGBQJNESAPAAoJEDBVD3hx7wuoh+sQANiZyfifQHcnAUbg6Klltcr/

Bug#607737: Patch for 607737

2010-12-21 Thread Jakub Wilk

* brian m. carlson sand...@crustytoothpaste.net, 2010-12-21, 21:39:

diff -ur libuninum.old/unicode.h libuninum-2.7/unicode.h
--- libuninum.old/unicode.h 2010-12-21 21:35:42.0 +
+++ libuninum-2.7/unicode.h 2010-12-21 21:36:04.0 +
@@ -1,4 +1,4 @@
-typedef unsigned long  UTF32;  /* at least 32 bits */
+typedef unsigned int   UTF32;  /* at least 32 bits */
typedef unsigned short  UTF16;  /* at least 16 bits */
typedef unsigned short  UCS2;   /* at least 16 bits */
typedef unsigned char   UTF8;   /* 8 bits */


While I can image that this patch make things better, please note that 
it also breaks ABI (on 64-bit arches).


--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#607737: Patch for 607737

2010-12-21 Thread brian m. carlson
On Tue, Dec 21, 2010 at 11:55:34PM +0100, Jakub Wilk wrote:
 * brian m. carlson sand...@crustytoothpaste.net, 2010-12-21, 21:39:
 diff -ur libuninum.old/unicode.h libuninum-2.7/unicode.h
 --- libuninum.old/unicode.h  2010-12-21 21:35:42.0 +
 +++ libuninum-2.7/unicode.h  2010-12-21 21:36:04.0 +
 @@ -1,4 +1,4 @@
 -typedef unsigned long   UTF32;  /* at least 32 bits */
 +typedef unsigned intUTF32;  /* at least 32 bits */
 typedef unsigned short   UTF16;  /* at least 16 bits */
 typedef unsigned short   UCS2;   /* at least 16 bits */
 typedef unsigned charUTF8;   /* 8 bits */
 
 While I can image that this patch make things better, please note
 that it also breaks ABI (on 64-bit arches).

So it does.  Does libuninum work at all on 64-bit architectures?  If
not, then ABI breakage is not really relevant.  Nevertheless, I'm
looking to see if I can fix the problem without breaking ABI.

Also, when upstream bumps the SONAME, you should probably convince them
to come into the 90s and use stdint.h.

-- 
brian m. carlson / brian with sandals: Houston, Texas, US
+1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only
OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187


signature.asc
Description: Digital signature


Bug#605777: Bug#607662: ncurses-base: backspace key deletes forwards on the kFreeBSD console

2010-12-21 Thread brian m. carlson
On Tue, Dec 21, 2010 at 08:24:35AM +0100, Petr Salinger wrote:
 You really can't just unilaterally change the cons25 terminfo entry.  If
 this proposed change is implemented, people running stock FreeBSD will
 have their consoles broken if they log into a Debian system.  If
 kFreeBSD needs different settings than the stock cons25 entry, it needs
 to create and use a different TERM type.
 
 Yes, changing cons25 terminfo entry is no option.
 The creating of completely new terminfo entry is also no option,
 as it means the new entry would be unknown on all other systems.
 Moreover it would need changes to some other packages, at least sysvinit.

The new entry would presumably be pushed to ncurses upstream, who has
already weighed in here.  I'll write the terminfo entry myself and
attach it to this bug.  Assuming I can test this with kvm, I'll also
look at patching sysvinit and seeing what breaks.

My proposed name for the terminal name is cons25-debian, but you're
obviously free to change it to something more suitable.  Also feel free
to point me towards programs that break that I should test.  Obviously,
I'll be testing vim.

-- 
brian m. carlson / brian with sandals: Houston, Texas, US
+1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only
OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187


signature.asc
Description: Digital signature


Bug#607737: Patch for 607737

2010-12-21 Thread brian m. carlson
On Tue, Dec 21, 2010 at 11:55:34PM +0100, Jakub Wilk wrote:
 * brian m. carlson sand...@crustytoothpaste.net, 2010-12-21, 21:39:
 diff -ur libuninum.old/unicode.h libuninum-2.7/unicode.h
 --- libuninum.old/unicode.h  2010-12-21 21:35:42.0 +
 +++ libuninum-2.7/unicode.h  2010-12-21 21:36:04.0 +
 @@ -1,4 +1,4 @@
 -typedef unsigned long   UTF32;  /* at least 32 bits */
 +typedef unsigned intUTF32;  /* at least 32 bits */
 typedef unsigned short   UTF16;  /* at least 16 bits */
 typedef unsigned short   UCS2;   /* at least 16 bits */
 typedef unsigned charUTF8;   /* 8 bits */
 
 While I can image that this patch make things better, please note
 that it also breaks ABI (on 64-bit arches).

Okay.  I've looked, and I'm certain this has never worked on a 64-bit
machine:

  uninum.c: In function ‘wcsrev’:
  uninum.c:192:3: warning: passing argument 1 of ‘wcslen’ from incompatible 
pointer type
  /usr/include/wchar.h:284:15: note: expected ‘const wchar_t *’ but argument is 
of type ‘long int *’
  uninum.c:193:3: warning: passing argument 1 of ‘wcslen’ from incompatible 
pointer type
  /usr/include/wchar.h:284:15: note: expected ‘const wchar_t *’ but argument is 
of type ‘long int *’

These are just a few of the myriad warnings.  sizeof(wchar_t) is 4 and
sizeof(long) is 8 on 64-bit machines, so anything using these functions
is going to fail.  Theoretically, these functions could be patched to
convert the data on-the-fly or could be manually rewritten using static
functions that handle longs instead of wchar_ts, but I'm not a
masochist, so I'm not going to do it.

I've attached a patch that uses stdint.h to define these types so we
don't have this problem again.  It also fixes some areas I didn't get
before.  They aren't actually problems, since they're incorrect pointer
casts and the wcs* functions handle them correctly, but it prevents a
lot of the warning messages from above.

-- 
brian m. carlson / brian with sandals: Houston, Texas, US
+1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only
OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187
diff -ur libuninum.old/unicode.h libuninum-2.7/unicode.h
--- libuninum.old/unicode.h	2010-12-21 21:35:42.0 +
+++ libuninum-2.7/unicode.h	2010-12-21 23:57:33.0 +
@@ -1,8 +1,10 @@
-typedef unsigned long	UTF32;	/* at least 32 bits */
-typedef unsigned short	UTF16;	/* at least 16 bits */
-typedef unsigned short	UCS2;	/* at least 16 bits */
-typedef unsigned char	UTF8;	/* 8 bits */
-typedef unsigned char	Boolean; /* 0 or 1 */
+#include stdint.h
+
+typedef uint32_t	UTF32;	/* at least 32 bits */
+typedef uint16_t	UTF16;	/* at least 16 bits */
+typedef uint16_t	UCS2;	/* at least 16 bits */
+typedef uint8_t	UTF8;	/* 8 bits */
+typedef uint8_t	Boolean; /* 0 or 1 */
 
 #define UNI_MAX_ASCII (UTF32)0x007F 
 #define UNI_MAX_BMP   (UTF32)0x
diff -ur libuninum.old/uninum.c libuninum-2.7/uninum.c
--- libuninum.old/uninum.c	2010-12-21 21:35:42.0 +
+++ libuninum-2.7/uninum.c	2010-12-22 00:00:14.0 +
@@ -35,11 +35,11 @@
  */
 
 
-#define ucslen(x) wcslen((signed long *) x)
-#define ucscpy(x,y) (UTF32 *)wcscpy((signed long *)x,(signed long *)y)
-#define ucscat(x,y) (UTF32 *)wcscat((signed long *)x,(signed long *)y)
-#define ucschr(x,y) (UTF32 *)wcschr((signed long *)x,(signed long)y)
-#define ucsrchr(x,y) (UTF32 *)wcsrchr((signed long *)x,(signed long)y)
+#define ucslen(x) wcslen((wchar_t *) x)
+#define ucscpy(x,y) (UTF32 *)wcscpy((wchar_t *)x,(wchar_t *)y)
+#define ucscat(x,y) (UTF32 *)wcscat((wchar_t *)x,(wchar_t *)y)
+#define ucschr(x,y) (UTF32 *)wcschr((wchar_t *)x,(wchar_t)y)
+#define ucsrchr(x,y) (UTF32 *)wcsrchr((wchar_t *)x,(wchar_t)y)
 
 #define UNINUM
 


signature.asc
Description: Digital signature


Bug#607774: gir-repository: FTBFS when building nautilus bindings on lenny

2010-12-21 Thread Andres Salomon
Package: gir-repository
Version: 0.6.5-7
Severity: serious

While building a backport of this package, the build fails with the
following error:

/usr/bin/g-ir-scanner -v --namespace Avahi --nsversion=0.6 \
 --strip-prefix=Ga \
 --add-include-path=. --add-include-path=. \
 --include=AvahiCore-0.6 \
 --include=GObject-2.0 \
 --library=avahi-gobject \
 --libtool=/bin/sh ../libtool \
 --output Avahi-0.6.gir \
 --pkg avahi-gobject \
 `pkg-config --variable=includedir avahi-gobject`/avahi-gobject/*.h
/usr/bin/g-ir-scanner -v --namespace Babl --nsversion=0.0 \
--add-include-path=. --add-include-path=. \
--include=GObject-2.0 \
--library=babl-0.0 \
--libtool=/bin/sh ../libtool \
--output Babl-0.0.gir \
--pkg babl \
`pkg-config --variable=includedir babl`/babl-0.0/babl/*.h
In file included from stdin:4:
/usr/include/babl-0.0/babl/babl-component.h:20:2: error: #error this file is 
only to be included by babl.h
In file included from stdin:5:
/usr/include/babl-0.0/babl/babl-conversion.h:20:2: error: #error this file is 
only to be included by babl.h
In file included from stdin:6:
/usr/include/babl-0.0/babl/babl-extension.h:20:2: error: #error this file is 
only to be included by babl.h
In file included from stdin:7:
/usr/include/babl-0.0/babl/babl-fish.h:20:2: error: #error this file is only to 
be included by babl.h
In file included from stdin:8:
/usr/include/babl-0.0/babl/babl-format.h:20:2: error: #error this file is only 
to be included by babl.h
/usr/include/babl-0.0/babl/babl-component.h:26: syntax error, unexpected 
identifier in 'BABL_NAMED_CLASS (component);' at 'BABL_NAMED_CLASS'
/usr/include/babl-0.0/babl/babl-component.h:32: syntax error, unexpected 
identifier, expecting ')' or ',' in 'void babl_component_each (BablEachFunction 
each_fun,' at 'each_fun'
/usr/include/babl-0.0/babl/babl-component.h:33: syntax error, unexpected ')', 
expecting ',' or ';' in 'void *user_data);' at ')'
/usr/include/babl-0.0/babl/babl-component.h:34: syntax error, unexpected ')', 
expecting ',' or ';' in 'Babl * babl_component (const char *name);' at ')'
/usr/include/babl-0.0/babl/babl-component.h:36: syntax error, unexpected 
ELLIPSIS, expecting identifier or '(' or '*' in '...) 
BABL_ARG_NULL_TERMINATED;' at '...'
/usr/include/babl-0.0/babl/babl-component.h:40: syntax error, unexpected 
identifier in '  BablInstance instance;' at 'BablInstance'
/usr/include/babl-0.0/babl/babl-component.h:44: syntax error, unexpected '}' in 
'} BablComponent;' at '}'
/usr/include/babl-0.0/babl/babl-conversion.h:34: syntax error, unexpected 
identifier, expecting ')' or ',' in 'void babl_conversion_each 
(BablEachFunction each_fun,' at 'each_fun'
/usr/include/babl-0.0/babl/babl-conversion.h:35: syntax error, unexpected ')', 
expecting ',' or ';' in 'void *user_data);' at ')'
/usr/include/babl-0.0/babl/babl-conversion.h:36: syntax error, unexpected ')', 
expecting ',' or ';' in 'Babl * babl_conversion (const char *name);' at ')'
/usr/include/babl-0.0/babl/babl-conversion.h:38: syntax error, unexpected 
ELLIPSIS, expecting identifier or '(' or '*' in '...) 
BABL_ARG_NULL_TERMINATED;' at '...'
/usr/include/babl-0.0/babl/babl-conversion.h:65: syntax error, unexpected 
identifier in '  BablInstance instance;' at 'BablInstance'
/usr/include/babl-0.0/babl/babl-conversion.h:78: syntax error, unexpected '}' 
in '} BablConversion;' at '}'
/usr/include/babl-0.0/babl/babl-extension.h:30: syntax error, unexpected 
identifier, expecting ')' or ',' in 'void babl_extension_each (BablEachFunction 
each_fun,' at 'each_fun'
/usr/include/babl-0.0/babl/babl-extension.h:31: syntax error, unexpected ')', 
expecting ',' or ';' in 'void *user_data);' at ')'
/usr/include/babl-0.0/babl/babl-extension.h:32: syntax error, unexpected ')', 
expecting ',' or ';' in 'Babl * babl_extension (const char *name);' at ')'
/usr/include/babl-0.0/babl/babl-extension.h:34: syntax error, unexpected 
ELLIPSIS, expecting identifier or '(' or '*' in '...) 
BABL_ARG_NULL_TERMINATED;' at '...'
/usr/include/babl-0.0/babl/babl-extension.h:38: syntax error, unexpected 
identifier in '  BablInstance instance; /* path to .so / .dll is stored in 
instance name */' at 'BablInstance'
/usr/include/babl-0.0/babl/babl-extension.h:41: syntax error, unexpected '}' in 
'} BablExtension;' at '}'
/usr/include/babl-0.0/babl/babl-fish.h:31: syntax error, unexpected CONST, 
expecting identifier or '(' or '*' in 'const void 
*destination_format);' at 'const'
/usr/include/babl-0.0/babl/babl-fish.h:31: syntax error, unexpected ')', 
expecting ',' or ';' in 'const void 
*destination_format);' at ')'

Processed: severity of 607693 is grave

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

 severity 607693 grave
Bug #607693 [mhonarc] mhonarc: cross-site scripting when converting HTML mails
Severity set to 'grave' from 'important'

 thanks
Stopping processing here.

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


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



Bug#607775: /usr/bin/vnc4server: cannot start vncserver

2010-12-21 Thread Paul Bone
Package: vnc4server
Version: 4.1.1+X4.3.0-37
Severity: grave
File: /usr/bin/vnc4server
Justification: renders package unusable

I cannot start the vncserver.

If I execute vncserver at the command line the message says that the server
has started but the log file reports an error.  I cannot connect to the server
and the process has exited.

I tried with and without my ~/.vnc/xstartup file.  I created such a file for
vncserver on other hosts, this is the first time I've used vncserver on this
host.

The logfile's contents are:

Xvnc Free Edition 4.1.1 - built Mar 10 2010 22:35:30
Copyright (C) 2002-2005 RealVNC Ltd.
See http://www.realvnc.com for information on VNC.
Underlying X server release 4030, The XFree86 Project, Inc


Wed Dec 22 10:39:58 2010
 vncext:  VNC extension running!
 vncext:  Listening for VNC connections on port 5901
 vncext:  created VNC server for screen 0
error opening security policy file /etc/X11/xserver/SecurityPolicy
Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, removing 
from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo/, removing 
from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/misc/, removing 
from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/75dpi/, removing 
from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/100dpi/, removing 
from list!

Fatal server error:
could not open default font 'fixed'
xsetroot:  unable to open display 'paper:1'
vncconfig: unable to open display paper:1
Option --login is no longer supported in this version of gnome-terminal; 
you might want to create a profile with the desired setting, and use the new 
'--profile' option
Window manager error: Unable to open X display paper:1
Failed to parse arguments: Cannot open display: 

Those font paths don't exist on my system, my fonts seem to be in
/usr/share/fonts.

The system's hostname is 'paper'.

This logfile was generated when using no ~/.vnc/xstartup file, that is the
vncserver placed its default file there.

Thanks.

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

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

Versions of packages vnc4server depends on:
ii  libc6   2.11.2-7 Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.4.5-8GCC support library
ii  libstdc++6  4.4.5-8  The GNU Standard C++ Library v3
ii  libx11-62:1.3.3-4X11 client-side library
ii  libxext62:1.1.2-1X11 miscellaneous extension librar
ii  libxtst62:1.1.0-3X11 Testing -- Record extension li
ii  x11-common  1:7.5+8  X Window System (X.Org) infrastruc
ii  xbase-clients   1:7.5+8  miscellaneous X clients - metapack
ii  xserver-common  2:1.7.7-10   common files used by various X ser
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages vnc4server recommends:
ii  xfonts-base   1:1.0.1standard fonts for X

Versions of packages vnc4server suggests:
pn  vnc-java  none (no description available)

-- no debconf information


signature.asc
Description: Digital signature


Bug#607751: Updating other software gets snort running again

2010-12-21 Thread GSR
Hi:

Updating other (unrelated?) software got it running with the
following:

---8---
Reading package lists... Done
Building dependency tree... 0%
Building dependency tree   
Reading state information... Done
Calculating upgrade... Done
The following packages will be upgraded:
  dbus dbus-x11 libdbus-1-3 libdbus-1-dev libtalloc-dev libtalloc2
6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0 B/665 kB of archives.
After this operation, 32.8 kB of additional disk space will be used.
Reading package fields... Done 
Reading package status... Done
Retrieving bug reports... Done
Parsing Found/Fixed information... Done
(Reading database ... 147181 files and directories currently installed.)
Preparing to replace dbus-x11 1.2.24-3 (using .../dbus-x11_1.2.24-4_i386.deb) 
...
Unpacking replacement dbus-x11 ...
Preparing to replace libdbus-1-dev 1.2.24-3 (using 
.../libdbus-1-dev_1.2.24-4_i386.deb) ...
Unpacking replacement libdbus-1-dev ...
Preparing to replace libdbus-1-3 1.2.24-3 (using 
.../libdbus-1-3_1.2.24-4_i386.deb) ...
Unpacking replacement libdbus-1-3 ...
Preparing to replace dbus 1.2.24-3 (using .../dbus_1.2.24-4_i386.deb) ...
Unpacking replacement dbus ...
Preparing to replace libtalloc-dev 2.0.1-1 (using 
.../libtalloc-dev_2.0.4-1_i386.deb) ...
Unpacking replacement libtalloc-dev ...
Preparing to replace libtalloc2 2.0.1-1 (using .../libtalloc2_2.0.4-1_i386.deb) 
...
Unpacking replacement libtalloc2 ...
Processing triggers for man-db ...
Setting up snort (2.8.5.2-3) ...
Stopping Network Intrusion Detection System : snortNo running snort instance 
found ... (warning).
Starting Network Intrusion Detection System : snort (eth0 using 
/etc/snort/snort.conf ...done).
Setting up libdbus-1-3 (1.2.24-4) ...
Setting up dbus (1.2.24-4) ...
Reloading system message bus config...done.
system message bus already started; not starting..
Setting up dbus-x11 (1.2.24-4) ...
Setting up libdbus-1-dev (1.2.24-4) ...
Setting up libtalloc2 (2.0.4-1) ...
Setting up libtalloc-dev (2.0.4-1) ...
---8---

No idea why the config is now valid.

GSR
 



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



Bug#607762: dbus-glib: diff for NMU version 0.88-2.1

2010-12-21 Thread Jonathan Wiltshire
tags 607762 + patch
tags 607762 + pending
thanks

Dear maintainer,

I've prepared an NMU for dbus-glib (versioned as 0.88-2.1) and
uploaded it to DELAYED/7. Please feel free to tell me if I
should delay it longer.

Regards.

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

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51
diff -u dbus-glib-0.88/debian/control dbus-glib-0.88/debian/control
--- dbus-glib-0.88/debian/control
+++ dbus-glib-0.88/debian/control
@@ -8,7 +8,7 @@
Michael Biebl bi...@debian.org
 Build-Depends: cdbs (= 0.4.43),
debhelper (= 7),
-   libglib2.0-dev (= 2.10),
+   libglib2.0-dev (= 2.24),
libdbus-1-dev (= 1.1),
libexpat-dev,
gtk-doc-tools (= 1.4)
diff -u dbus-glib-0.88/debian/changelog dbus-glib-0.88/debian/changelog
--- dbus-glib-0.88/debian/changelog
+++ dbus-glib-0.88/debian/changelog
@@ -1,3 +1,11 @@
+dbus-glib (0.88-2.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Bump minimum build-dependency on libglib2.0-dev to 2.24
+(closes: #607762)
+
+ -- Jonathan Wiltshire j...@debian.org  Wed, 22 Dec 2010 01:46:56 +
+
 dbus-glib (0.88-2) unstable; urgency=medium
 
   * Re-upload to unstable, with release team acknowledgement for squeeze


signature.asc
Description: Digital signature


Processed: dbus-glib: diff for NMU version 0.88-2.1

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

 tags 607762 + patch
Bug #607762 [dbus-glib] dbus-glib: requires higher versioned build-dep on glib
Added tag(s) patch.
 tags 607762 + pending
Bug #607762 [dbus-glib] dbus-glib: requires higher versioned build-dep on glib
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#607778: gssdp: needs versioned build-dep on libsoup2.4-dev

2010-12-21 Thread Andres Salomon
Package: gssdp
Version: 0.8.0-2
Severity: serious

When building gssdp on lenny, I get the following error:

make[4]: Entering directory `/gssdp-0.8.0/libgssdp'
  CC gssdp-client.lo
/bin/sh ../libtool --silent --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. 
-I..-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2   -I.. -g -O2 -g -Wall -O2 -c 
-o gssdp-client.lo gssdp-client.c
  CC gssdp-error.lo
/bin/sh ../libtool --silent --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. 
-I..-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2   -I.. -g -O2 -g -Wall -O2 -c 
-o gssdp-error.lo gssdp-error.c
  CC gssdp-resource-browser.lo
/bin/sh ../libtool --silent --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. 
-I..-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2   -I.. -g -O2 -g -Wall -O2 -c 
-o gssdp-resource-browser.lo gssdp-resource-browser.c
gssdp-resource-browser.c: In function ‘resource_available’:
gssdp-resource-browser.c:610: warning: implicit declaration of function 
‘soup_message_headers_get_one’
gssdp-resource-browser.c:610: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-browser.c:636: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-browser.c:667: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-browser.c:717: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-browser.c:721: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-browser.c: In function ‘resource_unavailable’:
gssdp-resource-browser.c:766: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-browser.c: In function ‘received_discovery_response’:
gssdp-resource-browser.c:800: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-browser.c: In function ‘received_announcement’:
gssdp-resource-browser.c:816: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-browser.c:823: warning: assignment makes pointer from integer 
without a cast
  CC gssdp-resource-group.lo
/bin/sh ../libtool --silent --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. 
-I..-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2   -I.. -g -O2 -g -Wall -O2 -c 
-o gssdp-resource-group.lo gssdp-resource-group.c
gssdp-resource-group.c: In function ‘message_received_cb’:
gssdp-resource-group.c:758: warning: implicit declaration of function 
‘soup_message_headers_get_one’
gssdp-resource-group.c:758: warning: assignment makes pointer from integer 
without a cast
gssdp-resource-group.c:769: warning: assignment makes pointer from integer 
without a cast
  CC gssdp-socket-source.lo
/bin/sh ../libtool --silent --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. 
-I..-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2   -I.. -g -O2 -g -Wall -O2 -c 
-o gssdp-socket-source.lo gssdp-socket-source.c
  CC gssdp-marshal.lo
/bin/sh ../libtool --silent --tag=CC   --mode=compile cc -DHAVE_CONFIG_H -I. 
-I..-pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2   -I.. -g -O2 -g -Wall -O2 -c 
-o gssdp-marshal.lo gssdp-marshal.c
  CCLD   libgssdp-1.0.la
  GENGSSDP-1.0.gir
./.libs/libgssdp-1.0.so: undefined reference to `soup_message_headers_get_one'
collect2: ld returned 1 exit status
Traceback (most recent call last):
  File /usr/bin/g-ir-scanner, line 38, in module
sys.exit(scanner_main(sys.argv))
  File /usr/lib/gobject-introspection/giscanner/scannermain.py, line 317, in 
scanner_main
glibtransformer.get_get_type_functions())
  File /usr/lib/gobject-introspection/giscanner/dumper.py, line 231, in 
compile_introspection_binary
return dc.run()
  File /usr/lib/gobject-introspection/giscanner/dumper.py, line 132, in run
self._link(bin_path, o_path)
  File /usr/lib/gobject-introspection/giscanner/dumper.py, line 226, in _link
subprocess.check_call(args)
  File /usr/lib/python2.5/subprocess.py, line 462, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['../libtool', '--mode=link', 
'--tag=CC', '--silent', 'gcc', '-o', 
'/gssdp-0.8.0/libgssdp/tmp-introspectc5UT_a/GSSDP-1.0', '-g', '-O2', '-g', 
'-Wall', '-O2', '-L.', 'libgssdp-1.0.la', '-pthread', '-Wl,--export-dynamic', 
'-lgio-2.0', '-lgirepository-1.0', '-lgobject-2.0', '-lgmodule-2.0', '-lffi', 
'-lgthread-2.0', '-lrt', '-lglib-2.0', 
'/gssdp-0.8.0/libgssdp/tmp-introspectc5UT_a/GSSDP-1.0.o']' returned non-zero 
exit status 1
make[4]: *** [GSSDP-1.0.gir] Error 1
make[4]: Leaving directory `/gssdp-0.8.0/libgssdp'
make[3]: *** [all] Error 2
make[3]: Leaving directory 

Bug#607781: pcsc-lite: buffer overflow

2010-12-21 Thread Michael Gilbert
package: pcsc-lite
version: 1.4.102-1+lenny3
severity: serious
tags: security

an advisory has been issued for pcsc-lite:
http://labs.mwrinfosecurity.com/files/Advisories/mwri_pcsc-atr-handler-buffer-overflow_2010-12-13.pdf

i have checked that the vulnerable code is present in both lenny and
sid.

mike



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



Bug#607780: ccid: buffer overflow

2010-12-21 Thread Michael Gilbert
package: ccid
version: 1.3.8-1
severity: serious
tags: security

an advisory has been issued for the pcsc-lite ccid driver:
http://labs.mwrinfosecurity.com/files/Advisories/mwri_pcsc-libccid-buffer-overflow_2010-12-13.pdf

i have checked that the vulnerable code is present in both lenny and
sid.

mike



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



Processed: your mail

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

 reassign 607427 opensc
Bug #607427 [libopensc2] libopensc: protect for possible buffer overflows from 
rogue cards.
Bug reassigned from package 'libopensc2' to 'opensc'.
Bug No longer marked as found in versions opensc/0.11.13-1 and 
opensc/0.11.4-5+lenny1.
 forcemerge 607427 607732
Bug#607427: libopensc: protect for possible buffer overflows from rogue cards.
Bug#607732: opensc: buffer overflow with rogue cards
Forcibly Merged 607427 607732.

 thanks
Stopping processing here.

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


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



Bug#607774: gir-repository: FTBFS when building nautilus bindings on lenny

2010-12-21 Thread Nobuhiro Iwamatsu
severity 607774 wishlist
thanks

Hi,

 While building a backport of this package, the build fails with the
 following error:

This is not RC bug.
I changed severity to wishlist.

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6



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



Processed: Re: gir-repository: FTBFS when building nautilus bindings on lenny

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

 severity 607774 wishlist
Bug #607774 [gir-repository] gir-repository: FTBFS when building nautilus 
bindings on lenny
Severity set to 'wishlist' from 'serious'

 thanks
Stopping processing here.

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


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



Bug#607693: CVE Request -- MHonArc: Improper escaping of certain HTML sequences (XSS)

2010-12-21 Thread Raphael Geissert
Earl Hood wrote:
 With that said, do have an available patch that fixes
 the problem?
 
 If not, I can look into it during the holiday break to
 get a fix for it.  Note, even if there is a fix for the
 case you provided, there is no 100% guarantee that there
 could be other data input sequences that get by the filter.
 Hence, those concerned about security disable the
 HTML filter:

Attached patch is a quick way to fix it. It increases the processing time 
(it has to run filter() at least twice per message,) but ensures that no 
undesired html is returned (unless one of the existing routines misses 
something.)

What do you think about it?

Regards,
-- 
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net
diff -urpN mhonarc-2.6.16-1.orig/lib/mhtxthtml.pl mhonarc-2.6.16-1/lib/mhtxthtml.pl
--- mhonarc-2.6.16-1.orig/lib/mhtxthtml.pl	2005-05-01 19:04:39.0 -0500
+++ mhonarc-2.6.16-1/lib/mhtxthtml.pl	2010-12-21 21:09:52.0 -0600
@@ -125,6 +125,7 @@ sub filter {
 }
 
 local(@files) = ();	# XXX: Used by resolve_cid!!!
+my $orig_data = $$data;
 my $base 	 = '';
 my $title	 = '';
 my $noscript = 1;
@@ -352,6 +353,10 @@ sub filter {
 ## http://www.google.com/googleblog/2005/01/preventing-comment-spam.html
 $$data =~ s/(a\b)/$1 rel=nofollow/gi;
 
+if ($$data ne $orig_data) {
+	undef $orig_data;
+	return filter(@_);
+}
 ($title.$$data, @files);
 }
 



Processed: Re: grub-pc: GRUB Hangs After Welcome to GRUB!

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

 # David A. Greene wrote:
 #
 #  Severity: critical
 #  Tags: d-i
 #  Justification: breaks the whole system
 # [...]
 #  On an Acer Aspire One AO751h, GRUB fails to boot.  It hangs at Welcome 
 to GRUB!
 #
 # Let's narrow this down a bit, so testers can tell if it should apply to 
 them.
 retitle 594967 [poulsbo] grub-pc Hangs After Welcome to GRUB!
Bug #594967 [grub-pc] grub-pc: GRUB Hangs After Welcome to GRUB!
Bug #598668 [grub-pc] Installation fails on acer aspire one za3
Changed Bug title to '[poulsbo] grub-pc Hangs After Welcome to GRUB!' from 
'grub-pc: GRUB Hangs After Welcome to GRUB!'
Changed Bug title to '[poulsbo] grub-pc Hangs After Welcome to GRUB!' from 
'Installation fails on acer aspire one za3'

End of message, stopping processing here.

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


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



Bug#607778: gssdp: needs versioned build-dep on libsoup2.4-dev

2010-12-21 Thread Nobuhiro Iwamatsu
severity 607778 wishlist
thanks

Hi,

 When building gssdp on lenny, I get the following error:

This is not RC bug.
I changed severity to wishlist.

Best regards,
 Nobuhiro
-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6



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



Processed: Re: gssdp: needs versioned build-dep on libsoup2.4-dev

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

 severity 607778 wishlist
Bug #607778 [gssdp] gssdp: needs versioned build-dep on libsoup2.4-dev
Severity set to 'wishlist' from 'serious'

 thanks
Stopping processing here.

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


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



Bug#607775: /usr/bin/vnc4server: cannot start vncserver

2010-12-21 Thread Roman Mamedov
On Wed, 22 Dec 2010 10:56:44 +1100
Paul Bone pb...@csse.unimelb.edu.au wrote:

 I cannot start the vncserver.
 
 If I execute vncserver at the command line the message says that the server
 has started but the log file reports an error.  I cannot connect to the
 server and the process has exited.
 
 I tried with and without my ~/.vnc/xstartup file.  I created such a file for
 vncserver on other hosts, this is the first time I've used vncserver on this
 host.

Try creating /etc/X11/xorg.conf and putting there:
--

Section Files
FontPath/usr/share/fonts/X11/misc
FontPath/usr/share/fonts/X11/100dpi:unscaled
FontPath/usr/local/share/fonts
EndSection

--
Or simply copy the xorg.conf from any Debian machine where you have X.Org
working. Nevertheless this might be indeed a bug in default config (since
fonts are now in /usr/share/fonts).

-- 
With respect,
Roman


signature.asc
Description: PGP signature


Bug#605777: Bug#605065: Bug#607662: ncurses-base: backspace key deletes forwards on the kFreeBSD console

2010-12-21 Thread Petr Salinger

You really can't just unilaterally change the cons25 terminfo entry.  If
this proposed change is implemented, people running stock FreeBSD will
have their consoles broken if they log into a Debian system.  If
kFreeBSD needs different settings than the stock cons25 entry, it needs
to create and use a different TERM type.


Yes, changing cons25 terminfo entry is no option.
The creating of completely new terminfo entry is also no option,
as it means the new entry would be unknown on all other systems.
Moreover it would need changes to some other packages, at least sysvinit.


The new entry would presumably be pushed to ncurses upstream, who has
already weighed in here.  I'll write the terminfo entry myself and
attach it to this bug.  Assuming I can test this with kvm, I'll also
look at patching sysvinit and seeing what breaks.

My proposed name for the terminal name is cons25-debian, but you're
obviously free to change it to something more suitable.  Also feel free
to point me towards programs that break that I should test.  Obviously,
I'll be testing vim.


I am still unsure whether this is the right way to go.
It seems that current plain FreeBSD kernel generates events
that fully corresponds to cons25 entry.

It just uses different definitions for kbs and kdch1 
wrt Linux,


Linux:  kbs=\177 kdch1=\E[3~
FreeBSD/cons25s kbs=^H   kdch1=\177

The problem might be incorect stty erase setting,
programs that do not honor these settings
or some workarounds in programs.

It seems that upstream FreeBSD plans to switch their $TERM into xterm,
via TEKEN_XTERM.

Petr



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