Bug#540373: libc6: malloc.c, segmentation fault now and then

2009-08-07 Thread Bjarni Ingi Gislason
Package: libc6
Version: 2.7-18
Severity: normal

Description:

  Segmentation fault now and then in ace-of-penguins/ace-canfield

kernel: lt-canfield[1653]: segfault at 64 ip b7d88a19 sp bfae197c error
  4 in libc-2.7.so[b7d1e000+138000]

and ftp, if macro $safn . is used

macdef safn
dir $1 | more

kernel: ftp[1675]: segfault at 1f6b3 ip b7e34978 sp bf88d088 error 4 in
libc-2.7.so[b7dca000+138000]

For ace-canfield:

Segmentation fault if max_undo == 100 now and then
sizeof(Undo) == 12

--Start of part of code---

static void
stack_note_undo(Stack *src, int n, Stack *dest)
{
  if (doing_undo) return;
  if (num_undo = max_undo)
  {
max_undo += 50;
fprintf(stderr, max_undo = %d, sizeof(Undo) = %d\n, max_undo,
  sizeof(Undo));
 /* if (max_undo == 100) mtrace(); */
if (undo)
  undo = (Undo *)realloc(undo, max_undo * sizeof(Undo));
else
  undo = (Undo *)malloc(max_undo * sizeof(Undo));
  }
/*if (max_undo == 100) muntrace();*/

---End of part of code

Dump with gdb without fprintf(...) and mtrace():

GNU gdb 6.8-debian
...

Program received signal SIGSEGV, Segmentation fault.
0xb7e9da19 in malloc_consolidate (av=0xb7f6e160) at malloc.c:4842
4842malloc.c: No such file or directory.
in malloc.c
(gdb) bt full
#0  0xb7e9da19 in malloc_consolidate (av=0xb7f6e160) at malloc.c:4842
fb = (mfastbinptr *) 0xb7f6e178
maxfb = (mfastbinptr *) 0xb7f6e18c
p = (mchunkptr) 0x9ff4e58
nextp = (mchunkptr) 0x9ffac08
unsorted_bin = (mchunkptr) 0xb7f6e190
first_unsorted = value optimized out
nextchunk = (mchunkptr) 0x9ff4e88
size = 208
nextsize = 160
prevsize = value optimized out
bck = (mchunkptr) 0x53
fwd = (mchunkptr) 0x65
#1  0xb7e9f9a5 in _int_malloc (av=0xb7f6e160, bytes=1201) at malloc.c:4166
nb = 1208
idx = 74
bin = value optimized out
victim = value optimized out
size = value optimized out
victim_index = value optimized out
remainder = value optimized out
remainder_size = value optimized out
block = value optimized out
bit = value optimized out
map = value optimized out
fwd = value optimized out
bck = value optimized out
---Type return to continue, or q return to quit---
#2  0xb7ea0ecf in _int_realloc (av=0xb7f6e160, oldmem=0x9ff4f70, bytes=1200)
at malloc.c:4972
nextsize = value optimized out
nb = 1208
oldp = (mchunkptr) 0x9ff4f68
oldsize = 608
newp = value optimized out
newsize = 608
newmem = value optimized out
next = (mchunkptr) 0x9ff51c8
remainder = value optimized out
remainder_size = value optimized out
bck = value optimized out
fwd = value optimized out
copysize = value optimized out
ncopies = value optimized out
errstr = value optimized out
#3  0xb7ea1a6f in *__GI___libc_realloc (oldmem=0x9ff4f70, bytes=1200)
at malloc.c:3709
ar_ptr = (mstate) 0xb7f6e160
nb = 1208
oldp = (mchunkptr) 0x9ff4f68
oldsize = 608
newp = value optimized out
hook = value optimized out
#4  0xb80d063a in stack_note_undo (src=0x9ff4dc0, n=27, dest=0x9ff4e28)
at stack.c:592
---Type return to continue, or q return to quit---
No locals.
#5  0xb80d0404 in stack_flip_card (src=0x9ff4dc0, dest=0x9ff4e28)
at stack.c:557
No locals.
#6  0x08049766 in hand_to_talon () at canfield.c:263
No locals.
#7  0x08049ede in click (x=54, y=275, b=1) at canfield.c:460
c = 4
f = 1
cp = (Picture *) 0x0
#8  0xb80c9cfd in table_loop () at table.c:405
event = {type = ev_buttondown, x = 54, y = 275, w = 474, h = 540, 
  button = 1, shifts = 0, key = -1206979872, time = 20910024}
first_expose = 1
click_button = 1
#9  0x08048ea4 in main (argc=1, argv=0xbfaf7464) at canfield.c:60
No locals.

-End without fprintf(...) and mtrace()

Dump from gdb with mtrace activated in code

GNU gdb 6.8-debian

max_undo = 50, sizeof(Undo) = 12
Base rank: 1
max_undo = 100, sizeof(Undo) = 12

Program received signal SIGSEGV, Segmentation fault.
0xb7d88a19 in malloc_consolidate (av=0xb7e59160) at malloc.c:4842
4842malloc.c: No such file or directory.
in malloc.c
(gdb) bt full
#0  0xb7d88a19 in malloc_consolidate (av=0xb7e59160) at malloc.c:4842
fb = (mfastbinptr *) 0xb7e59178
maxfb = (mfastbinptr *) 0xb7e5918c
p = (mchunkptr) 0x8057e58
nextp = (mchunkptr) 0x0
unsorted_bin = (mchunkptr) 0xb7e59190
first_unsorted = value optimized out
nextchunk = (mchunkptr) 0x8057e88
size = 208
nextsize = 160
prevsize = value optimized out
bck = (mchunkptr) 0x77
fwd = (mchunkptr) 0x70
#1  0xb7d8a9a5 in _int_malloc (av=0xb7e59160, bytes=512) at malloc.c:4166
nb = 520
idx = 64
bin = value 

Bug#540373: libc6: malloc.c, segmentation fault now and then

2009-08-09 Thread Bjarni Ingi Gislason
  Some more information about dump in ftp.

1)  No dump if text is keyed in, instead of using the macro $safn 
   (only tested once)

2)  Dump from a ftp daemon (server)

220-This is a Linux PC (Dell PE-2650, 2 CPUs P4/2800, 12 GB RAM)
220-running SuSE-Linux-8.2 with SuSE kernel 2.4.20-64GB-SMP.
220-/pub is ext3, a 2 TB Partition within a Transtec T6100F16R1
220-IDE/FC Raid array with 15+1 SATA disks Hitachi 240 GB Raid5
...
220 ftp.gwdg.de FTP server (Version wu-2.4.2-academ[BETA-18-em](1) Fri Apr 4 
23:14:50 MEST 2003) ready.
...
230 Guest login ok, access restrictions apply.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp cd pub/rfc
...
ftp $safn std*
dir std* | more
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
*** glibc detected *** ftp: corrupted double-linked list: 0x09ceb050 ***
=== Backtrace: =
/lib/libc.so.6[0xb7ed4845]
/lib/libc.so.6[0xb7ed4ae4]
/lib/libc.so.6[0xb7ed69a5]
/lib/libc.so.6(__libc_malloc+0x96)[0xb7ed8586]
/lib/libc.so.6(_obstack_newchunk+0x169)[0xb7edab99]
ftp[0x8052881]
ftp[0x804b991]
ftp[0x804f05f]
ftp[0x8054553]
/lib/libc.so.6(__libc_start_main+0xe5)[0xb7e80455]
ftp[0x8049b31]
=== Memory map: 
08048000-08058000 r-xp  03:09 3043   /usr/bin/netkit-ftp
08058000-0805a000 rw-p f000 03:09 3043   /usr/bin/netkit-ftp
0805a000-08067000 rw-p 0805a000 00:00 0 
09cd9000-09cfa000 rw-p 09cd9000 00:00 0  [heap]
b7c0-b7c21000 rw-p b7c0 00:00 0 
b7c21000-b7d0 ---p b7c21000 00:00 0 
b7db-b7dbc000 r-xp  03:03 15010  /lib/libgcc_s.so.1
b7dbc000-b7dbd000 rw-p b000 03:03 15010  /lib/libgcc_s.so.1
b7dc2000-b7e17000 r--p  03:09 278583 /usr/lib/locale/locale-archive
b7e17000-b7e26000 r-xp  03:03 15174  /lib/libresolv-2.7.so
b7e26000-b7e28000 rw-p e000 03:03 15174  /lib/libresolv-2.7.so
b7e28000-b7e2a000 rw-p b7e28000 00:00 0 
b7e2a000-b7e2e000 r-xp  03:03 15162  /lib/libnss_dns-2.7.so
b7e2e000-b7e3 rw-p 3000 03:03 15162  /lib/libnss_dns-2.7.so
b7e3-b7e38000 r-xp  03:03 15165  /lib/libnss_nis-2.7.so
b7e38000-b7e3a000 rw-p 7000 03:03 15165  /lib/libnss_nis-2.7.so
b7e3a000-b7e4d000 r-xp  03:03 15156  /lib/libnsl-2.7.so
b7e4d000-b7e4f000 rw-p 00012000 03:03 15156  /lib/libnsl-2.7.so
b7e4f000-b7e51000 rw-p b7e4f000 00:00 0 
b7e51000-b7e58000 r-xp  03:03 15158  /lib/libnss_compat-2.7.so
b7e58000-b7e5a000 rw-p 6000 03:03 15158  /lib/libnss_compat-2.7.so
b7e5a000-b7e63000 r-xp  03:03 15163  /lib/libnss_files-2.7.so
b7e63000-b7e65000 rw-p 8000 03:03 15163  /lib/libnss_files-2.7.so
b7e65000-b7e66000 rw-p b7e65000 00:00 0 
b7e66000-b7e68000 r-xp  03:03 15149  /lib/libdl-2.7.so
b7e68000-b7e6a000 rw-p 1000 03:03 15149  /lib/libdl-2.7.so
b7e6a000-b7fa2000 r-xp  03:03 15045  /lib/libc-2.7.so
b7fa2000-b7fa3000 r--p 00138000 03:03 15045  /lib/libc-2.7.so
b7fa3000-b7fa5000 rw-p 00139000 03:03 15045  /lib/libc-2.7.so
b7fa5000-b7fa9000 rw-p b7fa5000 00:00 0 
b7fa9000-b7fd8000 r-xp  03:03 15136  /lib/libncurses.so.5.7
b7fd8000-b7fdb000 rw-p 0002f000 03:03 15136  /lib/libncurses.so.5.7
b7fdb000-b8008000 r-xp  03:03 15087  /lib/libreadline.so.5.2
b8008000-b800c000 rw-p 0002d000 03:03 15087  /lib/libreadline.so.5.2
b800c000-b800d000 rw-p b800c000 00:00 0 
b800e000-b8013000 rw-p b800e000 00:00 0 
b8013000-b8014000 r-xp b8013000 00:00 0  [vdso]
b8014000-b802e000 r-xp  03:03 13901  /lib/ld-2.7.so
b802e000-b803 rw-p 0001a000 03:03 13901  /lib/ld-2.7.so
bfb1a000-bfb2f000 rw-p bffeb000 00:00 0  [stack]
Abort

-- 
Bjarni I. Gislason



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



Bug#540373: libc6: malloc.c, segmentation fault now and then

2009-08-12 Thread Bjarni Ingi Gislason
Hinn 9. ágúst 2009 lét Aurelien Jarno þetta frá sér fara:
 On Sun, Aug 09, 2009 at 05:22:27PM +, Bjarni Ingi Gislason wrote:
Some more information about dump in ftp.
  
  1)  No dump if text is keyed in, instead of using the macro $safn 
 (only tested once)
 
 Is the problem always reproducible?
 

No, but I found a solution, see next item.

...
  dir std* | more
  200 PORT command successful.
  150 Opening ASCII mode data connection for /bin/ls.
  *** glibc detected *** ftp: corrupted double-linked list: 0x09ceb050 ***
 
 This sounds like a bug in the ftp package.
 
  Thanks for the tip.  This bug has been reported for the ftp package.
Bug #508378 explains the situation.  One then only needs to add enough
spaces to the definition of the macro, in my case 2 spaces after the
first word, to get it working.

  I think I should report the segmentation fault from ace-of-penguins
to that package.

  There are still issues with malloc.c on my mind.

1) The libc6-dbg package should not be compiled with the -O option (see
value optimized out in a backtrace).  Use that library only for the
program to be tested (e.g.

env LD_LIBRARY_PATH=/usr/lib/debug program(s) 

  or add the name after .../debug if the variable exists.

  Put that in a file and source the file.  Repeating is thus simple.

  Such information could be in a README file (now absent) with some
references about debugging.

2) The segmentation fault is in the unlink(nextchunk, bck, fwd)
function, but it is a #define.  Therefore no backtrace???

  Maybe a compile dependent version of unlink should be used if
debugging information is created (option -g).

3) Even an malloc(512) can cause a segmentation fault (example with
mtrace(), line 314: malloc (TRACE_BUFFER_SIZE) ).

4) Errors (warnings) could be better phrased for the novices

Suggestion: Instead of

*** glibc detected *** ftp: corrupted double-linked list: 0x09ceb050 ***

use e.g.

*** glibc detected invalid data from ftp: ...

Generally state with a sentence (if known):

1) Who is reporting

2) What is done

3) Why is it done (cause of problem)

4) Who is the culprit

-- 
Bjarni I. Gislason



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



Bug#543120: ace-of-penguins: Segmentation fault now and then in ace-canfield

2009-08-22 Thread Bjarni Ingi Gislason
Package: ace-of-penguins
Version: 1.2-8
Severity: normal

  This bug was originally reported for the package libc6, file
malloc.c, see bug #540373.

  I used the package electric-fence to pinpoint the cause.  It
was reading an array[-1] element, that later caused malloc to
signal a segmentation fault.

  I applied two one-line patches.  I tested the patched
ace-canfield game, where I discovered the segmentation
fault, and there are so far no faults.  I tested once other card
games, that use the stack.c program, and there was no
malfunction.

stack.c is the (one line) patched version from debian, not the
original.


--- stack.c 2009-08-22 15:08:02.0 +
+++ stack_patched.c 2009-08-22 15:12:01.0 +
@@ -554,8 +554,9 @@
 
 void
 stack_flip_card(Stack *src, Stack *dest)
 {
+  if (src-num_cards  1) return; // used as an index in an array
   stack_note_undo(src, src-num_cards-1, dest);
   doing_undo = 1;
   if (src != dest)
   {
@@ -595,8 +596,9 @@
 else {
   undo = (Undo *)malloc(max_undo * sizeof(Undo));
}
   }
+  if (src-num_cards  1) return; // used as an index in an array
   undo[num_undo].src = src;
   undo[num_undo].dest = dest;
   undo[num_undo].count = stack_count_cards(src) - n + 1;
   undo[num_undo].facedown = src-cards[src-num_cards-1]  FACEDOWN;

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.26b
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages ace-of-penguins depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libpng12-0 1.2.27-2+lenny2   PNG library - runtime
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

ace-of-penguins recommends no packages.

ace-of-penguins suggests no packages.

-- no debconf information

-- 
B. Gislason



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



Bug#594260: less: more information about options -i and -I (octets)

2010-08-25 Thread Bjarni Ingi Gislason
  The culprits are the signed char values of octets (8 bit
characters) and the wide character functions, eg. iswupper().

  The value of the capital letter Ö (O with diaeresis, 0xD6) from
a signed char variable is 4,294,967,254 in a wchar_t (unsigned int)
variable.  The function iswupper() with this value says it is not
an upper case character!

  The code in cvt.c, lines 97-

/* Just copy the char to the destination buffer. */
if ((ops  CVT_TO_LC)  IS_UPPER(ch))
  ch = TO_LOWER(ch);
put_wchar(dst, ch);

  is transformed to

if ((ops  01)  iswupper(ch))
  ch = towlower(ch)
put_wchar(dst,ch)

  The value of ops was 7 in my tests.

  The function towlower() is never(?) executed, because
iswupper(ch) returns zero for (some, all?) octets in the form of a
signed character value.

  This means

1) All programs that deal with wide characters (eg. UTF-8) must be
compiled with char = unsigned char.

2) The signed char type is obsolete.

3) The C-standard should be revised, having only one char
variable type, interpreted as a nonnegative integer value (or the
same as unsigned char is now).



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



Bug#595180: tcsh: ^W (werase) acts the same as ^U (kill)

2010-09-01 Thread Bjarni Ingi Gislason
Package: tcsh
Version: 6.14.00-7
Severity: normal

  Output from stty -a:

speed 38400 baud; rows 28; columns 80; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = undef;
eol2 = undef; swtch = undef; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon ixoff
-iuclc -ixany -imaxbel -iutf8
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt
echoctl echoke

  Output from setty:

iflag:-inlcr -igncr +icrnl 
oflag:+opost +onlcr -onlret 
cflag:
lflag:+isig +icanon +echo +echoe -echonl -noflsh +echoctl -flusho +iexten 
chars:

  The ^W acts as intended in the bash and dash shells.


-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.26-24a
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages tcsh depends on:
ii  libc6 2.7-18lenny4   GNU C Library: Shared libraries
ii  libncurses5   5.7+20081213-1 shared libraries for terminal hand

tcsh recommends no packages.

tcsh suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#594260: less: Options -i -I do not work for 8 bit characters

2010-08-24 Thread Bjarni Ingi Gislason
Package: less
Version: 418-1
Severity: normal

  The program must be compiled with -funsigned-char for these
options to work.

-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.26f
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages less depends on:
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  libc6 2.7-18lenny4   GNU C Library: Shared libraries
ii  libncurses5   5.7+20081213-1 shared libraries for terminal hand

less recommends no packages.

less suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#544317: wall: outputs ÿ (0xFF) as \377

2009-08-30 Thread Bjarni Ingi Gislason
Package: bsdutils
Version: 1:2.13.1.1-1
Severity: normal


Input file:
x= 0   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F

2x !  #   $   %  '   (   )   *   +   ,   -   .   /
3x 0   1   2   3   4   5   6   7   8   9   :   ;  =  ?
4x @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O
5x P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _
6x `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o
7x p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~

Ax     ¡   ¢   £   ¤   ¥   ¦   §   ¨   ©   ª   «   ¬   ­   ®   ¯
Bx °   ±   ²   ³   ´   µ   ¶   ·   ¸   ¹   º   »   ¼   ½   ¾   ¿
Cx À   Á   Â   Ã   Ä   Å   Æ   Ç   È   É   Ê   Ë   Ì   Í   Î   Ï
Dx Ð   Ñ   Ò   Ó   Ô   Õ   Ö   ×   Ø   Ù   Ú   Û   Ü   Ý   Þ   ß
Ex à   á   â   ã   ä   å   æ   ç   è   é   ê   ë   ì   í   î   ï
Fx ð   ñ   ò   ó   ô   õ   ö   ÷   ø   ù   ú   û   ü   ý   þ   ÿ

Command: wall  input file

output (can't be captured by script):

Broadcast Message from XXX
(/dev/tty3) at 15:33 ...

x= 0   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F

2x !  #   $   %  '   (   )   *   +   ,   -   .   /
3x 0   1   2   3   4   5   6   7   8   9   :   ;  =  ?
4x @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O
5x P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _
6x `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o
7x p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~

Ax     ¡   ¢   £   ¤   ¥   ¦   §   ¨   ©   ª   «   ¬   ­   ®   ¯
Bx °   ±   ²   ³   ´   µ   ¶   ·   ¸   ¹   º   »   ¼   ½   ¾   ¿
Cx À   Á   Â   Ã   Ä   Å   Æ   Ç   È   É   Ê   Ë   Ì   Í   Î   Ï
Dx Ð   Ñ   Ò   Ó   Ô   Õ   Ö   ×   Ø   Ù   Ú   Û   Ü   Ý   Þ   ß
Ex à   á   â   ã   ä   å   æ   ç   è   é   ê   ë   ì   í   î   ï
Fx ð   ñ   ò   ó   ô   õ   ö   ÷   ø   ù   ú   û   ü   ý   þ   \377


-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.26b
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages bsdutils depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries

Versions of packages bsdutils recommends:
ii  bsdmainutils  6.1.10 collection of more utilities from 

bsdutils suggests no packages.

-- no debconf information

-- 
B. Gislason



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



Bug#544343: finger outputs ÿ (0xFF) as M-^?

2009-08-30 Thread Bjarni Ingi Gislason
Package: finger
Version: 0.17-12
Severity: normal


File .plan:

x= 0   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F

2x !  #   $   %  '   (   )   *   +   ,   -   .   /
3x 0   1   2   3   4   5   6   7   8   9   :   ;  =  ?
4x @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O
5x P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _
6x `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o
7x p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~

Ax     ¡   ¢   £   ¤   ¥   ¦   §   ¨   ©   ª   «   ¬   ­   ®   ¯
Bx °   ±   ²   ³   ´   µ   ¶   ·   ¸   ¹   º   »   ¼   ½   ¾   ¿
Cx À   Á   Â   Ã   Ä   Å   Æ   Ç   È   É   Ê   Ë   Ì   Í   Î   Ï
Dx Ð   Ñ   Ò   Ó   Ô   Õ   Ö   ×   Ø   Ù   Ú   Û   Ü   Ý   Þ   ß
Ex à   á   â   ã   ä   å   æ   ç   è   é   ê   ë   ì   í   î   ï
Fx ð   ñ   ò   ó   ô   õ   ö   ÷   ø   ù   ú   û   ü   ý   þ   ÿ

Output from finger -l:

...

x= 0   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F

2x !  #   $   %  '   (   )   *   +   ,   -   .   /
3x 0   1   2   3   4   5   6   7   8   9   :   ;  =  ?
4x @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O
5x P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _
6x `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o
7x p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~

Ax     ¡   ¢   £   ¤   ¥   ¦   §   ¨   ©   ª   «   ¬   ­   ®   ¯
Bx °   ±   ²   ³   ´   µ   ¶   ·   ¸   ¹   º   »   ¼   ½   ¾   ¿
Cx À   Á   Â   Ã   Ä   Å   Æ   Ç   È   É   Ê   Ë   Ì   Í   Î   Ï
Dx Ð   Ñ   Ò   Ó   Ô   Õ   Ö   ×   Ø   Ù   Ú   Û   Ü   Ý   Þ   ß
Ex à   á   â   ã   ä   å   æ   ç   è   é   ê   ë   ì   í   î   ï
Fx ð   ñ   ò   ó   ô   õ   ö   ÷   ø   ù   ú   û   ü   ý   þ   M-^?



-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.26b
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages finger depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries

finger recommends no packages.

finger suggests no packages.

-- no debconf information

-- 
B. Gislason



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



Bug#544782: psfgettable: Manual and -h show different usage

2009-09-02 Thread Bjarni Ingi Gislason
Package: console-tools
Version: 1:0.2.3dbs-65.1
Severity: normal

  The manual claims different usage than the output from
psfgettable -h:

From the command
Usage: psfgettable psffont chartable [outfile]
...
valid options are:
-f --font=f   psffont filename
-o --outfile=foutput filename
-h --help display this help text and exit
-V --version  display version information and exit

End of output from command

From the manual

psfgettable fontfile [outfile]

If the font file name is a single dash (-), the font is read from
standard input.

---End from the manual-

  The word chartable is not explained.

  Testing shows (e.g. gunzip -c \
/usr/share/consolefonts/iso01.f16.psf.gz  file)

1) command line from manual works

2) options -f and -o work

3) if the command reads from standard input according to the
manual, an error is issued:

stdin: Illegal seek

  NOTE: The word illegal should not be used in error messages
in computer codes.  Instead the word invalid is appropriate. 

  See GNU Coding Standards in www.gnu.org/prep/standards/.
Chapter 6.1 GNU Manuals, second last paragraph.  Version from
7th June 2009.

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.26c
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-tools depends on:
ii  debconf [debconf-2.0]1.5.24  Debian configuration management sy
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libconsole   1:0.2.3dbs-65.1 Shared libraries for Linux console
ii  lsb-base 3.2-20  Linux Standard Base 3.2 init scrip

Versions of packages console-tools recommends:
ii  console-common0.7.80 basic infrastructure for text cons
ii  console-data  2:1.07-11  keymaps, fonts, charset maps, fall

Versions of packages console-tools suggests:
ii  kbd-compat   1:0.2.3dbs-65.1 Wrappers around console-tools for 

-- no debconf information

-- 
B. Gislason



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



Bug#622401: xserver-xorg-video-trident: Error message and exit with iceape and iceweasel

2011-04-12 Thread Bjarni Ingi Gislason
Package: xserver-xorg-video-trident
Version: 1:1.3.4-2
Severity: important

*** Please type your report below this line ***

  If iceweasel or iceape are used, there is an error message
and exit.

(EE) TRIDENT(0): Unable to map IO aperture. Invalid argument (22)
Fatal server error:
AddScreen/ScreenInit failed for driver 0
...
Error: cannot open display: :0

  This does not happen with simpler programs like xdpf, gv
and a game ace-of-penguins suite (like ace-canfield).

  The name of the issuer (subroutine) of the error messages is
missing.  See gnu_coding_standards.* in www.gnu.org/


-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Jun 30  2009 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1783236 Mar 26 07:55 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
00:02.0 VGA compatible controller [0300]: Trident Microsystems TGUI 
9660/938x/968x [1023:9660] (rev d3)

Xorg X server configuration file status:

-rw-r--r-- 1 root root 2712 Apr 12 15:22 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
  FontPath /usr/share/fonts/X11/misc,/usr/share/fonts/X11/75dpi/:unscaled
  FontPath /usr/share/fonts/X11/Type1,/usr/share/fonts/X11/75dpi
  FontPath /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
#  FontPath built-ins
EndSection

Section ServerFlags
Option DefaultServerLayoutlaptop
#   Option AIGLX  no
#   Option GLXno
Option UseDefaultFontPath no
EndSection

Section InputClass
Identifier evdev pointer catchall
MatchIsPointer on
MatchDevicePath /dev/input/event*
Driver evdev
EndSection

Section Module
#   Disable dri
#   Disable dri2
#   Disable glx
#   Load glx
Load evdev

EndSection


Section Device
Identifier  Configured Video Device
#   Identifier  Trident Microsystems TGUI 9660/938x/968x
Driver  trident
#   Driver  vesa
BusID   PCI:0:2:0
EndSection

Section Monitor
Identifier  Configured Monitor
HorizSync   38-40
VertRefresh 57-63
EndSection

Section Screen
Identifier  Default Screen
Device  Configured Video Device
#   Device  Trident Microsystems TGUI 9660/938x/968x
Monitor Configured Monitor
DefaultDepth16
SubSection Display
Depth   1
Modes   800x600
EndSubSection
SubSection Display
Depth   4
Modes   800x600
EndSubSection
SubSection Display
Depth   8
Modes   800x600
EndSubSection
SubSection Display
Depth   15
Modes   800x600
EndSubSection
SubSection Display
Depth   16
Modes   800x600
EndSubSection
SubSection Display
Depth   24
Modes   800x600
EndSubSection
EndSection

Section ServerLayout
Identifier  laptop
Screen  Default Screen
#   InputDevice Generic Keyboard  CoreKeyboard
#   InputDevice Configured Mouse  CorePointer
#   InputDevice Serial Mouse  SendCoreEvents
#   InputDevice Synaptics Touchpad
#   InputDevice USB-mouse CorePointer
EndSection

Section ServerLayout
Identifier  mouse
Screen  Default Screen
#   InputDevice Generic Keyboard
#   InputDevice Serial Mouse  CorePointer
#   InputDevice USB-Mouse CorePointer
#   InputDevice Synaptics Touchpad
EndSection



/etc/X11/xorg.conf.d does not exist.

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
---
Linux version 2.6.32-33 (2.6.32) (r...@jeti.jeti.is) (gcc version 4.4.5 (Debian 
4.4.5-8) ) #2 Sun Apr 10 01:31:11 GMT 2011

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 23997 Apr 12 15:24 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file 

Bug#622660: xserver-xorg-video-vesa: The vesa video driver does not allow users on the console to execute X

2011-04-13 Thread Bjarni Ingi Gislason
Package: xserver-xorg-video-vesa
Version: 1:2.3.0-5
Severity: normal


  Executing X on a console (/dev/tty?) (a laptop computer)
with the vesa video driver results in an error message:

X: user not authorized to run the X server, aborting.

  The file /etc/X11/Xwrapper.config contains:

allowed_users=console

  This parameter must then be changed to anybody to bypass the
error.

  That should not be necessary.

-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Jun 30  2009 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1783236 Mar 26 07:55 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
00:02.0 VGA compatible controller [0300]: Trident Microsystems TGUI 
9660/938x/968x [1023:9660] (rev d3)

Xorg X server configuration file status:

-rw-r--r-- 1 root root 2712 Apr 13 00:24 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
  FontPath /usr/share/fonts/X11/misc,/usr/share/fonts/X11/75dpi/:unscaled
  FontPath /usr/share/fonts/X11/Type1,/usr/share/fonts/X11/75dpi
  FontPath /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
#  FontPath built-ins
EndSection

Section ServerFlags
Option DefaultServerLayoutlaptop
#   Option AIGLX  no
#   Option GLXno
Option UseDefaultFontPath no
EndSection

Section InputClass
Identifier evdev pointer catchall
MatchIsPointer on
MatchDevicePath /dev/input/event*
Driver evdev
EndSection

Section Module
#   Disable dri
#   Disable dri2
#   Disable glx
#   Load glx
Load evdev

EndSection


Section Device
Identifier  Configured Video Device
#   Identifier  Trident Microsystems TGUI 9660/938x/968x
#   Driver  trident
Driver  vesa
BusID   PCI:0:2:0
EndSection

Section Monitor
Identifier  Configured Monitor
HorizSync   38-40
VertRefresh 57-63
EndSection

