Bug#298008: python2.3-xml: Dangling link in catalog.soc

2005-03-03 Thread Tim Freeman
Package: python2.3-xml
Version: 0.8.4-1
Severity: minor

I wanted to try validating XML, so I wanted to run xmlproc_val against
the urls.xml file in the example.  

I had to read the source code for xmlproc_val to know that you have
to set XMLSOCATALOG to make it find the catalog.  It would be better
if this were in the manual entry for xmlproc_val.  However, that's too
trivial; the real bug is:

The offered catalog in
/usr/share/doc/python2.3-xml/examples/demo/xmlproc/catalog.soc points
to the URL http://www.schema.net/public-text/catalog.soc, which no
longer exists.  The fix is to delete the reference to the nonexistent
catalog.

Here's a terminal dialogue to make all this clear.  It includes a
patch to catalog.soc.

lobus:~ cp -ra /usr/share/doc/python2.3-xml/examples/demo/xmlproc /tmp/xmlproc
lobus:~ cd /tmp/xmlproc
lobus:/tmp/xmlproc gunzip *.gz */*.gz
lobus:/tmp/xmlproc xmlproc_val urls.xml 
xmlproc version 0.70

Parsing 'urls.xml'
E:hate-sysids:1:0: Couldn't open resource 'hate-sysids'
E:urls.xml:5:7: Element 'xbel' not declared
E:urls.xml:6:8: Element 'title' not declared
...trimmed...
Parse complete, 69 error(s) and 0 warning(s)
lobus:/tmp/xmlproc setenv XMLSOCATALOG catalog.soc
lobus:/tmp/xmlproc xmlproc_val urls.xml 
xmlproc version 0.70
Parsing catalog file 'catalog.soc'
ERROR: Couldn't open resource 'http://www.schema.net/public-text/catalog.soc' 
at http://www.schema.net/public-text/catalog.soc:1:0
TEXT: ''
lobus:/tmp/xmlproc cp catalog.soc catalog.soc.orig
... Edited catalog.soc ...
lobus:/tmp/xmlproc diff -u catalog.soc.orig catalog.soc
--- catalog.soc.orig2005-03-03 15:50:18.0 -0800
+++ catalog.soc 2005-03-03 15:50:50.0 -0800
@@ -12,8 +12,3 @@
 
 PUBLIC +//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML
dtds/xbel-1.0.dtd
-
--- If we can't find a system identifier for the public identifier here, 
-   then go to James Tauber's public catalog --
-
-DELEGATE  http://www.schema.net/public-text/catalog.soc;
\ No newline at end of file
lobus:/tmp/xmlproc xmlproc_val urls.xml 
xmlproc version 0.70
Parsing catalog file 'catalog.soc'

Parsing 'urls.xml'

Parse complete, 0 error(s) and 0 warning(s)

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (1500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.26-treo
Locale: LANG=C, LC_CTYPE=C

Versions of packages python2.3-xml depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  python2.3   2.3.5-1  An interactive high-level object-o

-- no debconf information


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



Bug#297275: beast: Get rid of terminal mangling

2005-03-06 Thread Tim Janik
On Sun, 6 Mar 2005, Thomas Dickey wrote:
Tim Janik [EMAIL PROTECTED] wrote:
so any characters appearing are being put out by ncurses.
that in turn uses escape sequences from the terminal description of
your TERM environment variable which should match the capability set
of konsole.
What's the purpose of the test?  (Reading the configure script, it appears
that the obvious is true: the developer is unaware of tput, which would
do this without involving itself in konsole's differences from xterm).
thanks, i've applied the following patch upstream:
diff -u -p -u -p -r1.25 acbeast.m4
--- acbeast.m4  4 Jul 2004 00:45:51 -   1.25
+++ acbeast.m4  6 Mar 2005 22:29:39 -
@@ -306,26 +306,12 @@ AC_DEFUN(MC_PROG_CXX_WITH_CXXFLAGS,[
dnl figure current screen width from ncurses to make g++
dnl format errors for screensizes!=80 correctly
-   SAVED_LIBS=$LIBS
-   LIBS=$LIBS -lncurses
-   AC_RUN_IFELSE([AC_LANG_SOURCE([[#include stdio.h
-#include curses.h
-   int main()
-   {
-   FILE *f=fopen(conftestval, w);
-   int c;
-   if (!f) exit(1);
-   initscr();
-   c = COLS;
-   endwin();
-   fprintf(f, %d\n,c);
-   exit(0);
-   }
-   ]])],
-   [gxx_columns=`cat conftestval`],
-   [gxx_columns='80'])
-   LIBS=$SAVED_LIBS
-   if test -n $gxx_columns ; then
+   gxx_columns=0
+   AC_CHECK_PROG(TPUT, tput, yes)
+   if test $TPUT = yes; then
+   gxx_columns=$(tput cols)
+   fi
+   if test $gxx_columns -gt 1 ; then
MC_PROG_CC_SUPPORTS_OPTION(-fmessage-length=$gxx_columns,
MC_EVAR_ADD(CXXFLAGS, -fmessage-length=, 
-fmessage-length=$gxx_columns))
fi
so the next release will have it.
---
ciaoTJ
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Bug#436091: boost 1.34.1 version bump

2007-08-05 Thread Tim Blechmann
Package: boost
Severity: wishlist

last month, boost-1.34.1 has been released as a bugfix release, would be great 
to have a debian
package for tit 

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

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


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



Bug#289636: crontab should require confirmation before -r

2007-08-07 Thread Tim Connors
On Mon, 10 Jan 2005, Steve Greenland wrote:

 On 10-Jan-05, 03:14 (CST), Norbert Pabis [EMAIL PROTECTED] wrote:
  In crontab command, option -r should require confirmation by default.
  This is because it is just by button 'e' on keyboard, which does
  editing, and it's easy to make a mistake.

 I'm not going to make Debian's crontab different from all the others.
 When using commands that alter files (rm, shell redirection, etc.), look
 at what you're doing before you press enter.

Yes, and all other tools can have an override aliased to them.

For instance, 'rm -i', or bash's 'set -o noclobber'

Hopefully some of the other distribs would be sensible enough to pick up
the -i patch too.


-- 
Tim Connors  |  Anglo-Australian Observatory
http://site.aao.gov.au/twc   |  Coonabarabran, NSW 2357, Australia
 |  Tel: +61 2 6842 6286


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



Bug#436520: apt-listbugs: does not work with $http_proxy

2007-08-07 Thread Tim Connors
Package: apt-listbugs
Version: 0.0.82
Severity: normal

ruby seems to have some ill thought out security requirement that
soap_use_proxy has to be 'on' if $http_proxy is set.

Since this is irrelevant to whether or not apt-listbugs should
function, can apt-listbugs include some kind of workaround so that the
user doesn't have to fiddle around with soap or ruby settings to get
apt-listbugs to use the proxy?

Currenty, apt-listbugs bails after a timeout because of this:

 aptitude...
...
Fetched 62.8MB in 1m36s (652kB/s)
Reading package fields... Donenment variable http_proxy is set and 
soap_use_proxy is not 'on'.
Reading package status... Done
Retrieving bug reports... 0% Fail
Error retrieving bug reports from the server with the following error message:
 W: Connection timed out - connect(2) (bugs.debian.org, #80)
It could be because your network is down, or because of broken proxy servers, 
or the BTS server itself is down. Check network configuration and try again


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

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

Versions of packages apt-listbugs depends on:
ii  apt   0.7.6  Advanced front-end for dpkg
ii  libdpkg-ruby1.8   0.3.2  modules/classes for dpkg on ruby 1
ii  libhttp-access2-ruby1.8   2.0.6-3HTTP accessing library for ruby
ii  libintl-gettext-ruby1.8   0.11-10Gettext wrapper for Ruby 1.8
ii  libruby1.8 [libzlib-ruby1.8]  1.8.6.36-1 Libraries necessary to run Ruby 1.
ii  libxml-parser-ruby1.8 0.6.8-2Interface of expat for the scripti
ii  ruby  1.8.2-1An interpreter of object-oriented 

apt-listbugs recommends no packages.

-- no debconf information


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



Bug#436526: synergy: applications should lose focus outline in WM when that screen loses focus

2007-08-07 Thread Tim Connors
Package: synergy
Version: 1.3.1-2
Severity: normal

Many a time I have accidentally attempted to type keystrokes into a
window on display 1 having forgotten that I moved my mouse a while ago
over to display 2.  Strangely enough, this doesn't seem to happen to
me when I am using xinerama displays -- only when using x2x or
synergy.

I believe this comes down to display 1 not having lost its focus
outline when the mouse moved over to window 2.

Just like in bug #203027 for x2x, I believe any application that has
focus on screen 1, when screen 1 loses the mouse to screen 2, should
also lose the focus.  This will mean the window manager removes the
focus outline from that window, and it becomes very obvious to the
user that this display is no longer the active one.

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

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

Versions of packages synergy depends on:
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libgcc1 1:4.2.1-2GCC support library
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.1-2  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxtst61:1.0.2-1X11 Testing -- Resource extension 

synergy recommends no packages.

-- no debconf information


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



Bug#436528: synergy: Can mouse location be faked so xeyes doesn't get mouse coordinate thourougly wrong?

2007-08-07 Thread Tim Connors
Package: synergy
Version: 1.3.1-2
Severity: normal

When running synergy, xeyes gets the mouse location incorrect when the
mouse is on the other display, from either the client or the server.
Once on the other screen, xeyes thinks the mouse is in the centre of
either screen.  I wonder if the mouse location can be faked such that
xeyes gets the impression that the mouse is at the true physical
location -- so x,y of -1280,1 if the mouse is at the top left corner
of a screen to the left that has dimensions of 1280x1024.  Dunno
whether X will even allow you to do this.

Course, it's no good faking the mouse location if that causes a
focus-follows-mouse window manager to give focus to an application
thereby making bug#436526 rather hard to fix.

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

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

Versions of packages synergy depends on:
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libgcc1 1:4.2.1-2GCC support library
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.1-2  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxtst61:1.0.2-1X11 Testing -- Resource extension 

synergy recommends no packages.

-- no debconf information


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



Bug#434833: Spontaneous reboots on suspend-to-RAM with new Xorg intel driver

2007-08-09 Thread Tim Hull
I must note that I do have the composite extension enabled.  If I disable
composite, I see these issues occur much less frequetly.

On 7/27/07, Julien Cristau [EMAIL PROTECTED] wrote:

 On Thu, Jul 26, 2007 at 23:27:51 -0400, Tim Hull wrote:

  When using the new intel video driver that replaced the former i810
  driver in Debian, I am experiencing spontaneous reboots randomly on
  suspend-to-RAM.

 What are you using for suspend/resume?

  Right before the system spontaneously reboots, I see a checkered pattern
 on
  a black-and-white console display. At times, though rare, I have also
 seen
  similar crashes when stopping and restarting the X server manually -
 which
  leads me to believe that starting/stopping the X server is what is
 causing
  the issue.  I have no such problem when using 915resolution and the old
 i810
  driver in Etch and on Ubuntu Feisty (their stable), but do see the same
  problem on Ubuntu Gutsy (their unstable) which uses the intel
 driver.  While
  it doesn't occur every time I suspend, it occurs often enough that this
 is a
  MAJOR annoyance for me.  I'm marking this as RC, as such crashes DO
 cause
  data loss in open files - you're free to disagree with me, though...

 That's not what data loss means.

  System configuration is a MacBook Core Duo (first generation) with 2GB
 RAM
  and Debian Sid.
  I've attached my xorg.conf and appropriate logs...

 Thanks,
 Julien

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

 iD8DBQFGqclAmEvTgKxfcAwRAkL/AKCKOW6jyvcqKMCG0kOCqORzevVkRQCfYZdK
 vj3gLM/cmygo5gkhzurvph8=
 =6eET
 -END PGP SIGNATURE-




Bug#434833: Spontaneous reboots on suspend-to-RAM with new Xorg intel driver

2007-08-09 Thread Tim Hull
Actually, I don't think it happens at all - at least I can't reproduce it as
of now without composite.  So this seems to be an issue between composite
(and/or additional settings needed to get it working) and the new
mode-setting driver (it didn't happen w/i810+915resolution).

On 8/9/07, Brice Goglin [EMAIL PROTECTED] wrote:

 Tim Hull wrote:
  I must note that I do have the composite extension enabled.  If I
  disable composite, I see these issues occur much less frequetly.
 

 Less frequency or not at all?

 Brice




Bug#434833: Spontaneous reboots on suspend-to-RAM with new Xorg intel driver

2007-08-09 Thread Tim Hull
I guess I was wrong - it just happened without composite.  So I guess it's
completely random, other than the fact that it freezes/reboots at random
times when:

* I switch from X to console
* I suspend/resume the machine
* I kill the X server (Ctrl-Alt-Backspace)

with the new modesetting intel driver.  This did not happen with
i810+915resolution.

Before freezing/rebooting, the console always displays a checkerboard
pattern.


On 8/9/07, Tim Hull [EMAIL PROTECTED] wrote:

 Actually, I don't think it happens at all - at least I can't reproduce it
 as of now without composite.  So this seems to be an issue between composite
 (and/or additional settings needed to get it working) and the new
 mode-setting driver (it didn't happen w/i810+915resolution).

 On 8/9/07, Brice Goglin [EMAIL PROTECTED] wrote:
 
  Tim Hull wrote:
   I must note that I do have the composite extension enabled.  If I
   disable composite, I see these issues occur much less frequetly.
  
 
  Less frequency or not at all?
 
  Brice
 
 



Bug#437007: Arial and other Core Fonts should be remapped to Bitstream Vera/DejaVu by default

2007-08-09 Thread Tim Hull
Package: fontconfig-config
Version: 2.4.2-1.2

With the default font configuration, Arial and the other fonts that make up
the MS Core Fonts aren't remapped/aliased to any sane alternative.  Thus, if
Arial is used by a website in a browser that uses the system default font
configuration, it will fall back on a font that is less-than-sane (in the
case of debian.org, you can see it fall back to *bitmap Helvetica*).  It
would be nice to use a font like DejaVu Sans if Arial is requested by the
system (this is what is done on Ubuntu).

I tried to find where Debian and Ubuntu's font configuration diverges (to
figure out how to make this fix) but was unsuccessful in doing so.
Hopefully the fontconfig maintainer(s) may be able to locate this in order
to fix the issue.


Bug#437009: No window borders in latest Compiz

2007-08-09 Thread Tim Hull
Package: compiz
Version: 0.5.0.dfsg-2
Priority: important

On Debian sid with the latest Compiz and X installed, running compiz
--replace with an active Gnome/Metacity session results in there being no
window borders.  Compiz effects (cube, window effects, alt+tab, etc) all
work, but none of my windows have window borders.  I even tried
unregistering the /apps/compiz settings in gconf, but it still doesn't work
- hence Compiz is basically unusable.

I'm using a MacBook with Intel GMA 950 graphics and the X.org intel
driver.  No such problems were experienced with Compiz with the same system
in Etch.


Bug#437018: Network shouldn't be used/enforced on non-network installs

2007-08-09 Thread Tim Hull
Package: debian-installer
Version: 20070308
Priority: wishlist

During installs from CD-ROM and DVD media, users are still currently
prompted to set up the network and download security fixes from the
network.  However, many (quite possibly most) users who use the full-blown
install media (as opposed to the netinstall CD) do not have access to a
network connection which is functional during the install and as such have
to navigate through these steps and the inevitable errors they produce for
no reason at all.

It would be GREAT if the network-related steps would be skipped/bypassed on
a default install from non-netinstall media.  Users then could configure the
network at their leisure after the install using the tools they prefer
(NetworkManager etc).  Could this be considered?


Bug#437016: d-i inconsistent in definition of GB used

2007-08-09 Thread Tim Hull
Package: debian-installer
Version: 20070308

During an Etch install, the partitioning step is inconsistent about the
definition of a gigabyte.
For example, when LVM volumes are created, the definition of GB used for
specifying their size is
(1024*1024*1024) bytes.  However, the definition of GB used on the main
partitioning screen is a billion
(1000*1000*1000) bytes.  Thus, a 10.0GB LVM volume will appear confusingly
as 10.6 GB on the main partitioning
screen.  This should be fixed in a future d-i build.


Bug#437012: Gdebi should be default handler for application/x-deb when installed

2007-08-09 Thread Tim Hull
Package: gdebi
Version: 0.2.4debian1

Currently, I have gdebi installed on my Debian Sid system.  While it is
registered as a handler for the MIME type application/x-deb in the system,
it is NOT the default application for GNOME/Iceweasel/etc to handle .deb
files (File Roller is).  It seems like if gdebi is installed on a system, it
should make itself the default handler for .debs (in GNOME/Iceweasel/etc) on
the system which it is installed.


Bug#437013: d-i doesn't properly understand LVM groups with active snapshot volumes

2007-08-09 Thread Tim Hull
Package: debian-installer
Version: 20070308

I recently used d-i to install Debian Etch to a volume that was part of an
LVM volume group that contained an active snapshot volume.  While the
installation proceeded fine, it issued an error message to the effect that
something was wrong with the partition table (can't recall the exact
message).  This should be fixed for future d-i releases...


Bug#437019: Don't lock display on suspend-to-RAM

2007-08-09 Thread Tim Hull
Package: gnome-power-manager
Version: 2.18.3-1
Priority: wishlist

Currently, when one suspends-to-RAM using the Suspend option in
gnome-power-manager, the display is locked upon resume from suspend.  This
is somewhat annoying, as I did not set my system to lock on suspend-to-RAM
in the suspend scripts.  Could gnome-power-manager not do this by default?
It is quite annoying for a user who suspends their system for short periods
of time often and has no way of disabling this besides calling
suspend-to-RAM scripts manually from the command line.


Bug#437018: Network shouldn't be used/enforced on non-network installs

2007-08-10 Thread Tim Hull
I guess having it look for a network in the background and silently fail
would be preferable, in any case.  Is this doable?

On 8/10/07, Christian Perrier [EMAIL PROTECTED] wrote:

 Quoting Tim Hull ([EMAIL PROTECTED]):

  It would be GREAT if the network-related steps would be skipped/bypassed
 on
  a default install from non-netinstall media.  Users then could configure
 the
  network at their leisure after the install using the tools they prefer
  (NetworkManager etc).  Could this be considered?

 Probably not. Having a system with immediate support for security
 updates is one of the key features of Debian. Doing this would defeat
 that design choice.

 I'm letting other D-I team members give their advice and decide
 whether this bug report should be kept or marked wontfix.

 --



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

 iD8DBQFGu/1r1OXtrMAUPS0RAvwAAJoCbz6zN8M4ZXBWVjIAix7ekHr1gwCgoWOg
 dUzSO/6xCpIaWOHTn6NOsxs=
 =eJ8o
 -END PGP SIGNATURE-




Bug#437126: cups-pdf doesn't find /usb/bin/gs

2007-08-10 Thread Tim Blechmann
Package: cups-pdf
Version: 2.4.6-2
Severity: normal

cups-pdf is broken in testing, as it requires /usb/bin/gs, which is not 
installed on the 
machine.

the specific part of /var/log/cups/error_log is:

sh: /usr/bin/gs: No such file or directory


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

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

Versions of packages cups-pdf depends on:
ii  cupsys   1.2.12-1Common UNIX Printing System(tm) - 
ii  gs-esp   8.15.3.dfsg.1-1 The Ghostscript PostScript interpr
ii  libc62.6.1-1 GNU C Library: Shared libraries

cups-pdf recommends no packages.

-- debconf-show failed


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



Bug#437018: Network shouldn't be used/enforced on non-network installs

2007-08-10 Thread Tim Hull


 Of course security updates should be enabled by default, and I do agree
 that it's sensible for the system to _ask_ to try to install security
 updates even if there's no network. But there are cases where security
 updates don't make much sense, and I do think that the current behaviour
 (there's no working connection to the Internet, but what the heck,
 we'll try anyway, and if it doesn't work, the admin will have to wait
 for the connection to time out an insane number of times) is a bug.


In my circumstance, I've been installing on a system with both an Ethernet
card (supported during the install) and a wi-fi card (supported with
non-free madwifi driver).  I currently don't use the ethernet - wi-fi is all
I use. When I go back to school (in about 2 weeks or so), I'll have
Ethernet, but it uses 802.1x authentication so it still will be worthless
for the install.

Furthermore, even if I had networking durring the install, I do NOT like the
idea of downloading updates during the install without prompting - sometimes
I'm using a satellite internet connection with some pretty hefty bandwidth
quotas and would MUCH rather grab these updates during off-peak hours.  I
had this cause bandwidth throttling in the past when I was installing Debian
in a VM with network connectivity during the install.

Anyway, it seems like there should be a would you like to use the network
question or option in the installation boot menu.  As it stands, the current
behavior is quite bad for those who either have no usable network during an
install (which I would have to guess is sizable) and even worse for those
who *do* have networking but which have limited bandwidth that they don't
want sucked up at will.

Tim


Bug#437182: CD Burner should be default program associated with ISO mimetype

2007-08-10 Thread Tim Hull
Package: nautilus-cd-burner
Version: 2.18.2-1

In a Debian sid install with the desktop task installed,
nautilus-cd-burner isn't the default handler
associated with the mimetype for .ISO files - file-roller is.  This should
be changed, such that opening a .iso file burns its contents to a CD.


Bug#437013: d-i doesn't properly understand LVM groups with active snapshot volumes

2007-08-10 Thread Tim Hull
The message states:

Unable to determine geometry of file/device.  You should not use Parted
unless you REALLY know what you're doing!

The log is attached...


On 8/10/07, Otavio Salvador [EMAIL PROTECTED] wrote:

 Tim Hull [EMAIL PROTECTED] writes:

 Package: debian-installer
 Version: 20070308
 I recently used d-i to install Debian Etch to a volume that was part
 of
 an LVM volume group that contained an active snapshot volume.  While
 the installation proceeded fine, it issued an error message to the
 effect that something was wrong with the partition table (can't
 recall
 the exact message).  This should be fixed for future d-i releases...

 Can you check your installed system on /var/log/installer/ and see if
 the error message is avaiable there? In case you find it, you can send
 the logfile, bziped, to the bug report.

 --
 O T A V I OS A L V A D O R
 -
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://otavio.ossystems.com.br
 -
 Microsoft sells you Windows ... Linux gives
 you the whole house.



partman.bz2
Description: BZip2 compressed data


Bug#437009: No window borders in latest Compiz

2007-08-11 Thread Tim Hull


 Any warning?

 Is gtk-window-decorator running after starting compiz? if so, kill it
 and compiz --replace again and again?

 Brice

 The warnings I got were:

GLX_EXT_texture_from_pixmap is not available with direct rendering.
GLX_EXT_texture_from_pixmap is available with indirect rendering.

gtk-window-decorator IS running after I do compiz --replace, and if I kill
it and run compiz --replace again, I initially lose the borders.  However,
if I do compiz --replace a third time, I get the borders to appear.
However, only some applications - and not all - get borders.  In particular,
newly-launched applications (after Compiz is run) never acquire borders, and
tend to start in the top left-most corner of the screen rather than the
middle of the screen.


Bug#434583: place to start

2007-08-11 Thread Tim Blechmann
hi all,

maybe a place to start:
http://ubuntuforums.org/showthread.php?t=518516

best, tim

--
[EMAIL PROTECTED]ICQ: 96771783
http://tim.klingt.org

Happiness is a byproduct of function, purpose, and conflict; those who
seek happiness for itself seek victory without war.
  William S. Burroughs


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


Bug#437019: Don't lock display on suspend-to-RAM

2007-08-11 Thread Tim Hull

 This is intentional, because it is a very bad idea, security speaking,
 not to lock the screen when you are not using the system.

 If you really want to do that, you can change
 the /apps/gnome-power-manager/lock_on_suspend GConf key.


OK - I guess I don't like it because Mac OS X and Windows do nothing of the
sort and it takes long enough
to resume from suspend in Debian as-is.  I understand the security risk - it
definitely seems worthwhile to do this if your system is being left in a
public place -  though it becomes less of a concern if this isn't the case.
In any case, it would be nice to have this as a GUI-configurable option in
g-p-m - the gconf key will do for now, though...

Thanks for responding, though...

Cheers,
 --
 .''`.
 : :' :  We are debian.org. Lower your prices, surrender your code.
 `. `'   We will add your hardware and software distinctiveness to
   `-our own. Resistance is futile.


(Your sig is funny - I like it :))


Bug#434833: Issue with X rebooting system/new intel driver

2007-08-11 Thread Tim Hull
Hi,

Is there any progress on this issue (spontaneous rebooting in X with the
intel driver)?
I'm experiencing this on both Debian and Ubuntu with said driver, so it
definitely is an upstream issue.
Has an upstream bug been filed?  I'm not acquainted with X.org's bug
reporting system myself...

In the meantime, is there a place I can get the latest version of the old
i810 driver? xserver-xorg-video-i810
in both testing and unstable is simply a transitional package.  In my case,
if I use i810+915resolution, I have no issues
whatsoever with X and spontaneous rebooting.

Tim


Bug#437705: Gksu causes large amount of wakeups from idle w/tickless kernel

2007-08-13 Thread Tim Hull
Package: gksu
Version: 2.0.0-1

On my Debian Etch install with backported 2.6.22 kernel, running any
application that uses gksu (such as the Root Terminal) causes an
extraordinarily high amount of wakeups (and thus, a large amount of power to
be consumed) as measured with the PowerTOP 1.7 tool.  In the case of
applications which use gksu for authentication, this continues as long as
the application is open, and does NOT stop after the user has successfully
authenticated.

For comparison:

System with gnome-terminal open, doing nothing:

Wakeups-from-idle per second : 422.0

System with gnome-terminal open, doing nothing (invoked with gksu):

Wakeups-from-idle per second : 1550.6

This needs to be fixed...


Bug#443235: uswsusp: does not update initrd

2007-09-19 Thread Tim Dijkstra
On Wed, 19 Sep 2007 22:09:11 +0200
Cihan [EMAIL PROTECTED] wrote:

 Package: uswsusp
 Version: 0.7-1
 Severity: normal
 
 After updating the package from 0.6~cvs20070618-1 to 0.7-1 the initrd images 
 are not recreated which is why resume fails with a kernel BUG after 
 suspending to disk.
 

Did you read the NEWS file?

grts Tim


signature.asc
Description: PGP signature


Bug#443184: am-utils: Fails to mount drives after approximately five minutes

2007-09-20 Thread Tim Cutts


On 19 Sep 2007, at 2:06 pm, Keith Edmunds wrote:


amd[3449]: setmntent((null), a): Bad address
(repeated many times)

Couldn't find how to unmount /a/xxx.xx.xxx.xxx/home
(repeated for various mounts)


Never seen anything like that.  Curious.  Is /a your intercept point,  
or is it where you want am-utils to actually mount things?  (which  
is /amd by default).


There's probably lots of useful information that I've omitted, but  
I can

provide any that you need.


Please send your complete /etc/default/am-utils, your complete /etc/ 
am-utils/amd.conf, and your map.






Some points:

- the /etc/default/am-utils file is not listed at
  http://packages.debian.org/etch/am-utils/i386/filelist, but it does
  appear to be part of the package


That's perfectly OK.  It isn't supplied with the package tarball;  
it's created by the postinst script after the package has been  
unpacked.  It's maintained after that by the ucf program (see the  
second paragraph of the DESCRIPTION section of the ucf manpage)



- in /etc/default/am-utils, we have ADIR=/a.


And where do you later use this?  None of the scripts I maintain in  
Debian's package of am-utils know anything about ADIR.


Without seeing your configuration files, there's not going to be much  
I can do.


It looks like your master map comes from NIS, and is called amd-v.   
Can you please send me that as well?  If you're worried about making  
that information publically available, feel free to send it to me  
personally, and not to the BTS.


Tim


--
The Wellcome Trust Sanger Institute is operated by Genome Research 
Limited, a charity registered in England with number 1021457 and a 
company registered in England with number 2742969, whose registered 
office is 215 Euston Road, London, NW1 2BE. 




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



Bug#443235: uswsusp: does not update initrd

2007-09-20 Thread Tim Dijkstra
On Thu, 20 Sep 2007 08:19:54 +0200
[EMAIL PROTECTED] wrote:

 Tim Dijkstra wrote:
  
  Did you read the NEWS file?
 
 Yes I did. But as I understand the initrd of the *current* kernel 
 version should have been updated anyway which is not the case although 
 the .conf file contains the line update_initramfs=yes.

OK. How did you check that the initramfs was not updated? In that case
you should just get a message from resume about non matching versions,
not a BUG().

A manual update-initramfs did work?

grts Tim


signature.asc
Description: PGP signature


Bug#443282: portreserve: Fails to reserve ports if they are specified by number

2007-09-20 Thread Tim Cutts
Package: portreserve
Version: 0.0.0-3
Severity: normal
Tags: patch


If a configuration file specifies the port to reserve by number, rather
than by name, the port lookup then fails, becayse the reserve() function
fails to run htons() on the supplied port number.

The supplied patch fixes the problem.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22.6deskpro
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages portreserve depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries

portreserve recommends no packages.

-- no debconf information



-- 
 The Wellcome Trust Sanger Institute is operated by Genome Research 
 Limited, a charity registered in England with number 1021457 and a 
 company registered in England with number 2742969, whose registered 
 office is 215 Euston Road, London, NW1 2BE. 
--- portreserve.c   2007-09-20 10:03:28.630129403 +0100
+++ portreserve.c.orig  2007-09-20 10:03:01.62374 +0100
@@ -131,7 +131,7 @@
int port = strtol (service, endptr, 10);
if (service == endptr)
return -1;
-   serv = getservbyport (htons(port), NULL);
+   serv = getservbyport (port, NULL);
if (!serv)
return -1;
}


Bug#443592: procmeter3: two extra temperatures available in my laptop

2007-09-22 Thread Tim Connors
Package: procmeter3
Version: 3.4g-1
Severity: normal

As well as Sensors.Temp0 and Sensors.Temp1, I also have the contents of 
/proc/acpi/thermal_zone/THM/temperature which read as:
temperature: 35 C
This is a different temperature to either CPU0 or 1.

This does not seem to be accessible by ACPI.Thermal1, which simply
returns 0 on my system, so that must belong to something else, which
I don't have.

Additionally, I have the hddtemp package instead, and you are able to
read the temperature of the drive by reading port 7634:
 netcat localhost 7634 ; echo
|/dev/sda|SAMSUNG HM250JI|31|C|

Could you considering making additions to the Stat-disk and ACPI
modules as appropriate?

Thanks.

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

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

Versions of packages procmeter3 depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libglib1.2ldbl  1.2.10-19The GLib library of C routines
ii  libgtk1.2   1.2.10-18.1  The GIMP Toolkit set of widgets fo
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxaw7 2:1.0.4-1X11 Athena Widget library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxmu6 1:1.0.3-1X11 miscellaneous utility library
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library

procmeter3 recommends no packages.

-- no debconf information



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



Bug#443599: procmeter3: two extra temperatures available in my laptop

2007-09-22 Thread Tim Connors
Package: procmeter3
Version: 3.4g-1
Severity: normal

As well as Sensors.Temp0 and Sensors.Temp1, I also have the contents of 
/proc/acpi/thermal_zone/THM/temperature which read as:
temperature: 35 C
This is a different temperature to either CPU0 or 1.

This does not seem to be accessible by ACPI.Thermal1, which simply
returns 0 on my system, so that must belong to something else, which
I don't have.

Additionally, I have the hddtemp package instead, and you are able to
read the temperature of the drive by reading port 7634:
 netcat localhost 7634 ; echo
|/dev/sda|SAMSUNG HM250JI|31|C|

Could you considering making additions to the Stat-disk and ACPI
modules as appropriate?

Thanks.

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

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

Versions of packages procmeter3 depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libglib1.2ldbl  1.2.10-19The GLib library of C routines
ii  libgtk1.2   1.2.10-18.1  The GIMP Toolkit set of widgets fo
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxaw7 2:1.0.4-1X11 Athena Widget library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxmu6 1:1.0.3-1X11 miscellaneous utility library
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library

procmeter3 recommends no packages.

-- no debconf information



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



Bug#406457: Me too

2007-09-23 Thread Tim Day
Just saw this myself.
Standard etch install (upgraded from sarge), 2.6.18-5-686 kernel, gdm.
I added 
  console=ttyS0,9600n8
and later
  console=tty0 console=ttyS0,9600n8
to the boot options in the hope of getting some info to diagnose an
infrequent system freeze.  In both cases, When gdm came up after the
reboot it was unresponsive to keyboard input (mouse fine) until either I
- ssh-ed into the machine and restarted gdm
or
- used the mouse to click to the XDMCP chooser (which was observed to
respond to keyboard) then cancel back to the login prompt (which then
accepted keyboard).






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



Bug#443599: woops

2007-09-23 Thread Tim Connors
merge 443592 443599
thanks

Mail configuration error with new machine, sorry...

-- 
TimC
I give up, said Pierre de Fermat's friend. How DO you keep a
mathematician busy for 350 years?



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



Bug#443539: uswsusp: resume complains at boot and fails with missing libpcre.so.3 resuming after s2disk

2007-09-24 Thread Tim Dijkstra
On Sat, 22 Sep 2007 11:03:43 +0200
chryjs [EMAIL PROTECTED] wrote:

 Package: uswsusp
 Version: 0.7-1
 Severity: normal
 
 
 resume fails loading image on RESUME device, complaining missing
 libpcre.so.3 at boot. The boot continues as if there was no uswsusp
 image stored (and then goes on fsck's...).
 
 After the system is back to normal op's :
 
 $ ldd /usr/lib/uswsusp/resume
 [...]
 libpcre.so.3 = /usr/lib/libpcre.so.3 (0x2aab5c41d000)
 [...]
 NB: not any missing lib between brackets.

Well, that is doubly weird: first because the i386 version doesn't have
that dependency, and second because the initramfs script should have
copied all dependencies automatically...

Can you maybe make a copy of your current initramfs and run update-initramfs -u?

grts Tim


signature.asc
Description: PGP signature


Bug#407336: [pkg-ntp-maintainers] Bug#407336: ntp: undesirable behaviour of overwriting conf file based on dhcp unconfigurable

2007-09-25 Thread Tim Connors
On Fri, 13 Jul 2007, Tim Connors wrote:

 On Sat, 23 Jun 2007, Andrew Pollock wrote:

  On Tue, Feb 27, 2007 at 10:02:05PM +0100, Kurt Roeckx wrote:
   reassign 407336 dhcp3-client
   thanks
  
at the start of the remove and add functions in
/etc/dhcp3/dhclient-enter-hooks.d/ntp and it is quite clearly being 
called
with $reason=BOUND
(about third time around after a bunch of times when $reason didn't
match).
   
This is with
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers,
netbios-name-servers, netbios-scope, interface-mtu;
in /etc/dhcp3/dhclient.conf
  
   This looks like a bug in dhcp3 to me, since it's not requested.
  
 
  I can't reproduce this problem. I ran a DHCP server/client pair, and
  where the ntp-servers were not requested, none was included in the
  information accessible to the hooks.
 
  Try modifying the debug hooks to include new_ntp_servers and
  old_ntp_servers in the list of variables they write out, and enable the
  debug hooks whilst acquiring a lease.

 Fri Jul 13 15:01:40 EST 2007: entering dhclient-enter-hooks.d, dumping
 variables.
 reason='BOUND'
 interface='eth0'
 medium=''
 alias_ip_address=''
 new_ip_address='150.203.92.87'
 new_subnet_mask='255.255.255.0'
 new_domain_name='anu.edu.au'
 new_domain_name_servers='150.203.92.5'
 new_routers='150.203.92.1'
 new_static_routes=''
 old_ip_address='192.231.166.113'
 old_subnet_mask='255.255.255.0'
 old_domain_name='aao.gov.au'
 old_domain_name_servers='192.231.166.63 192.231.167.64 150.203.1.10'
 old_routers='192.231.166.3'
 old_static_routes=''
 new_ntp_servers='150.203.92.5'
 old_ntp_servers=''

 So it's being received despite not being asked for.  I tried changing the
 shebang line of /sbin/dhclient-script to include a -x, but didn't find
 anything of use in there.  Where to from here?

 Unfortunately, I don't make a transition to this network very often.

Any thoughts on this?


On a differnet network now with a different laptop, and this time I am
trying to not request domain-name-servers, because
1) netenv is taking care of that for me,
and
2) I am intentionally trying to disable one of the domain name servers
that the dhcp server is sending me, because that DNS server is proving to
be very unreliable.

Despite it not appearing in the request line, it is still being sent to
me, and I am ending up with that dodgy DNS server still ending up in
pdnsd's configuration via resolvconf.

My thoughts are that as well as having the ability to request items from
the dhcp server, we should explicitly get the ability to blacklist
unsolicited crap the dhcp server returns back to us.  I don't *want* my
ntp servers or DNS servers to be changed from underneath me.

-- 
Tim Connors  |  Anglo-Australian Observatory
http://site.aao.gov.au/twc   |  Coonabarabran, NSW 2357, Australia
 |  Tel: +61 2 6842 6286



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



Bug#444103: patch: enable ssh support if ssh-agent is disabled

2007-09-26 Thread Tim Riker

Package: gnupg-agent
Version: 2.0.6-1
Severity: wishlist
Tags: patch

If /etc/X11/Xsession has use-ssh-agent disabled, and 
$GNUPGHOME/gpg.conf has use-agent, we might as well enable ssh-agent 
support in gpg-agent.


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

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

Versions of packages gnupg-agent depends on:
ii  libc6  2.6.1-5GNU C Library: Shared libraries
ii  libgcrypt111.2.4-2LGPL Crypto library - runtime libr
ii  libgpg-error0  1.4-2  library for common error values an
ii  libpth20   2.0.7-8The GNU Portable Threads

Versions of packages gnupg-agent recommends:
ii  gnupg  1.4.6-2GNU privacy guard - a free PGP rep
ii  gnupg2 2.0.6-1GNU privacy guard - a free PGP rep
ii  gpgsm  2.0.6-1GNU privacy guard - S/MIME version
ii  pinentry-qt [pinentry] 0.7.3-1Qt-based PIN or pass-phrase entry

-- no debconf information

--
Tim Riker - http://Rikers.org/ - [EMAIL PROTECTED]
Embedded Linux Technologist - http://eLinux.org/
BZFlag maintainer - http://BZFlag.org/ - for fun!
--- /etc/X11/Xsession.d/90gpg-agent.orig	2007-09-25 23:30:55.0 -0600
+++ /etc/X11/Xsession.d/90gpg-agent	2007-09-25 23:36:38.0 -0600
@@ -4,6 +4,12 @@
 PID_FILE=$GNUPGHOME/gpg-agent-info-$(hostname)
 
 if grep -qs '^[[:space:]]*use-agent' $GNUPGHOME/gpg.conf $GNUPGHOME/options 
+
+   # user wants gpg-agent, but not ssh-agent, assume ssh support in gpg-agent
+   if ! grep -qs ^use-ssh-agent $OPTIONFILE; then
+   ENABLESSH='--enable-ssh-support'
+   fi
+
test -x $GPGAGENT 
{ test -z $GPG_AGENT_INFO || ! $GPGAGENT 2/dev/null; }; then
 
@@ -14,6 +20,6 @@
# Invoking gpg-agent with no arguments exits successfully if the agent
# is already running as pointed by $GPG_AGENT_INFO
if ! $GPGAGENT 2/dev/null; then
-   STARTUP=$GPGAGENT --daemon --sh --write-env-file='$PID_FILE' $STARTUP
+   STARTUP=$GPGAGENT --daemon $ENABLESSH --sh --write-env-file='$PID_FILE' $STARTUP
fi
 fi


Bug#436231: Fixed in upstream CVS

2007-08-14 Thread Tim Day
This is fixed in the evolvotron CVS head (sourceforge), which should be
released as 0.5.0 in a few weeks, I hope.

If anyone wants to backport the specific fix, the issue is simply that
in 0.4.0 a
  std::ofstream sink(/dev/null);
is declared in main()'s scope.  In the CVS head it's been renamed to
sink_ostream and declared/instantiated in useful.h/useful.cpp (note that
useful.* files moved from libevolvotron/ to the new libfunction/ in the
CVS head), however all that is probably actually needed is to move the
declarations of sink out of main scope to file scope.

Alternatively, simply running evolvotron 0.4.0 with a -v option is
likely to avoid the crash (haven't verified this myself).

Recent post-0.4.0 evolvotron development with a relatively recent gcc
picked up some other sloppy object lifetime management issues (older gcc
happened to let me get away with it) which are now fixed in the CVS head
(ie there might be other 0.4.0 exit-cleanup issues besides the one
mentioned here).

Regards
Tim Day (upstream evolvotron developer)




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



Bug#399391: closed by Tim Cutts [EMAIL PROTECTED] (Bug#399391: fixed in tkcvs 8.0.4-1)

2007-08-14 Thread Tim Cutts


On 14 Aug 2007, at 5:58 pm, Fabien COUTANT wrote:

Le Mon, 13 Aug 2007 17:54:05 +, Debian Bug Tracking System a  
écrit:

This is an automatic notification regarding your Bug report
#399391: tkcvs: impossible to enter a working-copy directory, nor  
start inside,

which was filed against the tkcvs package.

It has been closed by Tim Cutts [EMAIL PROTECTED].

Their explanation is attached below.  If this explanation is
unsatisfactory and you have not received a better one in a separate
message then please contact Tim Cutts  
[EMAIL PROTECTED] by replying

to this email.


Thanks.
Will this new version make its way into Etch ?


Unlikely.  Currently Debian does not update packages to new upstream  
versions between major releases, so this will go into Lenny.


Having said that, there's probably nothing to stop you installing it  
yourself by hand; I think it should work on etch.


Upstream claim this version fixes the timezone issue - I'd be  
interested to hear whether you find it has done!


Tim

--
The Wellcome Trust Sanger Institute is operated by Genome Research
Limited, a charity registered in England with number 1021457 and a
company registered in England with number 2742969, whose registered
office is 215 Euston Road, London, NW1 2BE.



Bug#399391: closed by Tim Cutts [EMAIL PROTECTED] (Bug#399391: fixed in tkcvs 8.0.4-1)

2007-08-15 Thread Tim Cutts


On 15 Aug 2007, at 7:38 am, Fabien COUTANT wrote:


Le Wed, 15 Aug 2007 06:52:05 +0100, Tim Cutts a écrit:

Will this new version make its way into Etch ?


Unlikely.  Currently Debian does not update packages to new upstream
versions between major releases, so this will go into Lenny.


Very sad... As user and supporter of Debian, I can't understand  
that bugs
open before Etch was declared stable aren't corrected in Etch, even  
in an
update release. I know it's a general Debian decision, but this  
discourages

me to make new bug reports :'-(


Not Debian's (or my) fault this time - the upstream version which  
fixes the bug was not released until after Etch.  Debian's policy of  
not updating upstream versions between releases is, as you say, a bit  
annoying, but it has one major advantage, and that is that *new* bugs  
don't accidentally get introduced, so the software is kept more  
stable.  Of course, if you want the best of both worlds, then you can  
consider Ubuntu, because it takes Debian's testing track once every  
six months or so and builds a new Ubuntu from it.  So Ubuntu will  
actually get this new version of tkcvs before Debian stable does.


Please don't stop reporting bugs.  Even if it takes a while to fix  
them, it's still important to know about them!



Having said that, there's probably nothing to stop you installing it
yourself by hand; I think it should work on etch.

Upstream claim this version fixes the timezone issue - I'd be
interested to hear whether you find it has done!


The new package intalls fine in Etch, and the TZ bug appears to be  
fixed.

Thanks again for your work.


Brilliant.  I'm sorry it took so long...

Tim

--
The Wellcome Trust Sanger Institute is operated by Genome Research
Limited, a charity registered in England with number 1021457 and a
company registered in England with number 2742969, whose registered
office is 215 Euston Road, London, NW1 2BE.



Bug#437018: closed by Joey Hess [EMAIL PROTECTED] (Re: Bug#437018: Network shouldn't be used/enforced on non-network installs)

2007-08-15 Thread Tim Hull
-- Forwarded message --

 From: Joey Hess [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Date: Wed, 15 Aug 2007 16:13:23 -0400
 Subject: Re: Bug#437018: Network shouldn't be used/enforced on non-network
 installs
 Wouter Verhelst wrote:
  (there's no working connection to the Internet, but what the heck,
  we'll try anyway, and if it doesn't work, the admin will have to wait
  for the connection to time out an insane number of times)

 If there's no network connection *at all*, there is no timeout to wait
 for. Try it yourself:

 [EMAIL PROTECTED]:/home/joeyifdown wlan0
 ...
 [EMAIL PROTECTED]:/home/joeytime apt-get update
 ...
 0.06user 0.04system 0:00.21elapsed 48%CPU (0avgtext+0avgdata
 0maxresident)k
 0inputs+0outputs (0major+3403minor)pagefaults 0swaps
 zsh: exit 100   command time apt-get update

 In the edge case where there is a network connection with a default route
 that
 doesn't work, you get to wait for a timeout. We have discussed this
 before,
 and this is a sufficiently uncommon enough case that it's not worth asking
 in every install whether d-i should hit the network[1]. If you're in such
 a
 situation, unplug your network cable, or fix your network before trying to
 install Debian, or run the install in expert mode and tell it not to set
 up a network connection.



I see what you're saying.  However, one must still navigate the d-i steps
related to networking in any case, and in my experience I've had to wait for
a DHCP timeout on a disconnected network card. IMHO, it seems logical to add
a Don't use a network for this install option as a choice on the screen
which lists the available network cards.  If that is selected, the updates
step and all network-related steps would be skipped entirely.

I think that would be the ideal solution - it would make the install much
more friendly to users who don't have networking during the install. This
situation is probably more common than you think, since it includes every
wi-fi-only user as well as anyone who uses authentication methods like
802.11x.

Could this be considered?

Tim

Tim


Bug#433872: uswsusp: nx6325 fails to resume from s2ram

2007-08-17 Thread Tim Dijkstra
Hi Ludovic,

Before I forward this to the suspend list for some more input. I have some 
questions:

What video driver do you use? (If you use the binary nvidia or ati
drivers, could you try with the floss ones?)

Are you using framebuffer? (If so could you try without?)

Can you maybe first try the latest version?

Grts Tim


signature.asc
Description: PGP signature


Bug#434630: s2ram: whitelist for HP OmniBook XE3 GC

2007-08-17 Thread Tim Dijkstra
Hi Stefan, 

It seems you have the best view on the whitelist, can you add this
machine with `-s'?

TIA,

Tim


On Wed, 25 Jul 2007 14:20:46 +0200
Frederic Mothe [EMAIL PROTECTED] wrote:

 Package: uswsusp
 Version: 0.3~cvs20060928-7
 Severity: wishlist
 
 Hello,
 
 Could you please add this computer to the s2ram whitelist ?
 It seems to work fine with the following command lines:
 
 s2ram -f -s
 s2ram -f -p -s
 s2ram -f -a 1 -s
 s2ram -f -a 2 -s
 s2ram -f -a 3 -s
 
 (without -s, it does not work with the framebuffer)
 
 I forgot to mention that yes, it works both from X and the console.
 There are almost no problems (some screen garbage) with the framebuffer
 if the -s option is used.

 This machine can be identified by:
  sys_vendor   = Hewlett-Packard
  sys_product  = HP OmniBook PC 
  sys_version  = HP OmniBook XE3 GC 
  bios_version =  GC.M1.63
 
 Thank you!
 Frédéric Mothe
 


signature.asc
Description: PGP signature


Bug#438582: lvm-common: /etc/init.d/lvm stop hangs if a volume is mounted.

2007-08-17 Thread Tim Phipps
Package: lvm-common
Version: 1.5.20
Severity: important


For whatever reason /home could not be unmounted (actually a USB DVB-T
tuner had gone awol and the process attached could not be killed, so
that processes cwd could not be unmounted). vgchange hangs with the
message 'Can't deactivate vol group vg1 with 1 open logical volume'.

It should time out, or give up. Just hanging is no good, the system
isn't usable and you have to just power off which is a greater risk of
data loss than just giving up and going to reboot.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-hippo-5-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages lvm-common depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  module-init-tools  3.3-pre4-2tools for managing Linux kernel mo

Versions of packages lvm-common recommends:
ii  logrotate 3.7.1-3Log rotation utility

-- no debconf information


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



Bug#438628: kile freezes during startup

2007-08-18 Thread Tim Blechmann
Package: kile
Version: 1:1.9.3-4
Severity: normal

kile freezes, when i'm trying to start it ... strace tells me:
open(/etc/rpc, O_RDONLY)  = 11
fcntl64(11, F_GETFD)= 0
fcntl64(11, F_SETFD, FD_CLOEXEC)= 0
fstat64(11, {st_mode=S_IFREG|0644, st_size=887, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 
0xffde0eb0) = 0xf60e6000
read(11, # This file contains user readab..., 4096) = 887
close(11)   = 0
munmap(0xf60e6000, 4096)= 0
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 11
bind(11, {sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr(0.0.0.0)}, 
16) = 0
connect(11, {sa_family=AF_INET, sin_port=htons(111), 
sin_addr=inet_addr(127.0.0.1)}, 16) = 0
gettimeofday({1187438694, 750573}, NULL) = 0
futex(0xf7917e80, FUTEX_WAKE, 2147483647) = 0
write(11, \200\0\0(G\373\v\205\0\0\0\0\0\0\0\2\0\1\206\240\0\0\0..., 44) = 44
poll([{fd=11, events=POLLIN, revents=POLLIN}], 1, 6) = 1
read(11, \200\0\0XG\373\v\205\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0..., 500) = 92
close(11)   = 0
socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 11
connect(11, {sa_family=AF_INET, sin_port=htons(985), 
sin_addr=inet_addr(127.0.0.1)}, 16) = 0
getegid32() = 1000
geteuid32() = 1000
write(11, \0\0\0\34N0 1000 1000 sockmeister\\n\0, 32) = 32
read(11, 



-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (10, 
'experimental')
Architecture: i386 (x86_64)

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

Versions of packages kile depends on:
ii  kdelibs4c2a 4:3.5.7.dfsg.1-4 core libraries and binaries for al
ii  konsole 4:3.5.7-2X terminal emulator for KDE
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libgcc1 1:4.2-20070712-1 GCC support library
ii  libqt3-mt   3:3.3.7-6Qt GUI Library (Threaded runtime v
ii  libstdc++6  4.2-20070712-1   The GNU Standard C++ Library v3
ii  texlive-latex-base  2007-10  TeX Live: Basic LaTeX packages

Versions of packages kile recommends:
pn  kdvi  none (no description available)
pn  kghostviewnone (no description available)

-- no debconf information


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



Bug#390712: Work around

2007-08-18 Thread Tim Angus
This also occurs with exim4-daemon-heavy and my Nokia E70 with EPOC
mail.

Since the problem is in GNUTLS, it can be worked around by using
OpenSSL, which is fortunately simply a case of editing debian/rules
such that OPENSSL := 1.

UNfortunately, this isn't so staightforward with -heavy because
apparently linking it with OpenSSL constitutes a GPL violation. You are
thus forced to build an exim4-daemon-custom (and violate the GPL) in
order to get -heavy's features with OpenSSL.



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



Bug#419793: libarchive-dev: archive_write_data seems to ignore wrappers in some circumstances

2007-08-18 Thread Tim Kientzle

Bernhard R. Link wrote:


There might be ways to help libraries to still link against libarchive
without having to change their off_t to 64 bit, but using off64_t in
those cases.


Actually, I believe I've laid the groundwork to
make the 64-bit/32-bit issue completely transparent
to software using libarchive.  It requires someone
knowledgable about this area of Linux to help me
fill in the few remaining pieces, but should not
require any deep knowledge of libarchive internals.

The most important piece is to create three versions
of archive_entry_stat() and archive_entry_copy_stat()
(which copy data between a platform-native
struct stat and libarchive's internal storage):

 * archive_entry_stat32 and archive_entry_copy_stat32,
which deal with struct stat32
 * Similar archive_entry_stat64 and archive_entry_copy_stat64
 * archive_entry_stat() and archive_entry_copy_stat()
would be defined twice:  In code as synonyms for the 64-bit
versions (to preserve ABI compat for programs using the
shared libraries) and as macros that map to 32-bit or
64-bit versions depending on the off_t size being
used by the program.

There are a couple of entry points defined in archive.h
that use off_t directly, but those are rarely used
and so are less critical.  Once the above is working,
similar techniques should apply to them.

Getting all of the configuration right so this builds
correctly on platforms that don't have two different
off_t/struct stat definitions is probably the
trickiest part.

This is a low priority for me right now, though I
do believe that I've factored the internals well
enough to make this a feasible project for someone
who knows nothing about libarchive.  If anyone is
interested, let me know.

Tim Kientzle


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



Bug#429308: mondo: incorrectly guesses names for assembled RAID-1 devices during restore

2007-08-19 Thread Tim Freeman
From: Bruno Cornec [EMAIL PROTECTED]
Could you try adding [mdadm.conf] to your /etc/mindi/deplist.txt to see if that
workaround fixes your issue ?

No, it didn't.  Specifically, I saw the line

   mdadm mdrun mdadm.conf

(without the leading spaces) in /etc/mindi/deplist.txt.  I guessed
that maybe it failed to find mdadm.conf without the path, so I deleted
mdadm.conf from the line and added a new line with the full path:

   /etc/mdadm/mdadm.conf

I did a test backup, and booted it, and told it to verify.  The
problem was unchanged; specifically verification failed because the
raids were assembled wrong.  After exiting the verify, I saw that the
raids were /dev/md/0 and /dev/md/1 instead of 2 and 3.  I did see that
/etc/mdadm/mdadm.conf on the ramdisk populated by mindi had the
expected contents that said the raids were numbered 2 and 3, and that
the executable for mdadm did contain the string /etc/mdadm/mdadm.conf.

I haven't yet found the code that did the incorrect mounting.
-- 
Tim Freeman   http://www.fungible.com   [EMAIL PROTECTED]


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



Bug#429308: mondo: incorrectly guesses names for assembled RAID-1 devices during restore

2007-08-19 Thread Tim Freeman
I haven't yet found the code that did the incorrect mounting.

Oops, I meant:

I haven't yet found the code that did the incorrect assembling.
-- 
Tim Freeman   http://www.fungible.com   [EMAIL PROTECTED]


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



Bug#436730: Test t/85gofer.t fails on m68k

2007-08-20 Thread Tim Bunce
On Sun, Aug 19, 2007 at 07:35:28PM +0200, Christian Hammers wrote:
 Hello
 
 The Debian autobuilders for arm and m68k fail while trying test t/85gofer.t
 with the following messages:
 
  t/zvxgp_85gofer...
  #   Failed test 'pipeone: DBI 
 connect('transport=null;policy=pedantic;dsn=dbi:Gofer:transport=pipeone;policy=pedantic;perl=/usr/bin/perl
   -Mblib=/build/buildd/libdbi-   
 perl-1.58/blib;timeout=10;dsn=dbi:DBM:dbm_type=SDBM_File;lockfile=0','',...) 
 failed: DBD::Gofer receive_response timed-out after 10 seconds; DBI 
 connect('transport=pipeone;policy=pedantic;perl=/usr/bin/perl  
 -Mblib=/build/buildd/libdbi-perl-1.58/blib;timeout=10;dsn=dbi:DBM:dbm_type=SDBM_File;lockfile=0','',...)
  failed: DBD::Gofer receive_response timed-out after 10 seconds at 
 /build/buildd/libdbi-perl-1.58/blib/lib/DBI/Gofer/Execute.pm line 194 at 
 ./t/85gofer.t line 131
  # '
  #   in ./t/85gofer.t at line 92.
 
 What could be the reason? 
 
 The autobuilder usually uses some kind of chroot environment and the m68k
 one is certainly alsow very slow so it might hit a condition that is 
 unusual on a normal desktop machine.

Occams's razor: Could you hack the test to increase the timeout, so say 100,
and try again?

Tim.


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



Bug#429308: mdadm seems to be configured fine by default

2007-08-20 Thread Tim Freeman
Could you try adding [mdadm.conf] to your /etc/mindi/deplist.txt to see if that
workaround fixes your issue ?

After doing the experiment I described earlier, I uninstalled and
reinstalled mondo and mindi to get back the original deplist.txt.
Then I did a test backup and booted off of the CD.  As expected,
/proc/mdstat showed that the raids were assembled with the wrong names.
I did mdadm --stop /dev/md/0 and mdadm --stop /dev/md/1 and mdadm
--assemble --scan, and the volumes were assembled with the correct
names.

Thus apparently mindi is doing a fine job of delivering a functioning
installation of mdadm at restore time, and the problem is that
mondoarchive is using something other than mdadm --assemble --scan
to assemble the disks on the raid.

-- 
Tim Freeman   http://www.fungible.com   [EMAIL PROTECTED]


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



Bug#435882: powertop-1.8 version bump

2007-08-20 Thread Tim Blechmann
Package: powertop
Version: 1.7~svn-r227-2
Followup-For: Bug #435882

hi all, 
powertop 1.8 has been released, would be great to see a debian package

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

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

Versions of packages powertop depends on:
ii  libc6 2.6.1-1GNU C Library: Shared libraries
ii  libncursesw5  5.6+20070716-1 Shared libraries for terminal hand

powertop recommends no packages.

-- debconf-show failed


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



Bug#429308: Actually a bug in mindi; here's a patch

2007-08-21 Thread Tim Freeman
This is good enough to allow me to do a test backup and then verify it
without having to dissassemble and reassemble raids.  

During a real restore, I would do the disk formatting and RAID
configuration with my fingers anyway because I can't imagine testing
mondoarchive well enough to trust it in that scenario.  Therefore,
if you take this patch it closes the issue as far as I am concerned.

I'll send email to control in a moment saying that it's a mindi bug and that
there's a patch.
-- 
Tim Freeman   http://www.fungible.com   [EMAIL PROTECTED]

diff -ru orig/mindi-2.20/rootfs/sbin/init mindi-2.20/rootfs/sbin/init
--- orig/mindi-2.20/rootfs/sbin/init2006-10-03 07:12:38.0 -0700
+++ mindi-2.20/rootfs/sbin/init 2007-08-21 08:03:05.0 -0700
@@ -320,11 +320,19 @@
raidstart $i
fi
done
-   elif which mdrun  /dev/null 2 /dev/null ; then
-   LogIt Running 'mdrun' 1
-   mdrun
+   # /usr/share/doc/mdadm/README.mdrun on a Debian Etch system, at least,
+   # says that mdrun is obsolete and one should do 
+   #mdadm --assemble --scan --auto=yes
+   # instead.  mdrun does not always work.  See Debian bugs 429308
+   # and 354705. 
+   #elif which mdrun  /dev/null 2 /dev/null ; then
+   #   LogIt Running 'mdrun' 1
+   #   mdrun
+   elif which mdadm  /dev/null 2 /dev/null ; then
+   LogIt Using mdadm to assemble any raids 1
+   mdadm --assemble --scan --auto=yes
else
-   LogIt Warning: Neither 'raidstart' nor 'mdrun''found. RAID 
devices may not have started. 1
+   LogIt Warning: Neither 'raidstart' nor 'mdadm' were found. 
RAID devices may not have started. 1
fi
 
 }


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



Bug#439058: GSSAPICleanupCredentials doesn't work for root

2007-08-21 Thread Tim Abbott

Package: openssh-server
Version: 4.3p2-9
Severity: important

GSSAPICleanupCredentials is not deleting Kerberos tickets created if one 
forwards credentials (using GSSAPIDelegate Credentials) to root.


Further investigation reveals that the GSSAPI client store's filename 
field is being overwritten with 0 sometime between being set in 
gss-serv-krb5.c and being checked during cleanup in gss-serv.c.


The behavior of overwriting data structures with 0s seems very similar to 
a bug I reported a year ago in ssh-krb5 3.8.1 on sarge:


#372680: ssh-krb5: pam_close_session is not being called

While #372680 does not seem to be a general problem in ssh 4.3p2-9, I do 
notice that pam_close_session is also not being called for root in 
4.3p2-9.


-Tim Abbott


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



Bug#439183: Upgrade to 1.0.4-1 freezes X

2007-08-22 Thread Tim Gershon

Package: xtrans-dev
Version: 1.0.4-1
Severity: serious

--- Please enter the report below this line. ---

Upgrading from 1.0.3-2 results in total freeze of system.  Only 
rebootable by power cycle.  On restart of X, again frozen, but can now 
ctrl-alt-f1, downgrade xtrans-dev (using snapshot.debian.net), restart X 
and back to usable.


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.21-2-686

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org
  500 unstableftp.debian.org

--- Package information. ---
Depends   (Version) | Installed
===-+-===
|



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



Bug#439183: Upgrade to 1.0.4-1 freezes X

2007-08-22 Thread Tim Gershon

Hi Julien,

Julien Cristau wrote:


None of these files are used at runtime, so there is no way in hell an
xtrans upgrade is going to screw your system.  Please run
/usr/share/bug/xserver-xorg-core/script 31
and send the output to this bug.


It gives no output.

Maybe I reported the bug in haste, but now I'm at a loss to explain the 
cause of the freeze.  I just upgraded again to try to reproduce the bug, 
and succeeded (to upgrade - or failed to reproduce the bug, depending on 
your point of view).


The other packages that were upgraded at the same time (see excerpt from 
/var/log/aptitude below) don't appear a likely cause, and as I say the 
downgrade fixed the problem.


Anyway, feel free to close.

Cheers
Tim

===
[REMOVE, NOT USED] libavahi-compat-howl0
[UPGRADE] libmailtools-perl 1.74-1 - 1.77-0
[UPGRADE] libxmmsclient-glib1 0.2DrJekyll-4 - 0.2DrJekyll-4+b1
[UPGRADE] libxmmsclient2 0.2DrJekyll-4 - 0.2DrJekyll-4+b1
[UPGRADE] pidgin 2.1.0-1 - 2.1.1-1
[UPGRADE] pidgin-data 2.1.0-1 - 2.1.1-1
[UPGRADE] powertop 1.7~svn-r227-3 - 1.8-1
[UPGRADE] xmms2-client-cli 0.2DrJekyll-4 - 0.2DrJekyll-4+b1
[UPGRADE] xmms2-core 0.2DrJekyll-4 - 0.2DrJekyll-4+b1
[UPGRADE] xmms2-plugin-alsa 0.2DrJekyll-4 - 0.2DrJekyll-4+b1
[UPGRADE] xmms2-plugin-id3v2 0.2DrJekyll-4 - 0.2DrJekyll-4+b1
[UPGRADE] xmms2-plugin-mad 0.2DrJekyll-4 - 0.2DrJekyll-4+b1
[UPGRADE] xmms2-plugin-vorbis 0.2DrJekyll-4 - 0.2DrJekyll-4+b1
[UPGRADE] xtrans-dev 1.0.3-2 - 1.0.4-1
===



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



Bug#422712: Same problem with Epson Stylus C80

2007-08-23 Thread Tim Jore
pstoraster crashes with signal 11 in the same configuration as described in 
the original bug report, using the PPD file included in the 
cupsys-driver-gutenprint package 
(/usr/share/ppd/gutenprint/5.0/en/stp-escp2-c80.5.0.ppd.gz).


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



Bug#439396: davfs2: 1.2.2 released

2007-08-24 Thread Tim Olsen
Package: davfs2
Version: 1.2.1-3
Severity: wishlist

Please package version 1.2.2

Thanks,
Tim

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

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

Versions of packages davfs2 depends on:
ii  adduser   3.104  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy
ii  libc6 2.6.1-1GNU C Library: Shared libraries
ii  libneon26 0.26.4-1   An HTTP and WebDAV client library

davfs2 recommends no packages.

-- debconf information:
* davfs2/user_name: davfs2
* davfs2/group_name: davfs2
* davfs2/new_group: false
* davfs2/non_root_users_confimed:
* davfs2/suid_file: true
* davfs2/new_user: false


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



Bug#445716: rkhunter: can't disable some /dev/shm suspicious files tests

2007-10-07 Thread Tim Connors
Package: rkhunter
Version: 1.3.0-1
Severity: normal

I'm getting false positives that I can't seem to disable except by
disabling the rather course grained SCAN_MODE_DEV=THOROUGH tests.

Warning: Suspicious files found in /dev:
 /dev/shm/pulse-shm-1633006343: data
 /dev/shm/network/ifstate: ASCII text
 /dev/shm/resolvconf/resolv.conf: ASCII text
 /dev/shm/resolvconf/interface/eth0: ASCII text
 /dev/shm/resolvconf/interface/lo.pdnsd: ASCII text

Also, there is no documentation as to what a suspicious file in /dev
entails.

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

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

Versions of packages rkhunter depends on:
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy
ii  exim4 4.67-8 meta-package to ease Exim MTA (v4)
ii  exim4-daemon-light [mail-tran 4.67-8 lightweight Exim MTA (v4) daemon
ii  file  4.21-3 Determines file type using magic
ii  net-tools 1.60-17The NET-3 networking toolkit
ii  perl  5.8.8-11   Larry Wall's Practical Extraction 

Versions of packages rkhunter recommends:
ii  binutils  2.18-1 The GNU assembler, linker and bina
ii  iproute   20070313-1 Professional tools to control the 
pn  libmd5-perl   none (no description available)
ii  wget  1.10.2-3   retrieves files from the web

-- debconf information:
* rkhunter/cron_daily_run: true
* rkhunter/cron_db_update: true



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



Bug#434239: fvwm: seg fault on startup on sparc?

2007-10-08 Thread Tim Connors
On Sun, 23 Sep 2007, Manoj Srivastava wrote:

 A new version of fvwm was uploaded recently.  There have been a
  number of changes to the build process, including now redoing the whole
  autoconf toolchain on the fly, which might havce improved the situation
  here. Could you please check to see if the bug still exists?

Seems to be fixed.

-- 
TimC
Probably best see a real doctor and not take too much diagnostic advice
from a bunch of sysadmins who consider the body a meat computer that
needs debugging.   -- Anthony de Boer on possible nerve damage in ASR



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



Bug#445998: ITP: eaccelerator -- PHP accelerator, optimizer, and dynamic content cache

2007-10-09 Thread Tim Dijkstra
On Tue, 09 Oct 2007 21:29:38 +0400
Alexander Gerasiov [EMAIL PROTECTED] wrote:

 Package: wnpp
 Severity: wishlist
 Owner: Alexander Gerasiov [EMAIL PROTECTED]
 
 * Package name: eaccelerator
   Version : 0.9.5.2
   Upstream Author : eaccelerator team http://eaccelerator.net/wiki/Team
 * URL : http://eaccelerator.net
 * License : GPL
   Programming Lang: C
   Description : PHP accelerator, optimizer, and dynamic content cache

 Some dummy packages available for now in my repository at
 http://gq.net.ru/debian

 I'm going to upload it after fixing some packaging issues. Feel free to
 kick me by mail, if I'm too slow.

Are the license issues finally solved then? Last time I checked
binaries were not distributable, see for example:

http://www.mailarchives.org/list/debian-devel/msg/2005/08164

grts Tim


signature.asc
Description: PGP signature


Bug#446019: amule: Downloading KAD nodes causes crash

2007-10-09 Thread Tim Richardson
Package: amule
Version: 2.1.3-4
Severity: important

I made a new install of amule, after deleting directory ~/.amule

Several times I have crashed the program after doing Networks - Kad tab 
and clicking the button that looks like a play button to down Nodes  
The URL is http://download.overnet2000.de/nodes.dat

I get the dialog box Are you sure you want to download a new nodes.dat 
file? Doing so will removes your current nodes and restart Kademlia 
connection?
Answering yes is often ok. But doing it again briefly shows the 
downloading dialog and then crashes amule


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

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

Versions of packages amule depends on:
ii  amule-common2.1.3-4  common files for the rest of aMule
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libcrypto++65.5-4General purpose cryptographic shar
ii  libgcc1 1:4.2.1-6GCC support library
ii  libstdc++6  4.2.1-6  The GNU Standard C++ Library v3
ii  libwxbase2.6-0  2.6.3.2.2-1  wxBase library (runtime) - non-GUI
ii  libwxgtk2.6-0   2.6.3.2.2-1  wxWidgets Cross-platform C++ GUI t
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

Versions of packages amule recommends:
pn  amule-utils   none (no description available)

-- no debconf information



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



Bug#157759: environment proxy settings

2007-10-11 Thread Tim Connors
I strongly object to the proxy environment variable overriding that in the
conf file, because the apt.conf setting is more specific and is purely for
apt, and has likely been set by the sysadmin specifically to suite the
properties of debian packages -- large, and likely to be updated on a lot
of machines.  So if you are using apt-cacher, and all of your machines use
apt-cacher for the apt proxy, then you can set it as the proxy for apt
only, and everything else can keep using your squid proxy.

If the sysadmin (who is the only person running apt -- it's not like its
going to be carelessly run by someone who didn't deliberately set up their
system this way) wanted to use the same proxy as that contained in the
environment variable, then they wouldn't have set the proxy in the
apt.conf file in the first place.  But there are many reasons why he
wouldn't want to go the other way and remove his default setting just for
the sake of apt.



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



Bug#446332: alpine: multiple instances of alpine and readonly folders

2007-10-12 Thread Tim Connors
Package: alpine
Version: 0.+dfsg-1
Severity: normal

When you run multiple instances of (al)pine on a single folder, the
latest one steals the locks from the former instances, and the former
instances know enough to become readonly.

Unfortunately, if you didn't notice that you had muliple instances
using the same folder at some time in the past, go back to the old
readonly instance, and start doing things to manipulate that folder
(delete or undelete messages, etc), then those changes don't get
preserved (as you would expect from the fact that it is readonly).
But nothing attempts to stop you from making those changes.  Ideally,
pressing 'D' for delete (etc) would just return can not delete,
doofus in the status line.  Then combine that with a nice sensible
keybinding to reopen a folder read/write, and it would be a lot nicer
than just silently dropping changes made.

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

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

Versions of packages alpine depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libldap22.1.30.dfsg-13.5 OpenLDAP libraries
ii  libncurses5 5.6+20071006-2   Shared libraries for terminal hand
ii  libpam0g0.99.7.1-5   Pluggable Authentication Modules l
ii  libssl0.9.8 0.9.8e-9 SSL shared libraries

alpine recommends no packages.

-- no debconf information



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



Bug#446529: gnome-power-manager: Dell Latitude C610 LCD brightness via Fn keys broken

2007-10-13 Thread Tim Richardson
Package: gnome-power-manager
Version: 2.20.0-1+b1
Severity: normal

LCD brightness control via Fn keys no longer working for my Dell latitude
notebook.

Scanning ubuntu forums seems to indicate it is a recent bug in 
gnome-power-manager


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

Kernel: Linux 2.6.22-2-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-power-manager depends on:
ii  gconf2  2.20.0-1 GNOME configuration database syste
ii  hal 0.5.9.1-6Hardware Abstraction Layer
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  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
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  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.1-5 The GLib library of C routines
ii  libgnome-keyring0   2.20.0-3 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  libgnomeui-02.20.0-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.0-3   GNOME Virtual File System (runtime
ii  libgstreamer0.10-0  0.10.14-2Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.12.0-2 The GTK+ graphical user interface 
ii  libhal1 0.5.9.1-6Hardware Abstraction Layer - share
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to a n
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-0  2.20.0.1-2   library for GNOME Panel applets
ii  libpango1.0-0   1.18.2-2 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  libstartup-notification 0.9-1library for program launch feedbac
ii  libwnck22   2.20.0-1 Window Navigator Construction Kit 
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcomposite1  1:0.3.2-1+b1 X11 Composite extension library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxdamage1 1:1.1.1-3X11 damaged region extension libra
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  notification-daemon 0.3.7-1+b1   a daemon that displays passive pop
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

gnome-power-manager recommends no packages.

-- no debconf information



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



Bug#446614: powersaved: equivalent of -v in s2ram

2007-10-14 Thread Tim Connors
Package: powersaved
Version: 0.14.0-8
Severity: normal

There doesn't seem to be an option that corresponds to s2ram's -v in
/etc/powersave/sleep.

My box currently needs s2ram -f -a 1 -v to work both from the console
and X.

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

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

Versions of packages powersaved depends on:
ii  adduser   3.105  add and remove users and groups
ii  dbus  1.1.1-3simple interprocess messaging syst
ii  hal   0.5.9.1-6  Hardware Abstraction Layer
ii  libc6 2.6.1-5GNU C Library: Shared libraries
ii  libcpufreq0   002-5  shared library to deal with the cp
ii  libdbus-1-3   1.1.1-3simple interprocess messaging syst
ii  libdbus-glib-1-2  0.74-1 simple interprocess messaging syst
ii  libgcc1   1:4.2.2-1  GCC support library
ii  libglib2.0-0  2.14.1-5   The GLib library of C routines
ii  libhal1   0.5.9.1-6  Hardware Abstraction Layer - share
ii  libpowersave100.14.0-8   power management daemon - shared l
ii  libstdc++64.2.2-1The GNU Standard C++ Library v3
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip

Versions of packages powersaved recommends:
ii  acpid 1.0.6-4Utilities for using ACPI power man
ii  grub  0.97-29GRand Unified Bootloader
ii  hdparm7.7-1  tune hard disk parameters for high
ii  kpowersave0.7.3-1HAL based power management applet 
ii  uswsusp   0.7-1  tools to use userspace software su

-- no debconf information



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



Bug#446642: hotkeys: inspiron1520 bindings

2007-10-14 Thread Tim Connors
Package: hotkeys
Version: 0.5.7.4-0.1
Severity: normal

inspiron1520.def:
?xml version=1.0?

definition

config model=Dell Inspiron 1520 Notebook

Play keycode=162/
Stop keycode=164/
PrevTrackkeycode=144/
NextTrackkeycode=153/

VolUpkeycode=176/
VolDown  keycode=174/
Mute keycode=160/

WebBrowser   keycode=237/

/config
contributor
nameTim Connors/name
email[EMAIL PROTECTED]/email
/contributor
/definition



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

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

Versions of packages hotkeys depends on:
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libc6  2.6.1-5   GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1+b2   The Cairo 2D vector graphics libra
ii  libdb4.5   4.5.20-9  Berkeley v4.5 Database Libraries [
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libglib2.0-0   2.14.1-5  The GLib library of C routines
ii  libgtk2.0-02.12.0-2  The GTK+ graphical user interface 
ii  libpango1.0-0  1.18.2-2  Layout and rendering of internatio
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   1:1.0.2-1 X11 Xinerama extension library
ii  libxml22.6.30.dfsg-2 GNOME XML library
ii  libxmu61:1.0.3-1 X11 miscellaneous utility library
hi  libxosd2   2.2.14-1.3X On-Screen Display library - runt
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra

hotkeys recommends no packages.

-- no debconf information



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



Bug#446529: Update

2007-10-14 Thread Tim Richardson
When I remove gnome-power-manager, I still have the problem. 
If I change to a console log-in (ctrl-Alt-F1) then the brightness keys
work, and the brightness setting is maintained when I go back to gdm
(ctrl-alt-F7). I don't know where to report the bug. 






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



Bug#446777: xserver-xorg-core: Dell laptop screen brightness FN keys don't work

2007-10-15 Thread Tim Richardson
Package: xserver-xorg-core
Version: 2:1.4-3
Severity: normal

Fn keys to control screen brightness have stopped working. 
Reverting to the testing version of xserver packages fixes the problem.
Reverting to testing versions of gnome-power-manager, acpid, hal does not solve 
the problem. In sid, both kde and gnome show the problem. 



-- 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 Aug  3 18:36 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1669976 Sep 29 16:33 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M6 LY

/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 2622 Oct 14 19:47 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# 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 xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us
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
Option  SHMConfig true
EndSection



Section Device
Identifier  ATI Technologies Inc Radeon Mobility M6 LY
Driver  radeon
BusID   PCI:1:0:0
Option  BusType PCI
#Optimized values (changed from driver default)
#Option AGPMode 4
#Option AGPFastWrite on #Faster than default (off)
Option  SWcursor off #Faster than default (on)
Option  EnablePageFlip on #Faster than default (off)
Option  AccelMethod EXA # or XAA, EXA, XAA more stable, XAA 
is deafult
Option  DynamicClocks on
#Option BIOSHotkeys   on


#These are not mentioned in man page for driver
Option  AGPSize 32 # default: 8
Option  EnableDepthMoves true
EndSection

Section Monitor
Identifier  Generic Monitor
Option  DPMS
HorizSync   28-51
VertRefresh 43-60
EndSection

Section Screen
Identifier  Default Screen
Device  ATI Technologies Inc Radeon Mobility M6 LY
Monitor Generic Monitor
DefaultDepth24
SubSection Display
Modes   1024x768
EndSubSection
EndSection

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

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


Xorg X server log files on system:
-rw-r--r-- 1 root root 38188 Sep 16 10:14 /var/log/Xorg.20.log
-rw-r--r-- 1 root root 42533 Oct 15 18:03 /var/log/Xorg.0.log

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

X.Org X Server 1.4.0
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4-3)
Current Operating System: Linux oldLaptop 2.6.22-2-686 #1 SMP Fri Aug 31 
00:24:01 UTC 2007 i686
Build Date: 29 September 2007  04:19:41PM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present

Bug#446777: additional info

2007-10-15 Thread Tim Richardson
Also, the brightness keys work when I switch to a console (alt-ctrl-F1),
and when the computer is booting up. 
The same behaviour was observed in KDE. 






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



Bug#446895: audacity: crash when playback finishes (jack)

2007-10-16 Thread Tim Blechmann
Package: audacity
Version: 1.3.3-1+b1
Severity: important

when using audacity with jack, i experience the following problem:

- open audacity
- select jack as output device
- load soundfile
- start playback

when the playback stops, audacity crashes, telling me:
audacity: src/hostapi/jack/pa_jack.c:1689: RealStop: Assertion 
`jackErr_' failed.
Aborted

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

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

Versions of packages audacity depends on:
ii  libasound2  1.0.14a-2ALSA library
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libgcc1 1:4.2.1-4GCC support library
ii  libglib2.0-02.14.0-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.0-3 The GTK+ graphical user interface 
ii  libid3tag0  0.15.1b-10   ID3 tag reading library from the M
ii  libjack00.103.0-6JACK Audio Connection Kit (librari
ii  libmad0 0.15.1b-2.1  MPEG audio decoder library
ii  libogg0 1.1.3-2  Ogg Bitstream Library
ii  libsndfile1 1.0.17-4 Library for reading/writing audio 
ii  libstdc++6  4.2.1-4  The GNU Standard C++ Library v3
ii  libvorbis0a 1.2.0.dfsg-2 The Vorbis General Audio Compressi
ii  libvorbisenc2   1.2.0.dfsg-2 The Vorbis General Audio Compressi
ii  libvorbisfile3  1.2.0.dfsg-2 The Vorbis General Audio Compressi
ii  libwxbase2.6-0  2.6.3.2.2-1  wxBase library (runtime) - non-GUI
ii  libwxgtk2.6-0   2.6.3.2.2-1  wxWidgets Cross-platform C++ GUI t

audacity recommends no packages.

-- no debconf information



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



Bug#445716: rkhunter: can't disable some /dev/shm suspicious files tests

2007-10-16 Thread Tim Connors
On Mon, 8 Oct 2007, Julien Valroff wrote:

 Hi Tim,

 Le lundi 08 octobre 2007 à 08:45 +1000, Tim Connors a écrit :
 
  I'm getting false positives that I can't seem to disable except by
  disabling the rather course grained SCAN_MODE_DEV=THOROUGH tests.
 [...]

 This is well commented in the configuration file:
 #
 # Allow the specified files to be present in the /dev directory.
 # One file per line (use multiple ALLOWDEVFILE lines).
 #
 #ALLOWDEVFILE=/dev/abc

I was unsure as to whether those files were paired with the suspicious
files in dev or some other test.

Perhaps the comment should read:

#
# Allow the specified files to be present in the /dev directory and not
# regarded as a suspicious file.  One file per line (use multiple
# ALLOWDEVFILE lines), wildcards accepted.
#

and the SCAN_MODE_DEV line should be moved to be adjacent to this list in
the default config file.

  Also, there is no documentation as to what a suspicious file in /dev
  entails.

 That could indeed be much improved, I will forward this upstream.

Thanks.

-- 
TimC
Probably best see a real doctor and not take too much diagnostic advice
from a bunch of sysadmins who consider the body a meat computer that
needs debugging.   -- Anthony de Boer on possible nerve damage in ASR

Bug#445716: rkhunter: can't disable some /dev/shm suspicious files tests

2007-10-16 Thread Tim Connors
On Mon, 8 Oct 2007, Julien Valroff wrote:


 Le lundi 08 octobre 2007 à 08:45 +1000, Tim Connors a écrit :
 [...]
  Also, there is no documentation as to what a suspicious file in /dev
  entails.

 The do_dev_whitelist_check() function seems quite clear on what a
 suspcious file is:
 FNAME=`${FILE_CMD} ${RKHTMPVAR} | cat -v | tr ' ' ' ' | tr -s ' ' | egrep -v 
 ' (character special|block special|socket|fifo \(named pipe\)|symbolic link 
 to|empty|directory|MAKEDEV)'`

 in clear: a suspicious file is everything that is not standard/common in /dev

Hmmm, should still have the ability to whitelist entire directories in
that case (I suspect a /dev/shm/* wildcard already does this though),
since /dev/shm is, as far as I am aware, a perfectly legal place to put
any old temporary files -- a gauranteed place where the data will not
waste space residing on a physical partition (as opposed to /tmp, which
may or may not be a tmpfs).

 If this is ok for you, I will close this bug report - please confirm

I was hoping for more documentatation without having to RTFS.

-- 
TimC
Probably best see a real doctor and not take too much diagnostic advice
from a bunch of sysadmins who consider the body a meat computer that
needs debugging.   -- Anthony de Boer on possible nerve damage in ASR

Bug#446897: mplayer: 1.0-rc2 is available, please package.

2007-10-16 Thread Tim Phipps
Package: mplayer
Severity: wishlist

I don't know if there's ever going to be a 1.0, so can we have rc2
packaged please?


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-hippo-5-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)



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



Bug#446777: xserver-xorg-core: Dell laptop screen brightness FN keys don't work

2007-10-16 Thread Tim Richardson

On Tue, 2007-10-16 at 00:11 +0200, Brice Goglin wrote:

  [...]
 
  #Option BIOSHotkeys   on

 
 Does this option make any difference ?
 
No.






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



Bug#446961: fontforge segfaults when importing into Outline Glyph View

2007-10-16 Thread Tim Ayres
Package: fontforge
Version: 0.0.20070831-2
Severity: normal

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

When in the Outline Glyph View of FontForge, if you go to File/Import and, 
within the Format: box, change the selection from Image to anything else, 
FontForge will segfault.

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

Kernel: Linux 2.6.22-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages fontforge depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared 
lib
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libtiff43.8.2-7  Tag Image File Format (TIFF) 
libra
ii  libungif4g  4.1.4-5  shared library for GIF images
ii  libuninameslist00.0.20060907-2   a library of Unicode annotation 
da
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxml2 2.6.30.dfsg-2GNOME XML library
ii  python2.4   2.4.4-6  An interactive high-level 
object-o
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

fontforge recommends no packages.

-- no debconf information



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



Bug#447019: wmxmms Gdk error

2007-10-17 Thread Tim Connors
Package: xmms
Version: 1:1.2.10+20070601-1+b1
Severity: normal

When running on my amd64 (with nvidia's X11 twinview extension, if
that proves to be relevant), wmxmms dies on startup, independant of
whether there is already a running xmms instance:

 wmxmms 
Gdk-ERROR **: BadMatch (invalid parameter attributes)
  serial 133 error_code 8 request_code 62 minor_code 0




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

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

Versions of packages xmms depends on:
ii  libasound2  1.0.14a-2ALSA library
ii  libaudiofile0   0.2.6-7  Open-source version of SGI's audio
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libesd0 0.2.36-3 Enlightened Sound Daemon - Shared 
ii  libgl1-mesa-glx [libgl1 7.0.1-2  A free implementation of the OpenG
ii  libglib1.2ldbl  1.2.10-19The GLib library of C routines
ii  libgtk1.2   1.2.10-18.1  The GIMP Toolkit set of widgets fo
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libmikmod2  3.1.11-a-6   A portable sound library
ii  libogg0 1.1.3-2  Ogg Bitstream Library
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libvorbis0a 1.2.0.dfsg-2 The Vorbis General Audio Compressi
ii  libvorbisfile3  1.2.0.dfsg-2 The Vorbis General Audio Compressi
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxxf86vm1 1:1.0.1-2X11 XFree86 video mode extension l
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

Versions of packages xmms recommends:
ii  unzip 5.52-10De-archiver for .zip files

-- no debconf information



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



Bug#434337: exim4-config: primary_hostname gets not set via macro because of typo in exim4.conf.template

2007-07-23 Thread Tim Krah
Package: exim4-config
Version: 4.67-7
Severity: normal
Tags: patch

You can not set the primary_hostname via a macro because the macro-name
is misspelled in exim4.conf.template


-- Package-specific info:
Exim version 4.67 #1 built 21-Apr-2007 12:02:24
Copyright (c) University of Cambridge 2006
Berkeley DB: Sleepycat Software: Berkeley DB 4.3.29: (September  6, 2005)
Support for: crypteq iconv() IPv6 PAM Perl GnuTLS move_frozen_messages 
Content_Scanning Old_Demime
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch 
ldap ldapdn ldapm mysql nis nis0 passwd pgsql sqlite
Authenticators: cram_md5 cyrus_sasl dovecot plaintext spa
Routers: accept dnslookup ipliteral iplookup manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
Size of off_t: 8
Configuration file is /var/lib/exim4/config.autogenerated

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

Kernel: Linux 2.6.17-beyond4-raidserver
Locale: LANG=de_DE.iso88591, LC_CTYPE=de_DE.iso88591 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages exim4-config depends on:
ii  adduser   3.104  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.13 Debian configuration management sy

exim4-config recommends no packages.

-- debconf information excluded
--- exim4.conf.template.orig2007-07-23 09:56:18.295431592 +0200
+++ exim4.conf.template 2007-07-23 09:53:06.707261058 +0200
@@ -194,7 +194,7 @@ host_lookup = MAIN_HOST_LOOKUP
 
 # In a minimaldns setup, update-exim4.conf guesses the hostname and
 # dumps it here to avoid DNS lookups being done at Exim run time.
-.ifdef MAIN_HARDCODE_PRIMARY_HOSTAME
+.ifdef MAIN_HARDCODE_PRIMARY_HOSTNAME
 primary_hostname = MAIN_HARDCODE_PRIMARY_HOSTNAME
 .endif
 


Bug#434294: closed by Pierre Habouzit [EMAIL PROTECTED] (Re: Bug#434294: libc6: buggy unlocking of an unlocked pthread_rwlock_t)

2007-07-23 Thread Tim Blechmann
please learn how to use errno. When a call fails in posix it
  returns a
  negative value, usually -1, and sets errno. you must test errno for
  EPERM. not the return value.
  

quoting man pthread_rwlock_unlock:
If  successful, the pthread_rwlock_unlock() function shall return zero;
otherwise, an error number shall be returned to indicate the error.

maybe this is a bit mistakable?

anyway, pthread_rwlock_unlock returns 0, not -1 and not EPERM

tim

--
[EMAIL PROTECTED]ICQ: 96771783
http://tim.klingt.org

Linux is like a wigwam: no windows, no gates, apache inside, stable.


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


Bug#434487: Filenames with spaces under /dev cause aide to crash.

2007-07-24 Thread Tim Phipps
Package: aide
Version: 0.13.1-2
Severity: normal

I have /tmp symlinked to /dev/shm/tmp and the config script to create
rules under /dev does now quote filenames with spaces. aide then quits
with an error when it gets that config line.


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-hippo-4-686
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages aide depends on:
ii  debconf [debconf-2.0]1.5.11  Debian configuration management sy
ii  liblockfile1 1.06.1  NFS-safe locking library, includes
ii  mailutils [mailx]1:1.1+dfsg1-3.1 GNU mailutils utilities for handli
ii  ucf  2.0020  Update Configuration File: preserv

Versions of packages aide recommends:
ii  cron  3.0pl1-100 management of regular background p

-- debconf information:
* aide/aideinit: false
* aideinit/overwritenew: true
* aideinit/copynew: true
  aide/newlibdir: false


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



Bug#434524: gnome-terminal: keyboard shortcuts up/down don't work anymore

2007-07-24 Thread Tim Blechmann
Package: gnome-terminal
Version: 2.18.1-1
Severity: normal

starting from today, the arrow shortcuts up and down don't work anymore. the 
escape
sequence for up is shown as ^[[1;A, for down as ^[[1;B

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

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

Versions of packages gnome-terminal depends on:
ii  gnome-control-center   1:2.18.1-1utilities to configure the GNOME d
ii  gnome-terminal-data2.18.1-1  Data files for the GNOME terminal 
ii  libatk1.0-01.18.0-2  The ATK accessibility toolkit
ii  libbonobo2-0   2.18.0-2  Bonobo CORBA interfaces library
ii  libc6  2.6-3 GNU C Library: Shared libraries
ii  libgconf2-42.18.0.1-3GNOME configuration database syste
ii  libglade2-01:2.6.1-1 library to load .glade files at ru
ii  libglib2.0-0   2.12.13-1 The GLib library of C routines
ii  libgnome2-02.18.0-4  The GNOME 2 library - runtime file
ii  libgnomeui-0   2.18.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.18.1-3+b1 GNOME Virtual File System (runtime
ii  libgtk2.0-02.10.13-1 The GTK+ graphical user interface 
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.16.4-3  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libstartup-notification0   0.9-1 library for program launch feedbac
ii  libvte91:0.16.6-2Terminal emulator widget for GTK+ 
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxrender11:0.9.2-1 X Rendering Extension client libra
ii  scrollkeeper   0.3.14-13 A free electronic cataloging syste

Versions of packages gnome-terminal recommends:
pn  yelp  none (no description available)

-- no debconf information


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



Bug#434527: NetworkManager won't associate when using madwifi

2007-07-24 Thread Tim Hull

Package: network-manager
Version: 0.6.4-8

When using a madwifi-based wireless card (with driver built from
madwifi-source 0.9.3-3 in sid), it is currently impossible to associate to
any access point using NetworkManager.  NetworkManager will see the access
points, but upon attempting to associate, the lights in nm-applet never turn
green and it eventually gives up.  The card works fine when configured
manually (without using NetworkManager). My system is an up-to-date Debian
sid/i386 installation using kernel 2.6.22-1 (from sid) and libc6 2.6-3.

This seems somewhat related to the wpa_supplicant settings used by
network-manager, as Ubuntu's network-manager has patches which specifically
use wpa_supplicant's madwifi driver as opposed to its wext driver.

In Ubuntu's case, NetworkManager works flawlessly on the same machine, and
installing the Ubuntu network-manager package makes it work on Debian
(though that setup has other difficulties due to the problems mixing
Debian/Ubuntu packages).

Could a fix such as the one used in Ubuntu's case be investigated? The patch
is part of the (big) network-manager patch on patches.ubuntu.com.  This
issue is somewhat of a show-stopper in my case...


Bug#434540: MacBook makes subtle whining noise when idle since 2.6.21

2007-07-24 Thread Tim Hull

Package: linux-image-2.6-686
Version: 2.6.22-1

Since kernel 2.6.21, my MacBook has made a subtle whining noise when idle.
This happens when using the Debian stock kernels from testing and unstable,
but also when using other kernels.  I believe it has something to do with
certain ACPI power-saving modes and/or the switch from 250hz kernel timing
to a tickless kernel.  2.6.18 as shipped in Etch does NOT exhibit this
problem, and disabling C3/C4 ACPI C-states is a functional workaround for
2.6.21+ (though doing so results in the loss of some battery life).
However, C3/C4 ACPI C-states work fine in the aforementioned 2.6.18 kernel,
so the HZ timing seems like a more likely root cause.


Bug#434541: Appletouch module not loaded at boot time on supported hardware

2007-07-24 Thread Tim Hull

Package: udev
Version: 0.105-4

On my hardware (MacBook Core Duo), the appletouch module is used for maximum
functionality of the touchpad.  However, this module is not loaded at boot
by default - instead, the usbhid module is used, which works but doesn't
support advanced features of the touchpad (scrolling, multi-button taps,
etc).  The appletouch module CAN be used in Debian, though creating a file
in /etc/modprobe.d is necessary to make it work.  On Ubuntu, appletouch is
loaded by default.  Could this be done in Debian as well


Bug#434541: Appletouch module not loaded at boot time on supported hardware

2007-07-24 Thread Tim Hull

I don't know exactly what needs to be fixed to resolve the issue in Debian,
but I will try to give a little more background information:

What I basically want is for the udev rules to be changed such that the
appletouch module is used for the touchpad (though usbhid is still needed
for the keyboard).  Sorry if I can't give more technical specifics - though
I do know for a fact this was fixed in Ubuntu before.  I'll take a look at
their udev rules and send more info if possible...

I added the following to /etc/modprobe.d/appletouch as a workaround:

install usbhid /sbin/modprobe appletouch; /sbin/modprobe --ignore-install
usbhid $CMDLINE_OPTS

* extra system info - to help with fixing this *

Related dmesg output:

input: appletouch as /class/input/input23
input: Apple Computer Apple Internal Keyboard / Trackpad as
/class/input/input24
input: USB HID v1.11 Device [Apple Computer Apple Internal Keyboard /
Trackpad] on usb-:00:1d.0-2

My lsusb output:

Bus 005 Device 003: ID 05ac:8300 Apple Computer, Inc.
Bus 005 Device 001: ID :
Bus 002 Device 001: ID :
Bus 004 Device 008: ID 05ac:1000 Apple Computer, Inc.
Bus 004 Device 001: ID :
Bus 003 Device 006: ID 05ac:8240 Apple Computer, Inc.
Bus 003 Device 001: ID :
Bus 001 Device 008: ID 05ac:0217 Apple Computer, Inc.
Bus 001 Device 001: ID :




On 7/24/07, Marco d'Itri [EMAIL PROTECTED] wrote:


On Jul 24, Tim Hull [EMAIL PROTECTED] wrote:

 On my hardware (MacBook Core Duo), the appletouch module is used for
 maximum
 functionality of the touchpad.  However, this module is not loaded at
boot
 by default - instead, the usbhid module is used, which works but doesn't
 support advanced features of the touchpad (scrolling, multi-button taps,
 etc).  The appletouch module CAN be used in Debian, though creating a
file
 in /etc/modprobe.d is necessary to make it work.  On Ubuntu, appletouch
is
 loaded by default.  Could this be done in Debian as well

I am sorry, but I am currently having troubles reading your mind
and/or your file system.
Do you mind explaining me what am I supposed to do?

--
ciao,
Marco

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

iD8DBQFGpk40FGfw2OHuP7ERArxFAJ93ZShBulYiKBn3aBwV+A1NjIzAVgCffk8B
Bt4ZCbXDd84V2aVHGna0IZE=
=9P+O
-END PGP SIGNATURE-




Bug#434557: Random kernel panic on boot with MacBook

2007-07-24 Thread Tim Hull

Package: kernel-image-2.6-686
Version: 2.6.22-1

On my MacBook Core Duo, I am experiencing random kernel panics on boot.
The message I am getting is as follows:

Kernel panic - not syncing: IO-APIC + timer doesn't work!

This appears about 50% of the time on boot, and happens on every version of
the Debian kernel including that shipped with Etch and the latest version.

This can be worked around by using the lpj= kernel parameter on boot
(lpj=733 for a 1.83GHz MacBook).
Ubuntu has the same issue (Bug 54621 on Launchpad -
https://bugs.launchpad.net/bugs/54621) and a fix mentioned in that thread
has apparently been committed.

Could this be fixed in the Debian kernel?


Bug#434527: Madwifi problems associating using wext/NetworkManager

2007-07-25 Thread Tim Hull

I have spent a significant amount of time dealing with issues between
MadWifi and wext/wpasupplicant/NetworkManager on Debian (etch, lenny, AND
sid).  As it stands, there are still significant issues - in factI cannot
associate *at all* to my stock, unencrypted WRT54G using
NetworkManager+madwifi on my Atheros 5424 card (bundled with MacBook Core
Duo). This is about as standard of a configuration as you can get, so it's
obviously a widespread bug.

I have managed to isolate the issue to a degree.  Though I'm somewhat
C-impaired, the issue does seem to stem from issues w/wext compliance - and
in particular AP scanning and the preempt_scan function.  This seems to be
a long-standing issue, and has existed in every build of madwifi I've
tried.  The upstream bug mentioned earlier in this thread is still open, and
there appears to be no progress whatsoever on that front.

Anyway, there is currently two workarounds that I've tested and know to
work.  The first, and the one used by Ubuntu, is to change NetworkManager's
source such that the wpasupplicant's madwifi driver is used for cards
using madwifi instead of the generic wext driver.  This seems to work
well, though the Debian maintainer for NetworkManager didn't like the idea
of special behavior for madwifi.  Secondly, there is the option of totally
removing the preempt_scan() function and all calls to it from
ieee80211_wireless.c.  This seems to work perfectly to me, but may come at
the loss of some functionality (namely, wireless scan timeout).  This
function was only added in the last 6-9 months, though, so the driver is
known to work without it.

I've attached my patch to remove the function in question (preempt_scan)
from ieee80211.c. I've attached patches to both the release used in unstable
and the trunk from madwifi.org (which, in my experience, blows away the
release in wireless performance - in addition to adding support for the
Atheros 802.11n chipsets).

I hope a workaround such as the one(s) I've suggested can be uploaded to the
archive - this can be quite a nasty bug for some Atheros users...


patch-release
Description: Binary data


patch-trunk
Description: Binary data


Bug#434702: Please sync with trunk snapshot - new chipset support/better signal strength

2007-07-25 Thread Tim Hull

Package: madwifi-source
Version: 0.9.3-3
Severity: wishlist

Currently, the release version of madwifi is missing a significant amount of
functionality when compared to the trunk builds at madwifi.org.  For one
thing, the trunk builds add support for 802.11n Atheros chipsets, which are
found in many new systems containing Atheros chipsets including the MacBook
Core 2 Duos.  Furthermore, I have consistently noticed a 20% gain in signal
strength using the trunk as compared to the release - certainly a
significant increase.  Finally, I'm seeing an increase in association speed
when using NetworkManager on the trunk builds as compared to the release

Is it possible to sync this package to a trunk build, add a new
madwifi-source-trunk package, or put a trunk madwifi-source in
experimental?  It seems like it would be beneficial to many users...


Bug#434791: gs-gpl: gs symlink

2007-07-26 Thread Tim Blechmann
Package: gs-gpl
Version: 8.56.dfsg.1+8.57+svn.7899-0.1
Severity: normal

i've had a hard time installing a brother hl-2030 printer ... it turned 
out, that it was looking for /usr/bin/gs, which was missing ... it would 
be great, if a symlink from /usr/bin/gs-gpl to /usr/bin/gs could be 
added

thnx

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

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

Versions of packages gs-gpl depends on:
ii  gs-common   0.3.13   Common files for different Ghostsc
ii  libc6   2.6-3GNU C Library: Shared libraries
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  libpaper1   1.1.21   Library for handling paper charact
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library

Versions of packages gs-gpl recommends:
ii  gsfonts   1:8.11+urwcyr1.0.7~pre41-3 Fonts for the Ghostscript interpre
ii  psfontmgr 0.11.10-0.1PostScript font manager -- part of

-- no debconf information


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



Bug#434711: Sync with Ubuntu changes - adds brightness control, etc...

2007-07-26 Thread Tim Hull

I think this just simply a dupe of 399039, and I figure Ubuntu is building
HAL with MacBook support.  From the looks of that kernel driver, it appears
us MacBook users are stuck with pommed until somebody writes a kernel driver
to interface with HAL..

On 7/26/07, Tim Hull [EMAIL PROTECTED] wrote:


I'm actually on a MacBook (non-Pro) but I figure HAL works the same in
both cases...

On 7/26/07, Sven Arvidsson [EMAIL PROTECTED]  wrote:

 On Thu, 2007-07-26 at 18:14 +0200, Julien BLACHE wrote:
  HAL/g-p-m should support the MacBook {,Pro} out of the box, and
  without pommed as far as the LCD backlight and sound support goes,
  though AFAIK it doesn't use ACPI.

 It looks like HAL in Debian is built without support for the macbook
 pro, see http://bugs.debian.org/399039

 --
 Cheers,
 Sven Arvidsson
 http://www.whiz.se
 PGP Key ID 760BDD22





Bug#434711: Sync with Ubuntu changes - adds brightness control, etc...

2007-07-26 Thread Tim Hull

I'm actually on a MacBook (non-Pro) but I figure HAL works the same in both
cases...

On 7/26/07, Sven Arvidsson [EMAIL PROTECTED] wrote:


On Thu, 2007-07-26 at 18:14 +0200, Julien BLACHE wrote:
 HAL/g-p-m should support the MacBook {,Pro} out of the box, and
 without pommed as far as the LCD backlight and sound support goes,
 though AFAIK it doesn't use ACPI.

It looks like HAL in Debian is built without support for the macbook
pro, see http://bugs.debian.org/399039

--
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22




Bug#434711: Sync with Ubuntu changes - adds brightness control, etc...

2007-07-26 Thread Tim Hull

I have acpi-support, and I have the other significant power-management stuff
installed here.  In fact, I can suspend-to-RAM with no problem using g-p-m
and stock configuration, and I can change the brightness using pommed (I'm
on a MacBook).  Does anyone have a clue as to WHY I'm not seeing brightness
control support as I do on Ubuntu with the same version of g-p-m?

I am running Debian unstable currently, so I do have the latest versions of
everything...

On 7/26/07, Loïc Minier [EMAIL PROTECTED] wrote:


On Thu, Jul 26, 2007, Tim Hull wrote:
 In Ubuntu Feisty, gnome-power-manager includes support for controlling
LCD
 brightness.  In Debian, the shipped version of gnome-power-manager does
NOT
 have this feature.  Could Debian please sync with the Ubuntu patchset
for
 this package - brightness control is a useful feature...

I'm running Debian's gnome-power-manager and I have support for
brightness-control.  Perhaps you're missing packages to support your
hardware?  Do you have acpi-support for example?

--
Loïc Minier



Bug#434711: Sync with Ubuntu changes - adds brightness control, etc...

2007-07-25 Thread Tim Hull

Package: gnome-power-manager
Version: 2.18.3-1
Severity: wishlist

In Ubuntu Feisty, gnome-power-manager includes support for controlling LCD
brightness.  In Debian, the shipped version of gnome-power-manager does NOT
have this feature.  Could Debian please sync with the Ubuntu patchset for
this package - brightness control is a useful feature...


Bug#434711: Sync with Ubuntu changes - adds brightness control, etc...

2007-07-26 Thread Tim Hull

They don't use pommed at all - they use just gnome-power-manager.
I'm just saying pommed will change the brightness on Debian, so it is
obvious brightness CAN be changed on Debian.

Regarding the changes, Ubuntu posts its changes to Debian sources at 
patches.ubuntu.com.  Gnome-power-manager's patchfile is located at:

http://patches.ubuntu.com/g/gnome-power-manager/

Be forewarned that these are patches against the latest development version
(2.19.5) as that's what they have in their unstable repositories.

Is there a filesystem directory where I can find system-specific brightness
configurations?  I figure Ubuntu includes the patches necessary to adjust
MacBook brightness, and Debian does not.

On 7/26/07, Loïc Minier [EMAIL PROTECTED] wrote:


On Thu, Jul 26, 2007, Tim Hull wrote:
 I have acpi-support, and I have the other significant power-management
 stuff
 installed here.  In fact, I can suspend-to-RAM with no problem using
g-p-m
 and stock configuration, and I can change the brightness using pommed
(I'm
 on a MacBook).  Does anyone have a clue as to WHY I'm not seeing
brightness
 control support as I do on Ubuntu with the same version of g-p-m?

 I am running Debian unstable currently, so I do have the latest versions
of
 everything...

AFAIK, the pommed author knowingly skipped HAL integration as it was
considered too painful.  Perhaps Ubuntu doesn't use pommed or adds
another package providing more information or patches pommed to provide
the information?

Anyway, it would be nice if you could extract the differences and
attach them here, but I'm convinced this is machine specific.

--
Loïc Minier



Bug#434557: Acknowledgement (Random kernel panic on boot with MacBook)

2007-07-25 Thread Tim Hull

I applied the attached patch (from Ubuntu) to the latest 2.6.22 kernel from
Sid and it resolved the problem.  Could this be looked into?



On 7/24/07, Debian Bug Tracking System [EMAIL PROTECTED] wrote:


Thank you for the problem report you have sent regarding Debian.
This is an automatically generated reply, to let you know your message has
been received.  It is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

Your message has been sent to the package maintainer(s):
Debian Kernel Team [EMAIL PROTECTED]

If you wish to submit further information on your problem, please send
it to [EMAIL PROTECTED] (and *not* to
[EMAIL PROTECTED]).

If you have filed this report in error and wish to close it, please
send mail to [EMAIL PROTECTED] with an explanation
why the bug report should be closed.

Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.

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

diff -urp a/init/calibrate.c b/init/calibrate.c
--- a/init/calibrate.c	2006-10-02 11:39:32.0 -0400
+++ b/init/calibrate.c	2007-01-27 16:39:35.0 -0500
@@ -1,5 +1,7 @@
 /* calibrate.c: default delay calibration
  *
+ * vim:sw=8 noet
+ *
  * Excised from init/main.c
  *  Copyright (C) 1991, 1992  Linus Torvalds
  */
