Processed: Fixed in NMU of kazehakase 0.2.7-2.sarge2

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 345905 + fixed
Bug#345905: Kazehakase 0.2.7-2.sarge1
There were no tags set.
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385416: sandwich: FTBFS: Missing Build-Depends on 'r-cran-lattice'

2006-08-31 Thread Andreas Jochens
Package: sandwich
Version: 2.0-0-1
Severity: serious
Tags: patch

When building 'sandwich' in a clean 'unstable' chroot,
I get the following error:

Loading required package: zoo
Error in loadNamespace(i, c(lib.loc, .libPaths())) : 
there is no package called 'lattice'
Error: package 'zoo' could not be loaded
Execution halted
ERROR: lazy loading failed for package 'sandwich'
** Removing 
'/sandwich-2.0-0/debian/r-cran-sandwich/usr/lib/R/site-library/sandwich'
make: *** [R_any_arch] Error 1

Please add the missing Build-Depends on 'r-cran-lattice' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/sandwich-2.0-0/debian/control ./debian/control
--- ../tmp-orig/sandwich-2.0-0/debian/control   2006-08-31 05:51:18.0 
+
+++ ./debian/control2006-08-31 05:51:16.0 +
@@ -2,7 +2,7 @@
 Section: math
 Priority: optional
 Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper ( 4.1.0), r-base-dev (= 2.3.0), cdbs, 
r-cran-zoo
+Build-Depends-Indep: debhelper ( 4.1.0), r-base-dev (= 2.3.0), cdbs, 
r-cran-lattice, r-cran-zoo
 Standards-Version: 3.7.2
 
 Package: r-cran-sandwich


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



Bug#356939: marked as done (d-i/base-config can include sensative info in world-readable log files; needs cleanup by passwd)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:43 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#356939: fixed in shadow 1:4.0.3-31sarge9
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: passwd, base-config
Severity: grave
Tags: security patch d-i

