Bug#452501: debbugs: Option to sort bugs by modification date

2007-11-23 Thread Josh Triplett
Package: debbugs
Severity: wishlist

I'd like the option to sort bugs by modification date rather than
submission date.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=locale: Cannot set 
LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
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#452648: reportbug: Please support globbing in attachment prompt

2007-11-24 Thread Josh Triplett
Package: reportbug
Version: 3.39
Severity: wishlist

I would find it quite helpful if the attachment prompt supported globs.
This would make attaching multiple related files, such as patches or log
files, much easier.

Thank you,
Josh Triplett

-- Package-specific info:
** Environment settings:
EDITOR=vim
DEBEMAIL=[EMAIL PROTECTED]
EMAIL=[EMAIL PROTECTED]
INTERFACE=text

** /home/josh/.reportbugrc:
reportbug_version 3.21.2
mode advanced
ui text
no-cc
header X-Debbugs-CC: [EMAIL PROTECTED]
smtphost bugs.debian.org

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

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

Versions of packages reportbug depends on:
ii  apt   0.7.9  Advanced front-end for dpkg
ii  python2.4.4-6An interactive high-level object-o
ii  python-central0.5.15 register and build utility for Pyt

reportbug recommends no packages.

-- no debconf information



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



Bug#452918: bug-triage: Should not describe status of open bugs as pending

2007-11-25 Thread Josh Triplett
Package: bug-triage
Version: 0.2.2-1
Severity: normal

pending has a specific meaning in the Debian BTS; it refers top the
pending tag, which suggests that the maintainer plans to upload a
fix for the bug soon, for instance because they have already committed
the fix to their version control system.  However, bug-triage
describes all open bugs as pending.  It should instead describe them
as open or similar.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 bug-triage depends on:
ii  python2.4.4-6An interactive high-level object-o
ii  python-btsutils   0.3-1  Python module to interact with deb
ii  python-bzutils0.2-1  Python module to interact with bug
ii  python-glade2 2.12.0-1   GTK+ bindings: Glade support
ii  python-gtk2   2.12.0-1   Python bindings for the GTK+ widge
ii  python-support0.7.5  automated rebuilding support for p
ii  xdg-utils 1.0.1-2Desktop integration utilities from

bug-triage recommends no packages.

-- no debconf information



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



Bug#452922: bash: Some key sequences, such as \C-@, do not work in a key binding

2007-11-25 Thread Josh Triplett
Package: bash
Version: 3.1dfsg-8
Severity: normal

I wanted to use set-mark as part of a readline key binding.  One
simple example I tried, which should have worked:

bind 'Control-v: [EMAIL PROTECTED]\C-x\C-x'

This should make Control-v insert an  at the end of the line but
leave the cursor in the current position.  However, it does not work.
At first I thought that the set-mark command would not work in a key
binding.  However, I discovered that I could bind another key to
set-mark, and that key would work:

bind '\C-x\C-m: set-mark'
bind 'Control-v: \C-x\C-m\C-e\C-x\C-x'

I furthermore discovered that if I bound some other function or string
to C-@, it would not work in a macro either:

bind '\C-@: at'
bind 'Control-v: \C-@'

Finally, I discovered that some key sequences only work if bound via
the longer Control-$char syntax, and others only work if bound via
\C-$char.  For instance, Control-v only works if bound as Control-v;
if bound as \C-v it will continue to point to quoted-insert (both in
a key binding and interactively).  Control-@, on the other hand, only
works if bound as \C-@; if bound as Control-@, it will continue to
point to set-mark (interactively; it does not work either way in a key
binding).

The eventual goal, which I managed to achieve after these various
workarounds:

# Make Control-v paste, if in X and if xclip available
if [ -n $DISPLAY ]  [ -x /usr/bin/xclip ] ; then
# Work around a bash bug: \C-@ does not work in a key binding
bind '\C-x\C-m: set-mark'
# The '#' characters ensure that kill commands have text to work on; if
# not, this binding would malfunction at the start or end of a line.
bind 'Control-v: #\C-b\C-k#\C-x\C-?\$(xclip -o -selection 
c)\\e\C-e\C-x\C-m\C-a\C-y\C-?\C-e\C-y\ey\C-x\C-x\C-d'
fi

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 bash depends on:
ii  base-files4.0.2  Debian base system miscellaneous f
ii  debianutils   2.28   Miscellaneous utilities specific t
ii  libc6 2.7-1  GNU C Library: Shared libraries
ii  libncurses5   5.6+20071103-1 Shared libraries for terminal hand

bash recommends no packages.

-- no debconf information



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



Bug#453011: /usr/share/man/man2/listen.2.gz: Wrong /proc location for somaxconn

2007-11-26 Thread Josh Triplett
Package: manpages-dev
Version: 2.67-1
Severity: normal
File: /usr/share/man/man2/listen.2.gz

The listen manpage says:

   Ifthe   backlog   argument   is   greater   than   the   value   in
   /proc/sys/net/somaxconn, then it is silently truncated to  that  value;
   the  default value in this file is 128.  In kernels before 2.4.25, this
   limit was a hard coded value, SOMAXCONN, with the value 128.

However, at least on 2.6.22, this file lives at /proc/sys/net/core/somaxconn.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 manpages-dev depends on:
ii  manpages  2.67-1 Manual pages about using a GNU/Lin

manpages-dev recommends no packages.

-- no debconf information



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



Bug#453052: /usr/bin/debman: should support specifying a version number with -p

2007-11-26 Thread Josh Triplett
Package: debian-goodies
Version: 0.38
Severity: wishlist
File: /usr/bin/debman

debman should support specifying a version number with -p, to allow
reading manpages from packages other than the default version.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 debian-goodies depends on:
ii  curl   7.17.1-1  Get a file from an HTTP, HTTPS or 
ii  dctrl-tools [grep-dctrl]   2.12  Command-line tools to process Debi
ii  lsof   4.78.dfsg.1-3 List open files
ii  python 2.4.4-6   An interactive high-level object-o
ii  whiptail   0.52.2-11.1   Displays user-friendly dialog boxe

debian-goodies recommends no packages.

-- no debconf information



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



Bug#453053: mplayer: Should automatically figure out when it needs -correct-pts

2007-11-26 Thread Josh Triplett
Package: mplayer
Version: 1.0~rc2-6
Severity: normal
Tags: upstream

Some videos, notably many .flv files, play back with major A/V
desynchronization unless played with the -correct-pts option to
mplayer.  The mplayer manpage says that This option does not work
correctly with some demuxers and codecs.

However, other video players, such as totem-xine, play back the same
files with no desynchronization and no magic option.  Ideally, mplayer
should do the same.  Either mplayer should default to -correct-pts for
all demuxers and codecs that support it, or mplayer should detect when
a specific file needs it to play correctly and use it with that file.

Bug also present in upstream SVN.

- Josh Triplett



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



Bug#453385: crawl: Exploring via Ctrl-O should stop when tutorial messages appear

2007-11-29 Thread Josh Triplett
Package: crawl
Version: 2:0.3.2-1
Severity: wishlist

Since I hadn't seen the tutorial feature in previous versions, I
decided to give it a try, to see how it worked and what I could learn
from it.  One item I noticed: exploring via Ctrl-O does not stop when
a tutorial message appears (in this case, the hint about rotting).  I
think it should.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 crawl depends on:
ii  libc6 2.7-2  GNU C Library: Shared libraries
ii  libdb4.4  4.4.20-11  Berkeley v4.4 Database Libraries [
ii  libgcc1   1:4.2.2-4  GCC support library
ii  liblua5.1-0   5.1.2-4Simple, extensible, embeddable pro
ii  libncursesw5  5.6+20071103-1 Shared libraries for terminal hand
ii  libstdc++64.2.2-4The GNU Standard C++ Library v3

crawl recommends no packages.

-- no debconf information



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



Bug#455603: Suggests or recommends libc6-i686

2007-12-11 Thread Josh Triplett
Aurelien Jarno wrote:
 Josh Triplett a écrit :
 Package: libc6
 Version: 2.7-4
 Severity: wishlist

 Consider adding a Suggests or Recommends for libc6-i686 to libc6.
 Suggests would help people find and install it.  Recommends might
 actually make sense, because at this point a pre-686 system might well
 qualify as an unusual installation per Policy 7.2, and on such a system
 libc6-i686 will do no harm other than taking up space.
 
 I would go for a simple Suggests as the kernel already have a
 Recommends, all persons that have a Debian kernel should already have
 this package. People using their own kernel have enough knowledge to
 install this package themselves.

If they know it exists.

- Josh Triplett




signature.asc
Description: OpenPGP digital signature


Bug#455844: awesome: Does not respect aspect ratio hints

2007-12-11 Thread Josh Triplett
Package: awesome
Version: 2.0.final-1
Severity: normal

When running under metacity, resizing mplayer will always keep the
correct aspect ratio (if you do not pass -nokeepaspect).  However,
awesome does not respect aspect ratio hints, and will resize mplayer
in a way that stretches a video to an incorrect aspect.  Please add
support for aspect ratio hints in awesome.  awesome should size
windows to the maximum possible size that keeps the correct aspect
ratio.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 awesome depends on:
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.10-1.2 The Cairo 2D vector graphics libra
ii  libconfuse0   2.5-3  Library for parsing configuration 
ii  libfontconfig12.5.0-2generic font configuration library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.2-1  X11 RandR extension library

awesome recommends no packages.

-- no debconf information



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



Bug#455846: /usr/share/man/man1/awesome.1.gz: manpage incorrect about reload keybinding

2007-12-11 Thread Josh Triplett
Package: awesome
Version: 2.0.final-1
Severity: normal
File: /usr/share/man/man1/awesome.1.gz

The manpage lists the reload keybinding as Mod4 + Shift + r.  However,
the default binding actually uses Mod4 + Control + r.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 awesome depends on:
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.10-1.2 The Cairo 2D vector graphics libra
ii  libconfuse0   2.5-3  Library for parsing configuration 
ii  libfontconfig12.5.0-2generic font configuration library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.2-1  X11 RandR extension library

awesome recommends no packages.

-- no debconf information



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



Bug#455847: /usr/share/doc/awesome/examples/awesomerc.gz: Should match internal defaults

2007-12-11 Thread Josh Triplett
Package: awesome
Version: 2.0.final-1
Severity: wishlist
File: /usr/share/doc/awesome/examples/awesomerc.gz

I think the example awesomerc should match the internal defaults.
Many programs in Debian ship configuration files which do not change
the defaults, so people can start with those and configure
incrementally away from the defaults.  However, awesome's example
awesomerc changes many things.  I'd like to have an example which
suggests some (commented-out) ways I could customize things, but
leaves the defaults unchanged.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 awesome depends on:
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.10-1.2 The Cairo 2D vector graphics libra
ii  libconfuse0   2.5-3  Library for parsing configuration 
ii  libfontconfig12.5.0-2generic font configuration library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.2-1  X11 RandR extension library

awesome recommends no packages.

-- no debconf information



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



Bug#455850: /usr/share/doc/awesome/examples/awesomerc.gz: Typo: optionnal

2007-12-11 Thread Josh Triplett
Package: awesome
Version: 2.0.final-1
Severity: minor
File: /usr/share/doc/awesome/examples/awesomerc.gz

The example awesomerc has a typo: Optionnal screen padding should
say Optional screen padding.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 awesome depends on:
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.10-1.2 The Cairo 2D vector graphics libra
ii  libconfuse0   2.5-3  Library for parsing configuration 
ii  libfontconfig12.5.0-2generic font configuration library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.2-1  X11 RandR extension library

awesome recommends no packages.

-- no debconf information



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



Bug#455844: awesome: Does not respect aspect ratio hints for non-floating windows

2007-12-11 Thread Josh Triplett
retitle 455844 awesome: Does not respect aspect ratio hints for non-floating 
windows
thanks

Correction: awesome does not respect aspect ratio hints for
non-floating windows.  It does seem to respect aspect ratio hints for
floating windows.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 awesome depends on:
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.10-1.2 The Cairo 2D vector graphics libra
ii  libconfuse0   2.5-3  Library for parsing configuration 
ii  libfontconfig12.5.0-2generic font configuration library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.2-1  X11 RandR extension library

awesome recommends no packages.

-- no debconf information



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



Bug#455851: awesome: Deal with bad configuration more gracefully

2007-12-11 Thread Josh Triplett
Package: awesome
Version: 2.0.final-1
Severity: normal

Awesome should deal with bad configuration more gracefully.
Currently, it simply dies if it does not like ~/.awesomerc .  I would
prefer that awesome substituted default configuration instead.  For
example, I removed the layouts (assuming awesome would use its
defaults) and this caused awesome to crash.

Ideally, awesome should warn about these errors when loading or
reloading the configuration file, so the user knows to correct their
configuration.  However, it should not die.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 awesome depends on:
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.10-1.2 The Cairo 2D vector graphics libra
ii  libconfuse0   2.5-3  Library for parsing configuration 
ii  libfontconfig12.5.0-2generic font configuration library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.2-1  X11 RandR extension library

awesome recommends no packages.

-- no debconf information



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



Bug#455857: Please supply desktop entry for ratpoison session

2007-12-11 Thread Josh Triplett
Package: ratpoison
Version: 1.4.2-1
Severity: wishlist

Please supply a desktop entry, so ratpoison shows up as a session
under gdm and kdm.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 ratpoison depends on:
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxtst6  2:1.0.3-1  X11 Testing -- Resource extension 

Versions of packages ratpoison recommends:
pn  9menu none (no description available)
ii  gnome-terminal [x-terminal-em 2.18.3-1   The GNOME 2 terminal emulator appl
pn  menu  none (no description available)
ii  xterm [x-terminal-emulator]   229-1  X terminal emulator

-- no debconf information



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



Bug#456021: dovecot: Please use looser versioning for plugin interface

2007-12-12 Thread Josh Triplett
Package: dovecot
Version: 1:1.0.9-1
Severity: normal

Dovecot currently requires plugins to build with the exact version of
dovecot they run against.  This makes packaging dovecot plugins
logistically difficult.  Please consider loosening the versioning
requirements for the plugin interface, and supporting something like
the standard shared library mechanism of designating compatible and
incompatible versions.  For example, a plugin built against dovecot
version N should run against dovecot newer than the last version
before N that added to the plugin interface, as long as the newer
version did not remove or change any symbols in the plugin interface.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 CPU cores)
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#456023: Please incorporate and build dovecot-antispam plugin

2007-12-12 Thread Josh Triplett
Package: dovecot
Version: 1:1.0.9-1
Severity: wishlist

dovecot-antispam
http://johannes.sipsolutions.net/Projects/dovecot-antispam provides
a plugin for the Dovecot IMAP server that helps train spam filters.
It watches designated spam folders and trains mail as spam or non-spam
when it moves in or out of those folders respectively.  This avoids
the problem of needing additional folders to track correctly and
incorrectly classified spam and non-spam.

dovecot-antispam supports dspam, crm114, and generic training by
mailing spam and non-spam to training addresses.  For crm114, it
supports folders for the additional unsure classification, and
trains when moving from there to spam or normal folders.

Note that dovecot-antispam needs the type of spam filter configured at
compile time.  It supports building with a custom name, specifically
to allow installing multiple variations simultaneously.

With dovecot-dev available, dovecot-antispam could become a separate
package; however, without bug 456021 fixed, doing so would require
rebuilding the plugin package for every new upstream version of
dovecot.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 CPU cores)
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#456024: val-and-rick: Segfaults if it cannot initialize SDL

2007-12-12 Thread Josh Triplett
Package: val-and-rick
Version: 0.1a.dfsg1-1
Severity: normal

