Re: Reminder: D-I team meeting April 11th 20:00

2009-04-12 Thread Adeodato Simó
+ Christian Perrier (Sun, 12 Apr 2009 08:00:33 +0200):

> I'd like to keep Mondays with a two weeks rhythm

I think having regular meetings is not a bad idea, even if the’re going
to be really quick some of the times because there may not be much to
discuss. Though it should be worth mentioning what the expected duration
is going to be.

Anyway, my point is that if you’re going to hold regular meetings, the
best you can do (for hopefully obvious reasons) is coming up with a rule
that let’s you immediately know when the next meeting is, without having
to know when the previous one was. The typical “the first Thursday of
each month” people use. I’ll note Your proposed “every other Monday”
does not meet the rule, unless you’d be geeky and say “Mondays when
`date +%V` is even”.

Just my 0.5¢,

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai


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



Re: Reminder: D-I team meeting April 11th 20:00

2009-04-12 Thread Christian Perrier
Quoting Adeodato Simó (d...@net.com.org.es):

> 
> Anyway, my point is that if you’re going to hold regular meetings, the
> best you can do (for hopefully obvious reasons) is coming up with a rule
> that let’s you immediately know when the next meeting is, without having
> to know when the previous one was. The typical “the first Thursday of
> each month” people use. I’ll note Your proposed “every other Monday”
> does not meet the rule, unless you’d be geeky and say “Mondays when
> `date +%V` is even”.


Agreed. I use the "very other " rule atwork very often (I'm a
geat user of regular meetings, actually, my scheduler isfull of such
beasts), but we have a common Agenda software to handle this.

What about "Every 1st and 3rd Monday of each month" ? This will
obviously make a 3 week delay sometimes but that would be the price to
pay to simplicity.

We could also decide by advance what the maximum meeting duration
would be. 1h30 seems to be appropriate for me. If we have very
specific stuff that need longer discussions, we can still plan special
meetigns for it.




signature.asc
Description: Digital signature


Re: How about playing a game while installing Debian?

2009-04-12 Thread Davide Viti
Hi,
during the Extremadura meeting about g-i, we talked about the
possibility of having the chante to play games during an installation.
There are still some evidence of this in the wiki [1]

regards,
Davide

[1] http://wiki.debian.org/DebianInstaller/GUIToDo#Games




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



Re: How about playing a game while installing Debian?

2009-04-12 Thread Sam Morris
On Sat, 11 Apr 2009 17:51:09 +0200, Evgeni Golov wrote:

> Dear debian-boot,
> 
> some time ago I was cleaning the gnujump package and noticed some
> commented notes about udeb creation in the packaging, asking the
> main-maintainer, he said that this was an idea to give users the
> possibility to play while waiting for D-I, but was never finished.
> 
> So now I'd like to ask you, what you think about the idea to add some
> (small) games, so users can relax while D-I is fetching packages etc.
> The games should be easy and fast-playing (no civilization clone where
> you need 2 hours for a good game :)), so I'd suggest something like
> bsdgames, sudoku, ninvaders etc, but also the already named gnujump
> (sdl), maybe some poker and tetris games... You guess what I mean :)
> 
> Please add your 0.02€ to the bin, and tell us whether you like the idea
> (and if so, which games you'd love to see).

I thought it was a great idea, but ISTR reading somewhere that the idea 
was patented. Unfortunately I have not found a reference after some quick 
Googling, so perhaps it is not the case. :)
 
> Kind regards
> Evgeni Golov
> Debian Games Team
> 
> PS: please keep -games@ CC'ed if possible.

-- 
Sam Morris
https://robots.org.uk/
 
PGP key id 1024D/5EA01078
3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078


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



Bug#311158: marked as done (busybox-cvs: support for dpkg 1.13)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 13:28:19 +0200
with message-id <20090412112819.gc13...@wavehammer.waldi.eu.org>
and subject line superseeded
has caused the Debian Bug report #311158,
regarding busybox-cvs: support for dpkg 1.13
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.)


-- 
311158: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=311158
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: busybox-cvs
Version: 20040623-1
Severity: wishlist
Tags: patch

Please apply the attached patch to support dpkg 1.13, which prints
different output for the DEB_HOST_GNU_* variables from
dpkg-architecture. The new variables are those recommended in the
changelog.

Thanks,

-- 
Colin Watson   [cjwat...@debian.org]
diff -u busybox-cvs-20040623/debian/rules busybox-cvs-20040623/debian/rules
--- busybox-cvs-20040623/debian/rules
+++ busybox-cvs-20040623/debian/rules
@@ -4,8 +4,8 @@
 #export DH_VERBOSE=1
 
 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
-DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
-DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM)
+DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null 
|| dpkg-architecture -qDEB_HOST_GNU_CPU)
+DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null 
|| dpkg-architecture -qDEB_HOST_GNU_SYSTEM)
 
 VERSION = $(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2)
 EXTRA_VERSION = Debian $(VERSION)
@@ -31,7 +31,7 @@
 DEBHELPER_PACKAGES_DEB = $(patsubst %,-p%,$(PACKAGES_DEB))
 DEBHELPER_PACKAGES_UDEB = $(patsubst %,-p%,$(PACKAGES_UDEB))
 
-CONFIG = $(firstword $(wildcard 
./debian/config-$(1)-$(DEB_HOST_GNU_SYSTEM)-$(DEB_HOST_GNU_CPU) 
./debian/config-$(1)-$(DEB_HOST_GNU_SYSTEM) ./debian/config-$(1)))
+CONFIG = $(firstword $(wildcard 
./debian/config-$(1)-$(DEB_HOST_ARCH_OS)-$(DEB_HOST_ARCH_CPU) 
./debian/config-$(1)-$(DEB_HOST_ARCH_OS) ./debian/config-$(1)))
 CONFIG_DEB = $(call CONFIG,deb)
 CONFIG_STATIC = $(call CONFIG,static)
 CONFIG_UDEB = $(call CONFIG,udeb)
--- End Message ---
--- Begin Message ---
The bug was fixed another way.

Bastian

-- 
There is a multi-legged creature crawling on your shoulder.
-- Spock, "A Taste of Armageddon", stardate 3193.9

--- End Message ---


Bug#358789: marked as done (allow build on *-uclibc)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 13:27:08 +0200
with message-id <20090412112708.gb13...@wavehammer.waldi.eu.org>
and subject line fixed
has caused the Debian Bug report #358789,
regarding allow build on *-uclibc
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.)


-- 
358789: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=358789
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: busybox
Severity: minor
Tags: patch

--- busybox-1.01/Rules.mak.in   2006-03-12 14:58:03.0 +0100
+++ busybox-1.01-4.my/Rules.mak.in  2006-03-12 14:45:00.0 +0100
@@ -133,6 +133,9 @@
LIBRARIES:=-lefence
 endif
 endif
+ifeq ($(host_os),linux-uclibc)
+   CFLAGS += -D_GNU_SOURCE
+endif
 ifeq ($(host_os),linux-gnu)
CFLAGS += -D_GNU_SOURCE
 endif

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


--- End Message ---
--- Begin Message ---
Fix several versions ago.

Bastian

-- 
What kind of love is that?  Not to be loved; never to have shown love.
-- Commissioner Nancy Hedford, "Metamorphosis",
   stardate 3219.8

--- End Message ---


Bug#251846: marked as done (busybox-cvs: debian/rules does clean before building)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 13:26:34 +0200
with message-id <20090412112634.ga13...@wavehammer.waldi.eu.org>
and subject line Fixed
has caused the Debian Bug report #251846,
regarding busybox-cvs: debian/rules does clean before building
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.)


-- 
251846: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=251846
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: busybox-cvs
Severity: normal


build-arch-deb-stamp: config.status
  $(MAKE) clean

This doesn't seem right to me.  If I want to build it, I want to build
it, not clean it.  There is a separate target for that.  This is
frustrating because I want to tweak something a abit and rebuild the
whole package.

Aside from that though...busybox is too cool!  Thanks,
Dave

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.6
Locale: LANG=C, LC_CTYPE=C

--- End Message ---
--- Begin Message ---
The busybox packaging split the building and don't longer use make clean
in between.

Bastian

-- 
"We have the right to survive!"
"Not by killing others."
-- Deela and Kirk, "Wink of An Eye", stardate 5710.5

--- End Message ---


Bug#257201: marked as done (modprobe returns failure code if module already loaded)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 14:11:19 +0200
with message-id <20090412121119.ga14...@wavehammer.waldi.eu.org>
and subject line fixed
has caused the Debian Bug report #257201,
regarding modprobe returns failure code if module already loaded
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.)


-- 
257201: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=257201
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: busybox-cvs
Severity: normal

On i386 with the 2.4.26 kernel, busybox modprobe returns a exit status
of 1 if the module is already loaded. This diverges from the standard
modutils modprobe, which returns 0 in this case, and it leads to
unexpected bugs like #257191. busybox modprobe should have the same
behavior as modutils modprobe.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.4.26
Locale: LANG=en_US, LC_CTYPE=en_US

-- 
see shy jo


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
This was fixed some time ago.

Bastian

-- 
The more complex the mind, the greater the need for the simplicity of play.
-- Kirk, "Shore Leave", stardate 3025.8

--- End Message ---


Bug#337880: marked as done (Please provide an upgrade path from busybox-cvs to busybox)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 14:13:57 +0200
with message-id <20090412121357.gd14...@wavehammer.waldi.eu.org>
and subject line unfixed, sarge specific
has caused the Debian Bug report #337880,
regarding Please provide an upgrade path from busybox-cvs to busybox
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.)


