Bug#946617: dwww: runman prints empty content

2019-12-11 Thread Chad Wallace
Package: dwww
Version: 1.13.4+nmu3
Severity: important

Dear Maintainer,

After upgrading to buster, I failed to get any man pages showing in my
dwww output.  The  tag is completely empty.

After editing dwww-convert for debugging, I found an error from man:
man: nroff: Bad system call

Then, I found an example of that on another bug report, which led me to
add a line to dwww-convert:

...begin patch
--- dwww-convert.orig   2019-12-11 14:51:25.131093890 -0800
+++ dwww-convert2019-12-11 15:14:02.625790098 -0800
@@ -246,6 +246,7 @@
 $dir =~ s/\/[^\/]*$//;
 chdir ("$dir/..") or die "Can't chdir!\n";
 $ENV{'MAN_KEEP_FORMATTING'} = 1;
+$ENV{'MAN_DISABLE_SECCOMP'} = 1;
 my $IN_FH = ("man  -EUTF-8 -P/bin/cat  -l \"$filename\" 
2>/dev/null | dwww-txt2html --man --utf8", "r");
 chdir ("/");
 while (<$IN_FH>) {
...end patch

That got it working... but I don't really know why. :-)
Hopefully this will lead you to the proper fix!

Thanks!
Chad.


-- System Information:
Debian Release: 10.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.19.0-6-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_CA.utf8, LC_CTYPE=en_CA.utf8 (charmap=UTF-8), 
LANGUAGE=en_CA.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages dwww depends on:
ii  apache2 [httpd-cgi]2.4.38-3+deb10u3
ii  debconf [debconf-2.0]  1.5.71
ii  debianutils4.8.6.1
ii  doc-base   0.10.8
ii  file   1:5.35-4+deb10u1
ii  libc6  2.28-10
ii  libfile-ncopy-perl 0.36-2
ii  libmime-types-perl 2.17-1
ii  man-db 2.8.5-2
ii  mime-support   3.62
ii  perl   5.28.1-6
ii  ucf3.0038+nmu1

Versions of packages dwww recommends:
ii  apache2 [httpd]  2.4.38-3+deb10u3
ii  apt  1.8.2
ii  dlocate  1.07+nmu1
ii  info2www 1.2.2.9-24
ii  swish++  6.1.5-5

Versions of packages dwww suggests:
ii  chromium [www-browser]  78.0.3904.108-1~deb10u1
ii  doc-debian  6.4
pn  dpkg-www
ii  elinks [www-browser]0.13~20190125-3
ii  epiphany-browser [www-browser]  3.32.1.2-3~deb10u1
ii  firefox-esr [www-browser]   68.3.0esr-1~deb10u1
ii  w3m [www-browser]   0.5.3-37

-- Configuration Files:
/etc/apache2/conf-available/dwww.conf changed [not included]

-- debconf information:
* dwww/cgidir: /usr/lib/cgi-bin
* dwww/serverport: 80
  dwww/badport:
* dwww/docrootdir: /var/www
  dwww/nosuchuser:
* dwww/cgiuser: www-data
  dwww/index_docs: false
  dwww/nosuchdir:
* dwww/servername: ws78.int.tlc



Bug#802212: Patch

2015-12-27 Thread Chad Wallace

Here's another version of that patch...  with a free(dotdir) after
we're done with it.


-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.lodgingcompany.com/
OpenPGP Public Key ID: 0x262208A0

Description: avoid NO_MODULE_DATA error
Author: Chad Wallace <cwall...@lodgingcompany.com>
Last-Update: 2015-12-27

--- a/pam_ssh.c	2015-12-27 12:08:42.851136447 -0800
+++ b/pam_ssh.c	2015-12-27 12:12:47.619240920 -0800
@@ -1089,6 +1089,7 @@
 	const struct passwd *pwent;	/* user's passwd entry */
 	struct stat sb;			/* to check st_nlink */
 	const char *user;   /* username */
+	char *dotdir;		/* .ssh dir name */
 
 	pam_ssh_log(LOG_DEBUG, "close session");
 
@@ -1108,6 +1109,21 @@
 		return retval;
 	}
 
+	/* handle the per-user configuration directory and check its existence */
+
+	if (asprintf(, "%s/%s", pwent->pw_dir, SSH_DIR) == -1) {
+		pam_ssh_log(LOG_CRIT, "out of memory");
+		openpam_restore_cred(pamh);
+		return PAM_SERVICE_ERR;
+	}
+	if ((access(dotdir,F_OK)) == -1) {
+		pam_ssh_log(LOG_DEBUG, "inexistent configuration directory");
+		free(dotdir);
+		openpam_restore_cred(pamh);
+		return PAM_SUCCESS;
+	}
+	free(dotdir);
+
 	if (pam_get_data(pamh, "ssh_agent_env_session",
 	(const void **)(void *)_file) == PAM_SUCCESS && env_file)
 		unlink(env_file);


Bug#802212: Patch

2015-12-27 Thread Chad Wallace
Hello,

I've created a patch that seems to fix this for me.  All I did was copy
the code that checks for ".ssh" from pam_sm_open_session() into
pam_sm_close_session() so it can just not do anything, and return 
PAM_SUCCESS.

I don't know if that's the right solution, but it seems appropriate to
me.  I've only tested that it works for me:  it avoids printing "su: No
module specific data is present" when I run /etc/cron.daily/dwww 
and logging in remotely using my SSH key still works.

Thanks!

-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.lodgingcompany.com/
OpenPGP Public Key ID: 0x262208A0

Description: avoid NO_MODULE_DATA error
Author: Chad Wallace <cwall...@lodgingcompany.com>
Last-Update: 2015-12-27

--- a/pam_ssh.c	2015-12-27 10:54:47.985792204 -0800
+++ b/pam_ssh.c	2015-12-27 10:54:08.231097492 -0800
@@ -1089,6 +1089,7 @@
 	const struct passwd *pwent;	/* user's passwd entry */
 	struct stat sb;			/* to check st_nlink */
 	const char *user;   /* username */
+	char *dotdir;		/* .ssh dir name */
 
 	pam_ssh_log(LOG_DEBUG, "close session");
 
@@ -1108,6 +1109,20 @@
 		return retval;
 	}
 