Section Screen
Identifier  Default Screen
Device  Configured Video Device
#   Device  Trident Microsystems TGUI 9660/938x/968x
Monitor Configured Monitor
DefaultDepth16
SubSection Display
Depth   1
Modes   800x600
EndSubSection
SubSection Display
Depth   4
Modes   800x600
EndSubSection
SubSection Display
Depth   8
Modes   800x600
EndSubSection
SubSection Display
Depth   15
Modes   800x600
EndSubSection
SubSection Display
Depth   16
Modes   800x600
EndSubSection
SubSection Display
Depth   24
Modes   800x600
EndSubSection
EndSection

Section ServerLayout
Identifier  laptop
Screen  Default Screen
#   InputDevice Generic Keyboard  CoreKeyboard
#   InputDevice Configured Mouse  CorePointer
#   InputDevice Serial Mouse  SendCoreEvents
#   InputDevice Synaptics Touchpad
#   InputDevice USB-mouse CorePointer
EndSection

Section ServerLayout
Identifier  mouse
Screen  Default Screen
#   InputDevice Generic Keyboard
#   InputDevice Serial Mouse  CorePointer
#   InputDevice USB-Mouse CorePointer
#   InputDevice Synaptics Touchpad
EndSection



/etc/X11/xorg.conf.d does not exist.

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
---
Linux version 2.6.32-33 (2.6.32) (r...@jeti.jeti.is) (gcc version 4.4.5 (Debian 
4.4.5-8) ) #2 Sun Apr 10 01:31:11 GMT 2011

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 28777 Apr 13 00:29 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[  3519.027] _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
[  3519.027] 

Bug#622661: xserver-xorg-video-vesa: vesa video driver changes the number of screen lines from 28 to 25

2011-04-13 Thread Bjarni Ingi Gislason
Package: xserver-xorg-video-vesa
Version: 1:2.3.0-5
Severity: normal


  The vesa video driver causes the consoles (/dev/tty? on a
laptop) to show only 25 lines instead of the orignal 28.

  This situation can not be corrected with reset or
stty $STTY, where STTY is from stty -g at the start of a
session (login).  One must execute /etc/init.d/console-screen.sh
reload (as user root) to correct the situation.

  The used font is iso01.f14.psf.gz.

-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Jun 30  2009 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1783236 Mar 26 07:55 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
00:02.0 VGA compatible controller [0300]: Trident Microsystems TGUI 
9660/938x/968x [1023:9660] (rev d3)

Xorg X server configuration file status:

-rw-r--r-- 1 root root 2712 Apr 13 00:24 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
  FontPath /usr/share/fonts/X11/misc,/usr/share/fonts/X11/75dpi/:unscaled
  FontPath /usr/share/fonts/X11/Type1,/usr/share/fonts/X11/75dpi
  FontPath /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
#  FontPath built-ins
EndSection

Section ServerFlags
Option DefaultServerLayoutlaptop
#   Option AIGLX  no
#   Option GLXno
Option UseDefaultFontPath no
EndSection

Section InputClass
Identifier evdev pointer catchall
MatchIsPointer on
MatchDevicePath /dev/input/event*
Driver evdev
EndSection

Section Module
#   Disable dri
#   Disable dri2
#   Disable glx
#   Load glx
Load evdev

EndSection


Section Device
Identifier  Configured Video Device
#   Identifier  Trident Microsystems TGUI 9660/938x/968x
#   Driver  trident
Driver  vesa
BusID   PCI:0:2:0
EndSection

Section Monitor
Identifier  Configured Monitor
HorizSync   38-40
VertRefresh 57-63
EndSection

Section Screen
Identifier  Default Screen
Device  Configured Video Device
#   Device  Trident Microsystems TGUI 9660/938x/968x
Monitor Configured Monitor
DefaultDepth16
SubSection Display
Depth   1
Modes   800x600
EndSubSection
SubSection Display
Depth   4
Modes   800x600
EndSubSection
SubSection Display
Depth   8
Modes   800x600
EndSubSection
SubSection Display
Depth   15
Modes   800x600
EndSubSection
SubSection Display
Depth   16
Modes   800x600
EndSubSection
SubSection Display
Depth   24
Modes   800x600
EndSubSection
EndSection

Section ServerLayout
Identifier  laptop
Screen  Default Screen
#   InputDevice Generic Keyboard  CoreKeyboard
#   InputDevice Configured Mouse  CorePointer
#   InputDevice Serial Mouse  SendCoreEvents
#   InputDevice Synaptics Touchpad
#   InputDevice USB-mouse CorePointer
EndSection

Section ServerLayout
Identifier  mouse
Screen  Default Screen
#   InputDevice Generic Keyboard
#   InputDevice Serial Mouse  CorePointer
#   InputDevice USB-Mouse CorePointer
#   InputDevice Synaptics Touchpad
EndSection



/etc/X11/xorg.conf.d does not exist.

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
---
Linux version 2.6.32-33 (2.6.32) (r...@jeti.jeti.is) (gcc version 4.4.5 (Debian 
4.4.5-8) ) #2 Sun Apr 10 01:31:11 GMT 2011

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 28777 Apr 13 00:29 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[  3519.027] _XSERVTransSocketOpenCOTSServer: Unable to 

Bug#622660: xserver-xorg-video-vesa: The vesa video driver does not allow users on the console to execute X. Wrong statement

2011-04-14 Thread Bjarni Ingi Gislason
On Wed, Apr 13, 2011 at 05:52:11PM +, Bjarni Ingi Gislason wrote:
 Package: xserver-xorg-video-vesa
 Version: 1:2.3.0-5
 Severity: normal
 
 
   Executing X on a console (/dev/tty?) (a laptop computer)
 with the vesa video driver results in an error message:
 
 X: user not authorized to run the X server, aborting.
 
   The file /etc/X11/Xwrapper.config contains:
 
 allowed_users=console
 
   This parameter must then be changed to anybody to bypass the
 error.
 
   That should not be necessary.
 

  I can not reproduce this behaviour.  The next time (only once) I
got this error, I was using the trident video driver.  This was
also after I installed package xserver-xorg-core-dbg.

  This is therefore a rare situation and belongs to the
xserver-xorg-core package.

[deletet material]
 
 -- System Information:
 Debian Release: 6.0.1
   APT prefers stable-updates
   APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
 'testing'), (500, 'stable')
 Architecture: i386 (i586)
 
 Kernel: Linux 2.6.32-33
 Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages xserver-xorg-video-vesa depends on:
 ii  libc6  2.11.2-10 Embedded GNU C Library: Shared 
 lib
 ii  libdrm22.4.21-1~squeeze3 Userspace interface to kernel 
 DRM 
 ii  xserver-xorg-core [xor 2:1.9.5-1 Xorg X server - core server
 

-- 
Bjarni I. Gíslason



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



Bug#622401: xserver-xorg-video-trident: Error message and exit with iceape and iceweasel. More info (backtrace)

2011-04-15 Thread Bjarni Ingi Gislason
On Tue, Apr 12, 2011 at 07:25:21PM +, Bjarni Ingi Gislason wrote:
 Package: xserver-xorg-video-trident
 Version: 1:1.3.4-2
 Severity: important
 
 *** Please type your report below this line ***
 
   If iceweasel or iceape are used, there is an error message
 and exit.
 
 (EE) TRIDENT(0): Unable to map IO aperture. Invalid argument (22)
 Fatal server error:
 AddScreen/ScreenInit failed for driver 0
 ...
 Error: cannot open display: :0
 
   This does not happen with simpler programs like xdpf, gv
 and a game ace-of-penguins suite (like ace-canfield).
 
   The name of the issuer (subroutine) of the error messages is
 missing.  See gnu_coding_standards.* in www.gnu.org/
 
 
[lines removed]
 
 -- System Information:
 Debian Release: 6.0.1
   APT prefers stable-updates
   APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
 'testing'), (500, 'stable')
 Architecture: i386 (i586)
 
 Kernel: Linux 2.6.32-33
 Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages xserver-xorg-video-trident depends on:
 ii  libc6 2.11.2-10  Embedded GNU C Library: Shared 
 lib
 ii  xserver-xorg-core [xorg-video 2:1.9.5-1  Xorg X server - core server
 

  Here is a copy from script ... (issued as user root):

Script started on Fri Apr 15 01:19:18 2011
# Xorg -core 
[1] 2728
# _XSERVTransSocketOpenCOTSServer: Unable to open socket for inet6
_XSERVTransOpen: transport open failed for inet6/jeti.jeti.is:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for inet6

X.Org X Server 1.9.5
Release Date: 2011-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-5-amd64 i686 Debian
Current Operating System: Linux jeti.jeti.is 2.6.32-33 #2 Sun Apr 10 01:31:11 
GMT 2011 i586
Kernel command line: auto BOOT_IMAGE=linux26.32-33 ro root=303 vt.default_utf8=0
Build Date: 26 March 2011  07:50:38AM
xorg-server 2:1.9.5-1 (Cyril Brulebois k...@debian.org) 
Current version of pixman: 0.21.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Fri Apr 15 01:19:27 2011
(==) Using config file: /etc/X11/xorg.conf
(==) Using system config directory /usr/share/X11/xorg.conf.d
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server

# iceape --display=:0 
[2] 2734
# 1 XSELINUXs still allocated at reset
SCREEN: 0 objects of 136 bytes = 0 total bytes 0 private allocs
COLORMAP: 0 objects of 4 bytes = 0 total bytes 0 private allocs
DEVICE: 0 objects of 16 bytes = 0 total bytes 0 private allocs
CLIENT: 0 objects of 160 bytes = 0 total bytes 0 private allocs
WINDOW: 0 objects of 32 bytes = 0 total bytes 0 private allocs
PIXMAP: 1 objects of 40 bytes = 40 total bytes 0 private allocs
GC: 0 objects of 92 bytes = 0 total bytes 0 private allocs
CURSOR: 0 objects of 4 bytes = 0 total bytes 0 private allocs
CURSOR_BITS: 0 objects of 4 bytes = 0 total bytes 0 private allocs
DBE_WINDOW: 0 objects of 12 bytes = 0 total bytes 0 private allocs
PICTURE: 0 objects of 4 bytes = 0 total bytes 0 private allocs
TOTAL: 1 objects, 40 bytes, 0 allocs
1 PIXMAPs still allocated at reset
PIXMAP: 1 objects of 40 bytes = 40 total bytes 0 private allocs
GC: 0 objects of 92 bytes = 0 total bytes 0 private allocs
CURSOR: 0 objects of 4 bytes = 0 total bytes 0 private allocs
CURSOR_BITS: 0 objects of 4 bytes = 0 total bytes 0 private allocs
DBE_WINDOW: 0 objects of 12 bytes = 0 total bytes 0 private allocs
PICTURE: 0 objects of 4 bytes = 0 total bytes 0 private allocs
TOTAL: 1 objects, 40 bytes, 0 allocs
(EE) TRIDENT(0): Unable to map IO aperture. Invalid argument (22)

Fatal server error:
AddScreen/ScreenInit failed for driver 0


Please consult the The X.Org Foundation support 
 at http://wiki.x.org
 for help. 
Please also check the log file at /var/log/Xorg.0.log for additional 
information.

Error: cannot open display: :0

[1]-  Aborted (core dumped) Xorg -core
[2]+  Exit 1  iceape --display=:0
# gdb /usr/lisb/debug/usr/bin/Xorg -c core
GNU gdb (GDB) 7.0.1-debian
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/lib/debug/usr/bin/Xorg...done.

warning: Unable

Bug#622401: xserver-xorg-video-trident: Error message and exit with iceape and iceweasel. One solution.

2011-05-11 Thread Bjarni Ingi Gislason
On Sun, May 08, 2011 at 10:26:00AM +0200, Julien Cristau wrote:
 On Sun, May  8, 2011 at 01:25:01 +, Bjarni Ingi Gislason wrote:
 
The X server issues PreInit that maps and unmaps.  Then it
  issues ScreenInit which maps.
  
iceweasel causes a second map though ScreenInit, which
  leads to error.
  
 That should never happen.  ScreenInit is called at the start of a
 session, and CloseScreen should be called before the next ScreenInit.
 That's not a client bug.
 

  You are probably right.  I have made some more tests in the
trident driver code.  Unmapping is only done in CloseScreen,
if vtSema is true.  If I switch terminals after issuing a
single X  command to issue iceweasel, then vtSema is false
in the next CloseScreen.  iceweasel switches automatically to
the X display, but xpdf does not do it.

  If I transfer the TRIDENTUnmapMem(pScrn) subroutine outside the
if (pScrn-vtSema) block, then the missing unmapping occurs.

  A comment in the code before CloseScreen is:

It should really also unmap the video memory too.

  The conditions to trigger the error (using libpciaccess) are

1) change from the X display (pure server, e.g. X -retro ) to
a text terminal

2) issue a X client (in the background) that automatically switches
to the X display.

  Other video drivers should be tested in this way.

-- 
Bjarni I. Gislason



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



Bug#626538: xinit: Too many empty lines in the startx script

2011-05-12 Thread Bjarni Ingi Gislason
Package: xinit
Version: 1.2.0-2
Severity: minor

  There are 78 empty lines of 229 total in this script.  One
could think, that something is missing, but the md4sum is correct.

-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-33B
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xinit depends on:
ii  coreutils 8.5-1  GNU core utilities
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libx11-6  2:1.4.2-1  X11 client-side library
ii  x11-common1:7.5+8X Window System (X.Org) infrastruc
ii  xauth 1:1.0.4-1  X authentication utility

Versions of packages xinit recommends:
ii  xserver-xorg  1:7.6+6the X.Org X server
pn  xterm | x-session-manager | x none (no description available)

xinit suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#629132: ifconfig: shortened numbers in output are not rounded off

2011-06-03 Thread Bjarni Ingi Gislason
Package: net-tools
Version: 1.60-23
Severity: minor


  Example:

  RX bytes:24815 (24.2 KiB)  TX bytes:22931 (22.3 KiB)
correct: 22.4


-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-33B
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages net-tools depends on:
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib

net-tools recommends no packages.

net-tools suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#629133: lsmod: prints always the header line, even if no data is there

2011-06-03 Thread Bjarni Ingi Gislason
Package: module-init-tools
Version: 3.12-1
Severity: minor

  Output is always

Module  Size  Used by

  even when there are no modules loaded.  In that case there
should be no output.

-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-33B
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages module-init-tools depends on:
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

module-init-tools recommends no packages.

module-init-tools suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#629134: ul changes tab to spaces

2011-06-03 Thread Bjarni Ingi Gislason
Package: bsdmainutils
Version: 8.0.13
Severity: minor

  This behaviour is not documented in the manual.

  Example (TERM = linux):

printf 'a\tb\tc' | ul | od -tcx1

  shows

000   a   b
 61  20  20  20  20  20  20  20  62  20  20  20  20  20  20  20
020   c  \n
 63  0a
022

-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-33B
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages bsdmainutils depends on:
ii  bsdutils  1:2.17.2-9 Basic utilities from 4.4BSD-Lite
ii  debianutils   3.4Miscellaneous utilities specific t
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand

bsdmainutils recommends no packages.

Versions of packages bsdmainutils suggests:
[lines removed]

-- debconf information excluded

-- 
Bjarni I. Gíslason



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



Bug#629133: lsmod: prints always the header line, even if no data is there

2011-06-04 Thread Bjarni Ingi Gislason
On Fri, Jun 03, 2011 at 08:54:42PM +0200, Marco d'Itri wrote:
 On Jun 03, Bjarni Ingi Gislason bjarn...@rhi.hi.is wrote:
 
even when there are no modules loaded.  In that case there
  should be no output.
 How did you come to this conclusion?
 

  I assume that lsmod only lists loaded modules.

  I read the book The Unix Philosophy and later the Linux
equivalent Linux and 

  For example:

  a) Small is beautiful

  b) Silence is golden.

  When there is no data, a header to explain it is needless, but
_forces_ it to be read, thus e.g. wasting time _paying_ attention
to actually _no_ information.

-- 
Bjarni I. Gislason



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



Bug#622401: xserver-xorg-video-trident: Error message and exit with iceape and iceweasel. PCI info

2011-04-28 Thread Bjarni Ingi Gislason
On Fri, Apr 15, 2011 at 07:50:03PM +, Bjarni Ingi Gislason wrote:
 On Tue, Apr 12, 2011 at 07:25:21PM +, Bjarni Ingi Gislason wrote:
  Package: xserver-xorg-video-trident
  Version: 1:1.3.4-2
  Severity: important
  
  *** Please type your report below this line ***
  
If iceweasel or iceape are used, there is an error message
  and exit.
  
  (EE) TRIDENT(0): Unable to map IO aperture. Invalid argument (22)
  Fatal server error:
  AddScreen/ScreenInit failed for driver 0
  ...
  Error: cannot open display: :0
  

  Some data related to the PCI bus.

  This causes error 22 (EINVAL), that trident reports:

libpciaccess: common_interface.c: Already mapped is
devp-num_mappings[0] with devp-num_mappings = 2, base =
0xfe7f, and size = 0x1

  PCI config for kernel (Debian linux-source-2.6.32-33, own compilation):

CONFIG_PCI_QUIRKS=y
# Bus options (PCI etc.)
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
# CONFIG_PCI_GOOLPC is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCIEPORTBUS is not set
# CONFIG_PCI_LEGACY is not set
CONFIG_PCI_DEBUG=y
# CONFIG_PCI_STUB is not set
CONFIG_PCI_IOV=y
# CONFIG_HOTPLUG_PCI is not set
# PCI IDE chipsets support
CONFIG_BLK_DEV_IDEPCI=y
# CONFIG_IDEPCI_PCIBUS_ORDER is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
CONFIG_NET_PCI=y
# CONFIG_NE2K_PCI is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIAL_8250_PCI=y


  From kern.log.  Video is :00:02.0


Allocating PCI resources starting at a00 (gap: a00:f600)
PCI: PCI BIOS revision 2.10 entry at 0xeb150, last bus=2
PCI: Using configuration type 1 for base access
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Scanning bus :00
pci :00:00.0: found [8086:7100] class 000600 header type 00
pci :00:00.0: calling quirk_resource_alignment+0x0/0x16a
pci :00:00.0: calling pci_fixup_transparent_bridge+0x0/0x28
pci :00:01.0: found [8086:7110] class 000601 header type 00
pci :00:01.0: calling quirk_resource_alignment+0x0/0x16a
pci :00:01.0: calling pci_fixup_transparent_bridge+0x0/0x28
pci :00:01.1: found [8086:7111] class 000101 header type 00
pci :00:01.1: reg 20 io port: [0x1100-0x110f]
pci :00:01.1: calling quirk_resource_alignment+0x0/0x16a
pci :00:01.1: calling pci_fixup_transparent_bridge+0x0/0x28
pci :00:01.2: found [8086:7112] class 000c03 header type 00
pci :00:01.2: reg 20 io port: [0x00-0x1f]
pci :00:01.2: calling quirk_resource_alignment+0x0/0x16a
pci :00:01.2: calling pci_fixup_transparent_bridge+0x0/0x28
pci :00:01.3: found [8086:7113] class 000680 header type 00
pci :00:01.3: calling quirk_piix4_acpi+0x0/0x130
pci :00:01.3: quirk: region 1000-103f claimed by PIIX4 ACPI
pci :00:01.3: quirk: region 1400-140f claimed by PIIX4 SMB
pci :00:01.3: PIIX4 devres C PIO at 0398-0399
pci :00:01.3: calling quirk_resource_alignment+0x0/0x16a
pci :00:01.3: calling pci_fixup_transparent_bridge+0x0/0x28
pci :00:01.3: calling pci_fixup_piix4_acpi+0x0/0xb
pci :00:02.0: found [1023:9660] class 000300 header type 00
pci :00:02.0: reg 10 32bit mmio: [0xfdc0-0xfdff]
pci :00:02.0: reg 14 32bit mmio: [0xfe7f-0xfe7f]
pci :00:02.0: reg 18 32bit mmio: [0xfe00-0xfe3f]
pci :00:02.0: reg 30 32bit mmio pref: [0x0c-0x0c]
pci :00:02.0: calling quirk_resource_alignment+0x0/0x16a
pci :00:03.0: found [104c:ac1c] class 000607 header type 02
pci :00:03.0: reg 10 32bit mmio: [0x00-0x000fff]
pci :00:03.0: calling quirk_resource_alignment+0x0/0x16a
pci :00:03.0: supports D1 D2
pci :00:03.0: PME# supported from D0 D1 D2 D3hot
pci :00:03.0: PME# disabled
pci :00:03.1: found [104c:ac1c] class 000607 header type 02
pci :00:03.1: reg 10 32bit mmio: [0x00-0x000fff]
pci :00:03.1: calling quirk_resource_alignment+0x0/0x16a
pci :00:03.1: supports D1 D2
pci :00:03.1: PME# supported from D0 D1 D2 D3hot
pci :00:03.1: PME# disabled
PCI: Fixups for bus :00
pci :00:03.0: scanning behind bridge, config 00, pass 0
pci :00:03.0: bus configuration invalid, reconfiguring
pci :00:03.1: scanning behind bridge, config 00, pass 0
pci :00:03.1: bus configuration invalid, reconfiguring
pci :00:03.0: scanning behind bridge, config 00, pass 1
pci :00:03.1: scanning behind bridge, config 00, pass 1
PCI: Bus scan for :00 returning with max=08
vgaarb: device added: PCI::00:02.0,decodes=io+mem,owns=io+mem,locks=none
pci :00:01.0: PIIX/ICH IRQ router [8086:7110]
pci :00:02.0: BAR 6: address space collision on of device 
[0x0c-0x0c]
pci :00:02.0: BAR 6: got res [0x1c00-0x1c00] bus 
[0x1c00-0x1c00] flags 0x27200
pci :00:03.0: BAR 0: got res [0x1c01-0x1c010fff] bus 
[0x1c01-0x1c010fff] flags 0x20200
pci :00:03.0: BAR 0: moved to bus

Bug#622401: xserver-xorg-video-trident: Error message and exit with iceape and iceweasel. One solution.

2011-04-29 Thread Bjarni Ingi Gislason
On Thu, Apr 28, 2011 at 06:03:07PM +, Bjarni Ingi Gislason wrote:
 On Fri, Apr 15, 2011 at 07:50:03PM +, Bjarni Ingi Gislason wrote:
  On Tue, Apr 12, 2011 at 07:25:21PM +, Bjarni Ingi Gislason wrote:
   Package: xserver-xorg-video-trident
   Version: 1:1.3.4-2
   Severity: important
   
   *** Please type your report below this line ***
   
 If iceweasel or iceape are used, there is an error message
   and exit.
   
   (EE) TRIDENT(0): Unable to map IO aperture. Invalid argument (22)
   Fatal server error:
   AddScreen/ScreenInit failed for driver 0
   ...
   Error: cannot open display: :0
   
 
   Some data related to the PCI bus.
 

  There is a name error in devp-num_mappings[0]; it should be
devp-mappings[0].

   This causes error 22 (EINVAL), that trident reports:
 
 libpciaccess: common_interface.c: Already mapped is
 devp-num_mappings[0] with devp-num_mappings = 2, base =
 0xfe7f, and size = 0x1
 
 [Rest is removed]

  (The commands that I use are  X  and iceweasel  on a text
terminal.)

  I have to eliminate the return EINVAL; statement to get the
browser to function.

  Some output from an inserted fprintf statement before the
(removed) return EINVAL;.

  The list is cumulative (fopen(..., a)).

Each output line starts with libpciaccess: common_interface.c: Already mapped 
is 

devp-mappings[0] with devp-num_mappings = 4, base = 0xfe7f, and size = 
0x1
devp-mappings[2] with devp-num_mappings = 4, base = 0xfe7f, and size = 
0x1
devp-mappings[1] with devp-num_mappings = 5, base = 0xfdc0, and size = 
0x20
devp-mappings[3] with devp-num_mappings = 5, base = 0xfdc0, and size = 
0x20
devp-mappings[0] with devp-num_mappings = 4, base = 0xfe7f, and size = 
0x1
devp-mappings[2] with devp-num_mappings = 4, base = 0xfe7f, and size = 
0x1
devp-mappings[1] with devp-num_mappings = 5, base = 0xfdc0, and size = 
0x20
devp-mappings[3] with devp-num_mappings = 5, base = 0xfdc0, and size = 
0x20
devp-mappings[0] with devp-num_mappings = 6, base = 0xfe7f, and size = 
0x1
devp-mappings[2] with devp-num_mappings = 6, base = 0xfe7f, and size = 
0x1
devp-mappings[4] with devp-num_mappings = 6, base = 0xfe7f, and size = 
0x1
devp-mappings[1] with devp-num_mappings = 7, base = 0xfdc0, and size = 
0x20
devp-mappings[3] with devp-num_mappings = 7, base = 0xfdc0, and size = 
0x20
devp-mappings[5] with devp-num_mappings = 7, base = 0xfdc0, and size = 
0x20
devp-mappings[0] with devp-num_mappings = 6, base = 0xfe7f, and size = 
0x1
devp-mappings[2] with devp-num_mappings = 6, base = 0xfe7f, and size = 
0x1
devp-mappings[4] with devp-num_mappings = 6, base = 0xfe7f, and size = 
0x1
devp-mappings[1] with devp-num_mappings = 7, base = 0xfdc0, and size = 
0x20
devp-mappings[3] with devp-num_mappings = 7, base = 0xfdc0, and size = 
0x20
devp-mappings[5] with devp-num_mappings = 7, base = 0xfdc0, and size = 
0x20
devp-mappings[0] with devp-num_mappings = 8, base = 0xfe7f, and size = 
0x1
devp-mappings[2] with devp-num_mappings = 8, base = 0xfe7f, and size = 
0x1
devp-mappings[4] with devp-num_mappings = 8, base = 0xfe7f, and size = 
0x1
devp-mappings[6] with devp-num_mappings = 8, base = 0xfe7f, and size = 
0x1
devp-mappings[1] with devp-num_mappings = 9, base = 0xfdc0, and size = 
0x20
devp-mappings[3] with devp-num_mappings = 9, base = 0xfdc0, and size = 
0x20
devp-mappings[5] with devp-num_mappings = 9, base = 0xfdc0, and size = 
0x20
devp-mappings[7] with devp-num_mappings = 9, base = 0xfdc0, and size = 
0x20
devp-mappings[0] with devp-num_mappings = 8, base = 0xfe7f, and size = 
0x1
devp-mappings[2] with devp-num_mappings = 8, base = 0xfe7f, and size = 
0x1
devp-mappings[4] with devp-num_mappings = 8, base = 0xfe7f, and size = 
0x1
devp-mappings[6] with devp-num_mappings = 8, base = 0xfe7f, and size = 
0x1
devp-mappings[1] with devp-num_mappings = 9, base = 0xfdc0, and size = 
0x20
devp-mappings[3] with devp-num_mappings = 9, base = 0xfdc0, and size = 
0x20
devp-mappings[5] with devp-num_mappings = 9, base = 0xfdc0, and size = 
0x20
devp-mappings[7] with devp-num_mappings = 9, base = 0xfdc0, and size = 
0x20
devp-mappings[0] with devp-num_mappings = 10, base = 0xfe7f, and size = 
0x1
devp-mappings[2] with devp-num_mappings = 10, base = 0xfe7f, and size = 
0x1
devp-mappings[4] with devp-num_mappings = 10, base = 0xfe7f, and size = 
0x1
devp-mappings[6] with devp-num_mappings = 10, base = 0xfe7f, and size = 
0x1
devp-mappings[8] with devp-num_mappings = 10, base = 0xfe7f, and size = 
0x1
devp-mappings[1] with devp-num_mappings = 11, base = 0xfdc0, and size = 
0x20
devp-mappings[3] with devp-num_mappings = 11, base = 0xfdc0, and size = 
0x20
devp-mappings[5] with devp

Bug#622401: xserver-xorg-video-trident: Error message and exit with iceape and iceweasel. One solution.

2011-05-07 Thread Bjarni Ingi Gislason
On Fri, Apr 29, 2011 at 09:35:38PM +0200, Julien Cristau wrote:
 On Fri, Apr 29, 2011 at 18:15:11 +, Bjarni Ingi Gislason wrote:
 
  On Thu, Apr 28, 2011 at 06:03:07PM +, Bjarni Ingi Gislason wrote:
   On Fri, Apr 15, 2011 at 07:50:03PM +, Bjarni Ingi Gislason wrote:
On Tue, Apr 12, 2011 at 07:25:21PM +, Bjarni Ingi Gislason wrote:
 Package: xserver-xorg-video-trident
 Version: 1:1.3.4-2
 Severity: important
 
 *** Please type your report below this line ***
 
   If iceweasel or iceape are used, there is an error message
 and exit.
 
 (EE) TRIDENT(0): Unable to map IO aperture. Invalid argument (22)
 Fatal server error:
 AddScreen/ScreenInit failed for driver 0
 ...
 Error: cannot open display: :0
 
   
 Some data related to the PCI bus.
   
  
There is a name error in devp-num_mappings[0]; it should be
  devp-mappings[0].
  
 This causes error 22 (EINVAL), that trident reports:
   
   libpciaccess: common_interface.c: Already mapped is
   devp-num_mappings[0] with devp-num_mappings = 2, base =
   0xfe7f, and size = 0x1
   
   [Rest is removed]
  
(The commands that I use are  X  and iceweasel  on a text
  terminal.)
  
I have to eliminate the return EINVAL; statement to get the
  browser to function.
  
 Sounds like a pci_device_unmap_range is missing from the CloseScreen
 path.  If you can figure that out from the driver that would be nice.
 
 In theory, as far as I can tell:
 - the IO bar is mapped in TRIDENTPreInit, then unmapped before
   TRIDENTPreInit returns
 - it's mapped again in each server generation's TRIDENTScreenInit, and
   unmapped in TRIDENTCloseScreen
 I'm not seeing the error by quick inspection, but I may be missing
 something obvious...
 

  The X server issues PreInit that maps and unmaps.  Then it
issues ScreenInit which maps.

  iceweasel causes a second map though ScreenInit, which
leads to error.

  If I use xinit /usr/bin/iceweasel, then there is no second
ScreenInit (only PreInit and ScreenInit).

  If I use X ; iceweasel , then there is no error, because