-- 
337880: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=337880
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: busybox
Severity: normal

Hello,
The busybox-cvs has been removed from unstable but it is still available
in current stable (sarge). Please provide an upgrade path from busybox-cvs
to busybox.

Regards
Artur

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

--- End Message ---
--- Begin Message ---
sarge, which was the last version with busybox-cvs, is long gone. No
need to worry about further.

Bastian

-- 
The sight of death frightens them [Earthers].
-- Kras the Klingon, "Friday's Child", stardate 3497.2

--- End Message ---


Processed: forcibly merging 487433 266498

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

> forcemerge 487433 266498
Bug#487433: tar creation support for live-installer
Bug#266498: debian-installer: 'tar' command does not support '-c' parameter
Forcibly Merged 266498 487433.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#394805: marked as done (segmentation fault on command -v)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 14:12:37 +0200
with message-id <20090412121237.gc14...@wavehammer.waldi.eu.org>
and subject line fixed
has caused the Debian Bug report #394805,
regarding segmentation fault on command -v
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.)


-- 
394805: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=394805
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: dash
Version: 0.5.3-3
Severity: important

Hi dash maintainer,

I just found this bug which is easily reproductible:

% dash -c 'command -v'
zsh: segmentation fault  dash -c 'command -v'

Here's the full backtrace:

#0  0xa7efad18 in strcmp () from /lib/tls/i686/cmov/libc.so.6
No symbol table info available.
#1  0xa7eba19d in bsearch () from /lib/tls/i686/cmov/libc.so.6
No symbol table info available.
#2  0x08051c81 in findstring (s=0x0, array=0x8059bc0, nmemb=16) at
mystring.c:208
No locals.
#3  0x08052a03 in findkwd (s=0x0) at parser.c:1591
No locals.
#4  0x0804c29c in describe_command (out=0x805c618, command=0x0,
verbose=0) at exec.c:763
entry = {cmdtype = 1, u = {index = -1342641372, cmd =
0xaff8eb24, func = 0xaff8eb24}}
cmdp = 
ap = 
path = 0xaff8eb24
"/home/jdanjou/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games"
#5  0x0804b030 in evalbltin (cmd=0x805a8a0, argc=2, argv=0x805eb24) at
eval.c:922
savecmdname = 0x0
savehandler = (struct jmploc * volatile) 0xaff8d210
jmploc = {loc = {{__jmpbuf = {134605604, -1342641372, 2,
-1342648008, -1342648208, 134524898}, __mask_was_saved = 0, 
  __saved_mask = {__val = {0, 0, 0, 134608728, 0, 0, 1, 134588576,
134533085, 134605588, 134582336, 0, 0, 0, 0, 0, 
  134596536, 134605596, 134582339, 2952319288, 134538800,
134605588, 0, 2952319256, 134561297, 0, 134605532, 2952319288, 
  134561797, 134605508, 134605588, 2952319288}
i = 0
#6  0x0804b6d9 in evalcommand (cmd=0x805eaf4, flags=0) at eval.c:863
i = 
smark = {stackp = 0x805eac0, stacknxt = 0x805eb04 "command",
stacknleft = 440, marknext = 0xaff8d1e0}
argp = (union node *) 0xaff8eb24
arglist = {list = 0x805eb0c, lastp = 0x805eb1c}
varlist = {list = 0x0, lastp = 0xaff8d18c}
argv = 
argc = 2
sp = 
cmdentry = {cmdtype = 2, u = {index = 134588576, cmd =
0x805a8a0, func = 0x805a8a0}}
jp = 
lastarg = 0x0
path = 0xaff8eb24
"/home/jdanjou/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games"
spclbltin = 0
execcmd = 0
status = 0
nargv = 
#7  0x0804a879 in evaltree (n=0x805eaf4, flags=0) at eval.c:291
checkexit = 0
evalfn = (void (*)(union node *, int)) 0
isor = 
status = 0
#8  0x0804b7e1 in evalstring (s=0xaff8e5bf "command -v", mask=0) at
eval.c:176
n = (union node *) 0x0
smark = {stackp = 0x805eac0, stacknxt = 0x805eac4 "command",
stacknleft = 504, marknext = 0xaff8d2ac}
skip = 0
#9  0x08050d39 in main (argc=3, argv=0xaff8d354) at main.c:174
shinit = 
state = 4
jmploc = {loc = {{__jmpbuf = {-1476669452, 0, -1476477760,
-1342647608, -1342647808, 134548661}, __mask_was_saved = 0, 
  __saved_mask = {__val = {2818393456, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0,
0, 0, 2952319744, 2818491640, 134515830, 24641422, 
  16777216, 0, 0, 0, 0, 0, 2952324502, 2817469806, 2818123913,
2818297844, 2952319656, 134518608, 2818297844, 134595688, 
  2952319672}
smark = {stackp = 0x805eac0, stacknxt = 0x805eac4 "command",
stacknleft = 504, marknext = 0x0}


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

Versions of packages dash depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries

dash recommends no packages.

-- debconf information:
  dash/sh: false

-- 
Julien Danjou
// Λ̊http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
// Life is life. Lalalalala.


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
This was fixed some time ago.

Bastian

-- 
You're dead, Jim.
-- McCoy, "Amok Time", stardate 3372.7

--- End Message ---


Bug#466771: marked as done (busybox cpio: does not unpack hardlinks to empty files)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 14:11:41 +0200
with message-id <20090412121141.gb14...@wavehammer.waldi.eu.org>
and subject line fixed
has caused the Debian Bug report #466771,
regarding busybox cpio: does not unpack hardlinks to empty files
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.)


-- 
466771: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=466771
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: busybox
Version: 1:1.1.3-5
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

busybox cpio seems to corrupt its memory (maybe with a double free?)
when extracting a hardlink.

Here's a transcript of a simple case to trigger the failure:

0 d...@ape:/tmp$ mkdir tt
0 d...@ape:/tmp$ touch tt/x
0 d...@ape:/tmp$ ln tt/x tt/y
0 d...@ape:/tmp$ mkdir xx
0 d...@ape:/tmp$ find tt | cpio -H newc --create | (cd xx && busybox cpio -i)
1 block
1 blocks
cpio: TRAILER!!! not created: cannot resolve hardlink
cpio: (null) not created: cannot resolve hardlink
*** glibc detected *** busybox: double free or corruption (fasttop): 0x08178048 
***
=== Backtrace: =
/lib/i686/cmov/libc.so.6[0xb7dd8915]
/lib/i686/cmov/libc.so.6(cfree+0x90)[0xb7ddc380]
busybox[0x805378b]
=== Memory map: 
08048000-080ac000 r-xp  fd:0a 65545  /bin/busybox
080ac000-080ae000 rwxp 00064000 fd:0a 65545  /bin/busybox
080ae000-08199000 rwxp 080ae000 00:00 0  [heap]
b7c0-b7c21000 rwxp b7c0 00:00 0 
b7c21000-b7d0 ---p b7c21000 00:00 0 
b7d6c000-b7d6d000 rwxp b7d6c000 00:00 0 
b7d6d000-b7eb4000 r-xp  fd:0a 114782 /lib/i686/cmov/libc-2.7.so
b7eb4000-b7eb5000 r-xp 00147000 fd:0a 114782 /lib/i686/cmov/libc-2.7.so
b7eb5000-b7eb7000 rwxp 00148000 fd:0a 114782 /lib/i686/cmov/libc-2.7.so
b7eb7000-b7eba000 rwxp b7eb7000 00:00 0 
b7eba000-b7edd000 r-xp  fd:0a 114787 /lib/i686/cmov/libm-2.7.so
b7edd000-b7edf000 rwxp 00023000 fd:0a 114787 /lib/i686/cmov/libm-2.7.so
b7edf000-b7ee8000 r-xp  fd:0a 114784 /lib/i686/cmov/libcrypt-2.7.so
b7ee8000-b7eea000 rwxp 8000 fd:0a 114784 /lib/i686/cmov/libcrypt-2.7.so
b7eea000-b7f12000 rwxp b7eea000 00:00 0 
b7f1a000-b7f26000 r-xp  fd:0a 114764 /lib/libgcc_s.so.1
b7f26000-b7f27000 rwxp b000 fd:0a 114764 /lib/libgcc_s.so.1
b7f27000-b7f29000 rwxp b7f27000 00:00 0 
b7f29000-b7f45000 r-xp  fd:0a 114725 /lib/ld-2.7.so
b7f45000-b7f47000 rwxp 0001b000 fd:0a 114725 /lib/ld-2.7.so
bffb3000-bffc8000 rw-p bffeb000 00:00 0  [stack]
e000-f000 r-xp  00:00 0  [vdso]
134 d...@ape:/tmp$ 

The standard cpio doesn't seem to have this problem:

0 d...@ape:/tmp$ rm -rf xx
0 d...@ape:/tmp$ mkdir xx
0 d...@ape:/tmp$ find tt | cpio -H newc --create | (cd xx && cpio -i)
1 block
1 block
0 d...@ape:/tmp$ ls -lR xx
xx:
total 0
drwxr-xr-x 2 wt215 wt215 80 2008-02-20 15:26 tt

xx/tt:
total 0
- -rw-r--r-- 2 wt215 wt215 0 2008-02-20 15:26 x
- -rw-r--r-- 2 wt215 wt215 0 2008-02-20 15:26 y
0 d...@ape:/tmp$ 

This seems to happen with -t (list) the same as -i (extract), so i
expect it's a problem with parsing, not file creation.

fwiw, it doesn't seem to be a problem with busybox 1.9.1, as built
with waldi's debian packaging at:

 svn://svn.debian.org/d-i/people/waldi/packages/busybox/debian

With version 1.9.1, it still doesn't unpack the hardlinks, but it
doesn't double-free, at least:

0 d...@ape:/tmp$ find tt | cpio -H newc --create | (cd xx && 
~/src/busybox/busybox-1.9.1/debian/busybox/bin/busybox cpio -i)
1 block
1 blocks
cpio: tt/x not created: cannot resolve hardlink
cpio: tt/y not created: cannot resolve hardlink
0 d...@ape:/tmp$ find xx
xx
xx/tt
0 d...@ape:/tmp$ 

Thanks for maintaining busybox in debian!

   --dkg

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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages busybox depends on:
ii  libc6 2.7-6  GNU C Library: Shared libraries

busybox recommends no packages.

- -- no debconf information

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

iQIVAwUBR7yP7szS7ZTSFznpAQKKqw/+MzMP1qA+Ips+xfvshkybvzi436MaDdCM
byP3jbAK0JHvH4Yp4d80ZZD09S21LhlEIfMvPfrZmjmnrWw89QiTB61mNuJHq8xB
JmaHZku/5uXsM5xhk8aTv9xLWrC0R/6iUu3r+9sUwWKwcg3SwCeFeLitV08TYlgM
pO7Fr1uVpBd13A5JZiLvgoSEC6BIjR1ct3yzDbi7B1oOMwPQBF+BkSxUmOsEsQU1
C4VhS+k

Bug#354199: marked as done (busybox: mknod do not test minor and major for 2.6 kernel)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 14:20:40 +0200
with message-id <20090412122040.ge14...@wavehammer.waldi.eu.org>
and subject line fixed
has caused the Debian Bug report #354199,
regarding busybox: mknod do not test minor and major for 2.6 kernel
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.)


-- 
354199: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=354199
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: busybox
Version: 1:1.01-4
Severity: minor


in 2.6, the max value for major is 0xfff

so instead of testing minor and major with fixed value (255)
and as there are no variables MAX_NINOR and MAX_MAJOR

the solution used in coreutils/mknod

i_major != (major_t) i_major
i_minor != (minor_t) i_minor 

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

Versions of packages busybox depends on:
ii  libc6 2.3.6-1GNU C Library: Shared libraries an

busybox recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
This was fixed some time ago.

Bastian

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

--- End Message ---


Bug#523771: console-setup: Corrupted text mode consoles when installed

2009-04-12 Thread Sam Morris
Package: console-setup
Version: 1.30
Severity: normal

After console-setup was first installed, it corrupted all my text mode
consoles. After I rebooted, everything was fine.

00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller (rev 03)

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (400, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages console-setup depends on:
ii  console-terminus  4.26-2.1   Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  xkb-data  1.5-2  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities

Versions of packages console-setup suggests:
ii  locales   2.9-4  GNU C Library: National Language (
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/variant: United Kingdom
  console-setup/unsupported_options: true
* console-setup/fontsize-text: 14
* console-setup/compose: No compose key
  console-setup/modelcode: pc105
  console-setup/switch: No temporary switch
  console-setup/unsupported_config_layout: true
  console-setup/fontsize: 14
  console-setup/unsupported_layout: true
* console-setup/charmap: UTF-8
  console-setup/layoutcode: gb
  console-setup/optionscode: lv3:ralt_switch
  debian-installer/console-setup/title:
  console-setup/unsupported_config_options: true
* console-setup/layout: United Kingdom
  console-setup/variantcode:
  console-setup/codesetcode: Lat15
* console-setup/altgr: Right Alt
* console-setup/ttys: /dev/tty[1-6]
* console-setup/model: Generic 105-key (Intl) PC
  console-setup/fontsize-fb: 16
* console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: No toggling
* console-setup/fontface: Fixed



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



Processing of linux-kernel-di-mips-2.6_1.10_mips.changes

2009-04-12 Thread Archive Administrator
linux-kernel-di-mips-2.6_1.10_mips.changes uploaded successfully to localhost
along with the files:
  linux-kernel-di-mips-2.6_1.10.dsc
  linux-kernel-di-mips-2.6_1.10.tar.gz
  kernel-image-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  nic-shared-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  loop-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  ipv6-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  nls-core-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  isofs-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  jfs-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  reiserfs-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  xfs-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  md-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  multipath-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  crypto-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  crypto-dm-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb
  kernel-image-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  nic-shared-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  loop-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  ipv6-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  nls-core-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  isofs-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  jfs-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  reiserfs-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  xfs-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  md-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  multipath-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  crypto-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  crypto-dm-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb
  kernel-image-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  nic-shared-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  ide-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  cdrom-core-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  scsi-core-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  scsi-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  scsi-common-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  loop-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  ipv6-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  nls-core-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  isofs-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  jfs-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  reiserfs-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  xfs-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  fat-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  md-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  multipath-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  usb-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  usb-storage-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  fb-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  input-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  sata-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  crypto-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  crypto-dm-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  rtc-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb
  kernel-image-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  nic-shared-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  ide-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  cdrom-core-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  scsi-core-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  scsi-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  scsi-common-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  loop-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  ipv6-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  nls-core-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  isofs-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  jfs-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  reiserfs-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  xfs-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  fat-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  md-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  multipath-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  usb-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  usb-storage-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  fb-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  input-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  sata-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  crypto-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  crypto-dm-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  rtc-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb
  kernel-image-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  ppp-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  ide-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  cdrom-core-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  loop-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  ipv6-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  nls-core-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  isofs-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  jfs-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  reiserfs-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb
  xfs-mod

console-setup_1.31_i386.changes ACCEPTED

2009-04-12 Thread Debian Installer

Accepted:
bdf2psf_1.31_all.deb
  to pool/main/c/console-setup/bdf2psf_1.31_all.deb
console-setup-amiga-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-amiga-ekmap_1.31_all.udeb
console-setup-ataritt-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-ataritt-ekmap_1.31_all.udeb
console-setup-fonts-udeb_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-fonts-udeb_1.31_all.udeb
console-setup-macintoshold-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-macintoshold-ekmap_1.31_all.udeb
console-setup-mini_1.31_all.deb
  to pool/main/c/console-setup/console-setup-mini_1.31_all.deb
console-setup-pc-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-pc-ekmap_1.31_all.udeb
console-setup-sun4-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-sun4-ekmap_1.31_all.udeb
console-setup-sun5-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-sun5-ekmap_1.31_all.udeb
console-setup-udeb_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-udeb_1.31_all.udeb
console-setup_1.31.dsc
  to pool/main/c/console-setup/console-setup_1.31.dsc
console-setup_1.31.tar.gz
  to pool/main/c/console-setup/console-setup_1.31.tar.gz
console-setup_1.31_all.deb
  to pool/main/c/console-setup/console-setup_1.31_all.deb


Override entries for your package:
bdf2psf_1.31_all.deb - optional utils
console-setup-amiga-ekmap_1.31_all.udeb - extra debian-installer
console-setup-ataritt-ekmap_1.31_all.udeb - extra debian-installer
console-setup-fonts-udeb_1.31_all.udeb - extra debian-installer
console-setup-macintoshold-ekmap_1.31_all.udeb - extra debian-installer
console-setup-mini_1.31_all.deb - extra utils
console-setup-pc-ekmap_1.31_all.udeb - extra debian-installer
console-setup-sun4-ekmap_1.31_all.udeb - extra debian-installer
console-setup-sun5-ekmap_1.31_all.udeb - extra debian-installer
console-setup-udeb_1.31_all.udeb - extra debian-installer
console-setup_1.31.dsc - source utils
console-setup_1.31_all.deb - optional utils

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 521224 521660 521806 522107 522305 522404 522534 523487 523559 
523649 


Thank you for your contribution to Debian.


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



auto parts quotation from Halo Auto Parts

2009-04-12 Thread homyautopart
Dear Manager,
 
How are you?
 
It is nice to know that you are in the line for auto accessories .

We introduce ourselves as an exporter of auto parts in China.
Our products range as below:
1.air freshener
2.antennas
3.arm rests
4.auto chemical
5.body bumper
6.car alarms and central lock
7.car cleaning
8.car light
9.car mats
10.dash board
11.electrical goods
12.frost scaper with brush
13.gearshift knobs
14.holders
15.horns
16.labels
17.mirrors
18.mirror covers
19.mufflers
20.non-slip pedals
21.orientation balls
22.radio type player
23.repair accessries
24.roof rack
25.safety belts
26.seat covers and car covers
27.side step
28sockets
29.spair parts
30.poiler
31.steering wheel
32.steering wheel cover
33.sun shield&solar film
34.tools
35.tyre cover
36.vacuum cleaner
37.wiper blades
38.working lights
39.others

We differ from other competitors in the following:
1.Large assortment of products (over than 3000 items);
2.High effective work in fulfilling orders (We have many goods ready in
stock );
3.Our managers are young and of high responsibility;
4.We invite clients to visit our suppling factories and to make a right
decision in the choice of products,
and to organize the production of your goods (brand) in the factories;
5.Our designers can help you to design various individual packings.


Further more details, kindly contact us.
 
Our new website is www.homyauto.com .And we are uploading the prodocts there.
 
If any interested products ,we are very glad to send to you the full catalogue 
with detail to you.
 
Looking forward to your early reply.

Best regards,
Sophie
Homy Auto Parts Co., Ltd
www.homyauto.com 
Tel: 86-20-35945486
Fax: 86-20-62816658
MSN: homy_...@hotmail.com


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



Processing of console-setup_1.31_i386.changes

2009-04-12 Thread Archive Administrator
console-setup_1.31_i386.changes uploaded successfully to localhost
along with the files:
  console-setup_1.31.dsc
  console-setup_1.31.tar.gz
  console-setup_1.31_all.deb
  console-setup-mini_1.31_all.deb
  bdf2psf_1.31_all.deb
  console-setup-udeb_1.31_all.udeb
  console-setup-amiga-ekmap_1.31_all.udeb
  console-setup-ataritt-ekmap_1.31_all.udeb
  console-setup-macintoshold-ekmap_1.31_all.udeb
  console-setup-pc-ekmap_1.31_all.udeb
  console-setup-sun4-ekmap_1.31_all.udeb
  console-setup-sun5-ekmap_1.31_all.udeb
  console-setup-fonts-udeb_1.31_all.udeb

Greetings,

Your Debian queue daemon


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



Bug#523792: console-setup: inittab's kbrequest doesn't work

2009-04-12 Thread Steve Cotton
Package: console-setup
Version: 1.30
Severity: normal

With console-setup, on the console pressing
 + 
generates ^[[A without triggering a kbrequest.

With the same setup, Alt+left and Alt+right and Alt+ are still
working to switch between virtual terminals.

kbrequest is configured in /etc/inittab:
  # Action on special keypress (ALT-UpArrow).
  #kb::kbrequest:/bin/echo "Keyboard Request--edit /etc/inittab to let this 
work."
  kb::kbrequest:/bin/su - mail -c "fetchmail -f /etc/fetchmail/fetchmailrc"


Regards,
Steve

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

Kernel: Linux 2.6.29.1 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup depends on:
ii  console-terminus  4.26-2.1   Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  xkb-data  1.5-2  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities

Versions of packages console-setup suggests:
ii  locales   2.9-7  GNU C Library: National Language (
ii  locales-all [locales] 2.9-7  GNU C Library: Precompiled locale 
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/variant: USA - Dvorak
  console-setup/unsupported_options: true
  console-setup/modelcode: pc105
  console-setup/fontsize: 16
  console-setup/unsupported_layout: true
  console-setup/layoutcode: us
  debian-installer/console-setup/title:
  console-setup/codesetcode: Lat15
* console-setup/altgr: Menu key
* console-setup/ttys: /dev/tty[1-6]
* console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: No toggling
* console-setup/fontface: Fixed
* console-setup/fontsize-text: 16
* console-setup/compose: No compose key
  console-setup/switch: No temporary switch
  console-setup/unsupported_config_layout: true
* console-setup/charmap: UTF-8
  console-setup/optionscode: lv3:menu_switch
  console-setup/unsupported_config_options: true
* console-setup/layout: USA
  console-setup/variantcode: dvorak
* console-setup/model: Generic 105-key (Intl) PC
  console-setup/fontsize-fb: 16



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



Bug#522404: marked as done (console-setup: [INTL:pt_BR] Brazilian Portuguese debconf templates translation)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#522404: fixed in console-setup 1.31
has caused the Debian Bug report #522404,
regarding console-setup: [INTL:pt_BR] Brazilian Portuguese debconf templates 
translation
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.)


-- 
522404: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522404
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: console-setup
Tags: l10n patch
Severity: wishlist

Please, Could you update the Brazilian Portuguese Translation?

Attached you will find the file pt_BR.po. It is UTF-8 encoded and it is
tested with msgfmt and podebconf-display-po.

Kind regards,

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

iEYEARECAAYFAknWC3MACgkQ0SDRnmynUOGjxQCgg4A34JC1jDQYUACh41azPU+a
Aq0AoMMOjfN3w0duftYpSleAiznqnZn3
=GsdY
-END PGP SIGNATURE-
# console-setup Brazilian Portuguese translation
# Copyright (C) 2009 THE console-setup'S COPYRIGHT HOLDER
# This file is distributed under the same license as the console-setup package.
# Flamarion Jorge , 2009.
# 
# 
msgid ""
msgstr "pt_BR utf-8\n"
"Project-Id-Version: console-setup 1.30\n"
"Report-Msgid-Bugs-To: console-se...@packages.debian.org\n"
"POT-Creation-Date: 2009-03-19 18:29+0100\n"
"PO-Revision-Date: 2009-04-01 09:46-0300\n"
"Last-Translator: Flamarion Jorge \n"
"Language-Team: Brazilian Portuguese \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: text
#. Description
#. Main menu item. Please keep below 55 columns
#: ../console-setup.templates:2001
msgid "Configure the keyboard"
msgstr "Configure o teclado"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Arabic"
msgstr ". Árabe"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Armenian"
msgstr "# Armênio"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - KOI8-R and KOI8-U"
msgstr "# Cirílico - KOI8-R e KOI8-U"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - non-Slavic languages"
msgstr "# Cirílico - línguas não-eslavas"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
#| msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latino)"
msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latin)"
msgstr "# Cirílico - Línguas eslavas (também Bósnio e Sérvio Latim)"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Ethiopic"
msgstr ". Etíope"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Georgian"
msgstr "# Georgiano"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Greek"
msgstr "# Grego"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Hebrew"
msgstr "# Hebraico"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Lao"
msgstr "# Laociano"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
#| msgid "# Latino1 and Latin5 - western Europe and Turkic languages"
msgid "# Latin1 and Latin5 - western Europe and Turkic languages"
msgstr "# Latin1 e Latin5 - Europa ocidental e línguas Turcas"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
#| msgid "# Latino2 - central Europe and Romanian"
msgid "# Latin2 - central Europe and Romanian"
msgstr "# Latin2 - Europa central e Romeno"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
#| msgid "# Latino3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgid "# Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgstr "# Latin3 e Latin8 - Chichewa; Esperanto; Irlandês; Maltês e Galês"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
#| msgid "# Latino7 - Lithuanian; Latvian; Maori and Marshallese"
msgid "# Latin7 - Lithuanian; Latvian; Maori and Marshallese"
msgstr "# Latin7 - Lituano; Letão; Maori e Marshallese"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
#| msgid ". Latino - Vietnamese"
msgid ". Latin - Vietnamese"
msgstr ". Latino - Vietnamita"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Thai"
msgstr "# Tailandês"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
#| msgid ". Combined - Latino; Slavic Cyrillic; Hebrew; basic Arabic"
msgid ". Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic"
msgstr ". Combinado - Latino; E

Bug#522305: marked as done (console-setup: [INTL:ru] Russian debconf templates translation update)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#522305: fixed in console-setup 1.31
has caused the Debian Bug report #522305,
regarding console-setup: [INTL:ru] Russian debconf templates translation update
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.)


-- 
522305: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522305
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Severity: wishlist
Tags: l10n patch


Russian debconf templates translation update is attached.

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

Kernel: Linux 2.6.26-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
# translation of ru.po to Russian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Yuri Kozlov , 2007, 2008.
# Sergey Alyoshin , 2009.
# Yuri Kozlov , 2009.
msgid ""
msgstr ""
"Project-Id-Version: console-setup 1.30\n"
"Report-Msgid-Bugs-To: console-se...@packages.debian.org\n"
"POT-Creation-Date: 2009-03-19 18:29+0100\n"
"PO-Revision-Date: 2009-04-02 20:37+0400\n"
"Last-Translator: Yuri Kozlov \n"
"Language-Team: Russian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"

#. Type: text
#. Description
#. Main menu item. Please keep below 55 columns
#: ../console-setup.templates:2001
#| msgid "Origin of the keyboard:"
msgid "Configure the keyboard"
msgstr "Настройка клавиатуры"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Arabic"
msgstr ". арабский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Armenian"
msgstr "# армянский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - KOI8-R and KOI8-U"
msgstr "# кириллица - KOI8-R и KOI8-U"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - non-Slavic languages"
msgstr "# кириллица - не славянские языки"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latin)"
msgstr "# кириллица - славянские языки (также боснийская и сербская латиница)"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Ethiopic"
msgstr ". эфиопский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Georgian"
msgstr "# грузинский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Greek"
msgstr "# греческий"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Hebrew"
msgstr "# иврит"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Lao"
msgstr "# лаосский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin1 and Latin5 - western Europe and Turkic languages"
msgstr "# Latin1 и Latin5 - языки западной Европы и тюркские"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin2 - central Europe and Romanian"
msgstr "# Latin2 - для центральной Европы и румынские"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgstr "# Latin3 и Latin8 - чева; эсперанто; ирландский; мальтийский и 
валлийский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin7 - Lithuanian; Latvian; Maori and Marshallese"
msgstr "# Latin7 - литовский; латышский; маори и маршальский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Latin - Vietnamese"
msgstr ". Latin - вьетнамский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Thai"
msgstr "# тайский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic"
msgstr ". комбинированный - латинский; славянская кириллица; иврит; основной 
арабский"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Greek"
msgstr ". комбинированный - латинский; славянская кириллица; греческий"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic and non-Slavic Cyrillic"
msgstr ". комбинированный - латинский; славянская и не

Bug#521806: marked as done ([INTL:es] Spanish debconf template translation for console-setup)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#521806: fixed in console-setup 1.31
has caused the Debian Bug report #521806,
regarding [INTL:es] Spanish debconf template translation for console-setup
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.)


-- 
521806: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521806
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Severity: wishlist
Tags: l10n patch


-- 
Saludos

Fran
# console-setup po-debconf translation to Spanish
# Copyright (C) 2007, 2009 Free Software Foundation, Inc.
# This file is distributed under the same license as the console-setup package.
#
# Changes:
#   - Initial translation
#   Manuel Porras Peralta , 2007
#
#   - Updates
#   Francisco Javier Cuadrado , 2009
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
#   info -n '(gettext)PO Files'
#   info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
#   - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas y normas de traducción en
# http://www.debian.org/intl/spanish/notas
#
#   - La guía de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: console-setup 1.30\n"
"Report-Msgid-Bugs-To: console-se...@packages.debian.org\n"
"POT-Creation-Date: 2009-03-19 18:29+0100\n"
"PO-Revision-Date: 2009-03-20 20:17+0100\n"
"Last-Translator: Francisco Javier Cuadrado \n"
"Language-Team: Debian l10n Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: text
#. Description
#. Main menu item. Please keep below 55 columns
#: ../console-setup.templates:2001
#| msgid "The origin of the keyboard:"
msgid "Configure the keyboard"
msgstr "Configure el teclado"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Arabic"
msgstr ". Árabe"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Armenian"
msgstr "# Armenio"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - KOI8-R and KOI8-U"
msgstr "# Cirílico - LOI8-R y KOI8-U"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - non-Slavic languages"
msgstr "# Cirílico - lenguas no Eslavas"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latin)"
msgstr "# Cirílico - Lenguas Eslavas (también el Latino Serbio y Bosnio)"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Ethiopic"
msgstr ". Etíope"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Georgian"
msgstr "# Georgiano"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Greek"
msgstr "# Griego"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Hebrew"
msgstr "# Hebreo"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Lao"
msgstr "# Lao"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin1 and Latin5 - western Europe and Turkic languages"
msgstr "# Latino1 y Latino5 - Europa Occidental y lenguas Turcas"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin2 - central Europe and Romanian"
msgstr "# Latino2 - Europa Central y Rumano"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgstr "# Latino3 y Latino8 - Chichewa; Esperanto; Irlandés; Maltés y Galés"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin7 - Lithuanian; Latvian; Maori and Marshallese"
msgstr "# Latino7 - Lituano; Letonio; Maori y Marsellés"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Latin - Vietnamese"
msgstr ". Latino - Vietnamita"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Thai"
msgstr "# Tailandés"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic"
msgstr ". Combinado - Latino; Cirílico Eslavo; Hebreo; Árabe básico"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Comb

Bug#521660: marked as done ([l10n] Updated Czech translation of console-setup debconf messages)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#521660: fixed in console-setup 1.31
has caused the Debian Bug report #521660,
regarding [l10n] Updated Czech translation of console-setup debconf messages
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.)


-- 
521660: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521660
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Severity: wishlist
Tags: l10n, patch

Hi,

in attachement there is updated Czech (cs.po) translation of
console-setup debconf messages. Please include it with the package.

Thanks
-- 
Miroslav Kure
# Czech translation of console-setup debconf messages.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the console-setup package.
# Miroslav Kure , 2006, 2007, 2008, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: console-setup\n"
"Report-Msgid-Bugs-To: console-se...@packages.debian.org\n"
"POT-Creation-Date: 2009-03-19 18:29+0100\n"
"PO-Revision-Date: 2009-03-29 08:39+0200\n"
"Last-Translator: Miroslav Kure \n"
"Language-Team: Czech \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: text
#. Description
#. Main menu item. Please keep below 55 columns
#: ../console-setup.templates:2001
msgid "Configure the keyboard"
msgstr "Nastavit klávesnici"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Arabic"
msgstr ". Arabské"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Armenian"
msgstr "# Arménské"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - KOI8-R and KOI8-U"
msgstr "# Azbuka - KOI8-R a KOI8-U"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - non-Slavic languages"
msgstr "# Azbuka - jiné než slovanské jazyky"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latin)"
msgstr "# Azbuka - slovanské jazyky (také bosenská a srbská latinka)"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Ethiopic"
msgstr ". Etiopské"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Georgian"
msgstr "# Gruzínské"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Greek"
msgstr "# Řecké"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Hebrew"
msgstr "# Hebrejské"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Lao"
msgstr "# Laoské"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin1 and Latin5 - western Europe and Turkic languages"
msgstr "# Latin1 a Latin5 - západoevropské jazyky a turečtina"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin2 - central Europe and Romanian"
msgstr "# Latin2 - střední Evropa a rumunština"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgstr "# Latin3 a Latin8 - čičeva; esperanto; irština; maltština a velština"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin7 - Lithuanian; Latvian; Maori and Marshallese"
msgstr "# Latin7 - litevština; lotyština; maorština a maršalština"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Latin - Vietnamese"
msgstr ". Latin - vietnamština"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Thai"
msgstr "# Thajské"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic"
msgstr ""
". Kombinované - latinka; slovanská azbuka; hebrejština; základní arabština"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Greek"
msgstr ". Kombinované - latinka; slovanská azbuka; řečtina"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic and non-Slavic Cyrillic"
msgstr ". Kombinované - latinka; slovanská i jiná azbuka"

#. Type: select
#. Description
#: ../console-setup.templates:3002
msgid "Character set to support:"
msgstr "Podporovaná znaková sada:"

#. Type: select
#. Description
#: ../console-setup.templates:3002
#| msgid "Set of characters that should be supported by the console font:"
msgid ""
"Please choose the character set that should be supported by the console font."
msgstr "Vyberte množinu znaků, které by měly být podporovány k

Bug#523649: marked as done (console-setup: vc switching not working for vt24)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#523649: fixed in console-setup 1.31
has caused the Debian Bug report #523649,
regarding console-setup: vc switching not working for vt24
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.)


-- 
523649: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523649
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Severity: normal


I prefer to run X on vc24, making AltGr-F12 the hotkey combination
used to switching from console to X.  I have tried various configurations
of /etc/default/console-setup to try to regain this functionality without
success.  Please advise me how to configure console-setup to allow this
to work. 

Perhaps the answer is just to remove console-setup and use the old ways?

Thanks.

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

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

Versions of packages console-setup depends on:
ii  console-terminus  4.26-2.1   Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  xkb-data  1.5-2  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities

Versions of packages console-setup suggests:
ii  locales   2.9-7  GNU C Library: National Language (
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/variant: USA
  console-setup/unsupported_options: true
* console-setup/fontsize-text: 16
* console-setup/compose: No compose key
  console-setup/modelcode: thinkpad60
  console-setup/switch: No temporary switch
  console-setup/unsupported_config_layout: true
  console-setup/fontsize: 16
  console-setup/unsupported_layout: true
* console-setup/charmap: UTF-8
  console-setup/layoutcode: us
  console-setup/optionscode: lv3:ralt_switch
  debian-installer/console-setup/title:
  console-setup/unsupported_config_options: true
* console-setup/layout: USA
  console-setup/variantcode:
  console-setup/codesetcode: Lat15
* console-setup/altgr: Right Alt
* console-setup/ttys: /dev/tty[1-8]
* console-setup/model: IBM ThinkPad R60/T60/Z60m/Z60t/R61/T61/Z61m/Z61t
* console-setup/fontsize-fb: 16
* console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: No toggling
* console-setup/fontface: TerminusBoldVGA


--- End Message ---
--- Begin Message ---
Source: console-setup
Source-Version: 1.31

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

bdf2psf_1.31_all.deb
  to pool/main/c/console-setup/bdf2psf_1.31_all.deb
console-setup-amiga-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-amiga-ekmap_1.31_all.udeb
console-setup-ataritt-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-ataritt-ekmap_1.31_all.udeb
console-setup-fonts-udeb_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-fonts-udeb_1.31_all.udeb
console-setup-macintoshold-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-macintoshold-ekmap_1.31_all.udeb
console-setup-mini_1.31_all.deb
  to pool/main/c/console-setup/console-setup-mini_1.31_all.deb
console-setup-pc-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-pc-ekmap_1.31_all.udeb
console-setup-sun4-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-sun4-ekmap_1.31_all.udeb
console-setup-sun5-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-sun5-ekmap_1.31_all.udeb
console-setup-udeb_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-udeb_1.31_all.udeb
console-setup_1.31.dsc
  to pool/main/c/console-setup/console-setup_1.31.dsc
console-setup_1.31.tar.gz
  to pool/main/c/console-setup/console-setup_1.31.tar.gz
console-setup_1.31_all.deb
  to pool/main/c/console-setup/console-setup_1.31_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 523...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance sof

Bug#521224: marked as done (console-setup: [INTL:pt] Updated Portuguese translation for debconf messages)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#521224: fixed in console-setup 1.31
has caused the Debian Bug report #521224,
regarding console-setup: [INTL:pt] Updated Portuguese translation for debconf 
messages
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.)


-- 
521224: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521224
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for console-setup's debconf messages.
Translator: Pedro Ribeiro 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .


-- 
Best regards,

Miguel Figueiredo
"Traduz" - Portuguese Translation Team
http://www.DebianPT.org



# Portuguese translation for console-setup debconf messages.
# Copyright (C) 2007-2009 Pedro Ribeiro 
# This file is distributed under the same license as the console-setup package.
# Pedro Ribeiro , 2009
#
msgid ""
msgstr ""
"Project-Id-Version: console-setup 1.30\n"
"Report-Msgid-Bugs-To: console-se...@packages.debian.org\n"
"POT-Creation-Date: 2009-03-19 18:29+0100\n"
"PO-Revision-Date: 2009-03-20 12:00+\n"
"Last-Translator: Pedro Ribeiro \n"
"Language-Team: Portuguese \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: text
#. Description
#. Main menu item. Please keep below 55 columns
#: ../console-setup.templates:2001
msgid "Configure the keyboard"
msgstr "Configure o teclado"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Arabic"
msgstr ". Árabe"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Armenian"
msgstr "# Arménio"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - KOI8-R and KOI8-U"
msgstr "# Cirílico - KOI8-R e KOI8-U"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - non-Slavic languages"
msgstr "# Cirílico - línguas não eslavas"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latin)"
msgstr "# Cirílico - Línguas eslavas (também Bósnio e Sérvio Latino)"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Ethiopic"
msgstr ". Etíope"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Georgian"
msgstr "# Georgiano"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Greek"
msgstr "# Grego"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Hebrew"
msgstr "# Hebraico"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Lao"
msgstr "# Lao"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin1 and Latin5 - western Europe and Turkic languages"
msgstr "# Latin1 e Latin5 - línguas da Europa ocidental e turcas"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin2 - central Europe and Romanian"
msgstr "# Latin2 - Europa central e Romeno"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgstr "# Latin3 e Latin8 - Chichewa; Esperanto: Irlandês; Maltês e Galês"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin7 - Lithuanian; Latvian; Maori and Marshallese"
msgstr "# Latin7 - Lituano; Letão; Maori e Marshallês"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Latin - Vietnamese"
msgstr ". Latin - Vietnamita"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Thai"
msgstr "# Tailandês"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic"
msgstr ". Combinado - Latino; Cirílico Eslavo; Hebraico; Árabe básico"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Greek"
msgstr ". Combinado - Latino; Cirílico Eslavo; Grego"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic and non-Slavic Cyrillic"
msgstr ". Combinado - Latino; Cirílico Eslavo e não Eslavo"

#. Type: select
#. Description
#: ../console-setup.templates:3002
msgid "Character set to support:"
msgstr "Conjunto de caracteres a suportar:"

#. Type: select
#. Description
#: ../console-setup.templates:3002
#| msgid "Set of characters that should be supported by the console font:"
msgid ""
"Please choo

Bug#523559: marked as done (console-setup: QWERTY console despite configuring for Dvorak)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#523559: fixed in console-setup 1.31
has caused the Debian Bug report #523559,
regarding console-setup: QWERTY console despite configuring for Dvorak
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.)