@@ -7,9 +9,36 @@
 #include linux/sched.h
 #include linux/delay.h
 #include linux/init.h
+#include linux/dmi.h
+#include asm/io.h
 
 #include asm/timex.h
 
+/* On Macbook we have trouble calibrating the delay loop due to excessive
+ * latency in the system management interrupt.  We fix this problem by
+ * disabling the legacy USB function of the SMC during delay loop
+ * calibration.  From Intel ICH7 manual, this is bit 3 of SMI_EN register
+ * located at 0x430.
+ */
+static int __initdata macbook_calibrate_quirk;
+
+static int __init init_macbook_calibrate_quirk (struct dmi_system_id *d)
+{
+	printk(KERN_WARNING %s detected (calibration quirk enabled)\n,
+	   d-ident);
+	macbook_calibrate_quirk = 1;
+	return 0;
+}
+
+static struct dmi_system_id __initdata calibrate_quirks[] = {
+	{
+	 .callback = init_macbook_calibrate_quirk,
+	 .ident = Apple MacBook,
+	 .matches = {DMI_MATCH(DMI_PRODUCT_NAME, MacBook1,1),},
+	 },
+	{},
+};
+
 static unsigned long preset_lpj;
 static int __init lpj_setup(char *str)
 {
@@ -37,8 +66,16 @@ static unsigned long __devinit calibrate
 	unsigned long tsc_rate_min, tsc_rate_max;
 	unsigned long good_tsc_sum = 0;
 	unsigned long good_tsc_count = 0;
+	unsigned long saved_smi_en = 0;
 	int i;
 
+	if (macbook_calibrate_quirk)
+	{
+		saved_smi_en = inl(0x430);
+		/* mask out bit 3 */
+		outl(saved_smi_en  ~8, 0x430);
+	}
+
 	if (read_current_timer(pre_start)  0 )
 		return 0;
 
@@ -94,6 +131,9 @@ static unsigned long __devinit calibrate
 		}
 	}
 