of PreInit, ScreenInit, CloseScreen and ScreenInit.  I
usually issue X -retro (to see the mouse cursor) and wait for
the server to come up before I issue another X program.

  The fault lies in the second ScreenInit.  The fault lies
thus with iceweasel, iceape, and any other client that
causes a ScreenInit (without CloseScreen) if used directly
with an X server

  This bug report can be closed.  I will issue a report against
iceweasel and iceape as I find, that clients should work
directly with the X sever, without complicating matters with
xinit or other similar programmes.

  xpdf and gv cause no second ScreenInit.

-- 
Bjarni I. Gislason



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



Bug#638784: util-linux: umount segfaults when an user umounts a root-mounted USB-stick

2011-08-21 Thread Bjarni Ingi Gislason
Package: util-linux
Version: 2.17.2-9
Severity: normal


  USB-Stick

  As root: mount -t ext2 /dev/uba1 /var/cache/apt/archives

  From /etc/mtab:
/dev/uba1 /var/cache/apt/archives ext2 rw 0 0

  As regular user:  umount /dev/uba1
Segmentation fault

  (Further data is not captured by script !!!)

  In /var/log/kern.log:

kernel: umount[3501]: segfault at 14 ip 0804ac4e sp bfd18050 error 4 in 
umount[8048000+b000]
kernel: umount[3507]: segfault at 14 ip 0804ac4e sp bfc0ac10 error 4 in 
umount[8048000+b000]


  ls -l /dev/uba1:

brw-rw 1 root floppy 180, 1 2011-08-20 19:59 /dev/uba1

  ls -ld /var/cache/apt/archives:

drwxr-xr-x 4 bg bg 1024 2011-08-18 23:23 /var/cache/apt/archives


-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-33B
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages util-linux depends on:
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  dpkg1.15.8.11Debian package management system
ii  initscripts 2.88dsf-13.1 scripts for initializing and shutt
ii  install-info4.13a.dfsg.1-6   Manage installed documentation in 
ii  libblkid1   2.17.2-9 block device id library
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libncurses5 5.7+20100313-5   shared libraries for terminal hand
ii  libselinux1 2.0.96-1 SELinux runtime shared libraries
ii  libslang2   2.2.2-4  The S-Lang programming library - r
ii  libuuid12.17.2-9 Universally Unique ID library
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip
ii  tzdata  2011d-0squeeze1  time zone and daylight-saving time
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

util-linux recommends no packages.

Versions of packages util-linux suggests:
ii  console-tools1:0.2.3dbs-69.1 Linux console and font utilities
ii  dosfstools   3.0.9-1 utilities for making and checking 
ii  kbd-compat [kbd] 1:0.2.3dbs-69.1 Wrappers around console-tools for 
pn  util-linux-locales   none  (no description available)

-- debconf information:
  util-linux/noauto-with-nonzero-passnum:

-- 
Bjarni I. Gislason



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



Bug#641055: console-tools: Font lat1-12.psf cannot be loaded

2011-09-09 Thread Bjarni Ingi Gislason
Package: console-tools
Version: 1:0.2.3dbs-69.1
Severity: normal


  Issuing console-screen.sh with SCREEN_FONT=lat1-12.psf.gz
shows errors.

  Error messages after Setting up general console font. is:

Cannot (yet) load a non-seekable RAW file
read_simple_font(): Invalid argument

  If I use script to capture the output, then a different
message shows up:

Setting console screen modes and fonts.
cannot (un)set powersave mode

  Comparing the size of the font files, shows that the 12 file
does not fit in the 512 increment series.

-rw--- 1 bg bg 3108 2011-09-09 19:37 /tmp/lat1-08.psf
-rw--- 1 bg bg 3620 2011-09-09 19:37 /tmp/lat1-10.psf
-rw--- 1 bg bg 3883 2011-09-09 19:37 /tmp/lat1-12.psf
-rw--- 1 bg bg 4644 2011-09-09 19:37 /tmp/lat1-14.psf
-rw--- 1 bg bg 5156 2011-09-09 19:37 /tmp/lat1-16.psf


-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35B
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-tools depends on:
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libconsole  1:0.2.3dbs-69.1  Shared libraries for Linux console
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

Versions of packages console-tools recommends:
ii  console-common0.7.85 basic infrastructure for text cons
ii  console-data  2:1.10-9   keymaps, fonts, charset maps, fall

Versions of packages console-tools suggests:
ii  kbd-compat   1:0.2.3dbs-69.1 Wrappers around console-tools for 

-- Configuration Files:
/etc/console-tools/config changed [not included]
/etc/console-tools/remap changed [not included]
/etc/init.d/console-screen.sh changed [not included]

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#641932: man-db: Do not throw all messages from error output away

2011-09-17 Thread Bjarni Ingi Gislason
Package: man-db
Version: 2.5.7-8
Severity: wishlist

  Warnings and error messages are important to show possible
defects in a manual.  Redirecting them to a file (e.g.
/var/log/mandb.err) is better than discarding them.

  I changed the file man-db in both /etc/cron.daily and
/etc/cron.weekly to catch errors in man pages.

  The last part of my file in cron.daily is

#--Start of example#
# regenerate man database
if [ -x /usr/bin/mandb ]; then
temp_err=$(mktemp --tmpdir cron.daily.man-db.$$.)
err_file='/var/log/mandb.err'
# --pidfile /dev/null so it always starts; mandb isn't really a daemon,
# but we want to start it like one.
start-stop-daemon --start --pidfile /dev/null \
  --startas /usr/bin/mandb --oknodo --chuid man \
  $iosched_idle \
  -- --no-purge  21 | \
   tr '\015' '\012' | \
 grep -F -e 'mandb' -e 'warn'  \
 $temp_err || :

if test -s $temp_err
then
   { date ; echo '' ; cat $temp_err ;\
   echo '#' ; }  $err_file
fi

rm $temp_err
fi

exit 0
#--End of example#

  For the file in /etc/cron.weekly the name cron.daily is
changed to cron.weekly.


  Example of the output to file $err_file is:

Sat Aug 27 19:05:33 GMT 2011

/usr/bin/mandb: warning: /usr/share/man/man1/dotlockfile.1.gz: whatis parse for 
dotlockfile(1) failed
/usr/bin/mandb: warning: /usr/share/man/man1/vlna.1.gz: whatis parse for 
vlna(1) failed
#

  A rule for logrotate could be put into /etc/logrotate.conf,
e.g.

/var/log/mandb.err {
missingok
size=10k
}

-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35squeeze2
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages man-db depends on:
ii  bsdmainutils8.0.13   collection of more utilities from 
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  dpkg1.15.8.11Debian package management system
ii  groff-base  1.20.1-10GNU troff text-formatting system (
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libgdbm31.8.3-9  GNU dbm database routines (runtime
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

man-db recommends no packages.

Versions of packages man-db suggests:
ii  groff 1.20.1-10  GNU troff text-formatting system
ii  iceweasel [www-browser]   3.5.16-9   Web browser based on Firefox
ii  less  436-1  pager program similar to more
ii  w3m [www-browser] 0.5.2-9WWW browsable pager with excellent

-- Configuration Files:
/etc/cron.daily/man-db changed [not included]
/etc/cron.weekly/man-db changed [not included]

-- debconf information:
  man-db/build-database: true
* man-db/rebuild-database: false
* man-db/install-setuid: false
  man-db/auto-update: true

-- 
Bjarni I. Gíslason



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



Bug#642171: liblockfile1: Unnessesary macro ppsh in the manual of dotlockfile

2011-09-19 Thread Bjarni Ingi Gislason
Package: liblockfile1
Version: 1.08-4
Severity: minor

  Warning from mandb: 

/usr/bin/mandb: warning: /usr/share/man/man1/dotlockfile.1.gz: whatis parse for 
dotlockfile(1) failed

  The PP macro in the ppsh macro is not neccessary
for manuals displayed by groff.  SH provides the space
between sections.

  Start of manual page:

.TH DOTLOCKFILE 1 September 8, 2009  Cistron Utilities
.\
.\ Macro for adjustment of spaces between sections at a single location:
.de ppsh
.  PP
.  SH \\$*
..
.\ hyphenation language, soft hyphen character, hyphenation space
.hla us
.shc \(hy
.hys 1
.\
.ppsh NAME
dotlockfile \- Utility to manage lockfiles
.ppsh SYNOPSIS

-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35squeeze2
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages liblockfile1 depends on:
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib

liblockfile1 recommends no packages.

liblockfile1 suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#678689: unzip(1): Macros EX/EE defined too early in the manual

2012-06-23 Thread Bjarni Ingi Gislason
Package: unzip
Version: 6.0-4
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: unzip.1:992: warning: tab character in unquoted macro argument

  Wrong macros EX/EE used (in file an-ext.tmac), so no
intending is produced.

  Some cosmetic changes, spaces, escape before a option, small
space between dashes, full stop in abbreviations protected with
\, -- between words changed to em-dash (\(em).



  General considerations

a) Manuals should usually only be left justified.  Use .ad l
as the first regular command.

b) Each sentence should begin on a new line.  The conventions
about the amount of space between sentences are different.  This
also makes a check on the number of space characters between
words easier.

c) Separate numbers from units with a (no-break) space.  A
no-break space can be code 0xA0, \  (\space), or \~
(groff).

d) Use macros TS/TE for tables with more than two columns.
Then use

'\ t

as the first line in the source to tell man to use the tbl
preprocessor.

e) Protect last period (full stop) in abbreviations and ellipsis
with \, if it is or might be (through new formatting of
source) at the end of line, if it is also not an end of
sentence.

f) Test the source with man --warnings=w ... -l source and
the environmental variable MAN_KEEP_STDERR=y.  Check the
output on the display.

g) Test the source also with groff -b -ww -mandoc ...  ...
(default output is a ps file) and look at the output with an
appropriate program.

  See also web-article on www.kernel.org/doc/man-pages/



  Patch is in the attachment

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages unzip depends on:
ii  libbz2-1.0  1.0.5-6+squeeze1 high-quality block-sorting file co
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib

unzip recommends no packages.

Versions of packages unzip suggests:
pn  zip   none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason


unzip.1.diff.gz
Description: application/gunzip


Bug#678690: zipinfo(1): Macros EX/EE get redefined in groff's *.tmac file

2012-06-23 Thread Bjarni Ingi Gislason
Package: unzip
Version: 6.0-4
Severity: minor
Tags: patch

  Lines between EX and EE do not get intended with the
redefined macros (in file an-ext.tmac).

  Patch:

--- zipinfo.1   2012-06-22 02:32:41.0 +
+++ zipinfo.1.new   2012-06-22 23:00:55.0 +
@@ -22,7 +22,10 @@
 .ft
 .fi
 ..
+.\ =
+.TH ZIPINFO 1 20 April 2009 (v3.0) Info-ZIP
 .\ define .EX/.EE (for multiline user-command examples; normal Courier font)
+.\ must be after .TH as a groff macro file defines the same macros
 .de EX
 .in +4n
 .nf
@@ -33,8 +36,6 @@
 .fi
 .in -4n
 ..
-.\ =
-.TH ZIPINFO 1 20 April 2009 (v3.0) Info-ZIP
 .SH NAME
 zipinfo \- list detailed information about a ZIP archive
 .PD

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages unzip depends on:
ii  libbz2-1.0  1.0.5-6+squeeze1 high-quality block-sorting file co
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib

unzip recommends no packages.

Versions of packages unzip suggests:
pn  zip   none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#678838: funzip(1): Macros EX/EE are defined too early in the manual

2012-06-24 Thread Bjarni Ingi Gislason
Package: unzip
Version: 6.0-4
Severity: minor
Tags: patch

  The same macros are defined in the file an-ext.tmac, that is
read when TH is executed.

  Some minor fix.

  Patch:

--- funzip.12012-06-24 02:15:09.0 +
+++ funzip.1.new2012-06-24 02:41:17.0 +
@@ -7,8 +7,10 @@
 .\
 .\ funzip.1 by Greg Roelofs and others.
 .\
+.TH FUNZIP 1 20 April 2009 (v3.95) Info-ZIP
 .\ =
 .\ define .EX/.EE (for multiline user-command examples; normal Courier font)
+.\ must be after the TH macro, as the same are also defined in an-ext.tmac
 .de EX
 .in +4n
 .nf
@@ -20,7 +22,6 @@
 .in -4n
 ..
 .\ =
-.TH FUNZIP 1 20 April 2009 (v3.95) Info-ZIP
 .SH NAME
 funzip \- filter for extracting from a ZIP archive in a pipe
 .PD
@@ -32,7 +33,7 @@
 Optional password to be used if ZIP archive is encrypted.  Decryption
 may not be supported at some sites.  See DESCRIPTION for more details.
 .IP [\fIinput[.zip|.gz]\fP]
-Optional input archive file specification. See DESCRIPTION for details.
+Optional input archive file specification.  See DESCRIPTION for details.
 .PD
 .\ =
 .SH DESCRIPTION

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages unzip depends on:
ii  libbz2-1.0  1.0.5-6+squeeze1 high-quality block-sorting file co
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib

unzip recommends no packages.

Versions of packages unzip suggests:
pn  zip   none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#678839: unzipsfx(1): Macros EX/EE defined too early in the manual

2012-06-24 Thread Bjarni Ingi Gislason
Package: unzip
Version: 6.0-4
Severity: minor
Tags: patch

  The marcos EX/EE are also defined in the file an-ext.tmac
for groff, which is read when TH is executed.

  Some minor cosmetic fixes

  Patch:

--- unzipsfx.1  2012-06-24 02:15:27.0 +
+++ unzipsfx.1.new  2012-06-24 02:24:55.0 +
@@ -7,8 +7,10 @@
 .\
 .\ unzipsfx.1 by Greg Roelofs
 .\
+.TH UNZIPSFX 1 20 April 2009 (v6.0) Info-ZIP
 .\ =
 .\ define .EX/.EE (for multiline user-command examples; normal Courier font)
+.\ must be after TH as the same macros are defined in an-ext.tmac
 .de EX
 .in +4n
 .nf
@@ -20,7 +22,6 @@
 .in -4n
 ..
 .\ =
-.TH UNZIPSFX 1 20 April 2009 (v6.0) Info-ZIP
 .SH NAME
 unzipsfx \- self-extracting stub for prepending to ZIP archives
 .PD
@@ -44,7 +45,7 @@
 the current one can be selected as a compile-time option, which is now enabled
 by default since UnZipSFX version 5.5.  Similarly, decryption is supported as
 a compile-time option but should be avoided unless the attached archive
-contains encrypted files. Starting with release 5.5, another compile-time
+contains encrypted files.  Starting with release 5.5, another compile-time
 option adds a simple ``run command after extraction'' feature.  This feature
 is currently incompatible with the ``extract to different directory''
 feature and remains disabled by default.
@@ -89,7 +90,7 @@
 An optional list of archive members to be excluded from processing.
 Since wildcard characters match directory separators (`/'), this option
 may be used to exclude any files that are in subdirectories.  For
-example, ``\fCfoosfx *.[ch] -x */*\fR'' would extract all C source files
+example, ``\fCfoosfx *.[ch] \-x */*\fR'' would extract all C source files
 in the main directory, but none in any subdirectories.  Without the \fB\-x\fP
 option, all C source files in all directories within the zipfile would be
 extracted.
@@ -156,7 +157,7 @@
 .\ =
 .SH AUTORUN COMMAND
 When \fIunzipsfx\fP was compiled with CHEAP_SFX_AUTORUN defined, a simple
-``command autorun'' feature is supported. You may enter a command into the
+``command autorun'' feature is supported.  You may enter a command into the
 Zip archive comment, using the following format:
 .PP
 .EX
@@ -184,7 +185,7 @@
 .EX
 cat unzipsfx letters.zip  letters
 chmod 755 letters
-zip -A letters
+zip \-A letters
 .EE
 .PP
 To create the same archive under MS-DOS, OS/2 or NT (note the use of the
@@ -192,7 +193,7 @@
 .PP
 .EX
 copy /b unzipsfx.exe+letters.zip letters.exe
-zip -A letters.exe
+zip \-A letters.exe
 .EE
 .PP
 Under VMS:
@@ -200,7 +201,7 @@
 .EX
 copy unzipsfx.exe,letters.zip letters.exe
 letters == $currentdisk:[currentdir]letters.exe
-zip -A letters.exe
+zip \-A letters.exe
 .EE
 .PP
 (The VMS \fIappend\fP command may also be used.  The second command installs
@@ -213,7 +214,7 @@
 .EE
 .PP
 (MakeSFX is included with the UnZip source distribution and with Amiga
-binary distributions.  ``\fCzip -A\fR'' doesn't work on Amiga self-extracting
+binary distributions.  ``\fCzip \-A\fR'' doesn't work on Amiga self-extracting
 archives.)
 To test (or list) the newly created self-extracting archive:
 .PP
@@ -244,13 +245,13 @@
 To extract everything \fIexcept\fP the \fC*.txt\fR files:
 .PP
 .EX
-letters -x *.txt
+letters \-x *.txt
 .EE
 .PP
 To extract only the README file to standard output (the screen):
 .PP
 .EX
-letters -c README
+letters \-c README
 .EE
 .PP
 To print only the zipfile comment:

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages unzip depends on:
ii  libbz2-1.0  1.0.5-6+squeeze1 high-quality block-sorting file co
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib

unzip recommends no packages.

Versions of packages unzip suggests:
pn  zip   none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#679150: troffcvt: Macros H*ahref and H*aend not defined in the manuals

2012-06-26 Thread Bjarni Ingi Gislason
Package: troffcvt
Version: 1.04-19
Severity: minor
Tags: patch

  From man ... (groff -ww ...)

groff: tblcvt.1:131: warning: macro `H*ahref' not defined
groff: tblcvt.1:133: warning: macro `H*aend' not defined
groff: tc2html.1:47: warning: macro `H*ahref' not defined
groff: tc2html.1:49: warning: macro `H*aend' not defined
groff: tc2html-toc.1:94: warning: macro `H*ahref' not defined
groff: tc2html-toc.1:96: warning: macro `H*aend' not defined
groff: tc2null.1:51: warning: macro `H*ahref' not defined
groff: tc2null.1:53: warning: macro `H*aend' not defined
groff: tc2rtf.1:47: warning: macro `H*ahref' not defined
groff: tc2rtf.1:49: warning: macro `H*aend' not defined
groff: tc2text.1:47: warning: macro `H*ahref' not defined
groff: tc2text.1:49: warning: macro `H*aend' not defined
groff: troff2html.1:68: warning: macro `H*ahref' not defined
groff: troff2html.1:70: warning: macro `H*aend' not defined
groff: troff2null.1:59: warning: macro `H*ahref' not defined
groff: troff2null.1:61: warning: macro `H*aend' not defined
groff: troff2rtf.1:90: warning: macro `H*ahref' not defined
groff: troff2rtf.1:92: warning: macro `H*aend' not defined
groff: troffcvt.1:248: warning: macro `H*ahref' not defined
groff: troffcvt.1:250: warning: macro `H*aend' not defined
groff: unroff.1:89: warning: macro `H*ahref' not defined
groff: unroff.1:91: warning: macro `H*aend' not defined

  This same text in all(?) manuals:

.SH WHO-TO-BLAME
Paul DuBois,
.H*ahref mailto:dub...@primate.wisc.edu
.IR dub...@primate.wisc.edu\c
.H*aend
\.
.SH BUGS

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages troffcvt depends on:
ii  debianutils3.4   Miscellaneous utilities specific t
ii  groff  1.20.1-10 GNU troff text-formatting system
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  perl [perl5]   5.10.1-17squeeze3 Larry Wall's Practical Extraction 

troffcvt recommends no packages.

troffcvt suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#647750: linux-source-2.6.32: keyboard.c: 8 bits diacritics are displayed as a 7 bits representation after a space

2012-06-27 Thread Bjarni Ingi Gislason
  This report can be closed, as the cause is the lack of some
compose combinations in the keymap.  The usual method of showing
dead keys (for diacritical marks) is to use space after it.  The
keymaps use a repetition of the same dead key.  That is bad habit. 
Does not work on a typewriter.  It would make things clearer, if
the compose table in the file drivers/char/defkeymap.map would be
augmented by the three lines, that are shown at the end of this
message.

  The kernel transforms 8 bit diacritics to 7 bit
representations (code is valid for ISO-8859-1):

dead_diaeresis (0xA8) to  (quotation mark, 0x22)

dead_acute (0xB4) to ' (apostrophe, 0x27)

dead_cedilla (0xB8) to , (comma, 0x2C).

  Define these compose keys to show the 8 bit version in the usual
way by using a space character after the dead key.

compose '' ' ' '¨'
compose '\'' ' ' '´'
compose ',' ' ' '¸'
  
-- 
Bjarni I. Gislason



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



Bug#622401: xserver-xorg-video-trident: Error message and exit with iceape and iceweasel. One solution.

2012-06-27 Thread Bjarni Ingi Gislason
  This bug report can be closed, as there is no sign of it in the
Debian Squeeze version (6.0.5).

-- 
Bjarni I. Gislason



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



Bug#674595: mount(8): Undefined macro 'PE' in the manual

2012-05-25 Thread Bjarni Ingi Gislason
Package: mount
Version: 2.17.2-9
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: mount.8:2080: warning: macro `PE' not defined

  Some spaces adjusted.

  Number and unit separated be a non-break space (\ ).

  Tables with many columns changed from using nofill/fill
(nf/fi) to using TS/TE (preprocessor tbl).



  General considerations

a) Manuals should usually only be left justified.  Use .ad l
as the first regular command.

b) Each sentence should begin on a new line.  The conventions
about the amount of space between sentences are different.  This
also makes a check on the number of space characters between
words easier.

c) Separate numbers from units with a (no-break) space.  A
no-break space can be code 0xA0, \  (\space), or \~
(groff).

d) Use macros TS/TE for tables with more than two columns.
Then use

'\ t

as the first line in the source to tell man to use the tbl
preprocessor.

e) Protect last period (full stop) in abbreviations with \,
if it is or might be (through new formatting of source) at the
end of line, if it is also not an end of sentence.



  Patch is in the attachment.

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages mount depends on:
ii  libblkid1 2.17.2-9   block device id library
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libselinux1   2.0.96-1   SELinux runtime shared libraries
ii  libsepol1 2.0.41-1   SELinux library for manipulating b
ii  libuuid1  2.17.2-9   Universally Unique ID library

mount recommends no packages.

Versions of packages mount suggests:
pn  nfs-commonnone (no description available)

-- no debconf information

-- 
Bjarni I. Gislason


mount.8.diff.gz
Description: application/gunzip


Bug#674694: resize2fs(8): Unnecessary escape before a tab in the manual

2012-05-26 Thread Bjarni Ingi Gislason
Package: e2fsprogs
Version: 1.41.12-4stable1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: resize2fs.8:97: warning: escape character ignored before a tab 
character
groff: resize2fs.8:97: warning: escape character ignored before a tab 
character
groff: resize2fs.8:99: warning: escape character ignored before a tab 
character
groff: resize2fs.8:99: warning: escape character ignored before a tab 
character
groff: resize2fs.8:101: warning: escape character ignored before a tab 
character
groff: resize2fs.8:101: warning: escape character ignored before a tab 
character

  Spaces at end of lines removed

  No-break space put between number and unit.



  General considerations

a) Manuals should usually only be left justified.  Use .ad l
as the first regular command.

b) Each sentence should begin on a new line.  The conventions
about the amount of space between sentences are different.  This
also makes a check on the number of space characters between
words easier.

c) Separate numbers from units with a (no-break) space.  A
no-break space can be code 0xA0, \  (\space), or \~
(groff).

d) Use macros TS/TE for tables with more than two columns.
Then use

'\ t

as the first line in the source to tell man to use the tbl
preprocessor.

e) Protect last period (full stop) in abbreviations with \,
if it is or might be (through new formatting of source) at the
end of line, if it is also not an end of sentence.




  Patch (should also work for resize2fs.8.in):

--- resize2fs.8 2012-05-25 20:39:35.0 +
+++ resize2fs.8.new 2012-05-25 20:45:22.0 +
@@ -11,7 +11,7 @@
 .B \-fFpPM
 ]
 [
-.B \-d 
+.B \-d
 .I debug-flags
 ]
 [
@@ -23,31 +23,31 @@
 .I size
 ]
 .SH DESCRIPTION
-The 
-.B resize2fs 
+The
+.B resize2fs
 program will resize ext2, ext3, or ext4 file systems.  It can be used to
-enlarge or shrink an unmounted file system located on 
+enlarge or shrink an unmounted file system located on
 .IR device .
 If the filesystem is mounted, it can be used to expand the size of the
 mounted filesystem, assuming the kernel supports on-line resizing.  (As
 of this writing, the Linux 2.6 kernel supports on-line resize for
 filesystems mounted using ext3 and ext4.).
 .PP
-The 
+The
 .I size
 parameter specifies the requested new size of the filesystem.
 If no units are specified, the units of the
 .I size
 parameter shall be the filesystem blocksize of the filesystem.
-Optionally, the 
+Optionally, the
 .I size
-parameter may be suffixed by one of the following the units 
+parameter may be suffixed by one of the following the units
 designators: 's', 'K', 'M', or 'G',
 for 512 byte sectors, kilobytes, megabytes, or gigabytes, respectively.
-The 
+The
 .I size
 of the filesystem may never be larger than the size of the partition.
-If 
+If
 .I size
 parameter is not specified, it will default to the size of the partition.
 .PP
@@ -63,50 +63,50 @@
 .B resize2fs
 program does not manipulate the size of partitions.  If you wish to enlarge
 a filesystem, you must make sure you can expand the size of the
-underlying partition first.  This can be done using 
+underlying partition first.  This can be done using
 .BR fdisk (8)
 by deleting the partition and recreating it with a larger size or using
 .BR lvextend (8),
 if you're using the logical volume manager
 .BR lvm (8).
-When 
+When
 recreating the partition, make sure you create it with the same starting
-disk cylinder as before!  Otherwise, the resize operation will 
-certainly not work, and you may lose your entire filesystem.  
+disk cylinder as before!  Otherwise, the resize operation will
+certainly not work, and you may lose your entire filesystem.
 After running
 .BR fdisk (8),
-run resize2fs to resize the ext2 filesystem 
+run resize2fs to resize the ext2 filesystem
 to use all of the space in the newly enlarged partition.
 .PP
-If you wish to shrink an ext2 partition, first use 
+If you wish to shrink an ext2 partition, first use
 .B resize2fs
-to shrink the size of filesystem.  Then you may use 
+to shrink the size of filesystem.  Then you may use
 .BR fdisk (8)
-to shrink the size of the partition.  When shrinking the size of 
-the partition, make sure you do not make it smaller than the new size 
+to shrink the size of the partition.  When shrinking the size of
+the partition, make sure you do not make it smaller than the new size
 of the ext2 filesystem!
 .SH OPTIONS
 .TP
 .B \-d \fIdebug-flags
-Turns on various resize2fs debugging features, if they have been compiled 
+Turns on various resize2fs debugging features, if they have been compiled
 into the binary.
 .I debug-flags
-should be computed by adding the numbers of the desired features 
+should be computed by adding the numbers of the desired features
 from the following list:
 .br
-\  2\  \-\ Debug block relocations
+   2   \-\ Debug block relocations
 .br
-\  4\  \-\ Debug inode relocations
+   4   \-\ Debug inode relocations
 

Bug#674704: tc(8): Negative indent and missing - after an escape

2012-05-26 Thread Bjarni Ingi Gislason
Package: iproute
Version: 20100519-3
Severity: minor
Tags: patch

  From man ... (groff -ww -mandoc ...):