-- 
523559: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523559
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Severity: important

This is a recent install of console-setup, due to the Xorg dependency.
As you can see from the debconf info, I've configured for a UK Dvorak.

In X, the layout is UK Dvorak.

But the console itself is now Qwerty (non-UK; +<3> is hash rather
than the British Pound Sterling sign).  This is after a reboot; running
dpkg-reconfigure, choosing the same options again and rebooting again has
made no difference.


The reportbug info has noticed a lot of "unsupported" stuff; that's
information that could be shown during the configuration stage.

Steve

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

Kernel: Linux 2.6.29.1 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup depends on:
ii  console-terminus  4.26-2.1   Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  xkb-data  1.5-2  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities

Versions of packages console-setup suggests:
ii  locales   2.9-7  GNU C Library: National Language (
ii  locales-all [locales] 2.9-7  GNU C Library: Precompiled locale 
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/variant: United Kingdom - Dvorak
  console-setup/unsupported_options: true
  console-setup/modelcode: pc105
  console-setup/fontsize: 13
  console-setup/unsupported_layout: true
  console-setup/layoutcode: gb
  debian-installer/console-setup/title:
  console-setup/codesetcode: Lat15
* console-setup/altgr: Menu key
* console-setup/ttys: /dev/tty[1-6]
* console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: No toggling
* console-setup/fontface: Fixed
* console-setup/fontsize-text: 13
* console-setup/compose: No compose key
  console-setup/switch: No temporary switch
  console-setup/unsupported_config_layout: true
* console-setup/charmap: UTF-8
  console-setup/optionscode: lv3:menu_switch
  console-setup/unsupported_config_options: true
* console-setup/layout: United Kingdom
  console-setup/variantcode: dvorak
* console-setup/model: Generic 105-key (Intl) PC
  console-setup/fontsize-fb: 14


--- End Message ---
--- Begin Message ---
Source: console-setup
Source-Version: 1.31

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

bdf2psf_1.31_all.deb
  to pool/main/c/console-setup/bdf2psf_1.31_all.deb
console-setup-amiga-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-amiga-ekmap_1.31_all.udeb
console-setup-ataritt-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-ataritt-ekmap_1.31_all.udeb
console-setup-fonts-udeb_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-fonts-udeb_1.31_all.udeb
console-setup-macintoshold-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-macintoshold-ekmap_1.31_all.udeb
console-setup-mini_1.31_all.deb
  to pool/main/c/console-setup/console-setup-mini_1.31_all.deb
console-setup-pc-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-pc-ekmap_1.31_all.udeb
console-setup-sun4-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-sun4-ekmap_1.31_all.udeb
console-setup-sun5-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-sun5-ekmap_1.31_all.udeb
console-setup-udeb_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-udeb_1.31_all.udeb
console-setup_1.31.dsc
  to pool/main/c/console-setup/console-setup_1.31.dsc
console-setup_1.31.tar.gz
  to pool/main/c/console-setup/console-setup_1.31.tar.gz
console-setup_1.31_all.deb
  to pool/main/c/console-setup/console-setup_1.31_all.deb



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

linux-kernel-di-mips-2.6_1.10_mips.changes is NEW

2009-04-12 Thread Debian Installer
(new) cdrom-core-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb standard 
debian-installer
CDROM support
 This package contains core CDROM support for the Linux kernel.
(new) cdrom-core-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb standard 
debian-installer
CDROM support
 This package contains core CDROM support for the Linux kernel.
(new) cdrom-core-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb standard 
debian-installer
CDROM support
 This package contains core CDROM support for the Linux kernel.
(new) crypto-dm-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb extra 
debian-installer
devicemapper crypto module
 This package contains the devicemapper crypto (dm-crypt) module.
(new) crypto-dm-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb extra 
debian-installer
devicemapper crypto module
 This package contains the devicemapper crypto (dm-crypt) module.
(new) crypto-dm-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb extra 
debian-installer
devicemapper crypto module
 This package contains the devicemapper crypto (dm-crypt) module.
(new) crypto-dm-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb extra 
debian-installer
devicemapper crypto module
 This package contains the devicemapper crypto (dm-crypt) module.
(new) crypto-dm-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb extra 
debian-installer
devicemapper crypto module
 This package contains the devicemapper crypto (dm-crypt) module.
(new) crypto-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb extra debian-installer
crypto modules
 This package contains crypto modules.
(new) crypto-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb extra debian-installer
crypto modules
 This package contains crypto modules.
(new) crypto-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb extra debian-installer
crypto modules
 This package contains crypto modules.
(new) crypto-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb extra 
debian-installer
crypto modules
 This package contains crypto modules.
(new) crypto-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb extra 
debian-installer
crypto modules
 This package contains crypto modules.
(new) fat-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb extra debian-installer
FAT filesystem support
 This package contains the FAT and VFAT filesystem modules for the Linux kernel.
(new) fat-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb extra 
debian-installer
FAT filesystem support
 This package contains the FAT and VFAT filesystem modules for the Linux kernel.
(new) fat-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb extra 
debian-installer
FAT filesystem support
 This package contains the FAT and VFAT filesystem modules for the Linux kernel.
(new) fb-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb extra debian-installer
Frame buffer support
 This package contains Frame buffer drivers for the Linux kernel.
(new) fb-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb extra 
debian-installer
Frame buffer support
 This package contains Frame buffer drivers for the Linux kernel.
(new) ide-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb standard debian-installer
IDE drivers
 This package contains IDE drivers for the Linux kernel.
(new) ide-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb standard 
debian-installer
IDE drivers
 This package contains IDE drivers for the Linux kernel.
(new) ide-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb standard 
debian-installer
IDE drivers
 This package contains IDE drivers for the Linux kernel.
(new) input-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb extra debian-installer
Input devices support
 This package contains input device drivers for the Linux kernel.
(new) input-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb extra 
debian-installer
Input devices support
 This package contains input device drivers for the Linux kernel.
(new) input-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb extra 
debian-installer
Input devices support
 This package contains input device drivers for the Linux kernel.
(new) ipv6-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb extra debian-installer
IPv6 driver
 This package contains the IPv6 driver for the Linux kernel.
(new) ipv6-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb extra debian-installer
IPv6 driver
 This package contains the IPv6 driver for the Linux kernel.
(new) ipv6-modules-2.6.29-1-r5k-ip32-di_1.10_mips.udeb extra debian-installer
IPv6 driver
 This package contains the IPv6 driver for the Linux kernel.
(new) ipv6-modules-2.6.29-1-sb1-bcm91250a-di_1.10_mips.udeb extra 
debian-installer
IPv6 driver
 This package contains the IPv6 driver for the Linux kernel.
(new) ipv6-modules-2.6.29-1-sb1a-bcm91480b-di_1.10_mips.udeb extra 
debian-installer
IPv6 driver
 This package contains the IPv6 driver for the Linux kernel.
(new) isofs-modules-2.6.29-1-4kc-malta-di_1.10_mips.udeb standard 
debian-installer
ISOFS filesystem support
 This package contains the ISOFS filesystem module for the Linux kernel.
(new) isofs-modules-2.6.29-1-r4k-ip22-di_1.10_mips.udeb standard 
debian-installer
ISO

Bug#522534: marked as done (console-setup: [INTL:th] Updated Thai debconf template translation)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#522534: fixed in console-setup 1.31
has caused the Debian Bug report #522534,
regarding console-setup: [INTL:th] Updated Thai debconf template translation
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.)


