Bug#614730: Picasa uploader does not encode titles correctly

2011-02-22 Thread Ben Hutchings
Package: shotwell
Version: 0.8.1-1
Severity: normal

I found that uploading photos with titles containing the characters
'&' or 'ö' failed.  After uploading, Shotwell reports it received a
'400 Bad Request' error, and the photo is not visible on the web site.

Ben.

-- System Information:
Debian Release: wheezy/sid
  APT prefers oldstable-proposed-updates
  APT policy: (500, 'oldstable-proposed-updates'), (500, 'unstable'), (1, 
'experimental')
Architecture: i386 (x86_64)

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

Versions of packages shotwell depends on:
ii  dbus-x11   1.4.1-2   simple interprocess messaging syst
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libc6  2.11.2-11 Embedded GNU C Library: Shared lib
ii  libcairo2  1.10.2-2  The Cairo 2D vector graphics libra
ii  libdbus-1-31.4.1-2   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.88-2.1  simple interprocess messaging syst
ii  libexif12  0.6.19-1  library to parse EXIF files
ii  libexiv2-9 0.20-2EXIF/IPTC metadata manipulation li
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.4.2-2.1 FreeType 2 font engine, shared lib
ii  libgcc11:4.4.5-12GCC support library
ii  libgconf2-42.28.1-6  GNOME configuration database syste
ii  libgee20.5.2-1   GObject based collection library
ii  libgexiv2-00.1.0-1+b1GObject-based wrapper around the E
ii  libglib2.0-0   2.28.0-1  The GLib library of C routines
ii  libgphoto2-2   2.4.6-3   gphoto2 digital camera library
ii  libgphoto2-port0   2.4.6-3   gphoto2 digital camera port librar
ii  libgstreamer0.10-0 0.10.30-1 Core GStreamer libraries and eleme
ii  libgtk2.0-02.20.1-2  The GTK+ graphical user interface 
ii  libgudev-1.0-0 166-1 GObject-based wrapper library for 
ii  libjson-glib-1.0-0 0.10.2-2  GLib JSON manipulation library
ii  libpango1.0-0  1.28.3-1+squeeze1 Layout and rendering of internatio
ii  librsvg2-common2.26.3-1  SAX-based renderer library for SVG
ii  libsoup2.4-1   2.30.2-1  an HTTP library implementation in 
ii  libsqlite3-0   3.7.4-2   SQLite 3 shared library
ii  libstdc++6 4.4.5-12  The GNU Standard C++ Library v3
ii  libunique-1.0-01.1.6-2   Library for writing single instanc
ii  libusb-0.1-4   2:0.1.12-17   userspace USB programming library
ii  libwebkit-1.0-21.2.6-2   Web content engine library for Gtk
ii  libxml22.7.8.dfsg-2  GNOME XML library

shotwell recommends no packages.

shotwell suggests no packages.

-- no debconf information



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



Bug#533090: Acknowledgement (xserver-xorg-video-intel: X server crashed, now virtual consoles not working)

2011-02-22 Thread Sanjoy Mahajan
I haven't seen the GPU hang recently (running testing/unstable).
Instead when it crashes after S3 resume, the screen is off but the
backlight is on (and the GPU s otherwise working fine).  See Bug#525619.



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



Bug#614731: multiarch support for debhelper

2011-02-22 Thread Wookey
Package: debhelper
Version: 8.1.2

