Bug#888964: architecture.mk: Export variables

2018-01-31 Thread Jack Bates
Package: dpkg-dev
Tags: patch

The dpkg-architecture(1) manpage claims that architecture.mk "sets and
exports all the variables" but in practice this isn't the case. Here's a
change that fixes that [1]:

> diff --git a/scripts/mk/architecture.mk b/scripts/mk/architecture.mk
> index 8520c5b..0af9601 100644
> --- a/scripts/mk/architecture.mk
> +++ b/scripts/mk/architecture.mk
> @@ -4,7 +4,7 @@
>  
>  dpkg_lazy_eval ?= $$(or $$(value DPKG_CACHE_$(1)),$$(eval DPKG_CACHE_$(1) := 
> $$(shell $(2)))$$(value DPKG_CACHE_$(1)))
>  
> -dpkg_architecture_setvar = $(1) ?= $(call 
> dpkg_lazy_eval,$(1),dpkg-architecture -q$(1))
> +dpkg_architecture_setvar = export $(1) ?= $(call 
> dpkg_lazy_eval,$(1),dpkg-architecture -q$(1))
>  
>  $(foreach machine,BUILD HOST TARGET,\
>$(foreach var,ARCH ARCH_ABI ARCH_LIBC ARCH_OS ARCH_CPU ARCH_BITS 
> ARCH_ENDIAN GNU_CPU GNU_SYSTEM GNU_TYPE MULTIARCH,\

It would be nice if these variables were exported, since I'm using
$DEB_HOST_GNU_CPU in a script called from Make. Except for exporting
these variables, no other behavior is changed.

[1] 
https://salsa.debian.org/nottheoilrig-guest/dpkg/commit/1d1cd0a5f1dc11dc27c4423c1ca5f07eb4782a3d



Bug#887784: env-preseed: env2debconf doesn't handle single quotes

2018-01-19 Thread Jack Bates
Package: env-preseed
Tags: patch

I booted the Debian-Installer with the following boot parameter:
preseed/early_command="sed -i 'script' filename"

and got the following error:
> preseed: running preseed command preseed/early_command: sed -i 
> '"'"'script'"'"' filename
> log-output: sed: unsupported command "

The following is a fix:
diff --git a/env2debconf b/env2debconf
index 3032235..4026128 100755
--- a/env2debconf
+++ b/env2debconf
@@ -31,13 +31,11 @@ for line in $(set); do
fi
var="${var#*:}"

-   # remove single quotes from around value
-   val="${val#\'}"
-   val="${val%\'}"
-   # remove double quotes (user can type those for values
-   # with spaces)
-   val="${val#\"}"
-   val="${val%\"}"
+   # Remove quotes. This shell doesn't support
+   # indirect expansion like Bash ${!var}, so
+   # resort to sed. Values may contain single
+   # quotes, like 'foo'"'"'bar'.
+   val="$(echo "$val" | sed 
"s/\"\([^\"]*\)\"\|'\([^']*\)'/\1\2/g")"

IFS=$OLDIFS
if ! db_set "$var" "$val"; then

Explanation: env2debconf gets its list of environment variables from
$(set). The shell doesn't support indirect expansion like Bash ${!var},
so env2debconf gets the values from $(set)'s output, too. $(set) wraps
values in quotes, which env2debconf handles already, but it also escapes
quotes within values like so: foo'bar -> 'foo'"'"'bar'

Currently only the outer quotes are handled, causing syntax errors in
case of inner quotes: 'foo'"'"'bar' -> foo'"'"'bar :-(

This patch is a more general solution:
echo "'foo'\"'\"'bar'" | sed "s/\"\([^\"]*\)\"\|'\([^']*\)'/\1\2/g" ->
foo'bar :-)



Bug#880524: opendmarc: Hardening

2017-11-01 Thread Jack Bates
Package: opendmarc
Tags: patch

This patch makes Lintian happy:
http://nottheoilrig.com/hardening.patch

Lintian info:
https://lintian.debian.org/tags/hardening-no-bindnow.html



Bug#863612: opendmarc: still ignore inet SOCKET configuration

2017-10-31 Thread Jack Bates

Control: tags -1 patch

I ran into this issue as well -- the following patch fixed it for me:
http://nottheoilrig.com/options.patch

I copied the default settings from opendmarc.service to opendmarc.conf 
(PidFile, Socket, and UserID). The administrator can continue to 
override the service, as before (with 
/etc/systemd/system/opendmarc.service.d/override.conf or "systemctl edit 
opendmarc"). However if they don't, the settings in /etc/opendmarc.conf 
are respected. Likewise the administrator can continue to configure the 
SysV init in /etc/default/opendmarc, as before.


Whether or not the administrator has overridden the service, this change 
won't alter their settings: If the override.conf exists, then it'll be 
used, same as before. Otherwise the default settings are the same as before.


When I added the settings to debian/opendmarc.conf I also harmonized the 
existing settings templates with the upstream opendmarc.conf.sample.




Bug#848833: dh-make: change default debhelper compat level to 10

2017-10-24 Thread Jack Bates

On Tue, 20 Dec 2016 10:58:47 +0800 Paul Wise  wrote:

Package: dh-make
Severity: wishlist

Please change the default debhelper compat level to 10. This has a
number of changes but important one is parallel building by default.


+1



Bug#878473: opendmarc: Enable systemd service

2017-10-24 Thread Jack Bates

On 24/10/17 08:55 AM, Jack Bates wrote:

Control: tags -1 patch

I ran into the same issue -- the following patch fixed it for me:
http://nottheoilrig.com/systemd.patch

The systemd sequence is enabled by default since compatibility level 10. 
So is the autoreconf sequence:

https://lintian.debian.org/tags/useless-autoreconf-build-depends.html


--parallel is also enabled by default.



Bug#879692: dbconfig-common: Customize/override debconf text

2017-10-24 Thread Jack Bates
Package: dbconfig-common
Severity: wishlist

I wish there was a way to customize (override) the dbconfig debconf
text. I tried adding a my-package/dbconfig-install template to my
package, but the text from dbconfig-common/dbconfig-install is still
what gets displayed ...

My package doesn't totally depend on a database -- just one optional
component of it does. So I'd like to alter the text of the
dbconfig-install question to make that clear.



Bug#878473: opendmarc: Enable systemd service

2017-10-24 Thread Jack Bates

Control: tags -1 patch

I ran into the same issue -- the following patch fixed it for me:
http://nottheoilrig.com/systemd.patch

The systemd sequence is enabled by default since compatibility level 10. 
So is the autoreconf sequence:

https://lintian.debian.org/tags/useless-autoreconf-build-depends.html



Bug#879241: opendmarc: Use dbconfig?

2017-10-20 Thread Jack Bates
Package: opendmarc
Tags: patch

Would you consider making use of dbconfig, to automatically set up the
database for generating aggregate reports?

Here's a patch that adds it to the package:
http://nottheoilrig.com/dbconfig.patch

I used dh-exec to install schema.mysql where dbconfig expects it, which
means opendmarc.install needs to be executable, which means I needed the
"3.0 (quilt)" source format, because diff can't represent the executable
mode:

> dpkg-source: warning: executable mode 0755 of
> 'debian/opendmarc.install' will not be represented in diff



Bug#868871: Build diff-highlight

2017-09-28 Thread Jack Bates

tags 868871 patch
thanks

I have the same request -- I had been using:

git config --global pager.log 'perl /usr/share/doc/git/contrib/diff-highlight/diff-highlight | less' 


That way my diff-highlight script was always up to date.

I just APT-updated and it stopped working (since diff-highlight must now 
be built, as of this commit [1]).


I think the following will resolve this, by running the diff-highlight 
Makefile when the package is built (following the pattern in 
debian/rules for other contrib things):



diff --git a/debian/rules b/debian/rules
index f132a2605..ea018298b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -58,6 +58,7 @@ build-stamp:
 override_dh_auto_build-arch: build-stamp
$(MAKE) -C contrib/subtree all $(OPTS)
ln -s contrib/subtree/git-subtree
+   $(MAKE) -C contrib/diff-highlight $(OPTS)

 override_dh_auto_test-arch:
test -z '$(TEST)' || \


[1] 
https://github.com/git/git/commit/0c977dbc8180892af42d7ab9235fd3e51d6c4078




Bug#849873: Add Spark Core to udev rules?

2017-01-01 Thread Jack Bates
Package: dfu-util
Version: 0.9-1
Severity: normal
File: /lib/udev/rules.d/60-dfu-util.rules

Dear Maintainer,

Would you consider adding the following lines to
/lib/udev/rules.d/60-dfu-util.rules?
The Spark Core is a fairly common device
that depends on dfu-util to flash it.

--- a/lib/udev/rules.d/60-dfu-util.rules
+++ b/lib/udev/rules.d/60-dfu-util.rules
@@ -2,3 +2,6 @@
 # Makes STM32 DfuSe device writeable for the "plugdev" group

 ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="0483", 
ATTRS{idProduct}=="df11", MODE="664", GROUP="plugdev"
+
+# Spark Core
+ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="1d50", 
ATTRS{idProduct}=="607f", MODE="664", GROUP="plugdev"


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

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

Versions of packages dfu-util depends on:
ii  libc6 2.24-8
ii  libusb-1.0-0  2:1.0.21-1

dfu-util recommends no packages.

dfu-util suggests no packages.

-- no debconf information



Bug#823398: awscli: enable command-line completion

2016-12-08 Thread Jack Bates

Tags: patch

On Wed, 04 May 2016 06:06:30 -0400 Sandro Tosi  wrote:

Package: awscli
Severity: normal

Hello,
awscli comes with bash/zsh completion scripts, but they are not activated by
default; please enable them.


I think /usr/share/bash-completion/completions/aws_bash_completer needs 
only to be renamed "aws", to work with the dynamic completion loading in 
/usr/share/bash-completion/bash_completion:



diff --git a/debian/rules b/debian/rules
index 418b78e..2c0fa06 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,7 +10,7 @@
 override_dh_auto_install:
python3 setup.py install --root=debian/awscli --install-layout=deb
mv $(CURDIR)/debian/awscli/usr/bin/aws_bash_completer \
-  $(CURDIR)/debian/awscli/usr/share/bash-completion/completions
+  $(CURDIR)/debian/awscli/usr/share/bash-completion/completions/aws
mv $(CURDIR)/debian/awscli/usr/bin/aws_zsh_completer.sh \
   $(CURDIR)/debian/awscli/usr/share/zsh/vendor-completions/_awscli
rm $(CURDIR)/debian/awscli/usr/bin/aws.cmd




Bug#839101: cowdancer: Keep open() async-signal-safe

2016-09-29 Thread Jack Bates

On 28/09/16 03:25 PM, Thorsten Glaser wrote:

Jack Bates dixit:

A) Call dlsym() early, before anything calls open(). Not possible
  because even if you managed to call dlsym() before anything else,
  dlsym() itself might call open() before it was done initializing :-(

B) Avoid dlsym() altogether. What are the options in this case?

  1) Use sys_open() instead of dlsym(RTLD_NEXT, "open)


How about a combination of both?

Something like this (pseudo code, mostly):

static void initialise_open(void) __attribute__((__constructor__));

static uint8_t open_initialised = 0;

int
open(const char *path, int flags, mode_t mode)
{
if (!open_initialised)
return (sys_open(path, flags, mode));
/* current code with dlsym’s result */
}

static void
initialise_open(void)
{
/* call dlsym, which is now allowed to call open() */
/* store its result */
open_initialised = 1;
}


Of course, I probably ought to better go to bed, but someone
might make something off this. Also, completely untested, modulo
that I have an application in which these constructors work, in
plain GCC (no C++).


My intuition is that not having one consistent implementation might be 
surprising to callers of open(), however your solution is AS-safe and 
minimizes the change from the current behavior.
Do you know of or anticipate any cases where implementing open() with 
sys_open() instead of dlsym(RTLD_NEXT, "open") would cause a problem?




Bug#839101: cowdancer: Keep open() async-signal-safe

2016-09-29 Thread Jack Bates

On 28/09/16 03:25 PM, Thorsten Glaser wrote:

Jack Bates dixit:

A) Call dlsym() early, before anything calls open(). Not possible
  because even if you managed to call dlsym() before anything else,
  dlsym() itself might call open() before it was done initializing :-(

B) Avoid dlsym() altogether. What are the options in this case?

  1) Use sys_open() instead of dlsym(RTLD_NEXT, "open)


How about a combination of both?

Something like this (pseudo code, mostly):

static void initialise_open(void) __attribute__((__constructor__));

static uint8_t open_initialised = 0;

int
open(const char *path, int flags, mode_t mode)
{
if (!open_initialised)
return (sys_open(path, flags, mode));
/* current code with dlsym’s result */
}

static void
initialise_open(void)
{
/* call dlsym, which is now allowed to call open() */
/* store its result */
open_initialised = 1;
}


Of course, I probably ought to better go to bed, but someone
might make something off this. Also, completely untested, modulo
that I have an application in which these constructors work, in
plain GCC (no C++).


My intuition is that not having one consistent implementation might be 
surprising to callers of open(), however your solution is AS-safe and 
minimizes the change from the current behavior.
Do you know of or anticipate any cases where implementing open() with 
sys_open() instead of dlsym(RTLD_NEXT, "open") would cause a problem?




Bug#839101: cowdancer: Keep open() async-signal-safe

2016-09-28 Thread Jack Bates
Package: cowdancer
Version: 0.81
Severity: normal

Dear Maintainer,

open() is supposed to be async-signal-safe [1], however cowdancer's
open() calls dlsym() [2] which calls calloc() [3] which isn't AS-safe.
This caused me some grief [4], in combination with TCMalloc and
Chromium.

As I see it, to keep open() AS-safe, cowdancer can't call dlsym() from
open() (if possible). That means either:

A) Call dlsym() early, before anything calls open(). Not possible
   because even if you managed to call dlsym() before anything else,
   dlsym() itself might call open() before it was done initializing :-(

B) Avoid dlsym() altogether. What are the options in this case?

   1) Use sys_open() instead of dlsym(RTLD_NEXT, "open)

   2) ???

[1] http://man7.org/linux/man-pages/man7/signal.7.html
"Async-signal-safe functions"
[2] https://anonscm.debian.org/git/pbuilder/cowdancer.git/tree/cowdancer.c#n182
[3] 
https://sourceware.org/git/?p=glibc.git;a=blob;f=dlfcn/dlerror.c;h=41b2bd6bf29be5f61affc5e750775ab2f64ee4b0;hb=HEAD#l141
[4] 
https://groups.google.com/a/chromium.org/d/msg/gn-dev/uYMNbQp9FUg/N9b8-SfEGAAJ


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

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

Versions of packages cowdancer depends on:
ii  libc62.23-5
ii  libncurses5  6.0+20160625-1
ii  libtinfo56.0+20160625-1

cowdancer recommends no packages.

cowdancer suggests no packages.

-- no debconf information



Bug#821047: cowbuilder: load_config_file() chokes on \n e.g. EXTRAPACKAGES='... \n ...'

2016-04-14 Thread Jack Bates
Package: cowbuilder
Version: 0.79
Severity: normal

Dear Maintainer,

parameter.c line 102 calls
asprintf(, "env bash -c 'set -e ; . %s; set ' 2>&1", config);

and if e.g. EXTRAPACKAGES contains a \n then "set" prints
EXTRAPACKAGES=$'\n  git\n  less\n'

however strdup_strip_quote() doesn't handle this.
Consequently if pbuilderrc contains e.g.

  EXTRAPACKAGES='
git
less
  '

then the pbuilder tool works as expected (e.g. sudo pbuilder create)
but cowbuilder chokes:

  nottheoilrig@debian:~$ sudo cowbuilder --create
  [...]
  E: Unable to locate package $'\n
  E: Couldn't find any package by regex '$'\n'
  E: Unable to locate package git\n
  E: Unable to locate package less\n'
  I: unmounting dev/pts filesystem
  I: unmounting run/shm filesystem
  I: unmounting proc filesystem
  pbuilder create failed
forking: rm -rf /var/cache/pbuilder/base.cow 
  nottheoilrig@debian:~$ 

Is this "set" output a bashism? On my machine "sh -c set" prints

  EXTRAPACKAGES='
git
less
  '

vs. EXTRAPACKAGES=$'\n  git\n  less\n'


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

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

Versions of packages cowbuilder depends on:
ii  cowdancer  0.79
ii  libc6  2.22-5
ii  pbuilder   0.223

cowbuilder recommends no packages.

cowbuilder suggests no packages.

-- no debconf information



Bug#723470: libzdb link with -L/usr/lib

2013-09-17 Thread Jack Bates

reassign 723470 libpq5
forcemerge 706849 723470
thank you

On 17/09/13 03:47 AM, YunQiang Su wrote:

This package has one or more -L/usr/lib in its build system,
which will make it ftbfs if there is libraries under /usr/lib,
while is not the default architecture, mips* for example.


Hi and thank you for reporting this issue,

Where is libpq.so (PostgreSQL client library) installed on your system? 
I suspect the offending line is libzdb-2.11.3/configure.ac line 268:


LDFLAGS=-L`$PGCONFIG --libdir` $LDFLAGS

I think bug #706849 (libpq5: enable multi-arch) will move libpq.so out 
of /usr/lib and I think that will resolve this bug as well.


I will therefore merge this bug with bug #706849, so that this bug will 
get automatically closed when bug #706849 is resolved. If this is a 
mistake or you think it should be done differently, please let me know.


Thank you!


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



Bug#721738: debhelper compatibility level 9

2013-09-03 Thread Jack Bates

Package: dh-make
Version: 0.62

The recommended debhelper compatibility level is now 9 (according to the 
debhelper manpage). I wish dh-make created new packages with the 
recommended compatibility level (currently it uses compatibility level 8 
instead)


Thanks for dh-make!


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



Bug#720208: cowbuilder: Problem executing command with --execute or --login

2013-08-19 Thread Jack Bates
Package: cowbuilder
Version: 0.62+nmu2
Severity: normal

I want to execute a command in a cowbuilder chroot, so I tried cowbuilder
--login ls (similar to ssh ... ls or sudo ls). This didn't work (I was
logged into the chroot but the command wasn't executed) so I tried cowbuilder
--execute ls. This complained:

   E: Command line parameter [ls] does not exist

The pbuilder manpage doesn't suggest that you can pass a command to --login
(like ssh or sudo). It does say that --execute will Execute a script or
command inside the chroot,

Ideally I'd like --login to behave similar to ssh and accept an optional
command to execute upon login. Or at least I wish there were some way to
execute a command in a cowbuilder chroot. Maybe there is and I just haven't yet
figured out how to use it correctly?

Thank you for cowbuilder!

-- System Information:
Debian Release: 6.0.7
  APT prefers oldstable-updates
  APT policy: (500, 'oldstable-updates'), (500, 'oldstable')
Architecture: i386 (i686)

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

Versions of packages cowbuilder depends on:
ii  cowdancer 0.62+nmu2  Copy-on-write directory tree utili
ii  libc6 2.11.3-4   Embedded GNU C Library: Shared lib
ii  pbuilder  0.199+nmu1squeeze1 personal package builder for Debia

cowbuilder recommends no packages.

cowbuilder 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#368297: How to check if the application forgot to initialize Libgcrypt?

2013-05-02 Thread Jack Bates
Whether the OpenLDAP code that depends on GnuTLS is in a separate 
process from the application or not, it might still need to set 
Libgcrypt thread support callbacks when it initializes GnuTLS.


Werner Koch makes the point that ideally the application (nss-pam-ldapd 
or whatever) would initialize Libgcrypt. Meanwhile everyone seems to 
agree that a library which introduces an indirect dependency on 
Libgcrypt (i.e. GnuTLS) should be failsafe and initialize Libgcrypt 
itself if the application forgot to do that.


Then how should it check if the application forgot to initialize 
Libgcrypt? Testing GCRYCTL_ANY_INITIALIZATION_P is consistent with 
Libgcrypt documentation...



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



Bug#368297: Blog post about Libgcrypt issue

2013-04-03 Thread Jack Bates

Hi, here is a blog post about this issue:

http://jdbates.blogspot.ca/2013/04/its-crazy-how-much-time-and-effort-one.html


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



Bug#368297: About the libgcrypt and OpenLDAP issue

2013-04-03 Thread Jack Bates

On 03/04/13 10:43 AM, Carlos Alberto Lopez Perez wrote:

Furthermore libgcrypt upstream seems to be ok with this change, isn't
it? [3]


Thanks for finding this upstream thread Carlos! And for your work 
earlier where you spotted the 2005 upstream commit.



[3] http://thread.gmane.org/gmane.comp.encryption.gpg.libgcrypt.devel/2198



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



Bug#368297: Initializing Libgcrypt

2013-03-21 Thread Jack Bates
I contributed a fix for the regression caused by the solution in Ubuntu 
[1]. The Python wrapper for the GnuTLS library doesn't initialize 
Libgcrypt properly.


One addition to Carlos' analysis:

 The problem is that when OpenLDAP calls gnutls_global_init(), this
 function does nothing because OpenLDAP had previously already
 initialized libgcrypt at some point on the stack (probably by
 mistake).

My understanding of Howard Chu in LP: #423252 comment #72 [2] is that 
OpenLDAP doesn't initialize Libgcrypt (it doesn't invoke 
gcry_check_version which the manual states must be invoked before any 
other function in the library, and which is correctly invoked by 
gnutls_global_init). OpenLDAP is required to initialize Libgcrypt's 
thread callbacks with GCRYCTL_SET_THREAD_CBS and prior to Libgcrypt 
version 1.3.X GCRYCTL_SET_THREAD_CBS didn't invoke global_init. So the 
solution in Ubuntu [3] is consistent with the Libgcrypt manual 
(gcry_check_version must be invoked before any other function in the 
library, with the exception of the GCRYCTL_SET_THREAD_CBS command) and 
with the original behavior of the library.


  [1] 
https://code.launchpad.net/~nottheoilrig/ubuntu/quantal/python-gnutls/fix-for-1013798/+merge/154767

  [2] https://bugs.launchpad.net/bugs/423252
  [3] https://launchpadlibrarian.net/45701569/dif1.txt


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



Bug#694348: Workaround

2012-12-17 Thread Jack Bates
I just had the same problem installing wheezy beta4 to and SD card in an 
ASUS EeeBox B202 with a Realtek Semiconductor Corp. USB 2.0 multicard 
reader


I eventually worked around it by downloading the wheezy 
linux-image-3.2.0-4-486 package to another machine, extracting it and 
running:


 nc -l -p 1234  
lib/modules/3.2.0-4-486/kernel/drivers/usb/storage/ums-realtek.ko


Then on the EeeBox running debian-installer I ran:

 nc 172.28.0.163 1234  
/lib/modules/3.2.0-4-486/kernel/drivers/usb/storage/ums-realtek.ko

 insmod /lib/modules/3.2.0-4-486/kernel/drivers/usb/storage/ums-realtek.ko

The debian-installer then detected all three storage devices: internal 
hard disk, USB flash boot device, and SD card



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



Bug#686652: libpam-python: Please add examples to package

2012-09-04 Thread Jack Bates
Package: libpam-python
Version: 1.0.2-1
Severity: wishlist

Thank you for maintaining libpam-python,

Upstream ships three example modules, in an examples directory. I think it
would be great to add these to the Debian package, maybe with the
dh_installexamples debhelper

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

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


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



Bug#669277: /opt/drbl//sbin/drbl-conf-functions: No such file or directory

2012-04-18 Thread Jack Bates
Package: drbl
Version: 1.10.31-2
Severity: normal

After sudo aptitude -DR install drbl I run
/usr/share/drbl/sbin/drblsrv-offline -r and get output:

/usr/share/drbl/sbin/drblsrv-offline: line 7: 
/opt/drbl//sbin/drbl-conf-functions: No such file or directory
/usr/share/drbl/sbin/drblsrv-offline: line 341: check_if_root: command not found
/usr/share/drbl/sbin/drblsrv-offline: line 344: ask_and_load_lang_set: command 
not found
/usr/share/drbl/sbin/drblsrv-offline: line 353: check_distribution_name: 
command not found

If I instead run DRBL_SCRIPT_PATH=/usr/share/drbl
/usr/share/drbl/sbin/srblsrv-offline -r then I get output:

[administrator] You need to run this script drblsrv-offline as root.

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

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



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



Bug#665742: dpkg-reconfigure: Table 'cdef' already exists

2012-03-25 Thread Jack Bates
Package: cacti
Version: 0.8.7g-1+squeeze1
Severity: minor