-- 
522534: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522534
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Severity: wishlist

Please update Thai debconf template translation with the attached PO.


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

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

Versions of packages console-setup depends on:
ii  console-terminus  4.26-2.1   Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  xkb-data  1.5-2  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities

Versions of packages console-setup suggests:
ii  locales   2.9-6  GNU C Library: National Language (
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip

-- debconf information excluded
# Thai translation of console-setup.
# Copyright (C) 2008-2009 Software in the Public Interest, Inc.
# This file is distributed under the same license as the console-setup package.
# Theppitak Karoonboonyanan , 2008-2009.
#
msgid ""
msgstr ""
"Project-Id-Version: console-setup\n"
"Report-Msgid-Bugs-To: console-se...@packages.debian.org\n"
"POT-Creation-Date: 2009-03-19 18:29+0100\n"
"PO-Revision-Date: 2009-04-04 23:13+0700\n"
"Last-Translator: Theppitak Karoonboonyanan \n"
"Language-Team: Thai \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: text
#. Description
#. Main menu item. Please keep below 55 columns
#: ../console-setup.templates:2001
msgid "Configure the keyboard"
msgstr "ตั้งค่าผังแป้นพิมพ์"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Arabic"
msgstr ". อารบิก"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Armenian"
msgstr "# อาร์เมเนีย"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - KOI8-R and KOI8-U"
msgstr "# ซีริลลิก - KOI8-R และ KOI8-U"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - non-Slavic languages"
msgstr "# ซีริลลิก - ภาษาที่ไม่ใช่ตระกูลสลาฟ"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latin)"
msgstr "# ซีริลลิก - ภาษาตระกูลสลาฟ (รวมถึงบอสเนียและละตินเซอร์เบีย)"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Ethiopic"
msgstr ". เอธิโอเปีย"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Georgian"
msgstr "# จอร์เจีย"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Greek"
msgstr "# กรีก"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Hebrew"
msgstr "# ฮีบรู"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Lao"
msgstr "# ลาว"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin1 and Latin5 - western Europe and Turkic languages"
msgstr "# ละติน 1 และ ละติน 5 - ยุโรปตะวันตกและภาษาตระกูลเติร์ก"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin2 - central Europe and Romanian"
msgstr "# ละติน 2 - ยุโรปตอนกลางและโรมาเนีย"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgstr "# ละติน 3 และ ละติน 8 - ชิเชวา; เอสเปรันโต; ไอริช; มอลตา และเวลส์"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin7 - Lithuanian; Latvian; Maori and Marshallese"
msgstr "# ละติน 7 - ลิทัวเนีย; ลัตเวีย; เมารี และมาร์แชลล์"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Latin - Vietnamese"
msgstr ". ละติน - เวียดนาม"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Thai"
msgstr "# ไทย"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic"
msgstr ". ผสม - ละติน;