+	/* handle the per-user configuration directory and check its existence */
+
+	if (asprintf(, "%s/%s", pwent->pw_dir, SSH_DIR) == -1) {
+		pam_ssh_log(LOG_CRIT, "out of memory");
+		openpam_restore_cred(pamh);
+		return PAM_SERVICE_ERR;
+	}
+	if ((access(dotdir,F_OK)) == -1) {
+		pam_ssh_log(LOG_DEBUG, "inexistent configuration directory");
+		free(dotdir);
+		openpam_restore_cred(pamh);
+		return PAM_SUCCESS;
+	}
+
 	if (pam_get_data(pamh, "ssh_agent_env_session",
 	(const void **)(void *)_file) == PAM_SUCCESS && env_file)
 		unlink(env_file);


Bug#784695: gnumeric: Mouse cursor is garbled when showing Gnumeric-specific icon

2015-05-20 Thread Chad Wallace
On Tue, 12 May 2015 09:39:23 +1000
Dmitry Smirnov only...@debian.org wrote:

 It would be interesting to try disabling hardware cursor:
 
 Option HWCursor off
 
 See nouveau(4). Please let me know it it makes any difference.

Well, I guess I should let you know...  I can't even try that.  

I believe the only way to set that option is in the Device section in
xorg.conf.  Howerver, my system runs without an xorg.conf,
auto-detecting everything, and I haven't figured out how to set up the
Device sections.  Every time I try, gdm crashes hard and I have to
power-cycle or get a co-worker to reboot through SSH.

So I've decided to just get used to the odd cursor for now.  If I do
get around to trying that option, I'll keep you posted.

Thanks for your help!


-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.lodgingcompany.com/
OpenPGP Public Key ID: 0x262208A0



pgpyprHodBB11.pgp
Description: OpenPGP digital signature


Bug#784695: gnumeric: Mouse cursor is garbled when showing Gnumeric-specific icon

2015-05-11 Thread Chad Wallace
On Fri, 08 May 2015 15:43:57 +1000
Dmitry Smirnov only...@debian.org wrote:

 On Thu, 7 May 2015 13:25:54 Chad Wallace wrote:
  I'm not sure if this bug belongs to Gnumeric, or GTK, or Noveau or
  Xorg, but I'm sure you can reassign it if you know better.
 
 Thanks for your report. I see the problem on your screenshot but I've
 never experienced it and I am clueless regarding its origin. I
 suspect it might be display adapter problem... You are using GNOME
 and free Nvidia driver, right? Any chance you could try logging into
 another Desktop Environment to see if it makes any difference? Thank
 you.

In an XFCE session, it does the same thing as the GNOME session.
But if I choose a GNOME on Wayland session the cursor works perfectly
in Gnumeric...  but I have other issues... like characters disappearing
and reappearing... and my second GPU doesn't work.

Also, if I don't apply my custom XRandR settings script (attached) on
the regular GNOME session (to enable the second GPU and third monitor),
the cursor is just fine.


-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.lodgingcompany.com/
OpenPGP Public Key ID: 0x262208A0



xrandr-settings
Description: Binary data


pgphfzofYKcy9.pgp
Description: OpenPGP digital signature


Bug#784695: gnumeric: Mouse cursor is garbled when showing Gnumeric-specific icon

2015-05-07 Thread Chad Wallace
Package: gnumeric
Version: 1.12.18-2
Severity: normal

Dear Maintainer,

In Gnumeric, whenever I hover the mouse over the cells, and it renders
the chubby cross cursor, it is slightly garbled.  The cursor itself
renders OK, but there's a box around it (probably double the cursor's
width and height, and centered on the cursor) that has garbage, and
leaves traces of previous positions of the cursor.

It seems like the box under the cursor is a window into a different
region, where the artifacts from previous cursors all blend together and
persist in that region...  Not sure if I'm explaining it properly...
I'll try to attach a picture of it.

I had to take a picture with a cell phone, rather than a screenshot,
because the screenshots either didn't show the cursor, or they showed
the cursor properly without this problem.

The problem does not occur when Gnumeric is rendering a stock cursor
(like the skinny cross for fill-down on the selected cell, or the regular
arrow you get on the toolbars and menus).  The only one that's garbled
is the chubby cross that's specific to Gnumeric.

I tried to reproduce this problem in Chromium by trying every different
value of the cursor CSS style, but they all rendered properly, even some
that looked like they were Chromium-specific.  Gnumeric is the only
program I've seen this problem in.  If you know of any others that use
their own cursors, I can try them to see what happens.

I'm not sure if this bug belongs to Gnumeric, or GTK, or Noveau or Xorg,
but I'm sure you can reassign it if you know better.

Thanks!



-- System Information:
Debian Release: 8.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_CA.utf8, LC_CTYPE=en_CA.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

