Bug#1009082: Please rebuild darktable 3.8.1. against newer exiv2 for CR3 support

2022-04-06 Thread Mike Brodbelt

Package: darktable
Version: 3.8.1-1
Severity: wishlist

The debian darktable package does not support Canon CF3 files. Darktable 
has included this support since verion 3.8.0. Rebuilding against a newer 
exiv2 package (>= 0.27.5-2, which added BMFF support, closing #1000788) 
will fix this.


From the build logs for the current package:-

 -- Found JsonGlib
 -- Found Exiv2: /usr/lib/x86_64-linux-gnu/libexiv2.so (Required is at 
least version "0.24")

 -- Looking for EXV_ENABLE_BMFF
 -- Looking for EXV_ENABLE_BMFF - not found
 -- Exiv2 >= 0.27.4 found, but was not compiled with ISOBMFF support 
(CR3, AVIF, HEIF)

 -- Found OpenJPEG

Recompiling and re-uploading should fix this, and enable this major new 
feature in the official Debian package.


Thanks,

Mike



Bug#1000788: (no subject)

2022-03-24 Thread Mike Brodbelt
Echoing previous comment. This bug was to enable CR3 support, which 
requires BMFF enablement, no just a version bump.


From https://exiv2.org/whatsnew.html

 * Support for bmff files (HEIC, HEIF, AVIF, CR3, JXL/bmff)

This is arguably the most important new feature in the new version of 
exiv2, so enabling it in the build is required to support any of these 
file formats.




Bug#900856: enlightenment: Sound fails to work after upgrade

2018-06-29 Thread Mike Brodbelt

On 29/06/18 04:26, Felipe Sateler wrote:

Thanks. However, it has some flaws that need to be reworked for this to 
work at all:


1. We can't rely on gcc being installed


Would "dpkg-architecture -qDEB_BUILD_MULTIARCH" be a reasonable replacement?


2. It doesn't check /proc is actually mounted
3. dpkg status check is racy: sysvinit might be upgraded at the same 
time, and thus not be "installed"
4. dpkg status check is for the wrong package: sysvinit no longer exists 
(I think you want sysvinit-core).

5. The postinst should be the one for libpulse0, not pulseaudio


Will have a poke at these when I get a minute.


You missed the conffile mark because it is shipped in libpulse0 :)


That would explain that :-)

I don't have objections in principle, but I want a good and relatively 
not-risky implementation first.


Ack.

BTW, it might be easier to do the review/fixup dance in a merge request 
on salsa: https://salsa.debian.org/pulseaudio-team/pulseaudio


OK. Haven't played with that before, but will have a look.

Mike



Bug#900856: enlightenment: Sound fails to work after upgrade

2018-06-28 Thread Mike Brodbelt

On 21/06/18 12:34, Felipe Sateler wrote:

Patches welcome. If you decide to implement this, make sure that the 
code is only active with a running sysvinit (ie, don't affect chroots).  
It is not trivial, which is why I didn't implement it myself. You 
probably need to integrate ucf to handle all the corner cases.


Patch attached. I haven't gone through all the steps of integrating ucf 
- the disable autospawn file isn't currently marked in the package as a 
conffile, so this patch, while it works in my limited testing, could 
still be improved on there.


LMK what you think - if you're happy with this approach and will 
integrate it, I can work on ucf integration as well.


Mike
--- /var/lib/dpkg/info/pulseaudio.postinst	2018-04-05 19:55:56.0 +0100
+++ pulseaudio.postinst	2018-06-28 23:01:17.801244088 +0100
@@ -16,6 +16,34 @@
 
 PULSEAUDIO=/usr/bin/pulseaudio
 
+check_sysvinit() {
+  # Get the major/minor numbers for the root device
+  local rdev=$(printf %04.0f $(stat -c %D /) | sed 's/../&:/')
+  # Get the default target triplet for the system
+  local arch=$(gcc -print-multiarch)
+  # Retrieve PID 1's mapped binaries from the root fs
+  local binmaps=`awk "/$rdev/ {print \\$6}" /proc/1/maps | grep -v $arch | uniq | xargs`
+
+  local status
+  status=$(dpkg -s sysvinit 2>/dev/null | grep ^Status: | sed -e 's/^Status: \(.*\) \(.*\) \(.*\)/\3/g')
+
+  # If the sysvinit package is installed, and it's binary is mapped as PID 1,
+  # then we can assume we are on a sysvinit system, and not simply in a chroot
+  # environment.
+  if  [ -n "$status" ] && [ "$status" == "installed" ]; then
+	  if  [ -n "$binmaps" ] && [ "$binmaps" == "/sbin/init" ]; then
+		  return 0
+	  fi
+  fi
+  return 1
+}
+
+config_autospawn() {
+	if check_sysvinit; then
+		rm -f /etc/pulse/client.conf.d/00-disable-autospawn.conf
+	fi
+}
+
 trigger_udev() {
 	if ! which udevadm >/dev/null 2>&1 ; then
 		return 0;
@@ -36,6 +64,7 @@
   addgroup --quiet --system pulse-access
 fi
 trigger_udev
+config_autospawn
   ;;
   abort-upgrade|abort-remove|abort-deconfigure)
   ;;


Bug#900856: enlightenment: Sound fails to work after upgrade

2018-06-20 Thread Mike Brodbelt

On 19/06/18 02:35, Ross Vandegrift wrote:


While upgrading a different machine from stretch -> buster, I noticed
the following in apt-listchanges output:

pulseaudio (11.1-2) unstable; urgency=medium

   * Since this version, pulseaudio disables autospawn by default on linux
 systems, and replaces that with systemd socket activation. If you are not
 using systemd, then please edit or remove
 /etc/pulse/client.conf.d/00-disable-autospawn.conf
 to re-enable it.

Seems relevant to your issue - the grep above didn't look in
/etc/pulse/client.conf.d.


Many thanks, that seems to be it, and that behaviour change is fairly 
non obvious without reading the changelog.


Perhaps the pulseaudio postinstall script could do a better job here? It 
should be possible to detect the active init system on install, and not 
disable autospawn unless systemd is positively detected, surely.


Mike



Bug#900533: chromium 67.0.3396.62-1: youtube video, gif's, html5, and movies no longer work

2018-06-06 Thread Mike Brodbelt
Same problem as other reporters, also resolved by downgrading chromium, 
chromium-common, and chromium-l10n to 66.0.3359.181-1.




Bug#900856: enlightenment: Sound fails to work after upgrade

2018-06-05 Thread Mike Brodbelt
Package: enlightenment
Version: 0.22.1-3
Severity: normal

After upgrading from the venerable e17 package, sounds stopped working
entirely on my desktop. I am not 100% certain whether the situation here
is a bug in the Enlightenment package, or elsewhere, but I'm filing it
here as it was triggered by an upgrade to E.

Doing some investigation into this, I enabled "PulseAudio Sound System"
in Settings > Apps > Startup Applications. This didn't work - it seems
to execute 'start-pulseaudio-x11' at login, which fails because it's
executed at a point at which there is no pulseaudio daemon running:-

$ start-pulseaudio-x11
Connection failure: Connection refused
pa_context_connect() failed: Connection refused

Sound can be fairly trivially re-enabled by starting the user daemon
from a terminal after login:-

$ pulseaudio  --start --log-target=syslog

At this point, it's still necessary to go into the settings for the
mixer, and click "apply" without making any changes, at which point
sound is usable as expected.

According to docs, the pulseaudio daemon is supposed to be auto-spawned
on demand if the libraries are used, but that appears not to be
happening. My startup sequence is lightdm -> Enlightenment, and the
autospawn setting of pulseaudio has not been changed from the Debian
default.


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

Kernel: Linux 4.16.0-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)
LSM: AppArmor: enabled

Versions of packages enlightenment depends on:
ii  dbus-x11 [dbus-session-bus]  1.12.8-2
ii  enlightenment-data   0.22.1-3
ii  libasound2   1.1.6-1
ii  libbluetooth35.49-4
ii  libc62.27-3
ii  libecore-con11.20.7-4
ii  libecore-evas1   1.20.7-4
ii  libecore-file1   1.20.7-4
ii  libecore-input1  1.20.7-4
ii  libecore-ipc11.20.7-4
ii  libecore-x1  1.20.7-4
ii  libecore11.20.7-4
ii  libedje-bin  1.20.7-4
ii  libedje1 1.20.7-4
ii  libeet1  1.20.7-4
ii  libeeze1 1.20.7-4
ii  libefreet-bin1.20.7-4
ii  libefreet1a  1.20.7-4
ii  libeina1a1.20.7-4
ii  libeio1  1.20.7-4
ii  libelementary1   1.20.7-4
ii  libemile11.20.7-4
ii  libemotion1  1.20.7-4
ii  libevas1 1.20.7-4
ii  libevas1-engines-x   1.20.7-4
ii  libpam0g 1.1.8-3.7
ii  libpulse011.1-5
ii  libxcb-keysyms1  0.4.0-1+b2
ii  libxcb-shape01.13-1
ii  libxcb1  1.13-1

Versions of packages enlightenment recommends:
ii  gnome-terminal [x-terminal-emulator]  3.28.2-1
ii  pm-utils  1.4.1-18
ii  terminology [x-terminal-emulator] 1.2.1-1
ii  xterm [x-terminal-emulator]   333-1

enlightenment suggests no packages.

-- no debconf information



Bug#795871: Hang on shutdown

2015-12-21 Thread Mike Brodbelt
I am also observing an unrecoverable hang on system shutdown. I added 
'-x' to the shell invocation in /lib/cryptsetup/cryptdisks.functions and 
that clearly shows that the shell script never returns from the call to 
cryptsetup:-


cryptsetup luksClose "$dst"

System config is /boot and / on normal devices, and /home on a LUKS 
device, with sysvinit (not systemd).


Mike



Bug#593366: e17: Enable connman module in build

2013-06-19 Thread Mike Brodbelt
Package: e17
Version: 0.17.1-2
Followup-For: Bug #593366

The connman module is still explicitly blocked from being built in the
latest release of the e17 package. As this is the preferred network
connection manager for E17, it would be nice to have it on. While
network manager is usable, it doesn't integrate very well. The note
in the changelog where this is referenced is now almost 3 years old,
and refers to a version of e17 that predates the release.