groff: tc.8:51: warning: total indent cannot be negative
groff: tc.8:57: warning: escape character ignored before `i'

  Space at end of line removed



  General considerations

a) Manuals should usually only be left justified.  Use .ad l
as the first regular command.

b) Each sentence should begin on a new line.  The conventions
about the amount of space between sentences are different.  This
also makes a check on the number of space characters between
words easier.

c) Separate numbers from units with a (no-break) space.  A
no-break space can be code 0xA0, \  (\space), or \~
(groff).

d) Use macros TS/TE for tables with more than two columns.
Then use

'\ t

as the first line in the source to tell man to use the tbl
preprocessor.

e) Protect last period (full stop) in abbreviations with \,
if it is or might be (through new formatting of source) at the
end of line, if it is also not an end of sentence.



  Patch:

--- tc.82012-05-26 00:57:43.0 +
+++ tc.8.new2012-05-26 01:11:40.0 +
@@ -2,22 +2,22 @@
 .SH NAME
 tc \- show / manipulate traffic control settings
 .SH SYNOPSIS
-.B tc qdisc [ add | change | replace | link ] dev 
-DEV 
-.B 
-[ parent 
-qdisc-id 
-.B | root ] 
-.B [ handle 
+.B tc qdisc [ add | change | replace | link ] dev
+DEV
+.B
+[ parent
+qdisc-id
+.B | root ]
+.B [ handle
 qdisc-id ] qdisc
 [ qdisc specific parameters ]
 .P
 
 .B tc class [ add | change | replace ] dev
 DEV
-.B parent 
-qdisc-id 
-.B [ classid 
+.B parent
+qdisc-id
+.B [ classid
 class-id ] qdisc
 [ qdisc specific parameters ]
 .P
@@ -36,38 +36,38 @@
 
 .B tc
 .RI [  FORMAT  ]
-.B qdisc show [ dev 
-DEV 
+.B qdisc show [ dev
+DEV
 .B  ]
 .P
-.B tc 
+.B tc
 .RI [  FORMAT  ]
-.B class show dev 
-DEV 
+.B class show dev
+DEV
 .P
-.B tc filter show dev 
-DEV 
+.B tc filter show dev
+DEV
 
-.ti -8
+.ti 8
 .IR FORMAT  := {
 \fB\-s\fR[\fItatistics\fR] |
 \fB\-d\fR[\fIetails\fR] |
 \fB\-r\fR[\fIaw\fR] |
 \fB\-p\fR[\fIretty\fR] |
-\fB\i\fR[\fIec\fR] }
+\fB\-i\fR[\fIec\fR] }
 
 .SH DESCRIPTION
 .B Tc
-is used to configure Traffic Control in the Linux kernel. Traffic Control 
consists 
+is used to configure Traffic Control in the Linux kernel. Traffic Control 
consists
 of the following:
 
-.TP 
+.TP
 SHAPING
-When traffic is shaped, its rate of transmission is under control. Shaping may 
-be more than lowering the available bandwidth - it is also used to smooth out 
+When traffic is shaped, its rate of transmission is under control. Shaping may
+be more than lowering the available bandwidth - it is also used to smooth out
 bursts in traffic for better network behaviour. Shaping occurs on egress.
 
-.TP 
+.TP
 SCHEDULING
 By scheduling the transmission of packets it is possible to improve 
interactivity
 for traffic that needs it while still guaranteeing bandwidth to bulk 
transfers. Reordering
@@ -80,34 +80,34 @@
 
 .TP
 DROPPING
-Traffic exceeding a set bandwidth may also be dropped forthwith, both on 
+Traffic exceeding a set bandwidth may also be dropped forthwith, both on
 ingress and on egress.
 
 .P
-Processing of traffic is controlled by three kinds of objects: qdiscs, 
-classes and filters. 
+Processing of traffic is controlled by three kinds of objects: qdiscs,
+classes and filters.
 
 .SH QDISCS
-.B qdisc 
-is short for 'queueing discipline' and it is elementary to 
-understanding traffic control. Whenever the kernel needs to send a 
-packet to an interface, it is 
+.B qdisc
+is short for 'queueing discipline' and it is elementary to
+understanding traffic control. Whenever the kernel needs to send a
+packet to an interface, it is
 .B enqueued
 to the qdisc configured for that interface. Immediately afterwards, the kernel
 tries to get as many packets as possible from the qdisc, for giving them
 to the network adaptor driver.
 
-A simple QDISC is the 'pfifo' one, which does no processing at all and is a 
pure 
+A simple QDISC is the 'pfifo' one, which does no processing at all and is a 
pure
 First In, First Out queue. It does however store traffic when the network 
interface
 can't handle it momentarily.
 
 .SH CLASSES
-Some qdiscs can contain classes, which contain further qdiscs - traffic may 
+Some qdiscs can contain classes, which contain further qdiscs - traffic may
 then be enqueued in any of the inner qdiscs, which are within the
 .B classes.
-When the kernel tries to dequeue a packet from such a 
+When the kernel tries to dequeue a packet from such a
 .B classful qdisc
-it can come from any of the classes. A qdisc may for example prioritize 
+it can come from any of the classes. A qdisc may for example prioritize
 certain kinds of traffic by trying to dequeue from certain classes
 before others.
 
@@ -117,45 +117,45 @@
 is used by a classful qdisc to determine in which class a packet will
 be enqueued. Whenever traffic arrives at a class with subclasses, it needs
 

Bug#674706: tc-drr(8): tab unquoted in a argument to a macro

2012-05-26 Thread Bjarni Ingi Gislason
Package: iproute
Version: 20100519-3
Severity: minor
Tags: patch

  From man ... (groff -ww -mandoc ...):

groff: tc-drr.8:67: warning: tab character in unquoted macro argument
groff: tc-drr.8:69: warning: tab character in unquoted macro argument

  Patch:

--- tc-drr.82012-05-26 00:58:00.0 +
+++ tc-drr.8.new2012-05-26 01:29:05.0 +
@@ -64,9 +64,9 @@
 
 .B for i in .. 1024;do
 .br
-.B \ttc class add dev ..  classid $handle:$(print %x $i)
+.B \ttc class add dev .. classid $handle:$(print %x $i)
 .br
-.B \ttc qdisc add dev .. fifo limit 16
+.B \ttc qdisc add dev .. fifo limit 16
 .br
 .B done
 
-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages iproute depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libdb4.8  4.8.30-2   Berkeley v4.8 Database Libraries [

Versions of packages iproute recommends:
pn  libatm1   none (no description available)

Versions of packages iproute suggests:
pn  iproute-doc   none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#674708: setpci(8): \IP instead of .IP in the manual

2012-05-26 Thread Bjarni Ingi Gislason
Package: pciutils
Version: 1:3.1.7-6
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: setpci.8:2: warning: macro `IX' not defined
groff: setpci.8:151: warning: escape character ignored before `I'

  Ellipsis at end of line protected with \.

  The macro IX is not part of the man(doc)-macros.



  General considerations

a) Manuals should usually only be left justified.  Use .ad l
as the first regular command.

b) Each sentence should begin on a new line.  The conventions
about the amount of space between sentences are different.  This
also makes a check on the number of space characters between
words easier.

c) Separate numbers from units with a (no-break) space.  A
no-break space can be code 0xA0, \  (\space), or \~
(groff).

d) Use macros TS/TE for tables with more than two columns.
Then use

'\ t

as the first line in the source to tell man to use the tbl
preprocessor.

e) Protect last period (full stop) in abbreviations with \,
if it is or might be (through new formatting of source) at the
end of line, if it is also not an end of sentence.



  Patch:

--- setpci.82012-05-25 21:07:04.0 +
+++ setpci.8.new2012-05-25 22:07:36.0 +
@@ -1,5 +1,5 @@
 .TH setpci 8 31 January 2010 pciutils-3.1.7 The PCI Utilities
-.IX setpci
+.\.IX setpci
 .SH NAME
 setpci \- configure PCI devices
 .SH SYNOPSIS
@@ -115,7 +115,7 @@
 .PP
 There are two kinds of operations: reads and writes. To read a register, just 
specify
 its name. Writes have the form
-.IR name = value , value ...
+.IR name = value , value ...\
 where each
 .I value
 is either a hexadecimal number or an expression of type
@@ -148,7 +148,7 @@
 Each of the previous formats can be followed by \fB+offset\fP to add an offset
 (a hex number) to the address. This feature can be useful for addressing of 
registers
 living within a capability, or to modify parts of standard registers.
-\IP \(bu
+.IP \(bu
 Finally, you should append a width specifier \fB.B\fP, \fB.W\fP, or \fB.L\fP 
to choose
 how many bytes (1, 2, or 4) should be transferred. The width can be omitted if 
you are
 accessing a named register whose width is well known.

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages pciutils depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libpci3   1:3.1.7-6  Linux PCI Utilities (shared librar

pciutils recommends no packages.

Versions of packages pciutils suggests:
ii  bzip2   1.0.5-6+squeeze1 high-quality block-sorting file co
ii  lynx2.8.8dev.5-1 Text-mode WWW Browser (transitiona
ii  wget1.12-2.1 retrieves files from the web

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#674712: scsi_id(8): KE without KS in the manual

2012-05-26 Thread Bjarni Ingi Gislason
Package: udev
Version: 164-3
Severity: minor
Tags: patch

  From groff -ww -mandoc ...:

groff: scsi_id.8:99: warning: number register `an-saved-margin1' not defined
groff: scsi_id.8:99: warning: number register `an-saved-prevailing-indent1' 
not defined

  Lines with .KE deleted

  Macro call .BI changed to .B if argument is only one word

  Some space at end of line removed

  Some unnecessary lines (macro calls) deleted.



  General considerations

a) Manuals should usually only be left justified.  Use .ad l
as the first regular command.

b) Each sentence should begin on a new line.  The conventions
about the amount of space between sentences are different.  This
also makes a check on the number of space characters between
words easier.

c) Separate numbers from units with a (no-break) space.  A
no-break space can be code 0xA0, \  (\space), or \~
(groff).

d) Use macros TS/TE for tables with more than two columns.
Then use

'\ t

as the first line in the source to tell man to use the tbl
preprocessor.

e) Protect last period (full stop) in abbreviations with \,
if it is or might be (through new formatting of source) at the
end of line, if it is also not an end of sentence.



  Patch:

--- scsi_id.8   2012-05-25 21:06:31.0 +
+++ scsi_id.8.new   2012-05-25 21:23:20.0 +
@@ -2,13 +2,13 @@
 .SH NAME
 scsi_id \- retrieve and generate a unique SCSI identifier
 .SH SYNOPSIS
-.BI scsi_id 
+.B scsi_id 
 [\fIoptions\fP]
 .SH DESCRIPTION
 .B scsi_id
 queries a SCSI device via the SCSI INQUIRY vital product data (VPD) page 0x80 
or
 0x83 and uses the resulting data to generate a value that is unique across
-all SCSI devices that properly support page 0x80 or page 0x83. 
+all SCSI devices that properly support page 0x80 or page 0x83.
 
 If a result is generated it is sent to standard output, and the program
 exits with a zero value. If no identifier is output, the program exits
@@ -48,11 +48,9 @@
 # /lib/udev/scsi_id \-\-page=0x83 \-\-whitelisted \-\-device=/dev/sda
 3600a0b8b174b00d63efc5c8c
 .fi
-.P
-
 .SH OPTIONS
 .TP
-.BI \-\-blacklisted
+.B \-\-blacklisted
 The default behaviour \- treat the device as black listed, and do nothing
 unless a white listed device is found in the scsi_id config\-file.
 .TP
@@ -61,14 +59,14 @@
 .TP
 .BI \-\-config=\| config\-file
 Read configuration and black/white list entries from
-.B config\-file 
+.B config\-file
 rather than the default
 .B /etc/scsi_id.config
 file.
 .TP
-.BI \-\-whitelisted
+.B \-\-whitelisted
 Treat the device as white listed. The \fB\-\-whitelisted\fP option must be 
specified
-on the command line or in the scsi_id configuration file for 
+on the command line or in the scsi_id configuration file for
 .B scsi_id
 to generate any output.
 .TP
@@ -85,30 +83,25 @@
 use with SPC-2 or SPC-3 compliant devices will fallback to the page 83
 format supported by these devices.
 .TP
-.BI \-\-replace-whitespace
+.B \-\-replace-whitespace
 Reformat the output : replace all whitespaces by underscores.
 .TP
-.BI \-\-export
+.B \-\-export
 Export all data in KEY=value format used to import in other programs.
 .TP
-.BI \-\-verbose
+.B \-\-verbose
 Generate verbose debugging output.
 .TP
-.BI \-\-version
+.B \-\-version
 Display version number and exit.
-.RE
-
 .SH FILES
 .nf
-.ft B
-.ft
 .TP
 \fI/etc/scsi_id.config\fP
 Configuration of black/white list entries and per device options:
 # one config per line, short match strings match longer strings
 # vendor=string[,model=string],options=per-device scsi_id command line 
options
 vendor=ATA,options=-p 0x80
-.RE
 .fi
 .LP
 .SH SEE ALSO

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages udev depends on:
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib
ii  libselinux1 2.0.96-1 SELinux runtime shared libraries
ii  libudev0164-3libudev shared library
ii  libusb-0.1-42:0.1.12-16  userspace USB programming library
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip
ii  util-linux  2.17.2-9 Miscellaneous system utilities

Versions of packages udev recommends:
ii  pciutils  1:3.1.7-6  Linux PCI Utilities
ii  usbutils  0.87-5squeeze1 Linux USB utilities

udev suggests no packages.

-- debconf information excluded

-- 
Bjarni I. Gislason



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



Bug#675085: aptitude.8 (manpage.xml): Wrong string for (refentry)title

2012-05-29 Thread Bjarni Ingi Gislason
Package: aptitude
Version: 0.6.3-3.2+squeeze1
Severity: minor
Tags: patch

  From groff -ww -mandoc ...:

groff: aptitude.8.gz:30: warning: can't find font `BR'
groff: aptitude.8.gz:30: warning: can't find font `RR'

  The title in the .TH macro has font changes.  In the source
file doc/en/manpage.xml the string in the refentrytitle
tag is wrong (has boldface command).

  (File manpage.xml is from the aptitude 0.6.7 source.)

  Patch:

--- manpage.xml 2012-05-29 01:40:26.214859819 +
+++ manpage.xml.new 2012-05-29 01:39:45.347970619 +
@@ -51,7 +51,7 @@
   /refentryinfo
 
   refmeta
-refentrytitleaptitude;/refentrytitle
+refentrytitleaptitude/refentrytitle
 manvolnum8/manvolnum
   /refmeta
 
  The difference in the output is

--- aptitude.8  2012-05-29 01:30:43.0 +
+++ aptitude.8.new  2012-05-29 01:55:28.0 +
@@ -1,5 +1,5 @@
 '\ t
-.\ Title: \fBaptitude\fR
+.\ Title: aptitude
 .\Author: 
 .\ Generator: DocBook XSL Stylesheets v1.75.2 http://docbook.sf.net/
 .\  Date: 05/29/2012
@@ -7,7 +7,7 @@
 .\Source: aptitude 0.6.7
 .\  Language: English
 .\
-.TH \FBAPTITUDE\FR 8 05/29/2012 aptitude 0.6.7 Command-line reference
+.TH APTITUDE 8 05/29/2012 aptitude 0.6.7 Command-line reference
 .\ -
 .\ * Define some portability stuff
 .\ -

  If there is somewhere a documentation about what should be the
argument in the refentrytitle tag, it should be checked and
corrected if needed.

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages aptitude depends on:
ii  apt [libapt-pkg4.10]   0.8.10.3+squeeze1 Advanced front-end for dpkg
ii  libboost-iostreams1.42 1.42.0-4  Boost.Iostreams Library
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libcwidget30.5.16-3  high-level terminal interface libr
ii  libept11.0.4 High-level library for managing De
ii  libgcc11:4.4.5-8 GCC support library
ii  libncursesw5   5.7+20100313-5shared libraries for terminal hand
ii  libsigc++-2.0-0c2a 2.2.4.2-1 type-safe Signal Framework for C++
ii  libsqlite3-0   3.7.3-1   SQLite 3 shared library
ii  libstdc++6 4.4.5-8   The GNU Standard C++ Library v3
ii  libxapian221.2.3-2   Search engine library
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages aptitude recommends:
pn  apt-xapian-index  none (no description available)
pn  aptitude-doc-en | aptitude-do none (no description available)
ii  libparse-debianchangelog-perl 1.1.1-2.1  parse Debian changelogs and output
ii  sensible-utils0.0.4  Utilities for sensible alternative

Versions of packages aptitude suggests:
pn  debtags   none (no description available)
ii  tasksel   2.88   Tool for selecting tasks for insta

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#675087: update-pciids(8): Macro IX is not part of man(doc) macros

2012-05-29 Thread Bjarni Ingi Gislason
Package: pciutils
Version: 1:3.1.7-6
Severity: minor
Tags: patch

  From man ... (groff -ww -mandoc ...):

groff: update-pciids.8:2: warning: macro `IX' not defined

  Space adjusted between sentences.

  Patch:

--- update-pciids.8 2012-05-27 00:15:05.0 +
+++ update-pciids.8.new 2012-05-27 00:16:46.0 +
@@ -1,5 +1,5 @@
 .TH update-pciids 8 31 January 2010 pciutils-3.1.7 The PCI Utilities
-.IX update-pciids
+.\.IX update-pciids
 
 .SH NAME
 update-pciids \- download new version of the PCI ID list
@@ -13,7 +13,7 @@
 fetches the current version of the pci.ids file from the primary distribution
 site and installs it.
 
-This utility requires curl, wget or lynx to be installed. If gzip or bzip2
+This utility requires curl, wget or lynx to be installed.  If gzip or bzip2
 are available, it automatically downloads the compressed version of the list.
 
 .SH OPTIONS

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages pciutils depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libpci3   1:3.1.7-6  Linux PCI Utilities (shared librar

pciutils recommends no packages.

Versions of packages pciutils suggests:
ii  bzip2   1.0.5-6+squeeze1 high-quality block-sorting file co
ii  lynx2.8.8dev.5-1 Text-mode WWW Browser (transitiona
ii  wget1.12-2.1 retrieves files from the web

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#675089: update-usbids(8): Macro IX is undefined in the manual

2012-05-29 Thread Bjarni Ingi Gislason
Package: pciutils
Version: 1:3.1.7-6
Severity: minor
Tags: patch

  From man ... (groff -ww -mandoc ...):

groff: update-usbids.8:2: warning: macro `IX' not defined

  Space corrected.

  Patch:

--- update-usbids.8 2012-05-27 00:15:27.0 +
+++ update-usbids.8.new 2012-05-27 00:24:22.0 +
@@ -1,5 +1,5 @@
 .TH update-usbids 8 13 May 2009 usbutils-0.82 Linux USB Utilities
-.IX update-usbids
+.\.IX update-usbids
 
 .SH NAME
 update-usbids \- download new version of the USB ID list
@@ -12,7 +12,7 @@
 fetches the current version of the usb.ids file from the primary distribution
 site and installs it.
 
-This utility requires either wget or lynx to be installed. If gzip or bzip2
+This utility requires either wget or lynx to be installed.  If gzip or bzip2
 are available, it automatically downloads the compressed version of the list.
 
 .SH FILES

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages pciutils depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libpci3   1:3.1.7-6  Linux PCI Utilities (shared librar

pciutils recommends no packages.

Versions of packages pciutils suggests:
ii  bzip2   1.0.5-6+squeeze1 high-quality block-sorting file co
ii  lynx2.8.8dev.5-1 Text-mode WWW Browser (transitiona
ii  wget1.12-2.1 retrieves files from the web

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#675091: vmstat(8): .if instead of .fi in the manual

2012-05-29 Thread Bjarni Ingi Gislason
Package: procps
Version: 1:3.2.8-9squeeze1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: vmstat.8:113: warning: missing number

  Space adjusted

  Long line put on more lines.

  .br instead of .nf if long lines need to be wrapt around

  Patch:

--- vmstat.82012-05-27 00:31:12.0 +
+++ vmstat.8.new2012-05-27 00:43:24.0 +
@@ -42,7 +42,7 @@
 .PP
 The \fB\-f\fP switch displays the number of forks since boot.
 This includes the fork, vfork, and clone system calls, and is
-equivalent to the total number of tasks created. Each process
+equivalent to the total number of tasks created.  Each process
 is represented by one or more tasks, depending on thread usage.
 This display does not repeat.
 .PP
@@ -51,7 +51,7 @@
 The \fB\-n\fP switch causes the header to be displayed only once rather than 
periodically.
 .PP
 The \fB\-s\fP switch displays a table of various event counters
-and memory statistics. This display does not repeat.
+and memory statistics.  This display does not repeat.
 .PP
 .I delay
 is the delay between updates in seconds.  If no delay is specified,
@@ -68,7 +68,9 @@
 The \fB\-p\fP followed by some partition name for detailed statistics (2.5.70 
or above required)
 .PP
 The \fB\-S\fP followed by k or K or m or M switches changes the units of
-ouput from bytes to outputs between 1000, 1024, 100, or 1048576 bytes. 
Note this does not change the swap (si/so) or block (bi/bo) fields.
+output from bytes to outputs between 1000, 1024, 100, or
+1048576 bytes.  Note this does not change the swap (si/so) or
+block (bi/bo) fields.
 .PP
 The \fB\-V\fP switch results in displaying version information.
 .PP
@@ -76,7 +78,7 @@
 .SS
 .B Procs
 .nf
-r: The number of processes waiting for run time.  
+r: The number of processes waiting for run time.
 b: The number of processes in uninterruptible sleep.
 .fi
 .PP
@@ -87,8 +89,8 @@
 free: the amount of idle memory.
 buff: the amount of memory used as buffers.
 cache: the amount of memory used as cache.
-inact: the amount of inactive memory. (\-a option)
-active: the amount of active memory. (\-a option)
+inact: the amount of inactive memory.  (\-a option)
+active: the amount of active memory.  (\-a option)
 .fi
 .PP
 .SS
@@ -110,24 +112,24 @@
 .nf
 in: The number of interrupts per second, including the clock.
 cs: The number of context switches per second.
-.if
+.fi
 .PP
 .SS
 .B CPU 
 These are percentages of total CPU time.
 .nf
-us: Time spent running non\-kernel code. (user time, including nice time)
-sy: Time spent running kernel code. (system time)
-id: Time spent idle. Prior to Linux 2.5.41, this includes IO\-wait time.
-wa: Time spent waiting for IO. Prior to Linux 2.5.41, included in idle.
-st: Time stolen from a virtual machine. Prior to Linux 2.6.11, unknown.
+us: Time spent running non\-kernel code.  (user time, including nice time)
+sy: Time spent running kernel code.  (system time)
+id: Time spent idle.  Prior to Linux 2.5.41, this includes IO\-wait time.
+wa: Time spent waiting for IO.  Prior to Linux 2.5.41, included in idle.
+st: Time stolen from a virtual machine.  Prior to Linux 2.6.11, unknown.
 
 .PP
-.SH FIELD DESCRIPTION FOR DISK MODE 
+.SH FIELD DESCRIPTION FOR DISK MODE
 .SS
 .B Reads
 .nf
-total: Total reads completed successfully 
+total: Total reads completed successfully
 merged: grouped reads (resulting in one I/O)
 sectors: Sectors read successfully
 ms: milliseconds spent reading
@@ -160,7 +162,7 @@
 .fi
 
 .PP
-.SH FIELD DESCRIPTION FOR SLAB MODE 
+.SH FIELD DESCRIPTION FOR SLAB MODE
 .nf
 cache: Cache name
 num: Number of currently active objects
@@ -177,7 +179,7 @@
 .B vmstat 
 does not count itself as a running process.
 .PP
-All linux blocks are currently 1024 bytes. Old kernels may report
+All linux blocks are currently 1024 bytes.  Old kernels may report
 blocks as 512 bytes, 2048 bytes, or 4096 bytes.
 .PP
 Since procps 3.1.9, vmstat lets you choose units (k, K, m, M) default is K 
(1024 bytes) in the default mode
@@ -197,6 +199,6 @@
 .SH BUGS
 Does not tabulate the block io per device or count the number of system calls.
 .SH AUTHORS
-.nf
-Written by Henry Ware al...@yfn.ysu.edu. 
+Written by Henry Ware al...@yfn.ysu.edu.
+.br
 Fabian Fr\('ed\('erick ffreder...@users.sourceforge.net (diskstat, slab, 
partitions...)

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages procps depends on:
ii  initscripts2.88dsf-13.1+squeeze1 scripts for initializing and shutt
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libncurses55.7+20100313-5shared libraries for terminal hand
ii  libncursesw5   5.7+20100313-5shared libraries for terminal 

Bug#675259: anytobnm(1): Macro IX is not defined in the manual

2012-05-30 Thread Bjarni Ingi Gislason
Package: netpbm
Version: 2:10.0-12.2+b1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: anytopnm.1:2: warning: macro `IX' not defined

  Macro IX is deprecated, not a part of man(doc) macros.

  Space at end of lines removed.

  Patch:

--- anytopnm.1  2012-05-30 01:16:10.0 +
+++ anytopnm.1.new  2012-05-30 01:18:57.0 +
@@ -1,15 +1,13 @@
 .TH anytopnm 1 11 July 2000
-.IX anytopnm
 .SH NAME
 anytopnm - attempt to convert an unknown type of image file to a portable 
anymap
-
 .SH SYNOPSIS
 .B anytopnm
 .RI [ file ]
 
 .SH DESCRIPTION
-.B anytopnm 
-converts the input image, which may be in any of dozens of graphics 
+.B anytopnm
+converts the input image, which may be in any of dozens of graphics
 formats, to PBM, PGM, or PPM format, depending on that nature of the
 input image, and outputs it to Standard Output.
 
@@ -19,11 +17,10 @@
 .B file
 program (possibly assisted by the magic numbers file fragment included
 with Netpbm).
-.IX magic numbers
 If that fails (very few image formats have magic numbers),
 .B anytopnm
 looks at the filename extension.
-If that fails, 
+If that fails,
 .B anytopnm
 punts.
 .PP
@@ -32,19 +29,19 @@
 If
 .B file
 indicates that the input file is compressed (either via Unix compress,
-gzip, or bzip compression), 
+gzip, or bzip compression),
 .B anytopnm
 uncompresses it and proceeds as above with the uncompressed result.
 
-If 
+If
 .B file
 indicates that the input file is encoded by uuencode or btoa,
 .B anytopnm
 decodes it and proceeds as above with the decoded result.
 
-If 
+If
 .I file
-is 
+is
 .B -
 or not given,
 .B anytopnm
@@ -52,8 +49,8 @@
 
 
 .SH SEE ALSO
-.BR pnmfile (1), 
-.BR pnm (5), 
+.BR pnmfile (1),
+.BR pnm (5),
 .BR file (1)
 
 .SH AUTHOR

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages netpbm depends on:
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libjpeg62  6b1-1 The Independent JPEG Group's JPEG 
ii  libnetpbm102:10.0-12.2+b1Graphics conversion tools shared l
ii  libpng12-0 1.2.44-1+squeeze4 PNG library - runtime
ii  libtiff4   3.9.4-5+squeeze4  Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages netpbm recommends:
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF

netpbm suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#675260: asciitopgm(1): Macro IX is not defined in the manual

2012-05-30 Thread Bjarni Ingi Gislason
Package: netpbm
Version: 2:10.0-12.2+b1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: asciitopgm.1:2: warning: macro `IX' not defined

  The macro IX is not a part of the man(doc) macros.

  Patch:

--- asciitopgm.12012-05-30 01:07:08.0 +
+++ asciitopgm.1.new2012-05-30 01:08:28.0 +
@@ -1,5 +1,5 @@
 .TH asciitopgm 1 26 December 1994
-.IX asciitopgm
+.\.IX asciitopgm
 .SH NAME
 asciitopgm - convert ASCII graphics into a portable graymap
 .SH SYNOPSIS

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages netpbm depends on:
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libjpeg62  6b1-1 The Independent JPEG Group's JPEG 
ii  libnetpbm102:10.0-12.2+b1Graphics conversion tools shared l
ii  libpng12-0 1.2.44-1+squeeze4 PNG library - runtime
ii  libtiff4   3.9.4-5+squeeze4  Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages netpbm recommends:
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF

netpbm suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#675261: atktopbm(1): Macro IX is not defined in the manual

2012-05-30 Thread Bjarni Ingi Gislason
Package: netpbm
Version: 2:10.0-12.2+b1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: atktopbm.1:2: warning: macro `IX' not defined

  IX is not used any more.  Not a part of man(doc) macros.

  Patch:

--- atktopbm.1  2012-05-30 01:25:16.0 +
+++ atktopbm.1.new  2012-05-30 01:25:53.0 +
@@ -1,5 +1,4 @@
 .TH atktopbm 1 26 September 1991
-.IX atktopbm
 .SH NAME
 atktopbm - convert Andrew Toolkit raster object to portable bitmap
 .SH SYNOPSIS
@@ -7,7 +6,6 @@
 .RI [ atkfile ]
 .SH DESCRIPTION
 Reads an Andrew Toolkit raster object as input.
-.IX Andrew Toolkit raster object
 Produces a portable bitmap as output.
 .SH SEE ALSO
 pbmtoatk(1), pbm(5)

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages netpbm depends on:
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libjpeg62  6b1-1 The Independent JPEG Group's JPEG 
ii  libnetpbm102:10.0-12.2+b1Graphics conversion tools shared l
ii  libpng12-0 1.2.44-1+squeeze4 PNG library - runtime
ii  libtiff4   3.9.4-5+squeeze4  Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages netpbm recommends:
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF

netpbm suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#675380: bzip2(1): Macro PU not defined in the manual

2012-05-31 Thread Bjarni Ingi Gislason
Package: bzip2
Version: 1.0.5-6+squeeze1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: bzip2.1:1: warning: macro `PU' not defined

  Space at end of line removed

  No-break space (\ ) inserted between number and unit.

  Patch is in the attachment.

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages bzip2 depends on:
ii  libbz2-1.0  1.0.5-6+squeeze1 high-quality block-sorting file co
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib

bzip2 recommends no packages.

Versions of packages bzip2 suggests:
pn  bzip2-doc none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason


bzip2.1.diff.gz
Description: application/gunzip


Bug#675381: bioradtopgm(1): Macro IX is not defined in the manual

2012-05-31 Thread Bjarni Ingi Gislason
Package: netpbm
Version: 2:10.0-12.2+b1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: bioradtopgm.1:2: warning: macro `IX' not defined

  Some space adjusted.

  Patch:

--- bioradtopgm.1   2012-05-31 02:33:57.0 +
+++ bioradtopgm.1.new   2012-05-31 02:35:26.0 +
@@ -1,5 +1,4 @@
 .TH bioradtopgm 1 28 June 1993
-.IX bioradtopgm
 .SH NAME
 bioradtopgm - convert a Biorad confocal file into a portable graymap
 .SH SYNOPSIS
@@ -11,15 +10,14 @@
 Produces a portable graymap as output.
 If the resulting image is upside down, run it through
 .B pnmflip -tb .
-.IX pnmflip
 .SH OPTIONS
 .TP
 .B -image#
-A Biorad image file may contain more than one image. With this flag,
-you can specify which image to extract (only one at a time). The first
-image in the file has number zero. If no
+A Biorad image file may contain more than one image.  With this flag,
+you can specify which image to extract (only one at a time).  The first
+image in the file has number zero.  If no
 image number is supplied, only information about the image size and
-the number of images in the input is printed out. No output is produced.
+the number of images in the input is printed out.  No output is produced.
 .SH SEE ALSO
 pgm(5), pnmflip(1)
 .SH AUTHORS

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages netpbm depends on:
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libjpeg62  6b1-1 The Independent JPEG Group's JPEG 
ii  libnetpbm102:10.0-12.2+b1Graphics conversion tools shared l
ii  libpng12-0 1.2.44-1+squeeze4 PNG library - runtime
ii  libtiff4   3.9.4-5+squeeze4  Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages netpbm recommends:
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF

netpbm suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#675383: bmptopnm(1): The macro IX is not defined in the manual

2012-05-31 Thread Bjarni Ingi Gislason
Package: netpbm
Version: 2:10.0-12.2+b1
Severity: minor
Tags: patch

  Form man ... (groff -ww ...):

groff: bmptopnm.1:2: warning: macro `IX' not defined

--- bmptopnm.1  2012-05-31 02:41:36.0 +
+++ bmptopnm.1.new  2012-05-31 02:42:36.0 +
@@ -1,5 +1,4 @@
 .TH bmptopnm 1 17 February 2002
-.IX bmptopnm
 .SH NAME
 bmptopnm - convert a BMP file into a portable anymap
 
@@ -9,7 +8,6 @@
 
 .SH DESCRIPTION
 Reads a Microsoft Windows or OS/2 BMP file as input.
-.IX BMP
 Produces a PBM, PGM, or PNM image as output.  If the input is colormapped
 and contains only black and white, the output is PBM.  If the input is
 colormapped and contains only black white and gray, the output is PGM.

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages netpbm depends on:
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libjpeg62  6b1-1 The Independent JPEG Group's JPEG 
ii  libnetpbm102:10.0-12.2+b1Graphics conversion tools shared l
ii  libpng12-0 1.2.44-1+squeeze4 PNG library - runtime
ii  libtiff4   3.9.4-5+squeeze4  Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages netpbm recommends:
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF

netpbm suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#675384: brushtopbm(1): Macro IX is not defined in the manual

2012-05-31 Thread Bjarni Ingi Gislason
Package: netpbm
Version: 2:10.0-12.2+b1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: brushtopbm.1:2: warning: macro `IX' not defined

  Patch:

--- brushtopbm.12012-05-31 02:49:44.0 +
+++ brushtopbm.1.new2012-05-31 02:50:17.0 +
@@ -1,5 +1,4 @@
 .TH brushtopbm 1 28 August 1988
-.IX brushtopbm
 .SH NAME
 brushtopbm - convert a doodle brush file into a portable bitmap
 .SH SYNOPSIS
@@ -7,7 +6,6 @@
 .RI [ brushfile ]
 .SH DESCRIPTION
 Reads a Xerox doodle brush file as input.
-.IX Xerox doodle brush format
 Produces a portable bitmap as output.
 .PP
 Note that there is currently no pbmtobrush tool.

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages netpbm depends on:
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libjpeg62  6b1-1 The Independent JPEG Group's JPEG 
ii  libnetpbm102:10.0-12.2+b1Graphics conversion tools shared l
ii  libpng12-0 1.2.44-1+squeeze4 PNG library - runtime
ii  libtiff4   3.9.4-5+squeeze4  Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages netpbm recommends:
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF

netpbm suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#678561: zipinfo(1): Extra macro call of EE in the manual

2012-06-22 Thread Bjarni Ingi Gislason
Package: unzip
Version: 6.0-4
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

/home/bg/opt/share/groff/1.21/tmac/an-ext.tmac:195: backtrace: macro `EE'
groff: zipinfo.1:349: warning: number register `mE' not defined
/home/bg/opt/share/groff/1.21/tmac/an-ext.tmac:195: backtrace: macro `EE'
groff: zipinfo.1:349: warning: bad font number
groff: zipinfo.1:469: warning: escape character ignored before `+'
groff: zipinfo.1:470: warning: escape character ignored before `+'

  Some minor cosmetic corrections.

  Some general remarks:

a) Manuals should usually only be left justified.  Use .ad l
as the first regular command.

b) Each sentence should begin on a new line.  The conventions
about the amount of space between sentences are different.  This
also makes a check on the number of space characters between
words easier.

c) Separate numbers from units with a (no-break) space.  A
no-break space can be code 0xA0, \  (\space), or \~
(groff).