Versions of packages gnumeric depends on:
ii  debconf [debconf-2.0]  1.5.56
ii  gnumeric-common1.12.18-2
ii  gsfonts1:8.11+urwcyr1.0.7~pre44-4.2
ii  libatk1.0-02.14.0-1
ii  libc6  2.19-18
ii  libcairo2  1.14.0-2.1
ii  libgdk-pixbuf2.0-0 2.31.1-2+b1
ii  libglib2.0-0   2.42.1-1
ii  libgoffice-0.10-10 0.10.18-1
ii  libgsf-1-114   1.14.30-2
ii  libgtk-3-0 3.14.5-1
ii  libpango-1.0-0 1.36.8-3
ii  libpangocairo-1.0-01.36.8-3
ii  libxml22.9.1+dfsg1-5
ii  procps 2:3.3.9-9
ii  zlib1g 1:1.2.8.dfsg-2+b1

Versions of packages gnumeric recommends:
ii  evince3.14.1-2
ii  gnumeric-doc  1.12.18-2
ii  lp-solve  5.5.0.13-7+b1

Versions of packages gnumeric suggests:
ii  fonts-liberation   1.07.4-1
pn  gnumeric-plugins-extra none
ii  ttf-mscorefonts-installer  3.6

-- debconf information:
  gnumeric/existing-process: false
  gnumeric/existing-process-title:


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



Bug#483832: gnome-terminal window takes very long time to draw

2012-12-18 Thread Chad Wallace
Package: gnome-terminal
Version: 3.4.1.1-2
Followup-For: Bug #483832

Dear Maintainer,

In the wheezy version, using gnome-shell, the terminal takes about 5
seconds to a) add a tab and b) display a New Window, and is very laggy
when resizing--taking a second or so to redraw, more with larger windows.

I have a trasparent background, which on its own performs very well
(by which I mean, there is no lag when moving the window).  If I change
the background to solid in the gnome-terminal preferences, it makes the
new window and new tab quick, but the resizing is the same regardless of
the background setting.

Hope this helps...
Thanks!


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

Kernel: Linux 3.2.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_CA.utf8, LC_CTYPE=en_CA.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-terminal depends on:
ii  gconf-service  3.2.5-1+build1
ii  gnome-terminal-data3.4.1.1-2
ii  gsettings-desktop-schemas  3.4.2-3
ii  libatk1.0-02.4.0-2
ii  libc6  2.13-37
ii  libgconf-2-4   3.2.5-1+build1
ii  libgdk-pixbuf2.0-0 2.26.1-1
ii  libglib2.0-0   2.33.12+really2.32.4-3
ii  libgtk-3-0 3.4.2-4
ii  libice62:1.0.8-2
ii  libpango1.0-0  1.30.0-1
ii  libsm6 2:1.2.1-2
ii  libvte-2.90-9  1:0.32.2-1
ii  libx11-6   2:1.5.0-1

Versions of packages gnome-terminal recommends:
ii  dbus-x11  1.6.8-1
ii  gvfs  1.12.3-1+b1
ii  yelp  3.4.2-1+b1

gnome-terminal suggests no packages.

-- no debconf information


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



Bug#687491: Hit it twice

2012-11-23 Thread Chad Wallace

You have to hit the key twice if you want to assign Delete as the
accelerator.

The Delete key is used to clear the current key assignment, so the
first time you hit it, it clears the original key assignment, and then
the second time, it assigns the Delete key.

-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.lodgingcompany.com/
OpenPGP Public Key ID: 0x262208A0


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



Bug#688903: False positives in dwww cache

2012-09-26 Thread C. Chad Wallace
Package: dwww
Version: 1.11.3
Severity: normal


dwww often returns the wrong man page.  I suspect it may be caused by
long perl module names (e.g., Template::Manual::Directives).  I've
reproduced it with dwww-convert on the command line, and I'll upload
the typescript.

With DWWW_USE_CACHE=no it doesn't happen, so that's a good workaround.

I tried to inspect the cache, but it's not just flat files, and I know
nothing about how it works...

Let me know if you need anything else.

Thanks!
Chad.