+	if (macbook_calibrate_quirk)
+		outl(saved_smi_en, 0x430);
+
 	if (good_tsc_count)
 		return (good_tsc_sum/good_tsc_count);
 
@@ -117,6 +157,8 @@ void __devinit calibrate_delay(void)
 	unsigned long ticks, loopbit;
 	int lps_precision = LPS_PREC;
 
+	dmi_check_system(calibrate_quirks);
+
 	if (preset_lpj) {
 		loops_per_jiffy = preset_lpj;
 		printk(Calibrating delay loop (skipped)... 


Bug#434711: Sync with Ubuntu changes - adds brightness control, etc...

2007-07-26 Thread Tim Hull

OK - It appears the underlying issue is that HAL is built without MacBook
support for the reason that it uses hackish solutions (writing directly to
/dev/mem in particular). Ubuntu builds HAL with MacBook support, and hence
g-p-m functions fine on that distribution.

I merged this with the bug report against HAL for this (which was closed as
wontfix).  I figure we're stuck with th status quo without a kernel module
to control MacBook brightness using HAL...  It would be nice, though, if we
could come up with a temporary workaround - as of now you are basically
restricted to running without full g-p-m support on a MacBook, patching HAL
manually for each update, or running Ubuntu :)


On 7/26/07, Loïc Minier [EMAIL PROTECTED] wrote:


On Thu, Jul 26, 2007, Julien BLACHE wrote:
 And for the record, the GNOME people did not want to integrate with
 pommed other than by having me code up the whole thing into HAL, which
 is NOT what I wanted to do. I'm still open to integration with the
 GNOME things, and the DBus notifications  interface are there for a
 reason. The GNOME people are free to pick up the DBus notifications on
 the system bus; don't ask me why they didn't do it.

It sounds reasonable to integrate such a support into HAL, but I can
also understand you can't be bothered to implement it if you don't like
it.  Was this discussed in a gnome.org bug?  It would be nice to link
this bug to the upstream issue where the HAL changes are proposed.

--
Loïc Minier



Bug#434711: Sync with Ubuntu changes - adds brightness control, etc...

2007-07-26 Thread Tim Hull

Then I figure that this is NOT, in fact, an issue of merging Ubuntu patches
OR an issue related to pommed but a bug with g-p-m recognizing MacBooks in
Debian. I've retitled the bug appropriately.  Does anyone have a clue as to
where I would look?  I'm thinking Ubuntu configures something to make this
work that Debian does not for some weird reason...

On 7/26/07, Julien BLACHE [EMAIL PROTECTED] wrote:


Loïc Minier [EMAIL PROTECTED] wrote:

  AFAIK, the pommed author knowingly skipped HAL integration as it was
  considered too painful.  Perhaps Ubuntu doesn't use pommed or adds
  another package providing more information or patches pommed to provide
  the information?

HAL/g-p-m should support the MacBook {,Pro} out of the box, and
without pommed as far as the LCD backlight and sound support goes,
though AFAIK it doesn't use ACPI.

And for the record, the GNOME people did not want to integrate with
pommed other than by having me code up the whole thing into HAL, which
is NOT what I wanted to do. I'm still open to integration with the
GNOME things, and the DBus notifications  interface are there for a
reason. The GNOME people are free to pick up the DBus notifications on
the system bus; don't ask me why they didn't do it.

JB.

--
Julien BLACHE - Debian  GNU/Linux Developer - [EMAIL PROTECTED]

Public key available on http://www.jblache.org - KeyID: F5D6 5169
GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169



Bug#434833: Spontaneous reboots on suspend-to-RAM with new Xorg intel driver

2007-07-27 Thread Tim Hull
Just default acpi-support + gnome-power-manager (I set my system to suspend
on lid close).

On 7/27/07, Julien Cristau [EMAIL PROTECTED] wrote:

 On Thu, Jul 26, 2007 at 23:27:51 -0400, Tim Hull wrote:

  When using the new intel video driver that replaced the former i810
  driver in Debian, I am experiencing spontaneous reboots randomly on
  suspend-to-RAM.

 What are you using for suspend/resume?

  Right before the system spontaneously reboots, I see a checkered pattern
 on
  a black-and-white console display. At times, though rare, I have also
 seen
  similar crashes when stopping and restarting the X server manually -
 which
  leads me to believe that starting/stopping the X server is what is
 causing
  the issue.  I have no such problem when using 915resolution and the old
 i810
  driver in Etch and on Ubuntu Feisty (their stable), but do see the same
  problem on Ubuntu Gutsy (their unstable) which uses the intel
 driver.  While
  it doesn't occur every time I suspend, it occurs often enough that this
 is a
  MAJOR annoyance for me.  I'm marking this as RC, as such crashes DO
 cause
  data loss in open files - you're free to disagree with me, though...

 That's not what data loss means.

  System configuration is a MacBook Core Duo (first generation) with 2GB
 RAM
  and Debian Sid.
  I've attached my xorg.conf and appropriate logs...

 Thanks,
 Julien

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

 iD8DBQFGqclAmEvTgKxfcAwRAkL/AKCKOW6jyvcqKMCG0kOCqORzevVkRQCfYZdK
 vj3gLM/cmygo5gkhzurvph8=
 =6eET
 -END PGP SIGNATURE-




Bug#435456: ITP: openvas-client -- Remote network security auditor, the client

2007-07-31 Thread Tim Brown
Package: wnpp
Severity: wishlist
Owner: Tim Brown [EMAIL PROTECTED]


* Package name: openvas-client
  Version : 0.9.1
  Upstream Author : OpenVAS [EMAIL PROTECTED]
* URL : http://www.openvas.org/
* License : GPL
  Programming Lang: C
  Description : Remote network security auditor, the client

The OpenVAS Security Scanner is a security auditing tool. It makes
possible to test security modules in an attempt to find vulnerable
spots that should be fixed.
.
It is made up of two parts: a server, and a client. The server/daemon,
openvasd, is in charge of the attacks, whereas the client,
OpenVAS-Client, provides the user a nice X11/GTK+ interface.
.
This package contains the GTK+ client, which exists in other
forms and on other platforms, too.

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

Kernel: Linux 2.6.18-4-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/bash


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



<    5   6   7   8   9   10   11   12   13   14   >