The debian-installer team has determined that various sensative
information may be leaked into world-readable log files during the
Debian installation process (sarge, etch, sid [1]). This includes:

 - preseeded passwords for root and other users if a preseed file is
   being used for an automated install (via the debconf-seed log file in
   sarge, and the cdebconf database in etch (bug #356845))
 - pppoeconf passwords in the base-config log file (bug #254068)
 - various other information about what software was installed on the
   system, and the configuration of the system

Note that unlike the similar security issues that affected Ubuntu, root
passwords are not leaked into the log files during regular,
non-preseeded installs.

The attached patches to passwd's postinst close these holes for already
installed systems, by chmoding all affected log files to mode 600. There
are two patches, one is against passwd 1:4.0.14-7 from unstable, and one
is against passwd 1:4.0.3-31sarge5 from stable. I've also include a
patch for base-confg in stable to do the same thing[2]. In combination with
installation-report 2.13 (unstable), this will fix the issue in all
circumstances.

Note that passwd is not where this bug originated, and is only being
involved in the fix because there is no better place to put the fix.
Unfortunatly, in systems installed by the sarge installer, some of the
affected log files are not owned by any particular package, so the fix
has to go into an unrelated package that is installed/upgraded on every
system.

-- 
see shy jo

[1] oldstable may also be vulnerable to the #254068 part of this issue,
but I have not investigated it.
[2] The passwd fix is needed to fix already installed systems on
upgrade now, while the base-config fix is needed to secure systems
installed after the passwd package is accepted into the next stable
point release.
diff -ur old/shadow-4.0.14/debian/changelog shadow-4.0.14/debian/changelog
--- old/shadow-4.0.14/debian/changelog  2006-03-14 15:25:49.0 -0500
+++ shadow-4.0.14/debian/changelog  2006-03-14 16:13:19.0 -0500
@@ -1,3 +1,11 @@
+shadow (1:4.0.14-8) unstable; urgency=high
+
+  * passwd.postinst: On upgrades from any prior version, chmod 600 various
+base-config and d-i log files that might contain sensative information,
+including in some cases, passwords.
+
+ -- Joey Hess [EMAIL PROTECTED]  Tue, 14 Mar 2006 16:12:11 -0500
+
 shadow (1:4.0.14-7) unstable; urgency=low
 
   * The Carré d'Aurillac release (let's stay in Cantal)
diff -ur old/shadow-4.0.14/debian/passwd.postinst 
shadow-4.0.14/debian/passwd.postinst
--- old/shadow-4.0.14/debian/passwd.postinst2006-03-14 15:25:49.0 
-0500
+++ shadow-4.0.14/debian/passwd.postinst2006-03-14 16:22:36.0 
-0500
@@ -4,6 +4,19 @@
 
 case $1 in
 configure)
+# Fix permissions on various log files from old versions of the debian
+# installer, some unrelated to passwd but we decided to put the fix
+# here since there was no better place. This can safely be removed
+# after etch is released.
+if dpkg --compare-versions $2 lt 1:4.0.14-8; then
+   for log in /var/log/base-config* \
+   $(find /var/log/debian-installer/ /var/log/installer/ -type 
f 2/dev/null ); do
+   if [ -e $log ]; then
+   chmod 600 $log
+   fi
+done
+fi
+
 rm -f /etc/pam.d/passwd.pre-upgrade 2/dev/null
if ! getent group shadow | grep -q '^shadow:[^:]*:42'
then
diff -ur old/shadow-4.0.3/debian/changelog shadow-4.0.3/debian/changelog
--- old/shadow-4.0.3/debian/changelog   2006-03-14 16:23:51.0 -0500
+++ shadow-4.0.3/debian/changelog   2006-03-14 16:16:25.0 -0500
@@ -1,3 +1,11 @@
+shadow (1:4.0.3-31sarge6) stable-security; urgency=high
+
+  * passwd.postinst: On upgrades from any prior version, chmod 600 various
+base-config and d-i log files that might contain sensative information,
+including in some cases, passwords.
+
+ -- Joey Hess [EMAIL PROTECTED]  Tue, 14 Mar 2006 16:14:26 -0500
+
 shadow (1:4.0.3-31sarge5) testing-proposed-updates; urgency=high
 
   * Re-apply the 

Processed: Fixed in NMU of sitebar 3.2.6-7.1

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 377299 + fixed
Bug#377299: sitebar: CVE-2006-3320: cross-site scripting
Tags were: patch fixed security
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#378714: marked as done (vlan: installing package breaks proxy-arp config [sarge])

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:49 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#378714: fixed in vlan 1.8-1sarge1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: vlan
Version: 1.8-1
Severity: critical
Tags: patch

In my network/interfaces I have:

iface aussen inet static
   address 172.23.118.4
   [..]
   up echo 1  /proc/sys/net/ipv4/conf/aussen/proxy_arp

which worked perfectly fine until I installed the vlan package.

The script /etc/network/if-up.d/ip installed by the vlan package resets proxy
arp:

|run-parts: executing /etc/network/if-up.d/a-cat-proxy-arp
|1
|run-parts: executing /etc/network/if-up.d/ip
|run-parts: executing /etc/network/if-up.d/ipXX-cat-proxy-arp
|0

Needless to say this breaks the system.

Note that this applies to stable only.  It appears to be fixed in unstable
(1.9-1) with a new ip script:

--- ip.orig 2006-07-18 16:16:44.344499361 +0200
+++ /etc/network/if-up.d/ip 2006-03-19 13:38:24.0 +0100
@@ -1,18 +1,21 @@
 #!/bin/sh
 # This should probably go into ifupdown
 # But usually only those with lots of interfaces (vlans) need these
-if [ -d /proc/sys/net/ipv4/conf/$IFACE ]
+if [ -d /proc/sys/net/ipv4/conf/$IFACE ]
 then
-   if [ -n $IF_IP_PROXY_ARP ]  [ $IF_IP_PROXY_ARP -eq 1 ]
-   then
-   echo 1  /proc/sys/net/ipv4/conf/$IFACE/proxy_arp
-   else
-   echo 0  /proc/sys/net/ipv4/conf/$IFACE/proxy_arp
+   if [ -n $IF_IP_PROXY_ARP ]; then
+   if [ $IF_IP_PROXY_ARP -eq 1 ]; then
+   echo 1  /proc/sys/net/ipv4/conf/$IFACE/proxy_arp
+   else
+   echo 0  /proc/sys/net/ipv4/conf/$IFACE/proxy_arp
+   fi
fi
-   if [ -n $IF_IP_RP_FILTER ]  [ $IF_IP_RP_FILTER -eq 0 ]
-   then
-   echo 0  /proc/sys/net/ipv4/conf/$IFACE/rp_filter
-   else
-   echo 1  /proc/sys/net/ipv4/conf/$IFACE/rp_filter
+   if [ -n $IF_IP_RP_FILTER ]; then
+   if [ $IF_IP_RP_FILTER -eq 0 ]; then
+   echo 0  /proc/sys/net/ipv4/conf/$IFACE/rp_filter
+   else
+   echo 1  /proc/sys/net/ipv4/conf/$IFACE/rp_filter
+   fi
fi
 fi
+

Maybe we could fix this for the next stable point release?  (Cced d-release)

Peter

---End Message---
---BeginMessage---
Source: vlan
Source-Version: 1.8-1sarge1

We believe that the bug you reported is fixed in the latest version of
vlan, which is due to be installed in the Debian FTP archive:

vlan_1.8-1sarge1.diff.gz
  to pool/main/v/vlan/vlan_1.8-1sarge1.diff.gz
vlan_1.8-1sarge1.dsc
  to pool/main/v/vlan/vlan_1.8-1sarge1.dsc
vlan_1.8-1sarge1_i386.deb
  to pool/main/v/vlan/vlan_1.8-1sarge1_i386.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loic Minier [EMAIL PROTECTED] (supplier of updated vlan 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 18 Jul 2006 21:57:57 +0200
Source: vlan
Binary: vlan
Architecture: source i386
Version: 1.8-1sarge1
Distribution: stable
Urgency: medium
Maintainer: Ard van Breemen [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 vlan   - User mode programs to enable VLANs on your ethernet devices
Closes: 330673 378714
Changes: 
 vlan (1.8-1sarge1) stable; urgency=medium
 .
   * Fix /etc/network/if-up.d/ip to not set rp_filter to 1 when rp_filter isn't
 set in /etc/network/interfaces. (Closes: #330673, #378714)
   * Add myself to Uploaders.
Files: 
 68fbc6fc027818ac90ed0b04fcf83251 601 misc extra vlan_1.8-1sarge1.dsc
 db7ac1b4feeb921fa8f24d4eba81433f 8251 misc extra vlan_1.8-1sarge1.diff.gz
 b78f70ab315962284ba08da5641aa602 23754 misc extra vlan_1.8-1sarge1_i386.deb

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

iD8DBQFEvT4P4VUX8isJIMARAp4LAJsHC75zMY3MNnTi+hGj4JEJiVwvggCeIkwY
rkAGdSmZE4fvgPGSGyZV8A0=
=Jd+w
-END PGP SIGNATURE-

---End Message---


Bug#375694: marked as done (SECURITY: date_format('%d%s', 1) crashs server)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:18 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#375694: fixed in mysql-dfsg-4.1 4.1.11a-4sarge5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---




Package: mysql-server-4.1
Version: 4.1.11a-4sarge4
Severity: maybe critical



The bug can be reproduced by entering the following SQL code:
	select date_format('%Y-%m-%d %H:%i:%s', 1151414896);

It's not correct SQL, and I expect a syntax error, but it should not crash the server!

I think it can be simplified to:
	select date_format('%d%s', 1); 






I tried on different machines:
Debian GNU/Linux 3.1, mysql-server-4.1 4.1.11a-4sarge4
Linux skool 2.6.11 #2 SMP Thu May 26 20:53:11 CEST 2005 i686 GNU/Linux
Debian GNU/Linux 3.0, mysql-server-4.1 4.1.11a-4sarge4
Linux KSKO04 2.4.23-xfs #1 SMP Mi Dez 10 22:25:03 CET 2003 i686 GNU/Linux



Sample Run:

[EMAIL PROTECTED]:~$ mysql -u root -h 192.168.1.104
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 219 to server version: 4.1.11-Debian_4sarge2-log

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql select date_format('%Y-%m-%d %H:%i:%s', 1151414896);
ERROR 2013 (HY000): Lost connection to MySQL server during query
mysql select date_format('%Y-%m-%d %H:%i:%s', 1151414896);
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 1
Current database: *** NONE ***

ERROR 2013 (HY000): Lost connection to MySQL server during query
mysql
mysql select;
ERROR 2006 (HY000): MySQL server has gone away




logs from syslog:

Jun 27 17:19:25 skool mysqld[28116]: mysqld got signal 11;
Jun 27 17:19:25 skool mysqld[28116]: This could be because you hit a bug. It is also possible that this binary
Jun 27 17:19:25 skool mysqld[28116]: or one of the libraries it was linked against is corrupt, improperly built,
Jun 27 17:19:25 skool mysqld[28116]: or misconfigured. This error can also be caused by malfunctioning hardware.
Jun 27 17:19:25 skool mysqld[28116]: We will try our best to scrape up some info that will hopefully help diagnose
Jun 27 17:19:25 skool mysqld[28116]: the problem, but since we have already crashed, something is definitely wrong
Jun 27 17:19:25 skool mysqld[28116]: and this may fail.
Jun 27 17:19:25 skool mysqld[28116]:
Jun 27 17:19:25 skool mysqld[28116]: key_buffer_size=16777216
Jun 27 17:19:25 skool mysqld[28116]: read_buffer_size=131072
Jun 27 17:19:25 skool mysqld[28116]: max_used_connections=11
Jun 27 17:19:25 skool mysqld[28116]: max_connections=100
Jun 27 17:19:25 skool mysqld[28116]: threads_connected=2
Jun 27 17:19:25 skool mysqld[28116]: It is possible that mysqld could use up to
Jun 27 17:19:25 skool mysqld[28116]: key_buffer_size + (read_buffer_size + sort_buffer_size)*max_connections = 233983 K
Jun 27 17:19:25 skool mysqld[28116]: bytes of memory
Jun 27 17:19:25 skool mysqld[28116]: Hope that's ok; if not, decrease some variables in the equation.
Jun 27 17:19:25 skool mysqld[28116]:
Jun 27 17:19:25 skool mysqld[28116]: thd=0x8bd1158
Jun 27 17:19:25 skool mysqld[28116]: Attempting backtrace. You can use the following information to find out
Jun 27 17:19:25 skool mysqld[28116]: where mysqld died. If you see no messages after this, something went
Jun 27 17:19:25 skool mysqld[28116]: terribly wrong...
Jun 27 17:19:25 skool mysqld[28116]: Cannot determine thread, fp=0xb147fc7c, backtrace may not be correct.
Jun 27 17:19:25 skool mysqld[28116]: Stack range sanity check OK, backtrace follows:
Jun 27 17:19:25 skool mysqld[28116]: 0x818935f
Jun 27 17:19:25 skool mysqld[28116]: 0xe420
Jun 27 17:19:25 skool mysqld[28116]: 0x38363032
Jun 27 17:19:25 skool mysqld[28116]: Stack trace seems successful - bottom reached
Jun 27 17:19:25 skool mysqld[28116]: Please read http://dev.mysql.com/doc/mysql/en/Using_stack_trace.html and follow instruc
tions on how to resolve the stack trace. Resolved
Jun 27 17:19:25 skool mysqld[28116]: stack trace is much more helpful in diagnosing the problem, so please do
Jun 27 17:19:25 skool mysqld[28116]: resolve it
Jun 27 17:19:25 skool mysqld[28116]: Trying to get some variables.
Jun 27 17:19:25 skool mysqld[28116]: Some pointers may be invalid and cause the dump to abort...
Jun 27 17:19:25 skool mysqld[28116]: thd-query at 0x8bd45f0 = select date_format('%Y-%m-%d %H:%i:%s', 1151414896)
Jun 27 17:19:25 skool mysqld[28116]: thd-thread_id=19
Jun 27 17:19:25 skool mysqld[28116]: The manual page at http://www.mysql.com/doc/en/Crashing.html contains
Jun 27 

Processed: Fixed in NMU of hashcash 1.17-1sarge1

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 376444 + fixed
Bug#376444: hashcash: CVE-2006-3251: buffer overflow
Tags were: sarge patch security
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Fixed in NMU of octaviz 0.4.0-10sarge1

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 304162 + fixed
Bug#304162: vtk_init does not work because liboctaviz is in a wrong place
Tags were: fixed sarge
Tags added: fixed

 tag 341676 + fixed
Bug#341676: liboctaviz.so not found
Tags were: fixed sarge
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Fixed in NMU of zope2.7 2.7.5-2sarge2

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 377285 + fixed
Bug#377285: Zope2 contains information disclosure vulnerability
Tags were: security
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Fixed in NMU of mailman 2.1.5-8sarge3

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 358575 + fixed
Bug#358575: purge mailman deletes all ucf-managed conffiles
Tags were: fixed patch
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#367579: marked as done (Package is not building with sudo)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:02:01 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#367579: fixed in freetype 2.1.7-5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: freetype
Version: 2.1.10-3
Severity: grave
Tags: patch

The build is failing with sudo because $HOME is not set and thus $(PWD) is
also not set.

The patch just uses $(CURDIR) instead. Enjoy our workshop work!

Luk Claes
Daniel Baumann
Kurt Roeckx
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/
diff -ur freetype-2.1.10/debian/changelog freetype-2.1.10.fixed/debian/changelog
--- freetype-2.1.10/debian/changelog2006-05-16 17:48:47.0 -0500
+++ freetype-2.1.10.fixed/debian/changelog  2006-05-16 17:40:43.0 
-0500
@@ -1,11 +1,3 @@
+freetype (2.1.10-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Avoid use of $(PWD) which is not set due to sudo removing $HOME
+and use $(CURDIR) instead.
+
+ -- Raphael Hertzog [EMAIL PROTECTED]  Tue, 16 May 2006 22:47:56 +
+
 freetype (2.1.10-3) unstable; urgency=low
 
   * Removed freetype-2.1.10-fixaliasing.patch to restore proper sub-pixel
diff -ur freetype-2.1.10/debian/rules freetype-2.1.10.fixed/debian/rules
--- freetype-2.1.10/debian/rules2006-05-16 17:47:00.0 -0500
+++ freetype-2.1.10.fixed/debian/rules  2006-05-16 17:43:05.0 -0500
@@ -52,7 +52,7 @@
 # These files are general documentation and should go into the lib package.
 libdoc = FTL.TXT CHANGES PATENTS TODO
 
-TMP = $(PWD)/debian/tmp
+TMP := $(CURDIR)/debian/tmp
 
 build: build-stamp
 build-stamp:
---End Message---
---BeginMessage---
Source: freetype
Source-Version: 2.1.7-5

We believe that the bug you reported is fixed in the latest version of
freetype, which is due to be installed in the Debian FTP archive:

freetype2-demos_2.1.7-5_i386.deb
  to pool/main/f/freetype/freetype2-demos_2.1.7-5_i386.deb
freetype_2.1.7-5.diff.gz
  to pool/main/f/freetype/freetype_2.1.7-5.diff.gz
freetype_2.1.7-5.dsc
  to pool/main/f/freetype/freetype_2.1.7-5.dsc
libfreetype6-dev_2.1.7-5_i386.deb
  to pool/main/f/freetype/libfreetype6-dev_2.1.7-5_i386.deb
libfreetype6-udeb_2.1.7-5_i386.udeb
  to pool/main/f/freetype/libfreetype6-udeb_2.1.7-5_i386.udeb
libfreetype6_2.1.7-5_i386.deb
  to pool/main/f/freetype/libfreetype6_2.1.7-5_i386.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Steve Langasek [EMAIL PROTECTED] (supplier of updated freetype 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 27 Aug 2006 01:39:16 -0700
Source: freetype
Binary: freetype2-demos libfreetype6-udeb libfreetype6 libfreetype6-dev
Architecture: source i386
Version: 2.1.7-5
Distribution: stable
Urgency: low
Maintainer: Steve Langasek [EMAIL PROTECTED]
Changed-By: Steve Langasek [EMAIL PROTECTED]
Description: 
 freetype2-demos - FreeType 2 demonstration programs
 libfreetype6 - FreeType 2 font engine, shared library files
 libfreetype6-dev - FreeType 2 font engine, development files
 libfreetype6-udeb - FreeType 2 font engine for the debian-installer (udeb)
Closes: 367579
Changes: 
 freetype (2.1.7-5) stable; urgency=low
 .
   * Backport the fix for bug #367579 (use CURDIR instead of PWD) so that
 the package can be built under sudo.  Closes: #367579.
Files: 
 f17db30a15c21feebf508e820596131e 754 libs optional freetype_2.1.7-5.dsc
 51acec841a1f355fc7367f148beedaa3 57163 libs optional freetype_2.1.7-5.diff.gz
 dfc816d60f0f7b1a5470585ef1efa202 364730 libs optional 
libfreetype6_2.1.7-5_i386.deb
 b36195f9985bc725fd6ea9f98050d81b 695052 libdevel optional 
libfreetype6-dev_2.1.7-5_i386.deb
 529602ce23c64a5760ad2e11a9b46b72 63184 utils optional 
freetype2-demos_2.1.7-5_i386.deb
 ef572a5199688d2a02e5836d7dcca34f 212966 debian-installer extra 
libfreetype6-udeb_2.1.7-5_i386.udeb

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

iD8DBQFE8VsDKN6ufymYLloRAsptAJ0RYgLRpGe8Ogk6O2Z0icdWx4ZjVwCgiwX1
xiITabObETSVmBiJFaRYNcE=
=cY9L
-END PGP SIGNATURE-

---End Message---


Processed: Fixed in NMU of blender 2.36-1sarge1

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 330895 + fixed
Bug#330895: blender [CVE-2005-3302]: Arbitrary code execution when importing a 
.bvh file
Tags were: patch security
Tags added: fixed

 tag 344398 + fixed
Bug#344398: CVE-2005-4470: Integer overhead in header parser for .blend import
Tags were: patch security
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#361863: marked as done (CVE-2006-1655: Unspecified vulnerability in mpg123)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:16 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#361863: fixed in mpg123 0.59r-20sarge1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: mpg123
Version: 0.59r-21
Severity: grave
Tags: security

cite:
Unspecified vulnerability in mpg123 0.59r allows user-complicit
attackers to trigger a segmentation fault and possibly have other
impacts via a certain MP3 file, as demonstrated by mpg1DoS3.  NOTE:
this issue might be related to CVE-2004-0991, but it is not clear.


Version 0.59r-21 should be fixed against CVE-2004-0991 but segfaults
with the poc-exploit. So it seems to be a different vulnerability
than CVE-2004-0991.

gdb says the segfault is in layer3.c:1185, but debugging this is beyond
me.

If you fix it, please mention the CVE-id in the changelog.

---End Message---
---BeginMessage---
Source: mpg123
Source-Version: 0.59r-20sarge1

We believe that the bug you reported is fixed in the latest version of
mpg123, which is due to be installed in the Debian FTP archive:

mpg123-esd_0.59r-20sarge1_alpha.deb
  to pool/non-free/m/mpg123/mpg123-esd_0.59r-20sarge1_alpha.deb
mpg123-esd_0.59r-20sarge1_i386.deb
  to pool/non-free/m/mpg123/mpg123-esd_0.59r-20sarge1_i386.deb
mpg123-esd_0.59r-20sarge1_powerpc.deb
  to pool/non-free/m/mpg123/mpg123-esd_0.59r-20sarge1_powerpc.deb
mpg123-nas_0.59r-20sarge1_i386.deb
  to pool/non-free/m/mpg123/mpg123-nas_0.59r-20sarge1_i386.deb
mpg123-oss-3dnow_0.59r-20sarge1_i386.deb
  to pool/non-free/m/mpg123/mpg123-oss-3dnow_0.59r-20sarge1_i386.deb
mpg123-oss-i486_0.59r-20sarge1_i386.deb
  to pool/non-free/m/mpg123/mpg123-oss-i486_0.59r-20sarge1_i386.deb
mpg123_0.59r-20sarge1.diff.gz
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1.diff.gz
mpg123_0.59r-20sarge1.dsc
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1.dsc
mpg123_0.59r-20sarge1_alpha.deb
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1_alpha.deb
mpg123_0.59r-20sarge1_arm.deb
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1_arm.deb
mpg123_0.59r-20sarge1_hppa.deb
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1_hppa.deb
mpg123_0.59r-20sarge1_i386.deb
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1_i386.deb
mpg123_0.59r-20sarge1_m68k.deb
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1_m68k.deb
mpg123_0.59r-20sarge1_powerpc.deb
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1_powerpc.deb
mpg123_0.59r-20sarge1_sparc.deb
  to pool/non-free/m/mpg123/mpg123_0.59r-20sarge1_sparc.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Daniel Kobras [EMAIL PROTECTED] (supplier of updated mpg123 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  3 May 2006 16:59:50 +0200
Source: mpg123
Binary: mpg123-esd mpg123-oss-3dnow mpg123-nas mpg123-oss-i486 mpg123
Architecture: alpha arm hppa i386 m68k powerpc source sparc 
Version: 0.59r-20sarge1
Distribution: stable-security
Urgency: high
Maintainer: Daniel Kobras [EMAIL PROTECTED]
Changed-By: Daniel Kobras [EMAIL PROTECTED]
Description: 
 mpg123 - MPEG layer 1/2/3 audio player
 mpg123-esd - MPEG layer 1/2/3 audio player with Esound support
Closes: 361863
Changes: 
 mpg123 (0.59r-20sarge1) stable-security; urgency=high
 .
   * layer3.c: Fix buffer overflow in III_i_stereo() (CVE-2006-1655).
 Closes: #361863
Files: 
 04843c3a016782384e2dc5ae987a365d 98058 non-free/sound optional 
mpg123-esd_0.59r-20sarge1_powerpc.deb
 3119adeed1228f6bd10c3f7100a308e0 41527 non-free/sound optional 
mpg123_0.59r-20sarge1.diff.gz
 3cc30d3290684dbce40e71acec6202ad 91586 non-free/sound optional 
mpg123_0.59r-20sarge1_sparc.deb
 54462dbc34ad9fbbfce90fec5608e79f 87232 non-free/sound optional 
mpg123-esd_0.59r-20sarge1_i386.deb
 55e68e2a8a4ad452d9078d26550fcd3b 124814 non-free/sound optional 
mpg123-esd_0.59r-20sarge1_alpha.deb
 5f04ef0d8a5ae5c30f3acdc0c00b0927 101702 non-free/sound optional 
mpg123_0.59r-20sarge1_hppa.deb
 ba026638de21be9fa5061056bd53a43d 751 non-free/sound optional 
mpg123_0.59r-20sarge1.dsc
 82ab3c03fc9256ad5e5049152a8c00fc 102068 non-free/sound optional 

Processed: Fixed in NMU of evms 2.5.2-1.sarge2

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 364017 + fixed
Bug#364017: evms_activate segfaults and locks the machine completely on boot 
with degraded RAID-5
There were no tags set.
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#372734: marked as done (Template #30 in /var/lib/dpkg/info/base-config.templates does not contain a 'Template:' line)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:01:37 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#372734: fixed in base-config 2.53.10.2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---

Package: base-config
Version: 2.53.10.1

Upon installation of this package using apt-get, I receive:

Template #30 in /var/lib/dpkg/info/base-config.templates does not 
contain a 'Template:' line


and the apt-get process ends with E: Sub-process /usr/bin/dpkg returned 
an error code (1)


---End Message---
---BeginMessage---
Source: base-config
Source-Version: 2.53.10.2

We believe that the bug you reported is fixed in the latest version of
base-config, which is due to be installed in the Debian FTP archive:

base-config_2.53.10.2.dsc
  to pool/main/b/base-config/base-config_2.53.10.2.dsc
base-config_2.53.10.2.tar.gz
  to pool/main/b/base-config/base-config_2.53.10.2.tar.gz
base-config_2.53.10.2_all.deb
  to pool/main/b/base-config/base-config_2.53.10.2_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Joey Hess [EMAIL PROTECTED] (supplier of updated base-config 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 11 Jun 2006 14:23:35 -0400
Source: base-config
Binary: base-config
Architecture: source all
Version: 2.53.10.2
Distribution: stable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 base-config - Debian base system configurator
Closes: 372734
Changes: 
 base-config (2.53.10.2) stable; urgency=low
 .
   * Rebuilt in a sarge chroot since it generates incorrect debconf templates
 if built in sid. Closes: #372734
Files: 
 675daa19b4db1e7731bb9037b7e0bb76 725 base optional base-config_2.53.10.2.dsc
 b2137aeef1fdc92f2a757c4cf131a950 382844 base optional 
base-config_2.53.10.2.tar.gz
 2f4338047de00bd85d06cf68755fb73c 307408 base optional 
base-config_2.53.10.2_all.deb

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

iD8DBQFEjGB22tp5zXiKP0wRAlnlAJ9WefzRUdVzdoD5Xekxm9f4XZ2DwQCfTm3w
nA2j+LBZiOc9wCBNezp/gsQ=
=nQWM
-END PGP SIGNATURE-

---End Message---


Bug#372115: marked as done (Last security update of postgresql-contrib breaks database replication with DBMirror.pl)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:30 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#372115: fixed in postgresql 7.4.7-6sarge3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: postgresql-contrib
Version: 7.4.7-6sarge2
Severity: critical
Justification: causes serious data loss


Hello,

using version 7.4.7-6sarge2 of postgresql-contrib cause trouble in
database replication using /usr/lib/postgresql/bin/DBMirror.pl

The problem I have found is if there is a ' character (the single quote)
in the data. In this case, the single quote (') is replaced by two
single quotes ('') in the table PendingData. This cause the replication
process to stop with a message Error in PendingData Sequence Id XXX.

To replicate the non-replicated data, I have run a patched version of
DBMirror.pl. Here is my patch (mainly replacing the two single quotes by
a backslash and one single quote, this mean '' - \'. Execepted if there
is a equal before, this mean don't replace ='') :

--- /usr/lib/postgresql/bin/DBMirror.pl 2005-05-18 10:33:34.0 +0200
+++ ./DBMirror.pl   2006-06-08 11:53:39.0 +0200
@@ -827,6 +827,9 @@
   $fnumber = 4;
   my $dataField = $pendingResult-getvalue($currentTuple,$fnumber);
 
+  # replace all the '' to \' in the texts
+  $dataField =~ s/([^=])\'\'/\1\\\'/g;
+
   while(length($dataField)0) {
 # Extract the field name that is surronded by double quotes
 $dataField =~ m/(\.*?\)/s;

I'm sure this patch is not enough, because this don't take in account if
the data has in it something like =''. I think the part to patch is
not the DBMirror.pl, but the recordchange procedure called by the
trigger on each data change.

Reverting postgresql-contrib to version 7.4.7-6sarge1 correct the
problem only if you have nothing in the Pending table.

Thanks for your attention, and have a nice day.

Oliver

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.22
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages postgresql-contrib depends on:
ii  libc6 2.3.2.ds1-22sarge3 GNU C Library: Shared libraries an
ii  libdbd-pg-perl1.41-3 a PostgreSQL interface for Perl 5 
ii  libkrb53  1.3.6-2sarge2  MIT Kerberos runtime libraries
ii  libpam0g  0.76-22Pluggable Authentication Modules l
ii  libpg-perl1:2.0.2-4  Perl modules for PostgreSQL
ii  libpq37.4.7-6sarge2  PostgreSQL C client library
ii  libreadline4  4.3-11 GNU readline and history libraries
ii  libssl0.9.7   0.9.7e-3sarge1 SSL shared libraries
ii  libxml2   2.6.16-7   GNOME XML library
ii  postgresql7.4.7-6sarge2  object-relational SQL database man
ii  zlib1g1:1.2.2-4.sarge.2  compression library - runtime

-- no debconf information

---End Message---
---BeginMessage---
Source: postgresql
Source-Version: 7.4.7-6sarge3

We believe that the bug you reported is fixed in the latest version of
postgresql, which is due to be installed in the Debian FTP archive:

libecpg-dev_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/libecpg-dev_7.4.7-6sarge3_i386.deb
libecpg4_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/libecpg4_7.4.7-6sarge3_i386.deb
libpgtcl-dev_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/libpgtcl-dev_7.4.7-6sarge3_i386.deb
libpgtcl_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/libpgtcl_7.4.7-6sarge3_i386.deb
libpq3_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/libpq3_7.4.7-6sarge3_i386.deb
postgresql-client_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/postgresql-client_7.4.7-6sarge3_i386.deb
postgresql-contrib_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/postgresql-contrib_7.4.7-6sarge3_i386.deb
postgresql-dev_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/postgresql-dev_7.4.7-6sarge3_i386.deb
postgresql-doc_7.4.7-6sarge3_all.deb
  to pool/main/p/postgresql/postgresql-doc_7.4.7-6sarge3_all.deb
postgresql_7.4.7-6sarge3.diff.gz
  to pool/main/p/postgresql/postgresql_7.4.7-6sarge3.diff.gz
postgresql_7.4.7-6sarge3.dsc
  to pool/main/p/postgresql/postgresql_7.4.7-6sarge3.dsc
postgresql_7.4.7-6sarge3_i386.deb
  to pool/main/p/postgresql/postgresql_7.4.7-6sarge3_i386.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 

Bug#379064: marked as done (dumb: CVE-2006-3668: arbitrary code execution)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:02:27 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#379064: fixed in libdumb 1:0.9.2-6
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: libdumb
Severity: serious
Tags: security

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

CVE-2006-3668: Heap-based buffer overflow in the it_read_envelope
function in Dynamic Universal Music Bibliotheque (DUMB) 0.9.3 and
earlier, and current CVS as of 20060716, allows user-complicit attackers
to execute arbitrary code via a .it (Impulse Tracker) file with an
enveloper with a large number of nodes.

There is a proof-of-concept expoit [1] in the original advisory [2].  I
have not verified the issue.  Sarge is probably vulnerable.  I do not
see an upstream patch, but the original advisory suggests that the issue
will be fixed in the next version.

Please mention the CVE in your changelog.

Thanks,

Alec

[1] http://aluigi.org/poc/dumbit.zip
[2] http://aluigi.altervista.org/adv/dumbit-adv.txt

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

iD8DBQFEwAMzAud/2YgchcQRAnROAKCAbMTcW5DcUY9cNysbNEC1cgKznQCgxeZU
bHCS1r8WWutRKUbCIaRRHw8=
=26dP
-END PGP SIGNATURE-

---End Message---
---BeginMessage---
Source: libdumb
Source-Version: 1:0.9.2-6

We believe that the bug you reported is fixed in the latest version of
libdumb, which is due to be installed in the Debian FTP archive:

libaldmb0-dev_0.9.2-6_i386.deb
  to pool/main/libd/libdumb/libaldmb0-dev_0.9.2-6_i386.deb
libaldmb0_0.9.2-6_i386.deb
  to pool/main/libd/libdumb/libaldmb0_0.9.2-6_i386.deb
libdumb0-dev_0.9.2-6_i386.deb
  to pool/main/libd/libdumb/libdumb0-dev_0.9.2-6_i386.deb
libdumb0_0.9.2-6_i386.deb
  to pool/main/libd/libdumb/libdumb0_0.9.2-6_i386.deb
libdumb_0.9.2-6.diff.gz
  to pool/main/libd/libdumb/libdumb_0.9.2-6.diff.gz
libdumb_0.9.2-6.dsc
  to pool/main/libd/libdumb/libdumb_0.9.2-6.dsc



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sam Hocevar (Debian packages) [EMAIL PROTECTED] (supplier of updated libdumb 
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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 21 Jul 2006 11:07:45 +0200
Source: libdumb
Binary: libaldmb0-dev libaldmb0 libdumb0-dev libdumb0
Architecture: source i386
Version: 1:0.9.2-6
Distribution: stable-security
Urgency: high
Maintainer: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
Changed-By: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
Description: 
 libaldmb0  - dynamic universal music bibliotheque, allegro version
 libaldmb0-dev - development files for libaldmb0
 libdumb0   - dynamic universal music bibliotheque
 libdumb0-dev - development files for libdumb0
Closes: 379064
Changes: 
 libdumb (1:0.9.2-6) stable-security; urgency=high
 .
   * src/it/itread.c:
 + Fix for CVE-2006-3668 Heap-based buffer overflow in the it_read_envelope
   function in Dynamic Universal Music Bibliotheque (DUMB) 0.9.3 and
   earlier, and current CVS as of 20060716, allows user-complicit attackers
   to execute arbitrary code via a .it (Impulse Tracker) file with an
   enveloper with a large number of nodes. (Closes: #379064).
Files: 
 32242f365a1433e66ca9e46a004523df 634 libs optional libdumb_0.9.2-6.dsc
 0ce45f64934e6d5d7b82a55108596680 145722 libs optional libdumb_0.9.2.orig.tar.gz
 65aa4b7596e81c622e830bbe1d32ff22 3914 libs optional libdumb_0.9.2-6.diff.gz
 ead6a0b39172a059491c864b9985101f 108496 libs optional libdumb0_0.9.2-6_i386.deb
 a0d02ff38ef6791845756ca2394a4bc5 47478 libdevel optional 
libdumb0-dev_0.9.2-6_i386.deb
 1c721ae454752d3a252f1cfc9a773d41 74484 libs optional libaldmb0_0.9.2-6_i386.deb
 e4b77e2545480a205f675e39017efc58 4738 libdevel optional 
libaldmb0-dev_0.9.2-6_i386.deb

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

iD8DBQFEwQSOXm3vHE4uyloRAr8cAKDlhjg3bz8EvGrDjilhuKe0gjFNFQCguT1Q
5tiomedTMa9ysqsr29fgVvo=
=+I7H
-END PGP SIGNATURE-

---End Message---


Bug#373913: marked as done (SECURITY: CAN-2006-3081: str_to_date(1,NULL) crashs the server)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:18 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#373913: fixed in mysql-dfsg-4.1 4.1.11a-4sarge5
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: mysql-server
Version: 3.23.49-8.15 4.0.24-10sarge2
Severity: grave
Tags: security

A query like select str_to_date( 1, NULL ); crashes mysqld.
This affects:
  Woody: mysql-server   3.23.x
  Sarge: mysql-server   4.0.x
  Sarge: mysql-server-4.1   4.1.x
Unstable/Testing is already fixed.

We are already preparing a DSA for Woody and Sarge.

References:
  http://seclists.org/lists/fulldisclosure/2006/Jun/0434.html
  http://bugs.mysql.com/bug.php?id=15828

bye,

-christan-


---End Message---
---BeginMessage---
Source: mysql-dfsg-4.1
Source-Version: 4.1.11a-4sarge5

We believe that the bug you reported is fixed in the latest version of
mysql-dfsg-4.1, which is due to be installed in the Debian FTP archive:

libmysqlclient14-dev_4.1.11a-4sarge5_i386.deb
  to pool/main/m/mysql-dfsg-4.1/libmysqlclient14-dev_4.1.11a-4sarge5_i386.deb
libmysqlclient14_4.1.11a-4sarge5_i386.deb
  to pool/main/m/mysql-dfsg-4.1/libmysqlclient14_4.1.11a-4sarge5_i386.deb
mysql-client-4.1_4.1.11a-4sarge5_i386.deb
  to pool/main/m/mysql-dfsg-4.1/mysql-client-4.1_4.1.11a-4sarge5_i386.deb
mysql-common-4.1_4.1.11a-4sarge5_all.deb
  to pool/main/m/mysql-dfsg-4.1/mysql-common-4.1_4.1.11a-4sarge5_all.deb
mysql-dfsg-4.1_4.1.11a-4sarge5.diff.gz
  to pool/main/m/mysql-dfsg-4.1/mysql-dfsg-4.1_4.1.11a-4sarge5.diff.gz
mysql-dfsg-4.1_4.1.11a-4sarge5.dsc
  to pool/main/m/mysql-dfsg-4.1/mysql-dfsg-4.1_4.1.11a-4sarge5.dsc
mysql-server-4.1_4.1.11a-4sarge5_i386.deb
  to pool/main/m/mysql-dfsg-4.1/mysql-server-4.1_4.1.11a-4sarge5_i386.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Hammers [EMAIL PROTECTED] (supplier of updated mysql-dfsg-4.1 
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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 16 Jun 2006 09:52:12 +
Source: mysql-dfsg-4.1
Binary: libmysqlclient14-dev mysql-common-4.1 libmysqlclient14 mysql-server-4.1 
mysql-client-4.1
Architecture: source i386 all
Version: 4.1.11a-4sarge5
Distribution: stable-security
Urgency: low
Maintainer: Christian Hammers [EMAIL PROTECTED]
Changed-By: Christian Hammers [EMAIL PROTECTED]
Description: 
 libmysqlclient14 - mysql database client library
 libmysqlclient14-dev - mysql database development files
 mysql-client-4.1 - mysql database client binaries
 mysql-common-4.1 - mysql database common files (e.g. /etc/mysql/my.cnf)
 mysql-server-4.1 - mysql database server binaries
Closes: 373913 375694
Changes: 
 mysql-dfsg-4.1 (4.1.11a-4sarge5) stable-security; urgency=low
 .
   * Security upload prepared for the security team by the Debian MySQL
 package maintainers.
   * Fixed DoS bug where any user could crash the server with
 SELECT str_to_date(1, NULL); (CVE-2006-3081).
 The vulnerability was discovered by Kanatoko [EMAIL PROTECTED].
 Closes: #373913
   * Fixed DoS bug where any user could crash the server with
 SELECT date_format('%d%s', 1); (CVE-2006-3469).
 The vulnerability was discovered by Maillefer Jean-David
 [EMAIL PROTECTED] and filed as MySQL bug #20729.
 Closes: #375694
Files: 
 9cd4f7df9345856d06846e0ddb50b9ee 1021 misc optional 
mysql-dfsg-4.1_4.1.11a-4sarge5.dsc
 e45db0b01b3adaf09500d54090f3a1e1 168442 misc optional 
mysql-dfsg-4.1_4.1.11a-4sarge5.diff.gz
 e8115191126dc0b373a53024e5c78733 36520 misc optional 
mysql-common-4.1_4.1.11a-4sarge5_all.deb
 ab5768abe67a1d21c714a078f2ec86f0 1418036 libs optional 
libmysqlclient14_4.1.11a-4sarge5_i386.deb
 bf891e68e488947fd28a940a367d722f 5643732 libdevel optional 
libmysqlclient14-dev_4.1.11a-4sarge5_i386.deb
 f5d4a9e5b289d895ba021190f907829f 830724 misc optional 
mysql-client-4.1_4.1.11a-4sarge5_i386.deb
 b580eeaf7a3806b95a07435acbe48e27 14558034 misc optional 
mysql-server-4.1_4.1.11a-4sarge5_i386.deb

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

iD8DBQFEsq66Xm3vHE4uyloRAgB4AKDZu0uKZDSFB8uicz4G1oFrIR+YEwCgnzNr

Bug#378059: marked as done (hiki: CVE-2006-3379 remote denial of service)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:02:12 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#378059: fixed in hiki 0.6.5-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: hiki
Version: 0.8.3-1 0.6.5-1
Severity: serious
Tags: security

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

CVE-2006-3379: Algorithmic complexity vulnerability in Hiki Wiki 0.6.0
through 0.6.5 and 0.8.0 through 0.8.5 allows remote attackers to cause a
denial of service (CPU consumption) by performing a diff between large,
crafted pages that trigger the worst case.

The Hiki team has issued an advisory [1].  This affects the version in
Sarge.

The fix for this issue, according to ChangeLog [2] r1.417, appears to be
in r1.81 of hiki/command.rb [3], r1.113 of hiki/config.rb [4], r1.18 of
hikiconf.rb [5], and r1.10 of misc/i18n/hikiconf.rb.sample.en [6].
These changes are included in the latest version, 0.8.6.
Unfortunately, the patches don't apply cleanly to 0.6.5; I hope to
follow up with a real diff.

Please mention the CVE in your changelog.

Thanks,

Alec

[1] http://hikiwiki.org/en/advisory20060703.html
[2] 
http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/hiki/hiki/ChangeLog?rev=1.417view=log
[3] 
http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/hiki/hiki/hiki/command.rb?rev=1.81view=log
[4] 
http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/hiki/hiki/hiki/config.rb?rev=1.113view=log
[5] 
http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/hiki/hiki/hikiconf.rb.sample?rev=1.18view=log
[6] 
http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/hiki/hiki/misc/i18n/hikiconf.rb.sample.en?rev=1.10view=log

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

iD8DBQFEtYqvAud/2YgchcQRAttoAKDqMLGQtLoS9xoRQ88EY30ilEWgigCfa+Ua
/lI3ObdN+hGs0GR74WNZurQ=
=BPAR
-END PGP SIGNATURE-

---End Message---
---BeginMessage---
Source: hiki
Source-Version: 0.6.5-2

We believe that the bug you reported is fixed in the latest version of
hiki, which is due to be installed in the Debian FTP archive:

hiki_0.6.5-2.diff.gz
  to pool/main/h/hiki/hiki_0.6.5-2.diff.gz
hiki_0.6.5-2.dsc
  to pool/main/h/hiki/hiki_0.6.5-2.dsc
hiki_0.6.5-2_all.deb
  to pool/main/h/hiki/hiki_0.6.5-2_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Taku YASUI [EMAIL PROTECTED] (supplier of updated hiki 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 21 Jul 2006 02:54:07 +0900
Source: hiki
Binary: hiki
Architecture: source all
Version: 0.6.5-2
Distribution: stable-security
Urgency: high
Maintainer: Taku YASUI [EMAIL PROTECTED]
Changed-By: Taku YASUI [EMAIL PROTECTED]
Description: 
 hiki   - Wiki Engine written in Ruby
Closes: 378059
Changes: 
 hiki (0.6.5-2) stable-security; urgency=high
 .
   * Security fix: CVE-2006-3379
 (closes: #378059)
Files: 
 fa72e16d4c5eb8108ccd603b3396bd76 561 web optional hiki_0.6.5-2.dsc
 46c81d7c9e5f52115df2fd91b6cc0bf4 1573 web optional hiki_0.6.5-2.diff.gz
 b1e689405cc70854ad77f5be95a86606 108780 web optional hiki_0.6.5-2_all.deb
 11c97fe604d70fc42f6c198ec64018e9 143468 web optional hiki_0.6.5.orig.tar.gz

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

iD8DBQFEv9NvW5ql+IAeqTIRAsaJAJ9hJiccrvgPXMlpll2E0rS+BiuE3ACfbjrY
W8XizzL2QCwkGNbwaQW467U=
=ACk2
-END PGP SIGNATURE-

---End Message---


Bug#369829: marked as done (wzdftpd-mod-perl 0.5.2-1.1sarge1 can't be installed)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:53 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#369829: fixed in wzdftpd 0.5.2-1.1sarge2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: wzdftpd-mod-perl
Severity: grave
Justification: renders package unusable

wzdftpd-mod-perl 0.5.2-1.1sarge1 can't be installed on Sarge because it 
depends
on wzdftpd 0.5.2-1 which doesn't exist anymore in stable (0.5.2-1.1sarge1 
now).

wzdftpd-mod-tcl from stable have the same problem.

Regards,

Gonéri Le Bouder

---End Message---
---BeginMessage---
Source: wzdftpd
Source-Version: 0.5.2-1.1sarge2

We believe that the bug you reported is fixed in the latest version of
wzdftpd, which is due to be installed in the Debian FTP archive:

wzdftpd-back-mysql_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd-back-mysql_0.5.2-1.1sarge2_i386.deb
wzdftpd-dev_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd-dev_0.5.2-1.1sarge2_i386.deb
wzdftpd-mod-perl_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd-mod-perl_0.5.2-1.1sarge2_i386.deb
wzdftpd-mod-tcl_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd-mod-tcl_0.5.2-1.1sarge2_i386.deb
wzdftpd_0.5.2-1.1sarge2.diff.gz
  to pool/main/w/wzdftpd/wzdftpd_0.5.2-1.1sarge2.diff.gz
wzdftpd_0.5.2-1.1sarge2.dsc
  to pool/main/w/wzdftpd/wzdftpd_0.5.2-1.1sarge2.dsc
wzdftpd_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd_0.5.2-1.1sarge2_i386.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pierre Chifflier [EMAIL PROTECTED] (supplier of updated wzdftpd 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  4 Jul 2006 15:17:33 +0200
Source: wzdftpd
Binary: wzdftpd-mod-perl wzdftpd-back-mysql wzdftpd-dev wzdftpd wzdftpd-mod-tcl
Architecture: source i386
Version: 0.5.2-1.1sarge2
Distribution: stable
Urgency: high
Maintainer: Pierre Chifflier [EMAIL PROTECTED]
Changed-By: Pierre Chifflier [EMAIL PROTECTED]
Description: 
 wzdftpd- A portable, modular, not user-friendly ftp server
 wzdftpd-back-mysql - MySQL backend for wzdftpd
 wzdftpd-dev - Development files for wzdftpd
 wzdftpd-mod-perl - Perl module for wzdftpd
 wzdftpd-mod-tcl - TCL module for wzdftpd
Closes: 369829 372531
Changes: 
 wzdftpd (0.5.2-1.1sarge2) stable; urgency=high
 .
   * Fix depends for wzdftpd-mod-perl and wzdftpd-mod-tcl (Closes: #372531,
 #369829)
Files: 
 471b87e8e2bd3c94b8c589f869e8622e 770 net optional wzdftpd_0.5.2-1.1sarge2.dsc
 4753883e165d8fefff1992ae63bc69d7 17559 net optional 
wzdftpd_0.5.2-1.1sarge2.diff.gz
 841418e9e9f20ee5db30ca89f83777f7 274956 net optional 
wzdftpd_0.5.2-1.1sarge2_i386.deb
 de419fe1036b077e42c08cf19f0ecae2 28854 net optional 
wzdftpd-back-mysql_0.5.2-1.1sarge2_i386.deb
 3cf8d9b580462021da6f494f8e3bc931 29736 net optional 
wzdftpd-mod-tcl_0.5.2-1.1sarge2_i386.deb
 27b734f2b84768e318c6a86a02ee3d5b 46796 net optional 
wzdftpd-mod-perl_0.5.2-1.1sarge2_i386.deb
 07b264446b4b2024ff7fa1a6380f16ac 202620 libdevel optional 
wzdftpd-dev_0.5.2-1.1sarge2_i386.deb

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

iD8DBQFErDQpw3ao2vG823MRAihwAJ0T5C5GZVhwTmqX8qVDIPo9vt9ynQCfW6HO
lil4TRbe+IV1h8YJsPqTvOc=
=4sy1
-END PGP SIGNATURE-

---End Message---


Bug#363978: marked as done (rssh: broken command line parsing)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:37 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#363978: fixed in rssh 2.2.3-1.sarge.2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: rssh
Version: 2.2.3-1.sarge.1

Since http://packages.qa.debian.org/r/rssh/news/20060418T004132Z.html
rssh seem to run incorrectly:

I have this following /etc/rssh.conf config file:

logfacility = LOG_USER
umask = 022
user=test:011:1:

it's supposed to force user test to run rsync only without chroot

if i'm on an other host and run something else than rsync it do that:

# ssh [EMAIL PROTECTED]:
Linux host 2.6.15.1 #2 Sun Jan 15 21:11:04 EST 2006 i686 GNU/Linux

Last login: Thu Apr 20 16:22:00 2006 from host2

This account is restricted by rssh.
Allowed commands: scp

If you believe this is in error, please contact your system administrator.

Connection to host closed.

scp? I did specified rsync only (1)
I try something else like ls:

# ssh [EMAIL PROTECTED] ls
Usage: ls [cvs-options] command [command-options-and-arguments]
  where cvs-options are -q, -n, etc.
(specify --help-options for a list of options)
  where command is add, admin, etc.
(specify --help-commands for a list of commands
 or --help-synonyms for a list of command synonyms)
  where command-options-and-arguments depend on the specific command
(specify -H followed by a command name for command-specific help)
  Specify --help to receive this message

The Concurrent Versions System (CVS) is a tool for version control.
For CVS updates and additional information, see
the CVS home page at http://www.cvshome.org/ or
Pascal Molli's CVS site at http://www.loria.fr/~molli/cvs-index.html

ls with cvs output?

I tried again with rsync and not-existing command:

Usage: something_that_dont_exist [cvs-options] command
[command-options-and-arguments]

Since that upgrade rssh don't work anymore like it used to be
I've looked trough the configuration file and it haven't changed.

thanks, bye

---End Message---
---BeginMessage---
Source: rssh
Source-Version: 2.2.3-1.sarge.2

We believe that the bug you reported is fixed in the latest version of
rssh, which is due to be installed in the Debian FTP archive:

rssh_2.2.3-1.sarge.2.diff.gz
  to pool/main/r/rssh/rssh_2.2.3-1.sarge.2.diff.gz
rssh_2.2.3-1.sarge.2.dsc
  to pool/main/r/rssh/rssh_2.2.3-1.sarge.2.dsc
rssh_2.2.3-1.sarge.2_i386.deb
  to pool/main/r/rssh/rssh_2.2.3-1.sarge.2_i386.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jesus Climent [EMAIL PROTECTED] (supplier of updated rssh 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 24 Jun 2006 11:54:12 +
Source: rssh
Binary: rssh
Architecture: source i386
Version: 2.2.3-1.sarge.2
Distribution: stable-security
Urgency: high
Maintainer: Jesus Climent [EMAIL PROTECTED]
Changed-By: Jesus Climent [EMAIL PROTECTED]
Description: 
 rssh   - Restricted shell allowing only scp, sftp, cvs, rsync and/or rdist
Closes: 363978
Changes: 
 rssh (2.2.3-1.sarge.2) stable-security; urgency=high
 .
   * Command line parse fix for a problem introduced with the security fix
 integrated in 2.2.3-1.sarge.1. [CVE-2006-1320] (Closes: #363978)
Files: 
 a8ccbaa1d14d0aa30b3eb0bb1aefd4e5 589 net optional rssh_2.2.3-1.sarge.2.dsc
 74f40a4fd5d2b097af34a817e21a33cf 107216 net optional rssh_2.2.3.orig.tar.gz
 00e3ad8c7944ed55e1316e414ab3d388 52207 net optional 
rssh_2.2.3-1.sarge.2.diff.gz
 7236c31d25f8b4cbbb8894112aa585aa 42596 net optional 
rssh_2.2.3-1.sarge.2_i386.deb

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

iD8DBQFEtSrBXm3vHE4uyloRApAPAJsF9OWg7p3cCOijkxnEuSzx7RWYewCfUZlc
dGbfKLWgj/dvcgU5F/iIo3c=
=XEbO
-END PGP SIGNATURE-

---End Message---


Bug#372531: marked as done (wzdftpd-mod-tcl 0.5.2-1.1sarge1 can't be installed)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Wed, 30 Aug 2006 23:05:53 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#372531: fixed in wzdftpd 0.5.2-1.1sarge2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: wzdftpd-mod-tcl
Severity: grave
Justification: renders package unusable

wzdftpd-mod-tcl 0.5.2-1.1sarge1 can't be installed on Sarge because it 
depends
on wzdftpd 0.5.2-1 which doesn't exist anymore in stable (current release 
0.5.2-1.1sarge1 is).


Regards,

Gonéri Le Bouder

---End Message---
---BeginMessage---
Source: wzdftpd
Source-Version: 0.5.2-1.1sarge2

We believe that the bug you reported is fixed in the latest version of
wzdftpd, which is due to be installed in the Debian FTP archive:

wzdftpd-back-mysql_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd-back-mysql_0.5.2-1.1sarge2_i386.deb
wzdftpd-dev_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd-dev_0.5.2-1.1sarge2_i386.deb
wzdftpd-mod-perl_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd-mod-perl_0.5.2-1.1sarge2_i386.deb
wzdftpd-mod-tcl_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd-mod-tcl_0.5.2-1.1sarge2_i386.deb
wzdftpd_0.5.2-1.1sarge2.diff.gz
  to pool/main/w/wzdftpd/wzdftpd_0.5.2-1.1sarge2.diff.gz
wzdftpd_0.5.2-1.1sarge2.dsc
  to pool/main/w/wzdftpd/wzdftpd_0.5.2-1.1sarge2.dsc
wzdftpd_0.5.2-1.1sarge2_i386.deb
  to pool/main/w/wzdftpd/wzdftpd_0.5.2-1.1sarge2_i386.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pierre Chifflier [EMAIL PROTECTED] (supplier of updated wzdftpd 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  4 Jul 2006 15:17:33 +0200
Source: wzdftpd
Binary: wzdftpd-mod-perl wzdftpd-back-mysql wzdftpd-dev wzdftpd wzdftpd-mod-tcl
Architecture: source i386
Version: 0.5.2-1.1sarge2
Distribution: stable
Urgency: high
Maintainer: Pierre Chifflier [EMAIL PROTECTED]
Changed-By: Pierre Chifflier [EMAIL PROTECTED]
Description: 
 wzdftpd- A portable, modular, not user-friendly ftp server
 wzdftpd-back-mysql - MySQL backend for wzdftpd
 wzdftpd-dev - Development files for wzdftpd
 wzdftpd-mod-perl - Perl module for wzdftpd
 wzdftpd-mod-tcl - TCL module for wzdftpd
Closes: 369829 372531
Changes: 
 wzdftpd (0.5.2-1.1sarge2) stable; urgency=high
 .
   * Fix depends for wzdftpd-mod-perl and wzdftpd-mod-tcl (Closes: #372531,
 #369829)
Files: 
 471b87e8e2bd3c94b8c589f869e8622e 770 net optional wzdftpd_0.5.2-1.1sarge2.dsc
 4753883e165d8fefff1992ae63bc69d7 17559 net optional 
wzdftpd_0.5.2-1.1sarge2.diff.gz
 841418e9e9f20ee5db30ca89f83777f7 274956 net optional 
wzdftpd_0.5.2-1.1sarge2_i386.deb
 de419fe1036b077e42c08cf19f0ecae2 28854 net optional 
wzdftpd-back-mysql_0.5.2-1.1sarge2_i386.deb
 3cf8d9b580462021da6f494f8e3bc931 29736 net optional 
wzdftpd-mod-tcl_0.5.2-1.1sarge2_i386.deb
 27b734f2b84768e318c6a86a02ee3d5b 46796 net optional 
wzdftpd-mod-perl_0.5.2-1.1sarge2_i386.deb
 07b264446b4b2024ff7fa1a6380f16ac 202620 libdevel optional 
wzdftpd-dev_0.5.2-1.1sarge2_i386.deb

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

iD8DBQFErDQpw3ao2vG823MRAihwAJ0T5C5GZVhwTmqX8qVDIPo9vt9ynQCfW6HO
lil4TRbe+IV1h8YJsPqTvOc=
=4sy1
-END PGP SIGNATURE-

---End Message---


Bug#385418: lmtest: FTBFS: Missing Build-Depends on 'r-cran-lattice'

2006-08-31 Thread Andreas Jochens
Package: lmtest
Version: 0.9.18-1
Severity: serious
Tags: patch

When building 'lmtest' in a clean 'unstable' chroot,
I get the following error:

Loading required package: zoo
Error in loadNamespace(i, c(lib.loc, .libPaths())) : 
there is no package called 'lattice'
Error: package 'zoo' could not be loaded
Execution halted
ERROR: lazy loading failed for package 'lmtest'
** Removing '/lmtest-0.9.18/debian/r-cran-lmtest/usr/lib/R/site-library/lmtest'
make: *** [R_any_arch] Error 1

Please add the missing Build-Depends on 'r-cran-lattice' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/lmtest-0.9.18/debian/control ./debian/control
--- ../tmp-orig/lmtest-0.9.18/debian/control2006-08-31 06:12:52.0 
+
+++ ./debian/control2006-08-31 06:12:46.0 +
@@ -2,7 +2,7 @@
 Section: math
 Priority: optional
 Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.1.0), r-base-dev (= 2.3.1), cdbs, r-cran-zoo
+Build-Depends: debhelper ( 4.1.0), r-base-dev (= 2.3.1), cdbs, 
r-cran-lattice, r-cran-zoo
 Standards-Version: 3.7.2
 
 Package: r-cran-lmtest


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



Bug#376970: libmultisync-plugin-irmc-bluetooth rebuilt against libbluetooth2

2006-08-31 Thread Sven Neumann
Moin,

I have successfully rebuilt the package against libbluetooth2 using the
the debian source. The only change applied was to change the dependency
in the control file. The packages built fine then and everything seems
to work fine, including syncing with Bluetooth devices.

Please rebuild the official packages. In the meantime, if someone wants
to use the i386 packages that I built, they are temporarily available at
http://svenfoo.org/debian/


Sven




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



Processed: Fixed in NMU of mysql-dfsg 4.0.24-10sarge2

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 366043 + fixed
Bug#366043: SECURITY: MySQL Anonymous Login Handshake - Information Leakage
Tags were: security
Tags added: fixed

 tag 366048 + fixed
Bug#366048: SECURITY: MySQL COM_TABLE_DUMP Information Leakage and Arbitrary 
command execution
Tags were: security
Tags added: fixed

 tag 366162 + fixed
Bug#366162: CVE-2006-0903: Logging bypass
Tags were: security
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Re: NFS insecure without support for squashing multiple groups

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 384922 critical
Bug#384922: NFS insecure without support for squashing multiple groups
Severity set to `critical' from `important'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Correction: Mailman sarge3 was not NMU

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 package mailman
Ignoring bugs not assigned to: mailman

 tags 358575 -fixed
Bug#358575: purge mailman deletes all ucf-managed conffiles
Tags were: fixed patch
Tags removed: fixed

 close 358575 2.1.5-8sarge3
Bug#358575: purge mailman deletes all ucf-managed conffiles
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 2.1.5-8sarge3, send any further explanations to 
Marc Haber [EMAIL PROTECTED]


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385423: libmultisync-plugin-irmc-bluetooth: dependancy broken with libbluetooth1

2006-08-31 Thread Encolpe DEGOUTE
Package: libmultisync-plugin-irmc-bluetooth
Version: 0.82-6+b1
Severity: grave
Justification: renders package unusable

Hi,
libbluetooth1 seems to be both unavailable in etch and sid.
Can this package be built against libbluetooth2 ?

Regards,

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


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



Bug#384922: NFS insecure without support for squashing multiple groups

2006-08-31 Thread Steve Langasek
On Thu, Aug 31, 2006 at 01:05:41PM +1000, Paul Szabo wrote:
  The last two points are true by default on Debian, but the first three
  points are configuration decisions on the part of the NFS server
  administrator.  I understand that you have reasons to export shares allowing
  suid binaries in your own environment, but then you can also reconfigure
  root's path or the permissions on /usr/local/* in that case.

 Sorry, the NFS server administrator does not really have control over the
 first point.

Of course they do; no NFS share is ever exported to a machine without the
admin explictly granting it in /etc/exports.

It happens to be very dangerous to share a filesystem via NFS between
systems that have different security contexts.  This does not make it a
critical bug for the kernel to not support a particular method of mitigating
this danger, or for nfs-utils to not enable it by default; it just means
that NFS may not be suitable for certain configurations as a result.

And in bug #299007, ugidd was also mentioned as a solution that would
provide everything that squash_gids would, and then some.

 Sorry, as I read Debian policy (and as discussed in #299007), I am not
 permitted to change root's PATH or change the permissions on /usr/local.

*You* are permitted to do either of these things.  Whether they will be done
by default in *Debian* is a separate question.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Bug#384922: NFS insecure without support for squashing multiple groups

2006-08-31 Thread Aníbal Monsalve Salazar
On Thu, Aug 31, 2006 at 04:34:00PM +1000, Paul Szabo wrote:
I am somewhat curious: who is Steinar, and who are you?

Steve Langasek is the Debian Release Manager
Steinar H. Gunderson is a Debian Developer, comaintainer of nfs-utils

I had submitted a bug against nfs-kernel-server; the maintainer there is
Anibal. You jumped in and re-jiggled the severity; then there were some
messages from Steinar, never anything from Anibal. After re-assigning to 
linux-2.6.16 (hmm... why the specific version?) where the maintainer is
a nebulous committee, again you re-jiggle severity; and no word from the
maintainers.

Steinar's word is good enough for me about this matter.

The kernel team is a group of debian developers responsible for the kernel
packages.

Aníbal Monsalve Salazar
-- 
http://v7w.com/anibal


signature.asc
Description: Digital signature


Processed: tag gcc report

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 384809 + pending
Bug#384809: gcc-doc depends on non-existent package
There were no tags set.
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385426: python-tk: The package really shouldn't depend on python2.5

2006-08-31 Thread Raphael Hertzog
Package: python-tk
Version: 2.4.3-3
Severity: serious

The packages depends on python2.5 but it really shouldn't. Otherwise all
(etch) users needing python-tk will always end up with python2.4 and python2.5
installed.

If you just want to avoid installing the module with an incompatible
python2.5 I suggest going with a Conflicts: python2.5 ( 2.5~b3) instead.

The same applies for python-gdbm.

This bug does't qualify as RC per se, but I'd rather have it corrected
before etch and I'd rather that this version of the package doesn't move
into etch. Thus marking it serious.

I'll let the release team downgrade it if needed.

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

Versions of packages python-tk depends on:
ii  blt  2.4z-4  the BLT extension library for Tcl/
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libx11-6 2:1.0.0-8   X11 client-side library
ii  python   2.4.3-11An interactive high-level object-o
ii  tcl8.4   8.4.12-1.1  Tcl (the Tool Command Language) v8
ii  tk8.48.4.12-1Tk toolkit for Tcl and X11, v8.4 -

python-tk recommends no packages.

-- no debconf information


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



Processed: merge

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 385232 grave
Bug#385232: mozilla-thunderbird: no All headers display after last upgrade
Severity set to `grave' from `normal'

 close 385232 1.5-1
Bug#385232: mozilla-thunderbird: no All headers display after last upgrade
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 1.5-1, send any further explanations to Pedro 
A. Sanchez [EMAIL PROTECTED]

 merge 385232 385071
Bug#385071: mozilla-thunderbird: Tiny attachment panel after last upgrade
Bug#385232: mozilla-thunderbird: no All headers display after last upgrade
Merged 385071 385232.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Same for python-gdbm

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 clone 385426 -1
Bug#385426: python-tk: The package really shouldn't depend on python2.5
Bug 385426 cloned as bug 385436.

 reassign -1 python-gdbm
Bug#385436: python-tk: The package really shouldn't depend on python2.5
Bug reassigned from package `python-tk' to `python-gdbm'.

 retitle -1 python-gdbm: should not depend on python2.5
Bug#385436: python-tk: The package really shouldn't depend on python2.5
Changed Bug title.

 severity -1 serious
Bug#385436: python-gdbm: should not depend on python2.5
Severity set to `serious' from `serious'

 --
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385441: libmozjs0d-dbg not installable on ppc - xulrunner not binNMU-safe

2006-08-31 Thread Andreas Barth
Package: xulrunner
Severity: serious
Version: 1.8.0.5-1

Hi,

xulrunner is not binNMU-safe, libmozjs0d-dbg and libxul0d-dbg depend on
the wrong version of the non-dbg-library.


Cheers,
Andi
-- 
  http://home.arcor.de/andreas-barth/


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



Processed: tagging 385224

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 tags 385224 pending
Bug#385224: [experimental] slrn segfaults in strlen() on some articles
Tags were: experimental
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: tagging 385224

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 tags 385224 experimental
Bug#385224: [experimental] slrn segfaults in strlen() on some articles
There were no tags set.
Tags added: experimental


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385439: FTBFS, missing build dependency on python-gst0.10

2006-08-31 Thread Matthias Klose
Package: gstreamer0.10
Severity: serious
Version: 0.10.9-1

not sure, if I'm doing something wrong ... installing python-gst0.10
works around it.

*** Rebuilding plugin inspection files ***
if test x. != x. ; then \
cp ./inspect.stamp . ; \
cp ./inspect-build.stamp . ; \
else \
GST_PLUGIN_SYSTEM_PATH= 
GST_PLUGIN_PATH=../../gst:../../sys:../../ext:../../plugins 
GST_REGISTRY=../../docs/plugins/inspect-registry.xml /usr/bin/python \
../../common/gst-xmlinspect.py gstreamer inspect  \
echo -n timestamp  inspect.stamp  \
touch inspect-build.stamp; \
fi
Traceback (most recent call last):
  File ../../common/gst-xmlinspect.py, line 11, in ?
import pygst
ImportError: No module named pygst
make[5]: *** [inspect-build.stamp] Error 1
make[5]: Leaving directory 
`/home/packages/tmp/gstreamer0.10-0.10.9/docs/plugins'
make[4]: *** [all-recursive] Error 1


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



Bug#385416: sandwich: FTBFS: Missing Build-Depends on 'r-cran-lattice'

2006-08-31 Thread Dirk Eddelbuettel

On 31 August 2006 at 08:11, Andreas Jochens wrote:
| Package: sandwich
| Version: 2.0-0-1
| Severity: serious
| Tags: patch
| 
| When building 'sandwich' in a clean 'unstable' chroot,
| I get the following error:
| 
| Loading required package: zoo
| Error in loadNamespace(i, c(lib.loc, .libPaths())) : 
|   there is no package called 'lattice'
| Error: package 'zoo' could not be loaded
| Execution halted
| ERROR: lazy loading failed for package 'sandwich'
| ** Removing 
'/sandwich-2.0-0/debian/r-cran-sandwich/usr/lib/R/site-library/sandwich'
| make: *** [R_any_arch] Error 1
| 
| Please add the missing Build-Depends on 'r-cran-lattice' to debian/control.

Thanls, will do, as I'll with the other bug.  But how could it have built on
my pbuilder setup?  Bizarre
 
Dirk

| Regards
| Andreas Jochens
| 
| diff -urN ../tmp-orig/sandwich-2.0-0/debian/control ./debian/control
| --- ../tmp-orig/sandwich-2.0-0/debian/control 2006-08-31 05:51:18.0 
+
| +++ ./debian/control  2006-08-31 05:51:16.0 +
| @@ -2,7 +2,7 @@
|  Section: math
|  Priority: optional
|  Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
| -Build-Depends-Indep: debhelper ( 4.1.0), r-base-dev (= 2.3.0), cdbs, 
r-cran-zoo
| +Build-Depends-Indep: debhelper ( 4.1.0), r-base-dev (= 2.3.0), cdbs, 
r-cran-lattice, r-cran-zoo
|  Standards-Version: 3.7.2
|  
|  Package: r-cran-sandwich
| 

-- 
Hell, there are no rules here - we're trying to accomplish something. 
  -- Thomas A. Edison


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



Bug#384718: marked as done (poker-network: FTBFS: Missing Build-Depends on 'python-pyopenssl')

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 03:06:55 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#384718: fixed in poker-network 1.0.23-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: poker-network
Version: 1.0.22-1
Severity: serious
Tags: patch

When building 'poker-network' in a clean 'unstable' chroot,
I get the following error:

checking for python2.3 extension module directory... done
checking for  include directory... /usr/include/python2.3
checking for python2.3 C libraries directory... /usr/lib/python2.3/config
checking for python2.3 link flags... -L/usr/lib/python2.3/config -lpython2.3
checking python includes in /usr/include/python2.3
checking for Python.h... (cached) yes
checking for Python libraries... yes
configure: Found working python compilation environment for =2.3
checking for GLIB... yes
checking for GLADE... yes
checking for POKER_ENGINE... yes
checking wether python module gtk is available... 
/var/lib/python-support/python2.3/gtk-2.0/gtk ... yes
checking wether python module gtk.glade is available... 
/var/lib/python-support/python2.3/gtk-2.0/gtk 
/var/lib/python-support/python2.3/gtk-2.0/gtk/glade.so ... yes
checking wether python module twisted is available... 
/usr/lib/python2.3/site-packages/twisted ... yes
checking wether python module MySQLdb is available... 
/usr/lib/python2.3/site-packages/MySQLdb ... yes
checking wether python module OpenSSL is available... Traceback (most recent 
call last):
  File string, line 8, in ?
ImportError: No module named OpenSSL
configure: error: failed
make: *** [config.status] Error 1

Please add the missing Build-Depends on 'python-pyopenssl'
to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/poker-network-1.0.22/debian/control ./debian/control
--- ../tmp-orig/poker-network-1.0.22/debian/control 2006-08-26 
09:07:26.0 +
+++ ./debian/control2006-08-26 09:07:23.0 +
@@ -2,7 +2,7 @@
 Section: python
 Priority: extra
 Maintainer: Loic Dachary (OuoU) [EMAIL PROTECTED]
-Build-Depends: debhelper (= 5.0.37.2), python-all-dev (= 2.3.5-11), 
automake1.9, cdbs, pkg-config, debconf | debconf-2.0, po-debconf, 
python-mysqldb, python2.3-pyopenssl, python2.4-pyopenssl, python-soappy, 
python-glade2, python-twisted, python-pygame, python-poker-engine (= 1.0.16), 
libglade2-dev, libtool, perl, valgrind [amd64 i386 powerpc], xvfb, php-pear, 
php5-dev, graphviz
+Build-Depends: debhelper (= 5.0.37.2), python-all-dev (= 2.3.5-11), 
automake1.9, cdbs, pkg-config, debconf | debconf-2.0, po-debconf, 
python-mysqldb, python-pyopenssl, python-soappy, python-glade2, python-twisted, 
python-pygame, python-poker-engine (= 1.0.16), libglade2-dev, libtool, perl, 
valgrind [amd64 i386 powerpc], xvfb, php-pear, php5-dev, graphviz
 XS-Python-Version: =2.3
 Standards-Version: 3.7.2
 

---End Message---
---BeginMessage---
Source: poker-network
Source-Version: 1.0.23-1

We believe that the bug you reported is fixed in the latest version of
poker-network, which is due to be installed in the Debian FTP archive:

poker-network_1.0.23-1.diff.gz
  to pool/main/p/poker-network/poker-network_1.0.23-1.diff.gz
poker-network_1.0.23-1.dsc
  to pool/main/p/poker-network/poker-network_1.0.23-1.dsc
poker-network_1.0.23.orig.tar.gz
  to pool/main/p/poker-network/poker-network_1.0.23.orig.tar.gz
poker-web_1.0.23-1_all.deb
  to pool/main/p/poker-network/poker-web_1.0.23-1_all.deb
python-poker-network_1.0.23-1_all.deb
  to pool/main/p/poker-network/python-poker-network_1.0.23-1_all.deb
python-poker2d_1.0.23-1_i386.deb
  to pool/main/p/poker-network/python-poker2d_1.0.23-1_i386.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Loic Dachary (OuoU) [EMAIL PROTECTED] (supplier of updated poker-network 
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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 26 Aug 2006 12:26:47 +0200
Source: poker-network
Binary: python-poker-network poker-web python-poker2d
Architecture: source all i386
Version: 1.0.23-1
Distribution: unstable
Urgency: low
Maintainer: Loic Dachary (OuoU) [EMAIL PROTECTED]

Bug#384922: NFS insecure without support for squashing multiple groups

2006-08-31 Thread Steve Langasek
severity 384922 important
quit

On Thu, Aug 31, 2006 at 04:34:00PM +1000, Paul Szabo wrote:
 Sorry, I missed one:

  ... only exploitable when

  - you have a non-empty staff group on the client (+/- equivalent to
untrusted root users on the client, since any root user can simply add
users to this group)
  - you have NFS-shared filesystems that aren't marked nosuid
  - the untrusted user on the client has access to run processes on the NFS
server
  - /usr/local/{bin,sbin} are in root's path
  - /usr/local/{bin,sbin} are writable by group staff

 No need for the attacker to have direct login access to the NFS server:
 if there is some user activity there, that could be trojaned.

Now you're not even talking about anything that can be *fixed* by
smash_gids, you're talking about trojaning arbitrary files that will be
accessed by individual users on the NFS server.  The only way you can guard
against a compromised client in that case is to never share home
directories of any users you're worried about!

The answer remains, don't set your NFS environment up that way.

 Of your five conditions, (1) is a given (what we are protecting against),
 (2) is what we use NFS for, (3) is likely to be present, and (4) and (5)
 are forced upon us by Debian policy. (Were not these things debated in
 #299007 already?)
 
 Sounds critically gaping to me.
 
 ---
 
 I am somewhat curious: who is Steinar, and who are you?
 
 I had submitted a bug against nfs-kernel-server; the maintainer there is
 Anibal. You jumped in and re-jiggled the severity; then there were some
 messages from Steinar, never anything from Anibal. After re-assigning to 
 linux-2.6.16 (hmm... why the specific version?) where the maintainer is
 a nebulous committee, again you re-jiggle severity; and no word from the
 maintainers.
 
 Thanks,
 
 Paul Szabo   [EMAIL PROTECTED]   http://www.maths.usyd.edu.au/u/psz/
 School of Mathematics and Statistics   University of SydneyAustralia
 

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Processed: Re: NFS insecure without support for squashing multiple groups

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 384922 important
Bug#384922: NFS insecure without support for squashing multiple groups
Severity set to `important' from `critical'

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385439: FTBFS, missing build dependency on python-gst0.10

2006-08-31 Thread Loïc Minier
severity 385439 minor
tags 385439 + unreproducible
stop

Hi,

On Thu, Aug 31, 2006, Matthias Klose wrote:
 not sure, if I'm doing something wrong ... installing python-gst0.10
 works around it.
 *** Rebuilding plugin inspection files ***
 cp ./inspect.stamp . ; \

 This part of the build process is supposedly protected by
 inspect-build.stamp which is shipped by the tarball and even committed
 in CVS.  This part of the documentation is built by the upstream doc
 maintainer and committed to CVS and not to be built even with
 --enable-gtk-doc.

 It would be interesting to understand what you did to trigger the
 rebuild and perhaps fix it, but if you issued any upstream maintenance
 commands (such as autogen), then I'm not sure this is of any value for
 Debian.

   Bye,
-- 
Loïc Minier [EMAIL PROTECTED]



Processed: Re: Bug#385439: FTBFS, missing build dependency on python-gst0.10

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 385439 minor
Bug#385439: FTBFS, missing build dependency on python-gst0.10
Severity set to `minor' from `serious'

 tags 385439 + unreproducible
Bug#385439: FTBFS, missing build dependency on python-gst0.10
There were no tags set.
Tags added: unreproducible

 stop
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Re: Processed: Same for python-gdbm

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 385426 python-stdlib-extensions
Bug#385426: python-tk: The package really shouldn't depend on python2.5
Bug reassigned from package `python-tk' to `python-stdlib-extensions'.

 reassign 385436 python-stdlib-extensions
Bug#385436: python-gdbm: should not depend on python2.5
Bug reassigned from package `python-gdbm' to `python-stdlib-extensions'.

 merge 385426 385436
Bug#385426: python-tk: The package really shouldn't depend on python2.5
Bug#385436: python-gdbm: should not depend on python2.5
Merged 385426 385436.

 tags 385426 + pending
Bug#385426: python-tk: The package really shouldn't depend on python2.5
There were no tags set.
Bug#385436: python-gdbm: should not depend on python2.5
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: severity of 385406 is serious

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 severity 385406 serious
Bug#385406: mkinitramfs: /conf/mdrun.conf: No such file or directory
Severity set to `serious' from `important'


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Fixed in upload of slrn 0.9.8.1pl2~cvs20060831-1 to experimental

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 383669 + fixed-in-experimental
Bug#383669: slrn: Exit with sigseg
Tags were: pending upstream confirmed
Bug#383670: slrn: Dies due to a double free
Tags added: fixed-in-experimental

 tag 385224 + fixed-in-experimental
Bug#385224: [experimental] slrn segfaults in strlen() on some articles
Tags were: pending experimental
Tags added: fixed-in-experimental

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: tagging 385406

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 tags 385406 pending
Bug#385406: mkinitramfs: /conf/mdrun.conf: No such file or directory
There were no tags set.
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#376426: libnss-ldap: Can't login even as local user

2006-08-31 Thread Alexander Vlasov
Ok, +1.

using ldap instead of ldaps solves the problem.
With `ldaps', system quickly runs out of entropy
(/proc/sys/kernel/random/entropy_avail falls down to ~200 and this
number grows very slow).
With `ldap', entropy level in ~15 secs becomes ~3500


Well, disabling TLS is workaround, not solution anyway. What's wrong
with entropy?


-- 
Alexander Vlasov
ZULU-UANIC
JID: zulu at jabber.kiev.ua



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



Bug#385416: marked as done (sandwich: FTBFS: Missing Build-Depends on 'r-cran-lattice')

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 05:02:09 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385416: fixed in sandwich 2.0-0-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: sandwich
Version: 2.0-0-1
Severity: serious
Tags: patch

When building 'sandwich' in a clean 'unstable' chroot,
I get the following error:

Loading required package: zoo
Error in loadNamespace(i, c(lib.loc, .libPaths())) : 
there is no package called 'lattice'
Error: package 'zoo' could not be loaded
Execution halted
ERROR: lazy loading failed for package 'sandwich'
** Removing 
'/sandwich-2.0-0/debian/r-cran-sandwich/usr/lib/R/site-library/sandwich'
make: *** [R_any_arch] Error 1

Please add the missing Build-Depends on 'r-cran-lattice' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/sandwich-2.0-0/debian/control ./debian/control
--- ../tmp-orig/sandwich-2.0-0/debian/control   2006-08-31 05:51:18.0 
+
+++ ./debian/control2006-08-31 05:51:16.0 +
@@ -2,7 +2,7 @@
 Section: math
 Priority: optional
 Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper ( 4.1.0), r-base-dev (= 2.3.0), cdbs, 
r-cran-zoo
+Build-Depends-Indep: debhelper ( 4.1.0), r-base-dev (= 2.3.0), cdbs, 
r-cran-lattice, r-cran-zoo
 Standards-Version: 3.7.2
 
 Package: r-cran-sandwich

---End Message---
---BeginMessage---
Source: sandwich
Source-Version: 2.0-0-2

We believe that the bug you reported is fixed in the latest version of
sandwich, which is due to be installed in the Debian FTP archive:

r-cran-sandwich_2.0-0-2_all.deb
  to pool/main/s/sandwich/r-cran-sandwich_2.0-0-2_all.deb
sandwich_2.0-0-2.diff.gz
  to pool/main/s/sandwich/sandwich_2.0-0-2.diff.gz
sandwich_2.0-0-2.dsc
  to pool/main/s/sandwich/sandwich_2.0-0-2.dsc



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dirk Eddelbuettel [EMAIL PROTECTED] (supplier of updated sandwich 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 Aug 2006 06:53:14 -0500
Source: sandwich
Binary: r-cran-sandwich
Architecture: source all
Version: 2.0-0-2
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 r-cran-sandwich - GNU R package for model-robust standard error estimates
Closes: 385416
Changes: 
 sandwich (2.0-0-2) unstable; urgency=low
 .
   * debian/control: Added r-cran-lattice to Build-Depends: and Depends:
(Closes: #385416)
Files: 
 f153973741b0aff18b4925c267f6963d 636 math optional sandwich_2.0-0-2.dsc
 692f2174905621321b484d03bb0eaa11 1835 math optional sandwich_2.0-0-2.diff.gz
 9ca49aa8d71f054fe7d38d0041ebd4be 652096 math optional 
r-cran-sandwich_2.0-0-2_all.deb

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

iD8DBQFE9s4/CZSR95Gw07cRArDbAKCVJ3YS2TEEUqHKMoZ+mDUnRAYgvwCffXxh
IruFhZDfZVLxYdI9mkrk9M8=
=Li1E
-END PGP SIGNATURE-

---End Message---


Bug#385406: marked as done (mkinitramfs: /conf/mdrun.conf: No such file or directory)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 05:02:02 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385406: fixed in initramfs-tools 0.77b
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---

Package: initramfs-tools
Version: 0.77
Severity: important

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

mkinitramfs in initramfs-tools 0.77 is missing ${DESTDIR} before 
/conf/mdrun.conf on lines 242 and 250:


# mkinitramfs -r /dev/md2 -o /boot/initrd.img-2.6.16-2-686-raid
/usr/sbin/mkinitramfs: line 242: /conf/mdrun.conf: No such file or directory
/usr/sbin/mkinitramfs: line 250: /conf/mdrun.conf: No such file or directory

Changing the file on each line to ${DESTDIR}/conf/mdrun.conf seems to 
fix the problem.


-- Package-specific info:
-- /proc/cmdline
root=/dev/md2 ro

-- /proc/filesystems
cramfs
ext3

-- lsmod
Module  Size  Used by
dm_mod 47892  0
quota_v28128  1
ip_conntrack_ftp7196  0
ip_conntrack   48792  1 ip_conntrack_ftp
nfnetlink   5944  1 ip_conntrack
usbkbd  6368  0
usbhid 32128  0
loop   14472  0
snd_intel8x0   29436  0
snd_ac97_codec 82784  1 snd_intel8x0
snd_ac97_bus2048  1 snd_ac97_codec
snd_pcm74408  2 snd_intel8x0,snd_ac97_codec
snd_timer  20292  1 snd_pcm
snd46080  4 
snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer

snd_page_alloc  9800  2 snd_intel8x0,snd_pcm
i2c_i8017884  0
hw_random   5272  0
i810_audio 31028  0
ac97_codec 17004  1 i810_audio
i2c_core   19312  1 i2c_i801
evdev   8736  0
intelfb28068  1
shpchp 39200  0
pci_hotplug24180  1 shpchp
soundcore   8672  2 snd,i810_audio
parport_pc 31472  0
parport31720  1 parport_pc
i8xx_tco6836  0
psmouse34248  0
intel_agp  20860  1
agpgart29232  2 intelfb,intel_agp
serio_raw   6436  0
ext3  115880  6
jbd46932  1 ext3
mbcache 7652  1 ext3
ide_generic 1120  0 [permanent]
ide_disk   14528  14
piix8932  0 [permanent]
ehci_hcd   26856  0
uhci_hcd   26640  0
generic 4164  0 [permanent]
usbcore   110560  5 usbkbd,usbhid,ehci_hcd,uhci_hcd
pdc202xx_new7680  0 [permanent]
ide_core  111440  5 
ide_generic,ide_disk,piix,generic,pdc202xx_new

8139cp 19488  0
8139too24160  0
mii 5056  2 8139cp,8139too
thermal12968  0
processor  21696  1 thermal
fan 4452  0
sd_mod 16208  0
scsi_mod  10  1 sd_mod
raid1  19264  3
md_mod 63956  4 raid1


-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Kernel: Linux 2.6.16-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages initramfs-tools depends on:
ii  busybox   1:1.1.3-2  Tiny utilities for small 
and embed
ii  cpio  2.6-16 GNU cpio -- a program to 
manage ar
ii  klibc-utils   1.4.27-1   small statically-linked 
utilities
ii  module-init-tools 3.2.2-3tools for managing Linux 
kernel mo
ii  udev  0.093-1/dev/ and hotplug 
management daemo


-- no debconf information

---End Message---
---BeginMessage---
Source: initramfs-tools
Source-Version: 0.77b

We believe that the bug you reported is fixed in the latest version of
initramfs-tools, which is due to be installed in the Debian FTP archive:

initramfs-tools_0.77b.dsc
  to pool/main/i/initramfs-tools/initramfs-tools_0.77b.dsc
initramfs-tools_0.77b.tar.gz
  to pool/main/i/initramfs-tools/initramfs-tools_0.77b.tar.gz
initramfs-tools_0.77b_all.deb
  to pool/main/i/initramfs-tools/initramfs-tools_0.77b_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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
maximilian attems [EMAIL PROTECTED] 

Bug#385418: marked as done (lmtest: FTBFS: Missing Build-Depends on 'r-cran-lattice')

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 05:17:18 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385418: fixed in lmtest 0.9.18-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: lmtest
Version: 0.9.18-1
Severity: serious
Tags: patch

When building 'lmtest' in a clean 'unstable' chroot,
I get the following error:

Loading required package: zoo
Error in loadNamespace(i, c(lib.loc, .libPaths())) : 
there is no package called 'lattice'
Error: package 'zoo' could not be loaded
Execution halted
ERROR: lazy loading failed for package 'lmtest'
** Removing '/lmtest-0.9.18/debian/r-cran-lmtest/usr/lib/R/site-library/lmtest'
make: *** [R_any_arch] Error 1

Please add the missing Build-Depends on 'r-cran-lattice' to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/lmtest-0.9.18/debian/control ./debian/control
--- ../tmp-orig/lmtest-0.9.18/debian/control2006-08-31 06:12:52.0 
+
+++ ./debian/control2006-08-31 06:12:46.0 +
@@ -2,7 +2,7 @@
 Section: math
 Priority: optional
 Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.1.0), r-base-dev (= 2.3.1), cdbs, r-cran-zoo
+Build-Depends: debhelper ( 4.1.0), r-base-dev (= 2.3.1), cdbs, 
r-cran-lattice, r-cran-zoo
 Standards-Version: 3.7.2
 
 Package: r-cran-lmtest

---End Message---
---BeginMessage---
Source: lmtest
Source-Version: 0.9.18-2

We believe that the bug you reported is fixed in the latest version of
lmtest, which is due to be installed in the Debian FTP archive:

lmtest_0.9.18-2.diff.gz
  to pool/main/l/lmtest/lmtest_0.9.18-2.diff.gz
lmtest_0.9.18-2.dsc
  to pool/main/l/lmtest/lmtest_0.9.18-2.dsc
r-cran-lmtest_0.9.18-2_i386.deb
  to pool/main/l/lmtest/r-cran-lmtest_0.9.18-2_i386.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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Dirk Eddelbuettel [EMAIL PROTECTED] (supplier of updated lmtest 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 Aug 2006 06:55:25 -0500
Source: lmtest
Binary: r-cran-lmtest
Architecture: source i386
Version: 0.9.18-2
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 r-cran-lmtest - GNU R package for diagnostic checking in linear models
Closes: 385418
Changes: 
 lmtest (0.9.18-2) unstable; urgency=low
 .
   * debian/control: Added r-cran-lattice to Build-Depends: and Depends:
(Closes: #385418)
Files: 
 870f6b5c7e74c660483082df1483da4e 625 math optional lmtest_0.9.18-2.dsc
 7921e95ad67affa1f4f3b22fce35dfe1 2059 math optional lmtest_0.9.18-2.diff.gz
 ca89a29eedd9d870a57018427af0262e 264230 math optional 
r-cran-lmtest_0.9.18-2_i386.deb

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

iD8DBQFE9s9UCZSR95Gw07cRAuLFAJ4gcOuGEqh8thrOWNKsqCjawdgoXQCfRdbo
gZloISPciD1YKONR8TyBEMY=
=WrZU
-END PGP SIGNATURE-

---End Message---


Processed: Re: NFS insecure without support for squashing multiple groups

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 384922 critical
Bug#384922: NFS insecure without support for squashing multiple groups
Severity set to `critical' from `important'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385441: marked as done (libmozjs0d-dbg not installable on ppc - xulrunner not binNMU-safe)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 15:03:04 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#385441: libmozjs0d-dbg not installable on ppc - xulrunner 
not binNMU-safe
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: xulrunner
Severity: serious
Version: 1.8.0.5-1

Hi,

xulrunner is not binNMU-safe, libmozjs0d-dbg and libxul0d-dbg depend on
the wrong version of the non-dbg-library.


Cheers,
Andi
-- 
  http://home.arcor.de/andreas-barth/

---End Message---
---BeginMessage---
Version: 1.8.0.5-2

On Wed, Aug 30, 2006 at 04:00:38PM +0200, Andreas Barth wrote:
 Package: xulrunner
 Severity: serious
 Version: 1.8.0.5-1
 
 Hi,
 
 xulrunner is not binNMU-safe, libmozjs0d-dbg and libxul0d-dbg depend on
 the wrong version of the non-dbg-library.

This was bug #384203 and was fixed in 1.8.0.5-2.

Mike
---End Message---


Bug#385359: opensync-plugin-syncml: Same issue here

2006-08-31 Thread Marc Fargas
Package: opensync-plugin-syncml
Version: 0.4.0+svn20060725-3
Followup-For: Bug #385359

Hi, I'm having the same issue here just for you to know! 

c u,
Marc.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages opensync-plugin-syncml depends on:
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libglib2.0-0 2.10.3-3The GLib library of C routines
ii  libopensync0 0.18-2  Synchronisation framework for emai
ii  libsyncml0   0.4.0+svn20060721-3 SyncML protocol library
ii  libxml2  2.6.26.dfsg-3   GNOME XML library

opensync-plugin-syncml recommends no packages.

-- no debconf information


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



Bug#376426: libnss-ldap: Can't login even as local user

2006-08-31 Thread Stephen Gran
This one time, at band camp, Alexander Vlasov said:
 Ok, +1.
 
 using ldap instead of ldaps solves the problem.  With `ldaps', system
 quickly runs out of entropy (/proc/sys/kernel/random/entropy_avail
 falls down to ~200 and this number grows very slow).  With `ldap',
 entropy level in ~15 secs becomes ~3500
 
 Well, disabling TLS is workaround, not solution anyway. What's wrong
 with entropy?

There was a change in how the kernel entropy gathering works, and not
all modules have been ported to the new model, so many do effectively
nothing for your entropy pool.  This is unfortunately the case for a lot
of hardware raid cards, which is where most of my entropy used to come
from.  

This is sort of a seperate issue, though - the main problem here for
libnss-ldap is how it addresses tls negotiation stalls or failures
caused by the low entropy levels.  Right now, it doesn't handle it
particularly well.
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#385468: FTBFS due to missing libXcursor.la

2006-08-31 Thread Julien Louis
Package: libbonobouimm1.3
Severity: serious
Justification: no longer builds from source

Hi,

There was a problem while autobuilding your package. Here is the output
from my build log :

libtool: link: cannot find the library `/usr/lib/libXcursor.la' 
   
make[3]: *** [generate_extra_defs] Error 1  
   
make[3]: Leaving directory
`/build/buildd/libbonobouimm1.3-1.3.7/tools/extra_defs_gen' 

make[2]: *** [all-recursive] Error 1
   
make[2]: Leaving directory `/build/buildd/libbonobouimm1.3-1.3.7/tools' 
   
make[1]: *** [all-recursive] Error 1
   
make[1]: Leaving directory `/build/buildd/libbonobouimm1.3-1.3.7'   
   
make: *** [build-stamp] Error 2 
   
**  
   
Build finished at 20060829-0516 
   
FAILED [dpkg-buildpackage died] 
  


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

-- 
 Je bosse toute la journée sur un Pc et pourtant s'te console me fait
 bander. Finis les warez, les .bat, les CS cheater,on part sur des
 bases neuves. XBOX ATTITUDE
 -+- Nokeo in Guide du Petit Joueur : dreamBox -+-


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



Processed: Re: Bug#378815: lphoto: Missing KDE dep

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 clone 378815 -1
Bug#378815: lphoto: Missing KDE dep
Bug 378815 cloned as bug 385474.

 retitle 378815 python-kde3: missing shared library dependencies
Bug#378815: lphoto: Missing KDE dep
Changed Bug title.

 reassign 378815 python-kde3 3.15.2+20060422-2
Bug#378815: python-kde3: missing shared library dependencies
Bug reassigned from package `lphoto' to `python-kde3'.

 retitle -1 lphoto: dependency on cdrecord seems inflated
Bug#385474: lphoto: Missing KDE dep
Changed Bug title.

 severity -1 normal
Bug#385474: lphoto: dependency on cdrecord seems inflated
Severity set to `normal' from `serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#318795: marked as done (libaio: We can't compile programs using it)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 06:20:50 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#318795: fixed in libaio 0.3.104-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: libaio
Version: 0.3.104-1
Severity: important


We can't use libaio to compile programs using it. For example:

[EMAIL PROTECTED]:~/Desktop$ gcc -o aiocp aiocp.c -laio
/usr/bin/ld: cannot find -laio
collect2: ld returned 1 exit status

[EMAIL PROTECTED]:~/Desktop$ gcc --static -o aiocp aiocp.c -laio
/usr/bin/ld: cannot find -laio
collect2: ld returned 1 exit status


But we can fix it creating a symlink to the library, like:

[EMAIL PROTECTED]:/usr/lib# ln -s libaio.so.1.0.1 libaio.so

After that, we can compile programs withou problems:

[EMAIL PROTECTED]:~/Desktop$ gcc -o aiocp aiocp.c -laio
[EMAIL PROTECTED]:~/Desktop$


More information about my system:

[EMAIL PROTECTED]:~/Desktop$ gcc --version
gcc (GCC) 4.0.1 (Debian 4.0.1-2)


[EMAIL PROTECTED]:~/Desktop$ ld --version
GNU ld version 2.16.1 Debian GNU/Linux


[EMAIL PROTECTED]:~/Desktop$ dpkg -l | grep libc6
ii  libc6   2.3.5-1GNU C Library: Shared
libraries and Timezone
ii  libc6-dbg   2.3.5-1GNU C Library: Libraries with
debugging symb
ii  libc6-dev   2.3.5-1GNU C Library: Development
Libraries and Hea
ii  libc6-i686  2.3.5-1GNU C Library: Shared
libraries [i686 optimi


Thanks for your attention.

--fx


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)

-- no debconf information

---End Message---
---BeginMessage---
Source: libaio
Source-Version: 0.3.104-2

We believe that the bug you reported is fixed in the latest version of
libaio, which is due to be installed in the Debian FTP archive:

libaio-dev_0.3.104-2_i386.deb
  to pool/main/liba/libaio/libaio-dev_0.3.104-2_i386.deb
libaio1_0.3.104-2_i386.deb
  to pool/main/liba/libaio/libaio1_0.3.104-2_i386.deb
libaio_0.3.104-2.diff.gz
  to pool/main/liba/libaio/libaio_0.3.104-2.diff.gz
libaio_0.3.104-2.dsc
  to pool/main/liba/libaio/libaio_0.3.104-2.dsc



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guillem Jover [EMAIL PROTECTED] (supplier of updated libaio 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 24 Aug 2006 05:45:36 +0300
Source: libaio
Binary: libaio-dev libaio1
Architecture: source i386
Version: 0.3.104-2
Distribution: unstable
Urgency: low
Maintainer: Guillem Jover [EMAIL PROTECTED]
Changed-By: Guillem Jover [EMAIL PROTECTED]
Description: 
 libaio-dev - linux kernel aio access library - development files
 libaio1- linux kernel aio access library - shared library
Closes: 318795 335352
Changes: 
 libaio (0.3.104-2) unstable; urgency=low
 .
   * New Maintainer.
   * Provide a new binary package libaio-dev, with the static library
 the .so symlink and the manpages. (Closes: #318795)
   * Add debian/libaio-dev.install.
   * Add debian/libaio-dev.manpages.
   * Rename the binary package libaio to libaio1 to match the soname, no
 transition package as no one depends on it.
   * Rename debian/lintian.override to debian/libaio1.lintian.
   * Remove shlib-missing-in-control-file lintian override as we provide
 now the shlibs file.
   * Only put usr/share/lintian/override in libaio1.dirs.
   * Remove temporal debhelper leftover files:
 - debian/libaio-0.3.104.postinst.debhelper
 - debian/libaio-0.3.104.postrm.debhelper
   * Add amd64 to the Architecture fields. (Closes: #335352)
   * Switch to debhelper compat level 5.
   * Now using Standards-Version 3.7.2.
   * Change Priority from optional to extra.
   * Specify in the package description that this library is for Linux.
   * Remove unneeded debian/dirs file.
   * Remove debian/debianize.patch, we actually want the .so symlink
 and the .a library 

Bug#385470: lphoto: doesn't start with python 2.4

2006-08-31 Thread Niko Tyni
Package: lphoto
Version: 1.0.61-2
Severity: grave
Justification: renders package unusable

Hi,

starting lphoto fails with

/usr/bin/python: can't open file 
'/usr/lib/python2.3/site-packages/Lphoto/lphoto.py': [Errno 2] No such file or 
directory

Starting with an explicit path to python 2.4 works fine:

 /usr/bin/python /usr/lib/python2.4/site-packages/Lphoto/lphoto.py

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

Versions of packages lphoto depends on:
ii  cdrecord   4:2.01+01a03-5command line CD writing tool
ii  gphoto22.2.0-3   The gphoto2 digital camera command
ii  libjpeg-progs  6b-13 Programs for manipulating JPEG fil
ii  mesa-utils 6.3.2-2.1 Miscellaneous Mesa GL utilities
ii  python 2.4.3-11  An interactive high-level object-o
di  python-central 0.5.5 register and build utility for Pyt
ii  python-kde33.15.2+20060422-2 KDE3 bindings for Python
ii  python-opengl  2.0.1.09-2.2  Python bindings to OpenGL
ii  python-qt3 3.16-1.2  Qt3 bindings for Python
ii  python-qt3-gl  3.16-1.2  Qt3 OpenGL bindings for Python
ii  xsltproc   1.1.17-4  XSLT command line processor

Versions of packages lphoto recommends:
pn  ffmpegnone (no description available)
pn  kscreensaver  none (no description available)
pn  vcdimager none (no description available)

-- no debconf information


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



Processed: (Dirty) patch for this crasher

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 385239 + patch
Bug#385239: rssreader.app: does not start
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#378815: lphoto: Missing KDE dep

2006-08-31 Thread Niko Tyni
clone 378815 -1
retitle 378815 python-kde3: missing shared library dependencies
reassign 378815 python-kde3 3.15.2+20060422-2
retitle -1 lphoto: dependency on cdrecord seems inflated
severity -1 normal
thanks

On Wed, Jul 19, 2006 at 10:45:26AM +0900, Kai Hendry wrote:
 Package: lphoto
 Version: 1.0.61-2
 Severity: normal
 
 sam$ lphoto
 Traceback (most recent call last):
   File /usr/lib/python2.3/site-packages/Lphoto/lphoto.py, line 3, in ?
 from kdeemul import *
   File /usr/share/pycentral/lphoto/site-packages/Lphoto/kdeemul.py, line 6, 
 in ?
 from kdecore import *
 ImportError: libkdecore.so.4: cannot open shared object file: No such file or 
 directory

Hi,

this happens because the python-kde3 package is missing ${shlibs:Depends}
from its dependencies. I'm reassigning this bug accordingly.

 Missing some KDE deps? This app is dependency hell. Do I really need cdrecord?
 I use an X40. I am also unprepared to install bloatware such as KDE.

The cdrecord dependency looks a bit inflated to me as well, as the
package apparently works without it. Maybe a Recommends: would be
enough? I'm cloning and retitling this bug and downgrading it back to
'normal'. Hope that's OK with the lphoto maintainer.

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]


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



Bug#385239: (Dirty) patch for this crasher

2006-08-31 Thread Yavor Doganov
tags 385239 + patch
thanks

Attached is a patch that quite possibly is not the right fix for this
bug, but it works for me.

-- 
JID: [EMAIL PROTECTED]



rssreader.diff
Description: Binary data


Bug#383040: marked as done (uim-applet-gnome: i386 binary linked against libgnutls11, not binNMU-able)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 07:05:13 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#383040: fixed in uim 1:1.2.1-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: uim-applet-gnome
Version: 1:1.1.1-2
Severity: serious

uim-applet-gnome on i386 is linked against the obsolete libgnutls11.
The autobuilt versions are fine. libgnutls11 is dead upstream, won't
be part of etch, which is why I am choosing a serious severity.

Fixing this requires a source upload, because the package is not
binNMU-able due to this:

Package: uim-common
Section: utils
Architecture: all
[...]

Package: uim-gtk2.0
Architecture: any
Depends: ${shlibs:Depends}, libgtk2.0-common, libgtk2.0-bin, uim-utils (= ${Sou
rce-Version}), uim-common (= ${Source-Version})
[and some more uim-common (= ${Source-Version} dependencies.]

After Bin-NMU the new uim-gtk2.0 would depend on uim-common
(= 1:1.1.1-2+b1) which does not exist, as binary-all parts are not
rebuilt in a binNMU.

Please clean up your build-system, purging libgnutls11-dev and
installing libgnutls-dev instead. Making the package binNMU-able by
using binary:Version and source:Version instead of Source-Version in
debian/control would also be nice. (A bare-bone working patch would
just replace any occurence of uim-common (= ${Source-Version} with
uim-common (= ${Source:Version} afaict.)

thanks, cu andreas



---End Message---
---BeginMessage---
Source: uim
Source-Version: 1:1.2.1-1

We believe that the bug you reported is fixed in the latest version of
uim, which is due to be installed in the Debian FTP archive:

libuim-data_1.2.1-1_i386.deb
  to pool/main/u/uim/libuim-data_1.2.1-1_i386.deb
libuim-dev_1.2.1-1_i386.deb
  to pool/main/u/uim/libuim-dev_1.2.1-1_i386.deb
libuim1-dbg_1.2.1-1_i386.deb
  to pool/main/u/uim/libuim1-dbg_1.2.1-1_i386.deb
libuim1_1.2.1-1_i386.deb
  to pool/main/u/uim/libuim1_1.2.1-1_i386.deb
uim-anthy_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-anthy_1.2.1-1_i386.deb
uim-applet-gnome_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-applet-gnome_1.2.1-1_i386.deb
uim-canna_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-canna_1.2.1-1_i386.deb
uim-common_1.2.1-1_all.deb
  to pool/main/u/uim/uim-common_1.2.1-1_all.deb
uim-el_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-el_1.2.1-1_i386.deb
uim-fep_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-fep_1.2.1-1_i386.deb
uim-gtk2.0_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-gtk2.0_1.2.1-1_i386.deb
uim-m17nlib_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-m17nlib_1.2.1-1_i386.deb
uim-prime_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-prime_1.2.1-1_i386.deb
uim-qt_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-qt_1.2.1-1_i386.deb
uim-skk_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-skk_1.2.1-1_i386.deb
uim-utils_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-utils_1.2.1-1_i386.deb
uim-xim_1.2.1-1_i386.deb
  to pool/main/u/uim/uim-xim_1.2.1-1_i386.deb
uim_1.2.1-1.diff.gz
  to pool/main/u/uim/uim_1.2.1-1.diff.gz
uim_1.2.1-1.dsc
  to pool/main/u/uim/uim_1.2.1-1.dsc
uim_1.2.1-1_all.deb
  to pool/main/u/uim/uim_1.2.1-1_all.deb
uim_1.2.1.orig.tar.gz
  to pool/main/u/uim/uim_1.2.1.orig.tar.gz



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Masahito Omote [EMAIL PROTECTED] (supplier of updated uim 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 26 Aug 2006 16:46:05 +0900
Source: uim
Binary: uim-utils uim-qt uim-anthy libuim1-dbg libuim-data libuim1 uim-m17nlib 
libuim-dev uim-fep uim-canna uim-gtk2.0 uim-el uim uim-xim uim-applet-gnome 
uim-prime uim-common uim-skk
Architecture: source i386 all
Version: 1:1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Masahito Omote [EMAIL PROTECTED]
Changed-By: Masahito Omote [EMAIL PROTECTED]
Description: 
 libuim-data - Data files for uim
 libuim-dev - Development files for uim
 libuim1- Simple and flexible input method collection and library
 libuim1-dbg - uim libraries and debugging symbols
 uim- Simple and flexible input method collection and library
 uim-anthy  - Anthy plugin for uim
 uim-applet-gnome - GNOME applet for uim
 uim-canna  - 

Processed: these are by design

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 384882 wishlist
Bug#384882: apache 2.2 does not work with current php4/php5 modules
Severity set to `wishlist' from `grave'

 clone 384882 -1
Bug#384882: apache 2.2 does not work with current php4/php5 modules
Bug 384882 cloned as bug 385480.

 reassign 384882 libapache2-mod-php4
Bug#384882: apache 2.2 does not work with current php4/php5 modules
Bug reassigned from package `apache2' to `libapache2-mod-php4'.

 retitle 384882 libapache2-mod-php4 needs to be rebuilt for experimental
Bug#384882: apache 2.2 does not work with current php4/php5 modules
Changed Bug title.

 reassign -1 libapache2-mod-php5
Bug#385480: apache 2.2 does not work with current php4/php5 modules
Bug reassigned from package `apache2' to `libapache2-mod-php5'.

 retitle -1 libapache2-mod-php5 needs to be rebuilt for experimental
Bug#385480: apache 2.2 does not work with current php4/php5 modules
Changed Bug title.

 severity 384883 wishlist
Bug#384883: apache 2.2 doesn't work with currently available libapache2-mod-ruby
Severity set to `wishlist' from `normal'

 reassign 384883 libapache2-mod-ruby
Bug#384883: apache 2.2 doesn't work with currently available libapache2-mod-ruby
Bug reassigned from package `apache2' to `libapache2-mod-ruby'.

 retitle 384883 libapache2-mod-ruby needs to be rebuilt for experimental
Bug#384883: apache 2.2 doesn't work with currently available libapache2-mod-ruby
Changed Bug title.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385483: sylpheed-claws-gtk2-i18n: Not installable in Sid

2006-08-31 Thread George B.
Package: sylpheed-claws-gtk2-i18n
Version: 2.5.0~rc2-2
Severity: grave
Justification: renders package unusable

Hello,

---
The following packages have unmet dependencies:
  sylpheed-claws-gtk2-i18n: Depends: sylpheed-claws-gtk2 (= 
2.5.0~rc2-2) but 2.5.0~rc2-1 is installed.
Resolving dependencies...
Unable to resolve dependencies!  Giving up...
Abort.
---


HTH,

George.


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


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



Processed: your mail

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 385423 serious
Bug#385423: libmultisync-plugin-irmc-bluetooth: dependancy broken with 
libbluetooth1
Severity set to `serious' from `grave'

 merge 385423 376970
Bug#376970: libbluetooth{1,2} transition, please rebuild
Bug#385423: libmultisync-plugin-irmc-bluetooth: dependancy broken with 
libbluetooth1
Merged 376970 385423.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385391: update-grub still uses /bin/sh as its interpreter, fails with dash

2006-08-31 Thread Rémi Denis-Courmont
Le jeudi 31 août 2006 02:24, vous avez écrit :
 But /usr/sbin/update-grub still has /bin/sh as its interpreter and
 executing this file with dash fails:

 [EMAIL PROTECTED]:~# /usr/sbin/update-grub
 [: 25: ==: unexpected operator
 exec: 25: -a: not found

Is there any serious reason for using the non-standard '-a' option 
besides pure cosmetic if someone runs top or ps within the short 
lifespan of update-grub.real anyway ?

-- 
Rémi Denis-Courmont
http://www.remlab.net/


pgpWPXtuS05vV.pgp
Description: PGP signature


Bug#385486: ftp.debian.org: Need to remove obsolete mcvs packages from the pool

2006-08-31 Thread Robin Verduijn
Package: ftp.debian.org
Severity: serious
Justification: no longer builds from source

Hi,

The mcvs package used to build on ia64, mipsel, s390, and sparc in the past
because clisp at that time still contained the FFI module. This is no longer
the case, however, and as a result mcvs fails to build from source on those
four architectures.

After talking to the clisp maintainer it became obvious that while there is
a certain interest in trying to get those 4 architectures up to sync with
the others again, feature-wise, there is no definite date for that nor is
there much of a priority to do so.

In the mean time, this prevents newer mcvs versions from progressing to
testing because the old architectures still have package files. In light of
the fact that those are lesser-used architectures (based on popcon) and
that I am unable to get any changes to mcvs in to debian/testing, I would
like to request the removal from the package pool of:
mcvs_1.0.13-8_ia64.deb 
mcvs_1.0.13-8_mipsel.deb
mcvs_1.0.13-8_s390.deb
mcvs_1.0.13-8_sparc.deb

For one thing, this will allow the amd64 package from getting into testing.

Thank you very much,
- robin

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.7-robin
Locale: LANG=C, LC_CTYPE= (charmap=ANSI_X3.4-1968)


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



Bug#385239: (Dirty) patch for this crasher

2006-08-31 Thread Eddy Petrişor

On 31/08/06, Yavor Doganov [EMAIL PROTECTED] wrote:

tags 385239 + patch
thanks

Attached is a patch that quite possibly is not the right fix for this
bug, but it works for me.


I am not that skilled in Objective C, but wouldn't removing free()
generate a memory leak?

Also, since this is Debian, why not make the Debian Weekly news feed
the default feed?

--
Regards,
EddyP
=
Imagination is more important than knowledge A.Einstein


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



Processed: Re: Bug#385403: aspell-ru: error in postistall script (cant build hash)

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 385403 important
Bug#385403: aspell-ru: error in postistall script (cant build hash)
Severity set to `important' from `grave'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385403: aspell-ru: error in postistall script (cant build hash)

2006-08-31 Thread Martin-Éric Racine
severity 385403 important
thanks

On Thu, August 31, 2006 5:41, Vlad Alyukov said:
 Package: aspell-ru
 Version: 0.99g3-1
 Severity: grave
 Justification: renders package unusable

  Problems rebuilding an aspell hash file (ru)
  ** Error: Could not build the hash file for ru
  This error was caused by package providing 'ru', although it can be
  made evident during other package postinst. Please complain to the
  maintainer of package providing 'ru'.

  Until this problem is fixed you will not be able to use aspell with
  'ru'.

Actually, spelling works fine. From what I can tell, the hash building
script reports a failure, instead of a warning, if it finds words that
don't fit the sorting rules defined for that language. That is caused by
new words that upstream added since 0.99g1.

-- 
Martin-Éric Racine
http://q-funk.iki.fi





Processed: Tags

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 package mcvs
Ignoring bugs not assigned to: mcvs

 close 230947
Bug#230947: There is no package with name FFI for hppa
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug#270876: clisp: FFI not available on arm hppa m68k mips mipsel s390
Bug#365230: mcvs - FTBFS: There is no package with name FFI
Bug closed, send any further explanations to [EMAIL PROTECTED]

 close 270876
Bug#270876: clisp: FFI not available on arm hppa m68k mips mipsel s390
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug is already closed, cannot re-close.

 close 365230
Bug#365230: mcvs - FTBFS: There is no package with name FFI
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug is already closed, cannot re-close.

 done
Unknown command or malformed arguments to command.

 These bugs will be closed and I will file one single canonical bug for mcvs
Unknown command or malformed arguments to command.

 that captures the fact that clisp has problems with FFI on some
Unknown command or malformed arguments to command.

 architectures which prevents mcvs from building. That bug will be filed at
Unknown command or malformed arguments to command.

 level wishlist, since there is not much I can do about it from the point of
Unknown command or malformed arguments to command.

Too many unknown commands, stopping here.

Please contact me if you need assistance.

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


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



Processed: Not a supported combination

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 385146 wishlist
Bug#385146: trac: trac has an inaccurate dependency and can be installed but 
broken.
Severity set to `wishlist' from `serious'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385146: Not a supported combination

2006-08-31 Thread Helge Kreutzmann
severity 385146 wishlist
thanks

I've never used trac, but saw your report and felt a little strange.
You blame a Debian version which version requirements are perfectly
fullfilled (as you say, trac works with stable subversion) as shipped
by Debian for a
system you created by installing software not shipped in Debian.
Moreover, trac broke because a *dependency* changed. How do you think
the author of trac should have estimated this before the release of
Sarge?

I think you can do one or more of the following:
a) complain against the person who installed the backported subversion
   for breaking your setup
b) backport a more recent trac
c) check if tracs depencency in *sid* are correct; if they are not,
   then update this bug with that info
d) point out which part of Debian policy is violated by your
   combination of a Debian release with your own software packages
e) provide a solution how to avoid such situation in the future
f) explain what in your opinion should happen now: stable is only
   updated with severe bugs (e.g. security, read the www.debian.org
   or d-d-a for details), certainly not to fix some random dependency
   for a backport

I'll leave further updates to this bug to the maintainer. In my
opinion this bug should be closed unless you can point evidence for
c), d) or f). 

Greetings

  Helge
-- 
  Dr. Helge Kreutzmann [EMAIL PROTECTED]
   Dipl.-Phys.   http://www.helgefjell.de/debian.php
64bit GNU powered gpg signed mail preferred
   Help keep free software libre: http://www.ffii.de/


signature.asc
Description: Digital signature


Processed: Fixed in NMU of apache2 2.0.55-4.2

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 383659 + fixed
Bug#383659: apache2: please switch to libdb4.4-dev
Tags were: pending
Bug#384537: Can't build php5 due to build-depends conflicts
Bug#385223: FTBS: php5-5.1.4-0.1
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Processed: Fixed in NMU of multisync 0.82-6.1

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 376970 + fixed
Bug#376970: libbluetooth{1,2} transition, please rebuild
There were no tags set.
Bug#385423: libmultisync-plugin-irmc-bluetooth: dependancy broken with 
libbluetooth1
Tags added: fixed

 tag 385423 + fixed
Bug#385423: libmultisync-plugin-irmc-bluetooth: dependancy broken with 
libbluetooth1
Tags were: fixed
Bug#376970: libbluetooth{1,2} transition, please rebuild
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#376970: NMU patch

2006-08-31 Thread Ari Pollak
I'm uploading an NMU of this at the moment. Here are the only
differences between -6 and -6.1:

diff -u multisync-0.82/debian/control multisync-0.82/debian/control
--- multisync-0.82/debian/control
+++ multisync-0.82/debian/control
@@ -2,7 +2,7 @@
 Section: gnome
 Priority: optional
 Maintainer: Michael Banck [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), libgnome2-dev, libbonobo2-dev,
liborbit2-dev (= 1:2.8), libglade2-dev, libgnomeui-dev,
libbluetooth1-dev, libopenobex1-dev, libssl-dev, libcurl3-dev,
autotools-dev, automake1.9, libtool, libpisock-dev,
evolution-data-server-dev, libwbxml2-dev
+Build-Depends: debhelper ( 3.0.0), libgnome2-dev, libbonobo2-dev,
liborbit2-dev (= 1:2.8), libglade2-dev, libgnomeui-dev,
libbluetooth2-dev, libopenobex1-dev, libssl-dev, libcurl3-dev,
autotools-dev, automake1.9, libtool, libpisock-dev,
evolution-data-server-dev, libebook1.2-dev, libecal1.2-dev,
libedata-book1.2-dev, libedata-cal1.2-dev, libedataserver1.2-dev,
libwbxml2-dev
 Standards-Version: 3.5.8

 Package: multisync
diff -u multisync-0.82/debian/changelog multisync-0.82/debian/changelog
--- multisync-0.82/debian/changelog
+++ multisync-0.82/debian/changelog
@@ -1,3 +1,11 @@
+multisync (0.82-6.1) unstable; urgency=medium
+
+  * NMU
+  * Change Build-depends on libbluetooth1-dev to libbluetooth2-dev,
+and add extra evolution development packages (Closes: #376970,
#385423)
+
+ -- Ari Pollak [EMAIL PROTECTED]  Thu, 31 Aug 2006 11:46:23 -0400
+
 multisync (0.82-6) unstable; urgency=low

   * New Maintainer. (Closes: #358485)




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



Bug#385239: (Dirty) patch for this crasher

2006-08-31 Thread Yavor Doganov
=?UTF-8?Q?Eddy_Petri=C5=9For?= wrote:
 
 I am not that skilled in Objective C, but wouldn't removing free()
 generate a memory leak?

I'm even less skilled or more precisely, not skilled at all.  It is
very possible, so I tested the app for a few hours.  However, it is a
rather small one so perhaps I can't detect a potential leak.  The
problem is there, in freeing the memory, but I don't know how to fix
that in the right way.  I'll ask on the GNUstep ML or better, let's
give some time to the maintainer to respond.

 Also, since this is Debian, why not make the Debian Weekly news feed
 the default feed?

Sure, it'll be much better than Slashdot.  I put GNU because GNUstep
is part of the GNU Project and most GNUstep users are following it.

-- 
I had a very low opinion of TCL, basically because it wasn't Lisp. --RMS


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



Bug#384514: FW: Mystified

2006-08-31 Thread John Goerzen
I don't know why this hasn't showed up on the BTS page yet...

Anyway, this build failure also occurs when attemptimg to build this
version of ghc on Debian stable on alpha.

- Forwarded message from John Goerzen [EMAIL PROTECTED] -

From: John Goerzen [EMAIL PROTECTED]
Date: Tue, 29 Aug 2006 14:28:59 -0500
To: [EMAIL PROTECTED]
Subject: Mystified

The packages.conf.inplace seems to be fine.  I'm attaching it here.  I'm
not sure what the problem is.


[InstalledPackageInfo {package = PackageIdentifier {pkgName = rts, pkgVersion 
= Version {versionBranch = [1,0], versionTags = []}}, license = BSD3, copyright 
= , maintainer = glasgow-haskell-users@haskell.org, author = , stability 
= , homepage = , pkgUrl = , description = , category = , exposed = 
True, exposedModules = [], hiddenModules = [], importDirs = [], libraryDirs = 
[/root/ghc6-6.4.2/ghc/rts,/root/ghc6-6.4.2/ghc/rts/gmp], hsLibraries = 
[HSrts], extraLibraries = [m,gmp,dl], extraGHCiLibraries = [], 
includeDirs = [/root/ghc6-6.4.2/ghc/includes], includes = [Stg.h], depends 
= [], hugsOptions = [], ccOptions = [], ldOptions = 
[-u,GHCziBase_Izh_static_info,-u,GHCziBase_Czh_static_info,-u,GHCziFloat_Fzh_static_info,-u,GHCziFloat_Dzh_static_info,-u,GHCziPtr_Ptr_static_info,-u,GHCziWord_Wzh_static_info,-u,GHCziInt_I8zh_static_info,-u,GHCziInt_I16zh_static_info,-u,GHCziInt_I32zh_static_info,-u,GHCziInt_I64zh_static_info,-u,GHCziWord_W8zh_static_info,-u,GHCziWord_W16zh_static_info,-u,GHCziWord_W32zh_static_info,-u,GHCziWord_W64zh_static_info,-u,GHCziStable_StablePtr_static_info,-u,GHCziBase_Izh_con_info,-u,GHCziBase_Czh_con_info,-u,GHCziFloat_Fzh_con_info,-u,GHCziFloat_Dzh_con_info,-u,GHCziPtr_Ptr_con_info,-u,GHCziPtr_FunPtr_con_info,-u,GHCziStable_StablePtr_con_info,-u,GHCziBase_False_closure,-u,GHCziBase_True_closure,-u,GHCziPack_unpackCString_closure,-u,GHCziIOBase_stackOverflow_closure,-u,GHCziIOBase_heapOverflow_closure,-u,GHCziIOBase_NonTermination_closure,-u,GHCziIOBase_BlockedOnDeadMVar_closure,-u,GHCziIOBase_BlockedIndefinitely_closure,-u,GHCziIOBase_Deadlock_closure,-u,GHCziIOBase_NestedAtomically_closure,-u,GHCziWeak_runFinalizzerBatch_closure,-u,__stginit_Prelude],
 frameworkDirs = [], frameworks = [], haddockInterfaces = [], haddockHTMLs = 
[]}]

[InstalledPackageInfo {package = PackageIdentifier {pkgName = rts, pkgVersion 
= Version {versionBranch = [1,0], versionTags = []}}, license = BSD3, copyright 
= , maintainer = glasgow-haskell-users@haskell.org, author = , stability 
= , homepage = , pkgUrl = , description = , category = , exposed = 
True, exposedModules = [], hiddenModules = [], importDirs = [], libraryDirs = 
[/usr/lib/ghc-6.4.2], hsLibraries = [HSrts], extraLibraries = 
[m,gmp,dl], extraGHCiLibraries = [], includeDirs = 
[/usr/lib/ghc-6.4.2/include], includes = [Stg.h], depends = [], hugsOptions 
= [], ccOptions = [], ldOptions = 
[-u,GHCziBase_Izh_static_info,-u,GHCziBase_Czh_static_info,-u,GHCziFloat_Fzh_static_info,-u,GHCziFloat_Dzh_static_info,-u,GHCziPtr_Ptr_static_info,-u,GHCziWord_Wzh_static_info,-u,GHCziInt_I8zh_static_info,-u,GHCziInt_I16zh_static_info,-u,GHCziInt_I32zh_static_info,-u,GHCziInt_I64zh_static_info,-u,GHCziWord_W8zh_static_info,-u,GHCziWord_W16zh_static_info,-u,GHCziWord_W32zh_static_info,-u,GHCziWord_W64zh_static_info,-u,GHCziStable_StablePtr_static_info,-u,GHCziBase_Izh_con_info,-u,GHCziBase_Czh_con_info,-u,GHCziFloat_Fzh_con_info,-u,GHCziFloat_Dzh_con_info,-u,GHCziPtr_Ptr_con_info,-u,GHCziPtr_FunPtr_con_info,-u,GHCziStable_StablePtr_con_info,-u,GHCziBase_False_closure,-u,GHCziBase_True_closure,-u,GHCziPack_unpackCString_closure,-u,GHCziIOBase_stackOverflow_closure,-u,GHCziIOBase_heapOverflow_closure,-u,GHCziIOBase_NonTermination_closure,-u,GHCziIOBase_BlockedOnDeadMVar_closure,-u,GHCziIOBase_BlockedIndefinitely_closure,-u,GHCziIOBase_Deadlock_closure,-u,GHCziIOBase_NestedAtomically_closure,-u,GHCziWeak_runFinalizzerBatch_closure,-u,__stginit_Prelude],
 frameworkDirs = [], frameworks = [], haddockInterfaces = [], haddockHTMLs = 
[]}]


- End forwarded message -

-- 
John Goerzen
Author, Foundations of Python Network Programming
http://www.amazon.com/exec/obidos/tg/detail/-/1590593715


package.conf.inplace.old
Description: application/trash


Bug#280485: Permission received

2006-08-31 Thread Norman Walsh
O'Reilly Media has granted me permission to republish DocBook: The
Definitive Guide under the GFDL without the back cover clause. I
will make a new release as soon as I have time. Probably before
the end of September, 2006.

If you happen to be reading this after September and it still hasn't
been fixed at http://docbook.org/tdg/en, well, feel free to remind
me :-)

Be seeing you,
  norm

-- 
Norman Walsh [EMAIL PROTECTED] | Everything should be made as simple as
http://nwalsh.com/| possible, but no simpler.


pgp07Yl9NkWAt.pgp
Description: PGP signature


Processed: severity of 384922 is important

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 severity 384922 important
Bug#384922: NFS insecure without support for squashing multiple groups
Severity set to `important' from `critical'


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385055: thttpd: cannot uninstall when daemon is not running

2006-08-31 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Steve Langasek schrieb:
 On Wed, Aug 30, 2006 at 08:39:10PM +0200, Bastian Kleineidam wrote:
 What should be done then in prerm when the stop command fails?
 
 Why is the stop command failing?
It fails when the daemon is not running. Perhaps it should not do so.

However, the stop command can still possibly fail. The question is what
should be done in prerm if it fails? I think ignoring the error is the
right decision then, by adding || true.

Ciao,
  Bastian
- --
  ,''`.  Bastian Kleineidam
 : :' :GnuPG Schlüssel
 `. `'gpg --keyserver wwwkeys.pgp.net --recv-keys 32EC6F3E
   `-

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

iD8DBQFE9zdDeBwlBDLsbz4RAlA/AJ4p3c9vcTXwKyHTWHYsdZM7kcZWtgCgwRh+
5Hcj+EZh9IApLTZDlBOiuqg=
=MudW
-END PGP SIGNATURE-



Processed: retitle 385486 to RM: mcvs [ia64 mipsel s390 sparc] -- RoM; FTBFS

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.20
 retitle 385486 RM: mcvs [ia64 mipsel s390 sparc] -- RoM; FTBFS
Bug#385486: ftp.debian.org: Need to remove obsolete mcvs packages from the pool
Changed Bug title.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385504: mantis: Not in release quality for Etch

2006-08-31 Thread Moritz Muehlenhoff
Package: mantis
Severity: grave
Justification: user security hole

Mantis shouldn't ship with Etch. It is very much out of date (current stable
is 1.0 something), has a horrible security history (19 CVE IDs since 2005,
many describing several vulnerabilities), upstream is hiding the details in
private bugs, making it hard to support it and it has a tiny user base.

Also, Igor Genibel has resigned due to a lack of time, so it's currently
unmaintained.

Cheers,
Moritz

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)


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



Processed: removing the tag, the patch is useless

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 385239 - patch
Bug#385239: rssreader.app: does not start
Tags were: patch
Tags removed: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385239: New upstream version

2006-08-31 Thread Yavor Doganov
tags 385239 - patch
thanks

The patch is total crap, I guess.  RSSReader was renamed to Grr; I
knew about it but until now thought that it is a different app.

I just tried Grr 0.6.2 and this bug is fixed, as well as all others
that are filed against rssreader.app.  The best way do deal with this
is to package this new version.  However, it's not entirely trivial as
the package has to be renamed to grr.app and what's more important,
there's a new RSSKit library so another binary has to be created for
it.

Gürkan, in case you're busy and do not respond in a week or so, I can
prepare a NMU and submit the patch here.  Those will be fundamental
changes and I don't want to step on your toes, so in general, it'll be
much better if you handle this or at least give a greenlight.

-- 
I had a very low opinion of TCL, basically because it wasn't Lisp. --RMS



Bug#385239: New upstream version

2006-08-31 Thread Gurkan Sengun
hi yavor,

 The patch is total crap, I guess.  RSSReader was renamed to Grr; I
 knew about it but until now thought that it is a different app.

that's fine, no it's not total crap. if you don't mind keep the name:
i did that with viewpdf/vindaloo. 

 I just tried Grr 0.6.2 and this bug is fixed, as well as all others
 that are filed against rssreader.app.  The best way do deal with this
 is to package this new version.  However, it's not entirely trivial as
 the package has to be renamed to grr.app and what's more important,
 there's a new RSSKit library so another binary has to be created for
 it.

sounds very good.

 Gürkan, in case you're busy and do not respond in a week or so, I can
 prepare a NMU and submit the patch here.  Those will be fundamental
 changes and I don't want to step on your toes, so in general, it'll be
 much better if you handle this or at least give a greenlight.

please go ahead, add yourself to uploaders: and be a co-maintainer,
i can need any help i can get, there's alot to do. please can you package
rsskit? and if it's the same sourcetarball, generate both packages!

if it's in the uberlarge etoile tree, let me give you some work/url i did:
http://io.debian.net/~tar/debian/etoile/  ... the checkout should be updated
and also dictionaryreader.app be built i'll be busy with updating all the 
packages
and improving them, including some new itp's and emacs.app

yours,
guerkan




Bug#376970: marked as done (libbluetooth{1,2} transition, please rebuild)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 14:32:36 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385423: libmultisync-plugin-irmc-bluetooth: dependancy 
broken with libbluetooth1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: libmultisync-plugin-irmc-bluetooth 
Severity: normal 
Version: 0.82-6

Hi,
libbluetooth2 has hit unstable, could you please rebuild your package against
it?
Only ABI has changed (i.e. a few struct members).

thanks in advance,
filippo (on behalf of pkg-bluetooth)
--
Filippo Giunchedi - http://esaurito.net
PGP key: 0x6B79D401
random quote follows:

If there is any better use for being famous and respected than using
that status to question orthodoxy, I haven't found it yet.
-- Eric S. Raymond


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
On Thu, Aug 31, 2006 at 09:38:46AM +0200, Encolpe DEGOUTE wrote:
 Package: libmultisync-plugin-irmc-bluetooth
 Version: 0.82-6+b1
 Severity: grave
 Justification: renders package unusable

 Hi,
 libbluetooth1 seems to be both unavailable in etch and sid.
 Can this package be built against libbluetooth2 ?

This appears to be fixed with the NMU of multisync 0.82-6.1.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/
---End Message---


Bug#385423: marked as done (libmultisync-plugin-irmc-bluetooth: dependancy broken with libbluetooth1)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 14:32:36 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385423: libmultisync-plugin-irmc-bluetooth: dependancy 
broken with libbluetooth1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: libmultisync-plugin-irmc-bluetooth
Version: 0.82-6+b1
Severity: grave
Justification: renders package unusable

Hi,
libbluetooth1 seems to be both unavailable in etch and sid.
Can this package be built against libbluetooth2 ?

Regards,

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

---End Message---
---BeginMessage---
On Thu, Aug 31, 2006 at 09:38:46AM +0200, Encolpe DEGOUTE wrote:
 Package: libmultisync-plugin-irmc-bluetooth
 Version: 0.82-6+b1
 Severity: grave
 Justification: renders package unusable

 Hi,
 libbluetooth1 seems to be both unavailable in etch and sid.
 Can this package be built against libbluetooth2 ?

This appears to be fixed with the NMU of multisync 0.82-6.1.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/
---End Message---


Bug#385146: Not a supported combination

2006-08-31 Thread Steve Langasek
severity 385146 serious
reassign 385146 libsvn0
retitle 385146 libsvn0 must depend on python-subversion or conflict with old 
trac
thanks

On Thu, Aug 31, 2006 at 07:04:29PM +0200, Helge Kreutzmann wrote:
 I've never used trac, but saw your report and felt a little strange.
 You blame a Debian version which version requirements are perfectly
 fullfilled (as you say, trac works with stable subversion) as shipped
 by Debian for a
 system you created by installing software not shipped in Debian.
 Moreover, trac broke because a *dependency* changed. How do you think
 the author of trac should have estimated this before the release of
 Sarge?

That doesn't make it a wishlist bug, though; it just makes it harder to fix.

Note that this same problem would affect partial upgrades from sarge to etch
in which libsvn0 was upgraded without installing the new python-subversion
package.  An upgrade path is needed here for old packages that depended on
libsvn0 because it was the only way to get the swig bindings.

This is parallel to bug #382058 on the perl side.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Bug#385483: marked as done (sylpheed-claws-gtk2-i18n: Not installable in Sid)

2006-08-31 Thread Debian Bug Tracking System
Your message dated Thu, 31 Aug 2006 14:04:39 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#385483: sylpheed-claws-gtk2-i18n: Not installable in Sid
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: sylpheed-claws-gtk2-i18n
Version: 2.5.0~rc2-2
Severity: grave
Justification: renders package unusable

Hello,

---
The following packages have unmet dependencies:
  sylpheed-claws-gtk2-i18n: Depends: sylpheed-claws-gtk2 (= 
2.5.0~rc2-2) but 2.5.0~rc2-1 is installed.
Resolving dependencies...
Unable to resolve dependencies!  Giving up...
Abort.
---


HTH,

George.


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

---End Message---
---BeginMessage---
On Thu, Aug 31, 2006 at 03:11:31PM +0100, George B. wrote:

 The following packages have unmet dependencies:
   sylpheed-claws-gtk2-i18n: Depends: sylpheed-claws-gtk2 (= 
 2.5.0~rc2-2) but 2.5.0~rc2-1 is installed.
 Resolving dependencies...
 Unable to resolve dependencies!  Giving up...
 Abort.

So, install sylpheed-claws-gtk2 2.5.0~rc2-2, as that's the current version?

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/
---End Message---


Processed: Re: Bug#385146: Not a supported combination

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 385146 serious
Bug#385146: trac: trac has an inaccurate dependency and can be installed but 
broken.
Severity set to `serious' from `wishlist'

 reassign 385146 libsvn0
Bug#385146: trac: trac has an inaccurate dependency and can be installed but 
broken.
Bug reassigned from package `trac' to `libsvn0'.

 retitle 385146 libsvn0 must depend on python-subversion or conflict with old 
 trac
Bug#385146: trac: trac has an inaccurate dependency and can be installed but 
broken.
Changed Bug title.

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#385239: New upstream version

2006-08-31 Thread Yavor Doganov
Gurkan Sengun wrote:
 
 if you don't mind keep the name: i did that with viewpdf/vindaloo.

AFAICS this is not forbidden by the policy so if that's your wish, I
don't mind.

 please go ahead, add yourself to uploaders: and be a co-maintainer,
 i can need any help i can get, there's alot to do. 

Thank you very much for your trust, but I'm not so confident in my
skills.  I will try to do my best and let's hope that I won't spoil
the package.

 please can you package rsskit? and if it's the same sourcetarball,
 generate both packages!

Yes, RSSKit is in the upstream tarball, so we have to generate two
binary packages.  It'll be used by PlopFolio as well.

 if it's in the uberlarge etoile tree, let me give you some work/url
 i did: http://io.debian.net/~tar/debian/etoile/ ... the checkout
 should be updated and also dictionaryreader.app be built

It is seperate from Etoile, I think, but thanks for the link.

 i'll be busy with updating all the packages
 and improving them, including some new itp's and emacs.app

Great, I know about your new ITPs, but I suggest not to put any effort
on emacs.app.  I hardly recall the discussion on emacs-devel@gnu.org,
but I think that once Emacs 22 is released, the branch that Adrian
Robert is working on will be merged to the trunk and Romain Francoise
will package emacs-snapshot (as he does weekly since more than a
year), providing an alternative for the gnustep flavour.  If
everything is going well (fingers crossed), it will be official part
of Emacs 23; that's the intention of RMS as well.  I know you've put a
lot of effort in this package, but it was rejected once by the
ftpmasters and is likely to be rejected again if it is done in a
similar way.

-- 
I had a very low opinion of TCL, basically because it wasn't Lisp. --RMS


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



Processed: Re: NFS insecure without support for squashing multiple groups

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 384922 critical
Bug#384922: NFS insecure without support for squashing multiple groups
Severity set to `critical' from `important'

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#380938: rubrica: Patch

2006-08-31 Thread Eike Sauer
Package: rubrica
Version: 1.0.14-1
Followup-For: Bug #380938

I attached a patch that should make the package comply 
with the new policy. As I'm not experienced with python,
please take a second look at it.

Ciao,
Eike

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (150, 'testing'), (100, 'stable'), (50, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages rubrica depends on:
ii  gconf2 2.14.0-4  GNOME configuration database syste
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.12.1-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.14.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.14.0-4  The Bonobo UI library
ii  libc6  2.3.6.ds1-4   GNU C Library: Shared libraries
ii  libcairo2  1.2.4-1   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.3.2-7   generic font configuration library
ii  libgconf2-42.14.0-4  GNOME configuration database syste
ii  libglib2.0-0   2.10.3-3  The GLib library of C routines
ii  libgnome2-02.14.1-3  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented display
ii  libgnomeui-0   2.14.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.14.2-1  GNOME virtual file-system (runtime
ii  libgtk2.0-02.8.18-1  The GTK+ graphical user interface 
ii  libice61:1.0.0-3 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.0-2libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.12.3-1+b1   Layout and rendering of internatio
ii  libpopt0   1.10-2lib for parsing cmdline parameters
ii  libsm6 1:1.0.0-4 X11 Session Management library
ii  libx11-6   2:1.0.0-8 X11 client-side library
ii  libxcursor11.1.5.2-5 X cursor management library
ii  libxext6   1:1.0.0-4 X11 miscellaneous extension librar
ii  libxi6 1:1.0.0-5 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml22.6.26.dfsg-3 GNOME XML library
ii  libxrandr2 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender11:0.9.0.2-4   X Rendering Extension client libra
ii  libxslt1.1 1.1.17-3  XSLT processing library - runtime 
ii  python 2.3.5-11  An interactive high-level object-o
ii  python-libxslt1 [python2.3 1.1.17-3  Python bindings for libxslt1
ii  python-xml 0.8.4-5   XML tools for Python
ii  zlib1g 1:1.2.3-13compression library - runtime

rubrica recommends no packages.

-- no debconf information
diff -r -u -N rubrica-1.0.14.old/debian/control rubrica-1.0.14/debian/control
--- rubrica-1.0.14.old/debian/control   2005-12-19 00:06:38.0 +0100
+++ rubrica-1.0.14/debian/control   2006-08-31 23:58:44.0 +0200
@@ -2,12 +2,14 @@
 Section: x11
 Priority: optional
 Maintainer: Sebastien Bacher [EMAIL PROTECTED]
-Build-Depends: cdbs, debhelper (= 4.1.65), libgnomeui-dev (= 2.6.1.1-2), 
libxslt1-dev (= 1.0.0), python
+Build-Depends: cdbs, debhelper (= 5.0.37.2), libgnomeui-dev (= 2.6.1.1-2), 
libxslt1-dev (= 1.0.0), python-support (= 0.3)
+XS-Python-Version: current
 Standards-Version: 3.6.1.0
 
 Package: rubrica
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-xml (= 
0.8.3-1), python2.3-libxslt1
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-xml (= 
0.8.3-1), python-libxslt1
+XB-Python-Version: ${python:Versions}
 Description: An addressbook for the GNOME desktop
  Rubrica stores personal data (first name, last name, etc.) web urls and
  email addresses, telephone numbers (home, etc.), job data (company
diff -r -u -N rubrica-1.0.14.old/debian/pycompat rubrica-1.0.14/debian/pycompat
--- rubrica-1.0.14.old/debian/pycompat  1970-01-01 01:00:00.0 +0100
+++ rubrica-1.0.14/debian/pycompat  2006-08-31 23:59:27.0 +0200
@@ -0,0 +1 @@
+2
diff -r -u -N rubrica-1.0.14.old/debian/rules rubrica-1.0.14/debian/rules
--- rubrica-1.0.14.old/debian/rules 2005-12-19 00:06:38.0 +0100
+++ rubrica-1.0.14/debian/rules 2006-08-31 21:47:11.0 +0200
@@ -9,7 +9,8 @@
 DEB_INSTALL_MANPAGES_rubrica := debian/rubrica.1
 
 binary-install/rubrica:: 
-   dh_python
+   dh_pysupport /usr/share/rubrica/script/ 
/usr/share/rubrica/nautilus-script/
+   dh_python /usr/share/rubrica/script/ 

Bug#385239: New upstream version

2006-08-31 Thread Gurkan Sengun

On 2006-08-31 23:41:38 +0200 Yavor Doganov [EMAIL PROTECTED] wrote:


Gurkan Sengun wrote:


if you don't mind keep the name: i did that with viewpdf/vindaloo.


AFAICS this is not forbidden by the policy so if that's your wish, I
don't mind.


i don't find grr a pretty good name, but if upstream wishes so,
so be it. i'd keep the existing name, but i'll leave this up to you,
i'd like to maintain rssreader, and you do rsskit... but try to do it 
you...



please go ahead, add yourself to uploaders: and be a co-maintainer,
i can need any help i can get, there's alot to do.


Thank you very much for your trust, but I'm not so confident in my
skills.  I will try to do my best and let's hope that I won't spoil
the package.


i'll help where i can, hubert says:
Sounds good.  If he wants to look at how to package frameworks, you 
can tell

him to look at the packaging of pantomime1.2, or popplerkit.framework.


please can you package rsskit? and if it's the same sourcetarball,
generate both packages!


Yes, RSSKit is in the upstream tarball, so we have to generate two
binary packages.  It'll be used by PlopFolio as well.


ah good, thank you!


if it's in the uberlarge etoile tree, let me give you some work/url
i did: http://io.debian.net/~tar/debian/etoile/ ... the checkout
should be updated and also dictionaryreader.app be built


It is seperate from Etoile, I think, but thanks for the link.


i'll do etoile/dictionaryreader asap as gnustep is available in sid..


i'll be busy with updating all the packages
and improving them, including some new itp's and emacs.app


Great, I know about your new ITPs, but I suggest not to put any effort
on emacs.app.  I hardly recall the discussion on emacs-devel@gnu.org,
but I think that once Emacs 22 is released, the branch that Adrian
Robert is working on will be merged to the trunk and Romain Francoise
will package emacs-snapshot (as he does weekly since more than a
year), providing an alternative for the gnustep flavour.  If
everything is going well (fingers crossed), it will be official part
of Emacs 23; that's the intention of RMS as well.  I know you've put a
lot of effort in this package, but it was rejected once by the
ftpmasters and is likely to be rejected again if it is done in a
similar way.


the reason it got rejected was only that: it would have used 25 mb x 
11 architectures,
i fixed this shortly after, and new emacs.app release was done, 
gnustep also
but now i wait for it be updated, and adrian also did great 
improvements on io.debian.net:

http://io.debian.net/~tar/debian/emacs/
i will try this again, since it's an important thing! very usable too, 
if you want screenshots:

http://io.debian.net/~tar/screenshots/emacs.app.png
from the old days when it was not on gnustep yet:
http://www.linuks.mine.nu/openstep/emacs.png

yours,
guerkan



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



Bug#384220: ekiga: FTBFS: missing build-dep on libebook

2006-08-31 Thread Thomas Girard
tags 384220 + patch
thanks

Hi,

Indeed, the libebook1.2-dev build-depends is missing.  The attached
patch fixes this.

Thomas
--- debian/control- 2006-08-31 23:46:18.686698500 +0200
+++ debian/control  2006-08-31 23:47:00.981341750 +0200
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Kilian Krause [EMAIL PROTECTED]
 Uploaders: Jose Carlos Garcia Sogo [EMAIL PROTECTED], Debian GNOME 
Maintainers [EMAIL PROTECTED], Akira TAGOH [EMAIL PROTECTED], Andreas 
Rottmann [EMAIL PROTECTED], Andrew Lau [EMAIL PROTECTED], Clément Stenac 
[EMAIL PROTECTED], Dafydd Harries [EMAIL PROTECTED], Guilherme de S. 
Pastore [EMAIL PROTECTED], Gustavo Franco [EMAIL PROTECTED], Gustavo 
Noronha Silva [EMAIL PROTECTED], J.H.M. Dassen (Ray) [EMAIL PROTECTED], 
Jordi Mallach [EMAIL PROTECTED], Jose Carlos Garcia Sogo [EMAIL PROTECTED], 
Josselin Mouette [EMAIL PROTECTED], Loic Minier [EMAIL PROTECTED], Marc 
'HE' Brockschmidt [EMAIL PROTECTED], Marco Cabizza [EMAIL PROTECTED], 
Ondřej Surý [EMAIL PROTECTED], Ross Burton [EMAIL PROTECTED], Sebastien 
Bacher [EMAIL PROTECTED], Sjoerd Simons [EMAIL PROTECTED], Takuo KITAME 
[EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.1.34), gettext, libgnome2-dev, libldap2-dev, 
libpt-dev (= 1.10.1), libopal-dev (= 2.2.2), libgconf2-dev, libgnomeui-dev, 
libsdl1.2-dev, dpatch, autotools-dev, gnome-pkg-tools, scrollkeeper, 
automake1.7, intltool, libxml-parser-perl, evolution-data-server-dev, 
gnome-doc-utils, libavahi-client-dev (= 0.6.0), libavahi-glib-dev (= 0.6.0)
+Build-Depends: debhelper (= 4.1.34), gettext, libgnome2-dev, libldap2-dev, 
libpt-dev (= 1.10.1), libopal-dev (= 2.2.2), libgconf2-dev, libgnomeui-dev, 
libsdl1.2-dev, dpatch, autotools-dev, gnome-pkg-tools, scrollkeeper, 
automake1.7, intltool, libxml-parser-perl, evolution-data-server-dev, 
gnome-doc-utils, libavahi-client-dev (= 0.6.0), libavahi-glib-dev (= 0.6.0), 
libebook1.2-dev
 Standards-Version: 3.6.2
 
 Package: ekiga


Bug#385483: sylpheed-claws-gtk2-i18n: Not installable in Sid

2006-08-31 Thread Ricardo Mones
tags 385483 confirmed
severity 385483 important 
thanks

On Thu, 31 Aug 2006 15:11:31 +0100
George B. [EMAIL PROTECTED] wrote:

 Package: sylpheed-claws-gtk2-i18n
 Version: 2.5.0~rc2-2
 Severity: grave
 Justification: renders package unusable
 
 Hello,
 
 ---
 The following packages have unmet dependencies:
   sylpheed-claws-gtk2-i18n: Depends: sylpheed-claws-gtk2 (= 
 2.5.0~rc2-2) but 2.5.0~rc2-1 is installed.
 Resolving dependencies...
 Unable to resolve dependencies!  Giving up...
 Abort.
 ---

  Wait a bit, sylpheed-claws-gtk2 2.5.0~rc2-2 should be available soon on
your mirror. You can get the rc2-1 version of -i18n and install it in the
meantime (it's identical to the rc-2-2 btw):

  wget 
http://ftp.at.debian.org/debian/pool/main/s/sylpheed-claws-gtk2/sylpheed-claws-gtk2-i18n_2.5.0~rc2-1_all.deb
  dpkg -i sylpheed-claws-gtk2-i18n_2.5.0~rc2-1_all.deb

  regards,
-- 
 Ricardo Mones
 http://people.debian.org/~mones
 «You fill a much-needed gap.»


signature.asc
Description: PGP signature


Processed: ekiga: FTBFS: missing build-dep on libebook

2006-08-31 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 384220 + patch
Bug#384220: ekiga: FTBFS: missing build-dep on libebook
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



  1   2   >