-- System Information:
Debian Release: 6.0.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-0.bpo.1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_CA.utf8, LC_CTYPE=en_CA.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages dwww depends on:
ii  apache22.2.16-6+squeeze7 Apache HTTP Server metapackage
ii  apache2-mpm-prefork [h 2.2.16-6+squeeze7 Apache HTTP Server - traditional n
ii  debconf [debconf-2.0]  1.5.36.1  Debian configuration management sy
ii  debianutils3.4   Miscellaneous utilities specific t
ii  doc-base   0.9.5 utilities to manage online documen
ii  file   5.04-5+squeeze2   Determines file type using magic
ii  libc6  2.11.3-3  Embedded GNU C Library: Shared lib
ii  libfile-ncopy-perl 0.34-1file copying like cp for perl
ii  libmime-types-perl 1.30-1Perl extension for determining MIM
ii  man-db 2.5.7-8   on-line manual pager
ii  mime-support   3.48-1MIME files 'mime.types'  'mailcap
ii  perl   5.10.1-17squeeze3 Larry Wall's Practical Extraction 

Versions of packages dwww recommends:
ii  apt0.8.10.3+squeeze1 Advanced front-end for dpkg
ii  dlocate1.02  fast alternative to dpkg -L and dp
ii  info2www   1.2.2.9-24Read info files with a WWW browser
ii  swish++6.1.5-2   Simple Document Indexing System fo

Versions of packages dwww suggests:
ii  chromium-br 6.0.472.63~r59945-5+squeeze6 Chromium browser
ii  doc-debian  4.0.2Debian Project documentation and o
pn  dpkg-wwwnone   (no description available)
ii  elinks [www 0.12~pre5-2  advanced text-mode WWW browser
ii  epiphany-br 2.30.6-1 Intuitive GNOME web browser
ii  iceweasel [ 3.5.16-14Web browser based on Firefox
ii  konqueror [ 4:4.4.5-2advanced file manager, web browser
ii  w3m [www-br 0.5.2-9  WWW browsable pager with excellent

-- debconf information:
* dwww/cgiuser: www-data
  dwww/nosuchuser:
* dwww/cgidir: /usr/lib/cgi-bin
* dwww/docrootdir: /var/www
* dwww/serverport: 80
* dwww/servername: ws80.int.tlc
  dwww/index_docs: true
  dwww/badport:
  dwww/nosuchdir:


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



Bug#603020: Patch (tested)

2011-11-09 Thread Chad Wallace
I've tested the attached patch (it goes in debian/patches, and you have
to edit series to include it), and it works like a charm.  

The only thing I've noticed now is that the printer icon sticks around
after your printing is finished, until you open it and hit Refresh.
I'm not sure if that's normal... but either way it's much less
intrusive than the notification was.

I don't imagine this patch will make it into an update for squeeze, but
I've attached it in case anyone else finds it useful.
--- system-config-printer-1.2.3/jobviewer.py	2010-06-24 08:49:35.0 -0700
+++ /home/cwallace/jobviewer.py	2011-11-04 21:09:35.0 -0700
@@ -1574,7 +1574,8 @@
 debugprint (Already sent notification for %s % repr (reason))
 return
 
-if reason.get_reason () == com.apple.print.recoverable:
+if (reason.get_reason () == com.apple.print.recoverable or
+reason.get_reason () == connecting-to-device):
 return
 
 level = reason.get_level ()


Bug#603020: Similar bug reported in ubuntu

2011-11-04 Thread Chad Wallace

There are some useful comments on this launchpad report for ubuntu:

https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/842768

Their bug is assigned to gnome-settings-daemon instead, but the cause
is the same.

Basically, the message comes from the fact that cups is reporting
connecting-to-device.  It doesn't mean that the device is not
connected, which is what the notification conveys.  IMO, this message
should never be displayed because it shouldn't take long to connect to
the device (probably much less than a second).  Also, it will connect in
the same way every time, so even if it did take a while to connect, the
user would get used to that.

I've modified jobviewer.py to suppress this message, but I don't know
much about python so I'm not sure how to get the .py file into the .pyc
file so it'll take effect for testing.  I'll probably have to build a
local package to test it.



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



Bug#479264: claws-mail-multi-notifier must conflict with claws-mail that is later

2008-07-01 Thread C. Chad Wallace
Package: claws-mail-multi-notifier
Version: 3.4.0-1+b4
Followup-For: Bug #479264

The loading code for the Notifier plugin effectively conflicts
with any version of claws-mail that is different than the one it built
with.  This should be reflected in the debian package with an '='
dependency, not a = one.


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

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

Versions of packages claws-mail-multi-notifier depends on:
ii  claws-mail3.5.0-1Fast, lightweight and user-friendl
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-12 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-2simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.3-2   The GLib library of C routines
ii  libgtk2.0-0   2.12.10-2  The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk2.1 0.4.4-3sends desktop notifications to a n
ii  libpango1.0-0 1.20.3-2   Layout and rendering of internatio

Versions of packages claws-mail-multi-notifier recommends:
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#445489: Reminder about LSB conformance

2008-05-08 Thread C. Chad Wallace
I noticed that the init script for at is intended to be LSB-compliant
(as most or all Debian init scripts are), so I thought I should point
this out:

The LSB 3.1 spec states, in section 20.8 Init Script Functions:

Conforming scripts shall not specify the exit on error option (i.e.
set -e) when sourcing this file, or calling any of the commands thus
made available.

So the script should not use set -e.

-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.skihills.com/
OpenPGP Public Key ID: 0x262208A0

Debian Hint #5: If you need to build a custom kernel, use the
'make-kpkg' script found in the kernel-package package.



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



Bug#453707: Patch to remove set -e from init script

2008-05-08 Thread C. Chad Wallace
Here's a patch that removes -e on the shebang and set -e from the
init script, improving LSB compliance.

-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.skihills.com/
OpenPGP Public Key ID: 0x262208A0

Debian Hint #12: The grep-dctrl package provides a number of useful
scripts for quickly searching various package control files (such as
the available packages file).


at-remove-set-e
Description: Binary data


Bug#480238: No easy way to pass parameters to atd

2008-05-08 Thread C. Chad Wallace
Package: at
Version: 3.1.10.1.cw1
Severity: wishlist
Tags: patch

The daemon, atd, allows parameters to be passed to it (such as -l to
override the default loadavg limit of 1.5), but there is no easy way to
pass these parameters to the daemon on load.  I know, you can always
edit the start section of the init script... but I wouldn't call that
easy.

What I suggest (and include in a patch) is to provide support for
/etc/default/atd, where administrators can either provide options
directly (in the ARGS variable) or simply set the LOAD_LIMIT variable...

I don't know if having both methods available together is a good idea,
but we can always change the patch if not.

Any thoughts?


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

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

Versions of packages at depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libpam0g  0.99.7.1-6 Pluggable Authentication Modules l
ii  lsb-base  3.2-12 Linux Standard Base 3.2 init scrip
ii  nullmailer [mail-transport-ag 1:1.04-1   simple relay-only mail transport a

at recommends no packages.

-- no debconf information
diff -urN at-3.1.10.1/debian/conffiles at-3.1.10.1.cw1/debian/conffiles
--- at-3.1.10.1/debian/conffiles2005-08-04 20:28:25.0 -0700
+++ at-3.1.10.1.cw1/debian/conffiles2008-05-08 15:32:00.0 -0700
@@ -1,3 +1,4 @@
 /etc/at.deny
 /etc/init.d/atd
 /etc/pam.d/atd
+/etc/default/atd
diff -urN at-3.1.10.1/debian/default at-3.1.10.1.cw1/debian/default
--- at-3.1.10.1/debian/default  1969-12-31 16:00:00.0 -0800
+++ at-3.1.10.1.cw1/debian/default  2008-05-08 15:24:56.0 -0700
@@ -0,0 +1,6 @@
+# Arguments to pass to atd.
+ARGS=
+
+# Limiting load factor--the -l switch; see atd(3).
+LOAD_LIMIT=
+
diff -urN at-3.1.10.1/debian/rc at-3.1.10.1.cw1/debian/rc
--- at-3.1.10.1/debian/rc   2008-01-26 21:20:00.0 -0800
+++ at-3.1.10.1.cw1/debian/rc   2008-05-08 15:26:04.0 -0700
@@ -16,15 +16,24 @@
 
 PATH=/bin:/usr/bin:/sbin:/usr/sbin
 DAEMON=/usr/sbin/atd
+ARGS=
 
 test -x $DAEMON || exit 0
 
 . /lib/lsb/init-functions
 
+if [ -r /etc/default/atd ]; then
+   . /etc/default/atd
+fi
+
+if [ -n $LOAD_LIMIT ]; then
+   ARGS=$ARGS -l $LOAD_LIMIT
+fi
+
 case $1 in
 start)
log_daemon_msg Starting deferred execution scheduler atd
-   start_daemon $DAEMON
+   start_daemon -- $DAEMON $ARGS
log_end_msg $?
 ;;
   stop)
diff -urN at-3.1.10.1/debian/rules at-3.1.10.1.cw1/debian/rules
--- at-3.1.10.1/debian/rules2006-01-02 23:12:56.0 -0800
+++ at-3.1.10.1.cw1/debian/rules2008-05-08 16:23:26.0 -0700
@@ -80,9 +80,10 @@
gzip -9 debian/tmp/usr/share/man/man?/*
(cd debian/tmp/usr/share/man/man1  ln -s at.1.gz atq.1.gz  ln -s 
at.1.gz atrm.1.gz  ln -s at.1.gz batch.1.gz)
(cd debian/tmp/usr/share/man/man5  ln -s at.allow.5.gz at.deny.5.gz)
-   $(installbin) -d debian/tmp/etc/init.d debian/tmp/etc/pam.d
+   $(installbin) -d debian/tmp/etc/init.d debian/tmp/etc/pam.d 
debian/tmp/etc/default
$(installbin) debian/rc debian/tmp/etc/init.d/atd
$(installbin) debian/pam -m 644 debian/tmp/etc/pam.d/atd
+   $(installbin) debian/default debian/tmp/etc/default/atd
dpkg-shlibdeps debian/tmp/usr/sbin/atd debian/tmp/usr/bin/at
dpkg-gencontrol -isp
dpkg --build debian/tmp ..


Bug#478331: claws-mail: Reply with quote doesn't include quote

2008-05-05 Thread C. Chad Wallace
forwarded 478331 
http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=1587
thanks

I noticed this bug has been reported upstream, and is now fixed in CVS--a fresh 
install will include the default reply/forward/etc. templates.

-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.skihills.com/
OpenPGP Public Key ID: 0x262208A0

Debian Hint #27: Regularly verify your backups. You *are* keeping
backups, right? Right? (This hint brought to you by the letters 'D',
'U', 'M', and 'P', and the number 0.)



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



Bug#478331: claws-mail: Reply with quote doesn't include quote

2008-04-28 Thread C. Chad Wallace
Package: claws-mail
Version: 3.4.0-1
Severity: normal

When I reply to a message, either just clicking Reply (with the Reply
will quote by default preference checked) or by explicitly seleting
Reply with quote under the Reply button, there is no quote text.

At first I wondered if Claws was just being cheeky and inserting the
quote text after I've written my reply (which would be wrong IMO
anyway), but then when I inspect the email in my Sent folder, it doesn't
have any quoting, either.

Thanks!

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

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

Versions of packages claws-mail depends on:
ii  libaspell15 0.60.5-2.2   GNU Aspell spell-checker runtime l
ii  libc6   2.7-10   GNU C Library: Shared libraries
ii  libcairo2   1.6.4-1+b1   The Cairo 2D vector graphics libra
ii  libcompfaceg1   1:1.5.2-4Compress/decompress images for mai
ii  libetpan13  0.54-1   mail handling library
ii  libglib2.0-02.16.3-2 The GLib library of C routines
ii  libgtk2.0-0 2.12.9-3 The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libldap-2.4-2   2.4.7-6.2OpenLDAP libraries
ii  libpango1.0-0   1.20.2-2 Layout and rendering of internatio
ii  libpisock9  0.12.3-4 library for communicating with a P
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libssl0.9.8 0.9.8g-8 SSL shared libraries

Versions of packages claws-mail recommends:
ii  aspell-en [aspell-dictionary] 6.0-0-5.1  English dictionary for GNU Aspell
ii  claws-mail-i18n   3.4.0-1Locale data for Claws Mail (i18n s
ii  xfonts-100dpi 1:1.0.0-4  100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.0-4  75 dpi fonts for X

-- no debconf information



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



Bug#463351: ices2: ignores 'allow-repeats' setting when checking ogg serial

2008-01-31 Thread C. Chad Wallace
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

The first patch included some cruft from my building.  Here's a clean
one that has only the change to im_playlist.c.

- --

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.skihills.com/
OpenPGP Public Key ID: 0x262208A0


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

iD8DBQFHog8kKeSNHCYiCKARAv/uAKDpBX8WKBkeklBLgWKTad5I3Bg5NACg9+K4
FLLSQqZn18UQiENGidpRUfI=
=KtxP
-END PGP SIGNATURE-
Only in ices2-2.0.1-patched/debian: copyright_newhints
diff -ur ices2-2.0.1/src/im_playlist.c ices2-2.0.1-patched/src/im_playlist.c
--- ices2-2.0.1/src/im_playlist.c	2004-07-19 14:53:15.0 -0700
+++ ices2-2.0.1-patched/src/im_playlist.c	2008-01-30 17:49:47.0 -0800
@@ -166,7 +166,7 @@
 {
 if (ogg_page_bos (og))
 {
-   if (ogg_page_serialno (og) == pl-current_serial)
+   if (!pl-allow_repeat  ogg_page_serialno (og) == pl-current_serial)
{
LOG_WARN1 (Skipping \%s\ as the serial number is the same as previous, pl-filename);
pl-nexttrack = 1;


Bug#463351: ices2: ignores 'allow-repeats' setting when checking ogg serial

2008-01-30 Thread C. Chad Wallace
Package: ices2
Version: 2.0.1-6.1
Severity: normal
Tags: patch

I currently have a playlist that contains one file, so obviously I need
to set 'allow-repeats'.  However, even with that setting enabled, it
won't repeat the one file because the serial matches (even if I make a
copy of the file and add the copy to the playlist).

I've changed im_playlist.c so that it checks pl-allow_repeat before
checking the serial (patch attached).


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

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

Versions of packages ices2 depends on:
ii  libasound2 1.0.15-3  ALSA library
ii  libc6  2.7-6 GNU C Library: Shared libraries
ii  libogg01.1.3-3   Ogg Bitstream Library
ii  libshout3  2.2.2-2   MP3/Ogg Vorbis broadcast streaming
ii  libvorbis0a1.2.0.dfsg-3  The Vorbis General Audio Compressi
ii  libvorbisenc2  1.2.0.dfsg-3  The Vorbis General Audio Compressi
ii  libxml22.6.31.dfsg-1 GNOME XML library
ii  netbase4.30  Basic TCP/IP networking system

ices2 recommends no packages.

-- no debconf information
diff -ur ices2-2.0.1/debian/changelog ices2-2.0.1-patched/debian/changelog
--- ices2-2.0.1/debian/changelog2008-01-30 18:29:18.0 -0800
+++ ices2-2.0.1-patched/debian/changelog2008-01-30 17:51:50.0 
-0800
@@ -1,3 +1,10 @@
+ices2 (2.0.1-6.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Don't check the serial on oggs if allow_repeat is given.
+
+ -- C. Chad Wallace [EMAIL PROTECTED]  Wed, 30 Jan 2008 17:51:27 -0800
+
 ices2 (2.0.1-6) unstable; urgency=low
 
   * Add XS-Vcs-Svn and XS-Vcs-Browser fields to debian/control.
Only in ices2-2.0.1-patched/debian: copyright_newhints
diff -ur ices2-2.0.1/debian/rules ices2-2.0.1-patched/debian/rules
--- ices2-2.0.1/debian/rules2008-01-30 18:29:18.0 -0800
+++ ices2-2.0.1-patched/debian/rules2008-01-30 18:02:30.0 -0800
@@ -11,7 +11,7 @@
 # See debian/README.cdbs-tweaks for info on local overrides
 include debian/cdbs/1/rules/buildcore.mk
 include debian/cdbs/1/rules/upstream-tarball.mk
-include debian/cdbs/1/rules/copyright-check.mk
+#include debian/cdbs/1/rules/copyright-check.mk
 include /usr/share/cdbs/1/class/autotools.mk
 include debian/cdbs/1/rules/buildinfo.mk
 include /usr/share/cdbs/1/rules/debhelper.mk
diff -ur ices2-2.0.1/src/im_playlist.c ices2-2.0.1-patched/src/im_playlist.c
--- ices2-2.0.1/src/im_playlist.c   2004-07-19 14:53:15.0 -0700
+++ ices2-2.0.1-patched/src/im_playlist.c   2008-01-30 17:49:47.0 
-0800
@@ -166,7 +166,7 @@
 {
 if (ogg_page_bos (og))
 {
-   if (ogg_page_serialno (og) == pl-current_serial)
+   if (!pl-allow_repeat  ogg_page_serialno (og) == 
pl-current_serial)
{
LOG_WARN1 (Skipping \%s\ as the serial number is the 
same as previous, pl-filename);
pl-nexttrack = 1;


Bug#442402: libmime-lite-perl: missing depends on libemail-date-perl

2007-09-15 Thread C. Chad Wallace
Package: libmime-lite-perl
Version: 3.020-1
Severity: important

libmime-lite-perl does not include libemail-date-perl in its
dependencies, however when I try to use it, I get the following error:

Can't locate Email/Date.pm in @INC (@INC contains:
/etc/perl /usr/local/lib/perl/5.8.8
/usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/share/perl5
/usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .
/etc/apache2) at /usr/share/perl5/MIME/Lite.pm line 1097.

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

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

Versions of packages libmime-lite-perl depends on:
ii  nullmailer [mail-transport-ag 1:1.03-5   simple relay-only mail transport a
ii  perl  5.8.8-7Larry Wall's Practical Extraction 

libmime-lite-perl recommends no packages.

-- no debconf information



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



Bug#402683: gnome-screensaver: segfaults from 'slideshow'

2007-01-31 Thread Chad Wallace
Package: gnome-screensaver
Version: 2.14.3-3
Followup-For: Bug #402683

I am having the same problem with the cosmos screensaver being blank on
amd64.  I've noticed the following in dmesg:

slideshow[1162]: segfault at 7fff0018 rip 2afde786197e rsp
7fffc39d5aa0 error 4
slideshow[1418]: segfault at 7fff0018 rip 2b89d5ec197e rsp
7fffd5375440 error 4
slideshow[1671]: segfault at 7fff0018 rip 2ba30b7d597e rsp
7fff9fa61b30 error 4
slideshow[1922]: segfault at 7fff0018 rip 2adf58b0e97e rsp
7fff52726800 error 4
slideshow[14380]: segfault at 7fff0018 rip 2b4934f3397e rsp
7fff763013d0 error 4

Running slideshow from the command line (with the command posted earlier
on this bug) works just fine, even when maximized.  However, I don't
know how to get slideshow to run full-screen.

I just tried creating a wrapper script using gdb to replace the
slideshow program in /usr/lib/gnome-screensaver/gnome-screensaver, but
it's not working...  I guess the slideshow binary is not expected to be
a shell script.

Is there any way I can make those messages in dmesg any more useful?

Thanks!


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-amd64
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)

Versions of packages gnome-screensaver depends on:
ii  dbus  1.0.2-1simple interprocess
messaging syst
ii  gconf22.16.0-3   GNOME configuration
database syste
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D
graphi
ii  libatk1.0-0   1.12.4-1   The ATK accessibility
toolkit
ii  libaudiofile0 0.2.6-6Open-source version of
SGI's audio
ii  libavahi-client3  0.6.15-2   Avahi client library
ii  libavahi-common3  0.6.15-2   Avahi common library
ii  libavahi-glib10.6.15-2   Avahi glib integration
library
ii  libbonobo2-0  2.14.0-3   Bonobo CORBA interfaces
library
ii  libbonoboui2-02.14.0-5   The Bonobo UI library
ii  libc6 2.3.6.ds1-8GNU C Library: Shared
libraries
ii  libcairo2 1.2.4-4The Cairo 2D vector
graphics libra
ii  libdbus-1-3   1.0.2-1simple interprocess
messaging syst
ii  libdbus-glib-1-2  0.71-3 simple interprocess
messaging syst
ii  libesd0   0.2.36-3   Enlightened Sound Daemon -
Shared
ii  libexif12 0.6.13-5   library to parse EXIF files
ii  libfontconfig12.4.2-1generic font configuration
library
ii  libfreetype6  2.2.1-5FreeType 2 font engine,
shared lib
ii  libgconf2-4   2.16.0-3   GNOME configuration
database syste
ii  libgcrypt11   1.2.3-2LGPL Crypto library -
runtime libr
ii  libglade2-0   1:2.6.0-4  library to load .glade
files at ru
ii  libglib2.0-0  2.12.4-2   The GLib library of C
routines
ii  libgnome-keyring0 0.6.0-3GNOME keyring services
library
ii  libgnome-menu22.16.1-2   an implementation of the
freedeskt
ii  libgnome2-0   2.16.0-2   The GNOME 2 library -
runtime file
ii  libgnomecanvas2-0 2.14.0-2   A powerful object-oriented
display
ii  libgnomeui-0  2.14.1-2+b1The GNOME 2 libraries (User
Interf
ii  libgnomevfs2-02.14.2-4   GNOME virtual file-system
(runtime
ii  libgnutls13   1.4.4-3the GNU TLS library -
runtime libr
ii  libgpg-error0 1.4-1  library for common error
values an
ii  libgtk2.0-0   2.8.20-3   The GTK+ graphical user
interface
ii  libice6   1:1.0.1-2  X11 Inter-Client Exchange
library
ii  libjpeg62 6b-13  The Independent JPEG
Group's JPEG
ii  liborbit2 1:2.14.3-0.1   libraries for ORBit2 - a
CORBA ORB
ii  libpam0g  0.79-4 Pluggable Authentication
Modules l
ii  libpango1.0-0 1.14.8-4   Layout and rendering of
internatio
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libpopt0  1.10-3 lib for parsing cmdline
parameters
ii  libsm61:1.0.1-3  X11 Session Management
library
ii  libtasn1-30.3.6-2Manage ASN.1 structures
(runtime)
ii  libx11-6  2:1.0.3-4  X11 client-side library
ii  libxau6   1:1.0.1-2  X11 authorisation library
ii  libxcursor1   1.1.7-4X cursor management library
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension
librar
ii  libxfixes31:4.0.1-5  X11 miscellaneous 'fixes'
extensio
ii  libxi61:1.0.1-4  X11 

Bug#394182: cppw: copies to /etc/passwd even with -s switch

2006-10-20 Thread C. Chad Wallace
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: passwd
Version: 1:4.0.18.1-3
Severity: grave
Justification: causes data loss

Since some time after sarge, the cppw program does not recognize the -s
switch.  When -s is given, it is supposed to copy the file to /etc/shadow,
but instead it copies it to /etc/passwd, effectively disabling ALL logins.

I've looked at the code (in debian/patches/401_cppw_src.dpatch), and
noticed it is checking for the obsolete symbol SHADOWPWD before checking
for the -s switch.  Since that symbol doesn't exist (The Changelog says it
has been removed), it goes ahead and copies the file over /etc/passwd
instead of /etc/shadow.

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

Versions of packages passwd depends on:
ii  debianutils 2.17.3   Miscellaneous utilities specific t
ii  libc6   2.3.6.ds1-6  GNU C Library: Shared libraries
ii  libpam-modules  0.79-3.2 Pluggable Authentication Modules f
ii  libpam0g0.79-3.2 Pluggable Authentication Modules l
ii  libselinux1 1.30.28-2SELinux shared libraries
ii  login   1:4.0.18.1-3 system login tools

passwd recommends no packages.

- -- debconf information:
  passwd/password-mismatch:
  passwd/username:
  passwd/password-empty:
  passwd/make-user: true
  passwd/md5: false
  passwd/title:
  passwd/user-uid:
  passwd/shadow: true
  passwd/username-bad:
  passwd/user-fullname:

- --

C. Chad Wallace, B.Sc.
The Lodging Company
http://www.skihills.com/
OpenPGP Public Key ID: 0x262208A0


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

iD8DBQFFOAS6KeSNHCYiCKARAh4ZAJ9gs6b6aACsvZ+DIFYgKUocDKeT2ACghJm+
C20HmFvOGrccYTzlchiGeKs=
=GRyE
-END PGP SIGNATURE-


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



Bug#386312: asterisk: deadlocks on channels

2006-09-06 Thread C. Chad Wallace
-sounds-m 1.2.11.dfsg-1 sound files for asterisk
ii  zaptel1.2.8.dfsg-1  zapata telephony utilities
ii  zaptel-modules-2. 1.2.8.dfsg-1+2.6. zaptel modules for Linux (kernel 
2.6.17-2-amd64).
ii  zaptel-source 1.2.8.dfsg-1  Zapata telephony interface (source code 
for kernel

This also happened previously with Asterisk 1.2.10 and Zaptel 1.2.7 on the same 
machine.

So far, it's only been when the T1 is involved that Asterisk goes into this 
state.  I'll see tomorrow if I can get it to lock up with only SIP calls.

Regular calls SIP to SIP and SIP to Zap, and navigating through the menu, still 
work, so Asterisk isn't entirely locked up.  It's probably just that a 
particular lock that AgentCallbackLogin() and Queue() use is becoming 
deadlocked somehow.

Hope this helps to shed some light on things...  We will be investigating this 
further, but would appreciate any insights anyone may be able to offer.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-amd64
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)

Versions of packages asterisk-classic depends on:
ii  adduser  3.97Add and remove users and groups
ii  asterisk 1:1.2.11.dfsg-1 Open Source Private Branch Exchang
ii  asterisk-config  1:1.2.11.dfsg-1 config files for asterisk
ii  asterisk-sounds-main 1:1.2.11.dfsg-1 sound files for asterisk
ii  libasound2   1.0.11-7ALSA library
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libcomerr2   1.39-1  common error description library
ii  libcurl3 7.15.5-1Multi-protocol file transfer libra
ii  libgsm1  1.0.10-13   Shared libraries for GSM speech co
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libkrb53 1.4.4~beta1-1   MIT Kerberos runtime libraries
ii  libncurses5  5.5-3   Shared libraries for terminal hand
ii  libnewt0.52  0.52.2-7Not Erik's Windowing Toolkit - tex
ii  libpopt0 1.10-3  lib for parsing cmdline parameters
ii  libpq4   8.1.4-6 PostgreSQL C client library
ii  libpri1.21.2.3-1 Primary Rate ISDN specification li
ii  libspeex11.1.12-2The Speex Speech Codec
ii  libsqlite0   2.8.16-1SQLite shared library
ii  libssl0.9.8  0.9.8b-2SSL shared libraries
ii  libtonezone1 1:1.2.8.dfsg-1  tonezone library (runtime)
ii  unixodbc 2.2.11-13   ODBC tools libraries
ii  zlib1g   1:1.2.3-13  compression library - runtime

asterisk-classic recommends no packages.

-- no debconf information


TTYL.
-- 

C. Chad Wallace, B.Sc.
The Lodging Company
http://skihills.com/
OpenPGP Public Key ID: 0x262208A0





signature.asc
Description: OpenPGP digital signature


Bug#335708: A page that causes Firefox (Sarge) to close

2005-11-18 Thread C. Chad Wallace

Ralph Katz wrote:

This looks like:

Crashes when displaying image
https://bugzilla.mozilla.org/show_bug.cgi?id=310917

http://www.movieweb.com crashes ff 1.5 RC3 from mozilla.org as well as
an older debian ff on my sarge box.


This happens to me too, running unstable:

ii  mozilla-firefox1.0.7-1lightweight web browser based 
on Mozilla


hrm... Why do I *have* to be so curious?  Now I have to try and remember what 
websites I had open!  *sigh*

TTYL.
--

C. Chad Wallace, B.Sc.
The Lodging Company
http://skihills.com/
OpenPGP Public Key ID: 0x262208A0


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



Bug#300326: ITP: liblingua-en-namecase-perl -- fix the case of people's names

2005-03-18 Thread C. Chad Wallace
Package: wnpp
Severity: wishlist
* Package name: liblingua-en-namecase-perl
 Version : 1.13
 Upstream Author : Mark Summerfield [EMAIL PROTECTED]
* URL : 
http://search.cpan.org/CPAN/authors/id/S/SU/SUMMER/Lingua-EN-NameCase-1.13.tar.gz
* License : LGPL
 Description : fix the case of people's names
Forenames and surnames are often stored either wholly in UPPERCASE
or wholly in lowercase. This module allows you to convert names into
the correct case where possible.
Although forenames and surnames are normally stored separately if they
do appear in a single string, whitespace separated, NameCase and nc deal
correctly with them.
NameCase currently correctly name cases names which include any of the
following:
Mc, Mac, al, el, ap, da, de, delle, della, di, du, del, der, 
la, le, lo, van and von.

It correctly deals with names which contain apostrophies and hyphens too.
--
C. Chad Wallace, B.Sc.
The Lodging Company
http://skihills.com/
OpenPGP Public Key ID: 0x262208A0
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Bug#299673: Incorrect 'Suggests' on 'oooqstart-gnome'

2005-03-15 Thread C. Chad Wallace
Package: openoffice.org-gtk-gnome
Version: 1.1.3-7
openoffice.org-gtk-gnome lists a 'Suggests' on 'oooqstart-gnome' (3 Os), which doesn't exist.  
That package is named 'ooqstart-gnome' (2 Os).

--
C. Chad Wallace, B.Sc.
The Lodging Company
http://skihills.com/
OpenPGP Public Key ID: 0x262208A0
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]