If val-and-rick cannot initialize SDL, it segfaults.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 val-and-rick depends on:
ii  libbulletml0d1  0.0.6-2  C++ library to handle BulletML eas
ii  libc6   2.7-4GNU C Library: Shared libraries
ii  libgcc1 1:4.2.2-4GCC support library
ii  libgl1-mesa-glx [libgl1 7.0.2-2  A free implementation of the OpenG
ii  libglu1-mesa [libglu1]  7.0.2-2  The OpenGL utility library (GLU)
ii  libsdl-mixer1.2 1.2.8-1  mixer library for Simple DirectMed
ii  libsdl1.2debian 1.2.12-1 Simple DirectMedia Layer
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  val-and-rick-data   0.1a.dfsg1-1 shooter game - game data
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

val-and-rick recommends no packages.

-- no debconf information



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



Bug#456030: Please recommend menu-xdg

2007-12-12 Thread Josh Triplett
Package: menu
Version: 2.1.36
Severity: wishlist

Please consider recommending menu-xdg.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 menu depends on:
ii  dpkg  1.14.12package maintenance system for Deb
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libgcc1   1:4.2.2-4  GCC support library
ii  libstdc++64.2.2-4The GNU Standard C++ Library v3

menu recommends no packages.

-- no debconf information



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



Bug#455857: closed by Bernhard R. Link [EMAIL PROTECTED] (Re: Bug#455857: Please supply desktop entry for ratpoison session)

2007-12-12 Thread Josh Triplett
Debian Bug Tracking System wrote:
 * Josh Triplett [EMAIL PROTECTED] [071212 07:22]:
 Please supply a desktop entry, so ratpoison shows up as a session
 under gdm and kdm.
 
 Please make sure you have menu-xdg installed. If you still do not see
 a ratpoison session in your display manager, please report a bug against
 your display manager. Ratpoison does not provide special gnome or kde
 functionality, so a desktop entry would be wrong.

I do have menu-xdg installed.  Apparently I also needed menu
installed.

Note that .desktop files do not specifically target GNOME and KDE;
they simply provide a standard way to set up menu items and desktop
sessions, similar to the Debian menu system but more widely used.

In any case, while I do believe ratpoison should provide a .desktop
file, I won't argue the point further, mostly because ratpoison hangs
X to the point where Ctrl-Alt-Backspace won't work whenever I press
C-t ? or some of the other key commands.

However, please consider adding a Suggests for menu-xdg, and
documenting how to make ratpoison actually show up as a session.

Hopefully bug 431118 will get fixed at some point, which will make
this issue go away.

- Josh Triplett




signature.asc
Description: OpenPGP digital signature


Bug#454801: transmission-gtk: Only partially fixed; does not work in Iceweasel

2007-12-12 Thread Josh Triplett
Package: transmission-gtk
Version: 0.95.dfsg-2
Followup-For: Bug #454801

0.95.dfsg-2 partially fixes this bug: nautilus now offers to open
torrents with transmission.  However, Iceweasel does not.  I think it
uses a separate database of MIME types; /usr/lib/mime/packages?

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 transmission-gtk depends on:
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-4GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1.3   The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.3-1 The GTK+ graphical user interface 
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libssl0.9.8 0.9.8g-3 SSL shared libraries
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  transmission-common 0.95.dfsg-2  free, lightweight BitTorrent clien
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

transmission-gtk recommends no packages.

-- no debconf information



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



Bug#456036: transmission-gtk: Typo in description: grafical

2007-12-12 Thread Josh Triplett
Package: transmission-gtk
Version: 0.95.dfsg-2
Severity: minor

The description of transmission-gtk has the typo grafical.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 transmission-gtk depends on:
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-4GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1.3   The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.3-1 The GTK+ graphical user interface 
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libssl0.9.8 0.9.8g-3 SSL shared libraries
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  transmission-common 0.95.dfsg-2  free, lightweight BitTorrent clien
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

transmission-gtk recommends no packages.

-- no debconf information



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



Bug#456038: transmission-gtk: Does not exit immediately when requested

2007-12-12 Thread Josh Triplett
Package: transmission-gtk
Version: 0.95.dfsg-2
Severity: normal

When I try to close transmission, it hangs for a long time
transmitting upload/download totals to tracker.  Transmission should
close immediately when requested.  Perhaps it could keep the tracker
reasonably up to date all the time, so it does not need to check in
before exiting.  Alternatively, perhaps it could have a short
(sub-second) timeout before it just exits.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 transmission-gtk depends on:
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-4GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1.3   The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.3-1 The GTK+ graphical user interface 
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libssl0.9.8 0.9.8g-3 SSL shared libraries
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  transmission-common 0.95.dfsg-2  free, lightweight BitTorrent clien
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

transmission-gtk recommends no packages.

-- no debconf information



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



Bug#456097: dovecot-imapd: Plugin to re-filter mail moved to designated folders

2007-12-12 Thread Josh Triplett
Package: dovecot-imapd
Version: 1:1.0.9-1
Severity: wishlist

I use the dovecot antispam plugin, which trains my spam filter when I
move mails between my spam, unsure, and normal folders.  However, when
moving mails out of my spam or unsure folders into normal folders, I
don't want to have to file them manually; I want my sieve script to
file them.

Right now, I refilter mail by running a getmail script every few
minutes which grabs mail from my REFILTER folder, adds a header to
indicate refiltering, and passes it to deliver again; my sieve filters
then ignore spam headers on refiltered mail.  However, this has
several disadvantages: I have to wait for mails to refilter,
refiltering pollutes my mail server log with numerous successful login
attempts, and I have to modify mails so sieve doesn't just file them
as spam or unsure again.

I'd love to have a plugin which refilters all mail moved to a
configured refiltering folder.  Ideally, it should somehow set a flag
that my sieve script can check; however, I could live with it simply
adding a configurable header to the mail.

Thank you,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 dovecot-imapd depends on:
ii  dovecot-common1:1.0.9-1  secure mail server that supports m
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libssl0.9.8   0.9.8g-3   SSL shared libraries

dovecot-imapd recommends no packages.

-- no debconf information



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



Bug#456109: xscreensaver: Please write only non-default settings

2007-12-12 Thread Josh Triplett
Package: xscreensaver
Version: 5.04-1
Severity: wishlist

I'd like to keep my xscreensaver settings in Git, which I currently do
for many other dotfiles.  I want that configuration to contain a very
minimal set of settings, to just blank and lock:

timeout:0:10:00
lock:   True
lockTimeout:0:01:00
splash: False
mode:   blank

However, if I ever run xscreensaver-demo, it writes out a new copy of
~/.xscreensaver.  This copy includes all the default settings as well,
and a timestamp at the top, both of which make versioning it more
difficult.  I'd like to have some way to make xscreensaver-demo only
write out settings I actually changed from the default, and not write
a timestamp.  That way, if I run xscreensaver-demo, and change one
thing, a diff will show that only that one thing changed.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 xscreensaver depends on:
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libc6  2.7-4 GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1.3The Cairo 2D vector graphics libra
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.4-2  The GLib library of C routines
ii  libgtk2.0-02.12.3-1  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libpam0g   0.99.7.1-5Pluggable Authentication Modules l
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxinerama1   1:1.0.2-1 X11 Xinerama extension library
ii  libxml22.6.30.dfsg-3 GNOME XML library
ii  libxmu61:1.0.3-1 X11 miscellaneous utility library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  libxxf86misc1  1:1.0.1-2 X11 XFree86 miscellaneous extensio
ii  libxxf86vm11:1.0.1-2 X11 XFree86 video mode extension l
ii  netpbm 2:10.0-11 Graphics conversion tools

Versions of packages xscreensaver recommends:
pn  libjpeg-progs none (no description available)
ii  perl [perl5]  5.8.8-12   Larry Wall's Practical Extraction 
ii  wamerican-huge [wordlist] 6-2.1  American English dictionary words 
pn  xli | xloadimage  none (no description available)

-- no debconf information



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



Bug#456114: gconf: Please support splitting preferences into multiple files by path

2007-12-12 Thread Josh Triplett
Package: gconf
Severity: wishlist

I keep my home directory in version control, as a means of sharing it
across systems, keeping it backed up, and tracking changes to it.  I'd
like to add some of my gconf configuration to version control as well.
However, gconf contains various types of preferences, some of which I
want to version and some of which I do not.  For instance, I would
like to version /apps/metacity/general/num_workspaces,
/apps/evolution/mail/display/thread_list, and most of
/apps/gnome-terminal, but I do not want to version
/apps/evolution/last_version,
/apps/gnome-settings/gnome-panel/history-gnome-run, or
/apps/meld/window_size_{x,y}.

Thus, I'd like the ability to have multiple readwrite gconf stores,
with different (non-overlapping) sets of preferences stored in each.
I could then have all the prefs I want to version stored in one file,
machine-specific prefs stored in another file (bonus if I can use the
hostname in the filename, so all the machine-specific files can
coexist in parallel), all the prefs I never want to version in a file
to ignore, and all other prefs in a new file so I can check and
classify them.

This potentially shares some goals with online-prefs-sync, which would
also benefit from having a list of preferences safe to sync across
machines, and which provides some support for the idea of safely
changing a store underneath gconf and having it notice.  However, it
differs in several ways, most notably the use of local stores for
everything.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 CPU cores)
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#456145: Should only write changed prefs to .transmission/gtk/prefs.ini

2007-12-13 Thread Josh Triplett
Package: transmission
Version: 0.95.dfsg-1
Severity: wishlist

I keep my home directory in version control, as a means of sharing it
across systems, keeping it backed up, and tracking changes to it.  One
of the biggest problems I run into relates to applications that always
write out their entire preferences, rather than only changed
preferences.  This makes it much harder to track changes and share
files across machines.  Could transmission please write out only its
changed preferences, rather than all preferences?

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 transmission depends on:
ii  transmission-cli 0.95.dfsg-1 free, lightweight BitTorrent clien
ii  transmission-gtk 0.95.dfsg-2 free, lightweight BitTorrent clien

transmission recommends no packages.

-- no debconf information



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



Bug#456157: nautilus: Stretch Icon stops growing and starts moving

2007-12-13 Thread Josh Triplett
Package: nautilus
Version: 2.20.0-2
Severity: normal