When I run dpkg-reconfigure cacti it asks me: Reinstall database for cacti?
but although I answer Yes, it complains:

 An error occurred while installing the database:

 mysql said: ERROR 1050 (42S01) at line 5: Table 'cdef' already exists

 ... unless I first: mysqladmin drop cacti

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages cacti depends on:
ii  apache2-mpm-prefork [h 2.2.16-6+squeeze6 Apache HTTP Server - traditional n
ii  dbconfig-common1.8.46+squeeze.0  common framework for packaging dat
ii  debconf [debconf-2.0]  1.5.36.1  Debian configuration management sy
ii  libapache2-mod-php55.3.3-7+squeeze8  server-side, HTML-embedded scripti
ii  libphp-adodb   5.10-1The ADOdb database abstraction lay
ii  mysql-client-5.1 [virt 5.1.61-0+squeeze1 MySQL database client binaries
ii  php5-cli   5.3.3-7+squeeze8  command-line interpreter for the p
ii  php5-mysql 5.3.3-7+squeeze8  MySQL module for php5
ii  php5-snmp  5.3.3-7+squeeze8  SNMP module for php5
ii  rrdtool1.4.3-1   time-series data storage and displ
ii  snmp   5.4.3~dfsg-2  SNMP (Simple Network Management Pr
ii  ucf3.0025+nmu1   Update Configuration File: preserv

Versions of packages cacti recommends:
ii  iputils-ping   3:20100418-3  Tools to test the reachability of 
ii  logrotate  3.7.8-6   Log rotation utility
ii  mysql-server   5.1.61-0+squeeze1 MySQL database server (metapackage
ii  mysql-server-5.1 [mysq 5.1.61-0+squeeze1 MySQL database server binaries and

Versions of packages cacti suggests:
pn  php5-ldap none (no description available)

-- debconf information:
  cacti/db/app-user: cacti
  cacti/mysql/admin-user: root
  cacti/upgrade-backup: true
  cacti/install-error: abort
* cacti/webserver: Apache
  cacti/internal/reconfiguring: false
  cacti/mysql/method: unix socket
  cacti/remote/host:
  cacti/upgrade-error: abort
  cacti/dbconfig-upgrade: true
  cacti/internal/skip-preseed: false
  cacti/remote/newhost:
  cacti/purge: false
  cacti/passwords-do-not-match:
  cacti/dbconfig-remove:
* cacti/dbconfig-install: true
  cacti/missing-db-package-error: abort
  cacti/database-type: mysql
  cacti/remove-error: abort
  cacti/db/dbname: cacti
  cacti/remote/port:
  cacti/dbconfig-reinstall: false



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



Bug#647275: free(): invalid pointer

2012-02-06 Thread Jack Bates
Hello Ludovico and Damien, I experience this same problem. I am also 
running ntop 3:4.1.0+dfsg1-1 and I confirm that /etc/default/ntop contains:


 GETOPT=-n 0

 - so DNS resolution is disabled

I started ntop inside gdb, as you describe. I paste below the output of 
thread apply all bt. Can I provide any more information?



administrator@debian:~$ sudo gdb --args /usr/sbin/ntop -u ntop -P 
/var/lib/ntop
--access-log-file /var/log/ntop/access.log -i eth0 -p 
/etc/ntop/protocol.list -O
 /var/log/ntop -m 10.10.10.0/24 -m 10.10.20.0/24 -m 10.10.30.0/24 -m 
10.10.50.0/

24 -m 10.10.60.0/24 -n 0
GNU gdb (GDB) 7.3-debian
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
http://gnu.org/licenses/gpl.html

This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/sbin/ntop...(no debugging symbols found)...done.
(gdb) run
Starting program: /usr/sbin/ntop -u ntop -P /var/lib/ntop 
--access-log-file /var
/log/ntop/access.log -i eth0 -p /etc/ntop/protocol.list -O /var/log/ntop 
-m 10.1
0.10.0/24 -m 10.10.20.0/24 -m 10.10.30.0/24 -m 10.10.50.0/24 -m 
10.10.60.0/24 -n

 0
[Thread debugging using libthread_db enabled]
Mon Feb  6 21:03:42 2012  NOTE: Interface merge enabled by default
Mon Feb  6 21:03:42 2012  Initializing gdbm databases
Mon Feb  6 21:03:42 2012  ntop v.4.1.0 (32 bit)
Mon Feb  6 21:03:42 2012  Configured on Aug 21 2011  4:11:28, built on 
Aug 21 20

11 04:11:48.
Mon Feb  6 21:03:42 2012  Copyright 1998-2011 by Luca Deri d...@ntop.org
Mon Feb  6 21:03:42 2012  Get the freshest ntop from http://www.ntop.org/
Mon Feb  6 21:03:42 2012  NOTE: ntop is running from '/usr/sbin'
Mon Feb  6 21:03:42 2012  NOTE: (but see warning on man page for the 
--instance

parameter)
Mon Feb  6 21:03:42 2012  NOTE: ntop libraries are in '/usr/lib/ntop'
Mon Feb  6 21:03:42 2012  Initializing ntop
Mon Feb  6 21:03:42 2012  PROTO_INIT: Processing protocol file: 
'/etc/ntop/proto

col.list', size: 390
Mon Feb  6 21:03:42 2012  Checking eth0 for additional devices
Mon Feb  6 21:03:42 2012  Resetting traffic statistics for device eth0
Mon Feb  6 21:03:42 2012  Initializing device eth0 (0)
Mon Feb  6 21:03:42 2012  DLT: Device 0 [eth0] is 1, mtu 1514, header 14
Mon Feb  6 21:03:42 2012  Initialized events [mask: 0][path: ]
Mon Feb  6 21:03:42 2012  Initializing gdbm databases
Mon Feb  6 21:03:42 2012  VENDOR: Loading MAC address table.
Mon Feb  6 21:03:42 2012  VENDOR: Checking for MAC address table file
Mon Feb  6 21:03:42 2012  VENDOR: File '/usr/share/ntop/specialMAC.txt' 
does not

 need to be reloaded
Mon Feb  6 21:03:42 2012  VENDOR: ntop continues ok
Mon Feb  6 21:03:42 2012  VENDOR: Checking for MAC address table file
Mon Feb  6 21:03:42 2012  VENDOR: File '/usr/share/ntop/oui.txt' does 
not need t

o be reloaded
Mon Feb  6 21:03:42 2012  VENDOR: ntop continues ok
Mon Feb  6 21:03:42 2012  Fingerprint: Loading signature file
Mon Feb  6 21:03:42 2012  Fingerprint: Checking for Fingerprint file... file
Mon Feb  6 21:03:42 2012  Fingerprint: Loading file 
'/usr/share/ntop/etter.finge

r.os'
Mon Feb  6 21:03:42 2012  Fingerprint: ...loaded 1765 records
Mon Feb  6 21:03:42 2012  Initializing external applications
[New Thread 0xb53b8b70 (LWP 2765)]
Mon Feb  6 21:03:42 2012  THREADMGMT[t3040578416]: SFP: Started thread 
for finge

rprinting
Mon Feb  6 21:03:42 2012  THREADMGMT[t3040578416]: SFP: Fingerprint scan 
thread

starting [p2744]
[New Thread 0xb4bb7b70 (LWP 2766)]
Mon Feb  6 21:03:42 2012  THREADMGMT[t3032185712]: SIH: Started thread 
for idle

hosts detection
Mon Feb  6 21:03:42 2012  Calling plugin start functions (if any)
Mon Feb  6 21:03:42 2012  **ERROR** GeoIP: unable to load file 
GeoLiteCity.dat
Mon Feb  6 21:03:42 2012  **ERROR** GeoIP: unable to load ASN file 
GeoIPASNum.da

t
Mon Feb  6 21:03:42 2012  SSL is present but https is disabled: use -W 
https po

rt for enabling it
Mon Feb  6 21:03:42 2012  INITWEB: Initializing web server
Mon Feb  6 21:03:42 2012  INITWEB: Initializing TCP/IP socket 
connections for we

b server
Mon Feb  6 21:03:42 2012  INITWEB: Initialized socket, port 3000, 
address (any)

Mon Feb  6 21:03:42 2012  INITWEB: Waiting for HTTP connections on port 3000
Mon Feb  6 21:03:42 2012  INITWEB: Starting web server
Mon Feb  6 21:03:42 2012  THREADMGMT[t3032185712]: SIH: Idle host scan 
thread st

arting [p2744]
[New Thread 0xb43b6b70 (LWP 2767)]
Mon Feb  6 21:03:42 2012  THREADMGMT[t3023793008]: INITWEB: Started 
thread for w

eb server
Mon Feb  6 21:03:42 2012  Listening on [eth0]
Mon Feb  6 21:03:42 2012  Loading Plugins
Mon Feb  6 21:03:42 2012  Searching for plugins in /usr/lib/ntop/plugins
Mon Feb  6 21:03:42 2012  THREADMGMT[t3023793008]: WEB: Server 
connection thread

 starting 

Bug#654841: icedove: update.locale file doesn't exist in either the XCurProcD or GreD directories

2012-01-05 Thread Jack Bates
Package: icedove
Version: 3.0.11-1+squeeze6
Severity: normal

I recently installed sarge and Icedove and I consistently observe in the Error
Console:

Error: [Exception... update.locale file doesn't exist in either the XCurProcD 
or GreD directories  nsresult: 0x80520012 (NS_ERROR_FILE_NOT_FOUND)  
location: JS frame :: file:///usr/lib/icedove/components/nsUpdateService.js :: 
getLocale :: line 608  data: no]
Source File: file:///usr/lib/icedove/components/nsUpdateService.js
Line: 608

-- System Information:
Debian Release: 6.0.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages icedove depends on:
ii  debianutils   3.4Miscellaneous utilities specific t
ii  fontconfig2.8.0-2.1  generic font configuration library
ii  libasound21.0.23-2.1 shared library for ALSA applicatio
ii  libatk1.0-0   1.30.0-1   The ATK accessibility toolkit
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-6   The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.24-4+squeeze1  simple interprocess messaging syst
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libfreetype6  2.4.2-2.1+squeeze3 FreeType 2 font engine, shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  libjpeg62 6b1-1  The Independent JPEG Group's JPEG 
ii  libnspr4-0d   4.8.6-1NetScape Portable Runtime Library
ii  libnss3-1d3.12.8-1+squeeze4  Network Security Service libraries
ii  libpango1.0-0 1.28.3-1+squeeze2  Layout and rendering of internatio
ii  libpng12-01.2.44-1+squeeze1  PNG library - runtime
ii  libsqlite3-0  3.7.3-1SQLite 3 shared library
ii  libstartup-notificati 0.10-1 library for program launch feedbac
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxrender1   1:0.9.6-1  X Rendering Extension client libra
ii  libxt61:1.0.7-1  X11 toolkit intrinsics library
ii  psmisc22.11-1utilities that use the proc file s
ii  zlib1g1:1.2.3.4.dfsg-3   compression library - runtime

Versions of packages icedove recommends:
ii  myspell-en-us [myspell-dictio 1:3.2.1-2  English_american dictionary for my

Versions of packages icedove suggests:
ii  libdbus-glib-1-20.88-2.1 simple interprocess messaging syst
ii  libgconf2-4 2.28.1-6 GNOME configuration database syste
ii  libgnome2-0 2.30.0-1 The GNOME library - runtime files
ii  libgnomevfs2-0  1:2.24.3-1   GNOME Virtual File System (runtime
ii  libgssapi-krb5-21.8.3+dfsg-4squeeze5 MIT Kerberos runtime libraries - k
ii  ttf-lyx 1.6.7-1  TrueType versions of some TeX font

-- 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#621035: apt-xapian-index: Description typo? s/axi-search/axi-cache

2011-04-05 Thread Jack Bates
Package: apt-xapian-index
Version: 0.41
Severity: minor

Package description mentions axi-search in one place and axi-cache in 
another, though only the command axi-cache exists

I think this is a typo?

Thanks for maintaining apt-xapian-index!

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

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

Versions of packages apt-xapian-index depends on:
ii  python2.6.6-12   interactive high-level object-orie
ii  python-apt0.7.100.2  Python interface to libapt-pkg
ii  python-debian 0.1.18 Python modules to work with Debian
ii  python-support1.0.11 automated rebuilding support for P
ii  python-xapian 1.2.4-1Xapian search engine interface for

apt-xapian-index recommends no packages.

Versions of packages apt-xapian-index suggests:
ii  app-install-data  2010.11.17 Application Installer Data Files
ii  python-xdg0.19-2 Python library to access freedeskt

-- 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#615227: Would you cosider accepting this update to address bug 615227 in squeeze?

2011-03-11 Thread Jack Bates
Hi, to address bug 615227 in squeeze, would you consider accepting an
updated package with just these changes?
http://nottheoilrig.com/debian/201103110/patch

 - or do you have any other feedback for me, what is the best thing to
do?

Thank you Rik Theys for reporting this bug, finding the upstream patch,
testing it, and helping update the packaging!



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



Bug#614029: pbuilder: Hard to avoid debootstrap failure, Release signed by unknown key (key id AED4B06F473041FA)

2011-02-18 Thread Jack Bates
Package: pbuilder
Version: 0.199+nmu1
Severity: wishlist

My situation is that I'm trying to build some packages for Debian unstable, on
an Ubuntu system, using cowbuilder

To create base.cow image, I first tried,

 $ sudo cowbuilder --create --distribution unstable --mirror 
http://mirrors.kernel.org/debian/
 [...]
 E: Release signed by unknown key (key id AED4B06F473041FA)

Guessing that I was missing the debian-archive-keyring package, I installed it
and tried again, with same result. I double checked that the
debian-archive-keyring package includes key id AED4B06F473041FA

By studying the debootstrap manpage I learned that, By  default, Release file
signatures are not checked. I used the cowbuilder --debug option to find the
--keyring option passed to debootstrap, and configured in
/usr/share/pbuilder/pbuilderrc

Next I tried to omit the debootstrap --keyring option using the cowbuilder
--debootstrapopts option, without success - it's apparently appended to value
from /usr/share/pbuilder/pbuilderrc, in pbuilder-checkparams

Next I tried to omit the debootstrap --keyring option using a ~/.pbuilderrc
file,

 DEBOOTSTRAPOPTS=--variant=buildd

This failed because sudo resets the environment ($HOME),

 W: /root/.pbuilderrc does not exist

Next I tried,

 $ sudo sh -c HOME=$HOME cowbuilder --create --distribution unstable --mirror 
http://mirrors.kernel.org/debian/;
 [...]
 E: Release signed by unknown key (key id AED4B06F473041FA)

This failed to omit the --keyring option. My bash knowledge isn't strong -
maybe it's possible to have two variables with same name, one a scalar and one
a list? I tried,

 DEBOOTSTRAP=(--variant=buildd)

This worked! It omitted the --keyring option and the base.cow image built
successfully. However it's prohibitively difficult to figure out

If the --debootstrapopts option overrode DEBOOTSTRAPOPTS in
/usr/share/pbuilder/pbuilderrc, then it would be little easier to figure out.
If installing debian-archive-keyring was all that was required, I'd be done
after my first guess - maybe debootstrap could look in both keyrings? or in
some merged keyring? I dunno...

As I write this I found Ubuntu bug,
https://bugs.launchpad.net/ubuntu/+source/pbuilder/+bug/599695. Unfortunately I
didn't check the Ubuntu bug tracker before trying to debug my issue - I did
check the Debian bug tracker but didn't find my issue mentioned

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

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

Versions of packages pbuilder depends on:
ii  coreutils 8.5-1  GNU core utilities
ii  debconf [debconf-2.0] 1.5.38 Debian configuration management sy
ii  debianutils   3.4.3  Miscellaneous utilities specific t
ii  debootstrap   1.0.26 Bootstrap a basic Debian system
ii  wget  1.12-2.1   retrieves files from the web

Versions of packages pbuilder recommends:
ii  devscripts2.10.69scripts to make the life of a Debi
ii  fakeroot  1.14.5-1   Gives a fake root environment
ii  sudo  1.7.4p4-6  Provide limited super user privile

Versions of packages pbuilder suggests:
ii  cowdancer 0.62+nmu2  Copy-on-write directory tree utili
ii  gdebi-core0.6.4  Simple tool to install deb files
pn  pbuilder-uml  none (no description available)

-- debconf information:
  pbuilder/mirrorsite: http://mirrors.kernel.org/debian/
  pbuilder/nomirror:
  pbuilder/rewrite: false



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



Bug#577141: A little update

2010-07-27 Thread Jack Bates
On Fri, 2010-07-23 at 10:21 +0100, Adam D. Barratt wrote:
 On Fri, July 23, 2010 00:23, Julien Cristau wrote:
  On Tue, Jul 20, 2010 at 08:58:10 -0700, Jack Bates wrote:
 
  Hi, to address bug #577141 in lenny, would you consider an out of bounds
  update of the libapache2-mod-gnutls package to 0.5.5-1?
 
  What would the diff look like?  (A minimal targetted fix is usually
  preferred over a full upgrade to a newer upstream version.)
 
 After stripping out autotools noise and documentation changes, the
 interesting section of the diff appears to be
 
  11 files changed, 216 insertions(+), 130 deletions(-)
 
 which is far from being the worst diffstat I've ever seen for a proposed
 stable update.  However, reading the bug report and looking at the
 upstream tracker indicates that the fix required for the bug is three
 lines long -
 http://issues.outoforder.cc/file_download.php?file_id=33type=bug ; I'd be
 happy to accept a stable update containing just that fix.

Thanks Adam,

I applied the patch to the package currently in stable (0.5.1-1) and
added a debian/changelog entry, mod-gnutls (0.5.1-2) stable; urgency=low

http://www.sfu.ca/~jdbates/debian/pool/mod-gnutls/

The package has no more recent changelog entries, e.g. from the packages
in testing/unstable - similarly I won't include this changelog entry in
the next upload to testing/unstable?

Here's a diff between this package and the package currently in stable,
http://www.sfu.ca/~jdbates/debian/pool/mod-gnutls/patch

Now I think I simply ask my Debian sponsor to upload this package

This is the first time I will upload to stable - please let me know if
I'm making any mistakes?

Thanks again



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



Bug#577141: A little update

2010-07-22 Thread Jack Bates
Hi, to address bug #577141 in lenny, would you consider an out of bounds
update of the libapache2-mod-gnutls package to 0.5.5-1?

On Tue, 2010-07-20 at 05:53 +0200, Alster wrote:
 I just checked with a DD friend of mine, who kindly explained the
 situation of this bug to me. He indicated that it may be worth a try to
 check with release team whether they would support an out of bounds
 update of this package to 0.5.5-1 within lenny.
 
 So, since this bug breaks this security related package if combined with
 another package of the same release, I'd appreciate if you could check
 with the release team whether this is a possible way to go.
 
 Alster
 




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



Bug#577141: A little update

2010-07-22 Thread Jack Bates
On Tue, 2010-07-20 at 05:53 +0200, Alster wrote:
 I just checked with a DD friend of mine, who kindly explained the
 situation of this bug to me. He indicated that it may be worth a try to
 check with release team whether they would support an out of bounds
 update of this package to 0.5.5-1 within lenny.
 
 So, since this bug breaks this security related package if combined with
 another package of the same release, I'd appreciate if you could check
 with the release team whether this is a possible way to go.

Thanks Alister - I also had to check the bug tracking documentation
before responding to this bug. My intention was to close this bug for
the package versions in testing and unstable, but leave open for the
version in lenny. I guess this is the same information you got from the
friend of yours

As for lenny, as you suggest, I'll check with the release team whether
an out of bounds update of this package to 0.5.5-1 is a possible way to
go

Thanks again



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



Bug#588909: mod-gnutls: new version 0.5.7 available

2010-07-19 Thread Jack Bates
Thanks for your report Roberto, 0.5.7 depends on GnuTLS 2.10.0, so I'll
upload as soon as GnuTLS 2.10.0 is uploaded

Because GnuTLS is currently uploaded to experimental, it may not be
planned for squeeze, in which case mod_gnutls 0.5.7 will also not be
included in squeeze

On Tue, 2010-07-13 at 13:54 +0200, Roberto Lumbreras wrote:
 Package: mod-gnutls
 Version: 0.5.6
 Severity: normal
 
 There is a new version of mod_gnutls available at
 http://www.outoforder.cc/downloads/mod_gnutls/mod_gnutls-0.5.7.tar.bz2
 
 Changelog for version 0.5.7:
 07/01/2010
 *   Optimization in session caching.
 *   Added support for session tickets, allowing
 resumption even without any cache.
 *   Depends on GnuTLS with safe renegotiation support
 included.
 
 Regards,
 Roberto Lumbreras
 Debian Developer




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



Bug#588751: iceweasel: 4.0 beta 1

2010-07-12 Thread Jack Bates
On Mon, 2010-07-12 at 09:50 +0200, Mike Hommey wrote:
 On Sun, Jul 11, 2010 at 02:00:42PM -0700, Jack Bates wrote:
  Package: iceweasel
  Version: 3.5.10-1
  Severity: wishlist
  
  Firefox 4.0 beta 1 is available, http://www.mozilla.com/en-US/firefox/beta/
  
  (No doubt you're already aware)
  
  I'd love to start trying an Iceweasel package of this version
  
  Much thanks for maintaining Iceweasel in Debian!
 
 http://glandium.org/blog/?p=1032

Oh fantastic! Thanks Mike : )



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



Bug#349910: list packages which Depends:

2010-05-29 Thread Jack Bates
I similarly wish for a way to list packages which Depends: on a given
package, without also listing packages which Recommends: or
Suggests: the packages



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



Bug#578905: updated debian package

2010-05-06 Thread Jack Bates
Hola Debian sponsor, can I please trouble you for an upload?

http://www.sfu.ca/~jdbates/debian/pool/libnet-dbus-perl/



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



Bug#578905: libnet-dbus-perl: FTBFS with perl 5.12.0-1: long doubles

2010-05-04 Thread Jack Bates
On Tue, 2010-05-04 at 11:21 +0300, Niko Tyni wrote:
 On Fri, Apr 23, 2010 at 04:17:17PM +0300, Niko Tyni wrote:
  As the package built fine in my earlier tests with 5.12.0~rc3-1, the failure
  is almost certainly due to 5.12.0-1 being configured with -Duselongdouble.
 
 Proposed patch attached, this builds fine for me on both 5.10.1-12 and 
 5.12.0-1
 on amd64.

Much thanks Niko - I confirmed that this failure is fixed in this
upstream commit,
http://hg.berrange.com/libraries/net-dbus--devel?cs=4d79f66fdddc

When do you plan to complete the 5.12 transition? Shall I upload a
patched package, or ask upstream when they plan the next release?



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



Bug#575770: xml-core: debhelper sequence addon

2010-03-29 Thread Jack Bates
Package: xml-core
Version: 0.13
Severity: wishlist

http://www.sfu.ca/~jdbates/tmp/debian/201003280/xml_core.pm

Would you consider distributing this ^ debhelper sequence addon with the
xml-core package?

It adds dh_installxmlcatalogs to dh command sequences

Sequence addons are documented in,
/usr/share/doc/debhelper/PROGRAMMING.gz

When xml_core.pm is installed in /usr/share/perl5/Debian/Debhelper/Sequence,
then debian/rules can use the dh --with xml-core option

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

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

Versions of packages xml-core depends on:
ii  sed   4.2.1-6The GNU sed stream editor
ii  sgml-base 1.26   SGML infrastructure and SGML catal

xml-core recommends no packages.

Versions of packages xml-core suggests:
ii  debhelper 7.4.15 helper programs for debian/rules

-- no debconf information
#!/usr/bin/perl

use warnings;
use strict;
use Debian::Debhelper::Dh_Lib;

insert_after('dh_installcatalogs', 'dh_installxmlcatalogs');

1


Bug#575282: updated debian package

2010-03-26 Thread Jack Bates
Hello Debian sponsor, can I please trouble you for an upload?

http://www.sfu.ca/~jdbates/debian/pool/mod-gnutls/



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



Bug#575282: libapache2-mod-gnutls: new upstream version 0.5.6 available

2010-03-24 Thread Jack Bates
thanks daniel - i just saw the msg from Nikos Mavrogiannopoulos myself -
will update the package promptly : )

On Wed, 2010-03-24 at 13:55 -0400, Daniel Kahn Gillmor wrote:
 Package: libapache2-mod-gnutls
 Version: 0.5.5-1
 Severity: wishlist
 
 According to upstream, mod_gnutls 0.5.6 is now available, which fixes
 a few problems and adds support for chained client certificates.
 It would be great to have that version in debian.
 
 Thanks,
 
 --dkg
 
 -- System Information:
 Debian Release: squeeze/sid
   APT prefers testing
   APT policy: (500, 'testing'), (200, 'unstable'), (1, 'experimental')
 Architecture: i386 (i686)
 
 Kernel: Linux 2.6.32-4-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 libapache2-mod-gnutls depends on:
 ii  libc6   2.10.2-6 Embedded GNU C Library: Shared 
 lib
 ii  libgcrypt11 1.4.5-2  LGPL Crypto library - runtime 
 libr
 ii  libgnutls26 2.8.5-2  the GNU TLS library - runtime 
 libr
 ii  libgpg-error0   1.6-1library for common error values 
 an
 ii  libtasn1-3  2.4-1Manage ASN.1 structures (runtime)
 ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime
 
 libapache2-mod-gnutls recommends no packages.
 
 libapache2-mod-gnutls 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#570600: ERROR: ld.so: object '/usr/lib/cowdancer/libcowdancer.so' from LD_PRELOAD cannot be preloaded: ignored.

2010-02-19 Thread Jack Bates
Package: cowbuilder
Version: 0.61
Severity: normal

I get this error trying to install Intel Integrated Performance Primitives in a 
cowbuilder chroot,

 # ./install.sh
 ERROR: ld.so: object '/usr/lib/cowdancer/libcowdancer.so' from LD_PRELOAD 
cannot be preloaded: ignored.
 [...]
 # 

To reproduce, login to cowbuilder chroot, install libc6-amd64, download and 
extract Intel Integrated Performance Primitives, 
http://software.intel.com/en-us/articles/non-commercial-software-download/

- then run ./install.sh

I only experience this problem when the chroot architecture is i386 - when the 
chroot architecture is amd64, I don't need to install libc6-amd64 and 
./install.sh doesn't report this error

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

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

Versions of packages cowbuilder depends on:
ii  cowdancer 0.61   Copy-on-write directory tree utili
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  pbuilder  0.196  personal package builder for Debia

cowbuilder recommends no packages.

cowbuilder 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#565429: libkdb5-4: missing Replaces: libkadm5srv6?

2010-01-15 Thread Jack Bates
Package: libkdb5-4
Version: 1.7+dfsg-4
Severity: normal

$ sudo aptitude -DR dist-upgrade
[...]
The following packages have unmet dependencies:
  libkdb5-4: Conflicts: libkadm5srv6 but 1.7+dfsg-4 is installed.
The following actions will resolve these dependencies:

Keep the following packages at their current version:
libkdb5-4 [1.7+dfsg-4 (now)]

Tier: Safe actions (1)

Accept this solution? [Y/n/q/?] 


Not sure - does this ^ mean libkdb5-4 should Replaces: libkadm5srv6 instead of 
Conflicts: libkadm5srv6?

Thanks for maintaining Debian MIT Kerberos packages!

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

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

Versions of packages libkdb5-4 depends on:
ii  libc6 2.10.2-4   Embedded GNU C Library: Shared lib
ii  libcomerr21.41.9-1   common error description library
ii  libgssrpc41.7+dfsg-4 MIT Kerberos runtime libraries - G
ii  libk5crypto3  1.7+dfsg-4 MIT Kerberos runtime libraries - C
ii  libkeyutils1  1.2-12 Linux Key Management Utilities (li
ii  libkrb5-3 1.7+dfsg-4 MIT Kerberos runtime libraries
ii  libkrb5support0   1.7+dfsg-4 MIT Kerberos runtime libraries - S

libkdb5-4 recommends no packages.

Versions of packages libkdb5-4 suggests:
pn  krb5-doc  none (no description available)
pn  krb5-user none (no description available)

-- no debconf information



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



Bug#556164: closed by Junichi Uekawa dan...@debian.org (Bug#556164: fixed in pbuilder 0.194)

2009-12-02 Thread Jack Bates
Great! Thanks a lot : )

On Wed, 2009-12-02 at 15:42 +, Debian Bug Tracking System wrote:
 This is an automatic notification regarding your Bug report
 which was filed against the cowbuilder package:
 
 #556164: cowbuilder: Could not remove original tree
 
 It has been closed by Junichi Uekawa dan...@debian.org.
 
 Their explanation is attached below along with your original report.
 If this explanation is unsatisfactory and you have not received a
 better one in a separate message then please contact Junichi Uekawa 
 dan...@debian.org by
 replying to this email.
 
 
 email message attachment
   Forwarded Message 
  From: Junichi Uekawa dan...@debian.org
  To: 556164-cl...@bugs.debian.org
  Subject: Bug#556164: fixed in pbuilder 0.194
  Date: Wed, 02 Dec 2009 15:39:34 +
  
  Source: pbuilder
  Source-Version: 0.194
  
  We believe that the bug you reported is fixed in the latest version of
  pbuilder, which is due to be installed in the Debian FTP archive:
  
  pbuilder-uml_0.194_amd64.deb
to main/p/pbuilder/pbuilder-uml_0.194_amd64.deb
  pbuilder_0.194.dsc
to main/p/pbuilder/pbuilder_0.194.dsc
  pbuilder_0.194.tar.gz
to main/p/pbuilder/pbuilder_0.194.tar.gz
  pbuilder_0.194_all.deb
to main/p/pbuilder/pbuilder_0.194_all.deb
  
  
  
  A summary of the changes between this version and the previous one is
  attached.
  
  Thank you for reporting the bug, which will now be closed.  If you
  have further comments please address them to 556...@bugs.debian.org,
  and the maintainer will reopen the bug report if appropriate.
  
  Debian distribution maintenance software
  pp.
  Junichi Uekawa dan...@debian.org (supplier of updated pbuilder package)
  
  (This message was generated automatically at their request; if you
  believe that there is a problem with it please contact the archive
  administrators by mailing ftpmas...@debian.org)
  
  
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  Format: 1.8
  Date: Wed, 02 Dec 2009 23:02:42 +0900
  Source: pbuilder
  Binary: pbuilder pbuilder-uml
  Architecture: source all amd64
  Version: 0.194
  Distribution: unstable
  Urgency: low
  Maintainer: Debian pbuilder maintenance team 
  pbuilder-ma...@lists.alioth.debian.org
  Changed-By: Junichi Uekawa dan...@debian.org
  Description: 
   pbuilder   - personal package builder for Debian packages
   pbuilder-uml - user-mode-linux version of pbuilder
  Closes: 556164
  Changes: 
   pbuilder (0.194) unstable; urgency=low
   .
 * Gracefully handle non-existing bind-mount in --bindmount option
   (closes: #556164)
  Checksums-Sha1: 
   db4f5fb00dd6b790b7ba1b206ee031ab04a5ae89 1095 pbuilder_0.194.dsc
   9963960dc793224aafcc2c9fb00531c12e4fdbb4 954818 pbuilder_0.194.tar.gz
   18125f44e89632218dc0851e693052375333f37a 331984 pbuilder_0.194_all.deb
   0b8c3a2d7eac11f93360d84ed40a06d81c810907 39330 pbuilder-uml_0.194_amd64.deb
  Checksums-Sha256: 
   bef6858dec43237fbf122c0d96b9c5d39bad49afaf796a0dc006a5b4b650761c 1095 
  pbuilder_0.194.dsc
   385a3a131e8ac3464047da713acc6cd7f1f48ed7150aa33d6d3515ce10ceba54 954818 
  pbuilder_0.194.tar.gz
   f267bf75a11a78623c5aa718dc223bdfd545fbcc5e0cf8617de7518848cb1437 331984 
  pbuilder_0.194_all.deb
   0d4c0e9f2d915ce76fa02b4a6c55e1a916ef83d36e458a4dc10b86247d03815e 39330 
  pbuilder-uml_0.194_amd64.deb
  Files: 
   11ba61826489ea2086e77544e7351037 1095 devel extra pbuilder_0.194.dsc
   1e077b78e7feba3f7a0437920debb065 954818 devel extra pbuilder_0.194.tar.gz
   02ed10dc3521e0df069fbbe47d8d3ec6 331984 devel extra pbuilder_0.194_all.deb
   ce6e2beedc1e02c8a193d4956386 39330 devel extra 
  pbuilder-uml_0.194_amd64.deb
  
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v1.4.9 (GNU/Linux)
  
  iD8DBQFLFnVx2Dd9TugeVcERAgi1AJ9Uat66JvFjgCjCmnO8ulHKmcKzUQCfcg21
  fprlhDMU8ZCPD5Pwjnrs50U=
  =OCBk
  -END PGP SIGNATURE-
  
  
 email message attachment
   Forwarded Message 
  From: Jack Bates ms...@freezone.co.uk
  To: Debian Bug Tracking System sub...@bugs.debian.org
  Subject: cowbuilder: Could not remove original tree
  Date: Fri, 13 Nov 2009 14:12:53 -0800
  
  Package: cowbuilder
  Version: 0.58
  Severity: normal
  
  $ sudo cowbuilder --create
  [...]
  rm: cannot remove `/var/cache/pbuilder/base.cow/proc/32334/sessionid': 
  Permission denied
  rm: cannot remove 
  `/var/cache/pbuilder/base.cow/proc/32334/coredump_filter': Permission denied
  rm: cannot remove `/var/cache/pbuilder/base.cow/proc/32334/io': Permission 
  denied
  Could not remove original tree
  $ 
  
  -- System Information:
  Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable')
  Architecture: i386 (i686)
  
  Kernel: Linux 2.6.31-1-686 (SMP w/2 CPU cores)
  Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
  Shell: /bin/sh linked to /bin/dash
  
  




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



Bug#556164: Missing bind mount

2009-11-23 Thread Jack Bates
hmm - i think one will get this error,

[...]
rm: cannot remove `/var/cache/pbuilder/base.cow/proc/32334/sessionid': 
Permission denied
rm: cannot remove `/var/cache/pbuilder/base.cow/proc/32334/coredump_filter': 
Permission denied
rm: cannot remove `/var/cache/pbuilder/base.cow/proc/32334/io': Permission 
denied
Could not remove original tree

- whenever one calls cowbuilder with a --bindmounts option that doesn't
exist

i thought this was maybe a logic problem with cowbuilder - missing a
cleanup step when a bindmount doesn't exist, or something - but i
haven't looked closely at all

maybe this is the expected cowbuilder behaviour when a bindmount doesn't
exist?

On Tue, 2009-11-24 at 06:28 +0900, Junichi Uekawa wrote:
 so, is that a problem on cowdancer or a configuration problem on your
 side?
 At Fri, 13 Nov 2009 15:21:53 -0800,
 Jack Bates wrote:
  
  This was due to a bind mount which didn't exist
  
  Creating the bind mount allowed cowbuilder to complete successfully




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



Bug#556164: cowbuilder: Could not remove original tree

2009-11-13 Thread Jack Bates
Package: cowbuilder
Version: 0.58
Severity: normal

$ sudo cowbuilder --create
[...]
rm: cannot remove `/var/cache/pbuilder/base.cow/proc/32334/sessionid': 
Permission denied
rm: cannot remove `/var/cache/pbuilder/base.cow/proc/32334/coredump_filter': 
Permission denied
rm: cannot remove `/var/cache/pbuilder/base.cow/proc/32334/io': Permission 
denied
Could not remove original tree
$ 

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

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



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



Bug#556164: Missing bind mount

2009-11-13 Thread Jack Bates
This was due to a bind mount which didn't exist

Creating the bind mount allowed cowbuilder to complete successfully



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



Bug#556177: iceweasel: 3.6 beta 2

2009-11-13 Thread Jack Bates
Package: iceweasel
Version: 3.5.5-1
Severity: wishlist

Firefox 3.6 beta 2 is available, 
https://developer.mozilla.org/devnews/index.php/2009/11/11/firefox-3-6-beta-revision-2-update-published/

I'm sure you're already aware

I'd love to start trying an Iceweasel package of this version

Thanks for maintaining Iceweasel in Debian

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

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

Versions of packages iceweasel depends on:
ii  debianutils   3.2.1  Miscellaneous utilities specific t
ii  fontconfig2.6.0-4generic font configuration library
ii  libc6 2.10.1-7   GNU C Library: Shared libraries
ii  libgcc1   1:4.4.2-2  GCC support library
ii  libglib2.0-0  2.22.2-2   The GLib library of C routines
ii  libgtk2.0-0   2.18.3-1   The GTK+ graphical user interface 
ii  libnspr4-0d   4.8.2-1NetScape Portable Runtime Library
ii  libstdc++64.4.2-2The GNU Standard C++ Library v3
ii  procps1:3.2.8-2  /proc file system utilities
ii  psmisc22.8-1 utilities that use the proc file s
ii  xulrunner-1.9.1   1.9.1.5-1  XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
pn  latex-xft-fonts  none  (no description available)
ii  libkrb53 1.6.dfsg.4~beta1-13 Transitional library package/krb4 
pn  mozplugger   none  (no description available)
pn  ttf-mathematica4.1   none  (no description available)
pn  xfonts-mathmlnone  (no description available)
pn  xprint   none  (no description available)
ii  xulrunner-1.9.1-gnom 1.9.1.5-1   Support for GNOME in xulrunner app

-- 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#526893: karmic suite

2009-11-05 Thread Jack Bates
http://www.sfu.ca/~jdbates/tmp/debian/200911050/patch

^ applied this patch to create ubuntu pdebuild chroots

tested ubuntu karmic - worked successfully

successfully created karmic pdebuild chroot and rebuilt a package



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



Bug#512443: fixed upstream

2009-10-23 Thread Jack Bates
Simon Pepping added a -catalog option in revision 825875,

http://thread.gmane.org/gmane.text.xml.fop.user/29585

http://svn.apache.org/viewvc?view=revisionrevision=825875

After working around this issue,
http://thread.gmane.org/gmane.text.xml.commons.devel/1313

- I successfully built a PDF with the following command,

 $ ./fop -catalog -xml icaatom.html -xsl icaatom.xsl icaatom.pdf

I removed the libxml-commons-resolver1.1-java package because it's
included in Java 6, which I'm running



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



Bug#512443: same problem

2009-10-06 Thread Jack Bates
i am experiencing this same problem - i also installed
libxml-commons-resolver1.1-java, but fop is still complaining,

java.io.IOException: Server returned HTTP response code: 503 for URL:
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd



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



Bug#542055: libplexus-containers-java: trying to overwrite `/usr/share/java/plexus-container-default.jar'

2009-08-17 Thread Jack Bates
Package: libplexus-containers-java
Version: 1.0~beta2-2
Severity: normal

Unpacking replacement libplexus-containers-java ...
dpkg: error processing 
/var/cache/apt/archives/libplexus-containers-java_1.0~beta3.0.7-2_all.deb 
(--unpack):
 trying to overwrite `/usr/share/java/plexus-container-default.jar', which is 
also in package libplexus-container-default-java

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

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

Versions of packages libplexus-containers-java depends on:
ii  java-gcj-compat [java2-runt 1.0.80-5.1   Java runtime environment using GIJ
ii  libgoogle-collections-java  0~20080808-3 suite of collections and related g
ii  libplexus-classworlds-java  1.5.0-2  Class loading utilities for the Pl
ii  libplexus-utils-java1:1.5.15-2   utilities for the Plexus framework
ii  libxbean-java   3.5-3plugin based Java application serv
ii  openjdk-6-jre [java2-runtim 6b16-4   OpenJDK Java runtime, using Hotspo

libplexus-containers-java recommends no packages.

libplexus-containers-java 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#541544: dash: heredoc and shell expansion (backtick)

2009-08-14 Thread Jack Bates
Package: dash
Version: 0.5.5.1-2.3
Severity: normal

The behavior I'm experiencing with DASH is that heredoc and shell expansion 
(backtick) don't work in the same command

I expect something like this to work,

jab...@tad:~$ cat - EOF  ls `pwd`
 blah
 EOF
blah
2009-07-25--20.18.36  Desktopjabber.git  Pictures trash
2009-07-25--20.24.25  Documents  Music   Podcasts Videos
200907270 Downloads  pbuilderpublic_html  workspace
backupjabber pearselenium
jab...@tad:~$ 

- but in DASH it doesn't,

$ cat - EOF  ls `pwd`
2009-07-25--20.18.36  Desktopjabber.git  Pictures trash
2009-07-25--20.24.25  Documents  Music   Podcasts Videos
200907270 Downloads  pbuilderpublic_html  workspace
backupjabber pearselenium
$ blah
dash: blah: not found
$ EOF
dash: EOF: not found
$ 

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

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

Versions of packages dash depends on:
ii  debianutils   3.2Miscellaneous utilities specific t
ii  dpkg  1.15.3.1   Debian package management system
ii  libc6 2.9-23 GNU C Library: Shared libraries

dash recommends no packages.

dash suggests no packages.

-- debconf information:
* dash/sh: true



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



Bug#508930: how's it going?

2009-08-07 Thread Jack Bates
hi dann - just checking how it's going

here's the version of svn-load that i'm using,
http://github.com/jablko/dreamhost/blob/5f98b40985c8caf0875fb44a6cda80c1ae20aee8/svn-load

i'd love to get these changes into the distributed version of
svn-load : )



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



Bug#397648: [pkg-ntp-maintainers] Bug#515702: Bug#515702: ntpdate: no servers can be used with default configuration

2009-02-24 Thread Jack Bates
On Thu, 2009-02-19 at 22:35 +0100, Kurt Roeckx wrote:
 He says he somehow ended up with a blank /etc/ntp.conf file, which
 shouldn't happen.

Thanks Kurt, on further investigation I realize that the ntpdate package
does not distribute an ntp.conf file, blank or otherwise. I think the
blank ntp.conf file I observe is a symptom of bug #397648, which has
been forwarded upstream:
http://bugzilla.gnome.org/show_bug.cgi?id=449267

Unfortunately neither bug #397648 nor the upstream bug show any recent
activity : (

After deleting the blank ntp.conf file and without manually
reconfiguring /etc/default/ntpdate, I can run ntpdate-debian



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



Bug#508930: add --username, --password, and --no-auth-cache options

2009-02-17 Thread Jack Bates
On Sun, 2009-02-15 at 16:45 -0700, dann frazier wrote:
 One option is to rework NotifiedClient() - make it a class and have it
 store the configuration for future instances. Another option is
 to use a single client instance everywhere. I don't really like the
 aesthetic of passing the client parameter around everywhere but, then
 again, we're creating a new instance in nearly every function call and
 that's pretty ugly as well. I suppose we could just make it a
 global variable. What do you think?

Awesome, thanks for this response Dann : )

What do I think... My intuition tells me that it will be cleaner to use
one client instance throughout the script, but I do not have a strong
justification...

Also I notice that client is already a global variable, and simply
dropping the extra client = NotifiedClient() calls means the same
client instance is used throughout the script... Please correct me if I
am mistaken...

Here is an updated patch which drops the extra calls:
http://cgi.sfu.ca/~jdbates/tmp/svn-load/200902170/patch

I tried this patch and observed that it works for me.



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



Bug#515702: ntpdate: no servers can be used with default configuration

2009-02-16 Thread Jack Bates
Package: ntpdate
Version: 1:4.2.4p4+dfsg-8
Severity: normal

The default configuration shipped with ntpdate is NTPDATE_USE_NTP_CONF=yes, but 
a blank /etc/ntp.conf file. ntpdate does not depend on the ntp package, which 
distributes a non-blank /etc/ntp.conf

The ntpdate-debian script works great after manually setting 
NTPDATE_USE_NTP_CONF=no, or creating a /etc/ntp.conf. However if ntpdate-debian 
is run without manual reconfiguration, using just the defaults, it results in 
no servers can be used, exiting

Would it not be better to distribute the default ntpdate configuration with 
NTPDATE_USE_NTP_CONF=no, or distribute a working ntp.conf? so ntpdate-debian 
works even without manual reconfiguration?

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

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



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



Bug#515707: acpi-support: add 1000H to if-asus-eee.sh models

2009-02-16 Thread Jack Bates
Package: acpi-support
Version: 0.109-11
Severity: normal

After freshly installing Lenny and acpi-support on an EeePC 1000HA, the volume
buttons do not work. I think this is because the model reported by DeviceConfig
is 1000H. After adding 1000H to if-asus-eee.sh, the volume buttons work.

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

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

Versions of packages acpi-support depends on:
ii  acpi-support-base 0.109-11   scripts for handling base ACPI eve
ii  acpid 1.0.8-2Utilities for using ACPI power man
ii  dmidecode 2.9-1  Dump Desktop Management Interface 
ii  finger0.17-12user information lookup program
ii  hdparm8.9-3  tune hard disk parameters for high
ii  laptop-detect 0.13.7 attempt to detect a laptop
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip
ii  powermgmt-base1.30+nmu1  Common utils and configs for power
ii  vbetool   1.1-2  run real-mode video BIOS code to a
ii  x11-xserver-utils 7.3+5  X server utilities

Versions of packages acpi-support recommends:
ii  dbus  1.2.1-5simple interprocess messaging syst
ii  hal   0.5.11-8   Hardware Abstraction Layer
pn  nvclock   none (no description available)
ii  pm-utils  1.2.4-2utilities and scripts for power ma
pn  radeontoolnone (no description available)
pn  toshset   none (no description available)

Versions of packages acpi-support suggests:
pn  laptop-mode-tools none (no description available)

-- no debconf information



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



Bug#514005: mod_gnutls: HTTPS server variable set incorrectly for mod_rewrite's RewriteCond

2009-02-10 Thread Jack Bates
Sander Marechal reports that mod_rewrite does not find the value on in
the %{HTTPS} server variable when HTTPS is enabled with mod_gnutls:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514005

I confirmed that this behavior still exists in mod_gnutls trunk revision
404. I used this RewriteRule to copy the %{HTTPS} server variable to an
environment variable:

RewriteRule . - [E=FOO:%{HTTPS}]

Here is my httpd.conf:
http://cgi.sfu.ca/~jdbates/tmp/mod-gnutls/200902070/httpd.conf

Then I used this CGI to echo the environment variables:
http://cgi.sfu.ca/~jdbates/tmp/mod-gnutls/200902070/index.cgi

I used wget to get the output of this CGI:

$ wget https://localhost:8080/index.cgi --no-check-certificate

- here it is: http://cgi.sfu.ca/~jdbates/tmp/mod-gnutls/200902070/wget

Notice that while the value of the HTTPS environment variable is on,
the value of the FOO environment variable (which is where I copied the
value of the %{HTTPS} server variable with mod_rewrite) is off

On Tue, 2009-02-03 at 12:09 +0100, Sander Marechal wrote:
 Package: libapache2-mod-gnutls
 Version: 0.5.1-1
 Severity: normal
 File: mod_gnutls
 
 
 mod_gnutls does not set the HTTPS server variable correctly for mod_rewrite. 
 Note that this
 appears to be a different variable than the HTTPS environment variable.
 
 I have mod_gnutls loaded on my server and I have a simple rewrite rule to 
 redirect HTTPS POST calls
 on my non-SSL protected site to my SSL protected site, like so:
 
   RewriteEngine On
   RewriteCond %{REQUEST_METHOD} ^POST$
   RewriteCond %{HTTPS} ^off$
   RewriteRule ^xmlrpc(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L,QSA]
 
 Here is the output of ModRewrite with RewriteLogLevel 5. Note that the 
 contents of %{HTTPS}
 is off. Apparently mod_gnutls does not set this variable.
 
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (2) init rewrite engine 
 with requested uri 
 /xmlrpc
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (1) pass through /xmlrpc
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (3) [perdir 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/] strip per-dir 
 prefix: 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/xmlrpc - xmlrpc
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (3) [perdir 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/] applying 
 pattern '^xmlrpc(.*)$' to uri 'xmlrpc'
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (4) [perdir 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/] RewriteCond: 
 input='POST' pattern='^POST$' = matched
 
 # Here is the culprit
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (4) [perdir 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/] RewriteCond: 
 input='off' pattern='^off$' = matched
 
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (2) [perdir 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/] rewrite 
 'xmlrpc' - 'https://odf-shots.jejik.com/xmlrpc'
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (2) [perdir 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/] explicitly 
 forcing redirect with https://odf-shots.jejik.com/xmlrpc
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (1) [perdir 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/] escaping 
 https://odf-shots.jejik.com/xmlrpc for redirect
 192.168.1.2 - - [03/Feb/2009:11:56:09 +0100] 
 [odf-shots.jejik.com/sid#fb5bb0][rid#12dd688/initial] (1) [perdir 
 /home/sander/projects/odf-shots/trunk/server/www/app/webroot/] redirect to 
 https://odf-shots.jejik.com/xmlrpc?XDEBUG_SESSION_START=1 [REDIRECT/302]
 
 
 The contents of %{HTTPS} should have been set to on by mod_gnutls.
 
 -- System Information:
 Debian Release: 5.0
   APT prefers testing
   APT policy: (500, 'testing')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 2.6.25-2-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 libapache2-mod-gnutls depends on:
 ii  libc6 2.7-18 GNU C Library: Shared libraries
 ii  libgnutls26   2.4.2-4the GNU TLS library - runtime 
 libr
 
 libapache2-mod-gnutls recommends no packages.
 
 libapache2-mod-gnutls 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#511609: depends or recommends pkg-config?

2009-01-12 Thread Jack Bates
Package: libgnutls-dev
Version: 2.4.2-4
Severity: minor

Should libgnutls-dev depends or recommends pkg-config?

mod-gnutls build-depends on libgnutls-dev, but I got this error building the 
latest version of the package:

[...]
checking whether to build static libraries... yes
checking for Apache 2.0 version = 2.0.40... yes
checking whether DEFAULT_EXP_LIBEXECDIR is declared... no
checking for pkg-config... no
checking for libgnutls - version = 2.4.0... no
*** The pkg-config script installed by LIBGNUTLS could not be found
*** If LIBGNUTLS was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the PKG_CONFIG environment variable to the
*** full path to pkg-config.
configure: error:
***
*** libgnutls was not found. You may want to get it from
*** http://www.gnutls.org/
***
[...]

This error went away when I added pkg-config to the mod-gnutls build-depends...

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

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

Versions of packages libgnutls-dev depends on:
ii  libc6-dev [libc-dev]   2.7-18GNU C Library: Development Librari
ii  libgcrypt11-dev1.4.1-2   LGPL Crypto library - development 
ii  libgnutls262.4.2-4   the GNU TLS library - runtime libr
ii  libtasn1-3-dev 1.5-1 Manage ASN.1 structures (developme
ii  zlib1g-dev 1:1.2.3.3.dfsg-12 compression library - development

libgnutls-dev recommends no packages.

Versions of packages libgnutls-dev suggests:
ii  gnutls-bin2.4.2-4the GNU TLS library - commandline 
pn  gnutls-docnone (no description available)
pn  guile-gnutls  none (no description available)

-- no debconf information



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



Bug#511573: mod_gnutls: Failed to load Client CA File ... The given memory buffer is too short to hold parameters.

2009-01-12 Thread Jack Bates
Sander Marechal reports that he cannot use the CA certificates
distributed in the Debian ca-certificates package with mod_gnutls:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511573

I confirmed that this behaviour is the same in mod_gnutls trunk revision
403:

ket% /usr/sbin/apache2 -X -f httpd.conf
Syntax error on line 14 of httpd.conf:
GnuTLS: Failed to load Client CA File
'/etc/ssl/certs/ca-certificates.crt': (-51) The given memory buffer is
too short to hold parameters.
ket% 




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



Bug#511044: clean-patched depends on configure-stamp

2009-01-06 Thread Jack Bates
Package: cyrus-imapd-2.2
Version: 2.2.13
Severity: minor
Tags: patch

I encountered this error when trying to build the cyrus-imapd-2.2 package with 
pbuilder:

checking sasl/sasl.h usability... no
checking sasl/sasl.h presence... no
checking for sasl/sasl.h... no
configure: error: Cannot continue without libsasl2.
Get it from ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/.
make: *** [configure-stamp] Error 1
dpkg-buildpackage: failure: fakeroot debian/rules clean gave error exit status 2

I think this is because pbuilder runs the debian/rules clean target outside of 
the build root, but the build dependencies are not satisfied outside of the 
build root. With many packages, I do not encounter this error because the 
debian/rules clean target does not depend on (most of) the build dependencies.

I dropped the debian/rules clean-patched dependency on configure-stamp and 
built the package successfully. I wonder if this dependency is really 
necessary? If it could be safely dropped, then building the package with 
pbuilder would be more convenient...

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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
--- a/cyrus-imapd-2.2-2.2.13/debian/rules   2009-01-06 16:14:26.0 
-0800
+++ b/cyrus-imapd-2.2-2.2.13/debian/rules   2009-01-06 16:17:12.0 
-0800
@@ -92,7 +92,7 @@
 # This is done to make sure the build daemon's source tree is the 
 # same as the one I am using to produce the i386 debs. 
 clean: clean-patched unpatch
-clean-patched: configure-stamp
+clean-patched:
dh_testdir
dh_testroot
-xargs -t -r chmod +x  debian/executable.files


Bug#508930: add --username, --password, and --no-auth-cache options

2008-12-16 Thread Jack Bates
Package: svn-load
Version: 1.1
Severity: wishlist
Tags: patch

I wish svn-load supported the Subversion --username, --password, and
--no-auth-cache options:

http://cgi.sfu.ca/~jdbates/tmp/svn-load/200812160/patch

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

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

Versions of packages svn-load depends on:
ii  python2.5.2-3An interactive high-level object-o
ii  python-svn1.6.2-1A(nother) Python interface to Subv

svn-load recommends no packages.

svn-load 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#507305: --wc option should drop svn_url and svn_import_dir arguments

2008-11-29 Thread Jack Bates
Package: svn-load
Version: 1.0-1
Severity: wishlist

If the --wc option is specified, there is no use for the svn_url and 
svn_import_dir arguments, however svn-load complains:


ket% svn-load --no-prompt --wc $TMPDIR/vendor $TMPDIR/symfony 
Invalid syntax.
Usage: svn-load [options] svn_url svn_import_dir dir_v1 [dir_v2 [..]]

Options:
  -h, --helpshow this help message and exit
  -t tag_dircreate a tag copy in tag_dir, relative to svn_url
  --no-prompt   non-interactive mode - don't ask any questions
  --wc=working_copy use the already checked-out working copy at path
instead of checking out a fresh working copy
  -m FILE, --move-map=FILE
Load a mapping of regular expression patterns to
lambda functions of match objects from FILE
ket% 


Thank you for maintaining svn-load - it is a highly useful tool - and now even 
more so that I discovered the --wc option.

Among the uses I have for svn-load, I make daily vendor drops from an 
upstream Subversion repository into my Subversion repository. Recently I 
started needing to track which upstream revision was loaded into my repository. 
With the --wc option, I can:


#!/bin/sh

# Exit immediately if a simple command exits with a non-zero status
set -e

# Make temporary directory
TMPDIR=`mktemp -d`

# Export
REV=`svn export http://svn.symfony-project.com/branches/1.2 $TMPDIR/symfony | 
sed -n '$s/^Exported revision \([[:digit:]]\+\)\.$/\1/p'`

# Checkout
svn co http://example.com/svn/qubit/trunk/symfony/vendor $TMPDIR/vendor

# Record vendor revision
svn propset svn:vendor-rev $REV $TMPDIR/vendor

# Load vendor drop
svn-load --no-prompt --wc $TMPDIR/vendor 
http://example.com/svn/qubit/trunk/symfony vendor $TMPDIR/symfony

# Delete temporary directory
rm -rf $TMPDIR


I wish that if the --wc option is specified, then the svn_url and 
svn_import_dir arguments could be dropped, and svn-load would not complain.

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

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

Versions of packages svn-load depends on:
ii  python2.5.2-3An interactive high-level object-o
ii  python-svn1.6.1-1.1  A(nother) Python interface to Subv

svn-load recommends no packages.

svn-load suggests no packages.

-- no debconf information



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



Bug#500809: laptop overheating

2008-10-01 Thread Jack Bates
Package: acpi
Version: 1.2-1
Severity: normal

My Lenovo 3000 N100 recently started regularly overheating. It does not
actually power off, but it slows to a crawl and feels hot to touch. There is
even a faint smell of hot components.

First, I tried checking the temperature:

ket% cat /proc/acpi/thermal_zone/TZ00/temperature
temperature: 88 C
ket% 

I also checked the processor throttling:

ket% cat /proc/acpi/processor/CPU0/throttling
state count: 8
active state:T7
state available: T0 to T7
states:
T0:  100%
T1:  88%
T2:  75%
T3:  63%
T4:  50%
T5:  38%
T6:  25%
   *T7:  13%
ket% 

I guess this explains why the laptop slows to a crawl.

Next I checked the thermal zone state:

ket% cat /proc/acpi/thermal_zone/TZ00/state 
state:   passive
ket% 

Now, it seems to me that when the laptop is this hot, it should be in active
cooling mode. I see this output from cooling_mode:

ket% cat /proc/acpi/thermal_zone/TZ00/cooling_mode
0 - Active; 1 - Passive
ket% 

So I tried:

ket:~# echo 0  /proc/acpi/thermal_zone/TZ00/cooling_mode 
ket:~# 

However the state remains passive and no fans come on, etc.

Finally, this is the output from trip_points:

ket% cat /proc/acpi/thermal_zone/TZ00/trip_points
critical (S5):   102 C
passive: 87 C: tc1=0 tc2=4 tsp=4 devices=CPU0 CPU1 
ket% 

How can I keep my laptop from overheating?

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

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

Versions of packages acpi depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries

acpi recommends no packages.

acpi suggests no packages.

-- no debconf information



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



Bug#499726: install:: rule not called between cdbs install and binary rules

2008-09-21 Thread Jack Bates
Package: cdbs
Version: 0.4.52
Severity: normal

Here is the minimal debian/rules from the php-codesniffer package, which I
maintain: http://cgi.sfu.ca/~jdbates/tmp/debian/200809030/rules

The latest release of this package installs a script in
usr/bin/scripts/phpcs-svn-pre-commit, which I need to move to
usr/share/subversion/hook-scripts/phpcs

- so I added the custom install:: rule to move this script, after the cdbs
install rule and before the cdbs binary rule:

install::
mv -i $(DEB_DESTDIR)/usr/bin/scripts/phpcs-svn-pre-commit 
$(DEB_DESTDIR)/usr/share/subversion/hook-scripts/phpcs

Unfortunately, the install:: rule is not called...

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

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

Versions of packages cdbs depends on:
ii  debhelper 7.0.17 helper programs for debian/rules

Versions of packages cdbs recommends:
ii  autotools-dev 20080123.2 Update infrastructure for config.{

Versions of packages cdbs suggests:
ii  devscripts2.10.36scripts to make the life of a Debi
ii  doc-base  0.8.16 utilities to manage online documen

-- no debconf information



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



Bug#498729: pysvn._pysvn_2_5.ClientError: File ... has inconsistent newlines

2008-09-12 Thread Jack Bates
Package: svn-load
Version: 0.10-1
Severity: normal

I get the following error every time I use svn-load to load the latest export
from http://qubit-toolkit.googlecode.com/svn/brances/ica-atom/ into a
repository containing r1159 of the same export:

Traceback (most recent call last):
  File /usr/bin/svn-load, line 612, in module
overlay_files(workingdir, d)
  File /usr/bin/svn-load, line 413, in overlay_files
client.add(counterpath, ignore=False)
pysvn._pysvn_2_5.ClientError: File 
'/tmp/svn-loaduzzHzx/working/plugins/sfLucenePlugin/lib/vendor/Zend/Search/Lucene/Field.php'
 has inconsistent newlines

I am attaching a screenlog which details the steps to reproduce this error.

Much thanks for maintaining svn-load - it is a very useful tool for me!

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

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

Versions of packages svn-load depends on:
ii  python2.5.2-2An interactive high-level object-o
ii  python-svn1.6.0-1A(nother) Python interface to Subv

svn-load recommends no packages.

svn-load suggests no packages.

-- no debconf information



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



Bug#498729: screenlog

2008-09-12 Thread Jack Bates
Sorry, here is a screenlog which details the steps to reproduce this
error: http://cgi.sfu.ca/~jdbates/tmp/svn-load/200809120/screenlog


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


Bug#497869: [Pkg-openldap-devel] Bug#497869: upgrade from 2.3.39-1: attributeType userCertificate #0: needs '; binary' transfer

2008-09-05 Thread Jack Bates
On Thu, 2008-09-04 at 17:23 -0700, Quanah Gibson-Mount wrote: 
 --On Thursday, September 04, 2008 5:17 PM -0700 Jack Bates 
 [EMAIL PROTECTED] wrote:
 
  Package: slapd
  Version: 2.4.10-3
  Severity: normal
 
  Am seeing the following error trying to upgrade from slapd 2.3.39-1:
 
  [...]
  etting up slapd (2.4.10-3) ...
Backing up /etc/ldap/slapd.conf in /var/backups/slapd-2.3.39-1... done.
Upgrading BDB 'checkpoint' options... .
Moving old database directories to /var/backups:
Loading from /var/backups/slapd-2.3.39-1:
- directory dc=lat... failed.
 
  Loading the database from the LDIF dump failed with the following
  error while running slapadd:
  /etc/ldap/slapd.conf: line 83: replogfile keyword is obsolete
  (ignored) str2entry: attributeType userCertificate #0: needs
  ';binary' transfer as per syntax 1.3.6.1.4.1.1466.115.121.1.8
  slapadd: could not parse entry (line=42)
 
 Can you provide the problematic entry?  But it sounds like there's an 
 illegal set of data in one of the attributes (i.e., binary data that's 
 missing ;binary).

Taken from my /var/backups/slapd-2.3.39-1/dc=lat.ldif:

dn: uniqueIdentifier=704b2e0e31e673f60d1cc6e996d36e05,ou=People,dc=lat
objectClass: inetOrgPerson
objectClass: posixAccount
objectClass: pilotObject
uniqueIdentifier: 704b2e0e31e673f60d1cc6e996d36e05
cn: Jack Bates
givenName: Jack
sn: Bates
mail: [EMAIL PROTECTED]
telephoneNumber: (604) 522-4596
userCertificate:: MIICUjCCAbugAwIBAgIBBTANBgkqhkiG9w0BAQQFADAOMQwwCgYDVQQDEwNk
YXIwHhcNMDUwMTEyMjA0ODM2WhcNMDYwMTEyMjA0ODM2WjA6MRMwEQYDVQQDEwpKYWNrIEJhdGVzM
SMwIQYJKoZIhvcNAQkBFhRtczQxOUBmcmVlem9uZS5jby51azCBnzANBgkqhkiG9w0BAQEFAAOBjQ
AwgYkCgYEArzW9Ee6OeeXZQsKbu/bw8rGltbta5Ol2dcz/8HuHlwElHWpO6OKc+4DKg/wixuiwkLQ
C0FB2ju0dtiezQnauw2A1my9lMRoyWWvleIWnELHkRHikX7a6NzA45Y6qN5IYIGOGo/rTA1MoVUkJ
TbelRg5T8XEew7KyMQiCidJMrWsCAwEAAaOBkzCBkDAJBgNVHRMEAjAAMCwGCWCGSAGG+EIBDQQfF
h1PcGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0ZTAdBgNVHQ4EFgQUS80gFPJxz9syPJbQZ7l/D0
hbIjwwNgYDVR0jBC8wLYAUzzqVQ0EOp5BzV8ldhPHP1tTj/hahEqQQMA4xDDAKBgNVBAMTA2RhcoI
BADANBgkqhkiG9w0BAQQFAAOBgQDgfBppSdgv1lp2D0BoDrd+mpQ8a8ArDGHcAWLcWWiLCHPrRlwA
JXEStlQCHodbPjmzkOF7KAka0aTVZ6Ozoc1nDQGYOkBG/8DY9w91jBY+pKUiwlgGyx47ct9bVMUAv
WNKcjhmbmynI8O7Bt4+5/D41DXg7+lAmgczWrxQbUKgZw==
uid: jablko
uidNumber: 1001
gidNumber: 1001
homeDirectory: /home/jablko
loginShell: /bin/zsh
structuralObjectClass: inetOrgPerson
entryUUID: cd6df738-dcf0-102b-9af9-31639a4b48b6
creatorsName:
modifiersName:
createTimestamp: 20070812072427Z
modifyTimestamp: 20070812072427Z
entryCSN: 20070812072427Z#00#00#00

 --Quanah
 
 
 --
 
 Quanah Gibson-Mount
 Principal Software Engineer
 Zimbra, Inc
 
 Zimbra ::  the leader in open source messaging and collaboration
 
 


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


Bug#497822: impossible to distinguish depends, suggests, and recommends in rdepends output

2008-09-04 Thread Jack Bates
Package: apt
Version: 0.7.14+b1
Severity: wishlist
File: /usr/bin/apt-cache

I find the apt-cache rdepends tool very helpful in identifying which packages 
depend on a given package, however it is frustrating that I cannot distinguish 
depends, suggests, and recommends without looking at each reverse dependency 
individually.

For example, when I type apt-cache rdepends gdb I see that both gcc and 
bug-buddy depend on gdb. However I have to look at the gcc package and 
bug-buddy individually to tell that gcc recommends gdb, while bug-buddy 
depends on it.

I wish that the apt-cache rdepends output distinguished depends, suggests, 
and recommends.

Much thanks, Jack

-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture i386;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 1;
APT::Install-Suggests 0;
APT::Acquire ;
APT::Acquire::Translation environment;
APT::Authentication ;
APT::Authentication::TrustCDROM true;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::Periodic ;
APT::Periodic::Update-Package-Lists 1;
APT::Periodic::Download-Upgradeable-Packages 0;
APT::Periodic::AutocleanInterval 0;
APT::Update ;
APT::Update::Post-Invoke-Success ;
APT::Update::Post-Invoke-Success touch 
/var/lib/apt/periodic/update-success-stamp 2/dev/null || true;
APT::Archives ;
APT::Archives::MaxAge 30;
APT::Archives::MinAge 2;
APT::Archives::MaxSize 500;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::userstatus status.user;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
Dir::Log var/log/apt;
Dir::Log::Terminal term.log;
Unattended-Upgrade ;
Unattended-Upgrade::Allowed-Origins ;
Unattended-Upgrade::Allowed-Origins:: Debian stable;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;
DPkg::Post-Invoke ;
DPkg::Post-Invoke:: which dzhandle /dev/null  dzhandle 
restart-pending-instances || true;
DPkg::Post-Invoke:: if [ -d /var/lib/update-notifier ]; then  touch 
/var/lib/update-notifier/dpkg-run-stamp; fi;

-- (no /etc/apt/preferences present) --


-- /etc/apt/sources.list --

deb http://debian.yorku.ca/debian/ unstable main contrib non-free
deb-src http://debian.yorku.ca/debian/ unstable main contrib non-free

#deb-src http://debian.yorku.ca/debian/ experimental main contrib non-free

deb-src http://archive.ubuntu.com/ubuntu/ hardy main restricted universe 
multiverse

#deb-src http://debian-multimedia.org/ unstable main

deb http://cgi.sfu.ca/~jdbates/debian/ . .

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

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

Versions of packages apt depends on:
ii  debian-archive-keyring   2008.04.16+nmu1 GnuPG archive keys of the Debian a
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.1-9   GCC support library
ii  libstdc++6   4.3.1-9 The GNU Standard C++ Library v3

apt recommends no packages.

Versions of packages apt suggests:
pn  apt-doc   none (no description available)
ii  aptitude  0.4.11.9-1 terminal-based package manager
ii  bzip2 1.0.5-1high-quality block-sorting file co
ii  dpkg-dev  1.14.21Debian package development tools
ii  lzma  4.43-14Compression method of 7z format in
ii  synaptic  0.62.1 Graphical package manager

-- no debconf information



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



Bug#497869: upgrade from 2.3.39-1: attributeType userCertificate #0: needs '; binary' transfer

2008-09-04 Thread Jack Bates
Package: slapd
Version: 2.4.10-3
Severity: normal

Am seeing the following error trying to upgrade from slapd 2.3.39-1:

[...]
etting up slapd (2.4.10-3) ...
  Backing up /etc/ldap/slapd.conf in /var/backups/slapd-2.3.39-1... done.
  Upgrading BDB 'checkpoint' options... .
  Moving old database directories to /var/backups:
  Loading from /var/backups/slapd-2.3.39-1:
  - directory dc=lat... failed.

Loading the database from the LDIF dump failed with the following
error while running slapadd:
/etc/ldap/slapd.conf: line 83: replogfile keyword is obsolete (ignored)
str2entry: attributeType userCertificate #0: needs ';binary' transfer as 
per syntax 1.3.6.1.4.1.1466.115.121.1.8
slapadd: could not parse entry (line=42)
dpkg: error processing slapd (--configure):
 subprocess post-installation script returned error exit status 1
[...]

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

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

Versions of packages slapd depends on:
ii  adduser  3.110   add and remove users and groups
ii  coreutils6.10-6  The GNU core utilities
ii  debconf [debconf-2.0]1.5.23  Debian configuration management sy
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libdb4.2 4.2.52+dfsg-4   Berkeley v4.2 Database Libraries [
ii  libgnutls26  2.4.1-1 the GNU TLS library - runtime libr
ii  libldap-2.4-22.4.10-3OpenLDAP libraries
ii  libltdl3 1.5.26-4A system independent dlopen wrappe
ii  libperl5.10  5.10.0-13   Shared Perl library
ii  libsasl2-2   2.1.22.dfsg1-23 Cyrus SASL - authentication abstra
ii  libslp1  1.2.1-7.4   OpenSLP libraries
ii  libwrap0 7.6.q-16Wietse Venema's TCP wrappers libra
ii  perl [libmime-base64-per 5.10.0-13   Larry Wall's Practical Extraction 
ii  psmisc   22.6-1  Utilities that use the proc filesy
ii  unixodbc 2.2.11-16   ODBC tools libraries

Versions of packages slapd recommends:
ii  libsasl2-modules 2.1.22.dfsg1-23 Cyrus SASL - pluggable authenticat

Versions of packages slapd suggests:
ii  ldap-utils2.4.10-3   OpenLDAP utilities

-- debconf information:
  slapd/tlsciphersuite:
  slapd/fix_directory: true
  shared/organization: lat
  slapd/upgrade_slapcat_failure:
  slapd/backend: BDB
  slapd/allow_ldap_v2: false
  slapd/no_configuration: false
  slapd/move_old_database: true
  slapd/suffix_change: false
  slapd/slave_databases_require_updateref:
  slapd/dump_database_destdir: /var/backups/slapd-VERSION
  slapd/autoconf_modules: true
  slapd/domain: lat
  slapd/password_mismatch:
  slapd/invalid_config: true
  slapd/slurpd_obsolete:
  slapd/upgrade_slapadd_failure:
  slapd/dump_database: when needed
  slapd/migrate_ldbm_to_bdb: false
  slapd/purge_database: false



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



Bug#497729: -silent not working anymore

2008-09-03 Thread Jack Bates
Package: unison-gtk
Version: 2.27.57-1+b1
Severity: minor

The manpage claims:

   -silent
  print nothing (except error messages)

- and indeed this used to be true. I invoke unison in a cronjob, and now
I am receiving lots of mail with the body:

Connected [//fraser//ugrad1/jdbates/pub_html - //jid//home/jablko/public_html]

I confirmed that invoking unison with the -silent option is not totally
silent anymore:

jid% unison -batch -silent fraser
Connected [//fraser//ugrad1/jdbates/pub_html - //jid//home/jablko/public_html]
jid% 

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

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

Versions of packages unison-gtk depends on:
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  libglib2.0-0  2.16.4-2   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-2  The GTK+ graphical user interface 
ii  libpango1.0-0 1.20.5-1   Layout and rendering of internatio

Versions of packages unison-gtk recommends:
ii  openssh-client [ssh-client]   1:4.7p1-12 secure shell client, an rlogin/rsh
pn  ssh-askpass   none (no description available)

unison-gtk suggests no packages.

-- no debconf information



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



Bug#489996: problem auto-detecting / selecting some modes

2008-07-09 Thread Jack Bates
Package: xserver-xorg
Version: 1:7.3+12
Severity: normal

I am trying to connect a Samsung SyncMaster 245B to the VGA port on my
Lenovo 3000 N100

The screen's native resolution is 1920x1200. First I re-ran a modern
version of dexconf to remove modelines from my xorg.conf, so the
screen's modes should be auto-detected.

When I connect the screen and open the GNOME Screen Resolution
Preferences, 1920x1200 is not among the list of available resolutions.
xrandr does report several auto-detected modes, but not 1920x1200:

ket% xrandr
Screen 0: minimum 320 x 200, current 1280 x 800, maximum 1280 x 1280
VGA connected (normal left inverted right x axis y axis)
   1280x1024  75.0 59.9 60.0
   1280x960   60.0 59.9
   1280x800   60.0
   1152x864   75.0 74.8
   1280x768   60.0
   1024x768   75.1 70.1 60.0
   832x62474.6
   800x60072.2 75.0 60.3 56.2
   640x48075.0 72.8 72.8 75.0 66.7 60.0 59.9
   720x40070.1
LVDS connected 1280x800+0+0 (normal left inverted right x axis y axis) 331mm x 
207mm
   1280x800   60.0*+   60.0
   1280x768   60.0
   1024x768   60.0
   800x60060.3
   640x48059.9
TV disconnected (normal left inverted right x axis y axis)
ket% 

1920x1200 is listed in the Xorg.0.log, so I tried adding it manually
with xrandr:

ket% xrandr --newmode 1920x1200 154.00  1920 1968 2000 2080  1200 1203 1209 1235
ket% xrandr --addmode VGA 1920x1200
ket% xrandr --output VGA --mode 1920x1200
xrandr: screen cannot be larger than 1280x1280 (desired size 1920x1200)
ket% 

Finally, after manually adding the mode with xrandr, I was able to open
the GNOME Screen Resolution Preferences again and select 1920x1200 from
the list of available resolutions. At this point the screen did
successfully change to 1920x1200 resolution. Interestingly, xrandr still
claims the maximum resolution is 1280 x 1280:

ket% xrandr 
Screen 0: minimum 320 x 200, current 1920 x 1200, maximum 1280 x 1280
VGA connected 1920x1200+0+0 (normal left inverted right x axis y axis) 518mm x 
324mm
   1280x1024  75.0 59.9 60.0  
   1280x960   60.0 59.9  
   1280x800   60.0  
   1152x864   75.0 74.8  
   1280x768   60.0  
   1024x768   75.1 70.1 60.0  
   832x62474.6  
   800x60072.2 75.0 60.3 56.2  
   640x48075.0 72.8 72.8 75.0 66.7 60.0 59.9  
   720x40070.1  
   1920x1200  60.0* 
LVDS connected (normal left inverted right x axis y axis)
   1280x800   60.0 +   60.0  
   1280x768   60.0  
   1024x768   60.0  
   800x60060.3  
   640x48059.9  
TV disconnected (normal left inverted right x axis y axis)
ket% 

First, I wish that when I connect the SyncMaster 245B and open the GNOME
Screen Resolution Preferences, 1920x1200 were among the list of
available resolutions.

Second, if I manually add the 1920x1200 mode using xrandr and values
from Xorg.0.log, I don't understand why xrandr refuses to select this
mode, complaining instead:

ket% xrandr --output VGA --mode 1920x1200
xrandr: screen cannot be larger than 1280x1280 (desired size 1920x1200)
ket% 

Thanks! Jack

-- 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 2007-02-06 07:06 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1718228 2008-06-25 17:14 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller (rev 03)

/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 1097 2008-07-08 08:40 /etc/X11/xorg.conf

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

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  XkbRules  xorg
Option  XkbModel  pc104
Option  XkbLayout us
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  

Bug#487482: missing dependency on libcamomile-ocaml-data?

2008-06-21 Thread Jack Bates
Package: galax
Version: 1.1-3
Severity: normal

Thank you for packaging Galax. When I try to run it, however, I get:

ket% galax-run test.xq
Fatal error: exception
Sys_error(/usr/share/camomile/database/general_category.mar: No such
file or directory)
ket%  

The problem disappeared after installing the libcamomile-ocaml-data
package.

Thanks again, Jack

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

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.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#485478: give permission to openldap group members to run slapcat

2008-06-09 Thread Jack Bates
Package: slapd
Version: 2.4.9-1
Severity: wishlist

We run a daily backup script to dump the contents of our LDAP database
to a version controlled repository, using slapcat. We don't want to run
the backup script as root, so we tried adding the user which does run
the script to the openldap group. Unfortunately we still couldn't run
slapcat because /etc/ldap/slapd.conf is only readable by root, and
/var/lib/ldap is only readable by the openldap user. To get slapcat
working for members of the openldap group, I eventually arrived at the
following permissions:

amos% ls -l /etc/ldap
total 24
-rw-r--r-- 1 root root  245 2008-02-14 12:14 ldap.conf
drwxr-xr-x 2 root root 4096 2007-07-25 19:43 RCS
drwxr-xr-x 2 root root 4096 2006-12-13 07:57 sasl2
drwxr-xr-x 2 root root 4096 2008-03-12 17:20 schema
-rw-r- 1 openldap openldap 4376 2007-07-25 19:50 slapd.conf
amos% sudo ls -la /var/lib/ldap
total 676
drwxrwx---  2 openldap openldap4096 2008-04-16 09:14 .
drwxr-xr-x 60 root root4096 2008-05-20 07:45 ..
-rw-rw-r--  1 openldap openldap4096 2008-06-09 11:34 alock
-rw-rw  1 openldap openldap8192 2008-04-16 09:14 __db.001
-rw-rw  1 openldap openldap 2629632 2008-04-16 09:14 __db.002
-rw-rw  1 openldap openldap   98304 2008-04-16 09:14 __db.003
-rw-rw  1 openldap openldap  565248 2008-04-16 09:14 __db.004
-rw-rw  1 openldap openldap   24576 2008-04-16 09:14 __db.005
-rw-rw-r--  1 openldap openldap  96 2007-07-25 19:40 DB_CONFIG
-rw-rw  1 openldap openldap8192 2008-04-25 16:45 dn2id.bdb
-rw-rw  1 openldap openldap   32768 2008-04-25 16:45 id2entry.bdb
-rw-rw  1 openldap openldap  107031 2008-06-07 13:42 log.01
-rw-rw  1 openldap openldap8192 2008-04-25 16:45 objectClass.bdb
amos%

My wish is for these to be the default permissions set by the Debian
slapd package, unless there's a risk to letting members of the openldap
group run slapcat? It seems safer than running our daily backup script
as root...

Thanks and best wishes, Jack

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

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

Versions of packages slapd depends on:
ii  adduser  3.108   add and remove users and groups
ii  coreutils6.10-6  The GNU core utilities
ii  debconf [debconf-2.0]1.5.22  Debian configuration management sy
ii  libc62.7-12  GNU C Library: Shared libraries
ii  libdb4.2 4.2.52+dfsg-4   Berkeley v4.2 Database Libraries [
ii  libgnutls26  2.2.5-1 the GNU TLS library - runtime libr
ii  libldap-2.4-22.4.9-1 OpenLDAP libraries
ii  libltdl3 1.5.26-4A system independent dlopen wrappe
ii  libperl5.10  5.10.0-10   Shared Perl library
ii  libsasl2-2   2.1.22.dfsg1-20 Cyrus SASL - authentication abstra
ii  libslp1  1.2.1-7.3   OpenSLP libraries
ii  libwrap0 7.6.q-15Wietse Venema's TCP wrappers libra
ii  perl [libmime-base64-per 5.10.0-10   Larry Wall's Practical Extraction 
ii  psmisc   22.6-1  Utilities that use the proc filesy
ii  unixodbc 2.2.11-16   ODBC tools libraries

Versions of packages slapd recommends:
ii  libsasl2-modules 2.1.22.dfsg1-20 Cyrus SASL - pluggable authenticat

-- debconf information:
  slapd/tlsciphersuite:
  slapd/fix_directory: true
  shared/organization: lat
  slapd/upgrade_slapcat_failure:
  slapd/backend: BDB
  slapd/allow_ldap_v2: false
  slapd/no_configuration: false
  slapd/move_old_database: true
  slapd/suffix_change: false
  slapd/slave_databases_require_updateref:
  slapd/dump_database_destdir: /var/backups/slapd-VERSION
  slapd/autoconf_modules: true
  slapd/domain: lat
  slapd/password_mismatch:
  slapd/invalid_config: true
  slapd/slurpd_obsolete:
  slapd/upgrade_slapadd_failure:
  slapd/dump_database: when needed
  slapd/migrate_ldbm_to_bdb: false
  slapd/purge_database: false



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



Bug#484731: module packages should depend on kqemu-common?

2008-06-05 Thread Jack Bates
Package: kqemu-source
Version: 1.3.0~pre11-8
Severity: normal

I think the kqemu-modules-* packages should depend on the kqemu-common
package, or the module is never loaded.

I installed the kqemu-modules-2.6-686 package, but it didn't install
kqemu-common, so qemu still complained that /dev/kqemu does not exist.

Thanks and best wishes, Jack

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

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.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#483261: Could not initialize class org.apache.solr.core.SolrConfig

2008-05-28 Thread Jack Bates
Thanks very much for your response, I installed the tomcat5.5 package
version 5.5.26-1 on Debian unstable.

Best wishes, Jack

On Wed, 2008-05-28 at 23:18 +0200, Jan-Pascal van Best wrote:
 Hi Jack,
 
 Thank you for your report. It sounds similar to a bug that was reported
 earlier to Solr, which turned out to be a bug in tomcat5.5.
 
 Which version of Tomcat is installed on your machine?
 
 I'll try and reproduce this over here.
 
 Thanks again for your report
 
 Jan-Pascal
 
 
 Jack Bates wrote:
  Package: solr-tomcat5.5
  Version: 1.2.0+ds1-3
  Severity: normal
 
  I installed solr-tomcat5.5 but do not see the Solr web interface when
  accessing: http://localhost:8180/solr
 
  Unlike accessing a random URL: http://localhost:8180/foo
 
  - I do see a Tomcat error:
 
  The requested resource (/solr/admin) is not available.
 
  The attached log also describes an error:
 
  SEVERE: Exception starting filter SolrRequestFilter
  java.lang.NoClassDefFoundError: Could not initialize class 
  org.apache.solr.core.SolrConfig
 
  Unfortunately my Java / Tomcat debugging skills are somewhat weak. I can
  confirm that the jar file:
  /usr/share/solr/WEB-INF/lib/apache-solr-1.2.0.jar
 
  - contains: org/apache/solr/core/SolrConfig.class
 
  - however I do not know why Tomcat does not find it.
 
  I am eager to debug this issue further, but not sure what my next step
  should be. How can I provide more diagnostic information?
 
  Thanks and best wishes, Jack
 
  -- System Information:
  Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable')
  Architecture: i386 (i686)
 
  Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
  Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
  Shell: /bin/sh linked to /bin/bash

  
 
  ___
  pkg-java-maintainers mailing list
  [EMAIL PROTECTED]
  http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers
 
 


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


Bug#483261: Could not initialize class org.apache.solr.core.SolrConfig

2008-05-27 Thread Jack Bates
Package: solr-tomcat5.5
Version: 1.2.0+ds1-3
Severity: normal

I installed solr-tomcat5.5 but do not see the Solr web interface when
accessing: http://localhost:8180/solr

Unlike accessing a random URL: http://localhost:8180/foo

- I do see a Tomcat error:

The requested resource (/solr/admin) is not available.

The attached log also describes an error:

SEVERE: Exception starting filter SolrRequestFilter
java.lang.NoClassDefFoundError: Could not initialize class 
org.apache.solr.core.SolrConfig

Unfortunately my Java / Tomcat debugging skills are somewhat weak. I can
confirm that the jar file:
/usr/share/solr/WEB-INF/lib/apache-solr-1.2.0.jar

- contains: org/apache/solr/core/SolrConfig.class

- however I do not know why Tomcat does not find it.

I am eager to debug this issue further, but not sure what my next step
should be. How can I provide more diagnostic information?

Thanks and best wishes, Jack

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

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Apr 25, 2008 4:46:41 PM org.apache.catalina.core.StandardContext filterStart
SEVERE: Exception starting filter SolrRequestFilter
java.lang.NoClassDefFoundError: Could not initialize class org.apache.solr.core.SolrConfig
	at org.apache.solr.servlet.SolrDispatchFilter.init(SolrDispatchFilter.java:74)
	at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:221)
	at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:302)
	at org.apache.catalina.core.ApplicationFilterConfig.init(ApplicationFilterConfig.java:78)
	at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:3635)
	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4222)
	at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:760)
	at org.apache.catalina.core.ContainerBase.access$0(ContainerBase.java:744)
	at org.apache.catalina.core.ContainerBase$PrivilegedAddChild.run(ContainerBase.java:144)
	at java.security.AccessController.doPrivileged(Native Method)
	at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:738)
	at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:544)
	at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:626)
	at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:553)
	at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:488)
	at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
	at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
	at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:120)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1022)
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1014)
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
	at org.apache.catalina.core.StandardService.start(StandardService.java:448)
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
	at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:616)
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:616)
	at org.apache.commons.daemon.support.DaemonLoader.start(DaemonLoader.java:177)


Bug#480031: Clock Applet: Cannot get appointment / task details

2008-05-07 Thread Jack Bates
Package: gnome-panel
Version: 2.20.3-3
Severity: wishlist

By adding my Bugzilla tasks or Facebook events to Evolution, I can check
them quickly in the clock applet. I find this very useful, except that I
cannot get task or appointment details. I wish that clicking or right
clicking on a task / appointment would either:

1) display the task / appointment in Evolution
2) display a simple preview of the task / appointment details
3) link to the subject of the task (e.g. launch the associated Eclipse
   Mylyn activity or open Facebook)

Thanks for maintaining this package! Jack

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

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

Versions of packages gnome-panel depends on:
ii  gnome-about2.22.1-1  The GNOME about box
ii  gnome-control-center   1:2.22.1-1utilities to configure the GNOME d
ii  gnome-desktop-data 2.22.1-1  Common files for GNOME 2 desktop a
ii  gnome-menus2.22.1-1  an implementation of the freedeskt
ii  gnome-panel-data   2.20.3-3  common files for the GNOME Panel
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcairo2  1.6.4-1+b1The Cairo 2D vector graphics libra
ii  libdbus-glib-1-2   0.74-2simple interprocess messaging syst
ii  libecal1.2-7   2.22.1-1  Client library for evolution calen
ii  libedataserver1.2-92.22.1-1  Utility library for evolution data
ii  libedataserverui1.2-8  2.22.1-1  GUI utility library for evolution 
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.3-2  The GLib library of C routines
ii  libgnome-desktop-2 2.22.1-1  Utility library for loading .deskt
ii  libgnome-menu2 2.22.1-1  an implementation of the freedeskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-2GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.9-3  The GTK+ graphical user interface 
ii  liborbit2  1:2.14.12-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-0 2.20.3-3  library for GNOME Panel applets
ii  libpango1.0-0  1.20.2-2  Layout and rendering of internatio
ii  libwnck22  2.22.1-1  Window Navigator Construction Kit 
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxau61:1.0.3-2 X11 authorisation library
ii  menu-xdg   0.3   freedesktop.org menu compliant win

Versions of packages gnome-panel recommends:
ii  alacarte  0.11.3-1   easy GNOME menu editing tool
ii  evolution-data-server 2.22.1-1   evolution database backend server
ii  gnome-applets 2.20.1-3   Various applets for GNOME 2 panel 
ii  gnome-icon-theme  2.22.0-1   GNOME Desktop icon theme
ii  gnome-session 2.22.0-2   The GNOME 2 Session Manager

-- no debconf information



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



Bug#472849: more descriptive error

2008-04-30 Thread Jack Bates
I was just bitten by this and it took me a while to locate this bug
report.

Could Rhythmbox please report a more descriptive warning to the user?

For example, when I start Rhythmbox without python-gst, I simply get a
warning that the cover art etc. failed to load. Could it please instead
explain that the Python generic media-playing framework is not
installed?

Thanks for maintaining Rhythmbox in Debian, Jack


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


Bug#478778: copy paste

2008-04-30 Thread Jack Bates
Package: xserver-xephyr
Version: 2:1.4.1~git20080131-4
Severity: wishlist

I wish I could copy and paste between a Xephyr window and the parent X
server.

Thanks and best wishes, Jack

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

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

Versions of packages xserver-xephyr depends on:
ii  libc6   2.7-10   GNU C Library: Shared libraries
ii  libdbus-1-3 1.2.1-2  simple interprocess messaging syst
ii  libfontenc1 1:1.0.4-2X11 font encoding library
ii  libhal1 0.5.11~rc2-1 Hardware Abstraction Layer - share
ii  libpixman-1-0   0.10.0-2 pixel-manipulation library for X a
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxau6 1:1.0.3-2X11 authorisation library
ii  libxdmcp6   1:1.0.2-2X11 Display Manager Control Protoc
ii  libxext62:1.0.4-1X11 miscellaneous extension librar
ii  libxfont1   1:1.3.2-1X11 font rasterisation library

Versions of packages xserver-xephyr recommends:
ii  xbase-clients 1:7.3+10   miscellaneous X clients - metapack
ii  xfonts-base   1:1.0.0-5  standard fonts for X

-- no debconf information



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



Bug#478310: autoscan: AC_PROG_RANLIB obsolete

2008-04-28 Thread Jack Bates
Package: autoconf
Version: 2.61-7
Severity: minor

Thanks for maintaining autotools in Debian, I find autoscan and
autoreconf very helpful for maintaining my project build system : )

I think autoscan is not up to date - it complains:

autoscan: warning: missing AC_PROG_RANLIB wanted by: 
ltmain.sh:6910

However after adding AC_PROG_RANLIB to configure.ac, autoreconf
complains:

ket% autoreconf -vfi
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
Using `AC_PROG_RANLIB' is rendered obsolete by `AC_PROG_LIBTOOL'
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: Leaving directory `.'
ket% 

Thanks again, Jack

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

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

Versions of packages autoconf depends on:
ii  debianutils   2.28.5 Miscellaneous utilities specific t
ii  m41.4.11-1   a macro processing language
ii  perl  5.8.8-12   Larry Wall's Practical Extraction 

Versions of packages autoconf recommends:
ii  automake [automaken]  1:1.10.1-3 A tool for generating GNU Standard

-- no debconf information



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



Bug#472390: missing doc-base documents

2008-04-21 Thread Jack Bates
On Sun, 2008-04-20 at 16:55 +0200, Josselin Mouette wrote:
 Le dimanche 23 mars 2008 à 19:11 -0700, Jack Bates a écrit :
  I installed the doc-base package in order to read doc-base documents
  in Yelp, however they still seem to be missing from Yelp's interface.
 
 Yelp is not a browser for generic doc-base documents. I agree that it
 would be nice to see it doing so, and would happily apply patches that
 would made it do so, however.

Sorry Josselin, I thought that I should be able to browse doc-base
documentation with Yelp as of doc-base 0.8.0 and the resolution of bug
#418412

Bug #418412 links to:
http://www.burtonini.com/blog/computers/yelp-dhelp-2005-02-18-10-41

The way I understood it, doc-base now integrates with ScrollKeeper,
which is the documentation index used by Yelp. As I wrote in the initial
report, the contents of /var/lib/scrollkeeper/scrollkeeper_docs seem to
indicate that ScrollKeeper is aware of my doc-base documentation.

Can you help me understand why Yelp does not browse these documents?

Thanks again, Jack


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


Bug#458412: java2-sdk?

2008-04-05 Thread Jack Bates
Wouldn't depending on java2-sdk instead of java2-runtime solve this
problem?

Thanks for maintaining Java in Debian, Jack


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


Bug#474180: --arch any has no effect

2008-04-03 Thread Jack Bates
Package: dh-make-perl
Version: 0.41
Severity: normal

I tried creating an Architecture: any package as follows:

dh-make-perl --arch any --cpan Net::DBus

- however dh-make-perl generated an Architecture: all package, ignoring
the --arch any flag.

Thanks for maintaining dh-make-perl and best wishes, Jack

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

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

Versions of packages dh-make-perl depends on:
ii  debhelper 6.0.11 helper programs for debian/rules
ii  dpkg-dev  1.14.16.6  package building tools for Debian
ii  fakeroot  1.9.4  Gives a fake root environment
ii  libmodule-depends-perl0.10-1 identify the dependencies of a dis
ii  libwww-mechanize-perl 1.34-2 Automate interaction with websites
ii  libyaml-perl  0.62-1 YAML Ain't Markup Language (tm)
ii  make  3.81-3.1   The GNU version of the make util
ii  perl  5.8.8-12   Larry Wall's Practical Extraction 
ii  perl-modules [libpod-parser-p 5.8.8-12   Core Perl modules

Versions of packages dh-make-perl recommends:
ii  apt-file 2.1.0   APT package searching utility -- c
ii  libmodule-build-perl 0.2808.01-2 Subclassable and make-independent 

-- no debconf information



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



Bug#470291: Intend to NMU

2008-03-23 Thread Jack Bates
Thank you for addressing this bug Jan, and for fixing the trailing
whitespace. Your patch looks great to me, please upload at your earliest
convenience. Thank you for your NMU

Best wishes, Jack

On Sat, 2008-03-22 at 01:13 +0100, Jan Wagner wrote:
 tags 470291 +patch
 
 Hi Jack,
 
 I intend to NMU your package to fix #470291 and some formating bugs. The 
 patch 
 is attached and can be found at [1], the package at [2]. Please integrate the 
 changes into your new package. If the bug is left open in 10 days, I'll 
 upload the package to DELAYED/7-day (or sooner, if requested by the you).
 
 If you do not wish for this NMU to occur, please send a follow-up in
 the bug report stating as such or, better yet, fix it in an MU :)
 
 With kind regards, Jan.
 [1] http://ftp.cyconet.org/debian/nmu-diff/php-codesniffer_1.0.1-1.1.patch
 [2] 
 http://ftp.cyconet.org/debian/archive/official/php-codesniffer/1.0.1-1.1/php-codesniffer_1.0.1-1.1.dsc


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


Bug#472352: by default configure only for scripts satisfying min_uid

2008-03-23 Thread Jack Bates
Package: libapache2-mod-suphp
Version: 0.6.2-2
Severity: normal
Tags: patch

By default, suPHP is configured to handle all PHP scripts, leading to
errors accessing scripts installed by Debian packages:

[Sun Mar 23 10:58:34 2008] [error] [client 127.0.0.1] SoftException in
Application.cpp:297: UID of script /usr/share/gallery2/main.php is smaller
than min_uid

I wish by default suPHP were configured to handle only PHP scripts
likely to satisfy min_uid:
http://cgi.sfu.ca/~jdbates/tmp/suphp/200803230/patch

--- /etc/apache2/mods-available/suphp.conf  2008/03/23 17:41:08 1.1
+++ /etc/apache2/mods-available/suphp.conf  2008/03/23 17:42:04
@@ -1,5 +1,7 @@
 IfModule mod_suphp.c
+   Directory /home/*/public_html
AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
+   /Directory
suPHP_AddHandler application/x-httpd-php
suPHP_Engine on
 # # Use a specific php config file (a dir which contains a php.ini file)

Much thanks for maintaining suPHP, Jack

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

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

Versions of packages libapache2-mod-suphp depends on:
ii  apache2.2-common  2.2.8-3Next generation, scalable, extenda
ii  libc6 2.7-9  GNU C Library: Shared libraries
ii  suphp-common  0.6.2-2Common files for mod suphp

libapache2-mod-suphp recommends no packages.

-- no debconf information
--- /etc/apache2/mods-available/suphp.conf  2008/03/23 17:41:08 1.1
+++ /etc/apache2/mods-available/suphp.conf  2008/03/23 17:42:04
@@ -1,5 +1,7 @@
 IfModule mod_suphp.c
+   Directory /home/*/public_html
AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
+   /Directory
suPHP_AddHandler application/x-httpd-php
suPHP_Engine on
 # # Use a specific php config file (a dir which contains a php.ini file)


Bug#426426: suEXEC and SetEnv

2008-03-23 Thread Jack Bates
On Sat, 2008-03-22 at 15:12 +0100, Stefan Fritsch wrote: 
 On Monday 18 February 2008, Jack Bates wrote:
  I guess it'd be too complicated to ask for mod_env and suEXEC to
  cooperate, so if a user deliberately sets PERL5LIB in a .htaccess
  file, suEXEC passes it to the Perl CGI?
 
 This would require suexec to parse .htaccess files. This is not 
 something we want.

What about parsing a system config file (like suPHP
parses /etc/suphp/suphp.conf) listing safe environment variables?

 BTW, you can set PERL5LIB in the BEGIN block of your perl cgi scripts. 
 I don't see why this needs to be done in the .htaccess.

The BEGIN block doesn't work for me because I'm running an application
(Koha: http://koha.org/) with more than 100 scripts. Adding BEGIN blocks
to each script isn't viable...

Thanks for your suggestion, Jack


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


Bug#472390: missing doc-base documents

2008-03-23 Thread Jack Bates
Package: yelp
Version: 2.22.0-1
Severity: normal

I installed the doc-base package in order to read doc-base documents
in Yelp, however they still seem to be missing from Yelp's interface.

For instance, I have /usr/share/doc-base/debian-faq, installed by the
debian-doc package. I verified that doc-base registered this document
with ScrollKeeper, to the extent that
/var/lib/scrollkeeper/scrollkeeper_docs contains:

/usr/share/omf/doc-base/debian-faq/debian-faq-C.omf 1162
/usr/share/doc/debian/FAQ/index.html1206317465  C

However I can't find this document anywhere in Yelp.

Thanks and best wishes, Jack

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

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

Versions of packages yelp depends on:
ii  docbook-xml4.5-5 standard XML documentation system,
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  gnome-doc-utils0.12.2-1  a collection of documentation util
ii  libbz2-1.0 1.0.4-4   high-quality block-sorting file co
ii  libc6  2.7-9 GNU C Library: Shared libraries
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libgcc11:4.3.0-1 GCC support library
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.1-2  The GLib library of C routines
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-2GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.9-2  The GTK+ graphical user interface 
ii  libpango1.0-0  1.20.0-1  Layout and rendering of internatio
ii  librarian0 0.8.0-1   Rarian is a documentation meta-dat
ii  libstartup-notificatio 0.9-1 library for program launch feedbac
ii  libstdc++6 4.3.0-1   The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxml22.6.31.dfsg-2 GNOME XML library
ii  libxslt1.1 1.1.22-1  XSLT processing library - runtime 
ii  libxul0d   1.8.1.12-5Gecko engine library
ii  man-db 2.5.1-3   on-line manual pager
ii  xml-core   0.11  XML infrastructure and XML catalog
ii  zlib1g 1:1.2.3.3.dfsg-11 compression library - runtime

Versions of packages yelp recommends:
ii  ttf-dejavu2.24-2 Metapackage to pull in ttf-dejavu-

-- no debconf information



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



Bug#472061: RFP: pear-doc -- PEAR documentation

2008-03-21 Thread Jack Bates
Package: php-pear
Version: 5.2.5-3
Severity: wishlist

I'm working on a php-codesniffer Debian package and would like to
include it's PEAR manual chapter in info format (or whichever format is
Debian's current standard for documentation):
http://pear.php.net/manual/en/package.php.php-codesniffer.php

However I wonder if it wouldn't be better to distribute the whole PEAR
manual as a single package? The manual source is available in docbook
format, including Makefiles, from PEAR CVS:

cvs -z6 -d:pserver:[EMAIL PROTECTED]:/repository co -P peardoc

Please reassign this bug if it would be more appropriately filed against
wnpp.

Thanks and best wishes, Jack

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

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

Versions of packages php-pear depends on:
ii  php5-cli  5.2.5-3command-line interpreter for the p
ii  php5-common   5.2.5-3Common files for packages built fr

Versions of packages php-pear recommends:
ii  gnupg 1.4.6-2.1  GNU privacy guard - a free PGP rep

-- no debconf information



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



Bug#470286: mod_gnutls v0.5.1 released

2008-03-12 Thread Jack Bates
On Mon, 2008-03-10 at 14:26 +0100, Simon Josefsson wrote:
 Package: libapache2-mod-gnutls
 Version: 0.5.0-alpha-1
 Severity: wishlist
 
 Hi!  Version 0.5.1 has been released.  It fixes some dbm problems for
 me.  It also drops the '-alpha' suffix in the version..
 
 Btw, v0.5.0 works quite reliably for me.  Haven't had any issues with it
 except for the dbm bug.  I'm using your package for gnutls benchmarking:
 
 http://trac.gnutls.org/cgi-bin/trac.cgi/wiki/BenchmarkingModGnuTLS
 
 /Simon

Much thanks Simon, I prepared an updated package and will upload
shortly: http://cgi.sfu.ca/~jdbates/debian/pool/mod-gnutls/

Best wishes, Jack


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


Bug#449254: still fails to build?

2008-02-29 Thread Jack Bates
Is it the case that xdmx still fails to build in 1.4.1~git20080131?

Thanks, Jack


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


Bug#467467: [Fwd: php-codesniffer_1.0.1-1_i386.changes REJECTED]

2008-02-25 Thread Jack Bates
Package: dh-make-php
Version: 0.2.8

A package I created with dh-make-pear was rejected because the generated
copyright file is incomplete. I fixed the package by using the BSD
copyright template from
dh-make: /usr/share/debhelper/dh_make/licenses/bsd

Below are the copyright file generated by dh-make-pear and the copyright
file based on dh-make. Could dh-make-pear perhaps use dh-make's
copyright templates?

Thanks and best wishes, Jack

---

This package was debianized by Jack Bates [EMAIL PROTECTED] using
dh-make-pear on Thu, 07 Feb 2008 10:29:15 -0800

It was downloaded from http://pear.php.net/package/PHP_CodeSniffer

Upstream Authors:

Greg Sherwood [EMAIL PROTECTED]
Marc McIntyre [EMAIL PROTECTED]

Copyright:

2006 Squiz Pty Ltd (ABN 77 084 670 600)

License: BSD

---

This package was debianized by Jack Bates [EMAIL PROTECTED] using
dh-make-pear on Thu, 07 Feb 2008 10:29:15 -0800

It was downloaded from http://pear.php.net/package/PHP_CodeSniffer

Upstream Authors:

Greg Sherwood [EMAIL PROTECTED]
Marc McIntyre [EMAIL PROTECTED]

Copyright:

2006 Squiz Pty Ltd (ABN 77 084 670 600)

License:

Redistribution and use in source and binary forms, with or without
modification, are permitted under the terms of the BSD License.

THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS''
AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE
ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
OF
SUCH DAMAGE.

On Debian systems, the complete text of the BSD License can be 
found in /usr/share/common-licenses/BSD

The Debian packaging is copyright 2008, Jack Bates
[EMAIL PROTECTED] and
is licensed under the GPL, see /usr/share/common-licenses/GPL

---BeginMessage---
Hi Maintainer,

rejected, your debian/copyright misses the pointer to the fulltext of
the license.

-- 
bye Joerg



===

If you don't understand why your files were rejected, or if the
override file requires editing, reply to this email.


---End Message---


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


Bug#466767: php5 metapackage dependency unnecessary?

2008-02-20 Thread Jack Bates
Package: phpunit
Version: 3.2.5-1
Severity: normal

I want to install phpunit on my workstation to run some tests from the
command line, but the dependency on the php5 metapackage means
installing php5-cgi or libapache2-mod-php5

I don't believe either of these are required to run phpunit from the
command line - could these dependencies be dropped?

Thanks for maintaining phpunit - Jack

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

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

Versions of packages phpunit depends on:
ii  php-benchmark 1.2.7-2Framework to benchmark PHP scripts
ii  php-pear  5.2.5-2PEAR - PHP Extension and Applicati
ii  php5  5.2.5-2server-side, HTML-embedded scripti
ii  php5-cli  5.2.5-2command-line interpreter for the p

phpunit recommends no packages.

-- no debconf information



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



Bug#426426: suEXEC and SetEnv

2008-02-18 Thread Jack Bates
I guess it'd be too complicated to ask for mod_env and suEXEC to
cooperate, so if a user deliberately sets PERL5LIB in a .htaccess file,
suEXEC passes it to the Perl CGI?

From what you say, I guess this still violates the suEXEC security
model, where the suEXEC suid tool is designed to protect the user from
compromised Apache / mod_env...

In my case I'm not worried about PERL5LIB, so I wish suEXEC were
configurable, like suPHP

Thanks, Jack


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


Bug#416515: kernel oops gone, should auto.smb use sec=none, or samba support guest?

2008-02-13 Thread Jack Bates
Tags: patch

Hello Jan, I tried connecting to my Ubuntu Samba server with autofs
again today and the kernel oops has disappeared and your sec=none
suggestion works.

So mount.smb -o guest works:

ket% sudo mount.smb //mog.local/share /mnt -o guest
Anonymous login successful
ket%

- but mount.cifs -o guest does not work:

ket% sudo mount.cifs //mog.local/share /mnt -o guest
mount error 13 = Permission denied
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
ket%

- but mount.cifs -o sec=none does work:

ket% sudo mount.cifs //mog.local/share /mnt -o sec=none
ket% ls /mnt
Movies MythVideo
ket%

So, *should* mount.cifs -o guest work like mount.smb -o guest, or
should /etc/auto.smb use sec=none?

I ask the same question in this Ubuntu Samba bug:
https://launchpad.net/ubuntu/+source/samba/+bug/98658

Attached is the patch to /etc/auto.misc which enables me to connect with
sec=none

Thanks for your help Jan, Jack
--- /etc/auto.smb	2007/03/29 15:27:45	1.1
+++ /etc/auto.smb	2008/01/18 16:08:28
@@ -24,6 +24,7 @@
 	mountopts=$mountopts,credentials=$credfile
 	smbopts=-A $credfile
 else
+	mountopts=$mountopts,sec=none
 	smbopts=-N
 fi
  


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


Bug#462167: gnutls 2.1.5 is in unstable

2008-02-11 Thread Jack Bates
Thanks Daniel, I will upload shortly, but please give the updated
package a try in the meantime:
http://cgi.sfu.ca/~jdbates/debian/pool/mod-gnutls/

Best wishes, Jack

On Mon, 2008-02-11 at 11:56 -0500, Daniel Kahn Gillmor wrote:
 Hi Jack--
 
 gnutls 2.2.1 is now in unstable:
 
 [0 [EMAIL PROTECTED] ~]$ date
 Mon Feb 11 11:54:50 EST 2008
 [0 [EMAIL PROTECTED] ~]$ apt-cache policy libgnutls-dev
 libgnutls-dev:
   Installed: 2.2.1-3
   Candidate: 2.2.1-3
   Version table:
  *** 2.2.1-3 0
 200 http://mirrors.kernel.org unstable/main Packages
 100 /var/lib/dpkg/status
  2.0.4-1 0
 500 http://mirrors.kernel.org testing/main Packages
 [0 [EMAIL PROTECTED] ~]$ 
 
 If you could package the newer version of mod_gnutls, that would be
 great!
 
 Thanks for maintaining mod_gnutls in debian.
 
 Regards,
 
 --dkg


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


Bug#465179: ITP: php-codesniffer -- tokenises PHP code and detects violations of a defined set of coding standards

2008-02-10 Thread Jack Bates
Package: wnpp
Severity: wishlist
Owner: Jack Bates [EMAIL PROTECTED]

* Package name: php-codesniffer
* URL : http://pear.php.net/package/PHP_CodeSniffer/
* License : BSD
  Programming Lang: PHP
  Description : tokenises PHP code and detects violations of a defined set 
of coding standards

 PHP_CodeSniffer is a PHP5 script that tokenises and sniffs PHP code
 to detect violations of a defined set of coding standards. It is an
 essential development tool that ensures that your code remains clean
 and consistent. It can even help prevent some common semantic errors
 made by developers.

http://cgi.sfu.ca/~jdbates/debian/pool/php-codesniffer/

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

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.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]



  1   2   >