d) Use macros TS/TE for tables with more than two columns.
Then use

'\ t

as the first line in the source to tell man to use the tbl
preprocessor.

e) Protect the last period (full stop) (before space or end of
line) in abbreviations or ellipsis with \, if it is or might be
(through new formatting of source) at the end of line, if it is
also not an end of sentence.

f) Use \- for options

g)  Use \- or an en-dash (\(en) for the word to, as in 1 to
3 (1\-3).


  Patch:

--- zipinfo.1   2012-06-22 02:32:41.0 +
+++ zipinfo.1.new   2012-06-22 03:44:32.0 +
@@ -151,7 +151,7 @@
 their uncompressed and compressed total sizes , and their overall compression
 factor is printed; or, if only the totals line is being printed, the values
 for the entire archive are given.  The compressed total size does not include
-the 12 additional header bytes of each encrypted entry. Note that the total
+the 12 additional header bytes of each encrypted entry.  Note that the total
 compressed (data) size will never match the actual zipfile size, since the
 latter includes all of the internal zipfile headers in addition to the
 compressed data.
@@ -346,7 +346,6 @@
 .TP
 VMS (quotes for \fIlowercase\fP):
 \f(CW\define ZIPINFO_OPTS \-l\fP
-.EE
 .PP
 If, in addition, the user dislikes the trailer line, \fIzipinfo\fP's
 concept of ``negative options'' may be used to override the default
@@ -457,7 +456,7 @@
 such as Unix \fIsort\fP(1) (and \fIsed\fP(1) as well, in this example):
 .PP
 .EX
-zipinfo \-T storage | sort -nr -k 7 | sed 15q
+zipinfo \-T storage | sort \-nr \-k 7 | sed 15q
 .EE
 .PP
 The \fB\-nr\fP option to \fIsort\fP(1) tells it to sort numerically
@@ -466,8 +465,8 @@
 assumes the default short-listing format; if \fB\-m\fP or \fB\-l\fP is
 used, the proper \fIsort\fP(1) option would be \fB\-k\ 8\fP.
 Older versions of \fIsort\fP(1) do not support the \fB\-k\fP option,
-but you can use the traditional \fB\+\fP option instead, e.g.,
-\fB\+6\fP instead of \fB\-k\ 7\fP.  The \fIsed\fP(1)
+but you can use the traditional \fB+\fP option instead, e.g.,
+\fB+6\fP instead of \fB\-k\ 7\fP.  The \fIsed\fP(1)
 command filters out all but the first 15 lines of the listing.  Future
 releases of \fIzipinfo\fP may incorporate date/time and filename sorting
 as built-in options.

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages unzip depends on:
ii  libbz2-1.0  1.0.5-6+squeeze1 high-quality block-sorting file co
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib

unzip recommends no packages.

Versions of packages unzip suggests:
pn  zip   none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#673436: [patch], suffixes(7): Warnings from grotty

2012-05-18 Thread Bjarni Ingi Gislason
Package: manpages
Version: 3.27-1
Severity: minor
Tags: patch

  [Also sent to upstream, linux-man and mtk.manpages]

  From man ... (nroff ...):

grotty:standard input (standard input):1763: character above first line 
discarded
grotty:standard input (standard input):2688: character above first line 
discarded
grotty:standard input (standard input):3286: character above first line 
discarded

  The culprit is Dl 0 - (vertical line) where  is
one line (40 nroff units) to long.  Or there is a bug in
grotty.  nroff or tbl makes an empty line where a page
break is.

  Patch:

--- suffixes.7  2012-04-26 22:58:40.0 +
+++ suffixes.7.new  2012-05-18 01:22:54.0 +
@@ -35,6 +35,9 @@
 .\ FIXME, mtk, May 2007: rendering this page yields the error:
 .\ grotty:suffixes.7:1725: character above first line discarded
 .\
+.\ nroff (man) (or tbl) needs a long page to avoid warnings
+.\ from grotty (at imagined page breaks).  Bug in grotty?
+.if n .pl 1000v
 .TH SUFFIXES 7  2000-11-16 Linux Linux Programmer's Manual
 .SH NAME
 suffixes \- list of file suffixes


-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

manpages depends on no packages.

manpages recommends no packages.

Versions of packages manpages suggests:
ii  man-db [man-browser]  2.5.7-8on-line manual pager

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#673873: netdevice(7): Line in table too long

2012-05-21 Thread Bjarni Ingi Gislason
Package: manpages
Version: 3.27-1
Severity: minor
Tags: patch

  From man ... (nroff -ww ...):

nroff: netdevice.7: warning: around line 98: table wider than line width

  No right adjustment in text blocks in tables.

  Patch:

--- netdevice.7 2012-04-26 22:58:40.0 +
+++ netdevice.7.new 2012-05-21 15:32:56.0 +
@@ -91,6 +91,8 @@
 Get or set the active flag word of the device.
 .I ifr_flags
 contains a bit mask of the following values:
+.\ Do not right adjust text blocks in tables
+.na
 .TS
 tab(:);
 c s
@@ -102,7 +104,9 @@
 IFF_LOOPBACK:Interface is a loopback interface.
 IFF_POINTOPOINT:Interface is a point-to-point link.
 IFF_RUNNING:Resources allocated.
-IFF_NOARP:No arp protocol, L2 destination address not set.
+IFF_NOARP:T{
+No arp protocol, L2 destination address not set.
+T}
 IFF_PROMISC:Interface is in promiscuous mode.
 IFF_NOTRAILERS:Avoid use of trailers.
 IFF_ALLMULTI:Receive all multicast packets.
@@ -120,6 +124,7 @@
 
 
 .TE
+.ad
 Setting the active flag word is a privileged operation, but any
 process may read it.
 .TP

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

manpages depends on no packages.

manpages recommends no packages.

Versions of packages manpages suggests:
ii  man-db [man-browser]  2.5.7-8on-line manual pager

-- no debconf information

-- 
Bjarni I. Gíslason



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



Bug#673875: netlink(7): Line in table is too long

2012-05-21 Thread Bjarni Ingi Gislason
Package: manpages
Version: 3.27-1
Severity: minor
Tags: patch

  From man ... (nroff -ww ...):

nroff: netlink.7: warning: around line 195: table wider than line width

  Hozizontal line incorparated into table.

  No right adjustment of text blocks in tables.

  Patch:

--- netlink.7   2012-04-26 22:58:40.0 +
+++ netlink.7.new   2012-05-21 16:31:43.0 +
@@ -169,14 +169,12 @@
 .BR rtnetlink (7)
 for
 .BR NETLINK_ROUTE .
-
-Standard flag bits in
-.I nlmsg_flags
-.br
--
 .TS
 tab(:);
+l s
 lB l.
+Standard flag bits in \fInlmsg_flags\fP
+_
 NLM_F_REQUEST:Must be set on all request messages.
 NLM_F_MULTI:T{
 The message is part of a multipart message terminated by
@@ -185,13 +183,16 @@
 NLM_F_ACK:Request for an acknowledgment on success.
 NLM_F_ECHO:Echo this request.
 .TE
-
-Additional flag bits for GET requests
-.br
--
+.ad
+.sp 1
+.\ No right adustment for text blocks in tables
+.na
 .TS
 tab(:);
+l s
 lB l.
+Additional flag bits for GET requests
+_
 NLM_F_ROOT:Return the complete table instead of a single entry.
 NLM_F_MATCH:T{
 Return all entries matching criteria passed in message content.
@@ -199,27 +200,32 @@
 T}
 .\ FIXME NLM_F_ATOMIC is not used any more?
 NLM_F_ATOMIC:Return an atomic snapshot of the table.
-NLM_F_DUMP:Convenience macro; equivalent to (NLM_F_ROOT|NLM_F_MATCH).
+NLM_F_DUMP:T{
+Convenience macro; equivalent to (NLM_F_ROOT|NLM_F_MATCH).
+T}
 .TE
-
+.ad
+.sp 1
 Note that
 .B NLM_F_ATOMIC
 requires the
 .B CAP_NET_ADMIN
 capability or an effective UID of 0.
 
-Additional flag bits for NEW requests
-.br
--
+.na
 .TS
 tab(:);
+l s
 lB l.
+Additional flag bits for NEW requests
+_
 NLM_F_REPLACE:Replace existing matching object.
 NLM_F_EXCL:Don't replace if the object already exists.
 NLM_F_CREATE:Create object if it doesn't already exist.
 NLM_F_APPEND:Add to the end of the object list.
 .TE
-
+.ad
+.sp 1
 .I nlmsg_seq
 and
 .I nlmsg_pid

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

manpages depends on no packages.

manpages recommends no packages.

Versions of packages manpages suggests:
ii  man-db [man-browser]  2.5.7-8on-line manual pager

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#674051: rtnetlink(7): Line in table too long

2012-05-22 Thread Bjarni Ingi Gislason
Package: manpages
Version: 3.27-1
Severity: minor
Tags: patch

  From man ... (nroff -ww ...):

nroff: rtnetlink.7: warning: around line 415: table wider than line width

  Column gutter reduced to fit line length

  Right adjustment in text blocks removed in tables

  Some header made centered in tables

  One table put on same page

  Patch:

--- rtnetlink.7 2012-04-26 22:58:40.0 +
+++ rtnetlink.7.new 2012-05-21 22:35:12.0 +
@@ -81,9 +81,10 @@
 is the unique interface index,
 .I ifi_change
 is reserved for future use and should be always set to 0x.
+.na
 .TS
 tab(:);
-c
+c s s
 l l l.
 Routing attributes
 rta_type:value type:description
@@ -99,6 +100,7 @@
 see below
 T}:Interface Statistics.
 .TE
+.ad
 .sp
 The value type for IFLA_STATS is \fIstruct net_device_stats\fP.
 .TP
@@ -145,7 +147,7 @@
 for a permanent address set by the user and other undocumented flags.
 .TS
 tab(:);
-c
+c s s
 l l l.
 Attributes
 rta_type:value type:description
@@ -195,6 +197,7 @@
 unsigned int  rtm_flags;
 };
 .fi
+.na
 .TS
 tab(:);
 l l.
@@ -219,6 +222,8 @@
 refer to an external resolver (not implemented)
 T}
 .TE
+.ad
+.na
 .TS
 tab(:);
 l l.
@@ -232,6 +237,7 @@
 RTPROT_BOOT:during boot
 RTPROT_STATIC:by the administrator
 .TE
+.ad
 
 Values larger than
 .B RTPROT_STATIC
@@ -244,6 +250,7 @@
 
 .I rtm_scope
 is the distance to the destination:
+.na
 .TS
 tab(:);
 l l.
@@ -255,6 +262,7 @@
 RT_SCOPE_HOST:route on the local host
 RT_SCOPE_NOWHERE:destination doesn't exist
 .TE
+.ad
 
 The values between
 .B RT_SCOPE_UNIVERSE
@@ -265,6 +273,7 @@
 The
 .I rtm_flags
 have the following meanings:
+.na
 .TS
 tab(:);
 l l.
@@ -274,6 +283,7 @@
 RTM_F_CLONED:route is cloned from another route
 RTM_F_EQUALIZE:a multipath equalizer (not yet implemented)
 .TE
+.ad
 
 .I rtm_table
 specifies the routing table
@@ -290,9 +300,11 @@
 .B RT_TABLE_UNSPEC
 and
 .BR RT_TABLE_DEFAULT .
+.\ Keep table on same page
+.bp +1
 .TS
 tab(:);
-c
+c s s
 l l l.
 Attributes
 rta_type:value type:description
@@ -410,8 +422,8 @@
 .fi
 .TS
 tab(:);
-c
-l l l.
+c s s
+l2 l2 l.
 Attributes
 rta_type:value type:Description
 _

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

manpages depends on no packages.

manpages recommends no packages.

Versions of packages manpages suggests:
ii  man-db [man-browser]  2.5.7-8on-line manual pager

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#674052: patch(1): Missing date (as argument) for the .TH macro

2012-05-22 Thread Bjarni Ingi Gislason
Package: patch
Version: 2.6-2
Severity: minor

  From man ... (nroff -ww ...):

standard input:13: warning: macro `Dt' not defined

  String Dt should contain the date (YYY-MM-DD) of the latest
change of the manual, but is never initialized.  From the
source:

.\ patch man page
.de Id
.ds Dt \\$4
..
.ds = \-\^\-
.de Sp
.if t .sp .3
.if n .sp
..
.TH PATCH 1 \*(Dt GNU

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages patch depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib

patch recommends no packages.

Versions of packages patch suggests:
pn  diffutils-doc none (no description available)
ii  ed1.4-3  The classic UNIX line editor

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#674202: e2image(8): Unnecessary escape before a tab in the manual

2012-05-23 Thread Bjarni Ingi Gislason
Package: e2fsprogs
Version: 1.41.12-4stable1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: e2image.8:116: warning: escape character ignored before a tab character

  Some spaces adjusted, removed

  Period (full stop) in abbreviations protected.

  Patch:

--- e2image.8   2012-05-23 01:59:35.0 +
+++ e2image.8.new   2012-05-23 02:07:41.0 +
@@ -15,11 +15,11 @@
 .SH DESCRIPTION
 The
 .B e2image
-program will save critical ext2, ext3, or ext4 filesystem metadata located on 
-.I device  
-to a file specified by 
+program will save critical ext2, ext3, or ext4 filesystem metadata located on
+.I device
+to a file specified by
 .IR image-file .
-The image file may be examined by 
+The image file may be examined by
 .B dumpe2fs
 and
 .BR  debugfs ,
@@ -30,15 +30,15 @@
 e2fsck will be enhanced to be able to use the image file to help
 recover a badly damaged filesystem.
 .PP
-If  
+If
 .I image-file
-is \-, then the output of 
+is \-, then the output of
 .B e2image
 will be sent to standard output, so that the output can be piped to
-another program, such as 
-.BR gzip (1).  
+another program, such as
+.BR gzip (1).
 (Note that this is currently only supported when
-creating a raw image file using the 
+creating a raw image file using the
 .B \-r
 option, since the process of creating a normal image file currently
 requires random access to the file, which cannot be done using a
@@ -47,22 +47,22 @@
 .PP
 It is a very good idea to create image files for all of
 filesystems on a system and save the partition
-layout (which can be generated using the 
+layout (which can be generated using the
 .B fdisk \-l
 command) at regular intervals --- at boot time, and/or every week or so.
 The image file should be stored on some filesystem other than
 the filesystem whose data it contains, to ensure that this data is
 accessible in the case where the filesystem has been badly damaged.
 .PP
-To save disk space, 
+To save disk space,
 .B e2image
-creates the image file as a sparse file.  
+creates the image file as a sparse file.
 Hence, if the image file
 needs to be copied to another location, it should
-either be compressed first or copied using the 
+either be compressed first or copied using the
 .B \-\-sparse=always
-option to the GNU version of 
-.BR cp .  
+option to the GNU version of
+.BR cp .
 .PP
 The size of an ext2 image file depends primarily on the size of the
 filesystems and how many inodes are in use.  For a typical 10 gigabyte
@@ -75,15 +75,15 @@
 .PP
 .SH RESTORING FILESYSTEM METADATA USING AN IMAGE FILE
 .PP
-The 
-.B \-I 
+The
+.B \-I
 option will cause e2image to install the metadata stored in the image
-file back to the device.It can be used to restore the filesystem metadata
+file back to the device.  It can be used to restore the filesystem metadata
 back to the device in emergency situations.
 .PP
 .B WARNING
 The
-.B \-I 
+.B \-I
 option should only be used as a desperation measure when other
 alternatives have failed.  If the filesystem has changed since the image
 file was created, data
@@ -93,13 +93,13 @@
 strategies afterwards.
 .PP
 .SH RAW IMAGE FILES
-The 
+The
 .B \-r
-option will create a raw image file instead of a normal image file.  
+option will create a raw image file instead of a normal image file.
 A raw image file differs
 from a normal image file in two ways.  First, the filesystem metadata is
 placed in the proper position so that e2fsck, dumpe2fs, debugfs,
-etc. can be run directly on the raw image file.  In order to minimize
+etc.\ can be run directly on the raw image file.  In order to minimize
 the amount of disk space consumed by a raw image file, the file is
 created as a sparse file.  (Beware of copying or
 compressing/decompressing this file with utilities that don't understand
@@ -113,30 +113,29 @@
 recommended command is as follows (replace hda1 with the appropriate device):
 .PP
 .br
-\  \fBe2image \-r /dev/hda1 \- | bzip2  hda1.e2i.bz2\fR
+   \fBe2image \-r /dev/hda1 \- | bzip2  hda1.e2i.bz2\fR
 .PP
-This will only send the metadata information, without any data blocks.  
+This will only send the metadata information, without any data blocks.
 However, the filenames in the directory blocks can still reveal
 information about the contents of the filesystem that the bug reporter
 may wish to keep confidential.  To address this concern, the
 .B \-s
 option can be specified.  This will cause
-.B e2image 
+.B e2image
 to scramble directory entries and zero out any unused portions
 of the directory blocks before writing the image file.  However,
-the 
+the
 .B \-s
 option will prevent analysis of problems related to hash-tree indexed
 directories.
 .PP
 .SH AUTHOR
-.B e2image 
+.B e2image
 was written by Theodore Ts'o (ty...@mit.edu).
 .SH AVAILABILITY
 .B e2image
-is part of the e2fsprogs package and is available from 
+is part of the e2fsprogs package and is available from
 http://e2fsprogs.sourceforge.net.
 

Bug#674206: Man.pm: Undefined strings and a number register in groff

2012-05-23 Thread Bjarni Ingi Gislason
Package: perl-modules
Version: 5.10.1-17squeeze3
Severity: normal
Tags: patch

  From groff -b -ww -mandoc eximstats.8:

groff: eximstats.8:51: warning: number register `F' not defined
groff: eximstats.8:308: warning: macro `C`' not defined
groff: eximstats.8:308: warning: macro `C'' not defined

  The case about register F was reported to upstream, but my
patch there is wrong
(https://rt.cpan.org/Ticket/Display.html?id=75434).

  The strings C' and C` are said to expand to nothing in troff in
the explanation above the code.

  Patch:

--- Man.pm  2011-12-20 20:39:34.0 +
+++ Man.pm.new  2012-05-23 17:31:09.0 +
@@ -1358,6 +1358,8 @@
 .ds PI \(*p
 .ds L ``
 .ds R ''
+.ds C`
+.ds C'
 'br\}
 .\
 .\ Escape single quotes in literal strings from groff's Unicode transform.
@@ -1368,17 +1370,21 @@
 .\ titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
 .\ entries marked with X in POD.  Of course, you'll have to process the
 .\ output yourself in some meaningful fashion.
-.ie \nF \{\
+.\ Avoid warning from groff about undefined register 'F'.
+.de IX
+..
+.nr rF 0
+.if \n(.g .if r F .nr rF 1
+.if ( \n(rF : (\n(.g == 0) ) \{
+.  if \nF \{
 .de IX
 .tm Index:\\$1\t\\n%\t\\$2
 ..
 .nr % 0
 .rr F
+.  \}
 .\}
-.el \{\
-.de IX
-..
-.\}
+.rr rF
 END OF PREAMBLE
 
 if ($accents) {

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages perl-modules depends on:
ii  perl   5.10.1-17squeeze3 Larry Wall's Practical Extraction 

perl-modules recommends no packages.

perl-modules suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#674208: fstab-decode(8): \F instead of \f in the manual

2012-05-23 Thread Bjarni Ingi Gislason
Package: sysvinit-utils
Version: 2.88dsf-13.1+squeeze1
Severity: minor
Tags: patch

  From groff -b -ww -mandoc ...:

groff: fstab-decode.8:29: warning: can't find font `IR'

  Patch:

--- fstab-decode.8  2012-05-23 01:45:37.0 +
+++ fstab-decode.8.new  2012-05-23 01:47:50.0 +
@@ -26,7 +26,7 @@
 
 .SH DESCRIPTION
 .B fstab-decode
-decodes escapes in the specified \FIARGUMENT\fRs
+decodes escapes in the specified \fIARGUMENT\fRs
 and uses them to run \fICOMMAND\fR.
 The argument escaping uses the same rules as path escaping in
 \fB/etc/fstab\fR,

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages sysvinit-utils depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libselinux1   2.0.96-1   SELinux runtime shared libraries

sysvinit-utils recommends no packages.

Versions of packages sysvinit-utils suggests:
pn  sash  none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#674207: chat(8): Missing \ before '\n' in the manual

2012-05-23 Thread Bjarni Ingi Gislason
Package: ppp
Version: 2.4.5-4
Severity: minor
Tags: patch

  From groff -ww ...:

groff: chat.8.gz:228: warning: number register `' not defined

  Patch:

--- chat.8  2012-05-22 22:22:16.0 +
+++ chat.8.new  2012-05-22 22:28:51.0 +
@@ -225,14 +225,14 @@
 .br
 CONNECT '' 
 .br
-SAY Connected, now logging in ...\n
+SAY Connected, now logging in ...\\n
 .br
 ogin: account
 .br
 ssword: pass
 .br
 $ \c
-SAY Logged in OK ...\n
+SAY Logged in OK ...\\n
 \fIetc ...\fR
 .LP
 This sequence will only present the SAY strings to the user and all

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages ppp depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libpam-modules1.1.1-6.1+squeeze1 Pluggable Authentication Modules f
ii  libpam-runtime1.1.1-6.1+squeeze1 Runtime support for the PAM librar
ii  libpam0g  1.1.1-6.1+squeeze1 Pluggable Authentication Modules l
ii  libpcap0.81.1.1-2+squeeze1   system interface for user-level pa
ii  procps1:3.2.8-9squeeze1  /proc file system utilities

ppp recommends no packages.

ppp suggests no packages.

-- Configuration Files:
/etc/chatscripts/pap changed [not included]
/etc/logrotate.d/ppp changed [not included]
/etc/ppp/options changed [not included]

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#674209: fsck(8): Unnecessary escapes for tabs in the manual

2012-05-23 Thread Bjarni Ingi Gislason
Package: util-linux
Version: 2.17.2-9
Severity: minor
Tags: patch

  From man ... (nroff -ww ...):

groff: fsck.8:48: warning: escape character ignored before a tab character
groff: fsck.8:48: warning: escape character ignored before a tab character
groff: fsck.8:50: warning: escape character ignored before a tab character
groff: fsck.8:50: warning: escape character ignored before a tab character
groff: fsck.8:52: warning: escape character ignored before a tab character
groff: fsck.8:52: warning: escape character ignored before a tab character
groff: fsck.8:54: warning: escape character ignored before a tab character
groff: fsck.8:54: warning: escape character ignored before a tab character
groff: fsck.8:56: warning: escape character ignored before a tab character
groff: fsck.8:56: warning: escape character ignored before a tab character
groff: fsck.8:58: warning: escape character ignored before a tab character
groff: fsck.8:58: warning: escape character ignored before a tab character
groff: fsck.8:60: warning: escape character ignored before a tab character
groff: fsck.8:60: warning: escape character ignored before a tab character
groff: fsck.8:62: warning: escape character ignored before a tab character
groff: fsck.8:62: warning: escape character ignored before a tab character

  Some space adjusted

  Period (full stop) protected in abbreviations

  Patch:

--- fsck.8  2012-05-23 01:24:49.0 +
+++ fsck.8.new  2012-05-23 01:29:10.0 +
@@ -12,18 +12,18 @@
 .RI [ fd ]]
 .RB [ \-t
 .IR fstype ]
-.RI [ filesys ...]
+.RI [ filesys ...\]
 .RB [ \-\- ]
 .RI [ fs-specific-options ]
 .SH DESCRIPTION
 .B fsck
 is used to check and optionally repair one or more Linux file systems.
 .I filesys
-can be a device name (e.g.
+can be a device name (e.g.\
 .IR /dev/hdc1 ,  /dev/sdb2 ),
-a mount point (e.g.
+a mount point (e.g.\
 .IR / ,  /usr ,  /home ),
-or an ext2 label or UUID specifier (e.g.
+or an ext2 label or UUID specifier (e.g.\
 UUID=8868abf6-88c5-4a83-98b8-bfc24057f7bd or LABEL=root).
 Normally, the
 .B fsck
@@ -45,21 +45,21 @@
 .B fsck
 is the sum of the following conditions:
 .br
-\  0\  \-\ No errors
+   0   \-\ No errors
 .br
-\  1\  \-\ File system errors corrected
+   1   \-\ File system errors corrected
 .br
-\  2\  \-\ System should be rebooted
+   2   \-\ System should be rebooted
 .br
-\  4\  \-\ File system errors left uncorrected
+   4   \-\ File system errors left uncorrected
 .br
-\  8\  \-\ Operational error
+   8   \-\ Operational error
 .br
-\  16\ \-\ Usage or syntax error
+   16  \-\ Usage or syntax error
 .br
-\  32\ \-\ Fsck canceled by user request
+   32  \-\ Fsck canceled by user request
 .br
-\  128\\-\ Shared library error
+   128 \-\ Shared library error
 .br
 The exit code returned when multiple file systems are checked
 is the bit-wise OR of the exit codes for each
@@ -218,9 +218,9 @@
 .sp
 .B fsck
 normally does not check whether the device actually exists before
-calling a file system specific checker. Therefore non-existing
+calling a file system specific checker.  Therefore non-existing
 devices may cause the system to enter file system repair mode during
-boot if the filesystem specific checker returns a fatal error. The
+boot if the filesystem specific checker returns a fatal error.  The
 .B /etc/fstab
 mount option
 .B nofail
@@ -234,7 +234,7 @@
 .TP
 .B \-C\fR [ \fI fd \fR ]
 Display completion/progress bars for those filesystem checkers (currently
-only for ext2 and ext3) which support them.   Fsck will manage the
+only for ext2 and ext3) which support them.  Fsck will manage the
 filesystem checkers so that only one of them will display
 a progress bar at a time.  GUI front-ends may specify a file descriptor
 .IR fd ,

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages util-linux depends on:
ii  debconf [debconf-2 1.5.36.1  Debian configuration management sy
ii  dpkg   1.15.8.12 Debian package management system
ii  initscripts2.88dsf-13.1+squeeze1 scripts for initializing and shutt
ii  install-info   4.13a.dfsg.1-6Manage installed documentation in 
ii  libblkid1  2.17.2-9  block device id library
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libncurses55.7+20100313-5shared libraries for terminal hand
ii  libselinux12.0.96-1  SELinux runtime shared libraries
ii  libslang2  2.2.2-4   The S-Lang programming library - r
ii  libuuid1   2.17.2-9  Universally Unique ID library

Bug#674453: e2fsck(8): Unnecessary escape of tabs in the manual

2012-05-24 Thread Bjarni Ingi Gislason
Package: e2fsprogs
Version: 1.41.12-4stable1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: e2fsck.8:301: warning: escape character ignored before a tab character
groff: e2fsck.8:301: warning: escape character ignored before a tab character
groff: e2fsck.8:303: warning: escape character ignored before a tab character
groff: e2fsck.8:303: warning: escape character ignored before a tab character
groff: e2fsck.8:305: warning: escape character ignored before a tab character
groff: e2fsck.8:305: warning: escape character ignored before a tab character
groff: e2fsck.8:307: warning: escape character ignored before a tab character
groff: e2fsck.8:307: warning: escape character ignored before a tab character
groff: e2fsck.8:309: warning: escape character ignored before a tab character
groff: e2fsck.8:309: warning: escape character ignored before a tab character
groff: e2fsck.8:311: warning: escape character ignored before a tab character
groff: e2fsck.8:311: warning: escape character ignored before a tab character
groff: e2fsck.8:313: warning: escape character ignored before a tab character
groff: e2fsck.8:313: warning: escape character ignored before a tab character
groff: e2fsck.8:315: warning: escape character ignored before a tab character
groff: e2fsck.8:315: warning: escape character ignored before a tab character
groff: e2fsck.8:317: warning: escape character ignored before a tab character
groff: e2fsck.8:317: warning: escape character ignored before a tab character

  Adjusted some spaces between words and removed at end of lines

  Protected period (full stop) in an abbrevation.

  This file is the same (same inode) as the files
fsck.ext[234].8 and fsck.ext4dev.8.

  Patch for e2fsck.8.in is in the attachment

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages e2fsprogs depends on:
ii  e2fslibs1.41.12-4stable1 ext2/ext3/ext4 file system librari
ii  libblkid1   2.17.2-9 block device id library
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib
ii  libcomerr2  1.41.12-4stable1 common error description library
ii  libss2  1.41.12-4stable1 command-line interface parsing lib
ii  libuuid12.17.2-9 Universally Unique ID library
ii  util-linux  2.17.2-9 Miscellaneous system utilities

e2fsprogs recommends no packages.

Versions of packages e2fsprogs suggests:
pn  e2fsck-static none (no description available)
pn  gpart none (no description available)
pn  partednone (no description available)

-- no debconf information

-- 
Bjarni I. Gislason


e2fsck.8.in.diff.gz
Description: application/gunzip


Bug#667672: motd.tail(5): .RE without a .RS, one space after a sentence

2012-04-30 Thread Bjarni Ingi Gislason
On Sat, Apr 28, 2012 at 10:30:33PM +0200, Simon Paillard wrote:
 tag 667672 pending
 thanks 
 
 Hi,
 
 On Thu, Apr 05, 2012 at 07:59:09PM +, Bjarni Ingi Gislason wrote:
  Package: manpages
  Version: 3.27-1
  Severity: minor
  Tags: patch
  
From groff:
  
  standard input:63: warning: number register `an-saved-margin1' not defined
  standard input:63: warning: number register `an-saved-prevailing-indent1' 
  not defined
 
 (Please provide the command use to detect such issues, I was not that obvious)
 groff -man -Tascii -w reg -z man5/motd.tail.5 
 man5/motd.tail.5:63: warning: number register `an-saved-margin1' not defined
 man5/motd.tail.5:63: warning: number register `an-saved-prevailing-indent1' 
 not defined
 

  I used

MANOPT='--warnings=w --locale=POSIX'
MAN_KEEP_STDERR=yes
export MANOPT MAN_KEEP_STDERR

  and (in a script))

man -l $manual 2 $tempfile

 man-db/lintian doesn't show any:
 http://lintian.debian.org/maintainer/j...@debian.org.html#manpages
 

  Thanks for pointing out the case with lintian.
I checked the source for lintian 2.5.6.  There is a bug in the
checks/manpages script.  I will report that.

 groff -man -Tascii -w all -z man5/motd.tail.5 
 did show nothing
 

  all is a misnomer, use w.  Also use -mandoc instead of -man.

  @@ -60,7 +60,6 @@
   .TP
   .I /var/run/motd
   System message of the day file rebuilt at each computer start
  -.RE
   .SH SEE ALSO
 
 Fixed in git (for 3.40). 
 
Only one space after full stop (period) between sentences.
 
Patch:
  
  --- motd.tail.5 2012-04-04 22:42:32.0 +
  +++ motd.tail.5.new 2012-04-04 22:44:40.0 +
  @@ -26,12 +26,12 @@
   .SH DESCRIPTION
   On Debian systems, the system message of the day is rebuilt at each
   startup, in order to display an accurate
  -information. \fI/etc/motd.tail\fP is the file to edit permanent
  +information.  \fI/etc/motd.tail\fP is the file to edit permanent
   changes to the message of the day.
   .SH OVERVIEW
   The initiation script \fI/etc/init.d/bootmisc.sh\fP prepends a line
   containing information about the system to \fI/etc/motd.tail\fP and
  -stores the resulting file in \fI/var/run/motd\fP. \fI/etc/motd\fP is a
  +stores the resulting file in \fI/var/run/motd\fP.  \fI/etc/motd\fP is a
   symbolic link to \fI/var/run/motd\fP.  This is done to prevent
 
 Fixed in git (for 3.40). 
 
 -- 
 Simon Paillard

-- 
Bjarni I. Gíslason



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



Bug#671258: manpages: Too few (or no) warnings from man (groff)

2012-05-02 Thread Bjarni Ingi Gislason
Package: lintian
Version: 2.5.6
Severity: normal
Tags: patch

  If --warnings is used, only warnings of type mac are
issued.  The full potential of groff should be used, using
--warnings=w.

  Lines, that remove warnings because of the use of old
pod2man (or other programme), should be removed when it has been fixed.

  THE PATCH HAS NOT BEEN TESTED:

--- manpages2012-03-12 14:40:11.0 +
+++ manpages.new2012-05-02 02:08:29.0 +
@@ -240,9 +240,9 @@
 # pages with .so but aren't simple links; rbash, for instance.)
 my $cmd;
 if ($path =~ m,^(.*)/(man\d/.*)$,) {
-$cmd = cd \Q$1\E  man --warnings -E UTF-8 -l \Q$2\E;
+$cmd = cd \Q$1\E  man --warnings=w -E UTF-8 -l \Q$2\E;
 } else {
-$cmd = man --warnings -E UTF-8 -l \Q$path\E;
+$cmd = man --warnings=w -E UTF-8 -l \Q$path\E;
 }
 my $pid = open MANERRS, '-|';
 if (not defined $pid) {
@@ -270,7 +270,10 @@
 and (   $manfile[$1 - 1] =~ m,(?:https?|ftp)://.+,i
  or $manfile[$1 - 1] =~ m,^\s*\.\s*UE\b,);
 # ignore common undefined macros from pod2man  Perl 5.10
+# This and next line should be removed for wheezy
 next if /warning: (?:macro )?\`(Tr|IX)\' not defined/;
+# This and next line should be removed for wheezy or its successor
+next if /warning: (?:number register )?['`]F\' not defined/;
 chomp;
 s/^[^:]+://o;
 tag 'manpage-has-errors-from-man', $file, $_;

  System Information are for the 2.4.3+squeeze1 version (squeeze).

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages lintian depends on:
ii  binutils   2.20.1-16 The GNU assembler, linker and bina
ii  diffstat   1.53-1produces graph of changes introduc
ii  dpkg-dev   1.15.8.12 Debian package development tools
ii  file   5.04-5+squeeze1   Determines file type using magic
ii  gettext0.18.1.1-3GNU Internationalization utilities
ii  intltool-debian0.35.0+20060710.1 Help i18n of RFC822 compliant conf
ii  libapt-pkg-perl0.1.24+b1 Perl interface to libapt-pkg
ii  libclass-accessor-perl 0.34-1Perl module that automatically gen
ii  libipc-run-perl0.89-1Perl module for running processes
ii  libparse-debianchangel 1.1.1-2.1 parse Debian changelogs and output
ii  libtimedate-perl   1.2000-1  collection of modules to manipulat
ii  liburi-perl1.54-2module to manipulate and access UR
ii  locales2.11.3-3  Embedded GNU C Library: National L
ii  man-db 2.5.7-8   on-line manual pager
ii  perl [libdigest-sha-pe 5.10.1-17squeeze3 Larry Wall's Practical Extraction 

lintian recommends no packages.

Versions of packages lintian suggests:
pn  binutils-multiarchnone (no description available)
pn  libtext-template-perl none (no description available)
ii  man-db2.5.7-8on-line manual pager

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#671514: console_codes(4): Some fixes to the manual, table, spaces, ellipsis

2012-05-04 Thread Bjarni Ingi Gislason
Package: manpages
Version: 3.40
Severity: minor
Tags: patch

  Warning from groff:

warning: around line 185: table wider than line width

  After some space fixes, a new warning:

warning: around line 496: table wider than line width

  Length of line extended for the relevant tables.

  Some periods (full stop) protected, space adjusted

  Patch is in the attachment.

  System Information is for the 3.27-1 version

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

manpages depends on no packages.

manpages recommends no packages.

Versions of packages manpages suggests:
ii  man-db [man-browser]  2.5.7-8on-line manual pager

-- no debconf information

-- 
Bjarni I. Gislason
--- console_codes.4 2012-05-03 00:36:46.0 +
+++ console_codes.4.new 2012-05-03 01:04:41.0 +
@@ -126,8 +126,8 @@
 ESC H  HTS Set tab stop at current column.
 ESC M  RI  Reverse linefeed.
 ESC Z  DECID   T{
-DEC private identification. The kernel
-returns the string  ESC [ ? 6 c, claiming
+DEC private identification.  The kernel
+returns the string ESC [ ? 6 c, claiming
 that it is a VT102.
 T}
 ESC 7  DECSC   T{
@@ -174,6 +174,9 @@
 (The idea is to ignore an echoed function key.)
 .PP
 The action of a CSI sequence is determined by its final character.
+.\ Lenghen line to avoid the warning table wider than line
+.\ width on an 80 columns console
+.ll +5m
 .TS
 l l l l.
 @  ICH Insert the indicated # of blank characters.
@@ -219,6 +222,7 @@
 u  ?   Restore cursor location.
 \` HPA Move cursor to indicated column in current row.
 .TE
+.ll -5m
 .PP
 .B ECMA-48 Set Graphics Rendition
 .sp
@@ -237,7 +241,7 @@
 4  T{
 set underscore (simulated with color on a color display)
 (the colors used to simulate dim or underline are set
-using ESC ] ...)
+using ESC ] \...)
 T}
 5  set blink
 7  set reverse video
@@ -370,7 +374,7 @@
 ESC [ 11 ; \fIn\fP ]   Set bell duration in msec.
 ESC [ 12 ; \fIn\fP ]   Bring specified console to the front.
 ESC [ 13 ] Unblank the screen.
-ESC [ 14 ; \fIn\fP ]   Set the VESA powerdown interval in minutes.
+ESC [ 14 ; \fIn\fP ]   Set the VESA powerdown interval in minutes.
 .TE
 .SS Character Sets
 The kernel knows about 4 translations of bytes into console-screen
@@ -484,11 +488,14 @@
 .B Escape sequences
 .sp
 VT100 console sequences not implemented on the Linux console:
+.\ Lenghen line to avoid the warning table wider than line
+.\ width on an 80 columns console
+.ll +3m
 .TS
 l l l.
-ESC N  SS2 Single shift 2. (Select G2 character set for the next
+ESC N  SS2 Single shift 2.  (Select G2 character set for the next
character only.)
-ESC O  SS3 Single shift 3. (Select G3 character set for the next
+ESC O  SS3 Single shift 3.  (Select G3 character set for the next
character only.)
 ESC P  DCS Device control string (ended by ESC \\)
 ESC X  SOS Start of string.
@@ -497,15 +504,16 @@
 ESC * ...  Designate G2 character set
 ESC + ...  Designate G3 character set
 .TE
+.ll -3m
 .PP
 The program
 .BR xterm (1)
 (in VT100 mode) recognizes ESC c, ESC # 8, ESC , ESC =,
-ESC D, ESC E, ESC H, ESC M, ESC N, ESC O, ESC P ... ESC \\,
+ESC D, ESC E, ESC H, ESC M, ESC N, ESC O, ESC P \...\ ESC \\,
 ESC Z (it answers ESC [ ? 1 ; 2 c, I am a VT100 with
 advanced video option)
-and ESC ^ ... ESC \\ with the same meanings as indicated above.
-It accepts ESC (, ESC ), ESC *,  ESC + followed by 0, A, B for
+and ESC ^ \...\ ESC \\ with the same meanings as indicated above.
+It accepts ESC (, ESC ), ESC *, ESC + followed by 0, A, B for
 the DEC special character and line drawing set, UK, and US-ASCII,
 respectively.
 .PP
@@ -581,7 +589,7 @@
 document by
 Edward Moy,
 Stephen Gildea,
-and Thomas E. Dickey
+and Thomas E.\ Dickey
 available with the X distribution.
 That document, though terse, is much longer than this manual page.
 For a chronological overview,


Bug#671515: ioctl_list(2): table wider than line width

2012-05-04 Thread Bjarni Ingi Gislason
Package: manpages-dev
Version: 3.27-1
Severity: minor
Tags: patch

  Version 3.40 of manpages from upstream is used.

  From groff:

ioctl_list.2: warning: around line 126: table wider than line width
ioctl_list.2: warning: around line 182: table wider than line width
ioctl_list.2: warning: around line 203: table wider than line width
ioctl_list.2: warning: around line 260: table wider than line width
ioctl_list.2: warning: around line 368: table wider than line width
ioctl_list.2: warning: around line 473: table wider than line width
ioctl_list.2: warning: around line 488: table wider than line width
ioctl_list.2: warning: around line 533: table wider than line width

  Long tables split into two or more.  Some l l l l. reduced
to l l l..  There is a jump in some column alignments (empty
line between parts of the same table).

  Patch is in the attachment.

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages manpages-dev depends on:
ii  manpages  3.27-1 Manual pages about using a GNU/Lin

manpages-dev recommends no packages.

Versions of packages manpages-dev suggests:
ii  man-db [man-browser]  2.5.7-8on-line manual pager

-- no debconf information

-- 
Bjarni I. Gislason


ioctl_list.2.diff.gz
Description: application/gunzip


Bug#646626: console-setup: Font Lat15-VGA16 shows ¦ instead of |

2011-10-25 Thread Bjarni Ingi Gislason
Package: console-setup
Version: 1.68+squeeze2
Severity: normal

  The ascii character vertical line (|, 0x7C, PostScript name
bar) is displayed as broken bar (¦, 0xA6, PostScript name
brokenbar) in the font Lat15-VGA16.


-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35squeeze2
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup depends on:
ii  console-terminus   4.30-2Fixed-width fonts for fast reading
ii  debconf1.5.36.1  Debian configuration management sy
ii  keyboard-configuration 1.68+squeeze2 system-wide keyboard preferences
ii  xkb-data   1.8-2 X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  kbd   1.15.2-2   Linux console font and keytable ut

Versions of packages console-setup suggests:
ii  locales 2.11.2-10Embedded GNU C Library: National L
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/store_defaults_in_debconf_db: true
  console-setup/use_system_font:
  console-setup/fontsize: 14
* console-setup/fontface47: VGA
  console-setup/fontsize-text47: 16
  console-setup/charmap47: UTF-8  (ISO-8859-1 is actually used by me)
  console-setup/codesetcode: Lat15
* console-setup/fontsize-fb47: 14

-- debsums errors found:
debsums: changed file /usr/share/consoletrans/ISO-8859-1.acm.gz (from 
console-setup package)
(I unzipped it with gunzip and zipped it again with gzip)

-- 
Bjarni I. Gislason



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



Bug#646626: console-setup: Font Lat15-VGA16 shows ¦ instead of |

2011-10-27 Thread Bjarni Ingi Gislason
On Wed, Oct 26, 2011 at 01:48:02AM +0200, Samuel Thibault wrote:
 Bjarni Ingi Gislason, le Tue 25 Oct 2011 20:03:42 +, a écrit :
The ascii character vertical line (|, 0x7C, PostScript name
  bar) is displayed as broken bar (¦, 0xA6, PostScript name
  brokenbar) in the font Lat15-VGA16.
 
 The glyph is indeed the same in the font, probably worth fixing?
 
  Yes, the glyph should (may, must, shall) be correct.
  It should (may, must, shall) not cause confusion.

  I looked a some keyboards (new and old) with Icelandic letters.
The keys B00 are marked with the broken bar in violation to the
Icelandic standard for keyboards (ÍST 125:1995) and also the (ÍST)
ISO/IEC 9995:3:1994 standard (Keyboard layout for text and office
systems - Part3).

-- 
Bjarni I. Gislason



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



Bug#647746: console-setup: Changed $KMAP causes new compilation of cached.kmap.gz

2011-11-05 Thread Bjarni Ingi Gislason
Package: console-setup
Version: 1.68+squeeze2
Severity: wishlist

  If the variable $KMAP is changed in the file
/etc/default/keyboard, the file cached.kmap.gz is
unnecessarily created.

  The execution of ckbcomp takes some time so the user should
be informed.  Also if there is something unusual going on.

  Suggestion:

--- setupcon.orig   2011-10-24 21:54:35.0 +
+++ setupcon2011-11-04 22:59:58.0 +
@@ -383,7 +383,8 @@
fi

if \
-   [ $VARIANT = '' ] \
+   [ -z $KMAP -o $save = 'yes' ] \
+[ $VARIANT = '' ] \
 which gzip /dev/null \
 [ -d /usr/share ] # /usr is mounted
then
@@ -393,6 +394,7 @@
 -ot /etc/default/keyboard ] \
|| [ $save = yes ]
then
+   echo 'Console keycodes are now created from /usr/share/X11/xkb'
ckbcomp $acm_option $rules_option -model $XKBMODEL \
$XKBLAYOUT $XKBVARIANT $XKBOPTIONS \
| gzip -9 2/dev/null /etc/console-setup/cached.kmap.gz
@@ -413,6 +415,7 @@
eval loadkeys /etc/console-setup/cached.kmap.gz $verbose
else
if [ -d /usr/share/X11/xkb ]; then
+   echo 'Console keycodes are now temporarily created from 
/usr/share/X11/xkb'
ckbcomp $acm_option $rules_option \
-model $XKBMODEL \
$XKBLAYOUT $XKBVARIANT $XKBOPTIONS \


-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35squeeze2
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup depends on:
ii  console-terminus   4.30-2Fixed-width fonts for fast reading
ii  debconf1.5.36.1  Debian configuration management sy
ii  keyboard-configuration 1.68+squeeze2 system-wide keyboard preferences
ii  xkb-data   1.8-2 X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  kbd   1.15.2-2   Linux console font and keytable ut

Versions of packages console-setup suggests:
ii  locales 2.11.2-10Embedded GNU C Library: National L
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/store_defaults_in_debconf_db: true
  console-setup/use_system_font:
  console-setup/fontsize: 16
* console-setup/fontface47: VGA
  console-setup/fontsize-text47: 16
* console-setup/charmap47: ISO-8859-1
  console-setup/codesetcode: Lat15
* console-setup/fontsize-fb47: 16

-- debsums errors found:
debsums: changed file /bin/setupcon (from console-setup package)
debsums: changed file /usr/share/consoletrans/ISO-8859-1.acm.gz (from 
console-setup package)

-- 
Bjarni I. Gislason



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



Bug#647750: linux-source-2.6.32: keyboard.c: 8 bits diacritics are displayed as a 7 bits representation after a space

2011-11-05 Thread Bjarni Ingi Gislason
Package: linux-source-2.6.32
Version: 2.6.32-35squeeze2
Severity: normal

  Diacritics, that are 8 bits (accent (´, 0xB4), dieresis (¨,
0xA8), cedilla (¸, 0xB8)), are displayed as their 7 bits
representation (',) if a space is input after them.

  In the subroutine handle_diacr in drivers/char/keyboard.c is:

if ((d  ~0xff) == BRL_UC_ROW) {
if ((ch  ~0xff) == BRL_UC_ROW)
return d | ch;
} else {
for (i = 0; i  accent_table_size; i++)
if (accent_table[i].diacr == d  accent_table[i].base 
== ch)
return accent_table[i].result;
}

if (ch == ' ' || ch == (BRL_UC_ROW|0) || ch == d)
return d;

  Thus after space, the d (in the accent_table; compose part)
is returned instead of the real (8 bit) character.

-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35squeeze2
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-source-2.6.32 depends on:
ii  binutils  2.20.1-16  The GNU assembler, linker and bina
ii  bzip2 1.0.5-6high-quality block-sorting file co

Versions of packages linux-source-2.6.32 recommends:
ii  gcc   4:4.4.5-1  The GNU C compiler
ii  libc6-dev [libc-dev]  2.11.2-10  Embedded GNU C Library: Developmen
ii  make  3.81-8 An utility for Directing compilati

Versions of packages linux-source-2.6.32 suggests:
pn  kernel-packagenone (no description available)
ii  libncurses5-dev [ncurses- 5.7+20100313-5 developer's libraries and docs for
pn  libqt3-mt-dev none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#647750: linux-source-2.6.32: keyboard.c: 8 bits diacritics are displayed as a 7 bits representation after a space

2011-11-11 Thread Bjarni Ingi Gislason
On Wed, Nov 09, 2011 at 02:54:37AM +, Ben Hutchings wrote:
 On Sat, Nov 05, 2011 at 07:18:31PM +, Bjarni Ingi Gislason wrote:
  Package: linux-source-2.6.32
  Version: 2.6.32-35squeeze2
  Severity: normal
  
Diacritics, that are 8 bits (accent (´, 0xB4), dieresis (¨,
  0xA8), cedilla (¸, 0xB8)), are displayed as their 7 bits
  representation (',) if a space is input after them.
 [...]
 
 Which keymap are you using?  Have you enabled Unicode mode for the VT
 (unicode_start)?
 

  The keymap is boottime.kmap.gz, slightly changed.

  I use 8 bit mode (xlate).

  Lines with (6) diacritcs:

keymaps 0-2,4-6,8,12
keycode  27 = apostrophe   question dead_tilde   
Control_bracketright
alt keycode  27 = Meta_bracketright
keycode  40 = dead_acute   dead_acute   dead_circumflex
control keycode  40 = Control_g
alt keycode  40 = Meta_apostrophe
keycode  41 = degree   dead_diaeresis   bar  nul
alt keycode  41 = Meta_grave
keycode  43 = plus asterisk dead_grave
Control_backslash
alt keycode  43 = Meta_backslash
keycode  51 = commasemicolondead_cedilla
alt keycode  51 = Meta_comma


  Using Unicode makes no difference.

-- 
Bjarni I. Gislason



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



Bug#647750: linux-source-2.6.32: keyboard.c: 8 bits diacritics are displayed as a 7 bits representation after a space

2011-11-14 Thread Bjarni Ingi Gislason
On Sat, Nov 12, 2011 at 12:23:41AM +, Ben Hutchings wrote:
 On Fri, Nov 11, 2011 at 11:37:15PM +, Bjarni Ingi Gislason wrote:
  On Wed, Nov 09, 2011 at 02:54:37AM +, Ben Hutchings wrote:
   On Sat, Nov 05, 2011 at 07:18:31PM +, Bjarni Ingi Gislason wrote:
Package: linux-source-2.6.32
Version: 2.6.32-35squeeze2
Severity: normal

  Diacritics, that are 8 bits (accent (´, 0xB4), dieresis (¨,
0xA8), cedilla (¸, 0xB8)), are displayed as their 7 bits
representation (',) if a space is input after them.
   [...]
   
   Which keymap are you using?  Have you enabled Unicode mode for the VT
   (unicode_start)?
   
  
The keymap is boottime.kmap.gz, slightly changed.
 [...]
 
 Can you reproduce this with a standard keymap that includes
 dead keys?
 

  Same results are with files from /usr/share/keymaps/i386/qwerty:

  is-latin1.kmap.gz  (has dead_acute and dead_diaeresis)

  fi-latin-1.kmap.gz (has dead_acute and dead_diaeresis)

  us-latin-1.kmap.gz (has dead_acute)

-- 
Bjarni I. Gislason



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



Bug#648997: /bin/setupcon: Variable CHARMAP is defined too early

2011-11-16 Thread Bjarni Ingi Gislason
Package: console-setup
Version: 1.68+squeeze2
Severity: normal

  From /bin/setupcon:

if which ckbcomp-mini /dev/null; then
CHARMAP=UTF-8
if [ $VERBOSE_OUTPUT = yes -a $CHARMAP != UTF-8 ]; then
echo Only UTF-8 is supported by console-setup-mini
fi
fi

  The second if statement is always false, CHARMAP is defined too
early, should be after the second if statement:

if which ckbcomp-mini /dev/null; then
if [ $VERBOSE_OUTPUT = yes -a $CHARMAP != UTF-8 ]; then
echo Only UTF-8 is supported by console-setup-mini
fi
CHARMAP=UTF-8
fi

-- System Information:
Debian Release: 6.0.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35squeeze2
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup depends on:
ii  console-terminus   4.30-2Fixed-width fonts for fast reading
ii  debconf1.5.36.1  Debian configuration management sy
ii  keyboard-configuration 1.68+squeeze2 system-wide keyboard preferences
ii  xkb-data   1.8-2 X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  kbd   1.15.2-2   Linux console font and keytable ut

Versions of packages console-setup suggests:
ii  locales 2.11.2-10Embedded GNU C Library: National L
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/codeset47: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/store_defaults_in_debconf_db: true
  console-setup/use_system_font:
  console-setup/fontsize: 16
* console-setup/fontface47: VGA
  console-setup/fontsize-text47: 16
* console-setup/charmap47: ISO-8859-1
  console-setup/codesetcode: Lat15
* console-setup/fontsize-fb47: 16

-- debsums errors found:
debsums: changed file /bin/setupcon (from console-setup package)
debsums: changed file /usr/share/consoletrans/ISO-8859-1.acm.gz (from 
console-setup package)

-- 
Bjarni I. Gislason



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



Bug#693078: debfoster.8: Warnings from groff; various formatting corrections to the manual

2012-11-12 Thread Bjarni Ingi Gislason
Package: debfoster
Version: 2.7-1.1
Severity: minor
Tags: patch

  Warnings from GROFF_ENCODING=utf8 groff -b -ww -mandoc -z ...

groff: debfoster.8: mdoc warning: Using a macro as first argument cancels 
effect of .Li (#136)
groff: debfoster.8: /usr/share/groff/1.20.1/tmac/doc.tmac:144: backtrace: macro 
`print-and-reset'
groff: debfoster.8: /usr/share/groff/1.20.1/tmac/doc.tmac:256: backtrace: macro 
`print-recursive'
groff: debfoster.8: /usr/share/groff/1.20.1/tmac/doc.tmac:292: backtrace: macro 
`Li'
groff: debfoster.8:394: warning [p 5, 2.9i]: cannot adjust line

  Fl -XXX changed to Fl Fl XXX (difference only visible in
groff).

  Fl ... -XXX changed to Fl ... Fl Fl XXX (difference only visible
in groff).

  \p removed and .br added as next line (\p expands line in
groff)

  Space removed from end of line

  Some minor formatting corrections

#
#
  Output from nroff should (usually) have only the left margin
adjusted (.ad l).  Otherwise the space between words can be too long.

  Output for a manual should (usually) have the right margin ragged
(.ad l), as it is not (usually) intended for a book or other
professional printing medium.

#
  Each sentence should begin in a new line.

a) The space between sentences is different between formatters.

b) Changes in one line do then not affect others, and do therefore not
appear as changed in the output of diff.

#
  Sometimes a small change in space between a roman and an italic
character is needed (use .RI or .IR macros).

#
  Remove spaces at end of lines.

#
  Protect the last full stop (period) in abbreviations or ellipses
(with \) if it is not at the end of a sentence.

#
  Protect the full stop (period) at the beginning of text (word) or
ellipsis.

#
  Protect a single quote (', apostrophe) (with \) at the start of the
quoted text.

##



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

Kernel: Linux 2.6.35-25-generic (SMP w/4 CPU cores)
Locale: LANG=is_IS.ISO-8859-1, LC_CTYPE=is_IS.ISO-8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages debfoster depends on:
ii  libc6 2.11.1-0ubuntu7.11 Embedded GNU C Library: Shared lib
ii  libgc1c2  1:6.8-1.2ubuntu1.1 conservative garbage collector for

Versions of packages debfoster recommends:
ii  apt   0.7.25.3ubuntu9.14 Advanced front-end for dpkg

debfoster suggests no packages.

-- no debconf information

  Patch:

--- debfoster.8 2012-11-12 16:58:18.170606130 +
+++ debfoster.8.new 2012-11-12 19:13:37.802506900 +
@@ -7,25 +7,25 @@
 .Sh SYNOPSIS
 .Nm
 .Op Fl acdefhiknopqrstvV
-.Op Fl -verbose
-.Op Fl -version
-.Op Fl -help
-.Op Fl -quiet
-.Op Fl -force
-.Op Fl -mark-only
-.Op Fl -upgrade
-.Op Fl -config Ar file
-.Op Fl -keeperfile Ar file
-.Op Fl -no-keeperfile
-.Op Fl -ignore-default-rules
-.Op Fl -show-keepers
-.Op Fl -show-orphans
-.Op Fl -show-depends Ar package
-.Op Fl -show-dependents Ar package
-.Op Fl -show-providers Ar package
-.Op Fl -show-related Ar package
-.Op Fl -use-tasks
-.Op Fl -option Ar opt=val
+.Op Fl Fl verbose
+.Op Fl Fl version
+.Op Fl Fl help
+.Op Fl Fl quiet
+.Op Fl Fl force
+.Op Fl Fl mark-only
+.Op Fl Fl upgrade
+.Op Fl Fl config Ar file
+.Op Fl Fl keeperfile Ar file
+.Op Fl Fl no-keeperfile
+.Op Fl Fl ignore-default-rules
+.Op Fl Fl show-keepers
+.Op Fl Fl show-orphans
+.Op Fl Fl show-depends Ar package
+.Op Fl Fl show-dependents Ar package
+.Op Fl Fl show-providers Ar package
+.Op Fl Fl show-related Ar package
+.Op Fl Fl use-tasks
+.Op Fl Fl option Ar opt=val
 .Op Ar package1 No ...
 .Op Ar package2- No ...
 .Sh DESCRIPTION
@@ -40,7 +40,7 @@
 .Nm
 to install and remove packages by specifying the packages on the command line.
 Packages suffixed with a
-.Ar -
+.Ar \-
 are removed while packages without a suffix are installed.
 .Pp
 If a new package is encountered or if
@@ -92,17 +92,17 @@
 .El
 .Ss Command line options
 .Bl -tag -width indent
-.It Fl v, -verbose
+.It Fl v, Fl Fl verbose
 .Nm
 will show which packages have disappeared, have become dependencies
 or (if
 .Pa Quiet
 is enabled) have become orphans.
-.It Fl V, -version
+.It Fl V, Fl Fl version
 Display version and copyright information.
-.It Fl h, -help
+.It Fl h, Fl Fl help
 Display a concise summary of the available options and argument syntax.
-.It Fl f, -force
+.It Fl f, Fl Fl force
 Don't ask anything and assume
 .Ql no
 as the answer to all questions.
@@ -113,40 +113,41 @@
 Can have
 .Ql interesting
 results if you're not careful.
-.It Fl q, -quiet
+.It Fl q, Fl Fl quiet
 Don't ask anything and assume
 .Ql yes
 as the answer to all questions.
 Useful to create an initial
 .Pa /var/lib/debfoster/keepers
 file or to recreate it after changing the configuration file.
-.It Fl m, -mark-only
+.It Fl m, Fl Fl mark-only
 Instructs debfoster to make changes to the keeper file but
 not to actually 

Bug#693082: dmsetup.8: Warnings from groff: Some formatting corrections for the manual

2012-11-12 Thread Bjarni Ingi Gislason
Package: dmsetup
Version: 2:1.02.39-1ubuntu4.1
Severity: minor
Tags: patch

  Warnings from GROFF_ENCODING=utf8 groff -b -ww -mandoc -z ...

groff: dmsetup.8: /usr/share/groff/1.20.1/tmac/an-old.tmac:478: backtrace
groff: dmsetup.8: /usr/share/groff/1.20.1/tmac/an-old.tmac:395: backtrace: 
macro `TP'
groff: dmsetup.8: /usr/share/groff/1.20.1/tmac/an-old.tmac:478: backtrace: 
macro `IP'
groff: dmsetup.8:197: warning: numeric expression expected (got `c')

  Changed some hyphens to minus (dash)

  Protected some full stops (.) and single quotes (apostrophe) (') with \

  Removed space at end of line

  One spelling correction (ouput)

#
  Output from nroff should (usually) have only the left margin
adjusted (.ad l).  Otherwise the space between words can be too long.

  Output for a manual should (usually) have the right margin ragged
(.ad l), as it is not (usually) intended for a book or other
professional printing medium.

#
  Each sentence should begin in a new line.

a) The space between sentences is different between formatters.

b) Changes in one line do then not affect others, and do therefore not
appear as changed in the output of diff.

#
  Sometimes a small change in space between a roman and an italic
character is needed (use .RI or .IR macros).

#
  Remove spaces at end of lines.

#
  Protect the last full stop (period) in abbreviations or ellipses
(with \) if it is not at the end of a sentence.

#
  Protect the full stop (period) at the beginning of text (word) or
ellipsis.

#
  Protect a single quote (', apostrophe) (with \) at the start of the
quoted text.

##


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

Kernel: Linux 2.6.35-25-generic (SMP w/4 CPU cores)
Locale: LANG=is_IS.ISO-8859-1, LC_CTYPE=is_IS.ISO-8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages dmsetup depends on:
ii  initramfs-tools  0.92bubuntu78   tools for generating an initramfs
ii  libc62.11.1-0ubuntu7.11  Embedded GNU C Library: Shared lib
ii  libdevmapper1.02 2:1.02.39-1ubuntu4.1The Linux Kernel Device Mapper use
ii  udev 151-12.3rule-based device node and kernel 
ii  util-linux   2.17.2-0ubuntu1.10.04.2 Miscellaneous system utilities

dmsetup recommends no packages.

dmsetup suggests no packages.

-- no debconf information

  Patch is in the attachment

-- 
Bjarni I. Gislason
--- dmsetup.8   2012-11-12 20:32:52.283663520 +
+++ dmsetup.8.new   2012-11-12 20:52:51.983995652 +
@@ -4,31 +4,31 @@
 .SH SYNOPSIS
 .ad l
 .B dmsetup help
-.I [-c|-C|--columns]
+.I [\-c|\-C|\-\-columns]
 .br
-.B dmsetup create 
-.I device_name [-u uuid] [--notable | --table table | table_file]
+.B dmsetup create
+.I device_name [\-u uuid] [\-\-notable | \-\-table table | table_file]
 .br
 .B dmsetup remove
-.I [-f|--force] device_name
+.I [\-f|\-\-force] device_name
 .br
 .B dmsetup remove_all
-.I [-f|--force]
+.I [\-f|\-\-force]
 .br
 .B dmsetup suspend
-.I [--nolockfs] [--noflush] device_name
+.I [\-\-nolockfs] [\-\-noflush] device_name
 .br
 .B dmsetup resume
 .I device_name
 .br
 .B dmsetup load
-.I device_name [--table table | table_file]
+.I device_name [\-\-table table | table_file]
 .br
 .B dmsetup clear
 .I device_name
 .br
 .B dmsetup reload
-.I device_name [--table table | table_file]
+.I device_name [\-\-table table | table_file]
 .br
 .B dmsetup rename
 .I device_name new_name
@@ -37,24 +37,24 @@
 .I device_name sector message
 .br
 .B dmsetup ls
-.I [--target target_type] [--exec command] [--tree [-o options]]
+.I [\-\-target target_type] [\-\-exec command] [\-\-tree [-o options]]
 .br
-.B dmsetup info 
+.B dmsetup info
 .I [device_name]
 .br
-.B dmsetup info -c|-C|--columns
-.I [--noheadings] [--separator separator] [-o fields] [-O|--sort sort_fields]
+.B dmsetup info \-c|\-C|\-\-columns
+.I [\-\-noheadings] [\-\-separator separator] [\-o fields] [\-O|\-\-sort 
sort_fields]
 .I [device_name]
 .br
 .B dmsetup deps
 .I [device_name]
 .br
 .B dmsetup status
-.I [--target target_type]
+.I [\-\-target target_type]
 .I [device_name]
 .br
 .B dmsetup table
-.I [--target target_type]
+.I [\-\-target target_type]
 .I [device_name]
 .br
 .B dmsetup wait
@@ -89,82 +89,82 @@
 .B devmap_name
 .I major minor
 .br
-.B devmap_name 
+.B devmap_name
 .I major:minor
 .ad b
 .SH DESCRIPTION
-dmsetup manages logical devices that use the device-mapper driver.  
+dmsetup manages logical devices that use the device-mapper driver.
 Devices are created by loading a table that specifies a target for
 each sector (512 bytes) in the logical device.
 
-The first argument to dmsetup is a command. 
+The first argument to dmsetup is a command.
 The second argument is the logical device name or uuid.
 
 Invoking the command as \fBdevmap_name\fP is equivalent to
 .br
-\fBdmsetup info -c --noheadings -j \fImajor\fB -m 

Bug#693917: grep: Bug in Debian patch: LIB= instead of LIBS=

2012-11-21 Thread Bjarni Ingi Gislason
Source: grep
Version: 2.14-1
Severity: serious
Tags: patch
Justification: fails to build from source (but built successfully in the past)

  Last part of output from make:

  CCLD grep
libgrep.a(pcresearch.o): In function `Pcompile':
pcresearch.c:(.text+0x433): undefined reference to `dlopen'
pcresearch.c:(.text+0x449): undefined reference to `dlsym'
pcresearch.c:(.text+0x462): undefined reference to `dlsym'
pcresearch.c:(.text+0x47b): undefined reference to `dlsym'
pcresearch.c:(.text+0x494): undefined reference to `dlsym'
collect2: ld returned 1 exit status
make[2]: *** [grep] Error 1
make[2]: Leaving directory `/tmp/grep-2.14/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/grep-2.14'
make: *** [all] Error 2

  Patch:

--- 03-397262-dlopen-pcre.patch 2011-07-06 08:05:37.0 +
+++ 03-397262-dlopen-pcre.patch.new 2012-11-20 21:19:39.0 +
@@ -12,7 +12,7 @@ Modified by Marco d'Itri m...@linux.it
test $ac_res = none required || LIBS=$ac_res $LIBS
test $ac_cv_search_pcre_compile = none required ||
 - LIB_PCRE=$ac_cv_search_pcre_compile
-+   LIB=-ldl $LIBS
++   LIBS=-ldl $LIBS
  fi
  
for ac_func in pcre_compile


-- System Information:
Debian Release: 6.0.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages grep depends on:
ii  dpkg  1.15.8.13  Debian package management system
ii  install-info  4.13a.dfsg.1-6 Manage installed documentation in 
ii  libc6 2.11.3-4   Embedded GNU C Library: Shared lib

grep recommends no packages.

Versions of packages grep suggests:
ii  libpcre3  8.02-1.1   Perl 5 Compatible Regular Expressi

-- no debconf information

-- 
Bjarni I. Gislason


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



Bug#693917: grep: Bug in Debian patch: LIB= instead of LIBS=

2012-11-23 Thread Bjarni Ingi Gislason
On Thu, Nov 22, 2012 at 12:05:37AM +0100, Santiago Ruano Rincón wrote:
 tags 693917 + wheezy-ignore
 tags 693917 + squeeze
 tags 693917 + moreinfo
 stop
 
 Hi,
 
 I'm unable to reproduce this bug on unstable, I suppose it's a
 squeeze-related bug?
 
 Thanks for reporting the bug,
 

  This is a conditional bug which needs at least to have configuration
HAVE_LIBPCRE to be true to be triggered.

 On 21/11/12 19:33, Bjarni Ingi Gislason wrote:
  Source: grep
  Version: 2.14-1
  Severity: serious
  Tags: patch
  Justification: fails to build from source (but built successfully in the 
  past)
  
Last part of output from make:
  
CCLD grep
  libgrep.a(pcresearch.o): In function `Pcompile':
  pcresearch.c:(.text+0x433): undefined reference to `dlopen'
  pcresearch.c:(.text+0x449): undefined reference to `dlsym'
  pcresearch.c:(.text+0x462): undefined reference to `dlsym'
  pcresearch.c:(.text+0x47b): undefined reference to `dlsym'
  pcresearch.c:(.text+0x494): undefined reference to `dlsym'
  collect2: ld returned 1 exit status
  make[2]: *** [grep] Error 1
  make[2]: Leaving directory `/tmp/grep-2.14/src'
  make[1]: *** [all-recursive] Error 1
  make[1]: Leaving directory `/tmp/grep-2.14'
  make: *** [all] Error 2
  
Patch:
  
  --- 03-397262-dlopen-pcre.patch 2011-07-06 08:05:37.0 +
  +++ 03-397262-dlopen-pcre.patch.new 2012-11-20 21:19:39.0 +
  @@ -12,7 +12,7 @@ Modified by Marco d'Itri m...@linux.it
  test $ac_res = none required || LIBS=$ac_res $LIBS
  test $ac_cv_search_pcre_compile = none required ||
   - LIB_PCRE=$ac_cv_search_pcre_compile
  -+   LIB=-ldl $LIBS
  ++   LIBS=-ldl $LIBS
fi

  for ac_func in pcre_compile
  
  

-- 
Bjarni I. Gislason


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



Bug#651866: mpack: Patch for bugs 651866 and 369118

2012-08-05 Thread Bjarni Ingi Gislason
Package: mpack
Version: 1.6-6
Severity: important
Tags: patch

  Here is a patch to fix removal of carriage returns.

--- decode.c2003-07-21 20:47:54.0 +
+++ decode.c.new2012-07-31 16:55:18.421337917 +
@@ -46,7 +46,7 @@
 params ParseContent(char **headerp);
 char *getParam(params cParams, char *key);
 char *getDispositionFilename(char *disposition);
-void from64(struct part *inpart, FILE *outfile, char **digestp, int 
suppressCR);
+void from64(struct part *inpart, FILE *outfile, char **digestp);
 void fromqp(struct part *inpart, FILE *outfile, char **digestp);
 void fromnone(struct part *inpart, FILE *outfile, char **digestp);
 /*
@@ -883,7 +883,7 @@
break;
 
 case enc_base64:
-   from64(inpart, descfile, (char **)0, 1);
+   from64(inpart, descfile, (char **)0);
break;
 }
 
@@ -898,14 +898,10 @@
 {
 FILE *outfile = 0;
 int flags = 0;
-int suppressCR = 0;
 char *outputmd5;
 char *fname;
 
-if (!strncasecmp(contentType, text/, 5)) {
-   suppressCR = 1;
-}
-else if (contentEncoding == enc_base64) {
+if (contentEncoding == enc_base64) {
/*
 * HEURISTIC: It is not in general possible to determine whether
 * any non-text content type is line-oriented.  We guess
@@ -944,7 +940,7 @@
break;
 
 case enc_base64:
-   from64(inpart, outfile, outputmd5, suppressCR);
+   from64(inpart, outfile, outputmd5);
break;
 }
 rewind(outfile);
@@ -1008,7 +1004,7 @@
 };
 #define CHAR64(c)  (index_64[(unsigned char)(c)])
 
-void from64(struct part *inpart, FILE *outfile, char **digestp, int suppressCR)
+void from64(struct part *inpart, FILE *outfile, char **digestp)
 {
 int c1, c2, c3, c4;
 int DataDone = 0;
@@ -1041,21 +1037,21 @@
 c1 = CHAR64(c1);
 c2 = CHAR64(c2);
buf[0] = ((c12) | ((c20x30)4));
-if (!suppressCR || buf[0] != '\r') putc(buf[0], outfile);
+putc(buf[0], outfile);
 if (c3 == '=') {
if (digestp) MD5Update(context, buf, 1);
 DataDone = 1;
 } else {
 c3 = CHAR64(c3);
buf[1] = (((c20x0F)  4) | ((c30x3C)  2));
-if (!suppressCR || buf[1] != '\r') putc(buf[1], outfile);
+putc(buf[1], outfile);
 if (c4 == '=') {
if (digestp) MD5Update(context, buf, 2);
 DataDone = 1;
 } else {
 c4 = CHAR64(c4);
buf[2] = (((c30x03)  6) | c4);
-if (!suppressCR || buf[2] != '\r') putc(buf[2], outfile);
+putc(buf[2], outfile);
if (digestp) MD5Update(context, buf, 3);   
 }
 }
@@ -1079,7 +1075,7 @@
c2 = part_getc(inpart);
c2 = HEXCHAR(c2);
c = c14 | c2;
-   if (c != '\r') putc(c, outfile);
+   putc(c, outfile);
if (digestp) MD5Update(context, c, 1);
}
} else {

-- 
Bjarni I. Gislason


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



Bug#684223: linux-source-2.6.32: Two console fonts show broken bar instead of a vertical line

2012-08-07 Thread Bjarni Ingi Gislason
X-Mailer: reportbug 4.12.6
Package: linux-source-2.6.32
Version: 2.6.32-45
Severity: minor
Tags: patch

  The files font_mini_4x6.c and font_sun8x16.c in the
directory drivers/video/console define glyph | (124, 0x7C)
with a hole in the vertical line.

  Version 3.5 has the same holes.

  Patches:

--- font_mini_4x6.c 2009-12-03 03:51:21.0 +
+++ font_mini_4x6.c.new 2012-08-07 21:51:59.0 +
@@ -1092,7 +1092,7 @@
/*{*/   /*   Char 124: '|' */
0x44,   /*=   [ *  ]*/
0x44,   /*=   [ *  ]*/
-   0x00,   /*=   []*/
+   0x44,   /*=   [ *  ]*/
0x44,   /*=   [ *  ]*/
0x44,   /*=   [ *  ]*/
0x00,   /*=   []*/


--- font_sun8x16.c  2009-12-03 03:51:21.0 +
+++ font_sun8x16.c.new  2012-08-07 21:53:51.0 +
@@ -127,7 +127,7 @@
 /*y*/ 
0x00,0x00,0x00,0x00,0x00,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0x7e,0x06,0x0c,0xf8,0x00,
 /*z*/ 
0x00,0x00,0x00,0x00,0x00,0xfe,0xcc,0x18,0x30,0x60,0xc6,0xfe,0x00,0x00,0x00,0x00,
 /*{*/ 
0x00,0x00,0x0e,0x18,0x18,0x18,0x70,0x18,0x18,0x18,0x18,0x0e,0x00,0x00,0x00,0x00,
-/*|*/ 
0x00,0x00,0x18,0x18,0x18,0x18,0x00,0x18,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,
+/*|*/ 
0x00,0x00,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x00,0x00,0x00,0x00,
 /*}*/ 
0x00,0x00,0x70,0x18,0x18,0x18,0x0e,0x18,0x18,0x18,0x18,0x70,0x00,0x00,0x00,0x00,
 /*~*/ 
0x00,0x00,0x76,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
 /* */ 
0x00,0x00,0x00,0x00,0x10,0x38,0x6c,0xc6,0xc6,0xc6,0xfe,0x00,0x00,0x00,0x00,0x00,

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-source-2.6.32 depends on:
ii  binutils2.20.1-16The GNU assembler, linker and bina
ii  bzip2   1.0.5-6+squeeze1 high-quality block-sorting file co

Versions of packages linux-source-2.6.32 recommends:
ii  gcc   4:4.4.5-1  The GNU C compiler
ii  libc6-dev [libc-dev]  2.11.3-4   Embedded GNU C Library: Developmen
ii  make  3.81-8 An utility for Directing compilati

Versions of packages linux-source-2.6.32 suggests:
pn  kernel-packagenone (no description available)
ii  libncurses5-dev [ncurses- 5.7+20100313-5 developer's libraries and docs for
pn  libqt3-mt-dev none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason


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



Bug#677106: pcreprecompile(3): Macro .sh not found in the manual

2012-06-11 Thread Bjarni Ingi Gislason
Package: libpcre3-dev
Version: 8.02-1.1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: ./pcreprecompile.3:27: warning: macro `sh' not defined

  Should be .sp, if the lines after .SH are to be the same
throughout the source.

  Patch:
--- pcreprecompile.32012-06-10 00:12:57.0 +
+++ pcreprecompile.3.new2012-06-10 00:15:51.0 +
@@ -24,7 +24,7 @@
 .
 .SH SAVING A COMPILED PATTERN
 .rs
-.sh
+.sp
 The value returned by \fBpcre_compile()\fP points to a single block of memory
 that holds the compiled pattern and associated data. You can find the length of
 this block in bytes by calling \fBpcre_fullinfo()\fP with an argument of

-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-45
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages libpcre3-dev depends on:
ii  libc6-dev 2.11.3-3   Embedded GNU C Library: Developmen
ii  libpcre3  8.02-1.1   Perl 5 Compatible Regular Expressi
ii  libpcrecpp0   8.02-1.1   Perl 5 Compatible Regular Expressi

libpcre3-dev recommends no packages.

libpcre3-dev suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#677108: lt-proc(1): Some characters before .TH in the manual

2012-06-11 Thread Bjarni Ingi Gislason
Package: lttoolbox
Version: 3.1.0-1
Severity: minor
Tags: patch

  From man ... (groff -ww ...):

groff: lt-proc.1:2: warning: macro `SH' not defined
groff: lt-proc.1:5: warning: macro `B' not defined
groff: lt-proc.1:7: warning: macro `PP' not defined
groff: lt-proc.1:37: warning: macro `BR' not defined
groff: lt-proc.1:41: warning: macro `RS' not defined
groff: lt-proc.1:49: warning: macro `RE' not defined
groff: lt-proc.1:64: warning: macro `TP' not defined
groff: lt-proc.1:120: warning: macro `I' not defined

  Some spaces adjusted or removed at end of lines.

  The error was also reported by lintian.

  Patch:

--- lt-proc.1   2012-06-09 02:05:15.0 +
+++ lt-proc.1.new   2012-06-09 02:10:21.0 +
@@ -1,4 +1,4 @@
-.TH lt-proc 1 2006-03-23  
+.TH lt-proc 1 2006-03-23  
 .SH NAME
 lt-proc \- This application is part of the lexical processing modules
 and tools (
@@ -10,20 +10,20 @@
 .SH SYNOPSIS
 .B lt-proc
 [
-.B \-a \fR| 
-.B \-c \fR| 
+.B \-a \fR|
+.B \-c \fR|
 .B \-g \fR|
 .B \-n \fR|
 .B \-p \fR|
 .B \-s \fR|
-.B \-t \fR| 
+.B \-t \fR|
 .B \-v \fR|
 .B \-h
 ] fst_file [input_file [output_file]]
 .PP
 .B lt-proc
 [
-.B \-\-analysis \fR| 
+.B \-\-analysis \fR|
 .B \-\-case-sensitive \fR|
 .B \-\-generation \fR|
 .B \-\-non-marked-gen \fR|
@@ -34,29 +34,29 @@
 .B \-\-help
 ] fst_file [input_file [output_file]]
 .SH DESCRIPTION
-.BR lt-proc 
+.BR lt-proc
 is the application responsible for providing the four lexical
 processing functionalities
 
 .RS
-\(bu \fImorphological analyser\fR  ( option \fB\-a\fR )
+\(bu \fImorphological analyser\fR ( option \fB\-a\fR )
 .PP
-\(bu \fIlexical transfer\fR  ( option \fB\-n\fR )
+\(bu \fIlexical transfer\fR ( option \fB\-n\fR )
 .PP
-\(bu \fImorphological generator\fR  ( option \fB\-g\fR )
+\(bu \fImorphological generator\fR ( option \fB\-g\fR )
 .PP
-\(bu \fIpost-generator\fR  ( option \fB\-p\fR )
+\(bu \fIpost-generator\fR ( option \fB\-p\fR )
 .RE
 \fR
 .PP
 It accomplishes these tasks by reading binary files containing a
 compact and efficient representation of dictionaries (a class of
-finite-state transducers called augmented letter transducers). These
+finite-state transducers called augmented letter transducers).  These
 files are generated by \fBlt\-comp(1)\fR.
 .PP
 It is worth to mention that some characters
 (`\fB[\fR', `\fB]\fR', `\fB$\fR', `\fB^\fR', `\fB/\fR', `\fB+\fR') are
-\fIspecial\fR chars used for format and encapsulation. They should be
+\fIspecial\fR chars used for format and encapsulation.  They should be
 escaped if they have to be used literally, for
 instance: `\fB[\fR'...`\fB]\fR' are ignored and the format of a
 \fIlinefeed\fR is `\fB^\fR...\fB$\fR'.
@@ -66,17 +66,17 @@
 Tokenizes the text in surface forms (lexical units as they appear in
 texts) and delivers, for each surface form, one or more lexical forms
 consisting of lemma, lexical category and morphological inflection
-information. Tokenization is not straightforward due to the existence,
+information.  Tokenization is not straightforward due to the existence,
 on the one hand, of contractions, and, on the other hand, of
-multi-word lexical units. For contractions, the system reads in a
+multi-word lexical units.  For contractions, the system reads in a
 single surface form and delivers the corresponding sequence of lexical
-forms. Multi-word surface forms are analysed in a left-to-right,
-longest-match fashion. Multi-word surface forms may be invariable
+forms.  Multi-word surface forms are analysed in a left-to-right,
+longest-match fashion.  Multi-word surface forms may be invariable
 (such as a multi-word preposition or conjunction) or inflected (for
 example, in es, \fIechaban de menos\fR, \(dqthey missed\(dq, is a
 form of the imperfect indicative tense of the verb \fIechar de
-menos\fR, \(dqto miss\(dq). Limited support for some kinds of
-discontinuous multi-word units is also available. Single-word surface
+menos\fR, \(dqto miss\(dq).  Limited support for some kinds of
+discontinuous multi-word units is also available.  Single-word surface
 forms analysis produces output like the one in these examples:
 \ \fIcantar\fR \- `\fI^cantar/cantarvblexinf$\fR' or
 \ `\fIdaba\fR \-
@@ -95,7 +95,7 @@
 .TP
 .B \-p, \-\-post-generation
 Performs orthographical operations such as contractions and
-apostrophations. The post-generator is usually \fIdormant\fR (just
+apostrophations.  The post-generator is usually \fIdormant\fR (just
 copies the input to the output) until a special \fIalarm\fR symbol
 contained in some target-language surface forms \fIwakes\fR it up to
 perform a particular string transformation if necessary; then it goes
@@ -124,5 +124,5 @@
 .SH BUGS
 Lots of...lurking in the dark and waiting for you!
 .SH AUTHOR
-(c) 2005,2006 Universitat d'Alacant / Universidad de Alicante. All rights
+(c) 2005, 2006 Universitat d'Alacant / Universidad de Alicante.  All rights
 reserved.

-- System Information:
Debian Release: 6.0.5
  APT prefers 

Bug#663246: readelf(1): Too long lines in the manual

2012-03-09 Thread Bjarni Ingi Gislason
Package: binutils
Version: 2.20.1-16
Severity: minor
Tags: patch

  From groff:

standard input:59: warning: number register `F' not defined
standard input:164: warning [p 1, 4.7i]: can't break line
standard input:351: warning [p 3, 4.0i, div `an-div', 0.0i]: can't break line

  Some minor corrections

  Patch:

--- readelf.1   2012-03-08 22:18:04.0 +
+++ readelf.1.new   2012-03-08 22:39:01.0 +
@@ -160,8 +160,13 @@
 [\fB\-p\fR number or name|\fB\-\-string\-dump=\fRnumber or name]
 [\fB\-R\fR number or name|\fB\-\-relocated\-dump=\fRnumber or name]
 [\fB\-c\fR|\fB\-\-archive\-index\fR]
-[\fB\-w[lLiaprmfFsoR]\fR|
- 
\fB\-\-debug\-dump\fR[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames\-interp,=str,=loc,=Ranges]]
+[\fB\-w\fR[\fBlLiaprmfFsoR\fR]]
+.nr lo \w''u
+.RS \n(lou
+.sp -\n(PDu / remove extra space from macro HP
+.HP 2m
+[\fB\-\-debug\-dump\fR[=rawline, =decodedline, =info, =abbrev, =pubnames, 
=aranges, =macro, =frames, =frames\-interp, =str, =loc, =Ranges]]
+.RE
 [\fB\-I\fR|\fB\-histogram\fR]
 [\fB\-v\fR|\fB\-\-version\fR]
 [\fB\-W\fR|\fB\-\-wide\fR]
@@ -236,7 +241,7 @@
 .IP \fB\-\-section\-details\fR 4
 .IX Item --section-details
 .PD
-Displays the detailed section information. Implies \fB\-S\fR.
+Displays the detailed section information.  Implies \fB\-S\fR.
 .IP \fB\-s\fR 4
 .IX Item -s
 .PD 0
@@ -342,13 +347,13 @@
 .IP \fB\-\-archive\-index\fR 4
 .IX Item --archive-index
 .PD
-Displays the file symbol index infomation contained in the header part
+Displays the file symbol index information contained in the header part
 of binary archives.  Performs the same function as the \fBt\fR
 command to \fBar\fR, but without using the \s-1BFD\s0 library.
 .IP \fB\-w[lLiaprmfFsoR]\fR 4
 .IX Item -w[lLiaprmfFsoR]
 .PD 0
-.IP 
\fB\-\-debug\-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames\-interp,=str,=loc,=Ranges]\fR
 4
+.IP \fB\-\-debug\-dump[=rawline, =decodedline, =info, =abbrev, =pubnames, 
=aranges, =macro, =frames, =frames\-interp, =str, =loc, =Ranges]\fR 4
 .IX Item 
--debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges]
 .PD
 Displays the contents of the debug sections in the file, if any are
@@ -379,10 +384,10 @@
 .IP \fB\-\-wide\fR 4
 .IX Item --wide
 .PD
-Don't break output lines to fit into 80 columns. By default
+Don't break output lines to fit into 80 columns.  By default
 \\fBreadelf\fR breaks section header and segment listing lines for
-64\-bit \s-1ELF\s0 files, so that they fit into 80 columns. This option causes
-\\fBreadelf\fR to print each section header resp. each segment one a
+64\-bit \s-1ELF\s0 files, so that they fit into 80 columns.  This option causes
+\\fBreadelf\fR to print each section header resp.\ each segment one a
 single line, which is far more readable on terminals wider than 80 columns.
 .IP \fB\-H\fR 4
 .IX Item -H

-- System Information:
Debian Release: 6.0.4
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages binutils depends on:
ii  libc6   2.11.3-2 Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.4.5-8GCC support library
ii  libstdc++6  4.4.5-8  The GNU Standard C++ Library v3
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

binutils recommends no packages.

Versions of packages binutils suggests:
pn  binutils-doc  none (no description available)

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#663251: rm(1): Unnecessary escape before = in the manual

2012-03-09 Thread Bjarni Ingi Gislason
Package: coreutils
Version: 8.5-1
Severity: minor
Tags: patch

  From groff:

standard input:16: warning: escape character ignored before `='
standard input:25: warning: escape character ignored before `='

  Patch:

--- rm.12012-03-08 23:42:47.0 +
+++ rm.1.new2012-03-08 23:44:27.0 +
@@ -13,7 +13,7 @@
 removes each specified file.  By default, it does not remove
 directories.
 .P
-If the \fI\-I\fR or \fI\-\-interactive\=once\fR option is given,
+If the \fI\-I\fR or \fI\-\-interactive=once\fR option is given,
 and there are more than three files or the \fI\-r\fR, \fI\-R\fR,
 or \fI\-\-recursive\fR are given, then
 .B rm
@@ -22,7 +22,7 @@
 .P
 Otherwise, if a file is unwritable, standard input is a terminal, and
 the \fI\-f\fR or \fI\-\-force\fR option is not given, or the
-\fI\-i\fR or \fI\-\-interactive\=always\fR option is given,
+\fI\-i\fR or \fI\-\-interactive=always\fR option is given,
 .B rm
 prompts the user for whether to remove the file.  If the response is
 not affirmative, the file is skipped.

-- System Information:
Debian Release: 6.0.4
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages coreutils depends on:
ii  libacl1   2.2.49-4   Access control list shared library
ii  libattr1  1:2.4.44-2 Extended attribute shared library
ii  libc6 2.11.3-2   Embedded GNU C Library: Shared lib
ii  libselinux1   2.0.96-1   SELinux runtime shared libraries

coreutils recommends no packages.

coreutils suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#663252: setleds(1): Unnecessary escape before + in the manual

2012-03-09 Thread Bjarni Ingi Gislason
Package: kbd
Version: 1.15.2-2
Severity: minor
Tags: patch

  From groff

standard input:62: warning: escape character ignored before `+'
standard input:68: warning: escape character ignored before `+'
standard input:74: warning: escape character ignored before `+'

  Corrected some space after full stop.

  Patch:

--- setleds.1   2012-03-09 00:02:22.0 +
+++ setleds.1.new   2012-03-09 00:03:22.0 +
@@ -15,7 +15,7 @@
 .B setleds
 prints the current settings.
 With arguments, it sets or clears the indicated flags
-(and leaves the others unchanged). The settings before
+(and leaves the others unchanged).  The settings before
 and after the change are reported if the \-v flag is given.
 .LP
 The led flag settings are specific for each VT (and the VT
@@ -36,7 +36,7 @@
 .B setleds
 will not touch the VT flags, but only change the leds.
 From this moment on, the leds will no longer reflect the VT flags
-(but display whatever is put into them). The command
+(but display whatever is put into them).  The command
 .B setleds -L
 (without further arguments) will restore the situation in which
 the leds reflect the VT flags.
@@ -44,7 +44,7 @@
 One might use
 .B setleds
 in /etc/rc to define the initial and default state of NumLock,
-e.g. by
+e.g.\ by
 .br
 .in +5m
 INITTY=/dev/tty[1-8]
@@ -59,19 +59,19 @@
 .in -5m
 .SH OPTIONS
 .TP
-\-num \+num
+\-num +num
 Clear or set NumLock.
 (At present, the NumLock setting influences the
 interpretation of keypad keys.
 Pressing the NumLock key complements the NumLock setting.)
 .TP
-\-caps \+caps
+\-caps +caps
 Clear or set CapsLock.
 (At present, the CapsLock setting complements the Shift key
 when applied to letters.
 Pressing the CapsLock key complements the CapsLock setting.)
 .TP
-\-scroll \+scroll
+\-scroll +scroll
 Clear or set ScrollLock.
 (At present, pressing the ScrollLock key (or ^S/^Q) stops/starts
 console output.)

-- System Information:
Debian Release: 6.0.4
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages kbd depends on:
ii  console-common  0.7.85   basic infrastructure for text cons
ii  console-setup   1.68+squeeze2console font and keymap setup prog
ii  libc6   2.11.3-2 Embedded GNU C Library: Shared lib
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

Versions of packages kbd recommends:
ii  console-data   2:1.10-9  keymaps, fonts, charset maps, fall
ii  console-setup  1.68+squeeze2 console font and keymap setup prog

kbd suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#663254: tgatoppm(1): Missing header macro in the manual for BUGS

2012-03-09 Thread Bjarni Ingi Gislason
Package: netpbm
Version: 2:10.0-12.2+b1
Severity: minor
Tags: patch

  From groff:

standard input:2: warning: macro `IX' not defined
standard input:48: warning: macro `BUGS' not defined

  Patch:

--- tgatoppm.1  2012-03-09 01:22:14.0 +
+++ tgatoppm.1.new  2012-03-09 01:24:03.0 +
@@ -45,7 +45,7 @@
 Causes the header information to be dumped to stderr.
 .PP
 All options can be abbreviated to their shortest unique prefix.
-.BUGS
+.SH BUGS
 Should really be in PNM, not PPM.
 
 .SH SEE ALSO

-- System Information:
Debian Release: 6.0.4
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages netpbm depends on:
ii  libc6  2.11.3-2  Embedded GNU C Library: Shared lib
ii  libjpeg62  6b1-1 The Independent JPEG Group's JPEG 
ii  libnetpbm102:10.0-12.2+b1Graphics conversion tools shared l
ii  libpng12-0 1.2.44-1+squeeze1 PNG library - runtime
ii  libtiff4   3.9.4-5+squeeze3  Tag Image File Format (TIFF) libra
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages netpbm recommends:
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF

netpbm suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#663258: psnub(1): Missing - after an escape in the manual

2012-03-09 Thread Bjarni Ingi Gislason
Package: psutils
Version: 1.17-27
Severity: minor
Tags: patch

  From groff:

standard input:128: warning: escape character ignored before `i'

  Spaces corrected after a full stop.

  Patch:

--- psnup.1 2012-03-08 21:34:51.0 +
+++ psnup.1.new 2012-03-08 21:38:06.0 +
@@ -72,13 +72,13 @@
 and
 .I \-P
 options set the input paper size, if it is different from the output
-size. This makes it easy to impose pages of one size on a different size of
+size.  This makes it easy to impose pages of one size on a different size of
 paper.
 .PP
 The
 .I \-l
 option should be used for pages which are in landscape orientation (rotated 90
-degrees anticlockwise). The
+degrees anticlockwise).  The
 .I \-r
 option should be used for pages which are in seascape orientation (rotated 90
 degrees clockwise), and the
@@ -96,7 +96,7 @@
 .PP
 A margin to leave around the whole page can be specified with the
 .I \-m
-option. This is useful for sheets of `thumbnail' pages, because the normal
+option.  This is useful for sheets of `thumbnail' pages, because the normal
 page margins are reduced by putting multiple pages on a single sheet.
 .PP
 The
@@ -107,25 +107,25 @@
 .I \-d
 option draws a line around the border of each page, of the specified width.
 If the \fIlwidth\fR parameter is omitted, a default linewidth of 1 point is
-assumed. The linewidth is relative to the original page dimensions,
+assumed.  The linewidth is relative to the original page dimensions,
 \fIi.e.\fR it is scaled down with the rest of the page.
 .PP
 The scale chosen by
 .I psnup
 can be overridden with the
 .I \-s
-option. This is useful to merge pages which are already reduced.
+option.  This is useful to merge pages which are already reduced.
 .PP
 The
 .I \-\fInup\fR
-option selects the number of logical pages to put on each sheet of paper. This
+option selects the number of logical pages to put on each sheet of paper.  This
 can be any whole number;
 .I psnup
-tries to optimise the layout so that the minimum amount of space is wasted. If
+tries to optimise the layout so that the minimum amount of space is wasted.  If
 .I psnup
 cannot find a layout within its tolerance limit, it will abort with an error
-message. The alternative form
-.I \i \fInup\fR
+message.  The alternative form
+.I \-i \fInup\fR
 can also be used, for compatibility with other n-up programs.
 .PP
 .I Psnup

-- System Information:
Debian Release: 6.0.4
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages psutils depends on:
ii  libc6 2.11.3-2   Embedded GNU C Library: Shared lib
ii  libpaper1 1.1.24 library for handling paper charact

Versions of packages psutils recommends:
ii  ghostscript 8.71~dfsg2-9 The GPL Ghostscript PostScript/PDF

psutils suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#663260: time(1): Correcting some escapes (\t and \n') in the manual

2012-03-09 Thread Bjarni Ingi Gislason
Package: time
Version: 1.7-23.1
Severity: minor
Tags: patch

  From groff:

standard input:162: warning: number register `'' not defined

  Correcting some space.

  Correcting \t.

  Patch:

--- time.1  2012-03-09 01:32:47.0 +
+++ time.1.new  2012-03-09 01:43:33.0 +
@@ -96,7 +96,7 @@
 .TP
 .BR \-a ,  \-\-append 
 Append the resource use information to the output file instead of overwriting
- it.  This option is only useful with the `-o' or `--output' option.   
+ it.  This option is only useful with the `-o' or `--output' option.
 .TP
 .BI \-f  FORMAT,  \-\-format  FORMAT 
 Use 
@@ -159,7 +159,7 @@
 .B time 
 always prints a newline after printing the resource use
 information, so normally format strings do not end with a newline
-character (or `\n').   
+character (or `\en').   
 
 There are many resource specifications.  Not all resources are
 measured by all versions of Unix, so some of the values might be
@@ -196,7 +196,7 @@
 Number of file system outputs by the process.   
 .IP P
 Percentage of the CPU that this job got.  This is just user +
-system times divided by the total running time. It also prints 
+system times divided by the total running time.  It also prints
 a percentage sign.
 .IP R
 Number of minor, or recoverable, page faults.  These are pages
@@ -244,20 +244,20 @@
 
 To run the command `ls -Fs' and show just the user, system, and total
 time:
- time -f \t%E real,\t%U user,\t%S sys ls -Fs
+ time -f \et%E real,\et%U user,\et%S sys ls -Fs
 
 To edit the file BORK and have `time' append the elapsed time and
 number of signals to the file `log', reading the format string from the
 environment variable `TIME':
- export TIME=\t%E,\t%k # If using bash or ksh
- setenv TIME \t%E,\t%k # If using csh or tcsh
- time -a -o log emacs bork 
+ export TIME=\et%E,\et%k # If using bash or ksh
+ setenv TIME \et%E,\et%k # If using csh or tcsh
+ time -a -o log emacs bork
 
 Users of the 
 .B bash
 shell need to use an explicit path in order to run the external 
 .B time
-command and not the shell builtin variant. On system where 
+command and not the shell builtin variant.  On system where
 .B time 
 is installed in
 .IR /usr/bin ,
@@ -306,12 +306,12 @@
 command returns when the program exits, stops, or is terminated by a signal.
 If the program exited normally, the return value of 
 .B time
-is the return value of the program it executed and measured. Otherwise, the
+is the return value of the program it executed and measured.  Otherwise, the
 return value is 128 plus the number of the signal which caused the program to
 stop or terminate. 
 .SH AUTHOR
 .B time
-was written by David MacKenzie. This man page was added by Dirk Eddelbuettel
+was written by David MacKenzie.  This man page was added by Dirk Eddelbuettel
 e...@debian.org, the Debian GNU/Linux maintainer, for use by the Debian
 GNU/Linux distribution but may of course be used by others.
 
-- System Information:
Debian Release: 6.0.4
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages time depends on:
ii  libc6 2.11.3-2   Embedded GNU C Library: Shared lib

time recommends no packages.

time suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#663251: rm(1): Unnecessary escape before = in the manual

2012-03-14 Thread Bjarni Ingi Gislason
On Sat, Mar 10, 2012 at 12:46:36AM +0100, Benoît Knecht wrote:
 Hi Bjarni,
 
 Bjarni Ingi Gislason wrote:
From groff:
  
  standard input:16: warning: escape character ignored before `='
  standard input:25: warning: escape character ignored before `='
  
Patch:
  
  --- rm.12012-03-08 23:42:47.0 +
  +++ rm.1.new2012-03-08 23:44:27.0 +
  @@ -13,7 +13,7 @@
  [...]
 
 rm.1 is generated at build time by man/help2man from the output of
 'rm --help' and the contents of man/rm.x (all paths relative to the
 topmost directory in the coreutils tarball).
 
 Can you resend a patch against man/rm.x instead?
 
--- rm.x2012-03-10 20:46:31.0 +
+++ rm.x.new2012-03-10 20:47:28.0 +
@@ -14,7 +14,7 @@
 removes each specified file.  By default, it does not remove
 directories.
 .P
-If the \fI\-I\fR or \fI\-\-interactive\=once\fR option is given,
+If the \fI\-I\fR or \fI\-\-interactive=once\fR option is given,
 and there are more than three files or the \fI\-r\fR, \fI\-R\fR,
 or \fI\-\-recursive\fR are given, then
 .B rm
@@ -23,7 +23,7 @@
 .P
 Otherwise, if a file is unwritable, standard input is a terminal, and
 the \fI\-f\fR or \fI\-\-force\fR option is not given, or the
-\fI\-i\fR or \fI\-\-interactive\=always\fR option is given,
+\fI\-i\fR or \fI\-\-interactive=always\fR option is given,
 .B rm
 prompts the user for whether to remove the file.  If the response is
 not affirmative, the file is skipped.

-- 
Bjarni I. Gislason



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



Bug#664011: tar(1): Unnecessary escape before + in the manual

2012-03-14 Thread Bjarni Ingi Gislason
Package: tar
Version: 1.23-3
Severity: minor
Tags: patch

  From groff:

standard input:59: warning: escape character ignored before `='
...
standard input:153: warning: escape character ignored before `='
mdoc warning: Empty input line #156
mdoc warning: Empty input line #158
standard input:169: warning: escape character ignored before `='
standard input:169: warning: escape character ignored before `='
standard input:169: warning: escape character ignored before `='
standard input:169: warning: escape character ignored before `='
standard input:169: warning: escape character ignored before `='
mdoc warning: Empty input line #172
mdoc warning: Empty input line #174
mdoc warning: Empty input line #176
standard input:181: warning: escape character ignored before `='
...
standard input:297: warning: escape character ignored before `='
mdoc warning: Empty input line #310
mdoc warning: Empty input line #312

  Patch is in the attacement

-- System Information:
Debian Release: 6.0.4
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages tar depends on:
ii  libc6 2.11.3-2   Embedded GNU C Library: Shared lib

tar recommends no packages.

Versions of packages tar suggests:
ii  bzip2   1.0.5-6+squeeze1 high-quality block-sorting file co
pn  ncompress   none   (no description available)
ii  xz-utils5.0.0-2  XZ-format compression utilities

-- no debconf information

-- 
Bjarni I. Gislason


tar.1.diff.gz
Description: application/gunzip


Bug#664015: top(1): Unnecessary escape before and in the manual

2012-03-14 Thread Bjarni Ingi Gislason
Package: procps
Version: 1:3.2.8-9
Severity: minor
Tags: patch

  From groff:

standard input:608: warning: escape character ignored before `'
standard input:617: warning: escape character ignored before `'
... (91 more lines)

  Some space corrected.

  Patch is in the attachment.

-- System Information:
Debian Release: 6.0.4
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages procps depends on:
ii  initscripts 2.88dsf-13.1 scripts for initializing and shutt
ii  libc6   2.11.3-2 Embedded GNU C Library: Shared lib
ii  libncurses5 5.7+20100313-5   shared libraries for terminal hand
ii  libncursesw55.7+20100313-5   shared libraries for terminal hand
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

Versions of packages procps recommends:
ii  psmisc22.11-1utilities that use the proc file s

procps suggests no packages.

-- Configuration Files:
/etc/sysctl.conf changed [not included]

-- no debconf information

-- 
Bjarni I. Gislason


top.1.diff.gz
Description: application/gunzip


Bug#661035: manual of rm, unneccesary escapes for =

2012-02-23 Thread Bjarni Ingi Gislason
Package: coreutils
Version: 8.5-1
Severity: minor

  groff reports:

standard input:16: warning: escape character ignored before `='
standard input:25: warning: escape character ignored before `='

  Patch:

--- rm.12012-02-21 23:36:02.0 +
+++ rm_new.12012-02-22 01:11:02.0 +
@@ -13,7 +13,7 @@
 removes each specified file.  By default, it does not remove
 directories.
 .P
-If the \fI\-I\fR or \fI\-\-interactive\=once\fR option is given,
+If the \fI\-I\fR or \fI\-\-interactive=once\fR option is given,
 and there are more than three files or the \fI\-r\fR, \fI\-R\fR,
 or \fI\-\-recursive\fR are given, then
 .B rm
@@ -22,7 +22,7 @@
 .P
 Otherwise, if a file is unwritable, standard input is a terminal, and
 the \fI\-f\fR or \fI\-\-force\fR option is not given, or the
-\fI\-i\fR or \fI\-\-interactive\=always\fR option is given,
+\fI\-i\fR or \fI\-\-interactive=always\fR option is given,
 .B rm
 prompts the user for whether to remove the file.  If the response is
 not affirmative, the file is skipped.

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages coreutils depends on:
ii  libacl1   2.2.49-4   Access control list shared library
ii  libattr1  1:2.4.44-2 Extended attribute shared library
ii  libc6 2.11.3-2   Embedded GNU C Library: Shared lib
ii  libselinux1   2.0.96-1   SELinux runtime shared libraries

coreutils recommends no packages.

coreutils suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#661039: libpam-runtime: manual of pam_getenv(8), eliminating a warning from groff

2012-02-23 Thread Bjarni Ingi Gislason
Package: libpam-runtime
Version: 1.1.1-6.1+squeeze1
Severity: minor

  Warning from groff:

standard input:51: warning: number register `F' not defined

  Patch:

--- pam_getenv.82012-02-22 02:54:34.0 +
+++ pam_getenv_new.82012-02-22 03:00:31.0 +
@@ -48,16 +48,16 @@
 .\ titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
 .\ entries marked with X in POD.  Of course, you'll have to process the
 .\ output yourself in some meaningful fashion.
-.ie \nF \{\
+.de IX
+..
+.if r F \{\
+.  if \nF \{\
 .de IX
 .tm Index:\\$1\t\\n%\t\\$2
 ..
 .nr % 0
 .rr F
-.\}
-.el \{\
-.de IX
-..
+.  \}
 .\}
 .\
 .\ Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).


-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages libpam-runtime depends on:
ii  debconf   1.5.36.1   Debian configuration management sy
ii  libpam-modules1.1.1-6.1+squeeze1 Pluggable Authentication Modules f

libpam-runtime recommends no packages.

libpam-runtime suggests no packages.

-- debconf information excluded

-- 
Bjarni I. Gislason



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



Bug#661041: libc-bin: manual of locale(1), some warnings from groff

2012-02-23 Thread Bjarni Ingi Gislason
Package: libc-bin
Version: 2.11.3-2
Severity: minor

  Warnings from groff:

standard input:33: warning: macro `Tr' not defined
standard input:56: warning: number register `F' not defined
standard input:132: warning: macro `IX' not defined

  Tr should be a string.  IX is only defined, if F exists
and is greater then zero.

  Patch:

--- locale.12012-02-22 02:03:06.0 +
+++ locale_new.12012-02-22 03:14:31.0 +
@@ -30,7 +30,7 @@
 .\ real vertical bar.  \*(C+ will give a nicer C++.  Capital omega is used to
 .\ do unbreakable dashes and therefore won't be available.  \*(C` and \*(C'
 .\ expand to `' in nroff, nothing in troff, for use with C.
-.tr \(*W-|\(bv\*(Tr
+.tr \(*W-|\(bv
 .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
 .ie n \{\
 .ds -- \(*W-
@@ -53,12 +53,16 @@
 .\ titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
 .\ entries marked with X in POD.  Of course, you'll have to process the
 .\ output yourself in some meaningful fashion.
-.if \nF \{\
+.de IX
+..
+.if r F \{\
+.  if \nF \{\
 .de IX
 .tm Index:\\$1\t\\n%\t\\$2
 ..
 .nr % 0
 .rr F
+.  \}
 .\}
 .\
 .\ For nroff, turn off justification.  Always turn off hyphenation; it makes

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

-- no debconf information

-- 
Bjarni I. Gislason



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



Bug#661186: man-db: man -l can not find a sourced file in a manual file

2012-02-24 Thread Bjarni Ingi Gislason
Package: man-db
Version: 2.5.7-8
Severity: normal

  Example is

export MAN_KEEP_STDERR=y
cd /usr/share/man/man7
man -l --warnings=w bash-builtins.7.gz

/usr/bin/man: can't open man1/bash.1: No such file or directory
/usr/bin/man: -:15: warning: failed .so request
standard input:16: can't open `man1/bash.1': No such file or directory
 
  bash-builtins.7 contains:
...
.SH BASH BUILTIN COMMANDS
.nr zZ 1
.so man1/bash.1
.SH SEE ALSO
bash(1), sh(1)

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages man-db depends on:
ii  bsdmainutils8.0.13   collection of more utilities from 
ii  debconf [debconf-2.0]   1.5.36.1 Debian configuration management sy
ii  dpkg1.15.8.12Debian package management system
ii  groff-base  1.20.1-10GNU troff text-formatting system (
ii  libc6   2.11.3-2 Embedded GNU C Library: Shared lib
ii  libgdbm31.8.3-9  GNU dbm database routines (runtime
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

man-db recommends no packages.

Versions of packages man-db suggests:
ii  groff 1.20.1-10  GNU troff text-formatting system
ii  iceweasel [www-browser]   3.5.16-12  Web browser based on Firefox
ii  less  436-1  pager program similar to more

-- Configuration Files:
/etc/cron.daily/man-db changed [not included]
/etc/cron.weekly/man-db changed [not included]

-- debconf information excluded

-- 
Bjarni I. Gislason



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



Bug#649201: console-setup: ckbcomp transforms dead_abovering wrongly

2011-11-18 Thread Bjarni Ingi Gislason
Package: console-setup
Version: 1.68+squeeze2
Severity: normal

  ckbcomp translates dead_abovering to * (asterisk, 0x2A)
instead of ° (degree, 0xB0).

  Line in /usr/share/X11/xkb/symbols/is:

key AD11  { [   eth,ETH, dead_diaeresis, dead_abovering ] };

[   There are some errors in the position of characters in this
file (separate bug report). ]


  Line in cached.kmap:

keycode 26 = +0xf0 +0xd0 dead_diaeresis 0x2a dead_diaeresis dead_diaeresis ...

  Compose-lines must be added to
/etc/console-setup/compose.ISO-8859-1.inc:

compose '°' 'a' to 'å'
compose '°' 'A' to 'Å'

  Variables used by ckbcomp:

CHARMAP=ISO-8859-1

acm_option=-charmap $CHARMAP
rules_option=''

XKBMODEL=pc105
XKBLAYOUT=is
XKBVARIANT=
XKBOPTIONS=compose:menu

  The name of the code 0xB0 is RING ABOVE, DEGREE SIGN in
ISO 8859-1:1987, but DEGREE SIGN in Unicode, as the name RING
ABOVE has a separate code there.


-- System Information:
Debian Release: 6.0.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35squeeze2
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup depends on:
ii  console-terminus   4.30-2Fixed-width fonts for fast reading
ii  debconf1.5.36.1  Debian configuration management sy
ii  keyboard-configuration 1.68+squeeze2 system-wide keyboard preferences
ii  xkb-data   1.8-2 X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  kbd   1.15.2-2   Linux console font and keytable ut

Versions of packages console-setup suggests:
ii  locales 2.11.2-10Embedded GNU C Library: National L
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip

-- debconf information excluded

-- debsums errors found:
debsums: changed file /bin/setupcon (from console-setup package)
debsums: changed file /usr/share/consoletrans/ISO-8859-1.acm.gz (from 
console-setup package)

-- 
Bjarni I. Gislason



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



Bug#649519: symbols/is: Some corrections and additions to the keymap

2011-11-21 Thread Bjarni Ingi Gislason
Package: xkb-data
Version: 1.8-2
Severity: normal

  The nobreakspace line could be in the latin file.

--- /usr/share/X11/xkb/symbols/is   2011-11-12 00:23:00.0 +
+++ /usr/share/X11/xkb/symbols/is.new   2011-11-21 16:25:58.0 +
@@ -5,6 +5,10 @@
 // fixes by Olafur Osvaldsson - o...@isnic.is
 //
 // $XFree86: xc/programs/xkbcomp/symbols/is,v 1.3 2002/11/26 01:57:25 dawes 
Exp $
+// Corrected according to the Icelandic standard for keyboards,
+// IST 125:1995.  Some positions are according to ISO/IEC 9995-3:1994
+// Added nobreakspace
+// Changed some symbols to dead diacritics.
 
 default partial alphanumeric_keys
 xkb_symbols basic {
@@ -13,21 +17,27 @@
 
 name[Group1]=Iceland;
 
+//  AE00 = TLDE
+key AE00  { [dead_abovering, dead_diaeresis, notsign,hyphen ] };
 key AE02 { [ 2,   quotedbl,  twosuperior,oneeighth ] };
 key AE04 { [ 4, dollar,   onequarter, currency ] };
 key AE11 { [odiaeresis, Odiaeresis,backslash, questiondown ] };
-key AE12 { [ minus, underscore, ccedilla,  dead_ogonek ] };
+key AE12 { [ minus, underscore, dead_cedilla,  dead_ogonek ] };
 
 key AD11 { [   eth,ETH, dead_diaeresis, dead_abovering ] };
-key AD12 { [apostrophe,   question,   asciitilde,  dead_macron ] };
+key AD12 { [apostrophe,   question,   dead_tilde,  dead_macron ] };
 
 key AC10 { [ae, AE,  asciicircum, dead_doubleacute ] };
-key AC11 { [dead_acute, dead_circumflex, dead_circumflex ] };
-key TLDE { [degree,  diaeresis,  notsign,  notsign ] };
+key AC11 { [dead_acute, dead_acute, dead_circumflex,dead_caron ] };
+//  key TLDE { [dead_abovering,  dead_diaeresis,  notsign,  hyphen ] 
};
+//  AC12 = BKSL
+key AC12 { [  plus,   asterisk,   dead_grave,   dead_breve ] };
 
-key BKSL { [  plus,   asterisk,grave,   dead_breve ] };
+//  AB00 = LSGT, is in file pc: pc105
 key AB10 { [ thorn,  THORN, dead_belowdot, dead_abovedot ] };
 
+key SPCE  { [ space,  space,  nobreakspace, nobreakspace ] };
+
 include level3(ralt_switch)
 };
 

-- System Information:
Debian Release: 6.0.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-35squeeze2
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/X11/xkb/symbols/is (from xkb-data package)

-- 
Bjarni I. Gislason



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



Bug#649519: symbols/is: Some corrections and additions to the keymap

2011-11-22 Thread Bjarni Ingi Gislason
On Mon, Nov 21, 2011 at 10:21:54PM +0100, Julien Cristau wrote:
 On Mon, Nov 21, 2011 at 20:36:03 +, Bjarni Ingi Gislason wrote:
 
  Package: xkb-data
  Version: 1.8-2
  Severity: normal
  
The nobreakspace line could be in the latin file.
  
 Could you report this at
 https://bugs.freedesktop.org/enter_bug.cgi?product=xkeyboard-configcomponent=General
 and attach your patch there?  Then let us know the upstream bug number
 so we can track it.
 
  The bug number is 43173

-- 
Bjarni I. Gislason



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



Bug#661838: manual of pkg-config: fixing some warnings from groff

2012-03-01 Thread Bjarni Ingi Gislason
Package: pkg-config
Version: 0.25-1.1
Severity: normal

  Warnings form groff:

standard input:14: warning: number register `.oldwarn' not defined
standard input:58: warning: macro `I/usr/lib/pkgconfig,' not defined
standard input:60: warning: macro `I/usr/local/share/pkgconfig' not defined
standard input:154: warning: macro `I.pc' not defined
standard input:206: warning: macro `I-Lx:/some/path' not defined

  Number registers in the definition of macros should usually be
escaped, so current value is used when they are called.

  Patch:

--- pkg-config.12012-02-24 02:13:18.0 +
+++ pkg-config_new.12012-02-24 02:23:36.0 +
@@ -7,11 +7,11 @@
 .\ fix in the text.
 .ie \n(.g \{\
 .  de DW
-.nr .oldwarn \n[.warn]
+.nr .oldwarn \\n[.warn]
 .warn 0
 .  .
 .  de EW
-.warn \n[.oldwarn]
+.warn \\n[.oldwarn]
 .  .
 .\}
 .el \
@@ -55,10 +55,10 @@
 files. These files are named after the package, and has a
 .I .pc
 extension.  On most systems, \fIpkg-config\fP looks in
-.I/usr/lib/pkgconfig, /usr/share/pkgconfig, /usr/local/lib/pkgconfig
+.I /usr/lib/pkgconfig, /usr/share/pkgconfig, /usr/local/lib/pkgconfig
 and
-.I/usr/local/share/pkgconfig
- for these files.  It will additionally look in the colon-separated
+.I /usr/local/share/pkgconfig
+for these files.  It will additionally look in the colon-separated
 (on Windows, semicolon-separated) list of directories specified by the
 PKG_CONFIG_PATH environment variable.
 .PP
@@ -151,7 +151,7 @@
 .TP
 .I --define-variable=VARIABLENAME=VARIABLEVALUE
 This sets a global value for a variable, overriding the value in any
-.I.pc
+.I .pc
 files. Most packages define the variable prefix, for example, so you
 can say:
 .nf
@@ -203,7 +203,7 @@
 This option is available only on Windows. It causes \fIpkg-config\fP
 to output -l and -L flags in the form recognized by the Microsoft
 Visual C++ command-line compiler, \fIcl\fP. Specifically, instead of
-.I-Lx:/some/path
+.I -Lx:/some/path
 it prints \fI/libpath:x/some/path\fP, and instead of \fI-lfoo\fP it
 prints \fIfoo.lib\fP. Note that the --libs output consists of flags
 for the linker, and should be placed on the cl command line after a

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: i386 (i586)

Kernel: Linux 2.6.32-41
Locale: LANG=is_IS, LC_CTYPE=is_IS (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages pkg-config depends on:
ii  libc6 2.11.3-2   Embedded GNU C Library: Shared lib
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libpopt0  1.16-1 lib for parsing cmdline parameters

pkg-config recommends no packages.

pkg-config suggests no packages.

-- no debconf information

-- 
Bjarni I. Gislason



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



  1   2   3   4   5   6   7   8   >