Bug#522107: marked as done (console-setup: [INTL:de] updated German debconf translation)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#522107: fixed in console-setup 1.31
has caused the Debian Bug report #522107,
regarding console-setup: [INTL:de] updated German debconf translation
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.)


-- 
522107: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522107
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Severity: wishlist
Tags: patch l10n

Please find the updated German debconf translation for console-setup
attached.

Please place this file in debian/po/ as de.po for your next upload.

If you update your template, please use 
'msgfmt --statistics '
to check the po-files for fuzzy or untranslated strings.

If there are such strings, please contact me so I can update the 
German translation.

Greetings
Helge
# translation of po-debconf template to German
# Copyright (C) 2006, the console-setup package'c copyright holder
# Copyright (C) 2006, Matthias Julius
# Copyright (C) 2007-2009 Helge Kreutzmann
# This file is distributed under the same license as the console-setup package.
#
msgid ""
msgstr ""
"Project-Id-Version: console-setup 1.22\n"
"Report-Msgid-Bugs-To: console-se...@packages.debian.org\n"
"POT-Creation-Date: 2009-03-19 18:29+0100\n"
"PO-Revision-Date: 2009-03-25 18:49+0100\n"
"Last-Translator: Helge Kreutzmann \n"
"Language-Team: de \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"