Mike

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (750, 'unstable'), (600, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 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 e17 depends on:
ii  dbus-x11   1.6.12-1
ii  e17-data   0.17.1-2
ii  libasound2 1.0.27.1-1
ii  libc6  2.17-5
ii  libdbus-1-31.6.12-1
ii  libecore-con1  1.7.4-2
ii  libecore-evas1 1.7.4-2
ii  libecore-file1 1.7.4-2
ii  libecore-imf1  1.7.4-2
ii  libecore-input11.7.4-2
ii  libecore-ipc1  1.7.4-2
ii  libecore-x11.7.4-2
ii  libecore1  1.7.4-2
ii  libedbus1  1.7.4-2
ii  libedje-bin1.7.4-3
ii  libedje1   1.7.4-3
ii  libeet11.7.7-1
ii  libefreet1 1.7.4-2
ii  libeina1   1.7.7-1
ii  libeio11.7.4-2
ii  libevas1   1.7.4-4
ii  libevas1-engines-x [libevas1-engine-software-x11]  1.7.4-4
ii  libpam0g   1.1.3-9
ii  libxcb-keysyms10.3.9-1
ii  libxcb-shape0  1.9.1-3
ii  libxcb11.9.1-3

e17 recommends no packages.

e17 suggests no packages.

-- Configuration Files:
/etc/enlightenment/sysactions.conf changed [not included]

-- 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#702690: Tree links dont work

2013-05-13 Thread Mike Brodbelt

On 12/05/13 15:25, Paul Gevers wrote:


Can both of you acknowledge that you had libjs-jquery already installed
and were just missing libjs-jquery-cookie?

Until now I had only tested either with both libjs-jquery and
libjs-jquery-cookie installed or both not installed. That works. It fail
when the former is present and the latter is not. I don't know how to
solve that yet.


I believe I hadn't got either of them installed, but I can't be 100% 
certain from memory at this stage.


I did this as part of the process of upgrading a production monitoring 
server from Lenny to Squeeze (which is our current baseline). For some 
packages we're particularly interested in (and Cacti is one of these) I 
cherry pick from backports, or manually rebuild.


From memory, I think neither libjs-jquery nor libjs-jquery-cookie were 
installed. The packages I downloaded and which are currently installed 
are these:-


80192 Mar 16 17:28 libjs-jquery_1.7.2+dfsg-1~bpo60+1_all.deb
 5976 Mar 16 17:28 libjs-jquery-cookie_4-1~bpo60+1_all.deb

I'm fairly sure that neither of them had any previous version on the 
system before I upgraded Cacti, and those are the current versions of both.


HTH,

Mike


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



Bug#704178: Acknowledgement (xserver-xorg-video-intel: [Ivybridge] Overlay window causing colour cast appears during video playback)

2013-04-14 Thread Mike Brodbelt


Some further information on this bug. It turns out that it does not only 
appear during video playback, but also happens for windows that are 
animating, or moving large amounts of graphics data in other ways.


For example, the coverflow area of a Calibre window can demonstrate 
the behaviour, as can a browser window which is rapidly moving (i.e. 
Google Street View, when moving around).


Currently installed versions of X packages are:-

ii  x11-xserver-utils7.7~3 amd64
ii  xserver-common   2:1.12.4-5all
ii  xserver-xephyr   2:1.12.4-5amd64
ii  xserver-xorg 1:7.7+2   amd64
ii  xserver-xorg-core2:1.12.4-5amd64
ii  xserver-xorg-input-all   1:7.7+2   amd64
ii  xserver-xorg-input-evdev 1:2.7.0-1+b1  amd64
ii  xserver-xorg-input-synaptics 1.6.2-2   amd64
ii  xserver-xorg-input-wacom 0.15.0+20120515-2 amd64
ii  xserver-xorg-video-intel 2:2.20.14-1   amd64

Mike


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



Bug#702690: Latest deb still causes problem

2013-04-04 Thread Mike Brodbelt

On 03/04/13 19:01, Paul Gevers wrote:

Hi Mike,

Do I understand you correctly that you say that the problem goes away
with installation of libjs-jquery-cookie and libjs-jquery? Than I think
you did not understand the original bug properly. Indeed
libjs-jquery-cookie and libjs-jquery are needed to use the javascript
functionality to fold the tree, but without them you have the html
equivalent tree (which you can't fold).


When I installed the new package, I ended up with a non-functional tree. 
Installing libjs-jquery and libjs-jquery-cookie solved my issue, by 
making the javascript foldable tree work.



If the answer is yes than the bug is still closed. If the answer is
no, even with libjs-jquery-cookie and libjs-jquery the grouping does
not work than the bug should be reopened, but I then request a
screen-shot of how it goes wrong and if possible you can tell me how to
create a tree that fails.


With libjs-jquery-cookie and libjs-jquery installed, the tree works. 
Without them installed, I get a non-working html tree - although I can 
see in the source that the links are there, clicking on the tree 
elements does not switch the main frame to display the correct graphs. I 
tested this in Firefox and Chrome to make sure it wasn't just a browser 
issue.



Regarding the depends vs recommends, I really think the
libjs-jquery-cookie and libjs-jquery should be recommends. Recommended
packages are installed by default in Debian since Squeeze.


If it's intended to provide a working HTML tree without the js libs, I 
completely agree, recommends is just fine. My take on this was based 
on the fact that I ended up with a non functional install after the 
upgrade, and the javascript libs fixed my immediate problem.


Mike


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



Bug#702690: Latest deb still causes problem

2013-04-03 Thread Mike Brodbelt

Hi,

I've just seen this bug crop up with the new deb, so I'm not convinced 
it's completely fixed.


FWIW, I manually rebuilt the deb from source on a squeeze host, as I 
wanted the newest available cacti package on my monitoring machine. 
AFAIK there are no binary components though, so I very much doubt this 
made any difference. On installing the new deb, I immediately had the 
same tree fail as described here.


When I looked into this bug, I relatively trivially fixed the issue by 
installing libjs-jquery-cookie and libjs-jquery from Squeeze backports. 
However, the current package lists these as Recommends, and I think 
they need to become Depends, as from what I can see the integration of 
the earlier patches in this bug means that the Cacti interface will not 
function correctly without system versions of these libraries installed.


Mike


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



Bug#699809: cfengine3: Request to package newer version

2013-02-05 Thread Mike Brodbelt
Package: cfengine3
Severity: wishlist
Tags: patch

The newest available version of cfengine3 in Debian is 3.2.4, which is now
almost a year old. Several significant new features have been added since
that version, including (to name a few useful ones) XML editing, POSIX ACL
support, promise dependency handling, and a lot of other useful system
variables.

The attached file represents changes I've made to the cfengine 3.4.2 source
to make it build into a debian package as close to the existing one as I can
get it, with the exception of the documentation, which isn't built. It's
based on the 3.2.4 package with modifications - it's probably also worth
mentioning that the test suite fails if any of the test source files are
group-writable.

Mike


cfengine3_3.4.2-1.debian.tar.gz
Description: GNU Zip compressed data


Bug#692280: geeqie-gps: GPS maps feature is non-fucntional

2012-11-04 Thread Mike Brodbelt
Package: geeqie-gps
Version: 1:1.0-7
Severity: important

The GPS features in Geeqie don't work properly. I'm filing this as important
as it's against geeqie-gps, and the only reason for that package to exist, as
far as I can see, is to provide the non functional features.

On startup, there is no visiable GPS information for images known to have GPS
metadata in their EXIF tags. Looking into this, the GPS features require
a pane to be enabled in the configuration. If you add this stanza:-

pane_gps id = gps title = GPS Map expanded = true height = 350 
map-id = osm-transportmap 
zoom-level = 1 
latitude = 51390100 
longitude = -306216 
/

to the ~/.config/geeqie/geeqierc.xml configuration file, then the GPS pane does
appear in the sidebar, however I am still unable to get it to load an actual map
- all I get is a grey square. There appears to be no method in the GUI to enable
the feature, so the only route to turning it on is hand editing the config file.

Geeqie builds against libchamplain-0.4, and requires this version. Changing the
autoconf setup to configure it against the current libchamplain (0.12) results
in a compilation failure, as the libchamplain API has changed in the meantime.
Other software that uses libchamplain 0.12 (e.g. EOG) works correctly and
displays a map.

This is probably an upstream problem, but the feature appears to be completely
unusable in its current state.

Mike


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

Kernel: Linux 3.3.1+ (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 geeqie-gps depends on:
ii  geeqie-common   1:1.1-6
ii  libc6   2.13-33
ii  libchamplain-0.4-0  0.4.6-2+b1
ii  libchamplain-gtk-0.4-0  0.4.6-2+b1
ii  libclutter-1.0-01.10.8-2
ii  libclutter-gtk-0.10-0   0.10.4-1
ii  libexiv2-9  0.20-2.1
ii  libgcc1 1:4.7.0-11
ii  libglib2.0-02.33.12+really2.32.4-1
ii  libgtk2.0-0 2.24.10-2
ii  liblcms11.19.dfsg-1.2
ii  liblircclient0  0.9.0~pre1-1
ii  libpango1.0-0   1.30.0-1
ii  libstdc++6  4.7.0-11

Versions of packages geeqie-gps recommends:
ii  exiftran 2.07-10+b1
ii  exiv20.20-2.1
ii  imagemagick  8:6.7.7.2-1
ii  ufraw0.18-1.1+b1
ii  zenity   3.4.0-2

Versions of packages geeqie-gps suggests:
pn  geeqie-dbg none
pn  gimp   2.8.0-2
pn  libjpeg-progs  8d-1
pn  xpaint none


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



Bug#671237: libeina1: Please package newer version of EFL libs

2012-05-02 Thread Mike Brodbelt
Package: libeina1
Version: 1.1.0-1
Severity: wishlist
Tags: patch

The version of eina (and the other EFL libs) in Debian is now very
old - please package newer versions of libs/E17. The attached
file is a diff against the release tarball of Eina 1.1.0 which
will build binary debs for libeina1, libeina-dbg, libeina-dev
and libeina-doc. I have tested the build on i386 and amd64.


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

Kernel: Linux 3.3.1+ (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 libeina1 depends on:
ii  libc6  2.13-30

libeina1 recommends no packages.

libeina1 suggests no packages.

-- no debconf information


eina_1.1.0-1.debian.tar.gz
Description: GNU Zip compressed data


Bug#667799: [3.0 - 3.2.13 regression] Radeon KMS fails on Radeon X850XT (R480) graphics card

2012-04-09 Thread Mike Brodbelt

On 09/04/12 15:11, Jonathan Nieder wrote:

tags 667799 + upstream patch moreinfo
found 667799 linux-2.6/3.3-1~experimental.1
quit



If you get a chance to try it, please report the result to the
upstream bugtracker.  This information can be used to help decide
whether and how quickly to apply the patch to mainline and the stable
trees.


I have done basic testing. Pulling a kernel source tree for 3.3.y and 
applying the patch results in a new kernel which now boots successfully.


Currently running kernel is :-

$ uname -a
Linux mordor 3.3.1+ #5 SMP Tue Apr 10 01:53:45 BST 2012 x86_64 GNU/Linux

Which is working I've not tested this tree without the patch yes, so 
can't be 100% certain, but that patch is looking pretty convincing so far.


Mike




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



Bug#667799: Radeon KMS fails on Radeon X850XT (R480) graphics card

2012-04-07 Thread Mike Brodbelt

Hi,


Thanks for reporting it.  Am I correct in assuming v3.3 from
experimental behaves the same way?


Yes, the bug is still present with that kernel.


If so, please report this upstream tohttp://bugs.freedesktop.org/,
product DRI, component DRM/Radeon, and let us know the bug number so
we can track it.


Now reported upstream, with attached logs, as Bug 48422.

Mike





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



Bug#667799: linux-image-3.2.0-2-amd64: Radeon KMS fails on Radeon X850XT (R480) graphics card

2012-04-06 Thread Mike Brodbelt
Package: linux-2.6
Version: 3.2.13-1
Severity: important

Upgrading to any 3.2 kernel has caused video output to fail. On a 3.0.0 kernel
(linux-image-3.0.0-2-amd64) the system performs as expected, however the 3.2
kernel packages do not work. At system boot, initial kernel output appears on
the VGA console, until the drm driver is loaded, when the kernel switches the
output font and resolution. Boot continues until a subsequent switch - I think
this is when the kernel attempts to modeswitch the card. One a 3.0 kernel the
font visibly changes at this point and boot continues, but on 3.2, all video
output ceases. The machine completes its boot cycle and is reachable over SSH,
but console/X display is unreachable, and there is no video output.

Reporting as important as if effectively renders the system unusable as a
desktop, though it's not at all clear how common the affected hardware setup
to cause this is.

Mike 


-- Package-specific info:
** Kernel log: boot messages should be attached

** Model information
sys_vendor: System manufacturer
product_name: P5E WS Pro
product_version: System Version
chassis_vendor: Chassis Manufacture
chassis_version: Chassis Version
bios_vendor: American Megatrends Inc.
bios_version: 0202   
board_vendor: ASUSTeK Computer INC.
board_name: P5E WS Pro
board_version: Rev 1.xx

** Network interface configuration:

auto lo
iface lo inet loopback

allow-hotplug eth0
iface eth0 inet dhcp

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation 82X38/X48 Express DRAM Controller 
[8086:29e0] (rev 01)
Subsystem: ASUSTeK Computer Inc. Device [1043:8295]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort+ SERR- PERR+ INTx-
Latency: 0
Capabilities: access denied
Kernel driver in use: x38_edac

00:01.0 PCI bridge [0604]: Intel Corporation 82X38/X48 Express Host-Primary PCI 
Express Bridge [8086:29e1] (rev 01) (prog-if 00 [Normal decode])
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: a000-afff
Memory behind bridge: fe60-fe6f
Prefetchable memory behind bridge: d000-dfff
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA+ MAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: access denied
Kernel driver in use: pcieport

00:1a.0 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #4 [8086:2937] (rev 02) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Device [1043:8277]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 16
Region 4: I/O ports at 9800 [size=32]
Capabilities: access denied
Kernel driver in use: uhci_hcd

00:1a.1 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #5 [8086:2938] (rev 02) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Device [1043:8277]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin B routed to IRQ 21
Region 4: I/O ports at 9880 [size=32]
Capabilities: access denied
Kernel driver in use: uhci_hcd

00:1a.2 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #6 [8086:2939] (rev 02) (prog-if 00 [UHCI])
Subsystem: ASUSTeK Computer Inc. Device [1043:8277]
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin C routed to IRQ 18
Region 4: I/O ports at 9c00 [size=32]
Capabilities: access denied
Kernel driver in use: uhci_hcd

00:1a.7 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #2 [8086:293c] (rev 02) (prog-if 20 [EHCI])
Subsystem: ASUSTeK Computer Inc. Device [1043:8277]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: 

Bug#611659: cfengine seems to dislike Debian's symlinks

2011-05-31 Thread Mike Brodbelt
Seeing the same behavious on my installation. Reversing the direction of
the symlink, so making /var/lib/cfengine3/inputs a real directory and
/etc/cfengine3 a symlink to it seems to fix the problem, while retaining
the desired bahaviour.

Mike



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



Bug#619589: cannot install e17 package

2011-04-21 Thread Mike Brodbelt
Package: e17
Version: 0.16.999.49898-1
Followup-For: Bug #619589


Have had the same problem as other users have reported. Changed to E core libs
in the debian archive have rendered the e17 package uninstallable. After a
recent upgrade, my e17 was automatically removed, which I failed to notice.
It's taken me a couple of hours to manually remove the new libs and reconstruct
the missing dependencies from snapshot.debian.org so I could reinstall e17.

Mike


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

Kernel: Linux 2.6.38-2-686 (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 e17 depends on:
ii  dbus-x111.4.8-2  simple interprocess messaging syst
ii  e17-data0.16.999.49898-1 Enlightenment Window Manager Run T
ii  libasound2  1.0.23-3 shared library for ALSA applicatio
ii  libc6   2.11.2-11Embedded GNU C Library: Shared lib
ii  libdbus-1-3 1.4.8-2  simple interprocess messaging syst
ii  libecore-con-svn-06 0.9.9.49898-1Ecore Connection Library
ii  libecore-evas-svn-060.9.9.49898-1Ecore Evas Wrapper Library
ii  libecore-file-svn-060.9.9.49898-1Ecore File Library
ii  libecore-imf-svn-06 0.9.9.49898-1Ecore Input Method Framework modul
ii  libecore-input-svn-06   0.9.9.49898-1Ecore input module
ii  libecore-ipc-svn-06 0.9.9.49898-1Ecore inter-process communication 
ii  libecore-svn-06 0.9.9.49898-1Core abstraction layer for enlight
ii  libecore-x-svn-06   0.9.9.49898-1Ecore functions for dealing with t
ii  libedbus-svn-06 0.5.0.49898-1D-Bus and HAL wrapper libraries fo
ii  libedje-bin 0.9.99.49898-1   Various binaries for use with libe
ii  libedje-svn-06  0.9.99.49898-1   Graphical layout and animation lib
ii  libeet1 1.3.2-1  Enlightenment DR17 file chunk read
ii  libefreet-svn-060.5.0.49898-1Library that implements freedeskto
ii  libeina-svn-06  0.9.9.49898-2Enlightenment Foundation Library p
ii  libevas-svn-06  0.9.9.49898-1Enlightenment DR17 advanced canvas
ii  libevas-svn-06-engines- 0.9.9.49898-1Evas module providing the X11 engi
ii  libpam0g1.1.2-2  Pluggable Authentication Modules l
ii  libx11-62:1.4.3-1X11 client-side library
ii  libxext62:1.2.0-2X11 miscellaneous extension librar

e17 recommends no packages.

e17 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#617624: xserver-xorg-video-radeon: serious performance regression with 6.14 versions of driver and R480 chip (X850 XT)

2011-03-10 Thread Mike Brodbelt
* Michel Dänzer daen...@debian.org [110310 08:27]:
 
 Which window / compositing manager is that with? Does it use OpenGL?

WM is Enlightenment DR17, from the e17 0.16.999.49898-1 Debian package.

  The poor performance is also causing perceptible flicker in terminals
  while typing.
 
 Which terminal emulator application is that with?

Eterm - though I'm of the opinion that the terminal emulator isn't
actually relevant. The problem appears to be affecting any application
that moves substantial amounts of graphics data around - so scrolling a
large amount of text in a terminal window causes visible flicker.
Equally, rapidly moving a window around the desktop causes very obvious
lag as the X server struggles to keep up, with ghost images being left
around for a short period afterwards. 

This happened after a dist-upgrade, so something ha clearly regressed
pretty severaly with my configuration. I've tried with the xorg.conf in
place, and also without any xorg.conf at all with the same results. I've
also tried with 2.6.32 and 2.6.37 kernels.

GL support is enabled, but the window manager does not have the
compositing module loaded. Performance with glxgears is hovering around
60 frames/sec, but that may be due to syncing to Vblank. I've not tried
much with 3d yet, as I mostly use 2d apps. Any suggestions as to how to
narrow it down would be gratefully received

Mike



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



Bug#617624: xserver-xorg-video-radeon: serious performance regression with 6.14 versions of driver and R480 chip (X850 XT)

2011-03-10 Thread Mike Brodbelt

On 10/03/11 13:57, Michel Dänzer wrote:


Eterm - though I'm of the opinion that the terminal emulator isn't
actually relevant.


Well, if it uses core X11 fonts, then text is rendered in software,
which could certainly explain at least some of the issues. If you're
using a non-anti-aliased font in the terminal, does switching to an
anti-aliased one improve terminal performance?


I've tried this again now with Xterm, using xterm -fa 'Mono' -fs 8 as 
the launch command line, which uses an anti-aliased font. There doesn't 
appear to be any improvement.



The problem appears to be affecting any application that moves
substantial amounts of graphics data around - so scrolling a
large amount of text in a terminal window causes visible flicker.
Equally, rapidly moving a window around the desktop causes very
obvious lag as the X server struggles to keep up, with ghost images
being left around for a short period afterwards.


I'm afraid that's rather vague and doesn't ring any bells.


Sorry - best description I could come up with. It's vaguely reminiscent 
of moving from outline window moving to opaque window moving years ago, 
when graphics cards were more underpowered than they are these days...



Then I don't suppose Option ColorTiling off helps, as I don't think
that could have been enabled with 2.6.32.


Aha. That appears to have cured it.

So, it looks like that option is the cause of a significant performance 
drop, which affects the desktop feel quite a bit.


If there's anything more I can do to narrow this down further and help 
it towards something useful to developers, I'm happy to test.


Thanks,

Mike



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



Bug#584934: lidb4.7: Incorrect Build-Depends

2010-06-07 Thread Mike Brodbelt
Package: lidb4.7
Version: 4.7.25-9
Severity: normal


Source package of libdb4.7 fails to build from source on a Lenny host with all 
noted
build deps installed. This appears to be due to a change in the behaviour of 
mktemp
in the newer coreutils package:-

mkdir debian/libdb4.7-java-gcj
(TMPFILE=$(mktemp --tmpdir sourcelist.XX)  \
find /usr/build/slapd/deps/db4.7-4.7.25 -type f ! -type l $TMPFILE  \
aot-compile -L /usr/lib/gcj -c -fsource-filename=$TMPFILE 
debian/libdb4.7-java debian/libdb4.7-java-gcj/usr/lib/gcj; \
retval=checkroot build install-stamp; \
rm -f $TMPFILE; exit $retval)
mktemp: invalid option -- -
Usage: mktemp [-V] | [-dqtu] [-p prefix] [template]
/bin/sh: line 3: build: command not found
mkdir -p debian/libdb4.7-java-gcj/usr/share/gcj/classmap.d
mv debian/libdb4.7-java-gcj/usr/lib/gcj/*.db 
debian/libdb4.7-java-gcj/usr/share/gcj/classmap.d
mv: cannot stat `debian/libdb4.7-java-gcj/usr/lib/gcj/*.db': No such file or 
directory
make: *** [binary-arch] Error 1

Ther version of mktemp provided with Lenny does not support the --tempdir 
option,
but has an apparently equivalent -t option.

This is not a particularly serious issue, as it only occurs when trying to 
backport
the package, but it looks trivially fixable, so is probably worth the effort.

Mike



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



Bug#454361: xserver-xorg-video-intel: Update to new intel driver breaks Enlightenment

2009-06-27 Thread Mike Brodbelt

Brice Goglin wrote:

On Wed, Dec 05, 2007 at 12:17:16AM +, Mike Brodbelt wrote:

Package: xserver-xorg-video-intel
Version: 2:2.2.0-1
Severity: normal

The Enlightenment DR16 window manager uses a pager which takes snapshots
of the active windows, and displays miniature versions of these windows
in the pager. After upgrading the video driver, this functionlality has
broken, and the pager simply displays black squares for window
snapshots. This worked perfectly with xserver-xorg-video-i810 1.7.2-4,
and has broken since upgrade.


Does this still happen with latest intel driver from Lenny?
And from unstable or experimental?


Yes, however I have some additional information which suggests the bug
is not actually in the driver.

I recently upgraded the version of the driver on my main desktop
machine, which is using an ATI card with the radeon driver. As the
radeon driver defaults to XAA, I forced the driver to EXA mode with:-

Option AccelMethod EXA

After restarting X, I immediately saw the same bug, which I've
previously seen on an Intel based laptop and a desktop with Intel
onboard graphics. Package versions are:-


xserver-xorg-video-radeon   1:6.12.2-2
xserver-xorg1:7.4+3
xserver-xorg-core   2:1.6.1.901-3

Start of xdpyinfo output:-

name of display::0.0
version number:11.0
vendor string:The X.Org Foundation
vendor release number:10601901
X.Org version: 1.6.1.901


So, this appears to be a bug with EXA on *any* driver.

Mike




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



Bug#496979: Bug #496979: same problem of flickering with a Radeon 7500

2008-09-02 Thread Mike Brodbelt
I'm also seeing this, with a Radeon X850. Reverting the package to the
lenny2 revision fixed it.

Mike



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



Bug#462563: sane-utils: Scanner only accessible under root

2008-03-18 Thread Mike Brodbelt
I have exactly the same problem as the original reporter, with an Epson
RX620. It works fine as root, but fails as a non root user. Appropriate
entries under /proc/bus/usb are only accessible to root.

Using sane-utils 1.0.19-1 from sid.

Mike



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



Bug#428388: xserver-xorg: OpenOffice regularly crashes X, rendering the system unusable

2008-01-14 Thread Mike Brodbelt

I've just hit this bug again, with openoffice.org 2.3.1-1, and XOrg 7.3
packages from Sid.

There appears to be a workaround for the problem available now - see the
info at https://bugzilla.novell.com/show_bug.cgi?id=245711. Concensus
seems to indicate that this isn't a correct solution, but given the
severity of the bug (losing one's whole X session isn't fun), maybe it'd
be worth applying this to the package until upstream finds the real fix.

Mike



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



Bug#454361: xserver-xorg-video-intel: Update to new intel driver breaks Enlightenment

2007-12-05 Thread Mike Brodbelt
* Brice Goglin [EMAIL PROTECTED] [071205 07:21]:
 
 Does it help if you add
 Option AccelMethod XAA
 to the Device section of your xorg.conf?


Yes - that does indeed fix the problem. Presumably this is a bug in EXA
then?

Mike



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



Bug#454361: xserver-xorg-video-intel: Update to new intel driver breaks Enlightenment

2007-12-04 Thread Mike Brodbelt
Package: xserver-xorg-video-intel
Version: 2:2.2.0-1
Severity: normal

The Enlightenment DR16 window manager uses a pager which takes snapshots
of the active windows, and displays miniature versions of these windows
in the pager. After upgrading the video driver, this functionlality has
broken, and the pager simply displays black squares for window
snapshots. This worked perfectly with xserver-xorg-video-i810 1.7.2-4,
and has broken since upgrade.

Mike


-- 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 2007-03-12 21:56 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1672732 2007-11-20 02:03 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated 
Graphics Device (rev 02)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2946 2007-03-12 22:13 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/xorg.conf (xorg 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 /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/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
FontPath/usr/share/fonts/X11/cyrillic
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/75dpi
FontPath/usr/share/fonts/X11/100dpi
# path to defoma fonts
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Loadbitmap
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout gb
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
Option  Emulate3Buttons   true
EndSection

Section InputDevice
Identifier  Synaptics Touchpad
Driver  synaptics
Option  SendCoreEventstrue
Option  Device/dev/psaux
Option  Protocol  auto-dev
Option  HorizScrollDelta  0
EndSection

Section Device
Identifier  Intel 855GM Integrated Graphics
Driver  i810
BusID   PCI:0:2:0
EndSection

Section Monitor
Identifier  Thinkpad X40 Integrated LCD
Option  DPMS
HorizSync   28-51
VertRefresh 43-60
EndSection

Section Screen
Identifier  Default Screen
Device  Intel 855GM Integrated Graphics
Monitor Thinkpad X40 Integrated LCD
DefaultDepth24
SubSection Display
Depth   1
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   16
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   24
Modes   1024x768 800x600 640x480
EndSubSection
EndSection

Section ServerLayout
Identifier  Default Layout
Screen  Default Screen
InputDevice Generic Keyboard
InputDevice Configured Mouse
InputDevice Synaptics Touchpad
EndSection

Section DRI
Mode

Bug#444815: evolution-exchange: Package unusable due to problem with evolution-exchange-storage

2007-10-01 Thread Mike Brodbelt
Package: evolution-exchange
Version: 2.10.3.dfsg-1
Severity: grave
Justification: renders package unusable


Connections to Exchange no longer work. This appears to be because of version
mismatches between versions of evolution-exchanger-storage and evolution. The
package owns /usr/lib/evolution/2.10/evolution-exchange-storage, but there is
no evolution-exchange-storage binary to be found in /usr/lib/evolution/2.12,
and evolution fails to connect to the Exchange server at all. Installing this
upgrade has completely broken a previously functional mail client.


Mike


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

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

Versions of packages evolution-exchange depends on:
ii  evolution   2.12.0-1 groupware suite with mail client a
ii  gconf2  2.20.0-1 GNOME configuration database syste
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libbonobo2-02.20.0-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.20.0-1 The Bonobo UI library
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libcamel1.2-10  1.12.0-1 The Evolution MIME message handlin
ii  libebook1.2-9   1.12.0-1 Client library for evolution addre
ii  libecal1.2-71.12.0-1 Client library for evolution calen
ii  libedata-book1.2-2  1.12.0-1 Backend library for evolution addr
ii  libedata-cal1.2-6   1.12.0-1 Backend library for evolution cale
ii  libedataserver1.2-9 1.12.0-1 Utility library for evolution data
ii  libedataserverui1.2-8   1.12.0-1 GUI utility library for evolution 
ii  libexchange-storage1.2- 1.12.0-1 Backend library for evolution cale
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.20.0-1 GNOME configuration database syste
ii  libgcrypt11 1.2.4-2  LGPL Crypto library - runtime libr
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.1-3 The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome2-0 2.20.0-1 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.20.0-1 A powerful object-oriented display
ii  libgnomeprint2.2-0  2.18.2-1 The GNOME 2.2 print architecture -
ii  libgnomeui-02.20.0-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.0-1   GNOME Virtual File System (runtime
ii  libgnutls13 1.7.19-1 the GNU TLS library - runtime libr
ii  libgpg-error0   1.4-2library for common error values an
ii  libgtk2.0-0 2.12.0-2 The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libldap22.1.30.dfsg-13.5 OpenLDAP libraries
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.18.2-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsoup2.2-82.2.100-1an HTTP library implementation in 
ii  libtasn1-3  0.3.10-1 Manage ASN.1 structures (runtime)
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.30.dfsg-2GNOME XML library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

evolution-exchange recommends no packages.

-- no debconf information




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



Bug#429237: initramfs-tools: Postinst fails on LVM root fs

2007-06-16 Thread Mike Brodbelt
Package: initramfs-tools
Version: 0.88
Severity: important

The postinst of this package attempts to regenerate the initramfs, but
fails on my system.

The root filesystem is an XFS filesystem on LVM/dm-crypt. One of the
functions in /usr/share/initramfs-tools/hook-functions attemptes to
determine this, and fails to operate properly. The failing code is:-

# findout root block device + fstype
eval $(mount | awk '/ \/ / {print root= $1 \nrootfs= $5; exit}')
block=${root#/dev/}
block=${block%[0-9]*}

# Error out if /sys lack block dev
if [ -z ${block} ] || [ ! -e /sys/block/${block} ]; then
echo Error: missing ${block} root ${root} /sys entry
exit 1
fi

On my system, mount returns the following for the root filesystem:-

/dev/mapper/draupnir-root on / type xfs (rw)

The mkinitramfs operation thus bombs out with:-

Error: missing mapper/draupnir-root root /dev/mapper/draupnir-root /sys entry

This leaves the package in a half installed state, and all subsequent uses of
mkinitramfs also fail for the same reason.

I believe this used to work properly with previous versions of the package.

Mike


-- Package-specific info:
-- /proc/cmdline
root=/dev/mapper/draupnir-root ro acpi_sleep=s3_bios 

-- /proc/filesystems
ext3
ext2
msdos
vfat
xfs

-- lsmod
Module  Size  Used by
hdaps   9136  0 
ath_pci89000  0 
button  7952  0 
psmouse34824  0 
iptable_filter  3200  0 
ip_tables  11720  1 iptable_filter
x_tables   14596  1 ip_tables
zd1211rw   47492  0 
ieee80211softmac   27776  1 zd1211rw
ieee80211  30792  2 zd1211rw,ieee80211softmac
ieee80211_crypt 6016  1 ieee80211
nls_iso8859_1   4352  0 
nls_cp437   6016  0 
sd_mod 19984  0 
usb_storage74688  0 
scsi_mod  133132  2 sd_mod,usb_storage
nfs   219756  1 
lockd  57736  2 nfs
nfs_acl 3584  1 nfs
sunrpc147388  4 nfs,lockd,nfs_acl
i915   21376  2 
drm73748  3 i915
rfcomm 35100  0 
l2cap  22276  5 rfcomm
bluetooth  47844  4 rfcomm,l2cap
thermal13832  0 
fan 4868  0 
ac  5252  0 
battery 9988  0 
dm_snapshot16544  0 
dm_mirror  19732  0 
ibm_acpi   30744  0 
speedstep_centrino  7440  1 
freq_table  4484  1 speedstep_centrino
processor  23212  2 thermal,speedstep_centrino
cpufreq_conservative 6432  0 
cpufreq_powersave   2048  1 
nvram   8328  1 
pcmcia 35092  0 
firmware_class  9728  2 zd1211rw,pcmcia
wlan_scan_sta  12544  0 
ath_rate_sample12032  1 
irtty_sir   8192  0 
sir_dev15236  1 irtty_sir
wlan  182468  4 ath_pci,wlan_scan_sta,ath_rate_sample
ath_hal   191824  3 ath_pci,ath_rate_sample
e1000 111552  0 
sdhci  17420  0 
mmc_core   25492  1 sdhci
nsc_ircc   21776  0 
ehci_hcd   29068  0 
snd_intel8x0   31132  1 
snd_intel8x0m  16780  0 
snd_ac97_codec 87712  2 snd_intel8x0,snd_intel8x0m
ac97_bus2432  1 snd_ac97_codec
snd_pcm71176  3 snd_intel8x0,snd_intel8x0m,snd_ac97_codec
snd_timer  20868  1 snd_pcm
snd47716  7 
snd_intel8x0,snd_intel8x0m,snd_ac97_codec,snd_pcm,snd_timer
soundcore   7904  1 snd
yenta_socket   25100  1 
rsrc_nonstatic 10752  1 yenta_socket
pcmcia_core37392  3 pcmcia,yenta_socket,rsrc_nonstatic
pcspkr  3072  0 
serio_raw   6660  0 
rtc12848  0 
uhci_hcd   22032  0 
irda  167228  3 irtty_sir,sir_dev,nsc_ircc
i2c_i8017564  0 
crc_ccitt   2304  1 irda
snd_page_alloc  9864  3 snd_intel8x0,snd_intel8x0m,snd_pcm
i2c_core   20880  1 i2c_i801
intel_agp  22812  1 
agpgart30128  3 drm,intel_agp
shpchp 30868  0 
pci_hotplug29752  1 shpchp
usbcore   121624  5 zd1211rw,usb_storage,ehci_hcd,uhci_hcd

-- /etc/kernel-img.conf
# Kernel image management overrides
# See kernel-img.conf(5) for details
do_symlinks = yes
relative_links = yes
do_bootloader = yes
do_bootfloppy = no
do_initrd = yes
link_in_boot = no

-- /etc/initramfs-tools/initramfs.conf
MODULES=dep
BUSYBOX=y
KEYMAP=n
BOOT=local
DEVICE=eth0
NFSROOT=auto


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

Kernel: Linux 2.6.20.3 

Bug#428388: xserver-xorg: OpenOffice regularly crashes X, rendering the system unusable

2007-06-11 Thread Mike Brodbelt
Package: xserver-xorg
Version: 1:7.2-3
Severity: normal


I regularly have problems with X crashing hard, locking up the entire
display. When this occurs, the moue pointer still reposnds, but all
other input is ignored, animated screen elements freeze, and mousing to
alternate desktops becomes impossible. The only way to restore fucntion
has been to either reboot the machine with the Magic SysRq shortcuts, or
to log in from a remote machine and kill -9 the X server.

The crash only occurs with OpenOffice, and most commonly happens when I
have opened a document attached to an email. OpenOffice will start fine,
but clicking (or using keyboard shortcuts) to access any of the dropdown
menus on the application menu bar will trigger the crash. I estimate
that happens in excess of 75% of the time, though I have not yet been
able to reproduce it entirely to order. Its difficult to reproduce
immediately after a reboot or restart of X, but appears to manifest more
readily after the X server has been running for a while.

The machine is using an onboard Intel graphics card:-


00:02.0 VGA compatible controller: Intel Corporation 82945G/GZ
Integrated Graphics Controller (rev 02)

Mike

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-08-30 22:30 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1736280 2007-05-16 14:44 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82945G/GZ Integrated 
Graphics Controller (rev 02)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 3271 2007-06-06 11:33 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/xorg.conf (xorg 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 /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/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
FontPath/usr/share/fonts/X11/cyrillic
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/75dpi
FontPath/usr/share/fonts/X11/100dpi
# path to defoma fonts
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Loadi2c
Loadbitmap
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadtype1
Loadvbe
Disable render
EndSection

Section Extensions
Option Composite true
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout gb
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ExplorerPS/2
Option  Emulate3Buttons   true
EndSection

Section Device
Identifier  NVIDIA Corporation NV34 [GeForce FX 5200]
Driver  nvidia
BusID   PCI:1:0:0
Option  AllowGLXWithComposite on
Option  RenderAccel   true
Option  backingstore  true
EndSection

Section Device
Identifier  Intel Corporation 945G/GZ Express Integrated Graphics
Driver  i810
# VideoRam  65536
EndSection

Section Monitor
Identifier  HP LP2065
Option  DPMS
HorizSync   31.5-81.1
VertRefresh 55-76
# Monitor manual recommends 1600x1200 @ 60Hz for optimal performance
EndSection

Section Screen
Identifier  Default Screen
Device  Intel Corporation 945G/GZ Express Integrated Graphics
Monitor HP LP2065
DefaultDepth24
SubSection Display
Depth   1
Modes   1600x1200 [EMAIL PROTECTED] 1024x768 
800x600 

Bug#404446: cyrus-common-2.2: Delay in postinst

2007-06-11 Thread Mike Brodbelt
Package: cyrus-common-2.2
Followup-For: Bug #404446


The postinst script runs a recursive chown over the mail spool - with a
large spool that exists from a previous installation, this step can take
a *very* long time, and is almost certainly completely unnecessary.

Mike

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

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


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



Bug#419486: madwifi-source: Driver frequently hangs in ad-hoc mode

2007-04-15 Thread Mike Brodbelt
Package: madwifi-source
Version: 1:0.9.3-1
Severity: important

Madwifi drivers seem unable to maintain a usable network in ad-hoc mode.
This frequently happens when starting up the interface:-


#  wlanconfig ath0 destroy
#  wlanconfig ath0 create wlandev wifi0 wlanmode adhoc
#  iwconfig ath0 channel 6
#  iwconfig ath0 key my-wep-key
#  iwconfig ath0 essid my-essid
#  dhclient ath0
Internet Systems Consortium DHCP Client V3.0.4
Copyright 2004-2006 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/

wifi0: unknown hardware address type 801
wifi0: unknown hardware address type 801
Listening on LPF/ath0/00:05:4e:47:60:18
Sending on   LPF/ath0/00:05:4e:47:60:18
Sending on   Socket/fallback
DHCPDISCOVER on ath0 to 255.255.255.255 port 67 interval 8
DHCPDISCOVER on ath0 to 255.255.255.255 port 67 interval 10
DHCPOFFER from 192.168.1.4
DHCPREQUEST on ath0 to 255.255.255.255 port 67
DHCPACK from 192.168.1.4
bound to 192.168.1.211 -- renewal in 243 seconds.

So, as can be seen the system gets an address from the DHCP server, and
the routing table is correctly set up as:-


Destination Gateway Genmask Flags   MSS Window  irtt Iface
192.168.1.0 0.0.0.0 255.255.255.0   U 0 0  0 ath0
0.0.0.0 192.168.1.4 0.0.0.0 UG0 0  0 ath0

However, attempts to ping the default gateway (also the DHCP server)
immediately after attaching fail:-

# ping 192.168.1.4
PING 192.168.1.4 (192.168.1.4) 56(84) bytes of data.
From 192.168.1.211 icmp_seq=1 Destination Host Unreachable
From 192.168.1.211 icmp_seq=2 Destination Host Unreachable
From 192.168.1.211 icmp_seq=3 Destination Host Unreachable
From 192.168.1.211 icmp_seq=4 Destination Host Unreachable
From 192.168.1.211 icmp_seq=5 Destination Host Unreachable

After some time the interface will usually start working, but will
suffer random hangs during normal usage, where no data moves for periods
ranginf from a few seconds to a couple of minutes. Hardware is an IBM
Thinkpad X40 with Atheros Communications, Inc. AR5212 802.11abg NIC (rev
01) adapter. The ndiswrapper/windows driver combination works an order
of magnitude better than madwifi. As best I can tell, ad-hoc mode does
not function at a usable level with the madwifi drivers.

This issue coule be related to http://madwifi.org/ticket/1209

Mike

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

Kernel: Linux 2.6.20.3 (PREEMPT)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=locale: Cannot set LC_CTYPE to 
default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages madwifi-source depends on:
ii  bzip2 1.0.3-6high-quality block-sorting file co
ii  debhelper 5.0.45 helper programs for debian/rules
ii  module-assistant  0.10.11tool to make module package creati

madwifi-source recommends no packages.


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



Bug#354796: gnome-volume-manager: Prompts for password for already-unlocked encrypted hard drive

2007-03-19 Thread Mike Brodbelt
Package: gnome-volume-manager
Version: 1.5.15-2
Followup-For: Bug #354796

I also see this bug - my encrypted partition is /dev/sda5, and it contains 
filesystems
in LVM. The partition is unlocked at boot, but GVM doesn'y notice this.

Mike

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.20.3
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages gnome-volume-manager depends on:
ii  gconf2 2.16.1-1  GNOME configuration database syste
ii  hal0.5.8.1-9 Hardware Abstraction Layer
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.12.4-3  The ATK accessibility toolkit
ii  libbonobo2-0   2.14.0-3  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.14.0-5  The Bonobo UI library
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libcairo2  1.2.4-4   The Cairo 2D vector graphics libra
ii  libdbus-1-31.0.2-1   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.71-3simple interprocess messaging syst
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libgconf2-42.16.1-1  GNOME configuration database syste
ii  libgksuui1.0-1 1.0.7-2   a graphical fronted to su library
ii  libglade2-01:2.6.0-4 library to load .glade files at ru
ii  libglib2.0-0   2.12.6-2  The GLib library of C routines
ii  libgnome-keyring0  0.6.0-3   GNOME keyring services library
ii  libgnome2-02.16.0-2  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented display
ii  libgnomeui-0   2.14.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.14.2-7GNOME virtual file-system (runtime
ii  libgtk2.0-02.8.20-7  The GTK+ graphical user interface 
ii  libhal10.5.8.1-9 Hardware Abstraction Layer - share
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.4-1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.14.8-5  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libx11-6   2:1.0.3-6 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.1-5 X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  pmount 0.9.13-1+b1   mount removable devices as normal 

Versions of packages gnome-volume-manager recommends:
pn  gnome-media   none (no description available)
pn  gthumbnone (no description available)
pn  nautilus-cd-burnernone (no description available)
pn  totem none (no description available)

-- no debconf information


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



Bug#403601: tex-common: unable to install because of cp

2006-12-18 Thread Mike Brodbelt
Installing libattr1 2.4.32-1 does indeed fix this, but the version
containing the problem is 2.4.35-1, so apt immediately tries to upgrade
it again. It's easy enough to put it on hold, but it's still broken for
Sid until the fix makes it into the newer version.

Mike

__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
__


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



Bug#386380: cpio - man page is virtually useless in newer versions

2006-09-07 Thread Mike Brodbelt
Package: cpio
Version: 2.6-17
Severity: wishlist

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

The cpio package used to include a long and fairly comprehensive man
page. This made it easy to look up options quickly. In more recent
versions of the packge, the cpio man page has been truncated, and now
contains no useful descriptions whatsoever, choosing instead to simply
refer users to the info documentation. This is IMO not a replacement for
a decent man page.

Please restore the old version of the man page - the present version is
little better than not having a man page at all.

Mike


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

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

cpio recommends no packages.

-- no debconf information


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



Bug#385484: evolution: Does not update inbox after deleting messages

2006-09-05 Thread Mike Brodbelt
I'm also seeing this problem. Running Evolution with the exchange
connector, and it was working fine until I upgraded to 2.6.3-1. At that
stage I started to see new mail appearing in the folder tree view, but
not in the mailbox display pane. So I'd end up with the folder view
telling me I had 5 new messages, but no  way to get at them. Quitting
evolution and restarting it made them available in the message window,
but nothing else did.

Downgrading to these packages has worked around it for me.

-rw-r--r-- 1 root root 2390404 2006-08-29 14:22 evolution_2.6.2-4_i386.deb
-rw-r--r-- 1 root root 9979080 2006-08-29 14:22 evolution-common_2.6.2-4_all.deb
-rw-r--r-- 1 root root  632802 2006-08-29 14:22 
evolution-exchange_2.6.2-3_i386.deb

All other packages listed below are these same as those installed when
the bug was visible, with 2.6.3 installed.

Mike

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

Versions of packages evolution depends on:
ii  dbus   0.62-4simple interprocess messaging syst
ii  evolution-common   2.6.2-4   architecture independent files for
ii  evolution-data-server  1.6.3-1   evolution database backend server
ii  gconf2 2.14.0-4  GNOME configuration database syste
ii  gnome-icon-theme   2.14.2-2  GNOME Desktop icon theme
ii  gtkhtml3.8 3.10.3-1  HTML rendering/editing library - b
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.12.1-1  The ATK accessibility toolkit
ii  libaudiofile0  0.2.6-6   Open-source version of SGI's audio
ii  libavahi-client3   0.6.13-2  Avahi client library
ii  libavahi-common3   0.6.13-2  Avahi common library
ii  libavahi-glib1 0.6.13-2  Avahi glib integration library
ii  libbonobo2-0   2.14.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.14.0-4  The Bonobo UI library
ii  libc6  2.3.6.ds1-4   GNU C Library: Shared libraries
ii  libcairo2  1.2.4-1   The Cairo 2D vector graphics libra
ii  libcamel1.2-8  1.6.3-1   The Evolution MIME message handlin
ii  libdbus-1-20.62-4simple interprocess messaging syst
ii  libdbus-glib-1-2   0.62-4simple interprocess messaging syst
ii  libebook1.2-5  1.6.3-1   Client library for evolution addre
ii  libecal1.2-6   1.6.3-1   Client library for evolution calen
ii  libedataserver1.2-71.6.3-1   Utility library for evolution data
ii  libedataserverui1.2-6  1.6.3-1   GUI utility library for evolution 
ii  libegroupwise1.2-9 1.6.2-3   Client library for accessing group
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libexchange-storage1.2-1   1.6.3-1   Backend library for evolution cale
ii  libfontconfig1 2.3.2-7   generic font configuration library
ii  libfreetype6   2.2.1-2   FreeType 2 font engine, shared lib
ii  libgconf2-42.14.0-4  GNOME configuration database syste
ii  libgcrypt111.2.3-1   LGPL Crypto library - runtime libr
ii  libglade2-01:2.6.0-2 library to load .glade files at ru
ii  libglib2.0-0   2.10.3-3  The GLib library of C routines
ii  libgnome-keyring0  0.4.9-1   GNOME keyring services library
ii  libgnome-pilot22.0.12-1.6+b1 Support libraries for gnome-pilot
ii  libgnome2-02.14.1-3  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented display
ii  libgnomeprint2.2-0 2.12.1-6  The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0   2.12.1-4  GNOME 2.2 print architecture User 
ii  libgnomeui-0   2.14.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.14.2-2  GNOME virtual file-system (runtime
ii  libgnutls131.4.2-1   the GNU TLS library - runtime libr
ii  libgpg-error0  1.2-1 library for common error values an
ii  libgtk2.0-02.8.20-1  The GTK+ graphical user interface 
ii  libgtkhtml3.8-15   3.10.3-1  HTML rendering/editing library - r
ii  libhal10.5.7.1-1 Hardware Abstraction Layer - share
ii  libice61:1.0.0-3 X11 Inter-Client Exchange library
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libldap2   2.1.30-13+b1  OpenLDAP libraries
ii  libnm-glib00.6.4-1   network 

Bug#385395: Can't run slapd as non-root user

2006-08-30 Thread Mike Brodbelt
Package: slapd
Version: 2.2.23-8

The package includes instructions for running slapd as a non root user,
however these do not work. Attempting to run as non-root causes the
daemon to fail to start.

This happens because the init script runs :-

db4.2_recover -eh /var/lib/ldap

This command gets run as root, and resets permissions and ownership on
the __db.00? files, which in turn causes slapd to be unable to open them.

If the -e switch is omitted, the __db.00? files do not get re-created by
the recovery process, but instead get created when slapd starts, so they
get created with the correct ownership.

Mike


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



Bug#383895: udev fails to start after upgrade

2006-08-20 Thread Mike Brodbelt
Package: udev
Version: 0.097-1
Severity: important


After upgrading udev to 0.97-1, it fails to start properly. At boot time
I see a timeout error from udev immediately after the root filesystem
gets mounted, then my other filesystems (which are all s/w RAID) fail to
mount due to missing device nodes, and the system eventually drops me to
a maintenance shell.

I can start udev successfully from the command line - however this still
doesn't seem to create my /dev/md* device nodes. I have a custom
compiled kernel (2.6.15.1) with RAID support built in, and partitions
marked as RAID autostart, so no md module is being loaded.

Copying the device nodes from /dev/.static/dev to /dev renders the
partitions mountable, after which the system will come up normally.

I haven't as yet managed to track down what exactly is causing this, as
I can't reliably reproduce the timeout from the command line, but the
problem appeared after an apt-get upgrade that brought in udev 0.97-1.

Mike

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 8
lrwxrwxrwx 1 root root  20 2005-08-07 06:26 020_permissions.rules - 
../permissions.rules
lrwxrwxrwx 1 root root  19 2005-10-27 21:11 025_libgphoto2.rules - 
../libgphoto2.rules
lrwxrwxrwx 1 root root  23 2005-11-20 02:09 025_libsane-extras.rules - 
../libsane-extras.rules
lrwxrwxrwx 1 root root  16 2006-08-19 19:17 025_libsane.rules - 
../libsane.rules
lrwxrwxrwx 1 root root  13 2005-12-15 23:51 035_kino.rules - ../kino.rules
lrwxrwxrwx 1 root root  13 2005-08-07 06:26 udev.rules - ../udev.rules
lrwxrwxrwx 1 root root  25 2006-03-28 20:01 z20_persistent-input.rules - 
../persistent-input.rules
lrwxrwxrwx 1 root root  19 2005-08-15 13:34 z20_persistent.rules - 
../persistent.rules
-rw-r--r-- 1 root root 621 2006-08-20 12:39 z25_persistent-cd.rules
-rw-r--r-- 1 root root 332 2006-04-23 09:44 z25_persistent-net.rules
lrwxrwxrwx 1 root root  33 2006-04-22 12:54 z45_persistent-net-generator.rules 
- ../persistent-net-generator.rules
lrwxrwxrwx 1 root root  12 2005-08-07 06:26 z50_run.rules - ../run.rules
lrwxrwxrwx 1 root root  16 2005-10-27 21:47 z55_hotplug.rules - 
../hotplug.rules
lrwxrwxrwx 1 root root  19 2005-08-11 00:56 z60_alsa-utils.rules - 
../alsa-utils.rules
lrwxrwxrwx 1 root root  15 2005-09-29 02:45 z60_hdparm.rules - ../hdparm.rules
lrwxrwxrwx 1 root root  14 2006-08-19 19:16 z60_mdadm.rules - ../mdadm.rules
lrwxrwxrwx 1 root root  33 2006-05-07 12:29 z60_xserver-xorg-input-wacom.rules 
- ../xserver-xorg-input-wacom.rules
lrwxrwxrwx 1 root root  29 2006-08-19 19:06 z75_cd-aliases-generator.rules - 
../cd-aliases-generator.rules
lrwxrwxrwx 1 root root  12 2006-08-19 19:06 z99_hal.rules - ../hal.rules

-- /sys/:
/sys/block/fd0/dev
/sys/block/hdd/dev
/sys/block/loop0/dev
/sys/block/loop1/dev
/sys/block/loop2/dev
/sys/block/loop3/dev
/sys/block/loop4/dev
/sys/block/loop5/dev
/sys/block/loop6/dev
/sys/block/loop7/dev
/sys/block/md0/dev
/sys/block/md1/dev
/sys/block/md2/dev
/sys/block/md3/dev
/sys/block/md4/dev
/sys/block/md5/dev
/sys/block/md6/dev
/sys/block/md7/dev
/sys/block/sda/dev
/sys/block/sda/sda10/dev
/sys/block/sda/sda1/dev
/sys/block/sda/sda2/dev
/sys/block/sda/sda3/dev
/sys/block/sda/sda5/dev
/sys/block/sda/sda6/dev
/sys/block/sda/sda7/dev
/sys/block/sda/sda8/dev
/sys/block/sda/sda9/dev
/sys/block/sdb/dev
/sys/block/sdb/sdb10/dev
/sys/block/sdb/sdb1/dev
/sys/block/sdb/sdb2/dev
/sys/block/sdb/sdb3/dev
/sys/block/sdb/sdb5/dev
/sys/block/sdb/sdb6/dev
/sys/block/sdb/sdb7/dev
/sys/block/sdb/sdb8/dev
/sys/block/sdb/sdb9/dev
/sys/block/sdc/dev
/sys/block/sdc/sdc10/dev
/sys/block/sdc/sdc1/dev
/sys/block/sdc/sdc2/dev
/sys/block/sdc/sdc3/dev
/sys/block/sdc/sdc5/dev
/sys/block/sdc/sdc6/dev
/sys/block/sdc/sdc7/dev
/sys/block/sdc/sdc8/dev
/sys/block/sdc/sdc9/dev
/sys/block/sdd/dev
/sys/block/sdd/sdd10/dev
/sys/block/sdd/sdd1/dev
/sys/block/sdd/sdd2/dev
/sys/block/sdd/sdd3/dev
/sys/block/sdd/sdd5/dev
/sys/block/sdd/sdd6/dev
/sys/block/sdd/sdd7/dev
/sys/block/sdd/sdd8/dev
/sys/block/sdd/sdd9/dev
/sys/block/sde/dev
/sys/block/sde/sde1/dev
/sys/block/sdf/dev
/sys/block/sdg/dev
/sys/block/sdh/dev
/sys/block/sdh/sdh1/dev
/sys/class/drm/card0/dev
/sys/class/input/input1/mouse0/dev
/sys/class/input/mice/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/device-mapper/dev
/sys/class/misc/psaux/dev
/sys/class/printer/lp0/dev
/sys/class/scsi_generic/sg0/dev
/sys/class/scsi_generic/sg1/dev
/sys/class/scsi_generic/sg2/dev
/sys/class/scsi_generic/sg3/dev
/sys/class/scsi_generic/sg4/dev
/sys/class/scsi_generic/sg5/dev
/sys/class/scsi_generic/sg6/dev
/sys/class/scsi_generic/sg7/dev
/sys/class/scsi_generic/sg8/dev
/sys/class/scsi_generic/sg9/dev
/sys/class/scsi_tape/nst0a/dev
/sys/class/scsi_tape/nst0/dev
/sys/class/scsi_tape/nst0l/dev
/sys/class/scsi_tape/nst0m/dev
/sys/class/scsi_tape/st0a/dev
/sys/class/scsi_tape/st0/dev
/sys/class/scsi_tape/st0l/dev
/sys/class/scsi_tape/st0m/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/dmmidi/dev

Bug#383843: plucker: package is currently not installable in unstable

2006-08-19 Thread Mike Brodbelt
Package: plucker
Version: 1.8-16
Severity: normal


Plucker currently can't be installed, due to a Python dependency:-

The following packages have unmet dependencies.
  plucker: Depends: python ( 2.4) but 2.4.3-11 is to be installed
  E: Broken packages

# python -V
Python 2.4.4c0

# apt-cache policy python
python:
  Installed: 2.4.3-11
  Candidate: 2.4.3-11
  Version table:
 *** 2.4.3-11 0
500 ftp://ftp.uk.debian.org sid/main Packages
100 /var/lib/dpkg/status

This makes the package unusable on unstable currently.

Mike


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

Versions of packages plucker depends on:
ii  libatk1.0-0  1.12.1-1The ATK accessibility toolkit
ii  libc62.3.6.ds1-2 GNU C Library: Shared libraries
ii  libcairo21.2.2-1 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libglib2.0-0 2.10.3-3The GLib library of C routines
ii  libgtk2.0-0  2.8.20-1The GTK+ graphical user interface 
ii  libjpeg626b-13   The Independent JPEG Group's JPEG 
ii  libpango1.0-01.12.3-2Layout and rendering of internatio
ii  libx11-6 2:1.0.0-8   X11 client-side library
ii  libxcursor1  1.1.5.2-5   X cursor management library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxfixes3   1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  netpbm   2:10.0-10.1 Graphics conversion tools
ii  python   2.4.3-11An interactive high-level object-o
ii  zlib1g   1:1.2.3-13  compression library - runtime

plucker recommends no packages.


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



Bug#381380: hal-device-manager fails to run

2006-08-03 Thread Mike Brodbelt
Package: hal-device-manager
Version: 0.5.7-2
Severity: grave
Justification: renders package unusable


Attempting to run hal-device-manager fails with a Python error:-

n# hal-device-manager 
Traceback (most recent call last):
  File /usr/bin/hal-device-manager, line 7, in ?
  import pygtk
  ImportError: No module named pygtk

This appears to actually be the result of a Python problem:-

# python
Python 2.3.5 (#2, Jul 30 2006, 15:57:01) 
[GCC 4.1.2 20060715 (prerelease) (Debian 4.1.1-9)] on linux2
Type help, copyright, credits or license for more information.
 import pygtk
 dir (pygtk)
['__all__', '__builtins__', '__doc__', '__file__', '__name__',
'_get_available_versions', '_pygtk_dir_pat', '_pygtk_required_version',
'fnmatch', 'glob', 'os', 'require', 'sys']

but with /usr/bin/python2.4:-

# /usr/bin/python2.4 
Python 2.4.4c0 (#2, Jul 30 2006, 15:43:58) 
[GCC 4.1.2 20060715 (prerelease) (Debian 4.1.1-9)] on linux2
Type help, copyright, credits or license for more information.
 import pygtk
Traceback (most recent call last):
  File stdin, line 1, in ?
  ImportError: No module named pygtk

However, trying to execute hal-device manager with the system default
Python also fails:-

# python `which hal-device-manager`
Traceback (most recent call last):
  File /usr/bin/hal-device-manager, line 15, in ?
  from DeviceManager import DeviceManager
  File /usr/share/hal/device-manager/DeviceManager.py, line 6, in ?
import dbus
ImportError: No module named dbus


This renders the package useless on my system, though I'm not sure if
this is an accident of Python configuration. I'm running a pretty much
default Python setup though...

Mike

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

Versions of packages hal-device-manager depends on:
ii  hal   0.5.7-2Hardware Abstraction Layer
ii  python-glade2 [python2.4-glad 2.8.6-4GTK+ bindings: Glade support
ii  python-gnome2 [python2.4-gnom 2.12.4-3   Python bindings for the GNOME desk
ii  python2.4 2.4.3-8An interactive high-level object-o
ii  python2.4-dbus0.62-4 simple interprocess messaging syst

hal-device-manager recommends no packages.

-- no debconf information


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



Bug#366841: evolution-exchange: Unable to connect to an Exchange server with Evolution 2.6

2006-05-11 Thread Mike Brodbelt
Package: evolution-exchange
Version: 2.6.1-1
Severity: grave
Justification: renders package unusable

Attempting to connect to a server running Exchange 2003 fails. Account
setup via Evolution gets as far as the Server Type screen, but when
Exchange is selected, the Forward button remains greyed out, and the 
only other information asked for is the userid. It is possible to get 
past this stage of the process by switching to another server type, and 
then switching back to Exchange. This allows account setup to complete,
but attempting to access the account fails.

Setting up the account using ximian-connector-setup-2.6 asks for the 
OWA URL, username, and password. When these values are entered, the
connector setup authenticates successfully against the Exchange server,
and populates the name and email address fields correctly on the next 
setup screen. Entering an invalid password or userid at the first stage
throws an authentication error, so this bit clearly works correctly.

However, after setup with x-c-s, starting Evolution immediately pops up 
an Enter password for [EMAIL PROTECTED] dialog box. I enter the correct
password and get Scanning folders, then the password dialog box pops
up again. I enter the correct password and get Scanning folders, and
so on.

Running ethereal while this is going on, I can see a connection to the
server when the account is set up with x-c-s, but I can see no network
traffic to the machine at all when Evolution is running. It may be 
relevant that I'm accessing the OWA service over https.

Mike

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

Versions of packages evolution-exchange depends on:
ii  evolution 2.6.1-2The groupware suite
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.11.4-2   The ATK accessibility toolkit
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libavahi-clie 0.6.10-1   Avahi client library
ii  libavahi-comm 0.6.10-1   Avahi common library
ii  libavahi-glib 0.6.10-1   Avahi glib integration library
ii  libbonobo2-0  2.14.0-1   Bonobo CORBA interfaces library
ii  libbonoboui2- 2.14.0-2   The Bonobo UI library
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libcairo2 1.0.4-2The Cairo 2D vector graphics libra
ii  libcamel1.2-8 1.6.1-2The Evolution MIME message handlin
ii  libcomerr21.38+1.39-WIP-2006.04.09-1 common error description library
ii  libdbus-1-2   0.61-5 simple interprocess messaging syst
ii  libdbus-glib- 0.61-5 simple interprocess messaging syst
ii  libebook1.2-5 1.6.1-2Client library for evolution addre
ii  libecal1.2-3  1.6.1-2Client library for evolution calen
ii  libedata-book 1.6.1-2Backend library for evolution addr
ii  libedata-cal1 1.6.1-2Backend library for evolution cale
ii  libedataserve 1.6.1-2Utility library for evolution data
ii  libedataserve 1.6.1-2GUI utility library for evolution
ii  libesd0   0.2.36-3   Enlightened Sound Daemon - Shared
ii  libexchange-s 1.6.1-2Backend library for evolution cale
ii  libfontconfig 2.3.2-5.1  generic font configuration library
ii  libfreetype6  2.1.10-3   FreeType 2 font engine, shared lib
ii  libgail-commo 1.8.11-2   GNOME Accessibility Implementation
ii  libgail17 1.8.11-2   GNOME Accessibility Implementation
ii  libgconf2-4   2.14.0-1   GNOME configuration database syste
ii  libgcrypt11   1.2.2-1LGPL Crypto library - runtime libr
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.10.2-2   The GLib library of C routines
ii  libgnome-keyr 0.4.9-1GNOME keyring services library
ii  libgnome2-0   2.14.1-2   The GNOME 2 library - runtime file
ii  libgnomecanva 2.14.0-2   A powerful object-oriented display
ii  libgnomeprint 2.12.1-3   The GNOME 2.2 print architecture -
ii  libgnomeprint 2.12.1-3   GNOME 2.2 print architecture User 
ii  libgnomeui-0  2.14.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2- 2.14.1-2   GNOME virtual file-system (runtime
ii  libgnutls13   1.3.5-1+b1 the GNU TLS library - runtime libr
ii  libgpg-error0 1.2-1  library for common error values an
ii  

Bug#364407: gv: Fonst issues with GV

2006-04-24 Thread Mike Brodbelt
Package: gv
Version: 1:3.6.1-13
Followup-For: Bug #364407


I ahve the same problem as the original reporter of this bug. Attempting
to start GV produces:-

$ gv magic-cauldron.ps
Warning: Cannot convert string
-*-Helvetica-Medium-R-Normal--*-140-*-*-P-*-ISO8859-1 to type
FontStruct
Warning: Unable to load any usable ISO8859 font
Warning: Unable to load any usable ISO8859 font
Segmentation fault

I believe this is related to the recent upload of modular X.Org, as
there are a lot of other problems I think are related, namely:-

1/ xfontsel won't start:-

$ xfontsel
Warning: Unable to load any usable ISO8859 font
Error: Aborting: no font found

2/ xterm crashes when you Ctrl-click to bring up an on-screen menu:-

$ xterm
Warning: Cannot convert string
-adobe-helvetica-bold-r-normal--*-120-*-*-*-*-iso8859-* to type
FontStruct
Warning: Unable to load any usable ISO8859 font
Warning: Unable to load any usable ISO8859 font
Error: Aborting: no font found

3/ GNUCash crashes at startup with a font error.

4/ xcalc crashes at startup

$ xcalc 
Warning: Cannot convert string -adobe-symbol-*-*-*-*-*-120-*-*-*-*-*-*
to type FontStruct
Warning: Unable to load any usable ISO8859 font
Warning: Unable to load any usable ISO8859 font
Error: Aborting: no font found


And a whole load more in the same vein.

My font path in X is set to:-

   FontPathunix/:7100# local font server
   FontPath/usr/lib/X11/fonts/misc
   FontPath/usr/lib/X11/fonts/cyrillic
   FontPath/usr/lib/X11/fonts/75dpi/:unscaled
   FontPath/usr/lib/X11/fonts/100dpi/:unscaled
   FontPath/usr/lib/X11/fonts/Type1
   FontPath/usr/lib/X11/fonts/CID
   FontPath/usr/lib/X11/fonts/75dpi
   FontPath/usr/lib/X11/fonts/100dpi

and the font server is running:-

$ fslsfonts -server unix/:7100 | head 
-adobe-avant garde gothic-book-o-normal--0-0-0-0-p-0-iso8859-1
-adobe-avant garde gothic-book-o-normal--0-0-0-0-p-0-iso8859-15
-adobe-avant garde gothic-book-o-normal--0-0-0-0-p-0-iso8859-2
-adobe-avant garde gothic-book-r-normal--0-0-0-0-p-0-iso8859-1
-adobe-avant garde gothic-book-r-normal--0-0-0-0-p-0-iso8859-15
-adobe-avant garde gothic-book-r-normal--0-0-0-0-p-0-iso8859-2
-adobe-avant garde gothic-demi-o-normal--0-0-0-0-p-0-iso8859-1
-adobe-avant garde gothic-demi-o-normal--0-0-0-0-p-0-iso8859-15
-adobe-avant garde gothic-demi-o-normal--0-0-0-0-p-0-iso8859-2
-adobe-avant garde gothic-demi-r-normal--0-0-0-0-p-0-iso8859-1

$ fslsfonts -server unix/:7100 | wc -l
3631

I have the following font related packages installed:-


ii  msttcorefonts   1.2 Installer for Microsoft TrueType 
core fonts
ii  ttf-bitstream-vera  1.10-5  The Bitstream Vera family of free 
TrueType fonts
ii  ttf-dejavu  2.4.1-1 Bitstream Vera fonts with 
additional characters
ii  ttf-freefont20060126b-3 Freefont Serif, Sans and Mono 
Truetype fonts
ii  x-ttcidfont-conf21  Configure TrueType and CID fonts 
for X
ii  x11proto-fonts-dev  2.0.2-3 X11 font extension wire protocol
ii  xfonts-100dpi   1.0.0-2 100 dpi fonts for X
ii  xfonts-75dpi1.0.0-2 100 dpi fonts for X
ii  xfonts-base 1.0.0-3 standard fonts for X
ii  xfonts-encodings1.0.0-2 Encodings for X.Org fonts
ii  xfonts-scalable 1.0.0-4 scalable fonts for X
ii  xfonts-utils1.0.0-3 X Window System font utility 
programs

This is obviously not specific to gv, but I'm not really sure which
component is at fault, so I'm adding my comments to this report in the
hope that they'll shed some light. I suspect that the same problem is
also at the root of bugs 363436, 363571 and 363664 at least.

Mike


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

Versions of packages gv depends on:
ii  gs   8.50-1.1Transitional package
ii  gs-esp [gs]  8.15.1.dfsg.1-2 The Ghostscript PostScript interpr
ii  gs-gpl [gs]  8.50-1.1The GPL Ghostscript PostScript int
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  libice6  1:1.0.0-3   X11 Inter-Client Exchange library
ii  libsm6   1:1.0.0-4   X11 Session Management library
ii  libx11-6 2:1.0.0-6   X11 client-side library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxmu6  1:1.0.1-3   X11 miscellaneous utility library
ii  libxpm4  1:3.5.4.2-3 X11 pixmap library
ii  libxt6   1:1.0.0-4   X11 toolkit intrinsics library
ii  xaw3dg   1.5+E-11Xaw3d widget set

gv 

Bug#362492: xfs: Config file location has changed - postinstall and documentation fails to note this

2006-04-13 Thread Mike Brodbelt
Package: xfs
Version: 1:1.0.1-4
Severity: normal


With previous versions of xfs, the config file used by default was
/etc/X11/fs/config, however the newly packaged version now defaults to
using /usr/lib/X11/fs/config. The README.Debian file still refers to
/etc/X11/fs/config as the configuration file, and installing the current
package results in a situation where the pre-existing configuration
information in /etc/X11/fs/config is silently ignored, and replaced with
the new package's default configuration. It would be nice if the
postinst script offered to migrate settings from a pre-existing
/etc/X11/fs/config file into the new config location.


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

Versions of packages xfs depends on:
ii  libc6 2.3.6-6GNU C Library: Shared libraries
ii  libfs62:1.0.0-2  X11 Font Services library
ii  libxfont1 1:1.0.0-3  X11 font rasterisation library

xfs recommends no packages.

-- no debconf information


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



Bug#348653: libgconf2-4: Apps dependent on gconfd-2 fail if a GNOME 1 app has been started first

2006-01-18 Thread Mike Brodbelt
Package: libgconf2-4
Version: 2.12.1-8
Severity: important

When a GNOME 1 application is started it auto starts a copy of gconfd-1
on behalf of the user who starts the app. If an application that
requires gconfd-2 is subsequently started, the presence of an already
running gconfd-1 process prevents the automatic startup of gconfd-2, and
the application fails.

Example - my desktop uses Enlightenment as a WM. Starting Evolution
after login succeeds as expected, and starts a gconfd-2 process.
However, if I start GNUCash after login, a gconfd-1 process is started,
and a subsequent attempt to start Evolution produces 3 successive error
dialog boxes. The first telle me that an error occurred accessing config
information for Evolution, the second tells me Evolution has crashed,
and the third tells me an error occurred accessing config data for
gnome_segv, which was started in response to the Evolution crash.

As the copy of gconfd-1 persists after the invoking app (GNUCash in this
case) was closed, this breaks gconfd-2 dependent applications for the
remainder of the session, or until the user manually kills gconfd-1.
Starting GNUCash after Evolution works correctly, as it is able to use
a running gconfd-2 process.

The gconfd-2 package shouls override gconfd-1 where it is installed so
that all gconf reliant apps start gconfd-2 in preference. Tagged as
important as it breaks apparently unrelated software on the system,
though it's relatively easy to work around once you realise what's
happening.

Mike


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

Versions of packages libgconf2-4 depends on:
ii  gconf2-common  2.12.1-8  GNOME configuration database syste
ii  libc6  2.3.5-12  GNU C Library: Shared libraries an
ii  libglib2.0-0   2.8.5-1   The GLib library of C routines
ii  liborbit2  1:2.12.4-1libraries for ORBit2 - a CORBA ORB
ii  libxml22.6.23.dfsg.1-0.1 GNOME XML library
ii  zlib1g 1:1.2.3-9 compression library - runtime

libgconf2-4 recommends no packages.

-- no debconf information


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



Bug#348653: libgconf2-4: Apps dependent on gconfd-2 fail if a GNOME 1 app has been started first

2006-01-18 Thread Mike Brodbelt
On Wed, 2006-01-18 at 10:21 +0100, Josselin Mouette wrote:
 
 Could you please start both applications in a terminal and show us the
 output?

GNUCash generates no terminal output (until it starts it's graph layout
engine, but that's irrelevant here), but Evolution shows the following:-

$ evolution
adding hook target 'source'

(evolution:9075): camel-WARNING **: camel_exception_get_id called with
NULL parameter.

gtkhtml-ERROR **: gconf error: Configuration server couldn't be
contacted: CORBA error: IDL:omg.org/CORBA/BAD_OPERATION:1.0

aborting...


This is if a gconfd-1 process is running when Evolution is started.

  The gconfd-2 package shouls override gconfd-1 where it is installed so
  that all gconf reliant apps start gconfd-2 in preference. Tagged as
  important as it breaks apparently unrelated software on the system,
  though it's relatively easy to work around once you realise what's
  happening.
 
 Unfortunately this isn't possible, as gconfd-1 and gconfd-2 are
 incompatible. However they should be able to run together.

When I was trying to track down what was happening here I tried to run
both gconfd-1 and gconfd-2 together, but attempting to start gconfd-2
directly from a terminal fails if there's a running gconfd-1 already
present. It doesn't generate any error messages, but after the prompt
returns there is no gconfd-2 process. From running strace on the startup
attempt I think this is due to contention for the orbit directory
under /tmp, but I'm not certain.

Mike



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



Bug#341913: libgutenprint2: Misaligned output from an Epson RX620

2005-12-03 Thread Mike Brodbelt
Package: libgutenprint2
Version: 4.3.99+cvs20051122.dfsg.1-1
Severity: normal
Tags: upstream


Printing 4x6 photo prints in Borderless mode produces output so badly
misaligned that the functionality of the device is compromised. When
printing an image with the correct aspect ratio for the paper, with Page
Size set to Epson 4x6 Photo Paper and Media Type set to Premium
Glossy Photo Paper, the output image has approximately a 5mm top
border, a 3 mm bottom border, and a 1mm left border that remain
unprinted. Additionally, about 10% of the image width is lost of the
right hand side, and about 15-20% of the image height is lost on the
bottom of the print.

Printing the same JPEG file from a memory card inserted in the front of
the printer produces correctly aligned full bleed output, though Gimp
does a better job on the colours. I believe the RX620 uses the same
print engine as the R300.

Mike


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

Versions of packages libgutenprint2 depends on:
ii  libc6 2.3.5-8.1  GNU C Library: Shared libraries an

libgutenprint2 recommends no packages.

-- no debconf information


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



Bug#335742: openoffice.org: NFS mounts are unwritable

2005-10-27 Thread Mike Brodbelt
Package: openoffice.org
Version: 2.0.0-1
Followup-For: Bug #335742


I am also seeing this bug. Opening a file within an NFS mounted
filesystem causes OpenOffice to show the file in read-only mode, and
remove the margins and various other editing widgets from the
application window. Any attempt to save a document to an NFS mount
results in an error dialog that contains the text:-

Error saving the document Filename.odt:
General Error.
General input/output error.

This makes the application extremely awkward to use in an office type
environment, and is a huge step backwards in functionality from the
OpenOffice.org 1.1.4 package it replaced for me.

Mike.


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

Versions of packages openoffice.org depends on:
ii  openoffice.org-base   2.0.0-1OpenOffice.org office suite - data
ii  openoffice.org-calc   2.0.0-1OpenOffice.org office suite - spre
ii  openoffice.org-core   2.0.0-1OpenOffice.org office suite archit
ii  openoffice.org-draw   2.0.0-1OpenOffice.org office suite - draw
ii  openoffice.org-impress2.0.0-1OpenOffice.org office suite - pres
ii  openoffice.org-math   2.0.0-1OpenOffice.org office suite - equa
ii  openoffice.org-writer 2.0.0-1OpenOffice.org office suite - word

openoffice.org recommends no packages.

-- no debconf information


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



Bug#333411: gnucash: Icons exhibit graphical corruption in latest version of package

2005-10-11 Thread Mike Brodbelt
Package: gnucash
Version: 1.8.10-19
Severity: normal


The latest gnucash package upgrade has caused the toolbar icons in
gnucash to fail to display correctly. All toolbar icons now display
simply as square patches of graphical garbage. The functionality of the
toolbar buttons is unaffected, and the label text is still clearly
legible.

Mike.


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

Versions of packages gnucash depends on:
ii  bonobo1.0.22-5   The GNOME Bonobo System.
ii  gdk-imlib11   1.9.14-21  imaging library for use with gtk (
ii  gnucash-common1.8.10-19  A personal finance tracking progra
ii  guile-1.6-libs1.6.7-1.1  Main Guile libraries
ii  guile-1.6-slib1.6.7-1.1  Guile SLIB support
ii  libart2   1.4.2-24   The GNOME canvas widget - runtime 
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libbonobo21.0.22-5   The GNOME Bonobo library.
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libdate-manip-perl5.44-2 a perl library for manipulating da
ii  libdb33.2.9-22   Berkeley v3 Database Libraries [ru
ii  libesd0   0.2.36-1   Enlightened Sound Daemon - Shared 
ii  libfinance-quote-perl 1.08-1 Perl module for retrieving stock q
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgal23  0.24-4 G App Libs (run time library)
ii  libgconf111.0.9-7.1  GNOME configuration database syste
ii  libgdk-pixbuf-gnome2  0.22.0-10  The GNOME1 Canvas pixbuf library
ii  libgdk-pixbuf20.22.0-10  The GdkPixBuf image library, gtk+ 
ii  libghttp1 1.0.9-16   original GNOME HTTP client library
ii  libglade-gnome0   1:0.17-4   Library to load .glade files at ru
ii  libglade0 1:0.17-4   Library to load .glade files at ru
ii  libglib1.21.2.10-10  The GLib library of C routines
ii  libgnome321.4.2-24   The GNOME libraries
ii  libgnomeprint15   0.37-10The GNOME Print architecture - run
ii  libgnomesupport0  1.4.2-24   The GNOME libraries (Support libra
ii  libgnomeui32  1.4.2-24   The GNOME libraries (User Interfac
ii  libgtk1.2 1.2.10-18  The GIMP Toolkit set of widgets fo
ii  libgtkhtml1.1-3   1.1.10-8   HTML rendering/editing library - r
ii  libguile-ltdl-1   1.6.7-1.1  Guile's patched version of libtool
ii  libguppi160.40.3-15  GNOME graph and plot component
ii  libgwrapguile11.3.4-15   g-wrap: Tool for exporting C libra
ii  libice6   6.8.2.dfsg.1-8 Inter-Client Exchange library
ii  libltdl3  1.5.20-2   A system independent dlopen wrappe
ii  liboaf0   0.6.10-5   The GNOME Object Activation Framew
ii  libofx2   1:0.8.0-3  library to support Open Financial 
ii  liborbit0 0.5.17-11.1Libraries for ORBit - a CORBA ORB
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libqthreads-121.6.7-1.1  QuickThreads library for Guile
ii  libsm66.8.2.dfsg.1-8 X Window System Session Management
ii  libstdc++64.0.2-2The GNU Standard C++ Library v3
ii  libx11-6  6.8.2.dfsg.1-8 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-8 X Window System miscellaneous exte
ii  libxi66.8.2.dfsg.1-8 X Window System Input extension li
ii  libxml1   1:1.8.17-10GNOME XML library
ii  libzvt2   1.4.2-24   The GNOME zvt (zterm) widget
ii  oaf   0.6.10-5   The GNOME Object Activation Framew
ii  psfontmgr 0.11.8-0.1 PostScript font manager -- part of
ii  slib  3a1-4.2Portable Scheme library
ii  x-ttcidfont-conf  20 Configure TrueType and CID fonts f
ii  xlibs 6.8.2.dfsg.1-8 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

gnucash recommends no packages.

-- no debconf information


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



Bug#333411: gnucash: Icons exhibit graphical corruption in latest version of package

2005-10-11 Thread Mike Brodbelt

Just a note to add to the bug report - the problem is also apparent in
the icons on pop-up dialog boxes. It seems highly likely that the root
cause of this lies with one of the GTK1 libraries, rather than the
gnucash package itself. Though ISTR reading an email in which a harassed
sounding gnucash maintainer commented he was now maintaining much of
GTK1 for Debian, so maybe it's your problem anyway :-).

Mike.



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



Bug#333411: acknowledged by developer (Re: Bug#333411: gnucash: Icons exhibit graphical corruption in latest version of package)

2005-10-11 Thread Mike Brodbelt
On Tue, 2005-10-11 at 13:48 -0700, Debian Bug Tracking System wrote:

  The latest gnucash package upgrade has caused the toolbar icons in
  gnucash to fail to display correctly. All toolbar icons now display
  simply as square patches of graphical garbage. The functionality of the
  toolbar buttons is unaffected, and the label text is still clearly
  legible.
 
 Please do not submit duplicate bug reports for bugs already
 submitted.  See bug 332312.

Apologies - missed that one in the list.

Mike.



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



Bug#321427: mozilla-mailnews: Upgrading to 1.7.10 causes UI problems with Mozilla mail

2005-08-05 Thread Mike Brodbelt
Package: mozilla-mailnews
Version: 2:1.7.10-1
Severity: important


After a routine apt-get upgrade which brought in Mozilla 1.7.10, the
mail client has serious usability issues. Clicking on a folder often
fails to update the header pane with the contents of that folder,
instead leaving the previously selected folder's cnontents in the
header pane. Entering text in the search box also fails to update the
header pane with the search results much of the time now.

In all cases, repeating the action, or switching away from and back to
the desired folder seems to fix things - as does resubmitting the search
text. However I estimate that about 40% of the time an action which
should result in the header pane switching view doesn't. I've filed this
as important as it's intensely irritating, and after two days of it I'm
considering jumping to Thunderbird or something until it gets fixed, so
I'd say it has a large impact on the usability of the package...

This problem didn't exist in the previous version.

Mike

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

Versions of packages mozilla-mailnews depends on:
ii  mozilla-browser   2:1.7.10-1 The Mozilla Internet application s

Versions of packages mozilla-mailnews recommends:
ii  myspell-en-gb [myspell-dictio 20030813-3 English (GB) dictionary for myspel

-- no debconf information


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



Bug#317720: udev stops working without warning

2005-07-10 Thread Mike Brodbelt
Package: udev
Version: 0.062-3
Severity: important


After an apt-get upgrade, a new version of udev was installed. This
version refuses to start without a kernel version of 2.6.12 or greater.
I received no warning that this would happen, and substantial
functionality on my system no longer works. In one sense this is
trivial, as a kernel upgrade will fix it, but surely the package should
warn users that this will happen, or refuse to install unless the
running kernel is 2.6.12 or greater? Unwary users may see a lot break if
their system is depedent on udev and it gets upgraded while the system's
current kernel predates 2.6.12.

Mike.


-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 4
lrwxrwxrwx  1 root root   20 2005-04-24 18:58 020_permissions.rules - 
../permissions.rules
lrwxrwxrwx  1 root root   12 2005-07-02 19:22 050_hal-plugdev.rules - 
../hal.rules
lrwxrwxrwx  1 root root   19 2005-03-16 00:59 cd-aliases.rules - 
../cd-aliases.rules
-rw-r--r--  1 root root 1049 2005-03-31 01:26 local.rules
lrwxrwxrwx  1 root root   13 2005-03-16 00:59 udev.rules - ../udev.rules
lrwxrwxrwx  1 root root   12 2005-07-04 00:16 z50_run.rules - ../run.rules
lrwxrwxrwx  1 root root   17 2005-07-04 00:16 z70_hotplugd.rules - 
../hotplugd.rules

-- /sys/:
/sys/block/fd0/dev
/sys/block/hdd/dev
/sys/block/loop0/dev
/sys/block/loop1/dev
/sys/block/loop2/dev
/sys/block/loop3/dev
/sys/block/loop4/dev
/sys/block/loop5/dev
/sys/block/loop6/dev
/sys/block/loop7/dev
/sys/block/md0/dev
/sys/block/md1/dev
/sys/block/md2/dev
/sys/block/md3/dev
/sys/block/md4/dev
/sys/block/md5/dev
/sys/block/md6/dev
/sys/block/sda/dev
/sys/block/sda/sda10/dev
/sys/block/sda/sda1/dev
/sys/block/sda/sda2/dev
/sys/block/sda/sda3/dev
/sys/block/sda/sda5/dev
/sys/block/sda/sda6/dev
/sys/block/sda/sda7/dev
/sys/block/sda/sda8/dev
/sys/block/sda/sda9/dev
/sys/block/sdb/dev
/sys/block/sdb/sdb10/dev
/sys/block/sdb/sdb1/dev
/sys/block/sdb/sdb2/dev
/sys/block/sdb/sdb3/dev
/sys/block/sdb/sdb5/dev
/sys/block/sdb/sdb6/dev
/sys/block/sdb/sdb7/dev
/sys/block/sdb/sdb8/dev
/sys/block/sdb/sdb9/dev
/sys/block/sdc/dev
/sys/block/sdc/sdc10/dev
/sys/block/sdc/sdc1/dev
/sys/block/sdc/sdc2/dev
/sys/block/sdc/sdc3/dev
/sys/block/sdc/sdc5/dev
/sys/block/sdc/sdc6/dev
/sys/block/sdc/sdc7/dev
/sys/block/sdc/sdc8/dev
/sys/block/sdc/sdc9/dev
/sys/block/sdd/dev
/sys/block/sdd/sdd10/dev
/sys/block/sdd/sdd1/dev
/sys/block/sdd/sdd2/dev
/sys/block/sdd/sdd3/dev
/sys/block/sdd/sdd5/dev
/sys/block/sdd/sdd6/dev
/sys/block/sdd/sdd7/dev
/sys/block/sdd/sdd8/dev
/sys/block/sdd/sdd9/dev
/sys/block/sde/dev
/sys/block/sdf/dev
/sys/block/sdg/dev
/sys/block/sdh/dev
/sys/block/sdh/sdh1/dev
/sys/class/drm/card0/dev
/sys/class/input/mice/dev
/sys/class/input/mouse0/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/psaux/dev
/sys/class/netlink/arpd/dev
/sys/class/netlink/dnrtmsg/dev
/sys/class/netlink/fwmonitor/dev
/sys/class/netlink/ip6_fw/dev
/sys/class/netlink/nflog/dev
/sys/class/netlink/route6/dev
/sys/class/netlink/route/dev
/sys/class/netlink/skip/dev
/sys/class/netlink/tap0/dev
/sys/class/netlink/tap10/dev
/sys/class/netlink/tap11/dev
/sys/class/netlink/tap12/dev
/sys/class/netlink/tap13/dev
/sys/class/netlink/tap14/dev
/sys/class/netlink/tap15/dev
/sys/class/netlink/tap1/dev
/sys/class/netlink/tap2/dev
/sys/class/netlink/tap3/dev
/sys/class/netlink/tap4/dev
/sys/class/netlink/tap5/dev
/sys/class/netlink/tap6/dev
/sys/class/netlink/tap7/dev
/sys/class/netlink/tap8/dev
/sys/class/netlink/tap9/dev
/sys/class/netlink/tcpdiag/dev
/sys/class/netlink/usersock/dev
/sys/class/netlink/xfrm/dev
/sys/class/printer/lp0/dev
/sys/class/scsi_generic/sg0/dev
/sys/class/scsi_generic/sg1/dev
/sys/class/scsi_generic/sg2/dev
/sys/class/scsi_generic/sg3/dev
/sys/class/scsi_generic/sg4/dev
/sys/class/scsi_generic/sg5/dev
/sys/class/scsi_generic/sg6/dev
/sys/class/scsi_generic/sg7/dev
/sys/class/scsi_generic/sg8/dev
/sys/class/scsi_generic/sg9/dev
/sys/class/scsi_tape/nst0a/dev
/sys/class/scsi_tape/nst0/dev
/sys/class/scsi_tape/nst0l/dev
/sys/class/scsi_tape/nst0m/dev
/sys/class/scsi_tape/st0a/dev
/sys/class/scsi_tape/st0/dev
/sys/class/scsi_tape/st0l/dev
/sys/class/scsi_tape/st0m/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/dmmidi/dev
/sys/class/sound/dsp/dev
/sys/class/sound/midiC0D0/dev
/sys/class/sound/midi/dev
/sys/class/sound/mixer/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D3p/dev
/sys/class/sound/seq/dev
/sys/class/sound/sequencer2/dev
/sys/class/sound/sequencer/dev
/sys/class/sound/timer/dev

-- Kernel configuration:
 isapnp_init not present.


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

Versions of packages udev depends on:
ii  hotplug  0.0.20040329-22 Linux Hotplug Scripts
ii  

Bug#300249: Ugly df output for non-root users after installing udev

2005-03-18 Thread Mike Brodbelt
Package: udev
Version: 0.054-3
Severity: minor


During system startup, the udev package remounts the real /dev directory
under /dev/.static/dev/, using the following commands:-

  mkdir -p /dev/.static/dev
  chmod 700 /dev/.static/
  mount -n --move /tmp /dev/.static/dev

This results in a permission denied error message whenever a non root
user executes the df command on the system, as only root has permissions
on the /dev/.static directory:-

$ df
Filesystem   1K-blocks  Used Available Use% Mounted on
/dev/hda1   507232389960117272  77% /
tmpfs   257284 0257284   0% /dev/shm
/dev/hda5  5115304   3045848   2069456  60% /usr
/dev/hda6  5115304   1852904   3262400  37% /var
/dev/hda7  2555488   732   2554756   1% /tmp
/dev/hda8 11882512   3072856   8809656  26% /usr/local
/dev/hda9 11357848   3866512   7491336  35% /home
df: `/dev/.static/dev': Permission denied
none 10240  2576  7664  26% /de

While this doesn't really affect the functionality of udev, it's kind of
ugly, and I can't help thinking there should be a better way.

Mike.

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 0
lrwxrwxrwx  1 root root 19 2005-03-18 13:48 cd-aliases.rules - 
../cd-aliases.rules
lrwxrwxrwx  1 root root 13 2005-03-18 13:48 udev.rules - ../udev.rules
lrwxrwxrwx  1 root root 12 2005-03-18 13:48 z_hal-plugdev.rules - ../hal.rules

-- /sys/:
/sys/block/fd0/dev
/sys/block/hda/dev
/sys/block/hda/hda10/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hda/hda5/dev
/sys/block/hda/hda6/dev
/sys/block/hda/hda7/dev
/sys/block/hda/hda8/dev
/sys/block/hda/hda9/dev
/sys/block/hdc/dev
/sys/block/loop0/dev
/sys/block/loop1/dev
/sys/block/loop2/dev
/sys/block/loop3/dev
/sys/block/loop4/dev
/sys/block/loop5/dev
/sys/block/loop6/dev
/sys/block/loop7/dev
/sys/block/sda/dev
/sys/block/sda/sda1/dev
/sys/class/drm/card0/dev
/sys/class/input/mice/dev
/sys/class/input/mouse0/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/psaux/dev
/sys/class/printer/lp0/dev
/sys/class/sound/adsp/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/dsp/dev
/sys/class/sound/mixer/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D1c/dev
/sys/class/sound/pcmC0D1p/dev
/sys/class/sound/seq/dev
/sys/class/sound/sequencer2/dev
/sys/class/sound/sequencer/dev
/sys/class/sound/timer/dev

-- Kernel configuration:
 isapnp_init not present.


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.4
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages udev depends on:
ii  hotplug  0.0.20040329-19 Linux Hotplug Scripts
ii  initscripts  2.86.ds1-1  Standard scripts needed for bootin
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  makedev  2.3.1-77creates device files in /dev
ii  sed  4.1.4-2 The GNU sed stream editor

-- no debconf information


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



Bug#300268: /usr/share/man/man5/passwd.5.gz contains inaccurate information

2005-03-18 Thread Mike Brodbelt
Package: passwd
Version: 1:4.0.3-31sarge1
Severity: minor


man 5 passwd produces documentation that is not entirely accurate. The
second paragraph contains the following text:-

The encryped password consists of 13 characters
from  the  64  character  alphabet a thru z, A thru Z, 0 thru 9,
. and /.  Refer to crypt(3) for details on how this string is
interpreted.

This information is clearly incorrect when the system is set to use MD5
passwords, which is increasingly the case. There's also a typo in
encrypted.

Mike.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.4
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages passwd depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libpam-modules  0.76-22  Pluggable Authentication Modules f
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  login   1:4.0.3-31sarge1 system login tools

-- debconf information excluded


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