Multiarch support is (finally!) coming along nicely in both Ubuntu and
Debian. (see https://launchpad.net/~vorlon/+archive/multiarch )

I'm not sure how closely you've been following the multiarch work, but
it provides the ability to cleanly install libraries of multiple
architectures. The multiarch-cross spec extension provides the
functionality to use this for cross-building and resolving
cross-dependencies.

https://wiki.ubuntu.com/MultiarchSpec
https://wiki.ubuntu.com/MultiarchCross

We've been testing this work for use on armhf and armel and have come
up with a nice patch for debhelper which makes the conversion of
packages to be multiarch compliant very straighforward.

We hope it meets with your approval.

All library packages (and -dev packages) will need to be
'multiarchified' over time, so making this as easy as possible for
maintainers is good.

To convert a package the following is necessary:
* all multiarch packages will need to be compat 8 and build-depend on debhelper 
>> 8.1.2
* debian/control gets the Multi-Arch fields added to relevant binary stanzas
* debian/*.install files get modified, individually, with a token which
debhelper can replace with the triplet.
* export DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
added to debian/rules (and tokens added as required) 
* The patch (from Daniel Silverstone), applied to debhelper (so that it
can expand the token ${DEB_HOST_MULTIARCH})

Here is an example package, converted using the suggested patch:
http://www.emdebian.org/trac/browser/current/multiarch/p/popt/trunk/debian

http://ftp.uk.debian.org/emdebian-multiarch/pool/main/p/popt/

This has been tested inside a chroot with modified, experimental,
versions of dpkg and lsb-base using vorlon's patches. These packages
are available in the above emdebian-multiarch repository (although
possibly only for amd64 but sources are included).

The resulting packages cross-build in a MultiArch manner easily.

Patch:
Index: Debian/Debhelper/Dh_Lib.pm
===
--- Debian/Debhelper/Dh_Lib.pm  (revision 7813)
+++ Debian/Debhelper/Dh_Lib.pm  (working copy)
@@ -617,6 +617,10 @@
next if /^#/ || /^$/;
}
my @line;
+   # Only expand ${...} environment vars in v8
+   if (! compat(7)) {
+   s#\$\{([^\}]+)\}#$ENV{$1}#g;
+   }
# Only do glob expansion in v3 mode.
#
# The tricky bit is that the glob expansion is done


Wookey
-- 
Principal hats:  Linaro, Emdebian, Wookware, Balloonboard, ARM
http://wookware.org/



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



Bug#614732: ntfsprogs: dead link in man page

2011-02-22 Thread Rustom Mody
Package: ntfsprogs
Version: 2.0.0-1+b1
Severity: normal

The ntfsclone man page lists
http://wiki.linux-ntfs.org/doku.php?id=ntfsclone
which seems to be a dead link



-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages ntfsprogs depends on:
ii  fuse-utils2.8.4-1.1  Filesystem in USErspace (utilities
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libfuse2  2.8.4-1.1  Filesystem in USErspace library
ii  libntfs10 2.0.0-1+b1 library that provides common NTFS 
ii  libuuid1  2.17.2-9   Universally Unique ID library

ntfsprogs recommends no packages.

ntfsprogs suggests no packages.

-- no debconf information



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



Bug#614601: ITP: libsafewrite -- Simple functions for performing safe atomic replacement of files

2011-02-22 Thread Shachar Shemesh

On 22/02/11 19:54, Ben Hutchings wrote:



Judging by what you consider 'small bugs' in

why should anyone trust their important data to this library?

   
Feel free not to use it/file bugs against it. Giving feedback over the 
upstream trustworthiness is not the purpose of ITP bugs, and I have been 
warned by the list masters that discussing a specific package's upstream 
bugs on Debian-devel is off topic.

I quickly reviewed the code and found:
   

Did you read the accompanying manual pages first?

safe_open() might not return correct error codes, since the library
and system calls in its cleanup code may overwrite the original error
code.
   

Thank you for your input. I'll fix it.

It uses a fixed extension for the temporary file name, and unlinks
whatever was there before; this could be a security flaw.
   
The matter has been discussed before. If you have a specific scenario 
where this will cause a security flaw, please feel free to file a bug or 
contact me directly. Pending that happening, my analysis is that there 
is no security flaw in that case.

It doesn't check for failure of fstat() (this is unlikely but possible,
e.g. when using a network filesystem).
   

Interesting point. I'll have to think about it.

Copying setuid and setgid bits to an empty file is pointless, since
they are cleared by write() (this is a good thing!).
   
Frankly, I was not aware of this. I could not find it documented in the 
man pages. In any case, this is no regression from the non-safe_open 
case, as these would get cleared on write either way. If this is a Linux 
only feature, I'm actually inclined to leave the code in (which is why I 
needed the manual pages).

safe_close() doesn't actually close the file or free the 'context' if
fsync() fails.  This is inconsistent with close().
   
But consistent with what the man page says about it. The alternative is 
to not allow the user to retry saving the file's content, which I don't 
see as preferable.


Thank you for your feedback.
Shachar

--
Shachar Shemesh
Lingnu Open Source Consulting Ltd.
http://www.lingnu.com




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



Bug#610441: file /etc/xpdf/includes missing

2011-02-22 Thread Luis Mochan
I found the same problem after my upgrade from lenny to squeeze, 
although I do have both poppler-data and xpdf installed in squeeze. I 
solved it by reinstalling poppler-data.

Best regards,
Luis Mochán



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



Bug#614733: [fbreader] ability to use condensed fonts

2011-02-22 Thread ras
Package: fbreader
Version: 0.10.7dfsg-4
Severity: wishlist

Font selection combo box in the FBReader options doesn't allow one to select 
condensed versions of the font, say, DejaVu Serif Condensed (which I 
personally like). To use one of these fonts, one must manually edit 
~/.FBReader/ui.xml. I wish that it would be possible to select ANY font 
available to the system, either by making the combo box editable or in any 
other way.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.36-trunk-amd64

Debian Release: 6.0
  500 stable  security.debian.org 
  500 stable  ftp.de.debian.org 
  500 proposed-updates ftp.de.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-===
libc6 (>= 2.2.5) | 2.11.2-10
libgcc1 (>= 1:4.1.1) | 1:4.4.5-8
libstdc++6(>= 4.1.1) | 4.4.5-8
libzlcore0.10| 0.10.7dfsg-4
libzltext0.10| 0.10.7dfsg-4
libzlui-qt4   (>= 0.10.7dfsg-4)  | 0.10.7dfsg-4
 OR libzlui-gtk   (>= 0.10.7dfsg-4)  | 
 OR libzlui-qt(>= 0.10.7dfsg-4)  | 
 OR libzlui-maemo  (>= 0.10.7dfsg-4) | 


Package's Recommends field is empty.

Package's Suggests field is empty.






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



Bug#614734: libc6.1-dev: #include from gcc on a DEC Alpha does not declare function `round'

2011-02-22 Thread Wayne Rossberg
Package: libc6.1-dev
Version: 2.7-18lenny7
Severity: normal


When compiling the file test.c containing:

#include 

double test(double x)
{
   return round(x);
}

using gcc 4.2.4-6 on a DEC Alpha machine produces the following result:

test.c In function `test':
test.c:5: warning: incompatible implicit declaration of built-in 
function `round'

Upon examining the output from the command (i.e., the file temp.tmp):

gcc -E -o temp.tmp test.c

There is no declaration of the `round' function yet, as far as I can 
determine, such a declaration should be present because it is in 
/usr/include/math.h via the include of /usr/include/bits/mathcalls.h.

If I put an explicit declaration for `round' in test.c, no warning is 
reported.

-- System Information:
Debian Release: 5.0.8
  APT prefers oldstable
  APT policy: (500, 'oldstable')
Architecture: alpha

Kernel: Linux 2.6.26-2-alpha-generic
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libc6.1-dev depends on:
ii  libc6.1  2.7-18lenny7GNU C Library: Shared libraries
ii  linux-libc-dev   2.6.26-26lenny2 Linux support headers for userspac

Versions of packages libc6.1-dev recommends:
ii  gcc [c-compiler]  4:4.2.4-5  The GNU C compiler
ii  gcc-4.2 [c-compiler]  4.2.4-6The GNU C compiler
ii  gcc-4.3 [c-compiler]  4.3.2-1.1  The GNU C compiler

Versions of packages libc6.1-dev suggests:
ii  glibc-doc   2.7-18lenny7 GNU C Library: Documentation
pn  manpages-dev   (no description available)

-- no debconf information



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



Bug#608782: x server failed

2011-02-22 Thread Edgar Vargas
2011/2/22, Cyril Brulebois :
> Hi Edgar,
>
> Edgar Vargas  (04/01/2011):
>> x server failed when i was working, sometimes one or two hour after,
>> please, help me...
>
> please see the FAQ entry about intel video driver:
>   http://pkg-xorg.alioth.debian.org/faq/general.html
>
> We can't do much more than providing with a workaround for now.
>
> KiBi.

Thanks, i am reading it, i will try it

>


-- 
Edguit@r:
http://cybernautape.blogspot.com/



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



Bug#614665: rmdir: failed to remove `/lib/modules/2.6.32-3-686': Directory not empty

2011-02-22 Thread boss ganesh
hi,

This is not the major problem. The one or two modules are not removed from
the folder 2.6.32-3-686.
You could check the status of the linux-image , it will show it is removed
completely

#dpkg -l linux-image*


On Wed, Feb 23, 2011 at 3:23 AM,  wrote:

> Package: linux-image-686
>
> rmdir: failed to remove `/lib/modules/2.6.32-3-686': Directory not empty
> dpkg: warning: while removing linux-image-2.6.32-3-686, directory
> '/lib/modules/2.6.32-3-686' not empty so not removed.
>
> # cat /lib/modules/2.6.32-3-686/modules.softdep
> # Soft dependencies extracted from modules themselves.
> # Copy, with a .conf extension, to /etc/modprobe.d to use it with modprobe.
>
>
>
> --
> To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmas...@lists.debian.org
> Archive: http://lists.debian.org/87y657u477@jidanni.org
>
>


-- 
bossganesh
BOSSTeam
CDAC


Bug#614735: nyquist: Please support other 32bit architecture (armhf, powerpcspe, sh4 and other)

2011-02-22 Thread Nobuhiro Iwamatsu
Package: nyquist
Version: 3.04b-4
Severity: wishlist
User: debian-...@superh.org
Usertags: sh4

Hi,

Some 32bit architectures are working on debina-ports.
  http://buildd.debian-ports.org/stats/

armhf, powerpcspe, avr32, m68k and sh4 are 32bit architecture.
Could you add these to support architecture.

I checked build package on sh4 and armhf.

Best regards,
  Nobuhiro

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

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



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



Bug#614736: nouveau: system freeze, FX5500 256 MB

2011-02-22 Thread Jonas Stein
Package: xserver-xorg-video-nouveau
Version: 1:0.0.15+git20100329+7858345-5
Severity: important
File: nouveau


after starting X system freezes. No reaction on keyboard, no ssh, 
no ping, blank screen.


  Model: "nVidia GeForce FX 5500"
  Vendor: pci 0x10de "nVidia Corporation"
  Device: pci 0x0326 "GeForce FX 5500"
  Revision: 0xa1
  Driver: "nouveau"
  Driver Modules: "drm"

hwinfo --monitor
34: None 00.1: 10002 LCD Monitor
  [Created at monitor.95]
  Unique ID: jyhG.UI_S+8FFyQ3
  Hardware Class: monitor
  Model: "EIZO S2433W"
  Vendor: ENC "EIZO"
  Device: eisa 0x2111 "S2433W"
  Serial ID: "52404060"
  Resolution: 720x400@70Hz
  Resolution: 640x480@60Hz
  Resolution: 800x600@60Hz
  Resolution: 1024x768@60Hz
  Resolution: 1600x1200@60Hz
  Resolution: 1280x1024@60Hz
  Resolution: 1280x960@60Hz
  Resolution: 1920x1200@60Hz
  Size: 519x324 mm
  Detailed Timings #0:
 Resolution: 1920x1200
 Horizontal: 1920 1968 2000 2080 (+48 +80 +160) -hsync
   Vertical: 1200 1203 1209 1235 (+3 +9 +35) +vsync
Frequencies: 154.00 MHz, 74.04 kHz, 59.95 Hz
  Driver Info #0:
Max. Resolution: 1920x1200
Vert. Sync Range: 59-61 Hz
Hor. Sync Range: 31-76 kHz
Bandwidth: 154 MHz
  Config Status: cfg=new, avail=yes, need=no, active=unknown





deleted all xorg.conf files and started this way:


# X -logverbose 9

X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32.28-dsa-ia32 i686 Debian
Current Operating System: Linux mib 2.6.32-5-686 #1 SMP Wed Jan 12 04:01:41 UTC 
2011 i686
Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.32-5-686 
root=UUID=d1c11ae0-1274-45b7-9704-5cf073c64db0 ro
Build Date: 12 January 2011  03:44:48AM
xorg-server 2:1.7.7-11 (Cyril Brulebois ) 
Current version of pixman: 0.16.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: Wed Feb 23 05:22:32 2011
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
SELinux: Disabled on system, not enabling in X server
resize called 1920 1200


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Feb 26  2010 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1733468 Jan 12 04:50 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5500] 
(rev a1)

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

Kernel version (/proc/version):
Linux version 2.6.32-5-686 (Debian 2.6.32-30) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Wed Jan 12 04:01:41 UTC 2011

Xorg X server log files on system:
-rw-r--r-- 1 root root 14010 Feb 23 04:54 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32.28-dsa-ia32 i686 Debian
Current Operating System: Linux mib 2.6.32-5-686 #1 SMP Wed Jan 12 04:01:41 UTC 
2011 i686
Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.32-5-686 
root=UUID=d1c11ae0-1274-45b7-9704-5cf073c64db0 ro
Build Date: 12 January 2011  03:44:48AM
xorg-server 2:1.7.7-11 (Cyril Brulebois ) 
Current version of pixman: 0.16.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: Wed Feb 23 04:54:15 2011
(II) Loader magic: 0x81ecca0
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(--) using VT number 7

(--) PCI:*(0:1:0:0) 10de:0326:: nVidia Corporation NV34 [GeForce FX 
5500] rev 161, Mem @ 0xce00/16777216, 0xb000/268435456, BIOS @ 
0x/131072
List of video drivers:
i128
cirrus
radeon
vmware
radeonhd
nouveau
tdfx
trident
mga
neomagic
s3virge
s3
mach64
tseng
v4l
ztv
i740
apm
rendition
savage
sis
openchrome
ark
vmwlegacy
nv
intel
siliconmotion
voodoo
r128
ati
chips
geode
sisusb
fbdev
vesa
(II) LoadModule: "i128"
(II) Loading /usr/lib/xorg/modules/drivers/i128_drv.so
(II) Mod

Bug#614734: libc6.1-dev: #include from gcc on a DEC Alpha does not declare function `round'

2011-02-22 Thread Jonathan Nieder
Hi Wayne,

Wayne Rossberg wrote:

> #include 
[...]
> test.c:5: warning: incompatible implicit declaration of built-in function 
> `round'

When I check with "man 3 round", I see:

   Feature Test Macro Requirements for glibc (see feature_test_macros(7)):

round(), roundf(), roundl():
   _XOPEN_SOURCE >= 600 || _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L;
   or cc -std=c99

Are you compiling with -std=c99?  If not, I'd suggest putting
"#define _GNU_SOURCE" at the top of the program and seeing if that
helps.  See feature_test_macros(7) for details.

(That said, the warning does seem weird.  I'm not sure what would
cause it.)

Hope that helps,
Jonathan



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



Bug#504782: xserver-xorg-video-intel: suspend quirk s3_mode no longer works on Thinkpad R60

2011-02-22 Thread Marcus Better
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 2011-02-23 01:55, Cyril Brulebois wrote:
> what's the status with a squeeze or sid system?

I'm not using the original system anymore, so I don't know.

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

iEYEARECAAYFAk1kmu4ACgkQXjXn6TzcAQn6mwCgj9674y3dYNuELl4wPaCZ/DhY
UPUAnR4byR/nQHEu7lI7/u10Y+GsixFm
=zqTk
-END PGP SIGNATURE-



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



Bug#614737: [t/runtests] runtests doesn't fail if a a thread dies (e.g. because of die())

2011-02-22 Thread Raphael Geissert
Package: lintian
Version: 2.5.0~rc1

Hi,

As subject says, t/runtests doesn't fail at the end even if a thread 
"terminates abnormally" (because of a call to die()).
I didn't fix it before uploading the rc1 because I've been hitting a bug in 
make (#614701) and even though I retried three times that bug hit me every 
single time, so in the end I just uploaded the package.

There are two ways to fix this bug: either by replacing the calls to fail(), or 
by making the for my $thr (threads->list()) loop actually check the return 
status of the thread and re-start it if it died.
The latter should really be done only after refactoring the code.

(I'm personally inclined to leaving this bug unfixed until the make bug is 
fixed. This bug doesn't affect tests that fail, only tests that fail to build.)

Cheers,
-- 
Raphael Geissert - Debian Developer
www.debian.org - get.debian.net



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



Bug#613677: slv2: Please recompile against versioned redland

2011-02-22 Thread Alessio Treglia
Hi Adrian,

On Wed, Feb 16, 2011 at 3:33 PM, Adrian Knoth  
wrote:
> The patch addresses this issue.

Thanks! Please apply it by yourself to our git repository.

Regards,

-- 
Alessio Treglia          | www.alessiotreglia.com
Debian Developer         | ales...@debian.org
Ubuntu Core Developer    | quadris...@ubuntu.com
0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0



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



Bug#614738: bzr-git: Revision not present

2011-02-22 Thread Ben Finney
Package: bzr-git
Version: 0.5.2-1
Severity: normal

Bazaar is failing to perform ‘bzr diff’ and other content-inspecting
operations on a Git repository. Here is an example session:

=
$ git clone git://gitorious.org/be/be be.upstream/
Cloning into be.upstream...
remote: Counting objects: 11296, done.
remote: Compressing objects: 100% (4243/4243), done.
remote: Total 11296 (delta 7219), reused 10426 (delta 6562)
Receiving objects: 100% (11296/11296), 6.42 MiB | 265 KiB/s, done.
Resolving deltas: 100% (7219/7219), done.

$ bzr info be.upstream/
Standalone tree (format: git)
Location:
  branch root: be.upstream

$ bzr branch be.upstream/ be.devel/
Branched 397 revision(s).

$ bzr info be.devel/
Repository tree (format: 2a)
Location:
  shared repository: .
  repository branch: be.devel

Related branches:
  parent branch: be.upstream

$ cd be.devel/

$ echo "foo" >> README 

$ bzr diff
=== modified file 'README'
bzr: ERROR: Revision {('README', 
'git-v1:0d9ec7c727ff624ee1905831e806cab8c9e65537')} not present in 
"CHKInventoryRepository('file:///home/bignose/Projects/bugs-everywhere/.bzr/repository/')".
=

The corresponding log entries are:

=
Wed 2011-02-23 16:38:50 +1100
0.046  bazaar version: 2.1.2
0.046  bzr arguments: [u'diff']
0.068  looking for plugins in /home/bignose/.bazaar/plugins
0.069  looking for plugins in /usr/lib/python2.6/dist-packages/bzrlib/plugins
0.269  encoding stdout as sys.stdout encoding 'UTF-8'
0.318  opening working tree '/home/bignose/Projects/bugs-everywhere/be.devel'
0.596  Traceback (most recent call last):
  File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 853, in 
exception_to_return_code
return the_callable(*args, **kwargs)
  File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 1055, in 
run_bzr
ret = run(*run_argv)
  File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 661, in 
run_argv_aliases
return self.run_direct(**all_cmd_args)
  File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 665, in 
run_direct
return self._operation.run_simple(*args, **kwargs)
  File "/usr/lib/python2.6/dist-packages/bzrlib/cleanup.py", line 122, in 
run_simple
self.cleanups, self.func, *args, **kwargs)
  File "/usr/lib/python2.6/dist-packages/bzrlib/cleanup.py", line 156, in 
_do_with_cleanups
result = func(*args, **kwargs)
  File "/usr/lib/python2.6/dist-packages/bzrlib/commands.py", line 1070, in 
ignore_pipe
result = func(*args, **kwargs)
  File "/usr/lib/python2.6/dist-packages/bzrlib/builtins.py", line 1955, in run
extra_trees=extra_trees, using=using)
  File "/usr/lib/python2.6/dist-packages/bzrlib/diff.py", line 444, in 
show_diff_trees
return differ.show_diff(specific_files, extra_trees)
  File "/usr/lib/python2.6/dist-packages/bzrlib/diff.py", line 889, in show_diff
return self._show_diff(specific_files, extra_trees)
  File "/usr/lib/python2.6/dist-packages/bzrlib/diff.py", line 949, in 
_show_diff
self._diff(file_id, oldpath, newpath, kind[0], kind[1])
  File "/usr/lib/python2.6/dist-packages/bzrlib/diff.py", line 975, in _diff
new_path, old_kind, new_kind)
  File "/usr/lib/python2.6/dist-packages/bzrlib/diff.py", line 506, in 
_diff_many
new_kind)
  File "/usr/lib/python2.6/dist-packages/bzrlib/diff.py", line 644, in diff
old_path, new_path)
  File "/usr/lib/python2.6/dist-packages/bzrlib/diff.py", line 664, in diff_text
from_text = _get_text(self.old_tree, from_file_id, from_path)
  File "/usr/lib/python2.6/dist-packages/bzrlib/diff.py", line 660, in _get_text
return tree.get_file(file_id, path).readlines()
  File "/usr/lib/python2.6/dist-packages/bzrlib/workingtree_4.py", line 1773, 
in get_file
return StringIO(self.get_file_text(file_id))
  File "/usr/lib/python2.6/dist-packages/bzrlib/workingtree_4.py", line 1780, 
in get_file_text
_, content = list(self.iter_files_bytes([(file_id, None)]))[0]
  File "/usr/lib/python2.6/dist-packages/bzrlib/repository.py", line 2201, in 
iter_files_bytes
raise errors.RevisionNotPresent(record.key, self)
RevisionNotPresent: Revision {('README', 
'git-v1:0d9ec7c727ff624ee1905831e806cab8c9e65537')} not present in 
"CHKInventoryRepository('file:///home/bignose/Projects/bugs-everywhere/.bzr/repository/')".

0.597  Transferred: 0KiB (0.0K/s r:0K w:0K)
0.597  return code 3
=

-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (900, 'stable')
Architecture: powerpc (ppc64)

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

Versions of packages bzr-git depends on:
ii  bzr 2.1.2-1  easy to use distributed version co
ii  python  2.6.6-3+squeeze5 interactive high-level object-orie
ii  python-central  0.6.16+nmu1  register and build utility for Pyt
ii  python-dulwich  0.6.1-1  Pure-pytho

Bug#614739: Please list dependencies one line per dependency

2011-02-22 Thread Robert Ancell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: webkit
Severity: wishlist

Please list the package dependencies in debian/control one line per
dependency as this makes it much easier to read and diff.


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

Kernel: Linux 2.6.38-4-generic (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk1knoEACgkQGOqhiQ98iC6XqACg3Lx+xWWWBvHjeVcZ1SjCFWZk
9mcAoKZi21WZoUPtQunwT4aDH1M5dcRZ
=ZAvG
-END PGP SIGNATURE-




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



Bug#614740: webkit: Fix documentation build

2011-02-22 Thread Robert Ancell

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: webkit
Severity: normal

Attached patch fixes documentation build


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

Kernel: Linux 2.6.38-4-generic (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk1knxAACgkQGOqhiQ98iC48oQCgqBv30y3r7QySjzVU+zs3wD0s
bWQAnReC0EHjjlG8ZsZeUMDnYzXZJ6iN
=W7g4
-END PGP SIGNATURE-

37,39c37,41
< 	-test -d build/Source/WebKit/gtk/docs && \
< 		cd build/Source/WebKit/gtk/docs && \
< 		make maintainer-clean
---
> 	-for version in $(GTK_VERSIONS); do \
> 		test -d build-$${version}/Source/WebKit/gtk/docs && \
> 			cd build-${version}/Source/WebKit/gtk/docs && \
> 			make maintainer-clean; \
> 	done
97c99
< 		ln -fs ../../../build-$${version}/Source/WebKit/gtk/docs/version.xml \
---
> 		ln -fs ../../../../build-$${version}/Source/WebKit/gtk/docs/version.xml \
101c103
< 		cd ..; \
---
> 		cd ../../../../..; \
121,123c123,124
< 	# FIXME: broken upstream
< 	#install -m 644 Source/WebKit/gtk/docs/html/* \
< 	#	debian/tmp-2.0/usr/share/doc/libwebkitgtk-dev/html/
---
> 	install -m 644 build-2.0/Source/WebKit/gtk/docs/html/* \
> 		debian/tmp-2.0/usr/share/doc/libwebkitgtk-dev/html/
136,138c137,138
< 	# FIXME: broken upstream
< 	# install -m 644 Source/WebKit/gtk/docs/html/* \
< 	# 	debian/tmp-3.0/usr/share/doc/libwebkitgtk-3.0-dev/html/
---
> 	install -m 644 build-3.0/Source/WebKit/gtk/docs/html/* \
> 		debian/tmp-3.0/usr/share/doc/libwebkitgtk-3.0-dev/html/


webkit-doc-fix.patch.sig
Description: PGP signature


Bug#614742: miscfiles: please change inter.phone to key from ISO country codes instead of country names

2011-02-22 Thread Paul Wise
Package: miscfiles
Version: 1.4.2.dfsg.1-9
Severity: wishlist

inter.phone currently looks like this:

20:Egypt
...
61:Australia
...

It would be much better if it looked like this:

20:EG
...
61:AU
...

Then you could map both ways.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#614743: New upstream release of gnome-schedule

2011-02-22 Thread Julián Moreno Patiño
Package: gnome-schedule
Version: 2.1.1-4
Severity: wishlist

Hi Alejandro Rios,

gnome-schedule Version 2.1.3 is available. Please update Debian Package.

Kind regards,

-- 
Julián Moreno Patiño
 .''`. Debian GNU/{Linux,KfreeBSD}
: :' : Free Operating Systems
`. `'  http://debian.org/
  `-   PGP KEY ID 6168BF60
Registered GNU Linux User ID 488513




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



Bug#513521: Bug#614692: midori: Contains upstream changelog twice

2011-02-22 Thread Yves-Alexis Perez
On Wed, 2011-02-23 at 00:23 +0100, Axel Beckert wrote:
> Package: midori
> Version: 0.3.2-0.1
> Severity: minor
> 
> While playing around with the tool hardlink, I noticed that midori
> contains the upstream changelog twice:
> 
> [DryRun] Linking /usr/share/doc/midori/ChangeLog.gz
> to /usr/share/doc/midori/changelog.gz (-8.19 KiB)
> 
> -rw-r--r--1 root root  8390 Feb 20 00:00 changelog.gz
> -rw-r--r--1 root root  8390 Feb 20 00:00 ChangeLog.gz
> 
> e839a0a3860f6a014255c196c9f43ec1  /usr/share/doc/midori/ChangeLog.gz
> e839a0a3860f6a014255c196c9f43ec1  /usr/share/doc/midori/changelog.gz
> 
> One of them should suffice and it would save around 8kB. :-) 

Yes, this is because of #513521. I'll pass -X ChangeLog to
dh_installchangelogs for now but it'd be nice to have it done
automagically :)

Regards,
-- 
Yves-Alexis


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


Bug#608782: x server failed

2011-02-22 Thread Edgar Vargas
2011/2/22, Edgar Vargas :
> 2011/2/22, Cyril Brulebois :
>> Hi Edgar,
>>
>> Edgar Vargas  (04/01/2011):
>>> x server failed when i was working, sometimes one or two hour after,
>>> please, help me...
>>
>> please see the FAQ entry about intel video driver:
>>   http://pkg-xorg.alioth.debian.org/faq/general.html
>>
>> We can't do much more than providing with a workaround for now.
>>
>> KiBi.
>
> Thanks, i am reading it, i will try it
>

two hours ago y tried it:

root@debian:~# cat /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "X.org Configured"
Screen  0  "Screen0" 0 0
InputDevice"Mouse0" "CorePointer"
InputDevice"Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
ModulePath   "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "built-ins"
EndSection

Section "Module"
Load  "extmod"
Load  "glx"
Load  "dri"
Load  "record"
Load  "dri2"
Load  "dbe"
EndSection

Section "InputDevice"
Identifier  "Keyboard0"
Driver  "kbd"
EndSection

Section "InputDevice"
Identifier  "Mouse0"
Driver  "mouse"
Option  "Protocol" "auto"
Option  "Device" "/dev/input/mice"
Option  "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
Identifier   "Monitor0"
VendorName   "Monitor Vendor"
ModelName"Monitor Model"
EndSection

Section "Device"
### Available Driver options are:-
### Values: : integer, : float, : "True"/"False",
### : "String", : " Hz/kHz/MHz"
### [arg]: arg optional
#Option "ShadowFB"  # []
#Option "DefaultRefresh"# []
#Option "ModeSetClearScreen"# []
Identifier  "Card0"



###

first, i have genered xorg.conf, by default:

Driver  "vesa"

 reboot..., i can't see graphical interface, then

Here i put Driver "fbdev", then reboot..., loading debian... i can't
start graphical interface, nothing, i remember that when i used to use
driver "intel" i can see graphical interface..., i changed to driver
"intel", then reboot..., I can start graphical interface, but passed
two hours or three, depend... my screen freezes, with others operating
system i don't have problems, for example, windows, centos, fedora...,
only with debian..., but i want to use debian..., thanks...

###


Driver  "intel"
VendorName  "Intel Corporation"
BoardName   "82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics 
Device"
BusID   "PCI:0:2:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor"Monitor0"
SubSection "Display"
Viewport   0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 24
EndSubSection
EndSection

root@debian:~#

i have at the moment:

root@debian:/etc/X11# ls
app-defaults rgb.txt  xinit  Xreset  Xsession  
XvMCConfig
default-display-manager  twm  xkbXreset.dXsession.d
Xwrapper.config
fontsXxorg.conf  Xresources  Xsession.options

my pc isn't old, five  years ago i bought it

root@debian:/etc/X11# lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation
82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 03)

with debian lenny i don't have the same problem, since that i use
debian testing and squeeze i have the problem..., help me please, i
want to use debian...
>>
>
>
> --
> Edguit@r:
> http://cybernautape.blogspot.com/
>


-- 
Edguit@r:
http://cybernautape.blogspot.com/



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



Bug#614682: Note

2011-02-22 Thread Yves-Alexis Perez
What is not starting is not x-session-manager (xfce4-session) but
xfsettingsd, which is run by xfce4-session. It can't run because it's an
XSettings daemon, as gnome-settings-daemon, and thus there can't be two
of them running at the same time.

Regards,
-- 
Yves-Alexis


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


Bug#614744: libgc: sh4: FTBFS: doesn't match completely debian/libgc1c2.symbols

2011-02-22 Thread Nobuhiro Iwamatsu
Source: libgc
Version: 1:7.1-6
Severity: wishlist
Tags: patch
User: debian-...@superh.org
Usertags: sh4
X-Debbugs-CC: debian-sup...@lists.debian.org

Hi,

libgc FTBFS on SH4.
Because current libgc package does not include symbol file for sh4.
  
http://buildd.debian-ports.org/fetch.php?pkg=libgc&arch=sh4&ver=1:7.1-6&stamp=1298412406&file=log&as=raw

-
dpkg-gensymbols: warning: some new symbols appeared in the symbols
file: see diff output below
dpkg-gensymbols: warning: some symbols or patterns disappeared in the
symbols file: see diff output below
dpkg-gensymbols: warning: debian/libgc1c2/DEBIAN/symbols doesn't match
completely debian/libgc1c2.symbols
--- debian/libgc1c2.symbols (libgc1c2_1:7.1-6_sh4)
+++ dpkg-gensymbolsC5W8aT   2011-02-22 21:46:14.0 +
@@ -326,11 +326,11 @@
  GC_obj_kinds@Base 1:7.1
  GC_objects_are_marked@Base 1:7.1
  GC_objfreelist_ptr@Base 1:7.1
- GC_old_bus_handler@Base 1:7.1
- GC_old_bus_handler_used_si@Base 1:7.1
+#MISSING: 1:7.1-6# GC_old_bus_handler@Base 1:7.1
+#MISSING: 1:7.1-6# GC_old_bus_handler_used_si@Base 1:7.1
  GC_old_normal_bl@Base 1:7.1
- GC_old_segv_handler@Base 1:7.1
- GC_old_segv_handler_used_si@Base 1:7.1
..
-

I create symbol file for sh4. Could you apply this?

Best regards,
 Nobuhiro

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


libgc1c2.symbols.sh4
Description: Binary data


Bug#590668: w3mimg_fbopen.c: support fbterm (as well as jfbterm).

2011-02-22 Thread trentbuck
This bug was present in 0.5.2-9, silently fixed in 0.5.2-10, but came
back in 0.5.3-1!  I wish I knew what changed to break it again.



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



Bug#586485: Regression: can't resume after suspend-to-RAM

2011-02-22 Thread Dave Platt

> Thanks, I'm tagging this bug report accordingly then.

I upgraded my kernel and xserver-xorg-* debs to the versions
in unstable, as you suggested.

With KMS disabled, suspend and resume continue to work OK.

With KMS re-enabled, I still see the black screen after
resuming.  There is no change in behavior from the previous
versions (from the testing distribution).  Switching virtual
terminals works fine (very quickly) prior to the suspend, but
after the resume the screen remains black after switching
VTs (I was able to log in as root and capture the log file,
but only "blindly").

I'll see if I can upload the kernel and Xorg logs from a
session during which I suspended, resumed, and saw the
black screen.  The logs indicate that KMS is enabled, and
is apparently used during the initial setup of the screen
and during VT-switch.





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



Bug#586485: Regression: can't resume after suspend-to-RAM

2011-02-22 Thread Dave Platt
X server log attached...

[25.733] 
X.Org X Server 1.9.4
Release Date: 2011-02-04
[25.733] X Protocol Version 11, Revision 0
[25.733] Build Operating System: Linux 2.6.32.29-dsa-ia32 i686 Debian
[25.733] Current Operating System: Linux chembook 2.6.37-1-686 #1 SMP Tue 
Feb 15 18:21:50 UTC 2011 i686
[25.733] Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.37-1-686 
root=UUID=64aef0b8-c7fb-4d9a-a42f-4a3f18541e73 ro quiet
[25.734] Build Date: 20 February 2011  05:47:22AM
[25.734] xorg-server 2:1.9.4-3 (Cyril Brulebois ) 
[25.734] Current version of pixman: 0.16.4
[25.734]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[25.734] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[25.734] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Feb 22 22:31:08 
2011
[25.785] (==) Using config file: "/etc/X11/xorg.conf"
[25.785] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[25.863] (==) ServerLayout "Default Layout"
[25.863] (**) |-->Screen "aticonfig Screen 0" (0)
[25.864] (**) |   |-->Monitor "aticonfig Monitor 0"
[25.871] (**) |   |-->Device "ATI Graphics Adapter 0"
[25.871] (**) |-->Input Device "Generic Keyboard"
[25.871] (**) |-->Input Device "Synaptics Touchpad"
[25.871] (==) Automatically adding devices
[25.871] (==) Automatically enabling devices
[25.969] (WW) The directory "/usr/lib/X11/fonts/misc" does not exist.
[25.969]Entry deleted from font path.
[25.969] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[25.969]Entry deleted from font path.
[25.969] (WW) The directory "/usr/lib/X11/fonts/cyrillic" does not exist.
[25.969]Entry deleted from font path.
[25.969] (WW) The directory "/usr/lib/X11/fonts/100dpi/" does not exist.
[25.969]Entry deleted from font path.
[25.969] (WW) The directory "/usr/lib/X11/fonts/75dpi/" does not exist.
[25.969]Entry deleted from font path.
[26.031] (WW) The directory "/usr/lib/X11/fonts/Type1" does not exist.
[26.031]Entry deleted from font path.
[26.031] (WW) The directory "/usr/share/fonts/X11/CID" does not exist.
[26.031]Entry deleted from font path.
[26.031] (WW) The directory "/usr/lib/X11/fonts/CID" does not exist.
[26.031]Entry deleted from font path.
[26.053] (WW) The directory "/usr/lib/X11/fonts/100dpi" does not exist.
[26.053]Entry deleted from font path.
[26.076] (WW) The directory "/usr/lib/X11/fonts/75dpi" does not exist.
[26.076]Entry deleted from font path.
[26.076] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[26.076]Entry deleted from font path.
[26.111] (**) FontPath set to:
unix/:7100,
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
[26.111] (==) ModulePath set to "/usr/lib/xorg/modules"
[26.111] (**) Extension "Composite" is enabled
[26.111] (II) The server relies on udev to provide the list of input 
devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[26.111] (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' 
or 'vmmouse' will be disabled.
[26.111] (WW) Disabling Generic Keyboard
[26.111] (II) Loader magic: 0x81f7140
[26.111] (II) Module ABI versions:
[26.111]X.Org ANSI C Emulation: 0.4
[26.111]X.Org Video Driver: 8.0
[26.111]X.Org XInput driver : 11.0
[26.111]X.Org Server Extension : 4.0
[26.113] (--) PCI:*(0:1:0:0) 1002:5652:1043:1962 rev 0, Mem @ 
0xd000/134217728, 0xfe9f/65536, I/O @ 0xc000/256, BIOS @ 
0x/131072
[26.113] (II) Open ACPI successful (/var/run/acpid.socket)
[26.113] (II) "extmod" will be loaded. This was enabled by default and also 
specified in the config file.
[26.113] (II) "dbe" will be loaded. This was enabled by default and also 
specified in the config file.
[26.114] (II) "glx" will be loaded. This was enabled by default and also 
specified in the config file.
[26.114] (II) "record" will be loaded. This was enabled by default and also 
specified in the config file.
[26.114] (II) "dri" will be loaded. This was enabled by default and also 
specified in the config file.
[26.114] (II) "dri2" will be loaded by default.
[26.114] (II) LoadModule: "dbe"
[26.183] (II) Loading /usr

Bug#613904: sshfs in combination with bind mounts and umount -f fails

2011-02-22 Thread Johannes Martin
Am 18.02.2011 schrieb Miklos Szeredi:
>> The docs say (man 2 umount):
>> MNT_FORCE (since Linux 2.1.116)
>>Force  unmount  even  if busy.  This can cause data loss.  (Only
>>for NFS mounts.)
>>
>> So the -f flag should only make a difference if a filesystem is busy,
>> and even then it should not affect other mount points.
> 
> That's your interpretation, but the fact is, Linux doesn't work that
> way.
> 
>> I'm not unmounting the original mount and complain that the bind mount
>> no longer works (that would in fact make sense with umount -f). It's the
>> other way around: I'm unmounting something that happens to bind mount a
>> directory lying on an sshfs file system to somewhere else and it causes
>> the underlying mount to break ("mount" still lists the mount to be
>> active, and so does "/proc/mounts").
> 
> There's no distinction between original mount and bind mount in Linux.
> From the kernel's point of view they are completely equal.

If this is true and the way it is supposed to be, why don't we see the
same behaviour with an ext4 mount, for example:
---
/mnt# dd if=/dev/zero of=bigfile count=10240 bs=1024
/mnt# mkfs.ext4 bigfile
/mnt# mkdir -p mp1 mp2
/mnt# mount -o loop -t ext4 bigfile mp1
/mnt# mount -o bind mp1 mp2
/mnt# touch mp1/x
/mnt# ls mp2
lost+found  x
/mnt# ls mp1
lost+found  x
/mnt# umount -f mp2
/mnt# ls mp1
lost+found  x
---

Regards
  Johannes




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



Bug#614331: hald does not start automatically on bootup

2011-02-22 Thread Martin Pitt
Hello Ron,

Ron Murray [2011-02-22 17:26 -0500]:
> I'm running xfce on both my desktop and my laptop. When I log in to
> either, I get an error from xfce power manager telling me that hal isn't
> running.

XFCE was recently moved from hal to upower/udisks/gio, but I just saw
that this new xfce-power-manager is only in Debian experimental so
far.

To make hal D-BUS activation work properly, hal needs this additional
patch:
http://bazaar.launchpad.net/~ubuntu-core-dev/hal/ubuntu/view/head:/debian/patches/02_libhal_dont_check_running.patch

Michael, can you apply it to the Debian package as well? You can
easily test with "lshal" while hal is not running. Right now it
shouldn't activate, with this patch it will.

Thanks,

Martin

-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)


signature.asc
Description: Digital signature


Bug#531409: Does the issue still apply to cups-pdf 2.5.1-1 ?

2011-02-22 Thread martin f krafft
also sprach Martin-Éric Racine  [2011.02.23.0242 
+0100]:
> Does the issue still apply to cups-pdf 2.5.1-1 ?

Yes.

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#614658: tgif: [INTL:fi] Updated Finnish translation of the debconf templates

2011-02-22 Thread Christian PERRIER
Quoting Esko Arajärvi (e...@iki.fi):
> Package: tgif
> Severity: wishlist
> Tags: l10n patch
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Please include attached updated translation file fi.po to the package.


> #. Type: select
> #. Description
> #: ../tgif.templates:3002
> #, fuzzy
> msgid "Units to use for the grid:"
> msgstr "Käytettävät mittayksiköt:"


That string is still marked as fuzzy. And, I really can't tell if it
is or not..:-)




signature.asc
Description: Digital signature


Bug#614745: di and libxgks-dev: error when trying to install together

2011-02-22 Thread Ralf Treinen
Package: libxgks-dev,di
Version: libxgks-dev/2.6.1-2
Version: di/4.27-1
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2011-02-23
Architecture: amd64
Distribution: sid

Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


WARNING: The following packages cannot be authenticated!
  di libxau6 libxdmcp6 libxcb1 libx11-data libx11-6 libxgks2 libxgks-dev
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package di.
(Reading database ... 8734 files and directories currently installed.)
Unpacking di (from .../archives/di_4.27-1_amd64.deb) ...
Selecting previously deselected package libxau6.
Unpacking libxau6 (from .../libxau6_1%3a1.0.6-1_amd64.deb) ...
Selecting previously deselected package libxdmcp6.
Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.1.0-1_amd64.deb) ...
Selecting previously deselected package libxcb1.
Unpacking libxcb1 (from .../libxcb1_1.7-2_amd64.deb) ...
Selecting previously deselected package libx11-data.
Unpacking libx11-data (from .../libx11-data_2%3a1.4.1-5_all.deb) ...
Selecting previously deselected package libx11-6.
Unpacking libx11-6 (from .../libx11-6_2%3a1.4.1-5_amd64.deb) ...
Selecting previously deselected package libxgks2.
Unpacking libxgks2 (from .../libxgks2_2.6.1-2_amd64.deb) ...
Selecting previously deselected package libxgks-dev.
Unpacking libxgks-dev (from .../libxgks-dev_2.6.1-2_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/libxgks-dev_2.6.1-2_amd64.deb 
(--unpack):
 trying to overwrite '/usr/bin/mi', which is also in package di 4.27-1
configured to not write apport reports
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/libxgks-dev_2.6.1-2_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail, and violates
sections 7.6.1 and 10.1 of the policy. An optimal solution would
consist in only one of the packages installing that file, and renaming
or removing the file in the other package. Depending on the
circumstances you might also consider Replace relations or file
diversions. If the conflicting situation cannot be resolved then, as a
last resort, the two packages have to declare a mutual
Conflict. Please take into account that Replaces, Conflicts and
diversions should only be used when packages provide different
implementations for the same functionality.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):

  /usr/bin/mi

This bug is assigned to both packages. If you, the maintainers of
the two packages in question, have agreed on which of the packages will
resolve the problem please reassign the bug to that package. You may
also register in the BTS that the other package is affected by the bug.

-Ralf.

PS: for more information about the detection of file overwrite errors
of this kind see http://edos.debian.net/file-overwrites/.



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



Bug#554427: xserver-xorg-video-intel: repaint problems with transient windows

2011-02-22 Thread Tollef Fog Heen
]] Cyril Brulebois 

| Hi Tollef,
| 
| Brice Goglin  (27/02/2010):
| > Are things ok with X packages from unstable, KMS enabled and a
| > recent 2.6.32 package from unstable ?
| 
| no news in nearly a year, closing this bug report. Feel free to open a
| new bug with an up-to-date squeeze or sid system if you're still
| having issues.

Just for the record, I haven't seen any problems lately so I assume it's
been fixe somehow.  Sorry about the lack of replies from me.

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are



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



Bug#585840: tasksel: Please add libenchant-voikko (and remove aspell-fi) from finnish task

2011-02-22 Thread Christian PERRIER
Quoting Rene Engelhard (r...@debian.org):

> Have that already done here[1], but got:

So, it's in your hands. Good.

This confirms what I was writing to Timo, then. The proposed change
should only include things related to Finnish spellcheckers, not LibO




signature.asc
Description: Digital signature


Bug#614658: tgif: [INTL:fi] Updated Finnish translation of the debconf templates

2011-02-22 Thread Christian PERRIER
Quoting Carlo Segre (se...@iit.edu):
> 
> Thanks, I will


Hmmm, I suspect you might have missed my "intent to NMU or help"
messages where I was (gently) pushing for an upload to happen (I'm
trying to avoid having packages waiting for too long time for their
l10n updates.that will save the i18n team a lot of rush when the
time of the freeze will come).

(these mails were sent to 609...@bugs.debian.org...the bug for the
full review of debconf templates)



signature.asc
Description: Digital signature


Bug#614376: pcscd: fails to work (with gemalto card reader)

2011-02-22 Thread Ludovic Rousseau

Le 23/02/11 00:57, Christoph Egger a écrit :

Ludovic Rousseau  writes:

Have you tried to unplug and replug the reader?


Jep I've done that -- unfortunately it didn't help


Can you try again using pcscd 1.6.7-1 from unstable and libccid 1.4.2-1 
from unstable?


Thanks

--
 Dr. Ludovic Rousseau



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



Bug#614746: ebtables: 32-bit package is not compatible with 64-bit kernel

2011-02-22 Thread Rogier
Package: ebtables
Version: 2.0.9.2-2
Severity: normal

Hi,

I am running a 32-bit (i386) userland on top of the 64-bit (amd64) kernel. In
this configuration, ebtables fails to work:
root # lsmod | grep ebtable
ebtable_filter  1599  0 
ebtables   13885  1 ebtable_filter
x_tables   12685  2 ebtables,ip_tables
root # ebtables -L
The kernel doesn't support the ebtables 'filter' table.
The direct cause is that ebtables passes wrongly-sized structures to the kernel,
which returns EINVAL, which in turn causes the (confusing) message above.

I checked the source, and it appears that the ebtables user-kernel interface
uses datastructures containing actual pointers (not offsets, like iptables).
As both the kernel and ebtables use their own idea of a pointer, ebtables
fails.

ebtables does seem to contain code to cope with a mixed 32/64-bit environment,
by defining KERNEL_64_USERSPACE_32 and EBT_MIN_ALIGN during compilation,
however the implementation is partial (at least from an x86_64 perspective),
and therefore not functional. In addition, it would make the resulting binary
fail on top of a 32-bit kernel...

Regards,

Rogier.


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

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

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

Versions of packages ebtables recommends:
ii  iptables  1.4.8-3administration tools for packet fi

ebtables suggests no packages.

-- no debconf information



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



Bug#568923: not suitable for use in BROWSER

2011-02-22 Thread trentbuck
Joey Hess wrote:
> However, strace shows that when run by xfce4-terminal, w3m actually
> dumps the page to stdout and exits, same as if it were run in a pipe.

ssh -T has the desired properties:

$ ssh -T blood test -t 0; echo $?
1
$ ssh -T blood test -t 1; echo $?
1
$ ssh -T blood test -t 2; echo $?
1
$ ssh -T blood tput longname; echo $?
tput: No value for $TERM and no -T specified
2

Thus it can be used to test the behaviour of tty browsers:

$ ssh -T blood aptitude search --disable-columns "'-F%p %v'" ~i~Pwww-browser
elinks 0.12~pre5-2ubuntu1
links 2.2-1build1
links2 2.2-1build1
lynx-cur 2.8.8dev.2-1
netrik 1.16.1-1
w3m 0.5.2-2.1ubuntu1.1

Of all those, only netrik does what you seem to want -- exiting with a
non-zero exit status.  links and links2 don't even exit, despite there
/dev/tty being inaccessible and /dev/stdin being at EOF!

$ ssh -T blood w3m http://example.net/ <&-; echo $?
Homepage

  • Domains
  • Numbers
  • Protocols
  • About IANA

Example Domains

As described in RFC 2606, we maintain a number of domains such as 
EXAMPLE.COM
and EXAMPLE.ORG for documentation purposes. These domains may be used as
illustrative examples in documents without prior coordination with us. They 
are
not available for registration.

  Domains Protocols 
About Root Zone [icann-logo]
Presentations .INTNumberIANA is operated by the
Performance   .ARPA   Resources Internet Corporation for Assigned 
Names
Reports   IDN Abuse and Numbers
  Repository  Information

Please direct general feedback regarding IANA to i...@iana.org.

0
$ ssh -T blood lynx http://example.net/ <&-; echo $?


  Your Terminal type is unknown!

  Enter a terminal type: [vt100] 
TERMINAL TYPE IS SET TO vt100
HTTP request sent; waiting for response.

[?1l>0
$ ssh -T blood links http://example.net/ <&-; echo $?







  + Welcome -+  
  |  |  
  |Welcome to links! |  
  |  |  
  |  To display menu, press ESC or click on the top line in  |  
  |  window. Select Help->Manual in menu for user's manual.  |  
  |  |  
  |  [ OK ]  |  
  +--+  







Looking up host 
   Making connectionRequest sent Looking up hostMaking connectionRequest 
sent IANA - Example domainsHomepage* Domains* Numbers* 
ProtocTransferringols* About IANAAs dEXAMmaybe uonwithAbouPresPerfrReports  
 .ARPAAbuse Information Assigned Names and NumbersIDN RepositoryPlease direct 
general feedback regarding IANA to i...@iana.org.http://www.iana.org/
  C-c C-c130
$ ssh -T blood elinks http://example.net/ <&-; echo $?
   [1]Homepage

 * [2]Domains
 * [3]Numbers
 * [4]Protocols
 * [5]About IANA

Example Domains

   As described in [6]RFC 2606, we maintain a number of domains such as
   EXAMPLE.COM and EXAMPLE.ORG for documentation purposes. These domains may
   be used as illustrative examples in documents without prior coordination
   with us. They are not available for registration.

[11]Domains[16]Protocols
   [7]About 

Bug#614723: Package: installation-reports error with debian 6.0.0 live (squeeze) disc

2011-02-22 Thread Christian PERRIER
Quoting Deborah Wyman (deborahwy...@yahoo.com):

> I tried booting from the disc on two computers with the same error message:
> 
> EDD: Error 0100 reading sector 517714, Invalid or corrupt Kernel image.


That sounds like a corrupted media. Have you tried burning the ISO on
another support...maybe using another CD/DVD burner?




signature.asc
Description: Digital signature


Bug#614747: gpdftext: [INTL:ru] Russian program translation update

2011-02-22 Thread Yuri Kozlov
Package: gpdftext
Version: 0.1.3-1
Severity: wishlist
Tags: l10n patch


Russian program translation update is attached.

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

Kernel: Linux 2.6.37-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
# translation of ru.po to Russian
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gpdftext package.
#
# Yuri Kozlov , 2009, 2011.
msgid ""
msgstr ""
"Project-Id-Version: gpdftext 0.1.3-1\n"
"Report-Msgid-Bugs-To: li...@codehelp.co.uk\n"
"POT-Creation-Date: 2010-05-13 20:16+0100\n"
"PO-Revision-Date: 2011-02-23 10:34+0300\n"
"Last-Translator: Yuri Kozlov \n"
"Language-Team: Russian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 1.0\n"
"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"

#.
#. * Translators should localize the following string
#. * which will give them credit in the About box.
#. * E.g. "Fulano de Tal "
#: ../src/main.c:76
msgid "translator-credits"
msgstr "Юрий Козлов , 2009, 2011"

#: ../src/main.c:89 ../src/ebookui.c:436 ../src/gpdftext.glade.h:26
msgid "eBook PDF editor"
msgstr "Редактор eBook PDF"

#: ../src/main.c:93
msgid ""
"gPDFText converts ebook PDF content into ASCII text, reformatted for long "
"line paragraphs."
msgstr ""
"gPDFText преобразует содержимое ebook PDF в простой текст ASCII, "
"переформатируя абзацы в длинные строки."

#: ../src/main.c:100
msgid "Homepage"
msgstr "Домашняя страница"

#: ../src/main.c:136
msgid "file"
msgstr "файл"

#: ../src/main.c:160
#, c-format
msgid "GConf init failed: %s"
msgstr "Не удалось инициализировать GConf: %s"

#: ../src/ebookui.c:322
msgid "Saving PDF file"
msgstr "Сохранение в PDF-файл"

#: ../src/ebookui.c:327
msgid "Saving text file"
msgstr "Сохранение в текстовый файл"

#: ../src/ebookui.c:370
msgid "Save file as"
msgstr "Сохранить файл как"

#: ../src/ebookui.c:377
msgid "All text files"
msgstr "Все текстовые файлы"

#: ../src/ebookui.c:382
msgid "PDF files"
msgstr "PDF-файлы"

#: ../src/ebookui.c:435
msgid "new file"
msgstr "новый файл"

#: ../src/pdf.c:140
msgid "Error: Pango iter index is zero."
msgstr "Ошибка: индекс итератора Pango равен нулю."

#: ../src/pdf.c:173
#, c-format
msgid "Saved PDF file. (%ld page)"
msgid_plural "Saved PDF file (%ld pages)."
msgstr[0] "PDF-файл сохранён. (%ld страница)"
msgstr[1] "PDF-файл сохранён. (%ld страницы)"
msgstr[2] "PDF-файл сохранён. (%ld страниц)"

#: ../src/pdf.c:193
msgid "Saved text file."
msgstr "Текстовый файл сохранён."

#. Translators: Please try to keep this string brief,
#. there often isn't a lot of room in the statusbar.
#: ../src/pdf.c:383
#, c-format
msgid "%ld non-UTF8 character was removed"
msgid_plural "%ld non-UTF-8 characters were removed"
msgstr[0] "%ld не-UTF8 символ был удалён"
msgstr[1] "%ld не-UTF8 символа было удалено"
msgstr[2] "%ld не-UTF8 символов было удалено"

#: ../src/pdf.c:392 ../src/pdf.c:600
msgid "Done"
msgstr "Выполнено"

#: ../src/pdf.c:464
msgid "Loading ebook:"
msgstr "Загрузить ebook:"

#: ../src/pdf.c:550
msgid "Open file"
msgstr "Открыть файл"

#: ../src/pdf.c:557
msgid "All PDF Files (*.pdf)"
msgstr "Все файлы PDF (*.pdf)"

#: ../src/pdf.c:562
msgid "ASCII text files (*.txt)"
msgstr "Все текстовые файлы (*.txt)"

#: ../src/spell.c:84 ../src/spell.c:336
#, c-format
msgid "Language '%s' from GConf isn't in the list of available languages\n"
msgstr "В списке доступных языков нет языка «%s» из GConf\n"

#. Context: Spell check dictionary
#: ../src/spell.c:234
msgid "System default"
msgstr "Системный по умолчанию"

#: ../src/gpdftext.glade.h:1
msgid "A_4 paper size (portrait)"
msgstr "A_4 (портрет)"

#: ../src/gpdftext.glade.h:2
msgid "A_5 book size (portrait)"
msgstr "A_5 (портрет)"

#: ../src/gpdftext.glade.h:3
msgid "About gpdftext"
msgstr "О gpdftext"

#: ../src/gpdftext.glade.h:4
msgid "Default paper size"
msgstr "Размер бумаги по умолчанию"

#: ../src/gpdftext.glade.h:5
msgid "Di_ctionary"
msgstr "_Словарь"

#: ../src/gpdftext.glade.h:6
msgid "New file"
msgstr "Новый файл"

#: ../src/gpdftext.glade.h:7
msgid "Open a file"
msgstr "Открыть файл"

#: ../src/gpdftext.glade.h:8
msgid "Page _number removal"
msgstr "Удаление _номеров страниц"

#: ../src/gpdftext.glade.h:9
msgid "Preferences"
msgstr "Параметры"

#: ../src/gpdftext.glade.h:10
msgid "Quit"
msgstr "Выход"

#: ../src/gpdftext.glade.h:11
msgid "Re_join hyphenated words"
msgstr "Слияние слов с _переносом"

#: ../src/gpdftext.glade.h:12
msgid "Redo the last undo"
msgstr "Вернуть последнюю отменённую операцию"

#: ../src/gpdftext.glade.h:13
msgid "Regular expression preferences"
msgstr "Настройки регулярного выражения"

#: ../src/gpdftext.glade.h:14
msgid "Save te

Bug#527818: video-intel: i945 UXA X crash

2011-02-22 Thread Michal Suchanek
On 23 February 2011 01:45, Cyril Brulebois  wrote:
> Hi Michal,
>
> Michal Suchanek  (08/05/2009):
>> Package: xserver-xorg-video-intel
>> Version: 2:2.7.0-1
>> Severity: normal
>> File: video-intel
>>
>>
>> X crashed for no apparent reason. This was after a resume but resume
>> normally works fine, even with this exact X server.
>
> what's the status in squeeze or sid?
>
> KiBi.
>

I was not using any Intel graphics recently.

It's probably OK to close, X has changed a lot.

Thanks

Michal



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



Bug#614709: ss: do not compute correctly columns width in case of long service name

2011-02-22 Thread Andreas Henriksson
Helo Witold Baryluk!

Thanks for your bug report... Given that you have (several) suggested
solutions, could you please take this up directly with upstream on the
linux "netdev" mailing list (and maybe explicitly CC Stephen Hemminger
at Vyatta)?

PS. You will likely have a much bigger chance at getting any replies
if you just include a patch with your mail that implements the
solution you prefer.

-- 
Andreas Henriksson



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



Bug#590668: w3mimg_fbopen.c: support fbterm (as well as jfbterm).

2011-02-22 Thread trentbuck
This bug was

  - present  in 0.5.2-9  (claims to be 0.5.2+cvs-1.1027);
  - fixedin 0.5.2-10 (claims to be 0.5.2+cvs-1.1039);
  - reintroduced in 0.5.3-1  (claims to be 0.5.3.).

I couldn't work out by looking at the diffs between those three.
Please find out why; it's frustrating to know the fix is hidden
somewhere in a package that's now only available on
http://snapshot.debian.org/!



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



Bug#614748: Fails to start with: cannot create regular file `/var/spool/postfix//etc/ssl/certs': No such file or directory

2011-02-22 Thread Robert Luberda
Package: postfix
Version: 2.8.0-2
Severity: grave


The package can not be configured if the /etc/ssl/certs/ca-certificates.crt
file exists:

[13]/> sudo LC_ALL=C dpkg --configure -a
Setting up postfix (2.8.0-2) ...
setting inet_protocols: ipv4

Postfix is now set up with the changes above.  If you need to make
changes, edit
/etc/postfix/main.cf (and others) as needed.  To view Postfix
configuration
values, see postconf(1).

After modifying main.cf, be sure to run '/etc/init.d/postfix reload'.

Running newaliases
Stopping Postfix Mail Transport Agent: postfix
OK
Starting Postfix Mail Transport Agent: postfixcp: cannot create regular
file `/var/spool/postfix//etc/ssl/certs': No such file or directory
invoke-rc.d: initscript postfix, action "restart" failed.
dpkg: error processing postfix (--configure):
 subprocess installed post-installation script returned error exit
status 1
Errors were encountered while processing:
 postfix


Regards,
robert



-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (200, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.37-1-686 (SMP w/1 CPU core)
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)
Shell: /bin/sh linked to /bin/dash

Versions of packages postfix depends on:
ii  adduser   3.112+nmu2 add and remove users and groups
ii  debconf [debconf-2.0] 1.5.38 Debian configuration management sy
ii  dpkg  1.15.8.10  Debian package management system
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libdb4.8  4.8.30-5   Berkeley v4.8 Database Libraries [
ii  libsasl2-22.1.23.dfsg1-7 Cyrus SASL - authentication abstra
ii  libssl0.9.8   0.9.8o-5   SSL shared libraries
ii  lsb-base  3.2-27 Linux Standard Base 3.2 init scrip
ii  netbase   4.45   Basic TCP/IP networking system
ii  ssl-cert  1.0.28 simple debconf wrapper for OpenSSL

Versions of packages postfix recommends:
ii  python  2.6.6-3+squeeze5 interactive high-level object-orie

Versions of packages postfix suggests:
ii  bsd-mailx [mail-re 8.1.2-0.20100314cvs-1 simple mail user agent
pn  dovecot-common (no description available)
ii  icedove [mail-read 3.0.11-1+b1   mail/news client with RSS and inte
ii  libsasl2-modules   2.1.23.dfsg1-7Cyrus SASL - pluggable authenticat
ii  mailutils [mail-re 1:2.2+dfsg1-3 GNU mailutils utilities for handli
ii  mutt [mail-reader] 1.5.20-9+squeeze1 text-based mailreader supporting M
pn  postfix-cdb(no description available)
pn  postfix-ldap   (no description available)
pn  postfix-mysql  (no description available)
pn  postfix-pcre   (no description available)
pn  postfix-pgsql  (no description available)
ii  procmail   3.22-19   Versatile e-mail processor
ii  resolvconf 1.48  name server information handler
pn  sasl2-bin  (no description available)
pn  ufw(no description available)




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



Bug#610745: binutils-multiarch target list update

2011-02-22 Thread Neil Williams
On Wed, 23 Feb 2011 00:46:14 +0100
Loïc Minier  wrote:

> Hi
> 
> On Sat, Jan 22, 2011, Loïc Minier wrote:
> >  Instead of maintaining a hardcoded list, I proposed using
> >  --enable-targets=all:
> >  http://article.gmane.org/gmane.linux.debian.devel.embedded/5976
> > 
> >  I don't think consensus was reached that we want --enable-targets=all,
> >  only Neil commented and didn't seem too happy with larger packages.  I
> >  personally think it doesn't matter on machines where binutils-multiarch
> >  is installed.
> 
>  So talked to Neil about this, and he believed that now that debhelper
>  has been fixed to call $cross-objdump and -strip, dpkg-cross can stop
>  depending on binutils-multiarch and simply suggest it.  I understand he
>  is ok with moving to --enable-targets=all now.

Confirmation. dpkg-cross has been uploaded to unstable with only a
Suggests on binutils-multiarch due to fixes in debhelper 8.1.2.
dpkg-cross can't depend or recommend debhelper directly but there's a
note in NEWS.Debian to this effect. debhelper should migrate before
dpkg-cross.

In a majority of cases, developers who have dpkg-cross installed should
find that binutils-multiarch becomes listed under apt-get autoremove
but it might help to make this change more public (planet.debian.org
etc.) so that more people realise that their system might not need
binutils-multiarch anymore.

I think it would be wise to wait until the new dpkg-cross has migrated
into testing before expanding binutils-multiarch.

In other news, cross-building on MultiArch experiments are going well
and dpkg-cross itself should be incidental to cross-building in Wheezy
and might even be unnecessary.

-- 

Neil Williams
=
codeh...@debian.org



pgpOSqUZ6FONh.pgp
Description: PGP signature


Bug#612085: dies forever when once there was no reachable mailhost

2011-02-22 Thread redomen
Package: xfce4-mailwatch-plugin
Version: 1.1.0-3
Severity: normal

I have the same problem when I have the plugin set to check both a pop3 and
gmail account. It crashes every couple weeks and removes itself from my panel.
I haven't been able to setup a backtrace for it but found this in dmesg:
xfce4-mailwatch[22768] general protection ip:417015 sp:7f898e75fd48 error:0 in 
xfce4-mailwatch-plugin (deleted)[40+1f000]


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

Kernel: Linux 2.6.36.1a (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xfce4-mailwatch-plugin depends on:
ii  libc6 2.11.2-11  Embedded GNU C Library: Shared lib
ii  libgcrypt11   1.4.5-2LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgnutls26   2.10.4-2   the GNU TLS library - runtime libr
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  libxfce4util4 4.6.2-1Utility functions library for Xfce
ii  libxfcegui4-4 4.6.4-1Basic GUI C functions for Xfce4
ii  xfce4-panel   4.6.4-1The Xfce4 desktop environment pane

xfce4-mailwatch-plugin recommends no packages.

xfce4-mailwatch-plugin suggests no packages.

-- no debconf information



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



Bug#614079: [Pkg-alsa-devel] Bug#614079: Bug#614079: ALSA does not work with CA0106 chipset

2011-02-22 Thread Karsten Malcher
On Tue, 22 Feb 2011 23:09:15 +0100, Elimar Riesebieter 
wrote:
> * Karsten Malcher [110222 21:53 +0100]:
> [...]
>> > Your sound should work perfect!
>> 
>> Should - but there is only noise.
>> Driver broken?
> 
> Mixer controls muted?

I can check this at the weekend - i am on another place.
But if it would be muted, why there is the noise output only when sound
plays?

> 
> Elimar

Karsten



-- 
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