#. Type: text
#. Description
#. Main menu item. Please keep below 55 columns
#: ../console-setup.templates:2001
msgid "Configure the keyboard"
msgstr "Tastatur konfigurieren"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Arabic"
msgstr ". Arabisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Armenian"
msgstr "# Armenisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - KOI8-R and KOI8-U"
msgstr "# Kyrillisch - KOI8-R und KOI8-U"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - non-Slavic languages"
msgstr "# Kyrillisch - nichtslawische Sprachen"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Cyrillic - Slavic languages (also Bosnian and Serbian Latin)"
msgstr ""
"# Kyrillisch - slawische Sprachen (auch Bosnisch und Serbisch-Lateinisch)"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Ethiopic"
msgstr ". Äthiopisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Georgian"
msgstr "# Georgisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Greek"
msgstr "# Griechisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Hebrew"
msgstr "# Hebräisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Lao"
msgstr "# Laotisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin1 and Latin5 - western Europe and Turkic languages"
msgstr "# Latin1 und Latin5 - westeuropäische und türkische Sprachen"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin2 - central Europe and Romanian"
msgstr "# Latin2 - Zentraleuropäisch und Rumänisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh"
msgstr ""
"# Latin3 und Latin8 - Chichewa, Esperanto, Irisch, Maltesisch und Walisisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Latin7 - Lithuanian; Latvian; Maori and Marshallese"
msgstr "# Latin7 - Litauisch, Lettisch, Maorisch und Marshallisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Latin - Vietnamese"
msgstr ". Latin - Vietnamesisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid "# Thai"
msgstr "# Thailändisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic"
msgstr ""
". Kombiniert - Latein, slawisches Kyrillisch, Hebräisch, einfaches Arabisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic Cyrillic; Greek"
msgstr ". Kombiniert - Latein, slawisches Kyrillisch, Griechisch"

#. Type: select
#. Choices
#: ../console-setup.templates:3001
msgid ". Combined - Latin; Slavic and non-Slavic Cyrillic"
msgstr ". Kombiniert - Latein, slawisches und nichtslawisches Kyrillisch"

#. Type: select
#.

Bug#523487: marked as done (Asks for keyboard origin upon installation (debconf abuse?))

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 15:02:10 +
with message-id 
and subject line Bug#523487: fixed in console-setup 1.31
has caused the Debian Bug report #523487,
regarding Asks for keyboard origin upon installation (debconf abuse?)
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.)


-- 
523487: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523487
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Severity: important

When I upgraded X today, it installed console-setup, and although my
debconf priority is set to high, I was asked the "keyboard origin"
question, without even a satisfying default selected.

I can reproduce that by installing console-setup on my laptop. I have
not proceeded with the installation on this one, so that I can help with
debugging if needed (the problem is still reproducible).

I’m attaching my xorg.conf file if it can help.

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

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

-- 
 .''`.  Debian 5.0 "Lenny" has been released!
: :' :
`. `'   Last night, Darth Vader came down from planet Vulcan and told
  `-me that if you don't install Lenny, he'd melt your brain.
Section "Device"
Identifier  "Blah"
Option  "AccelMethod" "EXA"
EndSection
Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "fr(oss)"
EndSection
Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "synaptics"
Option  "CorePointer"
Option  "Device""/dev/psaux"
Option  "Protocol"  "auto-dev"
Option  "SHMConfig" "true"
#   Option  "Emulate3Buttons"   "true"
#   Option  "ZAxisMapping"  "4 5"
EndSection

Section "InputDevice"
Identifier  "Generic Mouse"
Driver  "mouse"
Option  "SendCoreEvents""true"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
Option  "Emulate3Buttons"   "true"
Option  "ZAxisMapping"  "4 5"
EndSection
Section "Screen"
Identifier  "Default Screen"
DefaultDepth24
EndSection
Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Generic Mouse"
EndSection


signature.asc
Description: Ceci est une partie de message numériquement signée
--- End Message ---
--- Begin Message ---
Source: console-setup
Source-Version: 1.31

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

bdf2psf_1.31_all.deb
  to pool/main/c/console-setup/bdf2psf_1.31_all.deb
console-setup-amiga-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-amiga-ekmap_1.31_all.udeb
console-setup-ataritt-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-ataritt-ekmap_1.31_all.udeb
console-setup-fonts-udeb_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-fonts-udeb_1.31_all.udeb
console-setup-macintoshold-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-macintoshold-ekmap_1.31_all.udeb
console-setup-mini_1.31_all.deb
  to pool/main/c/console-setup/console-setup-mini_1.31_all.deb
console-setup-pc-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-pc-ekmap_1.31_all.udeb
console-setup-sun4-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-sun4-ekmap_1.31_all.udeb
console-setup-sun5-ekmap_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-sun5-ekmap_1.31_all.udeb
console-setup-udeb_1.31_all.udeb
  to pool/main/c/console-setup/console-setup-udeb_1.31_all.udeb
console-setup_1.31.dsc
  to pool/main/c/console-setup/console-setup_1.31.dsc
console-setup_1.31.tar.gz
  to pool/main/c/console-setup/console-setup_1.31.tar.gz
console-setup_1.31_all.deb
  to pool/main/c/console-setup/console-setup_1.31_all.deb



A summary of the changes bet

Processing of console-setup_1.32_i386.changes