If I choose Stretch Icon for an icon, grab one of the handles other
than the lower-right handle, and stretch the icon past a certain
point, the icon stops growing, and instead starts moving in strange
directions.  The icon should either stop growing and stay put, or
continue growing arbitrarily large.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 nautilus depends on:
ii  desktop-file-utils 0.13-2Utilities for .desktop files
ii  gnome-control-center   1:2.20.1-2utilities to configure the GNOME d
ii  libart-2.0-2   2.3.19-3  Library of functions for 2D graphi
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.20.2-1  Bonobo CORBA interfaces library
ii  libc6  2.7-4 GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1.3The Cairo 2D vector graphics libra
ii  libeel2-2.20   2.20.0-2  Eazel Extensions Library (for GNOM
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libexempi3 1.99.5-1  A library to parse XMP metadata (L
ii  libexif12  0.6.16-2  library to parse EXIF files
ii  libgail-common 1.20.2-1  GNOME Accessibility Implementation
ii  libgail18  1.20.2-1  GNOME Accessibility Implementation
ii  libgconf2-42.20.1-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.4-2  The GLib library of C routines
ii  libgnome-desktop-2 2.20.2-1  Utility library for loading .deskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.20.1-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.3-1  The GTK+ graphical user interface 
ii  libnautilus-extension1 2.20.0-2  libraries for nautilus components 
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  librsvg2-2 2.18.2-1  SAX-based renderer library for SVG
ii  libselinux12.0.15-2+b1   SELinux shared libraries
ii  libstartup-notification0   0.9-1 library for program launch feedbac
ii  libtrackerclient0  0.6.3-3+b1metadata database, indexer and sea
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxml22.6.30.dfsg-3 GNOME XML library
ii  nautilus-data  2.20.0-2  data files for nautilus
ii  shared-mime-info   0.22-2FreeDesktop.org shared MIME databa

Versions of packages nautilus recommends:
ii  desktop-base  4.0.4  common files for the Debian Deskto
ii  eject 2.1.5-6ejects CDs and operates CD-Changer
pn  fam   none (no description available)
ii  libgnomevfs2-extra1:2.20.1-1 GNOME Virtual File System (extra m
ii  librsvg2-common   2.18.2-1   SAX-based renderer library for SVG
ii  nautilus-cd-burner2.20.0-1   CD Burning front-end for Nautilus

-- no debconf information



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



Bug#455844: awesome: Does not respect aspect ratio hints for non-floating windows

2007-12-13 Thread Josh Triplett
Julien Danjou wrote:
 At 1197430296 time_t, Josh Triplett wrote:
 Correction: awesome does not respect aspect ratio hints for
 non-floating windows.  It does seem to respect aspect ratio hints for
 floating windows.
 
 awesome respect aspect ratio if you ask it to do so.
 See resize_hint configuration variable (set to off by default in 2.0).

Ah.  In that case, could that variable default to on in future versions?

This also seems like an instance of 455847: when looking for a relevant
preference, I dismissed resize_hint because I assumed that the default
configuration matched the example awesomerc in having resize_hint on.

- Josh Triplett



signature.asc
Description: OpenPGP digital signature


Bug#456165: RFP: handbrake -- Rips and encodes DVDs

2007-12-13 Thread Josh Triplett
Package: wnpp
Severity: wishlist

* Package name: handbrake
  Version : 0.9.1
  Upstream Author : Various; see http://handbrake.m0k.org/?article=development
* URL : http://handbrake.m0k.org/
* License : GPL
  Programming Lang: C
  Description : Rips and encodes DVD videos

Handbrake provides a friendly graphical interface for ripping DVD
videos and encoding them as video files.  It can show a preview of
content before ripping, to verify titles and chapters.  It can
deinterlace, crop, and scale video.  It supports DVD subtitles by
encoding them directly in the video image.
..
Handbrake supports numerous formats and codecs:
 - File format: MPEG-4 (MP4), Matroska (MKV), Ogg (OGM), or AVI
 - Video: MPEG-4 or H.264 (1 or 2 passes or constant quantizer/rate
   encoding)
 - Audio: AAC, MP3, Vorbis or AC-3 pass-through (supports encoding of
   several audio tracks)
..
Handbrake also provides a command-line interface, HandbrakeCLI.


Some notes on Handbrake:

* Its build system needs some serious work.  It wants to download and
  build all its dependencies at build time, and statically link to
  those copies.  (I have not actually managed to get it to build, due
  to build errors in one of these libraries.)  This will need to
  change to support dynamically linking to system libraries.

* Some of the libraries it depends on do not exist in Debian due to
  legal problems such as patent issues or anti-circumvention laws.
  For libdvdcss, ideally it could do the same thing all the DVD
  players in Debian do: use libdvdread (which Handbrake already does),
  and let libdvdread pull in libdvdcss if installed.  For encumbered
  codecs, ideally it could pick up libraries if installed and disable
  the corresponding codecs if not; however, if it cannot, then perhaps
  it could have a DEB_BUILD_OPTIONS=risky like ffmpeg.

* Build-Depends available in Debian: jam, liba52-0.7.4-dev,
  libavcodec-dev, libdvdread3-dev, libmpeg2-4-dev, libogg-dev,
  libvorbis-dev, libsamplerate0-dev

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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#455580: fretsonfire-game: Consider using ttf-dejavu rather than ttf-bitstream-vera

2007-12-14 Thread Josh Triplett
Matthew Johnson wrote:
 On Mon Dec 10 16:01, Josh Triplett wrote:
 At least in theory, ttf-dejavu should subsume ttf-bitstream-vera.
 Please consider having fretsonfire use DejaVu fonts in place of
 Bitstream Vera fonts, and depending on ttf-dejavu rather than
 ttf-bitstream-vera.
 
 Sure, why not. I've changed it in svn.

Thanks!

- Josh Triplett




signature.asc
Description: OpenPGP digital signature


Bug#456362: gnome-keyring: Does not cope with dbus restart

2007-12-14 Thread Josh Triplett
Package: gnome-keyring
Version: 2.20.2-1
Severity: normal

I run gnome-keyring-daemon with libpam-gnome-keyring.  If I restart
dbus (/etc/init.d/dbus restart), gnome-keyring-daemon stops running.
In particular, this means that now when I restart dbus to unwedge
network-manager (which I do frequently; reporting that bug next),
gnome-keyring-daemon can no longer report the network key, so I then
restart my session to get gnome-keyring-daemon running again.

Also easily reproducible by testing with gnome-keyring-manager.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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-keyring depends on:
ii  libatk1.0-0   1.20.0-1   The ATK accessibility toolkit
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.10-1.3 The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.1.2-1simple interprocess messaging syst
ii  libgcrypt11   1.4.0-2LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.14.4-2   The GLib library of C routines
ii  libgtk2.0-0   2.12.3-2   The GTK+ graphical user interface 
ii  libhal-storage1   0.5.10-4   Hardware Abstraction Layer - share
ii  libhal1   0.5.10-4   Hardware Abstraction Layer - share
ii  libpango1.0-0 1.18.3-1   Layout and rendering of internatio

Versions of packages gnome-keyring recommends:
ii  libpam-gnome-keyring  2.20.2-1   GNOME keyring services PAM module

-- no debconf information



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



Bug#456363: network-manager: dbus error The maximum number of pending replies per connection has been reached

2007-12-14 Thread Josh Triplett
Package: network-manager
Version: 0.6.5-3
Severity: important

network-manager frequently triggers errors like these:

Dec 13 07:55:01 josh-mobile NetworkManager: info  Error getting killswitch 
power: org.freedesktop.DBus.Error.LimitsExceeded - The maximum number of 
pending replies per connection has been reached 
Dec 14 00:20:03 josh-mobile NetworkManager: info  Error from dhcdbd on 
'reason' request because: name 'org.freedesktop.DBus.Error.LimitsExceeded', 
message 'The maximum number of pending replies per connection has been 
reached'. 
Dec 14 00:20:05 josh-mobile NetworkManager: info  Couldn't send DHCP 'up' 
message because: name 'org.freedesktop.DBus.Error.LimitsExceeded', message 'The 
maximum number of pending replies per connection has been reached'. 

The first message occurs many times per minute.  The second and third
coincide with network-manager forgetting how to actually manage
networks, and result in me restarting dbus to unwedge it.  (Restarting
network-manager does not fix the problem.)

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 network-manager depends on:
ii  adduser  3.105   add and remove users and groups
ii  dbus 1.1.2-1 simple interprocess messaging syst
ii  dhcdbd   3.0-1   D-Bus interface to the ISC DHCP cl
ii  hal  0.5.10-4Hardware Abstraction Layer
ii  ifupdown 0.6.8   high level tools to configure netw
ii  iproute  20070313-1  Professional tools to control the 
ii  iputils-arping   3:20071127-1Tool to send ICMP echo requests to
ii  libc62.7-4   GNU C Library: Shared libraries
ii  libdbus-1-3  1.1.2-1 simple interprocess messaging syst
ii  libdbus-glib-1-2 0.74-1  simple interprocess messaging syst
ii  libgcrypt11  1.4.0-2 LGPL Crypto library - runtime libr
ii  libglib2.0-0 2.14.4-2The GLib library of C routines
ii  libgpg-error01.4-2   library for common error values an
ii  libhal1  0.5.10-4Hardware Abstraction Layer - share
ii  libiw29  29-1Wireless tools - library
ii  libnl1-pre6  1.0~pre6-6  Library for dealing with netlink s
ii  libnm-util0  0.6.5-3 network management framework (shar
ii  lsb-base 3.1-24  Linux Standard Base 3.1 init scrip
ii  wpasupplicant0.6.1~git20071119-1 Client support for WPA and WPA2 (I

Versions of packages network-manager recommends:
ii  network-manager-gnome 0.6.5-3network management framework (GNOM

-- no debconf information



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



Bug#456395: dovecot-imapd: /usr/lib/dovecot/imap uses ~/mail rather than configured mail location

2007-12-15 Thread Josh Triplett
Package: dovecot-imapd
Version: 1:1.0.9-1
Severity: normal

Running /usr/lib/dovecot/imap directly, to give a pre-authenticated
IMAP connection, uses ~/mail rather than my configured mail store in
~/.maildir .

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 dovecot-imapd depends on:
ii  dovecot-common1:1.0.9-1  secure mail server that supports m
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libssl0.9.8   0.9.8g-3   SSL shared libraries

dovecot-imapd recommends no packages.

-- no debconf information



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



Bug#456396: mutt: Please add a source command which does not fail if the file does not exist

2007-12-15 Thread Josh Triplett
Package: mutt
Version: 1.5.17-1
Severity: wishlist

The source command fails if the file does not exist.  Please consider
adding a variant of the source command which does not fail if the file
does not exist.  This would allow me to more easily factor my
configuration into multiple files and share it across machines, with
some files not present on some machines.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 mutt depends on:
ii  libc62.7-4   GNU C Library: Shared libraries
ii  libgdbm3 1.8.3-3 GNU dbm database routines (runtime
ii  libgnutls13  2.0.4-1 the GNU TLS library - runtime libr
ii  libidn11 1.1-1   GNU libidn library, implementation
ii  libncursesw5 5.6+20071124-1  Shared libraries for terminal hand
ii  libsasl2-2   2.1.22.dfsg1-16 Cyrus SASL - authentication abstra

Versions of packages mutt recommends:
pn  exim4 | mail-transport-agent  none (no description available)
ii  locales   2.7-4  GNU C Library: National Language (
ii  mime-support  3.39-1 MIME files 'mime.types'  'mailcap

-- no debconf information



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



Bug#456395: dovecot-imapd: /usr/lib/dovecot/imap uses ~/mail rather than configured mail location

2007-12-15 Thread Josh Triplett
Timo Sirainen wrote:
 On Sat, 2007-12-15 at 01:08 -0800, Josh Triplett wrote:
 Running /usr/lib/dovecot/imap directly, to give a pre-authenticated
 IMAP connection, uses ~/mail rather than my configured mail store in
 ~/.maildir .
 
 Use dovecot --exec-mail imap instead. Running imap binary directly
 will probably work in v2.0.

Ah, thanks!

- Josh Triplett



signature.asc
Description: OpenPGP digital signature


Bug#456145: Should only write changed prefs to .transmission/gtk/prefs.ini

2007-12-15 Thread Josh Triplett
Philipp Benner wrote:
 I keep my home directory in version control, as a means of sharing it
 across systems, keeping it backed up, and tracking changes to it.  One
 of the biggest problems I run into relates to applications that always
 write out their entire preferences, rather than only changed
 preferences.  This makes it much harder to track changes and share
 files across machines.  Could transmission please write out only its
 changed preferences, rather than all preferences?
 
 I don't see the point here why it is necessary to only write changes. A
 good revision control system should recognize what changed anyway. I
 just tested it with git. After commiting all files in ~/.transmission I
 changed one option:
 $ git diff 
 diff --git a/gtk/prefs.ini b/gtk/prefs.ini
 index b733d78..7f023f0 100644
 --- a/gtk/prefs.ini
 +++ b/gtk/prefs.ini
 @@ -4,7 +4,7 @@ download-limit-enabled=false
  download-limit=100
  upload-limit-enabled=true
  upload-limit=50
 -prompt-for-download-directory=false
 +prompt-for-download-directory=true
  default-download-directory=/home/philipp/tmp
  listening-port=9090
  nat-traversal-enabled=true
 
 As you see, the diff shows only the one option that I changed. Anyway, it
 is _much_ easier to write the whole preferences file. At the moment I tend
 to close this bug if you don't have any objections.

The problems with writing out all preferences do not arise in that
simple case; you only had one version of transmission and one machine.
To elaborate on the problems I've encountered with other applications
that write out all preferences:

* If I have two different versions of the application on two different
  machines, each will want to write out its entire set of preferences,
  which may differ.  Thus, the file will become changed on all
  machines not running the same version as the one which generated the
  file I checked in.  Furthermore, if the new version writes out new
  preferences and the old version does not ignore preferences it does
  not understand, this could lead to breakage.

* Similarly, sometimes GUI applications write out their preferences in
  inconsistent orders, and these orders may change between versions.
  (This may or may not apply to transmission, depending on what future
  versions do.)

* A new version may change the default for a preference.  If you write
  out only changed preferences, then you allow a distinction between
  preferences the user specifically wanted a certain way and
  preferences the user left at the default, and can decide to update
  only the latter to new defaults; this avoids overriding a user's
  desired configuration.

* Preferences like default-download-directory contain my home
  directory path.  On all my personal machines I have the username
  josh, but on some other machines I have different usernames, or
  occasionally non-standard home directory paths.  If transmission
  avoided writing this preference out unless I change it, I could
  leave it at the default of my home directory.  (As another solution,
  transmission could abbreviate my home directory to ~, and expand
  that when reading in the file.)

* Some applications automatically change preferences based on system
  configuration and available features.  For example, what if
  transmission decided to turn off the system tray icon when I run it
  in an environment that has no system tray (such as a minimalistic
  window manager)?  It should not write out this preference, because I
  did not explicitly change it.

* Some applications record their window position and size, even if
  explicitly told not to *use* the last window position and size.
  Fortunately transmission does not do this (yet).

- Josh Triplett



signature.asc
Description: OpenPGP digital signature


Bug#456454: apt-listchanges: Runs browser as root; please offer option to run as $SUDO_USER or $APT_LISTCHANGES_USER

2007-12-15 Thread Josh Triplett
Package: apt-listchanges
Version: 2.79
Severity: normal

Because apt needs to run as root, apt-listchanges runs as root, and
runs the browser as root.  I'd like to run the browser as my user, so
that it picks up my normal settings, opens up a new tab in any
existing browser I have open, and does not clutter ~root with dotfiles
for programs that should not run as root.  Please consider launching
the browser as a designated user instead, such as $SUDO_USER
(available if using sudo), or $APT_LISTCHANGES_USER (which I could set
to `id -un` in ~/.bashrc).

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 apt-listchanges depends on:
ii  apt   0.7.9  Advanced front-end for dpkg
ii  debconf [debconf-2.0] 1.5.17 Debian configuration management sy
ii  debianutils   2.28.2 Miscellaneous utilities specific t
ii  python2.4.4-6An interactive high-level object-o
ii  python-apt0.7.4  Python interface to libapt-pkg
ii  python-support0.7.5  automated rebuilding support for p
ii  ucf   3.004  Update Configuration File: preserv

Versions of packages apt-listchanges recommends:
pn  exim4 | mail-transport-agent  none (no description available)
ii  python-glade2 2.12.0-2   GTK+ bindings: Glade support
ii  python-gtk2   2.12.0-2   Python bindings for the GTK+ widge

-- debconf information:
* apt-listchanges/confirm: true
* apt-listchanges/which: both
* apt-listchanges/frontend: browser
* apt-listchanges/email-address:
* apt-listchanges/save-seen: true



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



Bug#456458: Please support setting variables in incrontab, such as $PATH

2007-12-15 Thread Josh Triplett
Package: incron
Version: 0.5.7-1
Severity: wishlist

incrontab says it will use $PATH for commands without absolute paths,
but I doubt it will pick up ~/local/bin which I add to $PATH in my
~/.bashrc .  Please support setting variables in incrontab files, such
as $PATH, like cron does.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 incron depends on:
ii  adduser   3.105  add and remove users and groups
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libgcc1   1:4.2.2-4  GCC support library
ii  libstdc++64.2.2-4The GNU Standard C++ Library v3
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip

incron recommends no packages.

-- no debconf information



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



Bug#456493: iceweasel-webdeveloper: New upstream version 1.1.4

2007-12-15 Thread Josh Triplett
Package: iceweasel-webdeveloper
Version: 1.0.2+0-2
Severity: wishlist

The Web Developer extension has a new upstream version 1.1.4; please
consider packaging it.

Thank you,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 iceweasel-webdeveloper depends on:
ii  iceweasel 2.0.0.11-1 lightweight web browser based on M

iceweasel-webdeveloper recommends no packages.

-- no debconf information



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



Bug#456615: deskbar-applet: Mozilla bookmarks search does not load, incorrectly thinks Firefox not the default browser

2007-12-16 Thread Josh Triplett
Package: deskbar-applet
Version: 2.20.2-1
Severity: normal

Web Bookmarks (Mozilla) does not load, claiming Mozilla/Firefox is
not your preferred browser..  However, in my Preferred Applications
configuration, I have Iceweasel set as the default browser.  (Choosing
Firefox instead makes no difference.)

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 deskbar-applet depends on:
ii  gconf2 2.20.1-2  GNOME configuration database syste
ii  libart-2.0-2   2.3.19-3  Library of functions for 2D graphi
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.20.2-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.20.0-1  The Bonobo UI library
ii  libc6  2.7-4 GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1.3The Cairo 2D vector graphics libra
ii  libdbus-1-31.1.2-1   simple interprocess messaging syst
ii  libebook1.2-9  1.12.2-1  Client library for evolution addre
ii  libedataserver1.2-91.12.2-1  Utility library for evolution data
ii  libffi44.2.2-4   Foreign Function Interface library
ii  libgconf2-42.20.1-2  GNOME configuration database syste
ii  libglib2.0-0   2.14.4-2  The GLib library of C routines
ii  libgnome-desktop-2 2.20.2-1  Utility library for loading .deskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.20.1-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.3-2  The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libstartup-notification0   0.9-1 library for program launch feedbac
ii  libxml22.6.30.dfsg-3 GNOME XML library
ii  python 2.4.4-6   An interactive high-level object-o
ii  python-central 0.5.15register and build utility for Pyt
ii  python-dbus0.82.4-1  simple interprocess messaging syst
ii  python-glade2  2.12.0-2  GTK+ bindings: Glade support
ii  python-gnome2  2.20.0-1  Python bindings for the GNOME desk
ii  python-gnome2-desktop  2.20.0-1  Python bindings for the GNOME desk
ii  python-gtk22.12.0-2  Python bindings for the GTK+ widge

Versions of packages deskbar-applet recommends:
ii  gnome-utils   2.20.0.1-1 GNOME desktop utilities
pn  python-beagle none (no description available)
ii  python-soappy 0.12.0-2   SOAP Support for Python

-- no debconf information



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



Bug#456625: compiz: Wobbly windows plugin should allow snapping to edges without sticking to edges

2007-12-16 Thread Josh Triplett
Package: compiz
Version: 0.6.3~git20071208.25941d14-1
Severity: wishlist

I like the behavior of snapping to the edges of the screen or to other
windows by requiring a bit of resistance to push the edge of the
dragged window past the edge of the screen or another window.
However, I do not like the behavior of sticking to the edge of the
screen which prevents me from dragging a window away from an edge.  I
would like to enable the first behavior independently, without the
second behavior.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 compiz depends on:
ii  compiz-core 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-gnom 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-gtk  0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana
ii  compiz-plug 0.6.3~git20071208.25941d14-1 OpenGL window and compositing mana

compiz recommends no packages.

-- no debconf information



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



Bug#432170: Works with ffmpeg-free 0.cvs20070307-6

2007-12-16 Thread Josh Triplett
Package: ffmpeg-free
Version: 0.cvs20070307-6
Followup-For: Bug #432170

Optional x264 support with DEB_BUILD_OPTIONS=risky still works fine
with the new ffmpeg-free source package.  Please consider merging my
patch.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 CPU cores)
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#456639: bash: Please offer option of sorting (ideally versionsorting) wildcard expansion

2007-12-17 Thread Josh Triplett
Package: bash
Version: 3.1dfsg-8
Severity: wishlist

Please consider offering the option of sorting, and ideally
versionsorting, the results of wildcard expansion.  For instance, if
the files f1 through f10 exist, echo * should produce:
f1 f2 f3 f4 f5 f6 f7 f8 f9 f10

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 bash depends on:
ii  base-files4.0.2  Debian base system miscellaneous f
ii  debianutils   2.28.2 Miscellaneous utilities specific t
ii  libc6 2.7-4  GNU C Library: Shared libraries
ii  libncurses5   5.6+20071124-1 Shared libraries for terminal hand

bash recommends no packages.

-- no debconf information



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



Bug#456819: feed2imap: Please support setting IMAP server info once, not per-feed

2007-12-18 Thread Josh Triplett
Package: feed2imap
Version: 0.9.2-1
Severity: wishlist

I want to subscribe to various feeds, with all items going to the same
IMAP server.  Please allow setting the IMAP server once, not per-feed.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 feed2imap depends on:
ii  libfeedparser-ruby1.80.5-1   Ruby library to parse ATOM/RSS fee
ii  librmail-ruby1.8 0.17-1  lightweight mail library for Ruby 
ii  ruby 1.8.2-1 An interpreter of object-oriented 
ii  ruby1.8  1.8.6.111-2 Interpreter of object-oriented scr

Versions of packages feed2imap recommends:
ii  libopenssl-ruby1.8   1.8.6.111-2 OpenSSL interface for Ruby 1.8

-- no debconf information



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



Bug#456820: feed2imap: Please support running a command to get an IMAP connection

2007-12-18 Thread Josh Triplett
Package: feed2imap
Version: 0.9.2-1
Severity: wishlist

Please consider adding support for running a command to get an IMAP
connection.  For example, I can run dovecot --exec-mail imap to get
a pre-authenticated IMAP connection.  This also allows me to avoid
putting my IMAP password in a file.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 feed2imap depends on:
ii  libfeedparser-ruby1.80.5-1   Ruby library to parse ATOM/RSS fee
ii  librmail-ruby1.8 0.17-1  lightweight mail library for Ruby 
ii  ruby 1.8.2-1 An interpreter of object-oriented 
ii  ruby1.8  1.8.6.111-2 Interpreter of object-oriented scr

Versions of packages feed2imap recommends:
ii  libopenssl-ruby1.8   1.8.6.111-2 OpenSSL interface for Ruby 1.8

-- no debconf information



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



Bug#457516: xserver-xorg-video-ati: X server does not start if laptop lid closed

2007-12-22 Thread Josh Triplett
Package: xserver-xorg-video-ati
Version: 1:6.7.197-1
Severity: normal

On my ThinkPad T42, the X server does not start with the laptop lid
closed.  If I leave the lid open, the X server will start.  I have
attached the log file from an attempt to start the X server with the
lid closed.

- Josh Triplett

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

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

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-04-16 01:03 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1672732 2007-12-12 17:48 /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 M7 LW 
[Radeon Mobility 7500]

/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 3621 2007-08-12 22:43 /etc/X11/xorg.conf

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

Section Files
FontPath/usr/share/fonts/X11/misc
FontPath/usr/share/fonts/X11/cyrillic
FontPath/usr/share/fonts/X11/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
FontPath/usr/share/fonts/X11/100dpi
FontPath/usr/share/fonts/X11/75dpi
# path to defoma fonts
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadtype1
Loadvbe
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
EndSection

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

Section Device
Identifier  ATI Technologies, Inc. Radeon Mobility M7 LW [Radeon 
Mobility 7500]
Driver  radeon
Option  DynamicClocks on
#   Option  AccelMethod   EXA
Option  AGPMode   4

#   Option  MergedFB  on
#   Option  CRT2Position  RightOf
#   Option  MetaModes 1400x1050-1680x1050 
1400x1050+1680x1050 1400x1050 1024x768 800x600 640x480
#   Option  MergedXineramaCRT2IsScreen0   yes
EndSection

Section Monitor
Identifier  IBM ThinkPad LCD 1400x1050
Option  DPMS
DisplaySize 286 215
EndSection

Section Screen
Identifier  Default Screen
Device  ATI Technologies, Inc. Radeon Mobility M7 LW [Radeon 
Mobility 7500]
DefaultDepth24
#   SubSection Display
#   Depth   24
#   Virtual 3080 1050
#   Modes   1680x1050 1400x1050 1024x768 800x600 640x480
#   EndSubSection

Monitor IBM ThinkPad LCD 1400x1050
SubSection Display
Depth   1
Modes   1400x1050 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1400x1050 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8
Modes   1400x1050 1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   15
Modes   1400x1050 1024x768 800x600 640x480
EndSubSection
SubSection

Bug#457588: nautilus: Icon for DVD should allow playing DVD, not just browsing contents

2007-12-23 Thread Josh Triplett
Package: nautilus
Version: 2.20.0-2
Severity: wishlist

(I've filed this bug against nautilus, but it may need fixing
elsewhere in GNOME instead.)

With a DVD in the drive, a DVD icon appears on the desktop and in the
Places menu.  However, for a video DVD, clicking on the icon just
browses the DVD in a file manager, rather than playing the DVD.  The
icon for a video DVD should support playing the DVD, and should
ideally play the DVD as the default action when clicking on the icon.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 nautilus depends on:
ii  desktop-file-utils 0.13-2Utilities for .desktop files
ii  gnome-control-center   1:2.20.1-2utilities to configure the GNOME d
ii  libart-2.0-2   2.3.19-3  Library of functions for 2D graphi
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.20.2-1  Bonobo CORBA interfaces library
ii  libc6  2.7-5 GNU C Library: Shared libraries
ii  libcairo2  1.4.12-1  The Cairo 2D vector graphics libra
ii  libeel2-2.20   2.20.0-2  Eazel Extensions Library (for GNOM
ii  libesd-alsa0 [libesd0] 0.2.36-3  Enlightened Sound Daemon (ALSA) - 
ii  libexempi3 1.99.5-1  A library to parse XMP metadata (L
ii  libexif12  0.6.16-2.1library to parse EXIF files
ii  libgail-common 1.20.2-1  GNOME Accessibility Implementation
ii  libgail18  1.20.2-1  GNOME Accessibility Implementation
ii  libgconf2-42.20.1-2  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.4-2  The GLib library of C routines
ii  libgnome-desktop-2 2.20.2-1  Utility library for loading .deskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.20.1-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.3-2  The GTK+ graphical user interface 
ii  libnautilus-extension1 2.20.0-2  libraries for nautilus components 
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  librsvg2-2 2.18.2-1  SAX-based renderer library for SVG
ii  libselinux12.0.15-2+b1   SELinux shared libraries
ii  libstartup-notification0   0.9-1 library for program launch feedbac
ii  libtrackerclient0  0.6.4-1   metadata database, indexer and sea
ii  libx11-6   2:1.1.3-1 X11 client-side library
ii  libxml22.6.30.dfsg-3 GNOME XML library
ii  nautilus-data  2.20.0-2  data files for nautilus
ii  shared-mime-info   0.22-2FreeDesktop.org shared MIME databa

Versions of packages nautilus recommends:
ii  desktop-base  4.0.4  common files for the Debian Deskto
ii  eject 2.1.5-6ejects CDs and operates CD-Changer
pn  fam   none (no description available)
ii  libgnomevfs2-extra1:2.20.1-1 GNOME Virtual File System (extra m
ii  librsvg2-common   2.18.2-1   SAX-based renderer library for SVG
ii  nautilus-cd-burner2.20.0-1   CD Burning front-end for Nautilus

-- no debconf information



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



Bug#457633: transmission: Option to bias towards downloading chunks in file order

2007-12-23 Thread Josh Triplett
Package: transmission
Version: 0.96.dfsg-1
Severity: wishlist

I'd like to have an option to, given a choice between multiple equally
useful chunks, bias towards requesting chunks from earlier in the
file.  Ideally, if transmission always has its choice of chunks and
can keep saturating available bandwidth, it should download contiguous
chunks from the beginning of the file.  This would allow programs that
can handle partial files to usefully process a partial download.  For
instance, most video players can play a partially downloaded video
file, and nautilus can thumbnail such files.

Similarly, when downloading a multi-file torrent, transmission could
bias towards completing partial files.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 transmission depends on:
ii  transmission-cli 0.96.dfsg-1 free, lightweight BitTorrent clien
ii  transmission-common  0.96.dfsg-1 free, lightweight BitTorrent clien
ii  transmission-gtk 0.96.dfsg-1 free, lightweight BitTorrent clien

transmission recommends no packages.

-- no debconf information



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



Bug#422886: icedove: Still present

2007-12-24 Thread Josh Triplett
Package: icedove
Version: 2.0.0.6-1
Followup-For: Bug #422886

This bug still exists with 2.0.0.6-1.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 icedove depends on:
ii  debianutils 2.28.2   Miscellaneous utilities specific t
ii  fontconfig  2.5.0-2  generic font configuration library
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libcairo2   1.4.12-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.2-4GCC support library
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface 
ii  libhunspell-1.1-0   1.1.9-1  spell checker and morphological an
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.7.0~1.9b1-2NetScape Portable Runtime Library
ii  libnss3-0d  3.12.0~1.9b1-2   Transition package for Network Sec
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcomposite1  1:0.4.0-1X11 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  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  psmisc  22.6-1   Utilities that use the proc filesy
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

icedove recommends no packages.

-- no debconf information



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



Bug#382904: gnujump: No longer reproducible for me

2007-12-24 Thread Josh Triplett
Package: gnujump
Followup-For: Bug #382904

As of the current version 1.0.0-3 of gnujump, and with up-to-date X
drivers from sid, I can no longer reproduce this either.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 gnujump depends on:
ii  gnujump-data  1.0.0-3a platform game where you have to 
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libgl1-mesa-glx [libgl1]  7.0.2-3A free implementation of the OpenG
ii  libglu1-mesa [libglu1]7.0.2-3The OpenGL utility library (GLU)
ii  libsdl-image1.2   1.2.6-1image loading library for Simple D
ii  libsdl-mixer1.2   1.2.8-1mixer library for Simple DirectMed
ii  libsdl1.2debian   1.2.12-3   Simple DirectMedia Layer

gnujump recommends no packages.

-- no debconf information



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



Bug#457668: singularity: Researching a technology assigns one more CPU than necessary

2007-12-24 Thread Josh Triplett
Package: singularity
Version: 0.26a+r409-5
Severity: normal

If I choose to research a technology, and I have more than enough
available CPU to research it in one day, one extra set of CPUs gets
assigned to that research than necessary.  For example, if I have 1000
available CPUs in 10 CPU increments, and I choose to research a
technology requiring 500 CPU, 510 CPUs will start working on the
research.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 singularity depends on:
ii  python   2.4.4-6 An interactive high-level object-o
ii  python-pygame1.7.1release-4.1+b1 SDL bindings for games development
ii  python-support   0.7.5   automated rebuilding support for p
ii  ttf-bitstream-vera   1.10-7  The Bitstream Vera family of free 

Versions of packages singularity recommends:
ii  singularity-music 005-1  Music for Endgame: Singularity gam

-- no debconf information



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



Bug#458294: /usr/bin/gnome-obex-server: Please support OBEX FTP

2007-12-29 Thread Josh Triplett
Package: gnome-bluetooth
Version: 0.9.1-1
Severity: wishlist
File: /usr/bin/gnome-obex-server

Some bluetooth devices only support OBEX FTP, not OBEX PUSH.  However,
gnome-obex-server only supports OBEX PUSH.  Please consider adding
support for OBEX FTP, so these devices can talk to gnome-obex-server.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 gnome-bluetooth depends on:
ii  gconf2  2.20.1-2 GNOME configuration database syste
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libbluetooth2   3.24-1   Library to use the BlueZ Linux Blu
ii  libbonobo2-02.20.2-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.20.0-1 The Bonobo UI library
ii  libbtctl4   0.9.0-2  GObject Bluetooth library
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libcairo2   1.4.12-2 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.20.1-2 GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgnome-keyring0   2.20.2-1 GNOME keyring services library
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomebt0 0.9.1-1  GNOME Bluetooth library
ii  libgnomecanvas2-0   2.20.1.1-1   A powerful object-oriented display
ii  libgnomeui-02.20.1.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.1-1   GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   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  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.30.dfsg-3GNOME XML library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

gnome-bluetooth recommends no packages.

-- no debconf information



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



Bug#458303: python-cwiid: Interacting with cwiid.Wiimote instance after .close() causes segfault

2007-12-30 Thread Josh Triplett
Package: python-cwiid
Version: 0.6.00-2
Severity: normal

After calling .close() on an instance of cwiid.Wiimote, interacting
with it further causes a segfault:

$ ipython 

In [1]: import cwiid

In [2]: wiimote = cwiid.Wiimote()

In [3]: wiimote.close()

In [4]: wiimote.state
Segmentation fault

(I used wiimote.state as an example; other actions, such as writing to
wiimote.led, also trigger the segfault.)

I would expect a Python exception of some kind instead.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 python-cwiid depends on:
ii  libcwiid1 0.6.00-2   library to interface with the wiim
ii  python2.4.4-6An interactive high-level object-o
ii  python-support0.7.5  automated rebuilding support for p

python-cwiid recommends no packages.

-- no debconf information



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



Bug#395086: reassign 395086 to kernel-package

2007-12-30 Thread Josh Triplett
# Automatically generated email from bts, devscripts version 2.10.11
# reassigned by maximilian attems but control not CCed
reassign 395086 kernel-package 




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



Bug#458312: linux-2.6: Please set CONFIG_NO_HZ=y and CONFIG_HIGH_RES_TIMERS=y for amd64

2007-12-30 Thread Josh Triplett
Package: linux-2.6
Severity: wishlist

Please consider setting CONFIG_NO_HZ=y and CONFIG_HIGH_RES_TIMERS=y in
the amd64 kernels.  The i386 kernels have had those options enabled
since they became available upstream in 2.6.21, and amd64 now supports
those options upstream as well.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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#435413: tagging 435413

2007-12-30 Thread Josh Triplett
# Automatically generated email from bts, devscripts version 2.10.11
# Remotely triggered oops
tags 435413 + security




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



Bug#458317: gnome-applets: CPU frequency applet shows percentage as -1% if cpufreq not available when applet starts

2007-12-30 Thread Josh Triplett
Package: gnome-applets
Version: 2.20.0-1+b1
Severity: normal

If I start the CPU frequency applet with cpufreq modules not loaded,
then load the modules, the CPU frequency applet correctly shows the
CPU frequency and current governor, but incorrectly shows the
percentage as -1%.  I suspect it needs to detect this case and re-read
the maximum frequency when cpufreq becomes available.

- Josh Triplett

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

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

Versions of packages gnome-applets depends on:
ii  debconf [debconf-2.0]  1.5.17Debian configuration management sy
ii  gconf2 2.20.1-2  GNOME configuration database syste
ii  gnome-applets-data 2.20.0-1  Various applets for GNOME 2 panel 
ii  gnome-icon-theme   2.20.0-1  GNOME Desktop icon theme
ii  gnome-panel2.20.2-2  launcher and docking facility for 
ii  gstreamer0.10-alsa 0.10.15-4 GStreamer plugin for ALSA
ii  gstreamer0.10-plugins-good 0.10.6-4  GStreamer plugins from the good 
ii  libapm13.2.2-8.1 Library for interacting with APM d
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonoboui2-0 2.20.0-1  The Bonobo UI library
ii  libc6  2.7-5 GNU C Library: Shared libraries
ii  libcpufreq0002-7 shared library to deal with the cp
ii  libdbus-1-31.1.2-1   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libgconf2-42.20.1-2  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.4-2  The GLib library of C routines
ii  libgnome-desktop-2 2.20.2-1  Utility library for loading .deskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomekbd1   2.20.0-1  GNOME library to manage keyboard c
ii  libgnomekbdui1 2.20.0-1  User interface library for libgnom
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.20.1-1GNOME Virtual File System (runtime
ii  libgnomevfs2-extra 1:2.20.1-1GNOME Virtual File System (extra m
ii  libgstreamer-plugins-base0 0.10.15-4 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.15-3 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.3-2  The GTK+ graphical user interface 
ii  libgtop2-7 2.20.0-1  gtop system monitoring library
ii  libgucharmap6  1:1.10.1-1Unicode browser widget library (sh
ii  libhal10.5.10-4  Hardware Abstraction Layer - share
ii  libnotify1 [libnotify1-gtk 0.4.4-3   sends desktop notifications to a n
ii  liboobs-1-32.20.0-1  GObject based interface to system-
ii  libpanel-applet2-0 2.20.2-2  library for GNOME Panel applets
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  libwnck22  2.20.2-1  Window Navigator Construction Kit 
ii  libx11-6   2:1.1.3-1 X11 client-side library
ii  libxklavier11  3.3-2 X Keyboard Extension high-level AP
ii  libxml22.6.30.dfsg-3 GNOME XML library
ii  python 2.4.4-6   An interactive high-level object-o

Versions of packages gnome-applets recommends:
ii  deskbar-applet 2.20.2-1  universal search and navigation ba
ii  gnome-media2.20.1-3  GNOME media utilities
ii  gnome-netstatus-applet 2.12.1-1  Network status applet for GNOME 2
ii  gnome-system-monitor   2.20.1-1  Process viewer and system resource
ii  imagemagick7:6.2.4.5.dfsg1-2 Image manipulation programs
ii  python-gnome2  2.20.1-1  Python bindings for the GNOME desk

-- debconf information:
  gnome-applets/cpufreq_SUID_bit: false



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



Bug#458322: gnome-terminal: Please follow the GTK+/GNOME blinking cursor preference

2007-12-30 Thread Josh Triplett
Package: gnome-terminal
Version: 2.18.3-1
Severity: wishlist

GTK+ and GNOME have a gconf preference for whether cursors should
blink: /desktop/gnome/interface/cursor_blink .  However,
gnome-terminal has its own separate preference for whether its cursor
should blink.  Please consider just following the GTK+/GNOME
preference and removing the independent preference.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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-center1:2.20.1-2   utilities to configure the GNOME d
ii  gnome-terminal-data 2.18.3-1 Data files for the GNOME terminal 
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libbonobo2-02.20.2-1 Bonobo CORBA interfaces library
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libgconf2-4 2.20.1-2 GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomeui-02.20.1.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.1-1   GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface 
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libstartup-notification00.9-1library for program launch feedbac
ii  libvte9 1:0.16.11-1  Terminal emulator widget for GTK+ 
ii  libx11-62:1.1.3-1X11 client-side library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  scrollkeeper0.3.14-16A free electronic cataloging syste

Versions of packages gnome-terminal recommends:
ii  yelp  2.20.0-1   Help browser for GNOME 2

-- no debconf information



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



Bug#458324: iceweasel: Looks like upstream #324414, but not fixed

2007-12-30 Thread Josh Triplett
Package: iceweasel
Version: 2.0.0.11-1
Followup-For: Bug #458324

This looks like upstream bug 324414, but that bug has status RESOLVED
FIXED, and this issue still occurs with current iceweasel.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 iceweasel depends on:
ii  debianutils 2.28.2   Miscellaneous utilities specific t
ii  fontconfig  2.5.0-2  generic font configuration library
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libcairo2   1.4.12-2 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.2-4GCC support library
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface 
ii  libhunspell-1.1-0   1.1.9-1  spell checker and morphological an
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.7.0~1.9b1-2NetScape Portable Runtime Library
ii  libnss3-0d  3.12.0~1.9b1-2   Transition package for Network Sec
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  libx11-62:1.1.3-1X11 client-side library
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxp6  1:1.0.0.xsf1-1   X Printing Extension (Xprint) clie
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  procps  1:3.2.7-5/proc file system utilities
ii  psmisc  22.6-1   Utilities that use the proc filesy
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

iceweasel recommends no packages.

-- no debconf information



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



Bug#458326: /usr/bin/git-status: Should respect git config option color.diff

2007-12-30 Thread Josh Triplett
Package: git-core
Version: 1:1.5.3.7-1
Severity: wishlist
File: /usr/bin/git-status

I have the color.diff config option set in ~/.gitconfig:

$ cat .gitconfig 
[color]
branch=auto
diff=auto
status=auto

This makes git diff use color when showing diffs on a terminal.
git status -v should do the same.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 git-core depends on:
ii  cpio2.9-7GNU cpio -- a program to manage ar
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libcurl3-gnutls 7.17.1-1 Multi-protocol file transfer libra
ii  libdigest-sha1-perl 2.11-2   NIST SHA-1 message digest algorith
ii  liberror-perl   0.17-1   Perl module for error/exception ha
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  perl-modules5.8.8-12 Core Perl modules
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

Versions of packages git-core recommends:
ii  curl  7.17.1-1   Get a file from an HTTP, HTTPS or 
pn  git-doc   none (no description available)
ii  less  409-1  Pager program similar to more
ii  openssh-client [ssh-client]   1:4.7p1-1  secure shell client, an rlogin/rsh
ii  patch 2.5.9-4Apply a diff file to an original
ii  rsync 2.6.9-6fast remote file copy program (lik

-- no debconf information



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



Bug#458324: iceweasel: Please follow the GTK+/GNOME blinking cursor preference

2007-12-30 Thread Josh Triplett
Package: iceweasel
Version: 2.0.0.11-1
Severity: wishlist

GTK+ and GNOME have a gconf preference for whether the cursor should
blink: /desktop/gnome/interface/cursor_blink .  (I don't know whether
the GTK+ theme reads that preference or gets it from somewhere else,
but disabling the blinking cursor in the GNOME keyboard preferences
turned it off in pure GTK+ apps too.)  To better integrate with the
native environment, Firefox should read and respect this preference.

(Firefox has its own preference, ui.caretBlinkTime; setting this to 0
stops the cursor from blinking.)

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 iceweasel depends on:
ii  debianutils 2.28.2   Miscellaneous utilities specific t
ii  fontconfig  2.5.0-2  generic font configuration library
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libcairo2   1.4.12-2 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.2-4GCC support library
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface 
ii  libhunspell-1.1-0   1.1.9-1  spell checker and morphological an
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.7.0~1.9b1-2NetScape Portable Runtime Library
ii  libnss3-0d  3.12.0~1.9b1-2   Transition package for Network Sec
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  libx11-62:1.1.3-1X11 client-side library
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxp6  1:1.0.0.xsf1-1   X Printing Extension (Xprint) clie
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  procps  1:3.2.7-5/proc file system utilities
ii  psmisc  22.6-1   Utilities that use the proc filesy
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

iceweasel recommends no packages.

-- no debconf information



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



Bug#458328: gnome-keyboard-properties: Please either add UI for gtk-cursor-blink-timeout or default it to a small value

2007-12-30 Thread Josh Triplett
Package: gnome-control-center
Version: 1:2.20.1-2
Severity: wishlist

Recent GTK adds a preference gtk-cursor-blink-timeout which sets how
long the cursor blinks before just staying on.  Please either:

* add UI for gtk-cursor-blink-timeout to gnome-keyboard-properties
  (right next to the existing blinking cursor preferences),

* default gtk-cursor-blink-timeout to a small value (a few seconds),
  or

* default to no blinking cursor at all.

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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-control-center depends on:
ii  capplets-data 1:2.20.1-2 configuration applets for GNOME 2 
ii  desktop-file-util 0.13-2 Utilities for .desktop files
ii  gnome-desktop-dat 2.20.2-1   Common files for GNOME 2 desktop a
ii  gnome-icon-theme  2.20.0-1   GNOME Desktop icon theme
ii  gnome-menus   2.20.2-1   an implementation of the freedeskt
ii  libart-2.0-2  2.3.19-3   Library of functions for 2D graphi
ii  libatk1.0-0   1.20.0-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.20.2-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.20.0-1   The Bonobo UI library
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libcairo2 1.4.12-2   The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.1.2-1simple interprocess messaging syst
ii  libdbus-glib-1-2  0.74-1 simple interprocess messaging syst
ii  libebook1.2-9 1.12.2-1   Client library for evolution addre
ii  libesd-alsa0 [lib 0.2.36-3   Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig12.5.0-2generic font configuration library
ii  libfreetype6  2.3.5-1+b1 FreeType 2 font engine, shared lib
ii  libgconf2-4   2.20.1-2   GNOME configuration database syste
ii  libglade2-0   1:2.6.2-1  library to load .glade files at ru
ii  libglib2.0-0  2.14.4-2   The GLib library of C routines
ii  libgnome-desktop- 2.20.2-1   Utility library for loading .deskt
ii  libgnome-menu22.20.2-1   an implementation of the freedeskt
ii  libgnome-window-s 1:2.20.1-2 Utility library for getting window
ii  libgnome2-0   2.20.1.1-1 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.20.1.1-1 A powerful object-oriented display
ii  libgnomekbd1  2.20.0-1   GNOME library to manage keyboard c
ii  libgnomekbdui12.20.0-1   User interface library for libgnom
ii  libgnomeui-0  2.20.1.1-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-01:2.20.1-1 GNOME Virtual File System (runtime
ii  libgstreamer-plug 0.10.15-4  GStreamer libraries from the base
ii  libgstreamer0.10- 0.10.15-3  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.3-2   The GTK+ graphical user interface 
ii  libhal1   0.5.10-4   Hardware Abstraction Layer - share
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libmetacity0  1:2.20.1-1 library of lightweight GTK2 based 
ii  libnautilus-exten 2.20.0-2   libraries for nautilus components 
ii  liborbit2 1:2.14.7-0.1   libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2- 2.20.2-2   library for GNOME Panel applets
ii  libpango1.0-0 1.18.3-1   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-3 PNG library - runtime
ii  libpopt0  1.10-3 lib for parsing cmdline parameters
ii  libslab0  0.9.8.svn.20070430-1.1 beautification app library file
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libstartup-notifi 0.9-1  library for program launch feedbac
ii  libx11-6  2:1.1.3-1  X11 client-side library
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxi62:1.1.3-1  X11 Input extension library
ii  libxklavier11 3.3-2  X Keyboard Extension high-level AP
ii  libxml2   2.6.30.dfsg-3  GNOME XML library
ii  libxrandr22:1.2.2-1  X11 RandR extension library
ii  libxrender1   1:0.9.4-1  X Rendering Extension client libra
ii  libxss1   1:1.1.2-1  X11 Screen Saver extension library
ii  libxxf86misc1 1:1.0.1-2  X11 XFree86

Bug#458332: network-manager-gnome: nm-applet does not display in notification area after panel restart

2007-12-30 Thread Josh Triplett
Package: network-manager-gnome
Version: 0.6.5-3
Severity: normal

If I kill gnome-panel and let it automatically restart, nm-applet no
longer displays in the new notification area.  Other applets, such as
gnome-power-manager, do.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 network-manager-gnome depends on:
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libdbus-1-3   1.1.2-1simple interprocess messaging syst
ii  libdbus-glib-1-2  0.74-1 simple interprocess messaging syst
ii  libgconf2-4   2.20.1-2   GNOME configuration database syste
ii  libglade2-0   1:2.6.2-1  library to load .glade files at ru
ii  libglib2.0-0  2.14.4-2   The GLib library of C routines
ii  libgnome-keyring0 2.20.2-1   GNOME keyring services library
ii  libgnome2-0   2.20.1.1-1 The GNOME 2 library - runtime file
ii  libgnomeui-0  2.20.1.1-1 The GNOME 2 libraries (User Interf
ii  libgtk2.0-0   2.12.3-2   The GTK+ graphical user interface 
ii  libnm-util0   0.6.5-4network management framework (shar
ii  libnotify1 [libnotify1-gtk2.1 0.4.4-3sends desktop notifications to a n
ii  libpango1.0-0 1.18.3-1   Layout and rendering of internatio
ii  libx11-6  2:1.1.3-1  X11 client-side library
ii  network-manager   0.6.5-4network management framework daemo

Versions of packages network-manager-gnome recommends:
ii  libpam-gnome-keyring [libpam- 2.20.2-1   GNOME keyring services PAM module
pn  network-manager-openvpn-gnome none (no description available)
pn  network-manager-vpnc-gnomenone (no description available)
ii  notification-daemon   0.3.7-1+b1 a daemon that displays passive pop

-- no debconf information



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



Bug#458333: nautilus: Right-click menu for folders shows redundant items Open and Browse Folder

2007-12-30 Thread Josh Triplett
Package: nautilus
Version: 2.20.0-2
Severity: normal

Right-clicking on a folder gives a menu with Open and Browse
Folder as the first two items; both open nautilus on the folder.
Please remove one of the redundant items.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 nautilus depends on:
ii  desktop-file-utils 0.13-2Utilities for .desktop files
ii  gnome-control-center   1:2.20.1-2utilities to configure the GNOME d
ii  libart-2.0-2   2.3.19-3  Library of functions for 2D graphi
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.20.2-1  Bonobo CORBA interfaces library
ii  libc6  2.7-5 GNU C Library: Shared libraries
ii  libcairo2  1.4.12-2  The Cairo 2D vector graphics libra
ii  libeel2-2.20   2.20.0-2  Eazel Extensions Library (for GNOM
ii  libesd-alsa0 [libesd0] 0.2.36-3  Enlightened Sound Daemon (ALSA) - 
ii  libexempi3 1.99.5-1  A library to parse XMP metadata (L
ii  libexif12  0.6.16-2.1library to parse EXIF files
ii  libgail-common 1.20.2-1  GNOME Accessibility Implementation
ii  libgail18  1.20.2-1  GNOME Accessibility Implementation
ii  libgconf2-42.20.1-2  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.14.4-2  The GLib library of C routines
ii  libgnome-desktop-2 2.20.2-1  Utility library for loading .deskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.20.1-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.3-2  The GTK+ graphical user interface 
ii  libnautilus-extension1 2.20.0-2  libraries for nautilus components 
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.3-1  Layout and rendering of internatio
ii  librsvg2-2 2.18.2-1  SAX-based renderer library for SVG
ii  libselinux12.0.15-2+b1   SELinux shared libraries
ii  libstartup-notification0   0.9-1 library for program launch feedbac
ii  libtrackerclient0  0.6.4-1   metadata database, indexer and sea
ii  libx11-6   2:1.1.3-1 X11 client-side library
ii  libxml22.6.30.dfsg-3 GNOME XML library
ii  nautilus-data  2.20.0-2  data files for nautilus
ii  shared-mime-info   0.22-2FreeDesktop.org shared MIME databa

Versions of packages nautilus recommends:
ii  desktop-base  4.0.4  common files for the Debian Deskto
ii  eject 2.1.5-6ejects CDs and operates CD-Changer
pn  fam   none (no description available)
ii  libgnomevfs2-extra1:2.20.1-1 GNOME Virtual File System (extra m
ii  librsvg2-common   2.18.2-1   SAX-based renderer library for SVG
ii  nautilus-cd-burner2.20.0-1   CD Burning front-end for Nautilus

-- no debconf information



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



Bug#458335: pioneers: Please show number of bots and humans in games

2007-12-30 Thread Josh Triplett
Package: pioneers
Version: 0.11.3-2
Severity: wishlist

The list of games shows the current and maximum numbers of players.
However, the current players often consist of bots.  I'd really like
to see (and sort by) the number of humans in a game.  This would
require a change to the meta-server protocol to provide this
information, a change to the client-server protocol to add a bot/human
flag, and changes to the clients and AI bots to pass this flag.  I
think the benefit of the feature justfies the change.

- Josh Triplett

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

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

Versions of packages pioneers depends on:
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libglib2.0-0  2.14.4-2   The GLib library of C routines
ii  libgnome2-0   2.20.1.1-1 The GNOME 2 library - runtime file
ii  libgtk2.0-0   2.12.3-2   The GTK+ graphical user interface 
ii  libpango1.0-0 1.18.3-1   Layout and rendering of internatio
ii  pioneers-console  0.11.3-2   the Settlers of Catan board game -
ii  pioneers-data 0.11.3-2   the Settlers of Catan board game -

Versions of packages pioneers recommends:
ii  yelp  2.20.0-1   Help browser for GNOME 2

-- no debconf information



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



Bug#458503: lightyears: Please support arbitrary resolutions

2008-01-01 Thread Josh Triplett
Package: lightyears
Version: 1.3a-2
Severity: wishlist

Lightyears currently supports a fixed set of graphics resolutions.
Please consider adding support to enumerate the available graphics
resolutions and let the user choose any of those resolutions.  In
particular, note that this may include non-4:3 resolutions.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 lightyears depends on:
ii  python   2.4.4-6 An interactive high-level object-o
ii  python-pygame1.7.1release-4.1+b1 SDL bindings for games development
ii  python-support   0.7.5   automated rebuilding support for p
ii  ttf-bitstream-vera   1.10-7  The Bitstream Vera family of free 

lightyears recommends no packages.

-- no debconf information



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



Bug#458506: fretsonfire: Applying new video settings does not work

2008-01-01 Thread Josh Triplett
Package: fretsonfire
Version: 1.2.451.dfsg-2
Severity: normal

After changing the video settings, attempting to apply the new
settings does not work; frets on fire instead exits with this exception:

ALSA lib pcm_dmix.c:866:(snd_pcm_dmix_open) unable to open slave
ALSA lib pcm_dmix.c:866:(snd_pcm_dmix_open) unable to open slave
ALSA lib pcm_dmix.c:866:(snd_pcm_dmix_open) unable to open slave
ALSA lib pcm_dmix.c:866:(snd_pcm_dmix_open) unable to open slave
Traceback (most recent call last):
  File FretsOnFire.py, line 64, in ?
engine = GameEngine(config)
  File /usr/share/games/fretsonfire/game/GameEngine.py, line 149, in __init__
self.audio.open(frequency = frequency, bits = bits, stereo = stereo, 
bufferSize = bufferSize)
  File /usr/share/games/fretsonfire/game/Audio.py, line 49, in open
pygame.mixer.init()
pygame.error: No available audio device

I would guess that FoF failed to close the audio device before
reopening it, or has some similar race condition.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 fretsonfire depends on:
ii  fretsonfire-game  1.2.451.dfsg-2 game of musical skill and fast fin
ii  fretsonfire-songs-sectoid 1.dfsg-2   game of musical skill and fast fin

fretsonfire recommends no packages.

-- no debconf information



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



Bug#458504: fretsonfire: Does not handle non-4:3 resolutions correctly

2008-01-01 Thread Josh Triplett
Package: fretsonfire
Version: 1.2.451.dfsg-2

Frets on fire offers all available graphics resolutions as options,
but choosing a non-4:3 resolution (such as the widescreen 1680x1050 I
tried) appears to cut off some of the intended visible area of the
game and menus.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 fretsonfire depends on:
ii  fretsonfire-game  1.2.451.dfsg-2 game of musical skill and fast fin
ii  fretsonfire-songs-sectoid 1.dfsg-2   game of musical skill and fast fin

fretsonfire recommends no packages.

-- no debconf information



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



Bug#119886: openssh-server: Encountered this problem with backup-manager

2008-01-01 Thread Josh Triplett
Package: openssh-server
Version: 1:4.7p1-1
Followup-For: Bug #119886

I ran into the same problem when trying to use backup-manager with ssh
uploads.  I created a user backup-manager on the system I want to
upload the backups to, and since I already had to give that user
permission to /var/archives, I made /var/archives its home directory.
However, backup-manager defaults to 0660 permissions on /var/archives,
making ssh refuse to use /var/archives/.ssh/authorized_keys .

It would require a bit more work, but I think the *right* solution
here would involve asking if the group which has write permission to
the directory contains any users other than the SSH target user.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc4 (SMP w/4 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 openssh-server depends on:
ii  adduser   3.105  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.17 Debian configuration management sy
ii  dpkg  1.14.14package maintenance system for Deb
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libcomerr21.40.3-1   common error description library
ii  libkrb53  1.6.dfsg.3~beta1-2 MIT Kerberos runtime libraries
ii  libpam-modules0.99.7.1-5 Pluggable Authentication Modules f
ii  libpam-runtime0.99.7.1-5 Runtime support for the PAM librar
ii  libpam0g  0.99.7.1-5 Pluggable Authentication Modules l
ii  libselinux1   2.0.15-2+b1SELinux shared libraries
ii  libssl0.9.8   0.9.8g-3   SSL shared libraries
ii  libwrap0  7.6.dbs-14 Wietse Venema's TCP wrappers libra
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip
ii  openssh-client1:4.7p1-1  secure shell client, an rlogin/rsh
ii  zlib1g1:1.2.3.3.dfsg-8   compression library - runtime

openssh-server recommends no packages.

-- debconf information:
  ssh/new_config: true
* ssh/use_old_init_script: true
  ssh/encrypted_host_key_but_no_keygen:
  ssh/disable_cr_auth: false



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



Bug#458528: atlantik: may roll again after game ends

2008-01-01 Thread Josh Triplett
Package: atlantik
Version: 4:3.5.8-1
Severity: normal

If you roll doubles as the last move of a game, such as if it moves
you onto a property for which you cannot pay the rent, the game ends,
but then the $PLAYER_NAME may roll again message appears.

- Josh Triplett

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

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

Versions of packages atlantik depends on:
ii  kdelibs4c2a 4:3.5.8.dfsg.1-4 core libraries and binaries for al
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libgcc1 1:4.2.2-4GCC support library
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libkdegames14:3.5.8-1KDE games library and common files
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libqt3-mt   3:3.3.7-9Qt GUI Library (Threaded runtime v
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  libx11-62:1.1.3-1X11 client-side library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

atlantik recommends no packages.

-- no debconf information



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



Bug#299267: reassign 299267 to debconf ...

2008-01-01 Thread Josh Triplett
# Automatically generated email from bts, devscripts version 2.10.11
# The distcc package almost certainly did not cause this bug on its own; it 
likely lies in debconf or ncurses.
reassign 299267 debconf 
retitle 299267 unable to delete international symbol through 
dpkg-reconfigure/ncurses




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



Bug#458603: /usr/bin/bts: -n/--no-act option

2008-01-01 Thread Josh Triplett
Package: devscripts
Version: 2.10.11
Severity: wishlist
File: /usr/bin/bts

Sometimes I don't know exactly how bts will split a command, such as
when attempting to supply a comment that includes a '.' or ','.  I'd
like to have a -n (--no-act) option, which prints the mail to stdout
rather than sending it.

- Josh Triplett

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

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

Versions of packages devscripts depends on:
ii  debianutils   2.28.2 Miscellaneous utilities specific t
ii  dpkg-dev  1.14.14package building tools for Debian
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  perl  5.8.8-12   Larry Wall's Practical Extraction 
ii  sed   4.1.5-5The GNU sed stream editor

Versions of packages devscripts recommends:
ii  fakeroot  1.8.10 Gives a fake root environment

-- no debconf information



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



Bug#458622: wound-up: DeprecationWarning

2008-01-02 Thread Josh Triplett
Package: wound-up
Version: 1.0.2-1

While running the tutorial, this Python warning appeared on the console:

/usr/share/games/wound-up/lib/game.py:308: DeprecationWarning: integer argument 
expected, got float
  pxl = self.tutorial_map.get_at((px, py))

- Josh Triplett

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

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

Versions of packages wound-up depends on:
ii  python   2.4.4-6 An interactive high-level object-o
ii  python-opengl3.0.0~a6-4  Python bindings to OpenGL
ii  python-pygame1.7.1release-4.1+b1 SDL bindings for games development
ii  python-support   0.7.5   automated rebuilding support for p

wound-up recommends no packages.

-- no debconf information



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



Bug#458625: wound-up: KeyError in acquire_winding_elf

2008-01-02 Thread Josh Triplett
Package: wound-up
Version: 1.0.2-1
Severity: important

While playing the second level, I clicked on the + button a couple of
times, and on the second click the game exited with this traceback:

Traceback (most recent call last):
  File ./woundup, line 16, in ?
main.main()
  File /usr/share/games/wound-up/lib/main.py, line 25, in main
menu.Menu(display.gl_render.GLRenderer, options).run()
  File /usr/share/games/wound-up/lib/menu.py, line 175, in run
self.main_loop()
  File /usr/share/games/wound-up/lib/menu.py, line 164, in main_loop
self.handle_events()
  File /usr/share/games/wound-up/lib/menu.py, line 76, in handle_events
self.start_game()
  File /usr/share/games/wound-up/lib/menu.py, line 435, in start_game
time = new_game.run()
  File /usr/share/games/wound-up/lib/game.py, line 283, in run
self.main_loop()
  File /usr/share/games/wound-up/lib/game.py, line 262, in main_loop
self.state.tick()
  File /usr/share/games/wound-up/lib/model/gamestate.py, line 95, in tick
result = t.update(self)
  File /usr/share/games/wound-up/lib/model/task.py, line 141, in update
gs.acquire_winding_elf(elf)
  File /usr/share/games/wound-up/lib/model/gamestate.py, line 283, in 
acquire_winding_elf
self.elves.remove(elf)
KeyError: model.elf.Elf object at 0xb332fc2c

I can inconsistently reproduce this by rapidly clicking on - and/or +.
This looks like some kind of race condition.

- Josh Triplett

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

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

Versions of packages wound-up depends on:
ii  python   2.4.4-6 An interactive high-level object-o
ii  python-opengl3.0.0~a6-4  Python bindings to OpenGL
ii  python-pygame1.7.1release-4.1+b1 SDL bindings for games development
ii  python-support   0.7.5   automated rebuilding support for p

wound-up recommends no packages.

-- no debconf information



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



Bug#458691: mime-support: Registers an incompatible alternative for /usr/bin/view

2008-01-02 Thread Josh Triplett
Package: mime-support
Version: 3.40-1
Severity: serious
Justification: Policy 10.1

See bug 457898 for context.  As a result of that wishlist item,
mime-support started registering /usr/bin/see as an alternative for
/usr/bin/view.  The /usr/bin/view alternative exists for vi
implementations, such as vim, to provide the traditional name view
for invoking a read-only vi on a file.  /usr/bin/see clearly does not
provide the same functionality, so registering this alternative
violates Policy 10.1:

 Two different packages must not install programs with different
 functionality but with the same filenames. (The case of two programs
 having the same functionality but different implementations is
 handled via alternatives or the Conflicts mechanism. See
 Maintainer Scripts, Section 3.9 and Conflicting binary packages -
 Conflicts, Section 7.3 respectively.) If this case happens, one of
 the programs must be renamed. The maintainers should report this to
 the debian-devel mailing list and try to find a consensus about
 which program will have to be renamed. If a consensus cannot be
 reached, both programs must be renamed.

Worse yet, mime-support registers /usr/bin/see with a higher priority
than existing contenders for the /usr/bin/view alternative, so
installing mime-support will now immediately break the expected
functionality of view.

Please have mime-support stop registering /usr/bin/see as an
alternative for /usr/bin/view, and have it unregister the alternative
when upgrading from versions of mime-support which registered the
alternative.

- Josh Triplett

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

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

mime-support depends on no packages.

Versions of packages mime-support recommends:
ii  file  4.21-4 Determines file type using magic

-- no debconf information



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



Bug#458735: reportbug: Please offer option to show bug mbox in mailer

2008-01-02 Thread Josh Triplett
Package: reportbug
Version: 3.39
Severity: wishlist

Using bts from devscripts, bts show --mbox $BUGNUM will download the
mbox for $BUGNUM and show it in a mailer, defaulting to mutt (mutt -f
%s).  I'd love to have the same feature in querybts and reportbug, so
that when viewing a bug, I could press a key (such as 'm', which looks
available) to see the mbox.

- Josh Triplett

-- Package-specific info: ** Environment settings: EDITOR=emacs
DEBEMAIL=[EMAIL PROTECTED] EMAIL=[EMAIL PROTECTED]
INTERFACE=text

** /home/josh/.reportbugrc:
reportbug_version 3.21.2
mode advanced
ui text
no-cc
header X-Debbugs-CC: [EMAIL PROTECTED]
smtphost bugs.debian.org
header X-Debbugs-No-Ack: ack!

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

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

Versions of packages reportbug depends on:
ii  apt   0.7.9  Advanced front-end for dpkg
ii  python2.4.4-6An interactive high-level object-o
ii  python-central0.5.15 register and build utility for Pyt

reportbug recommends no packages.

-- no debconf information



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



Bug#458734: /usr/games/sol: sol manpage and --help do not document --freecell option

2008-01-02 Thread Josh Triplett
Package: gnome-games
Version: 1:2.20.2-1
Severity: normal
File: /usr/games/sol

sol has a --freecell option which starts a new game of Freecell.
However, the sol manpage and --help output do not document this
option.

- Josh Triplett

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

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

Versions of packages gnome-games depends on:
ii  gnome-games-data1:2.20.2-1   data files for the GNOME games
ii  gnuchess5.07-4   Plays a game of chess, either agai
ii  guile-1.8-libs  1.8.3+1-1Main Guile libraries
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libcairo2   1.4.12-2 The Cairo 2D vector graphics libra
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libgcc1 1:4.2.2-4GCC support library
ii  libgconf2-4 2.20.1-2 GNOME configuration database syste
ii  libglib2.0-02.14.4-2 The GLib library of C routines
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomeui-02.20.1.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.1-1   GNOME Virtual File System (runtime
ii  libgnutls13 2.0.4-1  the GNU TLS library - runtime libr
ii  libgstreamer0.10-0  0.10.15-3Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.12.3-2 The GTK+ graphical user interface 
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  librsvg2-2  2.18.2-1 SAX-based renderer library for SVG
ii  librsvg2-common 2.18.2-1 SAX-based renderer library for SVG
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  libx11-62:1.1.3-1X11 client-side library
ii  libxml2 2.6.30.dfsg-3GNOME XML library
ii  python  2.4.4-6  An interactive high-level object-o
ii  python-gnome2   2.20.1-1 Python bindings for the GNOME desk
ii  python-gnome2-desktop   2.20.0-1 Python bindings for the GNOME desk
ii  python-gtk2 2.12.0-2 Python bindings for the GTK+ widge
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

Versions of packages gnome-games recommends:
ii  gnome-games-extra-data2.20.0-1   games for the GNOME desktop (extra
ii  python-gtkglext1  1.1.0-3GtkGLext python bindings
ii  python-opengl 3.0.0~a6-4 Python bindings to OpenGL

-- no debconf information



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



Bug#462020: getmail4: Need to expunge messages

2008-01-21 Thread Josh Triplett
Package: getmail4
Version: 4.7.7-1
Severity: normal

I use getmail to grab mail from my ISP via IMAP.  When set to delete
messages, getmail does not seem to expunge them, which means I have to
manually expunge my ISP mailbox to avoid filling up my storage quota.
More importantly, if also set to read_all, getmail will re-fetch
deleted messages, resulting in duplicate mails.

getmail needs to expunge mails after deleting them, or at least offer
the option of doing so.  Furthermore, it should not re-fetch deleted
mails.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc7 (SMP w/4 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 getmail4 depends on:
ii  python2.4.4-6An interactive high-level object-o
ii  python-support0.7.6  automated rebuilding support for p

getmail4 recommends no packages.

-- no debconf information



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



Bug#462020: getmail4: Apparently intermittent

2008-01-21 Thread Josh Triplett
Package: getmail4
Version: 4.7.7-1
Followup-For: Bug #462020

Upon further testing, apparently my ISP has some kind of delay between
an expunge and the mails actually disappearing, during which the mails
still appear visible and deleted.  Thus, please consider this just a
feature request for an option to ignore deleted mails when fetching.
I will retitle it as such, and change the severity to wishlist.

- Josh Triplett

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

Kernel: Linux 2.6.24-rc7 (SMP w/4 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 getmail4 depends on:
ii  python2.4.4-6An interactive high-level object-o
ii  python-support0.7.6  automated rebuilding support for p

getmail4 recommends no packages.

-- no debconf information



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



Bug#462307: libsoap-lite-perl: Please do not recommend libnet-jabber-perl

2008-01-23 Thread Josh Triplett
Package: libsoap-lite-perl
Version: 0.70.04-1
Severity: normal

libsoap-lite-perl Recommends libnet-jabber-perl, because it can do
SOAP over Jabber.  However, this does not seem like a common case that
almost every user of the package will want; many SOAP services just
use HTTP, and users of those services will not need
libnet-jabber-perl.  With many apt frontends now installing recommends
by default, many people installing libsoap-lite-perl will get
libnet-jabber-perl even though they have no need for it.  Please
downgrade this to a Suggests.

- Josh Triplett

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

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



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



Bug#462314: libmime-lite-perl: Should not depend on a mail-transport-agent

2008-01-23 Thread Josh Triplett
Package: libmime-lite-perl
Version: 3.021-1
Severity: normal

libmime-lite-perl depends on nullmailer | mail-transport-agent.
However, libmime-lite-perl does not actually need an MTA unless the
caller wants to send a mail using the sendmail method.
libmime-lite-perl can also generate MIME messages and send them via
SMTP, or return them as a string.  Thus, this makes an MTA *at most* a
Recommends.  I would argue for Suggests, since I do not believe
libmime-lite-perl needs an MTA in all but unusual installations.

- Josh Triplett

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

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



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



Bug#462316: libsoap-lite-perl: Please do not depend on libmime-lite-perl

2008-01-23 Thread Josh Triplett
Package: libsoap-lite-perl
Version: 0.70.04-1
Severity: normal

libsoap-lite-perl depends on libmime-lite-perl for use as an SMTP
client.  However, libsoap-lite-perl only needs libmime-lite-perl for
the MAILTO transport, and works perfectly well for other transports
without libmime-lite-perl installed.

Furthermore, pulling in libmime-lite-perl currently pulls in an MTA
(bug 462314), exacerbating the impact of this dependency.

Please downgrade this dependency to a suggestion.

- Josh Triplett

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

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



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



Bug#462322: debbugs: pkgreport.cgi generates broken HTML

2008-01-23 Thread Josh Triplett
Package: debbugs

debbugs on bugs.debian.org generates broken HTML from pkgreport.cgi.
I observed three problems in the generated output.  I'll use
http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=debbugs;dist=unstable
as an example.

First, in the summary at the beginning, listing the number of bugs
outstanding, pending, resolved, and so on, opens tags in a different
order than it closes them:

ul
div class=msgreceived
lia href=#_0_4_4Outstanding bugs -- Normal bugs; Unclassified/a (5 
bugs)/li
lia href=#_0_5_2Outstanding bugs -- Minor bugs; Patch Available/a (2 
bugs)/li
[...]
/ul/div

div cannot appear directly inside ul, so the opening div tag should
move before the opening ul tag.

Second, in the summary at the end, tags appear properly nested, but
the div again appears inside the ul; the div needs to move outside the
ul.

Third, an unmatched /td/tr appears in the options form at the
end of the page, right before the Merged bugs should be line.

- Josh Triplett

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

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



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



Bug#462020: getmail4: [PATCH] Add option to ignore deleted messages when fetching from IMAP

2008-01-23 Thread Josh Triplett
The attached patch adds an ignore_deleted option to all IMAP fetchers.
When set, the IMAP fetchers will ignore all messages with the deleted
flag set.

(Also, to revise my earlier problem description, I don't think my
ISP's mail server ignores expunges.  It looks like, whenever I fetch a
moderate number of messages with getmail, some of them stick around,
deleted.  I don't know the cause of the problem, and I don't want to
speculate further.)

- Josh Triplett

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

Kernel: Linux 2.6.23-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -Naur getmail4-4.7.7.orig/getmailcore/_retrieverbases.py getmail4-4.7.7/getmailcore/_retrieverbases.py
--- getmail4-4.7.7.orig/getmailcore/_retrieverbases.py	2007-08-08 07:17:15.0 -0700
+++ getmail4-4.7.7/getmailcore/_retrieverbases.py	2008-01-23 15:43:29.0 -0800
@@ -646,19 +646,22 @@
 try:
 parts = line[line.index('(') + 1:line.rindex(')')].split()
 while parts:
-# Flags starts a parenthetical list of valueless flags
-if parts[0].lower() == 'flags' and parts[1].startswith('('):
-while parts and not parts[0].endswith(')'):
-del parts[0]
-if parts:
-# Last one, ends with )
-del parts[0]
-continue
-if len(parts) == 1:
-# Leftover part -- not name, value pair.
-raise ValueError
 name = parts.pop(0).lower()
-r[name] = parts.pop(0)
+# Flags starts a parenthetical list of valueless flags
+if name == 'flags':
+if not parts[0].startswith('('):
+raise ValueError
+if parts[0] == '()':
+r[name] = []
+parts.pop(0)
+continue
+flaglist = [parts.pop(0)[1:].lower()]
+while not parts[0].endswith(')'):
+flaglist.append(parts.pop(0).lower())
+flaglist.append(parts.pop(0)[:-1].lower())
+r[name] = flaglist
+else:
+r[name] = parts.pop(0)
 except (ValueError, IndexError), o:
 raise getmailOperationError('IMAP error (failed to parse'
 ' UID response line %s)' % line)
@@ -696,11 +699,14 @@
 # Get number of messages in mailbox
 msgcount = self._selectmailbox(mailbox)
 if msgcount:
-# Get UIDs and sizes for all messages in mailbox
+# Get UIDs, sizes, and flags for all messages in mailbox
 response = self._parse_imapcmdresponse('FETCH',
-'1:%d' % msgcount, '(UID RFC822.SIZE)')
+'1:%d' % msgcount, '(UID RFC822.SIZE FLAGS)')
 for line in response:
 r = self._parse_imapattrresponse(line)
+if (self.conf['ignore_deleted']
+and '\\deleted' in r['flags']):
+continue
 msgid = ('%s/%s/%s'
 % (self.uidvalidity, mailbox, r['uid']))
 self._mboxuids[msgid] = (mailbox, r['uid'])
diff -Naur getmail4-4.7.7.orig/getmailcore/retrievers.py getmail4-4.7.7/getmailcore/retrievers.py
--- getmail4-4.7.7.orig/getmailcore/retrievers.py	2006-06-21 08:46:05.0 -0700
+++ getmail4-4.7.7/getmailcore/retrievers.py	2008-01-23 15:42:49.0 -0800
@@ -359,6 +359,7 @@
 # imaplib.IMAP4.login_cram_md5() requires the (unimplemented)
 # .authenticate(), so we can't do this yet (?).
 ConfBool(name='use_cram_md5', required=False, default=False),
+ConfBool(name='ignore_deleted', required=False, default=False),
 )
 received_from = None
 received_with = 'IMAP4'
@@ -398,6 +399,7 @@
 # imaplib.IMAP4.login_cram_md5() requires the (unimplemented)
 # .authenticate(), so we can't do this yet (?).
 ConfBool(name='use_cram_md5', required=False, default=False),
+ConfBool(name='ignore_deleted', required=False, default=False),
 )
 received_from = None
 received_with = 'IMAP4-SSL'
@@ -435,6 +437,7 @@
 # .authenticate(), so we can't do this yet (?).
 ConfBool(name='use_cram_md5', required=False, default=False),
 ConfString(name='envelope_recipient'),
+ConfBool(name='ignore_deleted', required=False, default=False),
 )
 received_from = None
 received_with = 'IMAP4'
@@ -475,6 +478,7 @@
 # .authenticate(), so we

Bug#463036: git-core: Handle files in working copy atomically

2008-01-28 Thread Josh Triplett
Package: git-core
Version: 1:1.5.3.8-1
Severity: wishlist

Currently, Git manipulates the working copy in non-atomic ways.  For
instance, when checking out a different branch, Git will unlink files
in the working copy, and later use open and mmap to write them out.
I'd like some way to have Git handle files in the working copy
atomically, such as by writing them out to a temporary file and
atomically renaming them.  In particular, this would make it much
safer to use Git for things like /etc or $HOME.

- Josh Triplett

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

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

Versions of packages git-core depends on:
ii  cpio   2.9-9 GNU cpio -- a program to manage ar
ii  libc6  2.7-6 GNU C Library: Shared libraries
ii  libcurl3-gnutls7.17.1-1+b1   Multi-protocol file transfer libra
ii  libdigest-sha1-perl2.11-2NIST SHA-1 message digest algorith
ii  liberror-perl  0.17-1Perl module for error/exception ha
ii  libexpat1  1.95.8-4  XML parsing C library - runtime li
ii  perl-modules   5.8.8-12  Core Perl modules
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

Versions of packages git-core recommends:
ii  curl 7.17.1-1+b1 Get a file from an HTTP, HTTPS or 
ii  less 418-1   Pager program similar to more
ii  openssh-client [ssh-client]  1:4.7p1-2   secure shell client, an rlogin/rsh
ii  patch2.5.9-4 Apply a diff file to an original
ii  rsync2.6.9-6 fast remote file copy program (lik

-- no debconf information



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



Bug#462020: getmail4: [PATCHv2] Add option to ignore deleted messages when fetching from IMAP

2008-01-28 Thread Josh Triplett
Package: getmail4
Followup-For: Bug #462020

Revised patch, which fixes the flag parsing to cover a corner case I
missed in the previous version.

- Josh Triplett

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

Kernel: Linux 2.6.23-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -Naur getmail4-4.7.7.orig/getmailcore/_retrieverbases.py getmail4-4.7.7/getmailcore/_retrieverbases.py
--- getmail4-4.7.7.orig/getmailcore/_retrieverbases.py	2007-08-08 07:17:15.0 -0700
+++ getmail4-4.7.7/getmailcore/_retrieverbases.py	2008-01-25 12:56:35.0 -0800
@@ -646,19 +646,25 @@
 try:
 parts = line[line.index('(') + 1:line.rindex(')')].split()
 while parts:
-# Flags starts a parenthetical list of valueless flags
-if parts[0].lower() == 'flags' and parts[1].startswith('('):
-while parts and not parts[0].endswith(')'):
-del parts[0]
-if parts:
-# Last one, ends with )
-del parts[0]
-continue
-if len(parts) == 1:
-# Leftover part -- not name, value pair.
-raise ValueError
 name = parts.pop(0).lower()
-r[name] = parts.pop(0)
+# Flags starts a parenthetical list of valueless flags
+if name == 'flags':
+if not parts[0].startswith('('):
+raise ValueError
+if parts[0].endswith(')'):
+flag = parts.pop(0)[1:-1]
+if flag == '':
+r[name] = []
+else:
+r[name] = [flag]
+continue
+flaglist = [parts.pop(0)[1:].lower()]
+while not parts[0].endswith(')'):
+flaglist.append(parts.pop(0).lower())
+flaglist.append(parts.pop(0)[:-1].lower())
+r[name] = flaglist
+else:
+r[name] = parts.pop(0)
 except (ValueError, IndexError), o:
 raise getmailOperationError('IMAP error (failed to parse'
 ' UID response line %s)' % line)
@@ -696,11 +702,14 @@
 # Get number of messages in mailbox
 msgcount = self._selectmailbox(mailbox)
 if msgcount:
-# Get UIDs and sizes for all messages in mailbox
+# Get UIDs, sizes, and flags for all messages in mailbox
 response = self._parse_imapcmdresponse('FETCH',
-'1:%d' % msgcount, '(UID RFC822.SIZE)')
+'1:%d' % msgcount, '(UID RFC822.SIZE FLAGS)')
 for line in response:
 r = self._parse_imapattrresponse(line)
+if (self.conf['ignore_deleted']
+and '\\deleted' in r['flags']):
+continue
 msgid = ('%s/%s/%s'
 % (self.uidvalidity, mailbox, r['uid']))
 self._mboxuids[msgid] = (mailbox, r['uid'])
diff -Naur getmail4-4.7.7.orig/getmailcore/retrievers.py getmail4-4.7.7/getmailcore/retrievers.py
--- getmail4-4.7.7.orig/getmailcore/retrievers.py	2006-06-21 08:46:05.0 -0700
+++ getmail4-4.7.7/getmailcore/retrievers.py	2008-01-25 12:53:51.0 -0800
@@ -359,6 +359,7 @@
 # imaplib.IMAP4.login_cram_md5() requires the (unimplemented)
 # .authenticate(), so we can't do this yet (?).
 ConfBool(name='use_cram_md5', required=False, default=False),
+ConfBool(name='ignore_deleted', required=False, default=False),
 )
 received_from = None
 received_with = 'IMAP4'
@@ -398,6 +399,7 @@
 # imaplib.IMAP4.login_cram_md5() requires the (unimplemented)
 # .authenticate(), so we can't do this yet (?).
 ConfBool(name='use_cram_md5', required=False, default=False),
+ConfBool(name='ignore_deleted', required=False, default=False),
 )
 received_from = None
 received_with = 'IMAP4-SSL'
@@ -435,6 +437,7 @@
 # .authenticate(), so we can't do this yet (?).
 ConfBool(name='use_cram_md5', required=False, default=False),
 ConfString(name='envelope_recipient'),
+ConfBool(name='ignore_deleted', required=False, default=False),
 )
 received_from = None
 received_with = 'IMAP4'
@@ -475,6 +478,7 @@
 # .authenticate(), so we can't do this yet (?).
 ConfBool(name='use_cram_md5', required=False, default=False),
 ConfString(name='envelope_recipient'),
+ConfBool

Bug#462970: ikiwiki: embed not a good fit

2008-01-28 Thread Josh Triplett
Package: ikiwiki
Followup-For: Bug #462970

The embed plugin does not seem like a good place to support AdSense.
Someone may well want to embed Google Maps, for instance, without
wanting to allow random people to put *their own* AdSense ads on a
random pages.  Furthermore, this would require adding AdSense code to
individual wiki pages.  It would also allow anyone with edit access or
commit access to remove the AdSense code from a page.

I think it makes much more sense to add ad code to the page templates
on the server.  If you want some pages to have ads and others not, you
could use the pagetemplate plugin.

- Josh Triplett

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

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

Versions of packages ikiwiki depends on:
ii  libhtml-parser-perl3.56-1A collection of modules that parse
ii  libhtml-template-perl  2.9-1 HTML::Template : A module for usin
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  markdown   1.0.2~b8-2Text-to-HTML conversion tool
ii  perl   5.8.8-12  Larry Wall's Practical Extraction 

Versions of packages ikiwiki recommends:
ii  gcc [c-compiler]4:4.2.2-2The GNU C compiler
ii  gcc-4.2 [c-compiler 4.2.2-7  The GNU C compiler
ii  gcc-4.3 [c-compiler 4.3-20080127-1   The GNU C compiler
ii  git-core1:1.5.3.8-1  fast, scalable, distributed revisi
ii  libc6-dev [libc-dev 2.7-6GNU C Library: Development Librari
ii  libcgi-formbuilder- 3.05.01-1Easily generate and process statef
ii  libcgi-session-perl 4.20-2   Persistent session data in CGI app
ii  libhtml-scrubber-pe 0.08-4   Perl extension for scrubbing/sanit
pn  liblwpx-paranoidage none   (no description available)
ii  libmail-sendmail-pe 0.79-4   Send email from a perl script
pn  libnet-openid-consu none   (no description available)
ii  libtime-duration-pe 1.02-1   Time::Duration -- rounded or exact
ii  libtimedate-perl1.1600-9 Time and date functions for Perl
ii  libxml-simple-perl  2.18-1   Perl module for reading and writin
ii  mercurial   0.9.5-3  Scalable distributed version contr
ii  subversion  1.4.4dfsg1-1 Advanced version control system
ii  tcc [c-compiler]0.9.24~cvs20070502-2 the smallest ANSI C compiler

-- no debconf information



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



Bug#450757: bomberclone: AI too predictable and easy to trick

2007-11-09 Thread Josh Triplett
Package: bomberclone
Version: 0.11.7-1
Severity: wishlist

The AI works in a fairly predictable fashion, and proves quite easy to
trick into losing.  For instance, it will place a bomb, and wait just
to the side of the blast radius; it will then not move even if you
walk up to it.  It also always moves away from a bomb you place right
away, without thinking about the time until your bomb goes off.
Putting the two together, you can place a bomb right behind it just
before its own bomb goes off.  A smarter AI would 1) not let you get
that close without moving around, and 2) know that it could wait for
its own bomb to go off before running from yours (unless you have some
way to trigger it sooner).

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 bomberclone depends on:
ii  bomberclone-data  0.11.7-1   Data files for bomberclone game
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libsdl-image1.2   1.2.6-1image loading library for Simple D
ii  libsdl-mixer1.2   1.2.8-1mixer library for Simple DirectMed
ii  libsdl1.2debian   1.2.12-1   Simple DirectMedia Layer

bomberclone recommends no packages.

-- no debconf information



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



Bug#450760: hex-a-hop: Does not remember fullscreen option

2007-11-09 Thread Josh Triplett
Package: hex-a-hop
Version: 0.0.20070315-6
Severity: normal

After choosing fullscreen from the options menu, hex-a-hop goes
fullscreen, but the next time I start hex-a-hop, it uses a window
again.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 hex-a-hop depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libgcc1   1:4.2.2-3  GCC support library
ii  libsdl-pango1 0.1.2-3text rendering with Pango in SDL a
ii  libsdl1.2debian   1.2.12-1   Simple DirectMedia Layer
ii  libstdc++64.2.2-3The GNU Standard C++ Library v3

hex-a-hop recommends no packages.

-- no debconf information



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



Bug#400302: iceweasel: Confirmed; no longer reproducible with 2.0.0.8-1

2007-11-11 Thread Josh Triplett
Package: iceweasel
Followup-For: Bug #400302

Confirmed; I can no longer reproduce this with 2.0.0.8-1.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 iceweasel depends on:
ii  debianutils 2.27 Miscellaneous utilities specific t
ii  fontconfig  2.4.91-1 generic font configuration library
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.6.1-6  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1+b2  The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.91-1 generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libglib2.0-02.14.2-1 The GLib library of C routines
ii  libgtk2.0-0 2.12.1-1 The GTK+ graphical user interface 
ii  libhunspell-1.1-0   1.1.9-1  spell checker and morphological an
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libnspr4-0d 4.6.7-1  NetScape Portable Runtime Library
ii  libnss3-0d  3.11.7-1 Network Security Service libraries
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libstdc++6  4.2.2-3  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxp6  1:1.0.0.xsf1-1   X Printing Extension (Xprint) clie
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  procps  1:3.2.7-5/proc file system utilities
ii  psmisc  22.5-1   Utilities that use the proc filesy
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

iceweasel recommends no packages.

-- no debconf information



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



Bug#450908: emacs22: Please add auto-mode-alist entry for sieve-mode

2007-11-11 Thread Josh Triplett
Package: emacs22
Version: 22.1+1-2.1
Severity: wishlist

Please consider adding an auto-mode-alist entry for sieve-mode, for
the extensions .siv and .sieve .  The following should work:

(setq auto-mode-alist (cons '(\\.siv\\' . sieve-mode) auto-mode-alist))
(setq auto-mode-alist (cons '(\\.sieve\\' . sieve-mode) auto-mode-alist))

- Josh Triplett

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 CPU cores)
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#450914: evolution: Option to always show images in a given folder, or if a mail has a given header

2007-11-11 Thread Josh Triplett
Package: evolution
Version: 2.12.0-2
Severity: wishlist

The option to always show remote images from contacts doesn't quite do
what I need.  I use rss2email, which can use the address from the feed
as the From address; I don't want to have to add every new From
address as a contact, nor do I want to force the From address to
always use the same address.  Instead, I'd like some way to always
show images for mails in a given folder, or alternatively to always
show images for mails with a given header.  This would allow me to
show images in all rss2email mails.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 evolution depends on:
ii  dbus1.1.1-3  simple interprocess messaging syst
ii  evolution-common2.12.0-2 architecture independent files for
ii  evolution-data-server   1.12.1-1 evolution database backend server
ii  gconf2  2.20.1-1 GNOME configuration database syste
ii  gnome-icon-theme2.20.0-1 GNOME Desktop icon theme
ii  gtkhtml3.14 3.16.1-1 HTML rendering/editing library - b
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.1-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.20.0-1 The Bonobo UI library
ii  libc6   2.6.1-6  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1+b2  The Cairo 2D vector graphics libra
ii  libcamel1.2-10  1.12.1-1 The Evolution MIME message handlin
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libebook1.2-9   1.12.1-1 Client library for evolution addre
ii  libecal1.2-71.12.1-1 Client library for evolution calen
ii  libedataserver1.2-9 1.12.1-1 Utility library for evolution data
ii  libedataserverui1.2-8   1.12.1-1 GUI utility library for evolution 
ii  libegroupwise1.2-13 1.12.1-1 Client library for accessing group
ii  libexchange-storage1.2- 1.12.1-1 Backend library for evolution cale
ii  libfontconfig1  2.4.91-1 generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.20.1-1 GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.2-1 The GLib library of C routines
ii  libgnome-pilot2 2.0.15-2 Support libraries for gnome-pilot
ii  libgnome2-0 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.20.1.1-1   A powerful object-oriented display
ii  libgnomeui-02.20.1.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.20.0-3   GNOME Virtual File System (runtime
ii  libgnutls13 2.0.1-1  the GNU TLS library - runtime libr
ii  libgtk2.0-0 2.12.1-1 The GTK+ graphical user interface 
ii  libgtkhtml3.14-19   3.16.1-1 HTML rendering/editing library - r
ii  libhal1 0.5.10-2 Hardware Abstraction Layer - share
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libldap22.1.30.dfsg-13.5 OpenLDAP libraries
ii  libnm-glib0 0.6.5-3  network management framework (GLib
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to a n
ii  libnspr4-0d 4.6.7-1  NetScape Portable Runtime Library
ii  libnss3-0d  3.11.7-1 Network Security Service libraries
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libpisock9  0.12.2-10library for communicating with a P
ii  libpisync0  0.12.2-10synchronization library for PalmOS
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsoup2.2-82.2.103-1an HTTP library implementation in 
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

Bug#446160: Patch to add direct MDA support to rss2email

2007-11-11 Thread Josh Triplett
tags 446160 + patch
thanks

The attached patch adds support for directly invoking an MDA.  It adds
a new configuration option MDA to config.py, which defaults to None.
If set to a list of strings, rss2email will invoke that program with
arguments as a mail delivery agent, and feed it the email.  For
instance, I use:

MDA = [/usr/lib/dovecot/deliver, -e]

Note that I renamed the global function list() to list_feeds(), to
avoid conflicting with the Python builtin list() constructor.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 rss2email depends on:
ii  python2.4.4-6An interactive high-level object-o
ii  python-feedparser 4.1-9  Universal Feed Parser for Python
ii  python-support0.7.5  automated rebuilding support for p

rss2email recommends no packages.

-- no debconf information
diff -Naur rss2email-2.60.orig/config.py rss2email-2.60/config.py
--- rss2email-2.60.orig/config.py   2007-11-11 22:18:35.0 -0800
+++ rss2email-2.60/config.py2007-11-11 22:33:51.0 -0800
@@ -47,6 +47,10 @@
 SMTP_USER = ' username'  # for SMTP AUTH, set SMTP username here
 SMTP_PASS = 'password'  # for SMTP AUTH, set SMTP password here
 
+# Set this to a list of strings to deliver mail with the specified MDA
+# (with arguments).
+MDA = None
+
 # Set this to add a bonus header to all emails (start with '\n').
 BONUS_HEADER = ''
 # Example: BONUS_HEADER = '\nApproved: [EMAIL PROTECTED]'
diff -Naur rss2email-2.60.orig/rss2email.py rss2email-2.60/rss2email.py
--- rss2email-2.60.orig/rss2email.py2007-11-11 22:18:35.0 -0800
+++ rss2email-2.60/rss2email.py 2007-11-11 23:39:56.0 -0800
@@ -16,7 +16,8 @@
 ___contributors__ = [Dean Jackson, Brian Lalor, Joey Hess, 
  Matej Cepl, Martin 'Joey' Schulze, 
  Marcel Ackermann (http://www.DreamFlasher.de), 
- Lindsey Smith ([EMAIL PROTECTED]) ]
+ Lindsey Smith ([EMAIL PROTECTED]),
+ Josh Triplett ([EMAIL PROTECTED])]
 
 ### Vaguely Customizable Options ###
 
@@ -67,6 +68,10 @@
 SMTP_USER = 'username'  # for SMTP AUTH, set SMTP username here
 SMTP_PASS = 'password'  # for SMTP AUTH, set SMTP password here
 
+# Set this to a list of strings to deliver mail with the specified MDA
+# (with arguments).
+MDA = None
+
 # Set this to add a bonus header to all emails (start with '\n').
 BONUS_HEADER = ''
 # Example: BONUS_HEADER = '\nApproved: [EMAIL PROTECTED]'
@@ -147,6 +152,10 @@
mimify.mimify(ins, outs)
msg_as_string = outs.getvalue()

+   if SMTP_SEND and MDA is not None:
+   print warn, 
+   print warn, ('Fatal error: configuration specifies both 
SMTP_SERVER and MDA.')
+
if SMTP_SEND:
if not smtpserver: 
import smtplib
@@ -179,13 +188,17 @@
return smtpserver
 
else:
-   i, o = os.popen2([/usr/sbin/sendmail, recipient])
+   if MDA is not None:
+   mail_process = list(MDA)
+   else:
+   mail_process = [/usr/sbin/sendmail, recipient]
+   i, o = os.popen2(mail_process)
i.write(msg_as_string)
i.close(); o.close()
pid, status = os.wait()
if status != 0:
print warn, 
-   print warn, ('Fatal error: sendmail exited with code 
%s' % status)
+   print warn, ('Fatal error: mail process (%s) exited 
with code %s' % (str(mail_process), status))
sys.exit(1)
del i, o
return None
@@ -663,7 +676,7 @@
if smtpserver:
smtpserver.quit()
 
-def list():
+def list_feeds():
feeds, feedfileObject = load(lock=0)
default_to = 

@@ -723,7 +736,7 @@
else: d = []
pickle.dump(d, open(feedfile, 'w'))
 
-   elif action == list: list()
+   elif action == list: list_feeds()
 
elif action in (help, --help, -h): print __doc__
 


Bug#450919: rss2email: Option to get mails for updated items while still trusting GUIDs

2007-11-12 Thread Josh Triplett
Package: rss2email
Version: 1:2.60-6
Severity: wishlist

config.py has this description for the TRUST_GUID option:
# 1: Receive one email per post
# 0: Receive an email every time a post changes

Neither of these does quite what I want.  I want to receive a new
email every time a post changes, but I want to trust GUIDs when
available, rather than hashing the post content.  I'd simply like
rss2email to check a combination of the post GUID and the updated date.

If either the GUID or the updated date does not exist, rss2email
should fall back on hashing post content.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 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 rss2email depends on:
ii  python2.4.4-6An interactive high-level object-o
ii  python-feedparser 4.1-9  Universal Feed Parser for Python
ii  python-support0.7.5  automated rebuilding support for p

rss2email recommends no packages.

-- no debconf information



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



Bug#450925: bugs.debian.org: debian-bugs-dist processes commands from bug subjects

2007-11-12 Thread Josh Triplett
Package: bugs.debian.org
Severity: normal

I mailed a bug and had confirmed at the start of the email subject,
and this provoked a response from [EMAIL PROTECTED]:
 Your confirmation request was unsuccessful.  Please double-check the
 following and try again:
[...]

I suspect the same thing might happen with other list commands.

Bug #38117 may relate to this.

- Josh Triplett

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/4 CPU cores)
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#438904: xserver-xorg: Cursor at top of stacked monitor configuration shows up on both monitors

2007-11-12 Thread Josh Triplett
Brice Goglin wrote:
 On Tue, Sep 18, 2007 at 08:06:58AM +0200, Brice Goglin wrote:
 Michel Dänzer wrote:
 It probably does, this sounds like a bug in the radeon MergedFB code
 choosing which CRTC(s) to show the cursor on.
 There's xserver-xorg-video-ati 6.7.192 in experimental with RandR-1.2
 support. Since RandR-1.2 does more and better than MergedFB, MergedFB
 support has been dropped from this latest driver. Your problem might go
 away then. Could you test it? You will have to upgrade to Xorg
 7.3/Xserver 1.4 which were uploaded to unstable 2 days ago.
 
 No reply within almost two months. I am closing this bug now.
 It seems to be related to MergedFB which has been dropped and
 replaced by RandR 1.2 in the new 6.7.19x drivers (currently in
 experimental).
 If you can still reproduce with 1:6.7.195-2, feel free to reopen.

Sorry, I forgot to write back and confirm this.  The bug no longer
seems to occur with RandR 1.2.

- Josh Triplett




signature.asc
Description: OpenPGP digital signature


Bug#450965: dodgindiamond2: Joystick support

2007-11-12 Thread Josh Triplett
Package: dodgindiamond2
Version: 0.2.1-2
Severity: wishlist

Great game.  I'd love to play it with a gamepad.  Would you consider
adding joystick support?

Thanks,
Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 dodgindiamond2 depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libsdl-mixer1.2   1.2.8-1mixer library for Simple DirectMed
ii  libsdl1.2debian   1.2.12-1   Simple DirectMedia Layer

dodgindiamond2 recommends no packages.

-- no debconf information



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



Bug#450967: dodgindiamond2: Configurable keyboard controls

2007-11-12 Thread Josh Triplett
Package: dodgindiamond2
Version: 0.2.1-2
Severity: wishlist

Currently, dodgindiamond2 has fixed keyboard controls for each player.
I'd like to remap the keyboard controls to different keys.

- Josh Triplett

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

Kernel: Linux 2.6.22-rc1 (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 dodgindiamond2 depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libsdl-mixer1.2   1.2.8-1mixer library for Simple DirectMed
ii  libsdl1.2debian   1.2.12-1   Simple DirectMedia Layer

dodgindiamond2 recommends no packages.

-- no debconf information



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



<    1   2   3   4   5   6   7   8   9   10   >