2009-04-12 Thread Archive Administrator
console-setup_1.32_i386.changes uploaded successfully to localhost
along with the files:
  console-setup_1.32.dsc
  console-setup_1.32.tar.gz
  console-setup_1.32_all.deb
  console-setup-mini_1.32_all.deb
  bdf2psf_1.32_all.deb
  console-setup-udeb_1.32_all.udeb
  console-setup-amiga-ekmap_1.32_all.udeb
  console-setup-ataritt-ekmap_1.32_all.udeb
  console-setup-macintoshold-ekmap_1.32_all.udeb
  console-setup-pc-ekmap_1.32_all.udeb
  console-setup-sun4-ekmap_1.32_all.udeb
  console-setup-sun5-ekmap_1.32_all.udeb
  console-setup-fonts-udeb_1.32_all.udeb

Greetings,

Your Debian queue daemon


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



Bug#523487: closed by Anton Zinoviev (Bug#523487: fixed in console-setup 1.31)

2009-04-12 Thread Josselin Mouette
Le dimanche 12 avril 2009 à 15:39 +, Debian Bug Tracking System a
écrit :
> >* Recognize 'Option "XkbLayout" "layout(variant)" in xorg.conf.  Thanks
> >  to Josselin Mouette, closes: #523487.

Thanks for the quick fix.

-- 
 .''`.  Debian 5.0 "Lenny" has been released!
: :' :
`. `'   Last night, Darth Vader came down from planet Vulcan and told
  `-me that if you don't install Lenny, he'd melt your brain.


signature.asc
Description: Ceci est une partie de message numériquement signée


console-setup_1.32_i386.changes ACCEPTED

2009-04-12 Thread Debian Installer

Accepted:
bdf2psf_1.32_all.deb
  to pool/main/c/console-setup/bdf2psf_1.32_all.deb
console-setup-amiga-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-amiga-ekmap_1.32_all.udeb
console-setup-ataritt-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-ataritt-ekmap_1.32_all.udeb
console-setup-fonts-udeb_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-fonts-udeb_1.32_all.udeb
console-setup-macintoshold-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-macintoshold-ekmap_1.32_all.udeb
console-setup-mini_1.32_all.deb
  to pool/main/c/console-setup/console-setup-mini_1.32_all.deb
console-setup-pc-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-pc-ekmap_1.32_all.udeb
console-setup-sun4-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-sun4-ekmap_1.32_all.udeb
console-setup-sun5-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-sun5-ekmap_1.32_all.udeb
console-setup-udeb_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-udeb_1.32_all.udeb
console-setup_1.32.dsc
  to pool/main/c/console-setup/console-setup_1.32.dsc
console-setup_1.32.tar.gz
  to pool/main/c/console-setup/console-setup_1.32.tar.gz
console-setup_1.32_all.deb
  to pool/main/c/console-setup/console-setup_1.32_all.deb


Override entries for your package:
bdf2psf_1.32_all.deb - optional utils
console-setup-amiga-ekmap_1.32_all.udeb - extra debian-installer
console-setup-ataritt-ekmap_1.32_all.udeb - extra debian-installer
console-setup-fonts-udeb_1.32_all.udeb - extra debian-installer
console-setup-macintoshold-ekmap_1.32_all.udeb - extra debian-installer
console-setup-mini_1.32_all.deb - extra utils
console-setup-pc-ekmap_1.32_all.udeb - extra debian-installer
console-setup-sun4-ekmap_1.32_all.udeb - extra debian-installer
console-setup-sun5-ekmap_1.32_all.udeb - extra debian-installer
console-setup-udeb_1.32_all.udeb - extra debian-installer
console-setup_1.32.dsc - source utils
console-setup_1.32_all.deb - optional utils

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 523792 


Thank you for your contribution to Debian.


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



Bug#523792: marked as done (console-setup: inittab's kbrequest doesn't work)

2009-04-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Apr 2009 16:32:05 +
with message-id 
and subject line Bug#523792: fixed in console-setup 1.32
has caused the Debian Bug report #523792,
regarding console-setup: inittab's kbrequest doesn't work
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.)


-- 
523792: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=523792
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: console-setup
Version: 1.30
Severity: normal

With console-setup, on the console pressing
 + 
generates ^[[A without triggering a kbrequest.

With the same setup, Alt+left and Alt+right and Alt+ are still
working to switch between virtual terminals.

kbrequest is configured in /etc/inittab:
  # Action on special keypress (ALT-UpArrow).
  #kb::kbrequest:/bin/echo "Keyboard Request--edit /etc/inittab to let this 
work."
  kb::kbrequest:/bin/su - mail -c "fetchmail -f /etc/fetchmail/fetchmailrc"


Regards,
Steve

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

Kernel: Linux 2.6.29.1 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup depends on:
ii  console-terminus  4.26-2.1   Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  xkb-data  1.5-2  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities

Versions of packages console-setup suggests:
ii  locales   2.9-7  GNU C Library: National Language (
ii  locales-all [locales] 2.9-7  GNU C Library: Precompiled locale 
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/variant: USA - Dvorak
  console-setup/unsupported_options: true
  console-setup/modelcode: pc105
  console-setup/fontsize: 16
  console-setup/unsupported_layout: true
  console-setup/layoutcode: us
  debian-installer/console-setup/title:
  console-setup/codesetcode: Lat15
* console-setup/altgr: Menu key
* console-setup/ttys: /dev/tty[1-6]
* console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: No toggling
* console-setup/fontface: Fixed
* console-setup/fontsize-text: 16
* console-setup/compose: No compose key
  console-setup/switch: No temporary switch
  console-setup/unsupported_config_layout: true
* console-setup/charmap: UTF-8
  console-setup/optionscode: lv3:menu_switch
  console-setup/unsupported_config_options: true
* console-setup/layout: USA
  console-setup/variantcode: dvorak
* console-setup/model: Generic 105-key (Intl) PC
  console-setup/fontsize-fb: 16


--- End Message ---
--- Begin Message ---
Source: console-setup
Source-Version: 1.32

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

bdf2psf_1.32_all.deb
  to pool/main/c/console-setup/bdf2psf_1.32_all.deb
console-setup-amiga-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-amiga-ekmap_1.32_all.udeb
console-setup-ataritt-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-ataritt-ekmap_1.32_all.udeb
console-setup-fonts-udeb_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-fonts-udeb_1.32_all.udeb
console-setup-macintoshold-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-macintoshold-ekmap_1.32_all.udeb
console-setup-mini_1.32_all.deb
  to pool/main/c/console-setup/console-setup-mini_1.32_all.deb
console-setup-pc-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-pc-ekmap_1.32_all.udeb
console-setup-sun4-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-sun4-ekmap_1.32_all.udeb
console-setup-sun5-ekmap_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-sun5-ekmap_1.32_all.udeb
console-setup-udeb_1.32_all.udeb
  to pool/main/c/console-setup/console-setup-udeb_1.32_all.udeb
console-setup_1.32.dsc
  to pool/main/c/console-setup/console-setup_1.32.dsc
console-setup_1.32.tar.gz
  to pool/main/c/console-setup/console-setup_1.32.tar.gz
console-setup_1.32_all.deb
  to pool/main/c/console-setup/console-setup_1.32_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 a

linux-kernel-di-arm-2.6 1.37lenny2 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-arm-2.6 source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  1.37lenny2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-armel-2.6 1.32lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-armel-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.32
  Current version:  1.32lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-amd64-2.6 1.53lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-amd64-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.53
  Current version:  1.53lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-ia64-2.6 1.42lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-ia64-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.42
  Current version:  1.42lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-alpha-2.6 0.37lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-alpha-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 0.37
  Current version:  0.37lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-mipsel-2.6 1.8lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-mipsel-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.8
  Current version:  1.8lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-mips-2.6 1.9lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-mips-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.9
  Current version:  1.9lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-sparc-2.6 1.41lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-sparc-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.41
  Current version:  1.41lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-hppa-2.6 1.38lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-hppa-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.38
  Current version:  1.38lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-i386-2.6 1.76lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-i386-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.76
  Current version:  1.76lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-s390-2.6 0.37lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-s390-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 0.37
  Current version:  0.37lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-amd64-2.6 1.18lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-amd64-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.18
  Current version:  1.18lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-alpha-2.6 1.13lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-alpha-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.13
  Current version:  1.13lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-kernel-di-powerpc-2.6 1.48lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-kernel-di-powerpc-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.48
  Current version:  1.48lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-arm-2.6 1.15lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-arm-2.6 source package
in Debian's testing distribution has changed.

  Previous version: (not in testing)
  Current version:  1.15lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-armel-2.6 1.11lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-armel-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.11
  Current version:  1.11lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-ia64-2.6 1.13lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-ia64-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.13
  Current version:  1.13lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-mipsel-2.6 1.16lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-mipsel-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.16
  Current version:  1.16lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-i386-2.6 1.18lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-i386-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.18
  Current version:  1.18lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-hppa-2.6 1.12lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-hppa-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.12
  Current version:  1.12lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



debian-installer 20090123lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the debian-installer source package
in Debian's testing distribution has changed.

  Previous version: 20090123
  Current version:  20090123lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-powerpc-2.6 2.13lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-powerpc-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 2.13
  Current version:  2.13lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-sparc-2.6 1.15lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-sparc-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.15
  Current version:  1.15lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-mips-2.6 1.13lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-mips-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.13
  Current version:  1.13lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



linux-modules-di-s390-2.6 1.13lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the linux-modules-di-s390-2.6 source package
in Debian's testing distribution has changed.

  Previous version: 1.13
  Current version:  1.13lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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



oldsys-preseed 3.2lenny1 MIGRATED to testing

2009-04-12 Thread Debian testing watch
FYI: The status of the oldsys-preseed source package
in Debian's testing distribution has changed.

  Previous version: 3.2
  Current version:  3.2lenny1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


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