Bug#442172: Workaround for bug #442172

2007-11-30 Thread Juhapekka Tolvanen

Here is very simple workaround:

1) Go to directory ~/.xinput.d

2) Create some file like this:

 Clip here 

XIM=SCIM
XIM_PROGRAM=/usr/bin/scim
XIM_ARGS=-d
GTK_IM_MODULE=scim-bridge
#QT_IM_MODULE=scim-bridge
QT_IM_MODULE=scim
XMODIFIERS=@im=SCIM
DEPENDS=scim,scim-bridge-client-gtk,scim-bridge-client-qt|scim-anthy|scim-canna|scim-chewing|scim-pinyin|scim-hangle|scim-prime|scim-skk|scim-tables-additional|scim-m17n|scim-uim|scim-tables-ja|scim-tables-ko|scim-tables-zh

 Clip here 

That DEPENDS-line may have some useless stuff, but it does not hinder
very much.

4) Save that file. I saved that file under the name juhtolv

3) Give this kind of command:

im-switch -s juhtolv

4) Log out from you X Window System and then log in, again.

Now you should be able to use any Qt3- and Qt4-based programs without
problems and you should be able to input CJK-characters.

When this bug is fixed, give this command and re-login:

im-switch -s scim-bridge


-- 
Juhapekka naula Tolvanen * http colon slash slash iki dot fi slash juhtolv
S teki. S teki. S teki. S wo kakusei. S teki. S teki. S teki. S wo umekome.
S teki. S teki. S teki. M wo setsudan. S teki. S teki. Puratonikku wo
hajimemashou.   Dir en grey



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



Bug#453665: udftools: configure should check for apt-get install libreadline-dev

2007-11-30 Thread Richard Atterer
I'm preparing an updated version of the package right now - please wait a 
few days before you continue your work, to avoid duplication of effort!

On Fri, Nov 30, 2007 at 03:10:53PM +0100, Jean-Michel wrote:
 Before compiling, 
 
  apt-get  install libreadline-dev
 
 should be launched.
 
 configure script might check for such a component.

This is already checked, because of the Build-Depends: libreadline5-dev 
in debian/control. Please use the dpkg-buildpackage command to build the 
package!

Oh, and if you provide patches for existing bugs like you did for #453629, 
please add them to the existing bug rather than opening a new one. I guess 
you already noticed that. :) Thanks for your contribution!

Cheers,

  Richard

-- 
  __   _
  |_) /|  Richard Atterer
  | \/¯|  http://atterer.net
  ¯ '` ¯




Bug#453652: rsync: prone to symlink attacks

2007-11-30 Thread Nico Golde
Hi Paul,
pressed 'y' too fast so forgot the modified patch.
Here it is.
Cheers
Nico
-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.
diff -Nurad rsync-2.6.9/clientserver.c rsync-2.6.9.new/clientserver.c
--- rsync-2.6.9/clientserver.c	2006-10-24 02:36:42.0 +0200
+++ rsync-2.6.9.new/clientserver.c	2007-11-30 18:26:25.0 +0100
@@ -55,6 +55,7 @@
 char *auth_user;
 int read_only = 0;
 int module_id = -1;
+int munge_symlinks = 0;
 struct chmod_mode_struct *daemon_chmod_modes;
 
 /* Length of lp_path() string when in daemon mode  not chrooted, else 0. */
@@ -524,6 +525,18 @@
 		sanitize_paths = 1;
 	}
 
+	if ((munge_symlinks = lp_munge_symlinks(i))  0)
+		munge_symlinks = !use_chroot;
+	if (munge_symlinks) {
+		STRUCT_STAT st;
+		if (stat(SYMLINK_PREFIX, st) == 0  S_ISDIR(st.st_mode)) {
+			rprintf(FLOG, Symlink munging is unsupported when a %s directory exists.\n,
+SYMLINK_PREFIX);
+			io_printf(f_out, @ERROR: daemon security issue -- contact admin\n, name);
+			exit_cleanup(RERR_UNSUPPORTED);
+		}
+	}
+
 	if (am_root) {
 		/* : You could argue that if the daemon is started
 		 * by a non-root user and they explicitly specify a
diff -Nurad rsync-2.6.9/flist.c rsync-2.6.9.new/flist.c
--- rsync-2.6.9/flist.c	2006-10-14 03:17:36.0 +0200
+++ rsync-2.6.9.new/flist.c	2007-11-30 18:26:25.0 +0100
@@ -53,6 +53,7 @@
 extern int copy_unsafe_links;
 extern int protocol_version;
 extern int sanitize_paths;
+extern int munge_symlinks;
 extern struct stats stats;
 extern struct file_list *the_file_list;
 
@@ -174,6 +175,11 @@
 			}
 			return do_stat(path, stp);
 		}
+		if (munge_symlinks  am_sender  llen  SYMLINK_PREFIX_LEN
+		  strncmp(linkbuf, SYMLINK_PREFIX, SYMLINK_PREFIX_LEN) == 0) {
+			memmove(linkbuf, linkbuf + SYMLINK_PREFIX_LEN,
+llen - SYMLINK_PREFIX_LEN + 1);
+		}
 	}
 	return 0;
 #else
@@ -591,6 +597,8 @@
 linkname_len - 1);
 			overflow_exit(receive_file_entry);
 		}
+		if (munge_symlinks)
+			linkname_len += SYMLINK_PREFIX_LEN;
 	}
 	else
 #endif
@@ -658,10 +666,17 @@
 #ifdef SUPPORT_LINKS
 	if (linkname_len) {
 		file-u.link = bp;
+		if (munge_symlinks) {
+			strlcpy(bp, SYMLINK_PREFIX, linkname_len);
+			bp += SYMLINK_PREFIX_LEN;
+			linkname_len -= SYMLINK_PREFIX_LEN;
+		}
 		read_sbuf(f, bp, linkname_len - 1);
-		if (sanitize_paths)
+		if (sanitize_paths  !munge_symlinks) {
 			sanitize_path(bp, bp, , lastdir_depth, NULL);
-		bp += linkname_len;
+			bp += strlen(bp) + 1;
+		} else
+			bp += linkname_len;
 	}
 #endif
 
diff -Nurad rsync-2.6.9/loadparm.c rsync-2.6.9.new/loadparm.c
--- rsync-2.6.9/loadparm.c	2006-10-13 08:49:44.0 +0200
+++ rsync-2.6.9.new/loadparm.c	2007-11-30 18:26:25.0 +0100
@@ -153,6 +153,7 @@
 	BOOL ignore_errors;
 	BOOL ignore_nonreadable;
 	BOOL list;
+	BOOL munge_symlinks;
 	BOOL read_only;
 	BOOL strict_modes;
 	BOOL transfer_logging;
@@ -200,6 +201,7 @@
  /* ignore_errors; */		False,
  /* ignore_nonreadable; */	False,
  /* list; */			True,
+ /* munge_symlinks; */		(BOOL)-1,
  /* read_only; */		True,
  /* strict_modes; */		True,
  /* transfer_logging; */	False,
@@ -313,6 +315,7 @@
  {log format,P_STRING, P_LOCAL, sDefault.log_format,NULL,0},
  {max connections,   P_INTEGER,P_LOCAL, sDefault.max_connections,   NULL,0},
  {max verbosity, P_INTEGER,P_LOCAL, sDefault.max_verbosity, NULL,0},
+ {munge symlinks,P_BOOL,   P_LOCAL, sDefault.munge_symlinks,NULL,0},
  {name,  P_STRING, P_LOCAL, sDefault.name,  NULL,0},
  {outgoing chmod,P_STRING, P_LOCAL, sDefault.outgoing_chmod,NULL,0},
  {path,  P_PATH,   P_LOCAL, sDefault.path,  NULL,0},
@@ -415,6 +418,7 @@
 FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
 FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
 FN_LOCAL_BOOL(lp_list, list)
+FN_LOCAL_BOOL(lp_munge_symlinks, munge_symlinks)
 FN_LOCAL_BOOL(lp_read_only, read_only)
 FN_LOCAL_BOOL(lp_strict_modes, strict_modes)
 FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging)
diff -Nurad rsync-2.6.9/proto.h rsync-2.6.9.new/proto.h
--- rsync-2.6.9/proto.h	2006-11-07 05:39:47.0 +0100
+++ rsync-2.6.9.new/proto.h	2007-11-30 18:26:25.0 +0100
@@ -176,6 +176,7 @@
 BOOL lp_ignore_errors(int );
 BOOL lp_ignore_nonreadable(int );
 BOOL lp_list(int );
+BOOL lp_munge_symlinks(int );
 BOOL lp_read_only(int );
 BOOL lp_strict_modes(int );
 BOOL lp_transfer_logging(int );
diff -Nurad rsync-2.6.9/rsyncd.conf.5 rsync-2.6.9.new/rsyncd.conf.5
--- rsync-2.6.9/rsyncd.conf.5	2007-11-30 18:27:02.0 +0100
+++ rsync-2.6.9.new/rsyncd.conf.5	2007-11-30 18:26:25.0 +0100
@@ -145,12 +145,15 @@
 holes, but it has the disadvantages of requiring super-user privileges,
 of not being able to follow symbolic links that are either absolute or outside
 of the new root path, and of complicating the preservation of usernames and groups
-(see below)\.  When 

Bug#426224: Temporary fix

2007-11-30 Thread Francesco Poli
Hi!

Henrique de Moraes Holschuh committed a patch for /etc/init.d/halt .
This patch is visible here:
http://lists.alioth.debian.org/pipermail/pkg-sysvinit-commits/2007-November/000955.html
and will probably be included in the next sysvinit
upload.

In an attempt to provide a temporary fix for the issue while we are
waiting for a new sysvinit upload, I prepared the attached tar archive,
which includes the patch by Henrique and a simple  stupid script that
applies it to /etc/init.d/halt .
I thought I could share this, so that other users may get the benefit of
the fix.

I hope this helps.

-- 
 http://frx.netsons.org/doc/nanodocs/testing_workstation_install.html
 Need to read a Debian testing installation walk-through?
. Francesco Poli .
 GnuPG key fpr == C979 F34B 27CE 5CD8 DC12  31B5 78F4 279B DD6D FCF4


etc_init.d_halt_patch.tar.gz
Description: Binary data


pgp2hwbwEbm0B.pgp
Description: PGP signature


Bug#453509: marked as done (doesn't start with gcj jvm)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 20:23:16 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#453509: doesn't start with gcj jvm
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: eclipse
Version: 3.2.2-4
Severity: grave

Hi,
I had problems launching eclipse. Every time I tried, the java process
was using up to 80% of the memory.

% eclipse -debug
searching for compatible vm...
  testing /usr/lib/jvm/java-gcj...found
Could not create /usr/local/lib/eclipse/.eclipseextension. Please run as
root:
touch /usr/local/lib/eclipse/.eclipseextension
chmod 2775 /usr/local/lib/eclipse/.eclipseextension
chown root:staff /usr/local/lib/eclipse/.eclipseextension
Start VM: /usr/lib/jvm/java-gcj/bin/java
-Djava.library.path=/usr/lib/jni
-Dgnu.gcj.precompiled.db.path=/var/lib/gcj-4.2/classmap.db
-Dgnu.gcj.runtime.VMClassLoader.library_control=never
-Dosgi.locking=none
-jar /usr/lib/eclipse/startup.jar
-os linux
-ws gtk
-arch x86_64
-launcher /usr/lib/eclipse/eclipse
-name Eclipse
-showsplash 600
-exitdata 228007
-install /usr/lib/eclipse
-debug
-vm /usr/lib/jvm/java-gcj/bin/java
-vmargs
-Djava.library.path=/usr/lib/jni
-Dgnu.gcj.precompiled.db.path=/var/lib/gcj-4.2/classmap.db
-Dgnu.gcj.runtime.VMClassLoader.library_control=never
-Dosgi.locking=none
-jar /usr/lib/eclipse/startup.jar
Install location:
file:/usr/lib/eclipse/
Configuration file:
file:/usr/lib/eclipse/configuration/config.ini loaded
Configuration location:
file:/home/nox/.eclipse/org.eclipse.platform_3.2.0/configuration/
Configuration file:
file:/home/nox/.eclipse/org.eclipse.platform_3.2.0/configuration/config.ini
not found or not read
Shared configuration location:
file:/usr/lib/eclipse/configuration/
Framework located:
file:/usr/lib/eclipse/plugins/org.eclipse.osgi_3.2.2.R32x_v20070118.jar
Framework classpath:
file:/usr/lib/eclipse/plugins/org.eclipse.osgi_3.2.2.R32x_v20070118.jar
Splash location:

/usr/lib/eclipse/plugins/org.eclipse.platform_3.2.2.r322_v20070117b/splash.bmp
runCommand:

/usr/lib/eclipse/eclipse-nameEclipse-showsplash600/usr/lib/eclipse/plugins/org.eclipse.platform_3.2.2.r322_v20070117b/splash.bmp
Debug options:
file:/home/nox/.options not found
Time to load bundles: 3
GC Warning: Out of Memory!  Returning NIL!


Then I tried with the sun jvm with this command :
% eclipse -debug -consolelog -vm /usr/lib/jvm/java-6-sun/bin/java
and it started correctly.

I don't know if it's eclipse that is involved or gcj but i didn't meet
any other problem with gcj so...

Thanks.

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages eclipse depends on:
ii  eclipse-jdt   3.2.2-4Java Development Tools plug-ins fo
ii  eclipse-pde   3.2.2-4Plug-in Development Environment to
ii  eclipse-source3.2.2-4Eclipse source code plug-ins
ii  zenity2.20.0-2   Display graphical dialog boxes fro

Versions of packages eclipse recommends:
ii  eclipse-gcj   3.2.2-4Native Eclipse run with GCJ

-- no debconf information


---End Message---
---BeginMessage---
On Fri, Nov 30, 2007 at 06:50:04PM +0100, NoX wrote:
 It's now running fine, thanks :)

Closing this bug then.

Thanks for your report.


Cheers,
Michael

---End Message---


Bug#452244: hplip: killall-is-dangerous

2007-11-30 Thread Mark Purcell
W: hplip: killall-is-dangerous preinst:31
N:
N:   The maintainer script seems to call killall. Since this utility kills
N:   processes by name, it may well end up killing unrelated processes.
N:   Most uses of killall should use start-stop-daemon instead.
N:


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


Processed: notfound 453118 in 2.2.11~dfsg1-3

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.26
 notfound 453118 2.2.11~dfsg1-3
Bug#453118: FTBFS: samples/simple/obj_linux_x86_n/simpleopal: error while 
loading shared libraries: libopal.so.2.2: cannot open shared object file: No 
such file or directory
Bug no longer marked as found in version 2.2.11~dfsg1-3.
(By the way, this Bug is currently marked as done.)


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: retitle 452408 to hplip: maintainer-script-calls-init-script-directly

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 retitle 452408 hplip: maintainer-script-calls-init-script-directly
Bug#452408: hplip: predepend on psmisc (?)
Changed Bug title to `hplip: maintainer-script-calls-init-script-directly' from 
`hplip: predepend on psmisc (?)'.


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: setting package to hpijs hpijs-ppds hplip hplip-data hplip-dbg hplip-doc hplip-gui, tagging 452408 ...

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 package hpijs hpijs-ppds hplip hplip-data hplip-dbg hplip-doc hplip-gui
Ignoring bugs not assigned to: hpijs-ppds hpijs hplip-data hplip-gui hplip-dbg 
hplip hplip-doc

 tags 452408 + pending
Bug#452408: hplip: maintainer-script-calls-init-script-directly
There were no tags set.
Tags added: pending

 tags 453361 + pending
Bug#453361: hplip: FTBFS on amd64/sid
There were no tags set.
Bug#453692: hplip: 2.7.10-3 fails to build from source
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#453361: marked as done (hplip: FTBFS on amd64/sid)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 01:02:07 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453361: fixed in hplip 2.7.10-4
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: hplip
Version: 2.7.10-3
Severity: serious
Justification: no longer builds from source

hplip FTBFS on amd64/sid.  According to buildd.debian.org:

dpkg-shlibdeps: failure: couldn't find library libhpip.so.0 (note: only 
packages with 'shlibs' files are looked into).
dh_shlibdeps: command returned error code 512
make: *** [binary-arch] Error 1
dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary-arch gave 
error exit status 2

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

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

Versions of packages hplip depends on:
ii  adduser 3.105add and remove users and groups
ii  coreutils   5.97-5.5 The GNU core utilities
ii  cupsys  1.3.4-1  Common UNIX Printing System(tm) - 
ii  hplip-data  2.7.10-3 HP Linux Printing and Imaging - da

ii  libc6   2.7-2GNU C Library: Shared libraries
ii  libcupsys2  1.3.4-1  Common UNIX Printing System(tm) - 
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libsane 1.0.19~cvs20071028-1 API library for scanners

ii  libsnmp15   5.4.1~dfsg-4 SNMP (Simple Network Management Pr
ii  libssl0.9.8 0.9.8g-3 SSL shared libraries
ii  libusb-0.1-42:0.1.12-8   userspace USB programming library
ii  lsb-base3.1-24   Linux Standard Base 3.1 init scrip
ii  python  2.4.4-6  An interactive high-level object-o
ii  python-support  0.7.5automated rebuilding support for p
ii  sysv-rc 2.86.ds1-38.1System-V-like runlevel change mech

Versions of packages hplip recommends:
ii  cupsys-client1.3.4-1 Common UNIX Printing System(tm) - 
ii  hpijs2.7.10+2.7.10-1 HP Linux Printing and Imaging - gs

ii  hpijs-ppds   2.7.10+2.7.10-1 HP Linux Printing and Imaging - HP
pn  hplip-guinone  (no description available)
pn  openprinting-ppdsnone  (no description available)
ii  python-reportlab 2.0dfsg-1   ReportLab library to create PDF do

-- no debconf information

--
brian m. carlson / brian with sandals: Houston, Texas, US
+1 713 440 7475 | http://crustytoothpaste.ath.cx/~bmc | My opinion only
a typesetting engine: http://crustytoothpaste.ath.cx/~bmc/code/thwack
OpenPGP: RSA v4 4096b 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: hplip
Source-Version: 2.7.10-4

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

hpijs-ppds_2.7.10+2.7.10-4_all.deb
  to pool/main/h/hplip/hpijs-ppds_2.7.10+2.7.10-4_all.deb
hpijs_2.7.10+2.7.10-4_i386.deb
  to pool/main/h/hplip/hpijs_2.7.10+2.7.10-4_i386.deb
hplip-data_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-data_2.7.10-4_all.deb
hplip-dbg_2.7.10-4_i386.deb
  to pool/main/h/hplip/hplip-dbg_2.7.10-4_i386.deb
hplip-doc_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-doc_2.7.10-4_all.deb
hplip-gui_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-gui_2.7.10-4_all.deb
hplip_2.7.10-4.diff.gz
  to pool/main/h/hplip/hplip_2.7.10-4.diff.gz
hplip_2.7.10-4.dsc
  to pool/main/h/hplip/hplip_2.7.10-4.dsc
hplip_2.7.10-4_i386.deb
  to pool/main/h/hplip/hplip_2.7.10-4_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.
Mark Purcell [EMAIL PROTECTED] (supplier of updated hplip 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 

Bug#452408: marked as done (hplip: killall-is-dangerous)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 01:02:07 +
with message-id [EMAIL PROTECTED]
and subject line Bug#452408: fixed in hplip 2.7.10-4
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: hplip
Version: 2.7.10-2
Severity: serious
Justification: undeclared preinstallation dependency
X-Debbugs-Cc: [EMAIL PROTECTED]

On Thu, Nov 22, 2007 at 05:28:15PM +0100, René Mérou wrote:
 El Wednesday 21 November 2007 21:06:34 Daniel Baumann escribió:
  Justin Pryzby wrote:
   IIRC d-l silently .. fixes it for
   you if it's not installed.
 
  yes
 
   I think maybe it should not.
 
  you're right, it's changed.

 Now i have one new : i cant create the iso
 
 http://pastebin.com/d4dff3a10

|Unpacking hplip (from .../hplip_2.7.10-2_i386.deb) ...
|/var/lib/dpkg/tmp.ci/preinst: line 31: killall: command not found
|dpkg: error processing /var/cache/apt/archives/hplip_2.7.10-2_i386.deb 
(--unpack):
| subprocess pre-installation script returned error exit status 127

This one is a package-specific bug.  hplip should either predepend on
psmisc or (preferably) find a different way of doing that using only
essential (?) packages (for example use of start-stop-daemon perhaps).

I don't know what dependencies are causing the inclusion of hplip in
your image, but you should somehow work around that package bug.


---End Message---
---BeginMessage---
Source: hplip
Source-Version: 2.7.10-4

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

hpijs-ppds_2.7.10+2.7.10-4_all.deb
  to pool/main/h/hplip/hpijs-ppds_2.7.10+2.7.10-4_all.deb
hpijs_2.7.10+2.7.10-4_i386.deb
  to pool/main/h/hplip/hpijs_2.7.10+2.7.10-4_i386.deb
hplip-data_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-data_2.7.10-4_all.deb
hplip-dbg_2.7.10-4_i386.deb
  to pool/main/h/hplip/hplip-dbg_2.7.10-4_i386.deb
hplip-doc_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-doc_2.7.10-4_all.deb
hplip-gui_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-gui_2.7.10-4_all.deb
hplip_2.7.10-4.diff.gz
  to pool/main/h/hplip/hplip_2.7.10-4.diff.gz
hplip_2.7.10-4.dsc
  to pool/main/h/hplip/hplip_2.7.10-4.dsc
hplip_2.7.10-4_i386.deb
  to pool/main/h/hplip/hplip_2.7.10-4_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.
Mark Purcell [EMAIL PROTECTED] (supplier of updated hplip 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, 01 Dec 2007 01:36:25 +0100
Source: hplip
Binary: hpijs hplip-data hpijs-ppds hplip hplip-doc hplip-gui hplip-dbg
Architecture: source i386 all
Version: 2.7.10-4
Distribution: unstable
Urgency: low
Maintainer: Debian HPIJS and HPLIP maintainers [EMAIL PROTECTED]
Changed-By: Mark Purcell [EMAIL PROTECTED]
Description: 
 hpijs  - HP Linux Printing and Imaging - gs IJS driver (hpijs)
 hpijs-ppds - HP Linux Printing and Imaging - HPIJS PPD files
 hplip  - HP Linux Printing and Imaging System (HPLIP)
 hplip-data - HP Linux Printing and Imaging - data files
 hplip-dbg  - HP Linux Printing and Imaging - debugging information
 hplip-doc  - HP Linux Printing and Imaging - documentation
 hplip-gui  - HP Linux Printing and Imaging - GUI utilities
Closes: 415048 452244 452408 453361
Changes: 
 hplip (2.7.10-4) unstable; urgency=low
 .
   * Extremadura release ;-)
 .
   * Provide debian/shlibs lintian: shlib-missing-in-control-file
 - FTBFS on amd64/sid (Closes: #453361)
   * Rewrite hplip.preinst to not call killall
 - predepend on psmisc (?) (Closes: #452408)
   * Switch hplip.{pre,post}inst to use update-rc.d  invoke-rc.d
 - maintainer-script-calls-init-script-directly (Closes: #452244)
   * Cleanup hplip.menu
 - please change default icon to /usr/share/pixmaps/HPmenu.xpm
 (Closes: #415048)
   * Remove Depends: sysv-rc
Files: 
 aae42cecaccef125fcf672de16533ce7 1201 utils optional hplip_2.7.10-4.dsc
 68be098d986152a3c12ccc708825c20f 69672 utils optional hplip_2.7.10-4.diff.gz
 9b0059e59e29de1fc3a29b7ad57805f5 508628 utils optional 
hpijs-ppds_2.7.10+2.7.10-4_all.deb
 f5f9ea5f007e6001240802449b29f56e 7002148 utils 

Bug#452408: hplip: killall-is-dangerous

2007-11-30 Thread Mark Purcell
W: hplip: killall-is-dangerous preinst:31
N:
N:   The maintainer script seems to call killall. Since this utility kills
N:   processes by name, it may well end up killing unrelated processes.
N:   Most uses of killall should use start-stop-daemon instead.
N:


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


Processed: retitle 452244 to hplip: maintainer-script-calls-init-script-directly

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 retitle 452244 hplip: maintainer-script-calls-init-script-directly
Bug#452244: hplip: depends on sysv-rc
Changed Bug title to `hplip: maintainer-script-calls-init-script-directly' from 
`hplip: depends on sysv-rc'.


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#425921: try again...

2007-11-30 Thread Filipe

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 425921 + moreinfo unreproducible
thanks

Hi,

I can't reproduce this bug. i think this is a old problem that was fixed
with changes in others packages that were uploaded to sid.

could you please try to reproduce it again in a up to date sid system?

Thanks,

filipe {
 @ icewall.org
 GPG1024D/A6BA423E
 Jabber  [EMAIL PROTECTED]
}
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHUL4HmKFbPqa6Qj4RAhpoAJ43YhjnJQvdFESU4DXGIBG3U9SH9wCfXmkZ
r6QTvoAiONTvRqPq0RFdp9E=
=Gwci
-END PGP SIGNATURE-




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



Bug#441668: patch

2007-11-30 Thread Filipe

tags 441668 + patch
thanks

Hello,

so, this issue is happening because postgresql in sid is now version
8.2, not 8.1 anymore. This package is failling to build because it
needs package postgresql-server-dev-8.2, not postgresql-server-dev-8.1.

This patch here changes version of package to 8.2 in debian/control and
also adds a patch to patch directory that adds an include to file
postgresql-pljava-1.3.0/src/C/pljava/XactListener.c, that is needed
because of postgresql version bump.

Cheers,

filipe {
 @ icewall.org
 GPG1024D/A6BA423E
 Jabber  [EMAIL PROTECTED]
}diff -Nru postgresql-pljava-1.3.0-old/debian/control postgresql-pljava-1.3.0/debian/control
--- postgresql-pljava-1.3.0-old/debian/control	2007-11-30 22:30:09.420939279 +
+++ postgresql-pljava-1.3.0/debian/control	2007-11-30 22:34:19.352937817 +
@@ -2,14 +2,14 @@
 Section: misc
 Priority: optional
 Maintainer: Peter Eisentraut [EMAIL PROTECTED]
-Build-Depends: cdbs (= 0.4.37), debhelper (= 5), fastjar, gcj (= 4:4.0.2-2), postgresql-server-dev-8.1, java-gcj-compat-dev
+Build-Depends: cdbs (= 0.4.37), debhelper (= 5), fastjar, gcj (= 4:4.0.2-2), postgresql-server-dev-8.2, java-gcj-compat-dev
 Standards-Version: 3.7.2
 
-Package: postgresql-8.1-pljava-gcj
+Package: postgresql-8.2-pljava-gcj
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-8.1
-Provides: postgresql-8.1-pljava
-Conflicts: postgresql-8.1-pljava
+Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-8.2
+Provides: postgresql-8.2-pljava
+Conflicts: postgresql-8.2-pljava
 Description: Java procedural language for PostgreSQL
  PL/Java is a loadable procedural language for the PostgreSQL database
  system that enables the use of the Java language for creating functions
diff -Nru postgresql-pljava-1.3.0-old/debian/patches/xact.patch postgresql-pljava-1.3.0/debian/patches/xact.patch
--- postgresql-pljava-1.3.0-old/debian/patches/xact.patch	1970-01-01 00:00:00.0 +
+++ postgresql-pljava-1.3.0/debian/patches/xact.patch	2007-11-30 22:25:53.672939209 +
@@ -0,0 +1,10 @@
+--- postgresql-pljava-1.3.0/src/C/pljava/XactListener.c-or	2007-11-30 22:23:36.872938884 +
 postgresql-pljava-1.3.0/src/C/pljava/XactListener.c	2007-11-30 22:18:08.416963873 +
+@@ -9,6 +9,7 @@
+ #include pljava/Backend.h
+ #include pljava/Exception.h
+ #include org_postgresql_pljava_internal_XactListener.h
++#include access/xact.h
+ 
+ #if ((PGSQL_MAJOR_VER == 8  PGSQL_MINOR_VER = 1) || PGSQL_MAJOR_VER  8)
+ #define HAS_2PC 1


Bug#448920: marked as done (ohphone depends on unavailable libpt-plugins-*)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 00:17:06 +
with message-id [EMAIL PROTECTED]
and subject line Bug#448920: fixed in ohphone 1:1.4.5+20060204-3
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: ohphone
Version: 1:1.4.5+20060204-2
Severity: serious

Hi

ohphone and ohphone-basic depend on and recommend unavailable
libpt-plugins-oss | libpt-plugins-alsa and similar...

Cheers

Luk


---End Message---
---BeginMessage---
Source: ohphone
Source-Version: 1:1.4.5+20060204-3

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

ohphone-basic_1.4.5+20060204-3_i386.deb
  to pool/main/o/ohphone/ohphone-basic_1.4.5+20060204-3_i386.deb
ohphone_1.4.5+20060204-3.diff.gz
  to pool/main/o/ohphone/ohphone_1.4.5+20060204-3.diff.gz
ohphone_1.4.5+20060204-3.dsc
  to pool/main/o/ohphone/ohphone_1.4.5+20060204-3.dsc
ohphone_1.4.5+20060204-3_i386.deb
  to pool/main/o/ohphone/ohphone_1.4.5+20060204-3_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.
Kilian Krause [EMAIL PROTECTED] (supplier of updated ohphone 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,  1 Dec 2007 00:57:02 +0100
Source: ohphone
Binary: ohphone-basic ohphone
Architecture: source i386
Version: 1:1.4.5+20060204-3
Distribution: unstable
Urgency: high
Maintainer: Debian VoIP Team [EMAIL PROTECTED]
Changed-By: Kilian Krause [EMAIL PROTECTED]
Description: 
 ohphone- Command line H.323 client with X, SVGA and SDL support
 ohphone-basic - Command line H.323 client with SDL support
Closes: 448920
Changes: 
 ohphone (1:1.4.5+20060204-3) unstable; urgency=high
 .
   * Don't ignore make clean errors.
   * Replace GnomeMeeting by Ekiga.
   * Add Homepage field as added in dpkg-dev 1.14.6.
   * Remove PWLib plugins from Depends and Recommends as they're pulled through
 libpt-1.10.10 anyway. (Closes: #448920)
   * Set high urgency for fixing RC bug to not hinder the current transitions
 more than neccessary.
Files: 
 4fa99a3885c3a754fc1853c7e9c60ea1 1108 comm optional 
ohphone_1.4.5+20060204-3.dsc
 444e4e01fbd7dc4281c76300da72d38b 10990 comm optional 
ohphone_1.4.5+20060204-3.diff.gz
 4becce46a0d76a050d6653fadc47958f 95654 comm optional 
ohphone_1.4.5+20060204-3_i386.deb
 060bfff0eea3e69c89e7a2567b23e811 92058 comm optional 
ohphone-basic_1.4.5+20060204-3_i386.deb

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

iD8DBQFHUKTFvdkzt4X+wX8RAskdAJ93AbW7NZv4WZafD5Lq14JqlXpPngCfSOcu
oxBL35ZaZqG99D28wQiNulo=
=V5Yq
-END PGP SIGNATURE-


---End Message---


Bug#453759: pidgin crash on closing with x on window frame

2007-11-30 Thread Arnfinn Ringvold
Package: pidgin
Version: 2.2.2-1
Severity: critical

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

System: Linux 2.6.22-2-686 #1 SMP Fri Aug 31 00:24:01 UTC 2007 i686
X Vendor: The X.Org Foundation
X Vendor Release: 1040
Selinux: No
Accessibility: Disabled
GTK+ Theme: Mist
Icon Theme: Mist

Memory status: size: 41807872 vsize: 41807872 resident: 24424448 share: 
15069184 rss: 24424448 rss_rlim: 4294967295
CPU usage: start_time: 1193299035 rtime: 2804 utime: 2630 stime: 174 cutime:32 
cstime: 40 timeout: 0 it_real_value: 0 frequency: 100

Backtrace was generated from '/usr/bin/pidgin'

Using host libthread_db library /lib/i686/cmov/libthread_db.so.1.
[Thread debugging using libthread_db enabled]
[New Thread 0xb70c1b10 (LWP 15166)]
0xe410 in __kernel_vsyscall ()
#0  0xe410 in __kernel_vsyscall ()
#1  0xb777d123 in __waitpid_nocancel () from /lib/i686/cmov/libpthread.so.0
#2  0xb780c724 in IA__g_spawn_sync (working_directory=0x0, argv=0x865a128, 
envp=0x0, flags=value optimized out, child_setup=0, user_data=0x0, 
standard_output=0x0, standard_error=0x0, exit_status=0x0, 
error=0xbfb6dc48) at /tmp/buildd/glib2.0-2.14.2/glib/gspawn.c:369
#3  0xb780ca3c in IA__g_spawn_command_line_sync (
command_line=0x86e3f80 bug-buddy --appname=\pidgin\ --pid=15166, 
standard_output=0x0, standard_error=0x0, exit_status=0x0, 
error=0xbfb6dc48) at /tmp/buildd/glib2.0-2.14.2/glib/gspawn.c:677
#4  0xb7f8e2f8 in ?? () from /usr/lib/gtk-2.0/modules/libgnomebreakpad.so
#5  signal handler called
#6  0xe410 in __kernel_vsyscall ()
#7  0xb76517f5 in raise () from /lib/i686/cmov/libc.so.6
#8  0xb7653181 in abort () from /lib/i686/cmov/libc.so.6
#9  0x080b916b in sighandler (sig=11) at ../../pidgin/gtkmain.c:208
#10 signal handler called
#11 0xb64048d0 in ?? ()
#12 0xb786795f in IA__g_cclosure_marshal_VOID__VOID (closure=0x87cc3b0, 
return_value=0x0, n_param_values=1, param_values=0xbfb706b4, 
invocation_hint=0xbfb705bc, marshal_data=0xb64048d0)
at /tmp/buildd/glib2.0-2.14.2/gobject/gmarshal.c:77
#13 0xb785a619 in IA__g_closure_invoke (closure=0x87cc3b0, return_value=0x0, 
n_param_values=1, param_values=0xbfb706b4, invocation_hint=0xbfb705bc)
at /tmp/buildd/glib2.0-2.14.2/gobject/gclosure.c:490
#14 0xb786ee0f in signal_emit_unlocked_R (node=0x825df30, detail=0, 
instance=0x82638d0, emission_return=0x0, instance_and_params=0xbfb706b4)
at /tmp/buildd/glib2.0-2.14.2/gobject/gsignal.c:2440
#15 0xb7870a5f in IA__g_signal_emit_valist (instance=0xbfb706b4, 
signal_id=24, detail=0, 
var_args=0xbfb708ec *BÚ·|=ê·Ð8\b\030\t·¿\221LÚ·Ð8\b)
at /tmp/buildd/glib2.0-2.14.2/gobject/gsignal.c:2199
#16 0xb7870da9 in IA__g_signal_emit (instance=0x82638d0, signal_id=24, 
detail=0) at /tmp/buildd/glib2.0-2.14.2/gobject/gsignal.c:2243
#17 0xb7c9f611 in gtk_object_dispose (gobject=0x82638d0)
at /tmp/buildd/gtk+2.0-2.12.1/gtk/gtkobject.c:418
#18 0xb7da4c91 in gtk_widget_dispose (object=0x82638d0)
at /tmp/buildd/gtk+2.0-2.12.1/gtk/gtkwidget.c:7851
#19 0xb7db1606 in gtk_window_dispose (object=0x82638d0)
at /tmp/buildd/gtk+2.0-2.12.1/gtk/gtkwindow.c:1968
#20 0xb785cc30 in IA__g_object_run_dispose (object=0x82638d0)
at /tmp/buildd/glib2.0-2.14.2/gobject/gobject.c:573
#21 0xb7c9f31e in IA__gtk_object_destroy (object=0x82638d0)
at /tmp/buildd/gtk+2.0-2.12.1/gtk/gtkobject.c:403
#22 0x08086da2 in pidgin_conv_window_destroy (win=0x826f668)
at ../../pidgin/gtkconv.c:8786
#23 0x0808c6ca in pidgin_conversations_uninit ()
at ../../pidgin/gtkconv.c:7641
#24 0x080b82d5 in pidgin_quit () at ../../pidgin/gtkmain.c:334
#25 0xb78ced12 in purple_core_quit () at ../../libpurple/core.c:213
#26 0x080770e7 in gtk_blist_delete_cb (w=0x8263cf0, event=0x880f5b0, data=0x0)
at ../../pidgin/gtkblist.c:231
#27 0xb7c7e9c4 in _gtk_marshal_BOOLEAN__BOXED (closure=0x830c878, 
return_value=0xbfb70c10, n_param_values=2, param_values=0xbfb70cf4, 
invocation_hint=0xbfb70bfc, marshal_data=0x80770c0)
at /tmp/buildd/gtk+2.0-2.12.1/gtk/gtkmarshalers.c:84
#28 0xb785a619 in IA__g_closure_invoke (closure=0x830c878, 
return_value=0xbfb70c10, n_param_values=2, param_values=0xbfb70cf4, 
invocation_hint=0xbfb70bfc)
at /tmp/buildd/glib2.0-2.14.2/gobject/gclosure.c:490
#29 0xb786ee0f in signal_emit_unlocked_R (node=0x81aca58, detail=0, 
instance=0x8263cf0, emission_return=0xbfb70eb4, 
instance_and_params=0xbfb70cf4)
at /tmp/buildd/glib2.0-2.14.2/gobject/gsignal.c:2440
#30 0xb7870787 in IA__g_signal_emit_valist (instance=0x8263cf0, signal_id=52, 
detail=0, var_args=0xbfb70f30 H\017·¿°õ\200\bð\b¯\031Ú·ð\bø\034\b)
at /tmp/buildd/glib2.0-2.14.2/gobject/gsignal.c:2209
#31 0xb7870da9 in IA__g_signal_emit (instance=0x8263cf0, signal_id=52, 
detail=0) at /tmp/buildd/glib2.0-2.14.2/gobject/gsignal.c:2243
#32 0xb7d9cb67 in gtk_widget_event_internal (widget=0x8263cf0, 
event=0x880f5b0) at /tmp/buildd/gtk+2.0-2.12.1/gtk/gtkwidget.c:4675
#33 0xb7c790a4 in 

Bug#453767: no longer starts after python-gst0.10 upgrade

2007-11-30 Thread Ari Pollak
Package: quodlibet
Version: 1.0-1
Severity: grave

quodlibet no longer starts after upgrading python-gst0.10. It fails with
lots of errors like this:
Traceback (most recent call last):
  File /usr/share/quodlibet/formats/__init__.py, line 22, in ?
try: format = __import__(name, {}, {}, self)
  File /usr/share/quodlibet/formats/xiph.py, line 131, in ?
if gst.registry_get_default().find_plugin(plugin) is not None:
AttributeError: 'module' object has no attribute 'registry_get_default'


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

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

Versions of packages quodlibet depends on:
ii  exfalso   1.0-1  audio tag editor for GTK+
ii  gstreamer0.10-plugins-base0.10.15-2  GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good0.10.6-4   GStreamer plugins from the good 
ii  gstreamer0.10-plugins-ugly0.10.6-3   GStreamer plugins from the ugly 
ii  python2.4.4-6An interactive high-level object-o
ii  python-central0.5.15 register and build utility for Pyt
ii  python-gst0.100.10.9-2   generic media-playing framework (P

Versions of packages quodlibet recommends:
ii  gstreamer0.10-alsa0.10.15-2  GStreamer plugin for ALSA
ii  gstreamer0.10-gnomevfs0.10.15-2  GStreamer plugin for GnomeVFS
ii  python-feedparser 4.1-9  Universal Feed Parser for Python
ii  quodlibet-ext 1.0-1  extensions for the Quod Libet audi

-- no debconf information



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



Processed: your mail

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 retitle 453767 Missing methods break normal programs
Bug#453767: no longer starts after python-gst0.10 upgrade
Changed Bug title to `Missing methods break normal programs' from `no longer 
starts after python-gst0.10 upgrade'.

 reassign 453767 python-gst0.10
Bug#453767: Missing methods break normal programs
Bug reassigned from package `quodlibet' to `python-gst0.10'.

 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: patch

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 441668 + patch
Bug#441668: postgresql-pljava: FTBFS: 
/build/user/postgresql-pljava-1.3.0/src/C/pljava/Makefile:27: 
/usr/lib/postgresql/8.2/lib/pgxs/src/makefiles/pgxs.mk: No such file or 
directory
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]



Processed: your mail

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 forcemerge 446759 453759
Bug#446759: pidgin: Crashes on shutdown
Bug#453759: pidgin crash on closing with x on window frame
Forcibly Merged 446759 453759.

 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#453692: marked as done (hplip: 2.7.10-3 fails to build from source)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 01:02:07 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453361: fixed in hplip 2.7.10-4
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: hpijs
Version: 2.7.10-3
Severity: serious
Justification: no longer builds from source

hello,

according to http://buildd.debian.org/build.cgi?pkg=hplip;ver=2.7.10-3
the package does not build from source on any of the architectures.

that results in a new hpijs-ppds package being available on the mirrors,
but being uninstallable as the required hpijs binary package is not
built.

greetings,
 jonas

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

Kernel: Linux 2.6.22-6-amd64-resivo
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages hpijs depends on:
ii  ghostscript [gs- 8.61.dfsg.1~svn8187-2.1 The GPL Ghostscript PostScript/PDF
ii  gs-gpl   8.61.dfsg.1~svn8187-2.1 Transitional package
ii  libc62.7-3   GNU C Library: Shared libraries
ii  libgcc1  1:4.2.2-4   GCC support library
ii  libjpeg626b-14   The Independent JPEG Group's JPEG 
ii  libsnmp155.4.1~dfsg-4SNMP (Simple Network Management Pr
ii  libssl0.9.8  0.9.8g-3SSL shared libraries
ii  libstdc++6   4.2.2-4 The GNU Standard C++ Library v3
ii  libusb-0.1-4 2:0.1.12-8  userspace USB programming library

hpijs recommends no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: hplip
Source-Version: 2.7.10-4

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

hpijs-ppds_2.7.10+2.7.10-4_all.deb
  to pool/main/h/hplip/hpijs-ppds_2.7.10+2.7.10-4_all.deb
hpijs_2.7.10+2.7.10-4_i386.deb
  to pool/main/h/hplip/hpijs_2.7.10+2.7.10-4_i386.deb
hplip-data_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-data_2.7.10-4_all.deb
hplip-dbg_2.7.10-4_i386.deb
  to pool/main/h/hplip/hplip-dbg_2.7.10-4_i386.deb
hplip-doc_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-doc_2.7.10-4_all.deb
hplip-gui_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-gui_2.7.10-4_all.deb
hplip_2.7.10-4.diff.gz
  to pool/main/h/hplip/hplip_2.7.10-4.diff.gz
hplip_2.7.10-4.dsc
  to pool/main/h/hplip/hplip_2.7.10-4.dsc
hplip_2.7.10-4_i386.deb
  to pool/main/h/hplip/hplip_2.7.10-4_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.
Mark Purcell [EMAIL PROTECTED] (supplier of updated hplip 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, 01 Dec 2007 01:36:25 +0100
Source: hplip
Binary: hpijs hplip-data hpijs-ppds hplip hplip-doc hplip-gui hplip-dbg
Architecture: source i386 all
Version: 2.7.10-4
Distribution: unstable
Urgency: low
Maintainer: Debian HPIJS and HPLIP maintainers [EMAIL PROTECTED]
Changed-By: Mark Purcell [EMAIL PROTECTED]
Description: 
 hpijs  - HP Linux Printing and Imaging - gs IJS driver (hpijs)
 hpijs-ppds - HP Linux Printing and Imaging - HPIJS PPD files
 hplip  - HP Linux Printing and Imaging System (HPLIP)
 hplip-data - HP Linux Printing and Imaging - data files
 hplip-dbg  - HP Linux Printing and Imaging - debugging information
 hplip-doc  - HP Linux Printing and Imaging - documentation
 hplip-gui  - HP Linux Printing and Imaging - GUI utilities
Closes: 415048 452244 452408 453361
Changes: 
 hplip (2.7.10-4) unstable; urgency=low
 .
   * Extremadura release ;-)
 .
   * Provide debian/shlibs lintian: shlib-missing-in-control-file
 - FTBFS on amd64/sid (Closes: #453361)
   * Rewrite hplip.preinst to not call killall
 - predepend on psmisc (?) (Closes: #452408)
   * Switch hplip.{pre,post}inst to use update-rc.d  invoke-rc.d
 - maintainer-script-calls-init-script-directly (Closes: #452244)
   * Cleanup hplip.menu
 - please change default icon to /usr/share/pixmaps/HPmenu.xpm
 

Bug#452244: marked as done (hplip: maintainer-script-calls-init-script-directly)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 01:02:07 +
with message-id [EMAIL PROTECTED]
and subject line Bug#452244: fixed in hplip 2.7.10-4
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: hplip
Version: 2.7.10-2
Severity: normal

hplip depends on sysv-rc. It is therefore not installable in systems with
a different boot method (like file-rc).

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

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to
de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash
---End Message---
---BeginMessage---
Source: hplip
Source-Version: 2.7.10-4

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

hpijs-ppds_2.7.10+2.7.10-4_all.deb
  to pool/main/h/hplip/hpijs-ppds_2.7.10+2.7.10-4_all.deb
hpijs_2.7.10+2.7.10-4_i386.deb
  to pool/main/h/hplip/hpijs_2.7.10+2.7.10-4_i386.deb
hplip-data_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-data_2.7.10-4_all.deb
hplip-dbg_2.7.10-4_i386.deb
  to pool/main/h/hplip/hplip-dbg_2.7.10-4_i386.deb
hplip-doc_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-doc_2.7.10-4_all.deb
hplip-gui_2.7.10-4_all.deb
  to pool/main/h/hplip/hplip-gui_2.7.10-4_all.deb
hplip_2.7.10-4.diff.gz
  to pool/main/h/hplip/hplip_2.7.10-4.diff.gz
hplip_2.7.10-4.dsc
  to pool/main/h/hplip/hplip_2.7.10-4.dsc
hplip_2.7.10-4_i386.deb
  to pool/main/h/hplip/hplip_2.7.10-4_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.
Mark Purcell [EMAIL PROTECTED] (supplier of updated hplip 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, 01 Dec 2007 01:36:25 +0100
Source: hplip
Binary: hpijs hplip-data hpijs-ppds hplip hplip-doc hplip-gui hplip-dbg
Architecture: source i386 all
Version: 2.7.10-4
Distribution: unstable
Urgency: low
Maintainer: Debian HPIJS and HPLIP maintainers [EMAIL PROTECTED]
Changed-By: Mark Purcell [EMAIL PROTECTED]
Description: 
 hpijs  - HP Linux Printing and Imaging - gs IJS driver (hpijs)
 hpijs-ppds - HP Linux Printing and Imaging - HPIJS PPD files
 hplip  - HP Linux Printing and Imaging System (HPLIP)
 hplip-data - HP Linux Printing and Imaging - data files
 hplip-dbg  - HP Linux Printing and Imaging - debugging information
 hplip-doc  - HP Linux Printing and Imaging - documentation
 hplip-gui  - HP Linux Printing and Imaging - GUI utilities
Closes: 415048 452244 452408 453361
Changes: 
 hplip (2.7.10-4) unstable; urgency=low
 .
   * Extremadura release ;-)
 .
   * Provide debian/shlibs lintian: shlib-missing-in-control-file
 - FTBFS on amd64/sid (Closes: #453361)
   * Rewrite hplip.preinst to not call killall
 - predepend on psmisc (?) (Closes: #452408)
   * Switch hplip.{pre,post}inst to use update-rc.d  invoke-rc.d
 - maintainer-script-calls-init-script-directly (Closes: #452244)
   * Cleanup hplip.menu
 - please change default icon to /usr/share/pixmaps/HPmenu.xpm
 (Closes: #415048)
   * Remove Depends: sysv-rc
Files: 
 aae42cecaccef125fcf672de16533ce7 1201 utils optional hplip_2.7.10-4.dsc
 68be098d986152a3c12ccc708825c20f 69672 utils optional hplip_2.7.10-4.diff.gz
 9b0059e59e29de1fc3a29b7ad57805f5 508628 utils optional 
hpijs-ppds_2.7.10+2.7.10-4_all.deb
 f5f9ea5f007e6001240802449b29f56e 7002148 utils optional 
hplip-data_2.7.10-4_all.deb
 14a91cddd7b8cf5db6b970895be36ecd 122434 utils optional 
hplip-gui_2.7.10-4_all.deb
 547be3b06b173ebe4b373542d1752e68 4162270 doc optional 
hplip-doc_2.7.10-4_all.deb
 0de5d113d804867352c2a0fbe8ffb436 341864 text optional 
hpijs_2.7.10+2.7.10-4_i386.deb
 d8c016bce2c20c1dd7bc5d6a2da5fae1 293524 utils optional hplip_2.7.10-4_i386.deb
 62a2ec1dbb6136506aabaeccdf2c50d6 768280 utils extra hplip-dbg_2.7.10-4_i386.deb

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

iD8DBQFHUK7ZoCzanz0IthIRAj4HAKCLL4dpggPb406J1cpIBrFsiYQZagCfaeZ2
xamdy+MKUPN16/hKWxXaLpA=
=xrwf
-END PGP 

Bug#453307: marked as done (t-code: lintian error and warnings)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 02:32:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453307: fixed in t-code 2:2.3.1-2.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: t-code
Version: 2:2.3.1-2
Severity: serious

lintian displays the following error and warnings for this package.


Now running lintian...
W: t-code source: debian-rules-sets-DH_COMPAT line 9
W: t-code source: debian-rules-ignores-make-clean-error line 47
W: t-code source: package-uses-deprecated-debhelper-compat-version 3
W: t-code source: ancient-standards-version 3.5.8 (current is 3.7.2)
E: t-code source: clean-should-be-satisfied-by-build-depends debhelper
W: t-code: old-fsf-address-in-copyright-file
Finished running lintian.


I'll prepare a patch to fix this bug soon.

Thanks,
--
Tatsuya Kinoshita


pgpLG0ZFSKDZG.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Source: t-code
Source-Version: 2:2.3.1-2.1

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

t-code_2.3.1-2.1.diff.gz
  to pool/main/t/t-code/t-code_2.3.1-2.1.diff.gz
t-code_2.3.1-2.1.dsc
  to pool/main/t/t-code/t-code_2.3.1-2.1.dsc
t-code_2.3.1-2.1_all.deb
  to pool/main/t/t-code/t-code_2.3.1-2.1_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.
Tatsuya Kinoshita [EMAIL PROTECTED] (supplier of updated t-code 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, 01 Dec 2007 07:19:58 +0900
Source: t-code
Binary: t-code
Architecture: source all
Version: 2:2.3.1-2.1
Distribution: unstable
Urgency: low
Maintainer: NOSHIRO Shigeo [EMAIL PROTECTED]
Changed-By: Tatsuya Kinoshita [EMAIL PROTECTED]
Description: 
 t-code - T-Code Japanese input environment for emacsen
Closes: 433982 438530 438531 438532 438533 438534 453307 453427 453458
Changes: 
 t-code (2:2.3.1-2.1) unstable; urgency=low
 .
   * Non-maintainer upload, complied with the maintainer's request,
 closes: Bug#453458
   * Fix lintian error and warnings, closes: Bug#453307
 - Move debhelper from Build-Depends-Indep to Build-Depends.
 - Bump up debhelper version to 5.
 - Don't use DH_COMPAT in debian/rules, use debian/compat instead.
 - Don't ignore an error of make distclean in debian/rules.
 - Update FSF address in debian/copyright.
 - Bump up Standerd-Version to 3.7.2.
   * debian/rules:
 - Fix FTBFS when /bin/sh is dash, closes: Bug#438531
 - Use binary-indep instead of binary-arch, closes: Bug#438530
   * debian/emacsen-startup:
 - Use debian-pkg-add-load-path-item to set load-path, closes: Bug438532
 - Fix that startup fails if package is removed but not purged,
   closes: Bug#438533
   * debian/control:
 - Prefer emacs and emacs22, closes: Bug#433982
 - Revise description to mention tc2, emacsen and the upstream site,
   closes: Bug#453427
   * debian/emacsen-install: Create symlinks for *.el files, rather than
 copying *.el files and then removing them, closes: Bug#438534
Files: 
 c0468e707f3bf21fd3571b626b0220f5 675 utils optional t-code_2.3.1-2.1.dsc
 139ec2c60aa5dbeb558bc0528746fa32 114927 utils optional t-code_2.3.1-2.1.diff.gz
 2dd8a0e24b8cef81ee7a1e84904a1cfd 1258932 utils optional 
t-code_2.3.1-2.1_all.deb

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

iD8DBQFHUIzygV4LPvpMUpgRAo9DAKCiD4FkmqNwpXmpfEP6/44eA7iCGACfbg5h
FaPN+93e5zLb8d31ov+Cb2c=
=i9us
-END PGP SIGNATURE-


---End Message---


Bug#438530: marked as done (t-code: debian/rules doesn't work at binary-indep)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 02:32:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#438530: fixed in t-code 2:2.3.1-2.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: t-code
Version: 2:2.3.1-2
Severity: serious

The t-code package is `Architecture: all', but the binary-indep
target in debian/rules doesn't work.  Please use the binary-indep
target instead of the binary-arch target.

Thanks,
--
Tatsuya Kinoshita


pgpkYXiOQTPir.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Source: t-code
Source-Version: 2:2.3.1-2.1

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

t-code_2.3.1-2.1.diff.gz
  to pool/main/t/t-code/t-code_2.3.1-2.1.diff.gz
t-code_2.3.1-2.1.dsc
  to pool/main/t/t-code/t-code_2.3.1-2.1.dsc
t-code_2.3.1-2.1_all.deb
  to pool/main/t/t-code/t-code_2.3.1-2.1_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.
Tatsuya Kinoshita [EMAIL PROTECTED] (supplier of updated t-code 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, 01 Dec 2007 07:19:58 +0900
Source: t-code
Binary: t-code
Architecture: source all
Version: 2:2.3.1-2.1
Distribution: unstable
Urgency: low
Maintainer: NOSHIRO Shigeo [EMAIL PROTECTED]
Changed-By: Tatsuya Kinoshita [EMAIL PROTECTED]
Description: 
 t-code - T-Code Japanese input environment for emacsen
Closes: 433982 438530 438531 438532 438533 438534 453307 453427 453458
Changes: 
 t-code (2:2.3.1-2.1) unstable; urgency=low
 .
   * Non-maintainer upload, complied with the maintainer's request,
 closes: Bug#453458
   * Fix lintian error and warnings, closes: Bug#453307
 - Move debhelper from Build-Depends-Indep to Build-Depends.
 - Bump up debhelper version to 5.
 - Don't use DH_COMPAT in debian/rules, use debian/compat instead.
 - Don't ignore an error of make distclean in debian/rules.
 - Update FSF address in debian/copyright.
 - Bump up Standerd-Version to 3.7.2.
   * debian/rules:
 - Fix FTBFS when /bin/sh is dash, closes: Bug#438531
 - Use binary-indep instead of binary-arch, closes: Bug#438530
   * debian/emacsen-startup:
 - Use debian-pkg-add-load-path-item to set load-path, closes: Bug438532
 - Fix that startup fails if package is removed but not purged,
   closes: Bug#438533
   * debian/control:
 - Prefer emacs and emacs22, closes: Bug#433982
 - Revise description to mention tc2, emacsen and the upstream site,
   closes: Bug#453427
   * debian/emacsen-install: Create symlinks for *.el files, rather than
 copying *.el files and then removing them, closes: Bug#438534
Files: 
 c0468e707f3bf21fd3571b626b0220f5 675 utils optional t-code_2.3.1-2.1.dsc
 139ec2c60aa5dbeb558bc0528746fa32 114927 utils optional t-code_2.3.1-2.1.diff.gz
 2dd8a0e24b8cef81ee7a1e84904a1cfd 1258932 utils optional 
t-code_2.3.1-2.1_all.deb

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

iD8DBQFHUIzygV4LPvpMUpgRAo9DAKCiD4FkmqNwpXmpfEP6/44eA7iCGACfbg5h
FaPN+93e5zLb8d31ov+Cb2c=
=i9us
-END PGP SIGNATURE-


---End Message---


Bug#453759:

2007-11-30 Thread Ari Pollak
forcemerge 446759 453759
thanks

I'll ask you the same thing I asked the other bug submitter from which I
never got a response:

Could you try unloading all of the plugins and see if it still crashes? If
it no longer crashes, try loading each of them individually until you see
the crash.




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



Bug#453756: git-core should depend on curl

2007-11-30 Thread R. Lemos
Package: git-core
Version: 1:1.5.3.4-1
Severity: grave
Justification: renders package unusable

I've installed git-core and tried to clone a repository

  yyy$ git clone xxx
  Initialized empty Git repository in /yyy/xxx
  /usr/bin/git-clone: line 37: curl: command not found

After installing curl, everything started working.


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

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

Versions of packages git-core depends on:
ii  cpio2.9-6GNU cpio -- a program to manage ar
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libcurl3-gnutls 7.17.1-1 Multi-protocol file transfer libra
ii  libdigest-sha1-perl 2.11-2   NIST SHA-1 message digest algorith
ii  liberror-perl   0.15-8   Perl module for error/exception ha
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  perl-modules5.8.8-12 Core Perl modules
ii  zlib1g  1:1.2.3.3.dfsg-6 compression library - runtime

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

-- no debconf information



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



Bug#438531: marked as done (t-code: FTBFS when /bin/sh is dash)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 02:32:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#438531: fixed in t-code 2:2.3.1-2.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: t-code
Version: 2:2.3.1-2
Severity: serious

The t-code package cannot be built when /bin/sh is dash
because of using the brace expansion feature, as follows:


[...]
install -m 644 lisp/*.el \

/home/tats/tmp/t-code/t-code-2.3.1/debian/t-code/usr/share/emacs/site-lisp/t-code
install -m 644 kinput2/{README,tc-ki2.el,ccdef.tcode} \

/home/tats/tmp/t-code/t-code-2.3.1/debian/t-code/usr/share/doc/t-code/kinput2
install: cannot stat `kinput2/{README,tc-ki2.el,ccdef.tcode}': No such file or 
directory
make: *** [install] Error 1
debuild: fatal error at line 1228:
fakeroot debian/rules binary failed


Thanks,
--
Tatsuya Kinoshita


pgpiQ3Xvx460r.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Source: t-code
Source-Version: 2:2.3.1-2.1

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

t-code_2.3.1-2.1.diff.gz
  to pool/main/t/t-code/t-code_2.3.1-2.1.diff.gz
t-code_2.3.1-2.1.dsc
  to pool/main/t/t-code/t-code_2.3.1-2.1.dsc
t-code_2.3.1-2.1_all.deb
  to pool/main/t/t-code/t-code_2.3.1-2.1_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.
Tatsuya Kinoshita [EMAIL PROTECTED] (supplier of updated t-code 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, 01 Dec 2007 07:19:58 +0900
Source: t-code
Binary: t-code
Architecture: source all
Version: 2:2.3.1-2.1
Distribution: unstable
Urgency: low
Maintainer: NOSHIRO Shigeo [EMAIL PROTECTED]
Changed-By: Tatsuya Kinoshita [EMAIL PROTECTED]
Description: 
 t-code - T-Code Japanese input environment for emacsen
Closes: 433982 438530 438531 438532 438533 438534 453307 453427 453458
Changes: 
 t-code (2:2.3.1-2.1) unstable; urgency=low
 .
   * Non-maintainer upload, complied with the maintainer's request,
 closes: Bug#453458
   * Fix lintian error and warnings, closes: Bug#453307
 - Move debhelper from Build-Depends-Indep to Build-Depends.
 - Bump up debhelper version to 5.
 - Don't use DH_COMPAT in debian/rules, use debian/compat instead.
 - Don't ignore an error of make distclean in debian/rules.
 - Update FSF address in debian/copyright.
 - Bump up Standerd-Version to 3.7.2.
   * debian/rules:
 - Fix FTBFS when /bin/sh is dash, closes: Bug#438531
 - Use binary-indep instead of binary-arch, closes: Bug#438530
   * debian/emacsen-startup:
 - Use debian-pkg-add-load-path-item to set load-path, closes: Bug438532
 - Fix that startup fails if package is removed but not purged,
   closes: Bug#438533
   * debian/control:
 - Prefer emacs and emacs22, closes: Bug#433982
 - Revise description to mention tc2, emacsen and the upstream site,
   closes: Bug#453427
   * debian/emacsen-install: Create symlinks for *.el files, rather than
 copying *.el files and then removing them, closes: Bug#438534
Files: 
 c0468e707f3bf21fd3571b626b0220f5 675 utils optional t-code_2.3.1-2.1.dsc
 139ec2c60aa5dbeb558bc0528746fa32 114927 utils optional t-code_2.3.1-2.1.diff.gz
 2dd8a0e24b8cef81ee7a1e84904a1cfd 1258932 utils optional 
t-code_2.3.1-2.1_all.deb

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

iD8DBQFHUIzygV4LPvpMUpgRAo9DAKCiD4FkmqNwpXmpfEP6/44eA7iCGACfbg5h
FaPN+93e5zLb8d31ov+Cb2c=
=i9us
-END PGP SIGNATURE-


---End Message---


Processed: retitle 452408 to hplip: killall-is-dangerous

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 retitle 452408 hplip: killall-is-dangerous
Bug#452408: hplip: maintainer-script-calls-init-script-directly
Changed Bug title to `hplip: killall-is-dangerous' from `hplip: 
maintainer-script-calls-init-script-directly'.


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: setting package to hpijs hpijs-ppds hplip hplip-data hplip-dbg hplip-doc hplip-gui, tagging 452244

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 package hpijs hpijs-ppds hplip hplip-data hplip-dbg hplip-doc hplip-gui
Ignoring bugs not assigned to: hpijs-ppds hpijs hplip-data hplip-gui hplip-dbg 
hplip hplip-doc

 tags 452244 + pending
Bug#452244: hplip: maintainer-script-calls-init-script-directly
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]



Processed: merging 453692 453361

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 merge 453692 453361
Bug#453361: hplip: FTBFS on amd64/sid
Bug#453692: hplip: 2.7.10-3 fails to build from source
Merged 453361 453692.


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#453361: hplip: FTBFS dpkg-shlibs

2007-11-30 Thread Mark Purcell
Thanks for your reports.

As you are aware we are just introducing the new upstream hplip, at the same 
time as dpkg-dev updated the rules for dpkg-shlibs, and that is responsible 
for the issues you can see.

We initially uploaded to experimental, which did build correctly across the 
buildds, but then the new dpkg-dev caused problems.

Fortunately a debian/shlibs is what is required and I hope to have that 
uploaded shortly.

Mark


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


Processed: closing 409673

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.26
 close 409673 2.01-1
Bug#409673: FTBFS with GCC 4.2: C/C++ linkage declarations conflict
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 2.01-1, send any further explanations to Martin 
Michlmayr [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]



Processed: reassign 453692 to hplip

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 reassign 453692 hplip
Bug#453692: hplip: 2.7.10-3 fails to build from source
Bug reassigned from package `hpijs' to `hplip'.


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#453745: new upstream needed to work with mpd, double free bug

2007-11-30 Thread Joey Hess
Package: libvorbisidec1
Version: 1.0.2+svn12153-1
Severity: serious

I built mpd --with-tremor, so I could use it on my nslu2, but playing oggs
crashes like this, on both i386 and arm:

*** glibc detected *** ./mpd: double free or corruption (!prev): 0x080cb980 ***
=== Backtrace: =
/lib/i686/cmov/libc.so.6[0xb7bc5765]
/lib/i686/cmov/libc.so.6(cfree+0x90)[0xb7bc91e0]
/usr/lib/libogg.so.0(ogg_stream_destroy+0x2e)[0xb7d6f61e]
/usr/lib/libvorbisidec.so.1(ov_clear+0x43)[0xb7cb3903]
/usr/lib/libvorbisidec.so.1[0xb7cb4175]
/usr/lib/libvorbisidec.so.1(ov_open_callbacks+0x39)[0xb7cb4269]
./mpd[0x8051059]
./mpd[0x805c926]
./mpd[0x80682a3]
./mpd[0x8068444]
./mpd[0x8069f9d]
./mpd[0x805a108]
./mpd[0x8057cd8]
./mpd[0x8062431]
./mpd[0x8065215]
/lib/i686/cmov/libc.so.6(__libc_start_main+0xe0)[0xb7b70450]
./mpd[0x804e121]

I built a svn trunk snapshot (r14253), and that works ok. Please upgrade.

Looking at the diff, the change to when _ogg_free() is called in
framing.c looks like a likely candidate for fixing a double free
problem. Or is it the guards added to calls free_info() in info.c?
I haven't checked..

(I'd be glad to sponsor an upload if you need one.)

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

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

Versions of packages libvorbisidec1 depends on:
ii  libc6 2.7-1  GNU C Library: Shared libraries

libvorbisidec1 recommends no packages.

-- no debconf information

ii  mpd0.13.0-2   Music Player Daemon

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#432665: fixed in 0.7.1-1

2007-11-30 Thread Raphael Champeimont (Almacha)
This was wxMaxima bug #1573741.
It is now fixed in the last version of wxmaxima in unstable
(wxmaxima_0.7.1-1).



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



Bug#453180: marked as done (plone-site: The package doesn't install at all: no instance created.)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 21:32:04 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453180: fixed in zope-debhelper 0.3.11
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: plone-site
Version: 2.5.2-2
Severity: important


Hello,

The package 'plone-site' doesn't install at all: no instance created.
Even 'dpkg-reconfigure plone-site' does not help: still no instance.

Here is the output of dpkg-reconfigure:

BEGIN of program output:

maison-portable:~# dpkg-reconfigure plone-site
dzhandle zopectl: unknown instance `plone-site'
dzhandle remove-product: unknown instance `plone-site'
dzhandle make-instance: service user must be specified as user:group
maison-portable:~# 

END of program output.

In hope this is usefull.

Sincerely,
Le Testeur

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

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

Versions of packages plone-site depends on:
ii  debconf [debconf-2.0] 1.5.16 Debian configuration management sy
ii  zope-cmfplone 2.5.2-2content management system based on
ii  zope-common   0.5.37 common settings and scripts for zo
ii  zope2.9   2.9.7-3Open Source Web Application Server

plone-site recommends no packages.

-- debconf information:
  plone-site/internal:
* plone-site/instance-http-port: 8081
* plone-site/keep-data-on-purge: true
* plone-site/admin-user: admin



---End Message---
---BeginMessage---
Source: zope-debhelper
Source-Version: 0.3.11

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

zope-debhelper_0.3.11.dsc
  to pool/main/z/zope-debhelper/zope-debhelper_0.3.11.dsc
zope-debhelper_0.3.11.tar.gz
  to pool/main/z/zope-debhelper/zope-debhelper_0.3.11.tar.gz
zope-debhelper_0.3.11_all.deb
  to pool/main/z/zope-debhelper/zope-debhelper_0.3.11_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.
Fabio Tranchitella [EMAIL PROTECTED] (supplier of updated zope-debhelper 
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, 30 Nov 2007 18:20:23 +0100
Source: zope-debhelper
Binary: zope-debhelper
Architecture: source all
Version: 0.3.11
Distribution: unstable
Urgency: high
Maintainer: Debian/Ubuntu Zope team [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 zope-debhelper - debhelper script for zope packaging
Closes: 453180
Changes: 
 zope-debhelper (0.3.11) unstable; urgency=high
 .
   * dh_installzopeinstance: fixed a bug, the default user for the instance
 should be zope:zope. (Closes: #453180)
   * autoscripts/postinst-dzinstance: break if something went wrong while
 creating the instance.
   * dh_installzope: add a Package field in the multiple dzproduct files mode.
   * dh_installzope: smartly handle ZopeVersions in a multiple dzproduct files
 mode.
   * dh_installzope,dh_installzopeinstance: depends on zope-common (= 0.5.38).
Files: 
 561e9657c4264c72a48967a8e455d96b 778 devel extra zope-debhelper_0.3.11.dsc
 9ad443a4120bd33fb48ec382b593c0ac 11584 devel extra zope-debhelper_0.3.11.tar.gz
 ec16645317ad42f60362d6f371363a58 19376 devel extra 
zope-debhelper_0.3.11_all.deb

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

iD8DBQFHUEa7K/juK3+WFWQRAp0JAJ4nl+11wtXao2MRH4l3/kvKplTxfQCeN67V
H3AG0oDyRCetDx6T5J0Htvk=
=1k4/
-END PGP SIGNATURE-


---End Message---


Bug#450474: marked as done (tclex: FTBFS: ./configure: line 615: /usr/share/lib/tcl8.4/tclConfig.sh: No such file or directory)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 19:32:11 +
with message-id [EMAIL PROTECTED]
and subject line Bug#450474: fixed in tclex 1.2a1-12
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: tclex
version: 1.2a1-11
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20071106 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:
dpkg-source: building tclex in tclex_1.2a1-11.dsc
 debian/rules build
dh_testdir
cd src; chmod +x configure; ./configure; 
creating cache ./config.cache
setting prefix to: /usr/share
checking for a BSD compatible install... /usr/bin/install -c
./configure: line 615: /usr/share/lib/tcl8.4/tclConfig.sh: No such file or 
directory
make: *** [build-stamp] Error 1
dpkg-buildpackage: failure: debian/rules build gave error exit status 2

The full build log is available from
http://people.debian.org/~lucas/logs/2007/11/06

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---
Source: tclex
Source-Version: 1.2a1-12

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

tclex_1.2a1-12.diff.gz
  to pool/main/t/tclex/tclex_1.2a1-12.diff.gz
tclex_1.2a1-12.dsc
  to pool/main/t/tclex/tclex_1.2a1-12.dsc
tclex_1.2a1-12_i386.deb
  to pool/main/t/tclex/tclex_1.2a1-12_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.
Sergei Golovan [EMAIL PROTECTED] (supplier of updated tclex 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, 30 Nov 2007 20:41:40 +0300
Source: tclex
Binary: tclex
Architecture: source i386
Version: 1.2a1-12
Distribution: unstable
Urgency: low
Maintainer: Tcl/Tk Debian Packagers [EMAIL PROTECTED]
Changed-By: Sergei Golovan [EMAIL PROTECTED]
Description: 
 tclex  - A lexical analyzer generator for Tcl
Closes: 406135 450474
Changes: 
 tclex (1.2a1-12) unstable; urgency=low
 .
   * New maintainer Debian Tcl/Tk Packagers
 [EMAIL PROTECTED] (closes: #406135).
   * Adopted the package to the current Debian Tcl/Tk policy. This also fixed
 FTBFS (closes: #450474).
   * Fixed lintian complain on ignoring make distclean errors.
   * Switched to quilt for patch management.
   * Bumped debhelper compatibility level to 5.
Files: 
 7767040dafbbb590549e499bd4c94e29 651 interpreters extra tclex_1.2a1-12.dsc
 b78a8c43b9b6207162d24a135deeb51e 6967 interpreters extra tclex_1.2a1-12.diff.gz
 e5f87021c1f80eac33318b44e3ec1a1a 47056 interpreters extra 
tclex_1.2a1-12_i386.deb

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

iD8DBQFHUGBRIcdH02pGEFIRAks3AJ4/Solm3JEF4JMZpDGxPd1FSQTuQQCdEEu6
sOVnkuKiAQvYxZhdYsIDzT0=
=45Zh
-END PGP SIGNATURE-


---End Message---


Bug#453726: pysycache: contents non redistributable material

2007-11-30 Thread Gonéri Le Bouder
Subject: pysycache: contents non-free material
Package: pysycache
Version: 3.0.1-2
Severity: serious

An picture from QuimeraAzul.com is used in the puzzle game. There is no
reference to it in the debian/copyright and QuimeraAzul doesn't permit
such redistribution.

 Intellectual property on the design of the web pages, his contents,
 marks and logotipos belongs to QUIMERA AZUL SL, unless otherwise
 indicated, in which case, it is used with the due authorization.
   http://www.quimeraazul.com/legal_note.php

   Cheers,

   Gonéri


signature.asc
Description: Digital signature


Processed (with 1 errors): Re: Bug#451818: kuickshow displays garbage

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 451818 comfirmed
Unknown tag/s: comfirmed.
Recognized are: patch wontfix moreinfo unreproducible fixed potato woody sid 
help security upstream pending sarge sarge-ignore experimental d-i confirmed 
ipv6 lfs fixed-in-experimental fixed-upstream l10n etch etch-ignore lenny 
lenny-ignore.

Bug#451818: kuickshow displays garbage
There were no tags set.
Tags added: 

 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: Re: abiword: FTBFS: no matching function for call to...

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 452676 patch
Bug#452676: abiword: FTBFS: no matching function for call to 
'GlobalParams::GlobalParams(const char [1])'
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#453714: Amarok crashes if you type something in search

2007-11-30 Thread Valerio Passini
Package: amarok
Version: 1.4.7-1+b2
Severity: serious

--- Please enter the report below this line. ---
Hi Everybody,

I've experienced crashes every time I type something in the search field 
while amarok is populating the playlist.
Waiting for your reply

Valerio

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.23.9

Debian Release: lenny/sid
  700 unstablemirrors.ecology.uni-kiel.de 
  700 unstablemi.mirror.garr.it 
  700 unstableftp.fr.debian.org 
  700 unstabledownload.tuxfamily.org 
  700 unstabledebian.fastweb.it 
  600 testing mi.mirror.garr.it 
  600 testing debian.fastweb.it 
  500 experimentalwww.debian-multimedia.org 
1 experimentalftp.it.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-==
amarok-engines| 1.4.7-1+b2
 OR amarok-engine | 
kdelibs4c2a(= 4:3.5.8-1) | 4:3.5.8.dfsg.1-4
libart-2.0-2  (= 2.3.18) | 2.3.19-3
libaudio2 | 1.9.1-1
libc6(= 2.6.1-1) | 2.7-3
libfontconfig1 (= 2.4.0) | 2.5.0-2
libfreetype6   (= 2.3.5) | 2.3.5-1+b1
libgcc1  (= 1:4.2.1) | 1:4.2.2-4
libgl1-mesa-glx   | 7.0.2-2
 OR libgl1| 
libglib2.0-0  (= 2.14.0) | 2.14.4-2
libgpod3  | 0.6.0-3
libice6  (= 1:1.0.0) | 2:1.0.4-1
libidn11  (= 0.5.18) | 1.1-1
libifp4   | 1.0.0.2-3
libjpeg62 | 6b-14
libkarma0 | 0.0.6-3
libmtp6   | 0.2.2-2
libmysqlclient15off (= 5.0.27-1) | 5.0.45-3
libnjb5   | 2.2.5-4.1
libpng12-0  (= 1.2.13-4) | 1.2.15~beta5-3
libpq5| 8.2.5-3
libqt3-mt(= 3:3.3.7) | 3:3.3.7-9
libruby1.8 (= 1.8.6.111) | 1.8.6.111-2
libsdl1.2debian (= 1.2.10-1) | 1.2.12-1
libsm6| 2:1.0.3-1+b1
libsqlite3-0   (= 3.4.2) | 3.4.2-2
libstdc++6 (= 4.2.1) | 4.2.2-4
libtag1c2a   (= 1.4) | 1.4-8+b1
libtagc0 (= 1.4) | 1.4-8+b1
libtunepimp5  | 0.5.3-6
libusb-0.1-4(= 2:0.1.12) | 2:0.1.12-8
libvisual-0.4-0(= 0.4.0) | 0.4.0-2
libx11-6  | 2:1.0.3-7
libxcursor1( 1.1.2) | 1:1.1.9-1
libxext6  | 1:1.0.3-2
libxft2( 2.1.1) | 2.1.12-2
libxi6| 2:1.1.3-1
libxinerama1  | 1:1.0.2-1
libxrandr2   (= 2:1.2.0) | 2:1.2.2-1
libxrender1   | 1:0.9.4-1
libxt6| 1:1.0.5-3
ruby  | 1.8.2-1
unzip | 5.52-10
zlib1g  (= 1:1.2.3.3.dfsg-1) | 1:1.2.3.3.dfsg-7




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



Bug#453632: iceape hangs up at startup on an error box

2007-11-30 Thread Mike Hommey
On Fri, Nov 30, 2007 at 10:40:30AM +0100, [EMAIL PROTECTED] wrote:
 Package: iceape
 Version: 1.0.11~pre071022-0etch1+lenny1
 Severity: grave
 Justification: renders package unusable
 
 Yesterday Iceape was working perfectly but today, when trying to start 
 iceape, It hangs up showing an error message in a window :
 
 Erreur d'analyse XML : entité non définie
 Emplacement : chrome://navigator/content/navigator.xul
 Numéro de ligne 62, Colonne 1 :window id=main-window
 ^  broadcaster id=Communicator:WorkMode
 --^menuitem label=openHelpCmd.label; 
 ^

Do you happen to have installed an extension as root ?
Does it work better if you remove the $HOME/.mozilla/default/XUL.mfasl
file ?
Did you try to run iceape under another user or move out the
$HOME/.mozilla directory ?

Mike





Bug#453689: ruby-gnome2: CVE-2007-6183 format string vulnerability

2007-11-30 Thread Kobayashi Noritada
Hi Nico,

From: Nico Golde
Subject: Bug#453689: ruby-gnome2: CVE-2007-6183 format string vulnerability
Date: Fri, 30 Nov 2007 17:57:07 +0100

 just in case you have no time to do an upload I prepared an 
 NMU. Maybe it also helps you preparing an update.
 The attached patch fixes this issue.
 It will be also archived on:
 http://people.debian.org/~nion/nmu-diff/ruby-gnome2-0.16.0-8_0.16.0-8.1.patch

I'm not a maintainer and this is just FYI:
Should this fix made into ruby-gnome2 0.16.0-9, which was uploaded
today and now in the NEW queue?

Changes: ruby-gnome2 (0.16.0-9) unstable; urgency=low
 .
  * Add debian/patches/poppler-0.6.patch that basically sync poppler/ with
ruby-gnome2 svn HEAD so that newer poppler are supported
(Closes: #453169).
  * Actually ship libpoppler-glib-ruby packages.


Many thanks,

-nori



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



Bug#453652: rsync: prone to symlink attacks

2007-11-30 Thread Nico Golde
Hi Paul,
* Paul Slootman [EMAIL PROTECTED] [2007-11-30 16:53]:
 On Fri 30 Nov 2007, Nico Golde wrote:
   There is a patch available for 2.6.9 (2.6.9-2etch1 is the current stable
   version).
  
  http://rsync.samba.org/ftp/rsync/munge-symlinks-2.6.9.diff 
  if you mean this patch this at least does not apply to the 
  unstable version thats why I ported it. I have not checked 
  if this does apply to the stable version.
 
 Hmm, that patch should apply to both stable and testing...
 
   2.6.4 is oldstable. I think first priority is the stable version...
  
  Yes. As I am only in the testing security team and thus 
  handling testing and unstable issues please contact 
  [EMAIL PROTECTED] to check if this is worth a DSA.
 
 Well, then I'm even more surprised that the patch you pasted listed
 2.6.4 as the version being patched?!

Ah damnit, you are right. I had the oldstable version in my 
directory to check if this is vulnerable too and then wanted 
to build a patch. Somehow I was in the wrong directory so I 
ported this patch to the old stable version.
Ok, not too bad with this the stable guys will have a 
working patch :)

The upstream patch works with unstable and testing then 
apart from patching the manual:
Hunk #1 FAILED at 145.
Hunk #2 succeeded at 184 with fuzz 2.
1 out of 2 hunks FAILED -- saving rejects to file 
./rsyncd.conf.5.rej

Attached is a modified version of the patch which fixes 
this.

Kind regards
Nico
-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgp33hkNzUloJ.pgp
Description: PGP signature


Bug#453689: ruby-gnome2: CVE-2007-6183 format string vulnerability

2007-11-30 Thread Nico Golde
Hi,
just in case you have no time to do an upload I prepared an 
NMU. Maybe it also helps you preparing an update.
The attached patch fixes this issue.
It will be also archived on:
http://people.debian.org/~nion/nmu-diff/ruby-gnome2-0.16.0-8_0.16.0-8.1.patch

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.
diff -u ruby-gnome2-0.16.0/debian/changelog ruby-gnome2-0.16.0/debian/changelog
--- ruby-gnome2-0.16.0/debian/changelog
+++ ruby-gnome2-0.16.0/debian/changelog
@@ -1,3 +1,12 @@
+ruby-gnome2 (0.16.0-8.1) unstable; urgency=high
+
+  * Non-maintainer upload by testing-security team.
+  * Included CVE-2007-6183.patch to fix format string vulnerability
+in rbgtkmessagedialog.c which might lead to arbitrary code
+execution (Closes: #453689)
+
+ -- Nico Golde [EMAIL PROTECTED]  Fri, 30 Nov 2007 17:07:39 +0100
+
 ruby-gnome2 (0.16.0-8) unstable; urgency=low
 
   * Add window-warning.patch (Closes: #446602).
diff -u ruby-gnome2-0.16.0/debian/patches/series ruby-gnome2-0.16.0/debian/patches/series
--- ruby-gnome2-0.16.0/debian/patches/series
+++ ruby-gnome2-0.16.0/debian/patches/series
@@ -9,0 +10 @@
+CVE-2007-6183.patch
only in patch2:
unchanged:
--- ruby-gnome2-0.16.0.orig/debian/patches/CVE-2007-6183.patch
+++ ruby-gnome2-0.16.0/debian/patches/CVE-2007-6183.patch
@@ -0,0 +1,12 @@
+--- ruby-gnome2/gtk/src/rbgtkmessagedialog.c	2006/10/21 16:58:00	2275
 ruby-gnome2/gtk/src/rbgtkmessagedialog.c	2007/11/27 11:40:12	2720
+@@ -28,7 +28,8 @@
+RVAL2GFLAGS(flags, GTK_TYPE_DIALOG_FLAGS), 
+RVAL2GENUM(type, GTK_TYPE_MESSAGE_TYPE), 
+RVAL2GENUM(buttons, GTK_TYPE_BUTTONS_TYPE),
+-   (const gchar*)(NIL_P(message) ? : RVAL2CSTR(message)));
++   %s,
++   NIL_P(message) ? : RVAL2CSTR(message));
+ RBGTK_INITIALIZE(self, w);
+ return Qnil;
+ }


pgpxlXgLA1PDb.pgp
Description: PGP signature


Bug#453667: marked as done (udftools: patch bug #453629)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 16:17:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453667: fixed in udftools 1.0.0b3-13
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: udftools
Version: 1.0.0b3-12
Severity: serious
Justification: no longer builds from source


 diff -pu wrudf.c.old  wrudf.c
--- wrudf.c.old 2007-11-30 14:23:15.0 +0100
+++ wrudf.c 2007-11-30 14:25:22.0 +0100
@@ -245,7 +245,10 @@ initialise(char *devicename)
} else if( strncmp( spm-partIdent.ident, UDF_ID_VIRTUAL,
strlen(UDF_ID_VIRTUAL)) == 0 )
virtualPartitionNum = i;
}
-   (char*)spm += spm-partitionMapLength;
+  spm =  (struct sparablePartitionMap*)
+((char*) spm +
+spm-partitionMapLength); /*gcc-4.1 does not
like  (char*)spm += */
+   /*(char*)spm += spm-partitionMapLength;*/
 }

 if( medium == CDR ) {


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

Versions of packages udftools depends on:
ii  debconf [debconf-2.0]  1.5.11Debian configuration management sy
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libreadline5   5.2-2 GNU readline and history libraries
ii  makedev2.3.1-83  creates device files in /dev

udftools recommends no packages.

-- no debconf information


---End Message---
---BeginMessage---
Source: udftools
Source-Version: 1.0.0b3-13

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

udftools_1.0.0b3-13.diff.gz
  to pool/main/u/udftools/udftools_1.0.0b3-13.diff.gz
udftools_1.0.0b3-13.dsc
  to pool/main/u/udftools/udftools_1.0.0b3-13.dsc
udftools_1.0.0b3-13_i386.deb
  to pool/main/u/udftools/udftools_1.0.0b3-13_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.
Richard Atterer [EMAIL PROTECTED] (supplier of updated udftools 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, 30 Nov 2007 11:21:03 +0100
Source: udftools
Binary: udftools
Architecture: source i386
Version: 1.0.0b3-13
Distribution: unstable
Urgency: low
Maintainer: Richard Atterer [EMAIL PROTECTED]
Changed-By: Richard Atterer [EMAIL PROTECTED]
Description: 
 udftools   - tools for UDF filesystems and DVD/CD-R(W) drives
Closes: 223266 285313 288355 372093 405821 407144 413625 414801 434164 453629 
453667
Changes: 
 udftools (1.0.0b3-13) unstable; urgency=low
 .
   * Fixed wrudf build failure with newer GCC. Closes: #453629, #453667
   * pktsetup: Return meaningful exit status on errors. Closes: #223266
   * Output error message if opening device fails. Closes: #285313
   * Recommends: udev. Closes: #405821
   * Updated pktsetup manpage. Closes: #414801
   * Added Homepage: field to debian/control
   * Got rid of devfs and makedev support, no longer depend on makedev.
 No longer attempt to create devices. No longer depend on debconf.
 Closes: #434164, #407144
   * Updated default /etc/default/udftools to be suitable for most people
 (Though they still need to uncomment DEVICES themselves.)
 Closes: #413625
   * Added info on defaults of cdrwtool -l -w -p in manpage. Closes: #372093
   * Added a few #include string.h to avoid compiler warnings
   * Documented -q switch in cdrwtool manpage (though it's already described
 in the Description section). Closes: #288355
   * Re-libtoolized
Files: 
 8131f50688b0da4d5a884e3e43fe1607 604 otherosfs extra udftools_1.0.0b3-13.dsc
 02a3fd66e50f0d75d3c3baec9f103d3a 386907 otherosfs extra 
udftools_1.0.0b3-13.diff.gz
 3184a3eb902c10d1f29d15bfe7c30f1d 77920 otherosfs extra 
udftools_1.0.0b3-13_i386.deb

-BEGIN PGP SIGNATURE-
Version: 

Processed: tagging 447469

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 tags 447469 + patch
Bug#447469: javahelp2: FTBFS: class 
org.apache.tools.ant.taskdefs.optional.depend.Depend was not found
Tags were: pending
Tags added: patch


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#453692: hplip: 2.7.10-3 fails to build from source

2007-11-30 Thread Jonas Meurer
Package: hpijs
Version: 2.7.10-3
Severity: serious
Justification: no longer builds from source

hello,

according to http://buildd.debian.org/build.cgi?pkg=hplip;ver=2.7.10-3
the package does not build from source on any of the architectures.

that results in a new hpijs-ppds package being available on the mirrors,
but being uninstallable as the required hpijs binary package is not
built.

greetings,
 jonas

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

Kernel: Linux 2.6.22-6-amd64-resivo
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages hpijs depends on:
ii  ghostscript [gs- 8.61.dfsg.1~svn8187-2.1 The GPL Ghostscript PostScript/PDF
ii  gs-gpl   8.61.dfsg.1~svn8187-2.1 Transitional package
ii  libc62.7-3   GNU C Library: Shared libraries
ii  libgcc1  1:4.2.2-4   GCC support library
ii  libjpeg626b-14   The Independent JPEG Group's JPEG 
ii  libsnmp155.4.1~dfsg-4SNMP (Simple Network Management Pr
ii  libssl0.9.8  0.9.8g-3SSL shared libraries
ii  libstdc++6   4.2.2-4 The GNU Standard C++ Library v3
ii  libusb-0.1-4 2:0.1.12-8  userspace USB programming library

hpijs recommends no packages.

-- no debconf information



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



Bug#441684: patch

2007-11-30 Thread akira yamada / ??????
Hi,

 upstream ruby removed file version.h . But we already have lots of fixes
 based on string RUBY_VERSION_CODE, so it's easier to recreate this
 version.h for ruby1.9 package. This patch fix this bug.
 
 It also fix another bug introduced by ruby1.9 upstream changes.

Basically, we should not use RUBY_VERSION_CODE.
So I think that an approach likes the following patch is better.

diff -ruN bdb-0.6.2.orig/src/bdb.h bdb-0.6.2/src/bdb.h
--- bdb-0.6.2.orig/src/bdb.h2007-07-29 01:52:43.0 +0900
+++ bdb-0.6.2/src/bdb.h 2007-08-30 15:04:28.0 +0900
@@ -1,5 +1,7 @@
 #include ruby.h
+#ifdef HAVE_VERSION_H
 #include version.h
+#endif
 #include rubysig.h
 #include rubyio.h

diff -ruN bdb-0.6.2.orig/src/common.c bdb-0.6.2/src/common.c
--- bdb-0.6.2.orig/src/common.c 2007-07-28 19:42:08.0 +0900
+++ bdb-0.6.2/src/common.c  2007-08-30 15:20:57.0 +0900
@@ -3877,7 +3877,11 @@
 char *file, *database;
 VALUE flagv = Qnil, iov = Qnil;
 int flags = 0;
+#if HAVE_TYPE_OPENFILE
 OpenFile *fptr;
+#else
+rb_io_t *fptr;
+#endif
 FILE *io = NULL;

 rb_secure(4);
diff -ruN bdb-0.6.2.orig/src/extconf.rb bdb-0.6.2/src/extconf.rb
--- bdb-0.6.2.orig/src/extconf.rb   2007-07-25 18:40:04.0 +0900
+++ bdb-0.6.2/src/extconf.rb2007-08-30 15:18:58.0 +0900
@@ -82,6 +82,9 @@
have_func(f)
 end

+have_header(version.h)
+have_type(OpenFile, [ruby.h, rubyio.h])
+
 [insert, values_at].each do |f|
print checking for Array##{f}... 
if [].respond_to?(f)

Thank you.
-- 
ay



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



Bug#425921: try again...

2007-11-30 Thread Daniel Schepler
On Friday 30 November 2007 08:50:58 pm Filipe wrote:
 tags 425921 + moreinfo unreproducible
 thanks

 Hi,

 I can't reproduce this bug. i think this is a old problem that was fixed
 with changes in others packages that were uploaded to sid.

 could you please try to reproduce it again in a up to date sid system?

 Thanks,

 filipe {
   @ icewall.org
   GPG1024D/A6BA423E
   Jabber  [EMAIL PROTECTED]
 }

Well, now I can't reproduce the bug I originally submitted, but the build
process fails later on with:

...
make[2]: Entering directory `/tmp/buildd/postgresql-pljava-1.3.0/build/objs'
/tmp/buildd/postgresql-pljava-1.3.0/src/C/pljava/Makefile:27: 
/usr/lib/postgresql/8.2/lib/pgxs/src/makefiles/pgxs.mk: No such file or 
directory
make[2]: *** No rule to make target 
`/usr/lib/postgresql/8.2/lib/pgxs/src/makefiles/pgxs.mk'.  Stop.
make[2]: Leaving directory `/tmp/buildd/postgresql-pljava-1.3.0/build/objs'
make[1]: *** [c_all] Error 2
make[1]: Leaving directory `/tmp/buildd/postgresql-pljava-1.3.0'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: failure: debian/rules build gave error exit status 2
-- 
Daniel Schepler



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



Bug#438532: marked as done (t-code: modifies load-path directly in startup)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 02:32:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#438532: fixed in t-code 2:2.3.1-2.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: t-code
Version: 2:2.3.1-2
Severity: serious

t-code package's emacsen-startup file modifies the load-path
variable directly.  According to debian-emacs-policy, please use
the debian-pkg-add-load-path-item function instead of setq.

Thanks,
--
Tatsuya Kinoshita


pgpGtvrqwOJLi.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Source: t-code
Source-Version: 2:2.3.1-2.1

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

t-code_2.3.1-2.1.diff.gz
  to pool/main/t/t-code/t-code_2.3.1-2.1.diff.gz
t-code_2.3.1-2.1.dsc
  to pool/main/t/t-code/t-code_2.3.1-2.1.dsc
t-code_2.3.1-2.1_all.deb
  to pool/main/t/t-code/t-code_2.3.1-2.1_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.
Tatsuya Kinoshita [EMAIL PROTECTED] (supplier of updated t-code 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, 01 Dec 2007 07:19:58 +0900
Source: t-code
Binary: t-code
Architecture: source all
Version: 2:2.3.1-2.1
Distribution: unstable
Urgency: low
Maintainer: NOSHIRO Shigeo [EMAIL PROTECTED]
Changed-By: Tatsuya Kinoshita [EMAIL PROTECTED]
Description: 
 t-code - T-Code Japanese input environment for emacsen
Closes: 433982 438530 438531 438532 438533 438534 453307 453427 453458
Changes: 
 t-code (2:2.3.1-2.1) unstable; urgency=low
 .
   * Non-maintainer upload, complied with the maintainer's request,
 closes: Bug#453458
   * Fix lintian error and warnings, closes: Bug#453307
 - Move debhelper from Build-Depends-Indep to Build-Depends.
 - Bump up debhelper version to 5.
 - Don't use DH_COMPAT in debian/rules, use debian/compat instead.
 - Don't ignore an error of make distclean in debian/rules.
 - Update FSF address in debian/copyright.
 - Bump up Standerd-Version to 3.7.2.
   * debian/rules:
 - Fix FTBFS when /bin/sh is dash, closes: Bug#438531
 - Use binary-indep instead of binary-arch, closes: Bug#438530
   * debian/emacsen-startup:
 - Use debian-pkg-add-load-path-item to set load-path, closes: Bug438532
 - Fix that startup fails if package is removed but not purged,
   closes: Bug#438533
   * debian/control:
 - Prefer emacs and emacs22, closes: Bug#433982
 - Revise description to mention tc2, emacsen and the upstream site,
   closes: Bug#453427
   * debian/emacsen-install: Create symlinks for *.el files, rather than
 copying *.el files and then removing them, closes: Bug#438534
Files: 
 c0468e707f3bf21fd3571b626b0220f5 675 utils optional t-code_2.3.1-2.1.dsc
 139ec2c60aa5dbeb558bc0528746fa32 114927 utils optional t-code_2.3.1-2.1.diff.gz
 2dd8a0e24b8cef81ee7a1e84904a1cfd 1258932 utils optional 
t-code_2.3.1-2.1_all.deb

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

iD8DBQFHUIzygV4LPvpMUpgRAo9DAKCiD4FkmqNwpXmpfEP6/44eA7iCGACfbg5h
FaPN+93e5zLb8d31ov+Cb2c=
=i9us
-END PGP SIGNATURE-


---End Message---


Bug#453748: yacas: postinst failure compiling emacs elisp files

2007-11-30 Thread Laurent Bonnaud
Package: yacas
Version: 1.2.2-1
Severity: grave


Hi,

here is the problem:

Setting up yacas (1.2.2-1) ...
texhash: Updating /var/lib/texmf/ls-R-TEXMFMAIN...
texhash: Updating /var/lib/texmf/ls-R-TEXLIVE...
texhash: Updating /var/lib/texmf/ls-R...
texhash: Done.
install/yacas: Ignoring emacsen flavor emacs
install/yacas: Handling install for emacsen flavor emacs21
cp: cannot stat `*.el': No such file or directory
emacs-package-install: /usr/lib/emacsen-common/packages/install/yacas emacs21 
emacs21 emacs22 xemacs21 failed at 
/usr/lib/emacsen-common/emacs-package-install line 30, TSORT line 1.
dpkg: error processing yacas (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 yacas


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

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

Versions of packages yacas depends on:
ii  amaya [www-br 9.54~dfsg.0-1  Web Browser, HTML Editor and Testb
ii  chimera2 [www 2.0a19-5   Web browser for X
ii  dillo [www-br 0.8.6-1Small and fast web browser
ii  elinks [www-b 0.11.1-1.5 advanced text-mode WWW browser
ii  elvis [www-br 2.2.0-9powerful clone of the vi/ex text e
ii  epiphany-geck 2.20.1-2   Intuitive GNOME web browser - Geck
ii  galeon [www-b 2.0.2-4GNOME web browser for advanced use
ii  iceape-browse 1.1.6-3Iceape Navigator (Internet browser
ii  iceweasel [ww 2.0.0.10-2 lightweight web browser based on M
ii  kazehakase [w 0.4.3-1.1  gecko based web browser using GTK
ii  konqueror [ww 4:3.96.0-1 KDE's advanced file manager, web b
ii  libc6 2.7-3  GNU C Library: Shared libraries
ii  libgcc1   1:4.3-20071020-1   GCC support library
ii  libstdc++64.3-20071020-1 The GNU Standard C++ Library v3
ii  links [www-br 1.00~pre20-0.1 Character mode WWW browser
ii  links2 [www-b 2.1pre31-1 Web browser running in both graphi
ii  lynx [www-bro 2.8.6-2Text-mode WWW Browser
ii  w3-el-e21 [ww 4.0pre.2001.10.27.nodocs-5 Web browser for GNU Emacs 21
ii  w3m [www-brow 0.5.1-5.1+b1   WWW browsable pager with excellent
ii  w3mmee [www-b 0.3.p24.20-3+b2WWW browsable pager with excellent
ii  xemacs21-gnom 21.4.21-1  highly customizable text editor --
ii  xemacs21-gnom 21.4.21-1  highly customizable text editor --
ii  xemacs21-gnom 21.4.21-1  highly customizable text editor --
ii  xemacs21-mule 21.4.21-1  highly customizable text editor --
ii  xemacs21-nomu 21.4.21-1  highly customizable text editor --
ii  yacas-doc 1.2.2-1Documentation for Yacas

yacas recommends no packages.

-- no debconf information

-- 
Laurent Bonnaud.
http://www.lis.inpg.fr/pages_perso/bonnaud/





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



Bug#453741: lufs: should this package be removed?

2007-11-30 Thread Filippo Giunchedi
Package: lufs
Version: 0.9.7-8.1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: proposed-removal

Hi,

While reviewing some packages, your package came up as a possible
candidate for removal from Debian, because:

 * last uploaded long ago
 * several RC bugs
 * there's FUSE anyway (i.e. #388386) 

If you think that it should be orphaned instead of being removed from
Debian, please reply to this bug and tell so.

If you agree, sending the following commands to [EMAIL PROTECTED]
should do it (after replacing nn with this bug's number):
severity nn normal
reassign nn ftp.debian.org
retitle nn RM: packagename -- RoM; reasons 
thanks

For more information, see
http://wiki.debian.org/ftpmaster_Removals
http://ftp-master.debian.org/removals.txt

If you disagree and want to continue to maintain this package, please
just close this bug, preferably in an upload also fixing the other
issues.

Thank you,

filippo
--
Filippo Giunchedi - http://esaurito.net
PGP key: 0x6B79D401
random quote follows:

UNIX is simple, but it just takes a genius to understand the simplicity.
-- Dennis Ritchie



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



Bug#453689: ruby-gnome2: CVE-2007-6183 format string vulnerability

2007-11-30 Thread Nico Golde
Package: ruby-gnome2
Version: 0.12.0-2
Severity: grave
Tags: security patch

Hi,
the following CVE (Common Vulnerabilities  Exposures) id was
published for ruby-gnome2.

CVE-2007-6183[0]:
| Format string vulnerability in the mdiag_initialize function in
| gtk/src/rbgtkmessagedialog.c in Ruby-GNOME 2 (aka Ruby/Gnome2) 0.16.0, and SVN
| versions before 20071127, allows context-dependent attackers to execute
| arbitrary code via format string specifiers in the message parameter.

until now this seems to be reserved, in the meantime check:
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2007-6183 instead of the mitre site.
A patch for this can be found on:
http://ruby-gnome2.svn.sourceforge.net/viewvc/ruby-gnome2/ruby-gnome2/trunk/gtk/src/rbgtkmessagedialog.c?r1=2275r2=2720view=patch

If you fix this vulnerability please also include the CVE id
in your changelog entry.

For further information:
[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-6183

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpbMlt0maiRq.pgp
Description: PGP signature


Bug#453652: rsync: prone to symlink attacks

2007-11-30 Thread Paul Slootman
On Fri 30 Nov 2007, Nico Golde wrote:
  
  There is a patch available for 2.6.9 (2.6.9-2etch1 is the current stable
  version).
 
 http://rsync.samba.org/ftp/rsync/munge-symlinks-2.6.9.diff 
 if you mean this patch this at least does not apply to the 
 unstable version thats why I ported it. I have not checked 
 if this does apply to the stable version.

Hmm, that patch should apply to both stable and testing...

  2.6.4 is oldstable. I think first priority is the stable version...
 
 Yes. As I am only in the testing security team and thus 
 handling testing and unstable issues please contact 
 [EMAIL PROTECTED] to check if this is worth a DSA.

Well, then I'm even more surprised that the patch you pasted listed
2.6.4 as the version being patched?!


Paul Slootman



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



Bug#453513: marked as done (eclipse: does not start with gcj jvm)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 20:25:52 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#453513: eclipse: does not start with gcj jvm
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: eclipse
Version: 3.2.2-4
Severity: grave
Justification: causes non-serious data loss

Hi,
I had problems launching eclipse. Every time I tried, the java process
was using up to 80% of the memory.

% eclipse -debug
searching for compatible vm...
  testing /usr/lib/jvm/java-gcj...found
Could not create /usr/local/lib/eclipse/.eclipseextension. Please run as
root:
touch /usr/local/lib/eclipse/.eclipseextension
chmod 2775 /usr/local/lib/eclipse/.eclipseextension
chown root:staff /usr/local/lib/eclipse/.eclipseextension
Start VM: /usr/lib/jvm/java-gcj/bin/java
-Djava.library.path=/usr/lib/jni
-Dgnu.gcj.precompiled.db.path=/var/lib/gcj-4.2/classmap.db
-Dgnu.gcj.runtime.VMClassLoader.library_control=never
-Dosgi.locking=none
-jar /usr/lib/eclipse/startup.jar
-os linux
-ws gtk
-arch x86_64
-launcher /usr/lib/eclipse/eclipse
-name Eclipse
-showsplash 600
-exitdata 228007
-install /usr/lib/eclipse
-debug
-vm /usr/lib/jvm/java-gcj/bin/java
-vmargs
-Djava.library.path=/usr/lib/jni
-Dgnu.gcj.precompiled.db.path=/var/lib/gcj-4.2/classmap.db
-Dgnu.gcj.runtime.VMClassLoader.library_control=never
-Dosgi.locking=none
-jar /usr/lib/eclipse/startup.jar 
Install location:
file:/usr/lib/eclipse/
Configuration file:
file:/usr/lib/eclipse/configuration/config.ini loaded
Configuration location:
file:/home/nox/.eclipse/org.eclipse.platform_3.2.0/configuration/
Configuration file:
file:/home/nox/.eclipse/org.eclipse.platform_3.2.0/configuration/config.ini
not found or not read
Shared configuration location:
file:/usr/lib/eclipse/configuration/
Framework located:
file:/usr/lib/eclipse/plugins/org.eclipse.osgi_3.2.2.R32x_v20070118.jar
Framework classpath:
file:/usr/lib/eclipse/plugins/org.eclipse.osgi_3.2.2.R32x_v20070118.jar
Splash location:

/usr/lib/eclipse/plugins/org.eclipse.platform_3.2.2.r322_v20070117b/splash.bmp
runCommand:

/usr/lib/eclipse/eclipse-nameEclipse-showsplash600/usr/lib/eclipse/plugins/org.eclipse.platform_3.2.2.r322_v20070117b/splash.bmp
Debug options:
file:/home/nox/.options not found
Time to load bundles: 3
GC Warning: Out of Memory!  Returning NIL!


Then I tried with the sun jvm with this command :
% eclipse -debug -consolelog -vm /usr/lib/jvm/java-6-sun/bin/java
and all's going fine...

Maybe gcj is the problem but I didn't run any other problem with it.

Thanks

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

Kernel: Linux 2.6.22-3-amd64 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages eclipse depends on:
ii  eclipse-jdt   3.2.2-4Java Development Tools plug-ins fo
ii  eclipse-pde   3.2.2-4Plug-in Development Environment to
ii  eclipse-source3.2.2-4Eclipse source code plug-ins
ii  zenity2.20.0-2   Display graphical dialog boxes fro

Versions of packages eclipse recommends:
ii  eclipse-gcj   3.2.2-4Native Eclipse run with GCJ

-- no debconf information


---End Message---
---BeginMessage---
On Fri, Nov 30, 2007 at 08:19:11AM +0100, Michael Koch wrote:
 Hello Nicolas,
 
 
 On Thu, Nov 29, 2007 at 11:38:27PM +0100, Nicolas Maitre wrote:
  Package: eclipse
  Version: 3.2.2-4
  Severity: grave
  Justification: causes non-serious data loss
  
  Hi,
  I had problems launching eclipse. Every time I tried, the java process
  was using up to 80% of the memory.

I think this is the same bug as #453509. I think a new libc6 fixes this
issue. I close this bug because of this. If not please reopen the bug and
give additional information if possible.


Cheers,
Michael

---End Message---


Bug#453050: (forw) Re: [Samba] Problem with samba 3.0.14a-3sarge9 on Debian Sarge

2007-11-30 Thread Christian Perrier
For the record.

- Forwarded message from Alessandro FAGLIA [EMAIL PROTECTED] -

Date: Fri, 30 Nov 2007 08:01:21 +0100
From: Alessandro FAGLIA [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re: [Samba] Problem with samba 3.0.14a-3sarge9 on Debian Sarge
X-CRM114-Status: Good  ( pR: 38.4038 )

 Original Message  
Subject: Re: [Samba] Problem with samba 3.0.14a-3sarge9 on Debian Sarge
From: Christian Perrier [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Date: Thu Nov 29 2007 18:17:19 GMT+0100 (ora solare Europa occidentale)

 Quoting Marco ([EMAIL PROTECTED]):
 Alessandro FAGLIA wrote:

 After I upgraded to 3.0.14a-3sarge9, I observed a strange behaviour with 
 no apparent explanation.
 Perhaps this link could be helpful:

 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=453050


 And -sarge10 should be available in the meantime, thanks again to
 Steve Langasek's work.

 The same stands for 3.0.24-etch8 packages that should fix the same
 long directory listing regression for the package in Etch.

 (and /me crosses fingers for no more regressions)

I've just upgrade to -sarge10 and I confirm that the issue is fixed (at 
least at a first glance).


Thanks to the debian maintainer for his responsiveness.


--Alessandro
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  https://lists.samba.org/mailman/listinfo/samba



** CRM114 Whitelisted by: lists.samba.org **


- End forwarded message -

-- 




signature.asc
Description: Digital signature


Bug#453665: marked as done (udftools: configure should check for apt-get install libreadline-dev)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 15:39:37 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#453665: udftools: configure should check for apt-get 
install libreadline-dev
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: udftools
Version: 1.0.0b3-12
Severity: serious
Justification: no longer builds from source


Before compiling, 

 apt-get  install libreadline-dev

should be launched.

configure script might check for such a component.

else the following error mitght occur:

mkdir .libs
gcc -g -O2 -o wrudf wrudf.o wrudf-cmnd.o wrudf-desc.o wrudf-cdrw.o
wrudf-cdr.o ide-pc.o  ../libudffs/.libs/libudffs.a -lreadline -lncurses
/usr/bin/ld: cannot find -lreadline
collect2: ld returned 1 exit status
make[1]: *** [wrudf] Erreur 1



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

Versions of packages udftools depends on:
ii  debconf [debconf-2.0]  1.5.11Debian configuration management sy
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libreadline5   5.2-2 GNU readline and history libraries
ii  makedev2.3.1-83  creates device files in /dev

udftools recommends no packages.

-- no debconf information


---End Message---
---BeginMessage---
I'm preparing an updated version of the package right now - please wait a 
few days before you continue your work, to avoid duplication of effort!

On Fri, Nov 30, 2007 at 03:10:53PM +0100, Jean-Michel wrote:
 Before compiling, 
 
  apt-get  install libreadline-dev
 
 should be launched.
 
 configure script might check for such a component.

This is already checked, because of the Build-Depends: libreadline5-dev 
in debian/control. Please use the dpkg-buildpackage command to build the 
package!

Oh, and if you provide patches for existing bugs like you did for #453629, 
please add them to the existing bug rather than opening a new one. I guess 
you already noticed that. :) Thanks for your contribution!

Cheers,

  Richard

-- 
  __   _
  |_) /|  Richard Atterer
  | \/¯|  http://atterer.net
  ¯ '` ¯

---End Message---


Bug#453629: marked as done (udftools-1.0.0b3 not compiled in 2.6.18-4-amd64 with gcc (GCC) 4.1.2 20061115 (prerelease) (Debian 4.1.1-21))

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 16:17:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453629: fixed in udftools 1.0.0b3-13
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: udftools
Version: 1.0.0b3-12
Severity: serious
Justification: no longer builds from source


udftools-1.0.0b3 does not compile in 2.6.18-4-amd64 with gcc (GCC) 4.1.2
20061115 (prerelease) (Debian 4.1.1-21)

I just did ./configure amd make.

The fatal error is:
make[1]: entrant dans le répertoire «
/root/udf_dump/udftools-1.0.0b3/wrudf »
if gcc -DHAVE_CONFIG_H -I. -I. -I../include  -D_LARGEFILE64_SOURCE
-D_GNU_SOURCE -DDEBUG   -g -O2 -MT wrudf.o -MD -MP -MF .deps/wrudf.Tpo
-c -o wrudf.o wrudf.c; \
then mv -f .deps/wrudf.Tpo .deps/wrudf.Po; else rm -f
.deps/wrudf.Tpo; exit 1; fi
wrudf.c: In function ‘initialise’:
wrudf.c:248: error: invalid lvalue in assignment


The result of ./configure and make was:

:~/udf_dump/udftools-1.0.0b3# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag  works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports
shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag CXX to libtool
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking 

Bug#451140: eclipse fails to start

2007-11-30 Thread darren
[EMAIL PROTECTED]:~$ dpkg -l |grep libc6
ii  libc62.7-3GNU C
Library: Shared libraries
ii  libc6-dev2.7-3GNU C
Library: Development Libraries and Hea
ii  libc6-i686   2.7-3GNU C
Library: Shared libraries [i686 optimi
[EMAIL PROTECTED]:~$ mount
/dev/hda3 on / type ext3 (rw,errors=remount-ro)

the problem still exists.

2007/11/30, Michael Koch [EMAIL PROTECTED]:

 On Wed, Nov 14, 2007 at 12:23:50AM +0800, darren wrote:
  Package: eclipse
  Version: 3.2.2-4
  Severity: grave
  Justification: renders package unusable

 Can please retry with libc6 2.7-3?
 With which options if your /home parition mounted?


 Cheers,
 Michael



Bug#453667: udftools: patch bug #453629

2007-11-30 Thread Jean-Michel
Package: udftools
Version: 1.0.0b3-12
Severity: serious
Justification: no longer builds from source


 diff -pu wrudf.c.old  wrudf.c
--- wrudf.c.old 2007-11-30 14:23:15.0 +0100
+++ wrudf.c 2007-11-30 14:25:22.0 +0100
@@ -245,7 +245,10 @@ initialise(char *devicename)
} else if( strncmp( spm-partIdent.ident, UDF_ID_VIRTUAL,
strlen(UDF_ID_VIRTUAL)) == 0 )
virtualPartitionNum = i;
}
-   (char*)spm += spm-partitionMapLength;
+  spm =  (struct sparablePartitionMap*)
+((char*) spm +
+spm-partitionMapLength); /*gcc-4.1 does not
like  (char*)spm += */
+   /*(char*)spm += spm-partitionMapLength;*/
 }

 if( medium == CDR ) {


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

Versions of packages udftools depends on:
ii  debconf [debconf-2.0]  1.5.11Debian configuration management sy
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libreadline5   5.2-2 GNU readline and history libraries
ii  makedev2.3.1-83  creates device files in /dev

udftools recommends no packages.

-- no debconf information



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



Bug#453665: udftools: configure should check for apt-get install libreadline-dev

2007-11-30 Thread Jean-Michel
Package: udftools
Version: 1.0.0b3-12
Severity: serious
Justification: no longer builds from source


Before compiling, 

 apt-get  install libreadline-dev

should be launched.

configure script might check for such a component.

else the following error mitght occur:

mkdir .libs
gcc -g -O2 -o wrudf wrudf.o wrudf-cmnd.o wrudf-desc.o wrudf-cdrw.o
wrudf-cdr.o ide-pc.o  ../libudffs/.libs/libudffs.a -lreadline -lncurses
/usr/bin/ld: cannot find -lreadline
collect2: ld returned 1 exit status
make[1]: *** [wrudf] Erreur 1



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

Versions of packages udftools depends on:
ii  debconf [debconf-2.0]  1.5.11Debian configuration management sy
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libreadline5   5.2-2 GNU readline and history libraries
ii  makedev2.3.1-83  creates device files in /dev

udftools recommends no packages.

-- no debconf information



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



Bug#453652: rsync: prone to symlink attacks

2007-11-30 Thread Paul Slootman
On Fri 30 Nov 2007, Nico Golde wrote:

 attached is an NMU proposal to fix this bug just in case you 
 have no time to fix this.

Is this based on upstream's patch?

 For this I needed to backport the patch cause it won't apply 
 with the version in Debian.

There is a patch available for 2.6.9 (2.6.9-2etch1 is the current stable
version).

2.6.4 is oldstable. I think first priority is the stable version...


thanks,
Paul Slootman



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



Processed: Re: nut: fails to install in pbuilder

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 447961 serious
Bug#447961: nut: fails to install in pbuilder
Severity set to `serious' from `normal'

 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#453652: rsync: prone to symlink attacks

2007-11-30 Thread Nico Golde
Hi,
attached is an NMU proposal to fix this bug just in case you 
have no time to fix this.

For this I needed to backport the patch cause it won't apply 
with the version in Debian.

It will be also archived on:
http://people.debian.org/~nion/nmu-diff/rsync-2.6.4-6_2.6.4-6.1.patch

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.
diff -u rsync-2.6.4/rsyncd.conf.5 rsync-2.6.4/rsyncd.conf.5
--- rsync-2.6.4/rsyncd.conf.5
+++ rsync-2.6.4/rsyncd.conf.5
@@ -152,12 +152,15 @@
 holes, but it has the disadvantages of requiring super-user privileges, 
 of not being able to follow symbolic links that are either absolute or outside
 of the new root path, and of complicating the preservation of usernames and groups
-(see below)\.  When \(lquse chroot\(rq is false, for security reasons,
-symlinks may only be relative paths pointing to other files within the root
-path, and leading slashes are removed from most absolute paths (options
-such as \fB\-\-backup\-dir\fP, \fB\-\-compare\-dest\fP, etc\. interpret an absolute path as
-rooted in the module's \(lqpath\(rq dir, just as if chroot was specified)\.
-The default for \(lquse chroot\(rq is true\.
++(see below)\.  When use chroot is false, rsync will: (1) munge symlinks by
++default for security reasons (see munge symlinks for a way to turn this
++off, but only if you trust your users), (2) substitute leading slashes in
++absolute paths with the module\'s path (so that options such as
++\fB\-\-backup\-dir\fP, \fB\-\-compare\-dest\fP, etc\. interpret an absolute path as
++rooted in the module\'s path dir), and (3) trim \.\. path elements from
++args if rsync believes they would escape the chroot\.
++The default for use chroot is true, and is the safer choice (especially
++if the module is not read-only)\.
 .IP 
 In order to preserve usernames and groupnames, rsync needs to be able to
 use the standard library functions for looking up names and IDs (i\.e\.
@@ -181,6 +184,41 @@
 do this automatically, but you might as well specify both to be extra
 sure)\.
 .IP 
+.IP \fBmunge symlinks\fP
+The munge symlinks option tells rsync to modify
+all incoming symlinks in a way that makes them unusable but recoverable
+(see below)\.  This should help protect your files from user trickery when
+your daemon module is writable\.  The default is disabled when use chroot
+is on and enabled when use chroot is off\.
+.IP
+If you disable this option on a daemon that is not read-only, there
+are tricks that a user can play with uploaded symlinks to access
+daemon-excluded items (if your module has any), and, if use chroot
+is off, rsync can even be tricked into showing or changing data that
+is outside the module\'s path (as access-permissions allow)\.
+.IP
+The way rsync disables the use of symlinks is to prefix each one with
+the string /rsyncd-munged/\.  This prevents the links from being used
+as long as that directory does not exist\.  When this option is enabled,
+rsync will refuse to run if that path is a directory or a symlink to
+a directory\.  When using the munge symlinks option in a chroot area,
+you should add this path to the exclude setting for the module so that
+the user can\'t try to create it\.
+.IP
+Note:  rsync makes no attempt to verify that any pre-existing symlinks in
+the hierarchy are as safe as you want them to be\.  If you setup an rsync
+daemon on a new area or locally add symlinks, you can manually protect your
+symlinks from being abused by prefixing /rsyncd-munged/ to the start of
+every symlink\'s value\.  There is a perl script in the support directory
+of the source code named munge-symlinks that can be used to add or remove
+this prefix from your symlinks\.
+.IP
+When this option is disabled on a writable module and use chroot is off,
+incoming symlinks will be modified to drop a leading slash and to remove \.\.
+path elements that rsync believes will allow a symlink to escape the module\'s
+hierarchy\.  There are tricky ways to work around this, though, so you had
+better trust your users if you choose this combination of options\.
+.IP
 .IP \fBport\fP 
 You can override the default port the daemon will listen on
 by specifying this value (defaults to 873)\.  This is ignored if the daemon
diff -u rsync-2.6.4/debian/changelog rsync-2.6.4/debian/changelog
--- rsync-2.6.4/debian/changelog
+++ rsync-2.6.4/debian/changelog
@@ -1,3 +1,16 @@
+rsync (2.6.4-6.1) unstable; urgency=high
+
+  * Non-maintainer upload by testing-security team.
+  * This update addresses the following security issues (Closes: #453652):
+- When use chroot option is disabled, a programming error
+  can be exploited by a user to trick rsync into creating a
+  symlink that points outside the module's hierarchy.
+- A programming error within the exclude, exclude from and filter
+  options can be exploited via a symlink attack to gain access
+  to hidden 

Bug#453396: marked as done (zope-common - logrotate: do not assume all instances are running as zope:zope)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 12:32:11 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453396: fixed in zope2.10 2.10.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: zope-common
Version: 0.5.31
Severity: important


The logrotate configuration which is delivered with zope-common assumes,
that all instances are running as zope:zope, which is not always the
case.
The logrotate config should be maintained by dzhandle.


-- 
Bernd Zeimetz
[EMAIL PROTECTED] http://bzed.de/

---End Message---
---BeginMessage---
Source: zope2.10
Source-Version: 2.10.5-2

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

zope2.10-sandbox_2.10.5-2_all.deb
  to pool/main/z/zope2.10/zope2.10-sandbox_2.10.5-2_all.deb
zope2.10_2.10.5-2.diff.gz
  to pool/main/z/zope2.10/zope2.10_2.10.5-2.diff.gz
zope2.10_2.10.5-2.dsc
  to pool/main/z/zope2.10/zope2.10_2.10.5-2.dsc
zope2.10_2.10.5-2_amd64.deb
  to pool/main/z/zope2.10/zope2.10_2.10.5-2_amd64.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.
Fabio Tranchitella [EMAIL PROTECTED] (supplier of updated zope2.10 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, 29 Nov 2007 11:51:34 +0100
Source: zope2.10
Binary: zope2.10 zope2.10-sandbox
Architecture: source amd64 all
Version: 2.10.5-2
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 zope2.10   - Open Source Web Application Server
 zope2.10-sandbox - sandbox instance for the zope2.10 web application server
Closes: 453396
Changes: 
 zope2.10 (2.10.5-2) unstable; urgency=low
 .
   * debian/zopeZVER.logrotate.in: use the original mode, user and group while
 rotating the logs. (Closes: #453396)
Files: 
 49be8d617a97b7a75631709377417096 932 web optional zope2.10_2.10.5-2.dsc
 deda94628248075e46efc5fc5a4a4bc3 13539 web optional zope2.10_2.10.5-2.diff.gz
 ab8433fe9622018545b80a32c270e869 7192932 web optional 
zope2.10_2.10.5-2_amd64.deb
 329ea13485d585808e848e1633b00a73 178964 web optional 
zope2.10-sandbox_2.10.5-2_all.deb

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

iD8DBQFHT/N2K/juK3+WFWQRAsOHAJ9ukGeujkOkQFWrBuIq1LFMVrluwwCcC5xQ
2OZrmCmAik2PcD5d/1kCFvM=
=e5iJ
-END PGP SIGNATURE-


---End Message---


Processed: severity of 453652 is grave

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 severity 453652 grave
Bug#453652: rsync: prone to symlink attacks
Severity set to `grave' 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]



Bug#450443: FTBFS

2007-11-30 Thread Ondrej Certik
Package: python-numpy
Version: 1:1.0.3-1

Thanks very much for the patch. 

I am going to try to fix it now as part of the Debian Python Modules Team.

Ondrej






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



Bug#452662: marked as done (tripod - FTBFS: cannot find -lffi)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 10:32:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#452662: fixed in tripod 0.7.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: tripod
Version: 0.7.0-1+b3
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of tripod_0.7.0-1+b3 on lxdebian.bfinv.de by sbuild/s390 98
[...]
 /bin/sh ../../libtool --silent --tag=CXX --mode=link g++  -Wno-long-long 
 -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align 
 -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -g -Wall 
 -O2 -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor 
 -fno-exceptions -fno-check-new -fno-common   -lgpod -lgobject-2.0 -lglib-2.0  
  -lgdk_pixbuf-2.0 -lm -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -o tripod 
  -lgpod -lgobject-2.0 -lglib-2.0   -L/usr/share/qt3/lib -L/usr/libmain.o 
 ipodexportdialog.o ipodheader.o ipodlistitem.o imagelist.o 
 ipodexportdialog.moc.o imagelist.moc.o ipodheader.moc.o  -lkdeui -lkio 
 /usr/bin/ld: cannot find -lffi
 collect2: ld returned 1 exit status
 make[4]: *** [tripod] Error 1
 make[4]: Leaving directory 
 `/build/buildd/tripod-0.7.0/obj-s390-linux-gnu/tripod/src'
 make[3]: *** [all-recursive] Error 1
 make[3]: Leaving directory 
 `/build/buildd/tripod-0.7.0/obj-s390-linux-gnu/tripod'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory `/build/buildd/tripod-0.7.0/obj-s390-linux-gnu'
 make[1]: *** [all] Error 2
 make[1]: Leaving directory `/build/buildd/tripod-0.7.0/obj-s390-linux-gnu'
 make: *** [debian/stamp-makefile-build] Error 2
 dpkg-buildpackage: failure: debian/rules build gave error exit status 2
 **
 Build finished at 20071124-0219
 FAILED [dpkg-buildpackage died]


---End Message---
---BeginMessage---
Source: tripod
Source-Version: 0.7.0-2

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

tripod_0.7.0-2.diff.gz
  to pool/main/t/tripod/tripod_0.7.0-2.diff.gz
tripod_0.7.0-2.dsc
  to pool/main/t/tripod/tripod_0.7.0-2.dsc
tripod_0.7.0-2_i386.deb
  to pool/main/t/tripod/tripod_0.7.0-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.
Mark Purcell [EMAIL PROTECTED] (supplier of updated tripod 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, 30 Nov 2007 09:58:53 +
Source: tripod
Binary: tripod
Architecture: source i386
Version: 0.7.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team [EMAIL PROTECTED]
Changed-By: Mark Purcell [EMAIL PROTECTED]
Description: 
 tripod - iPod photo uploader
Closes: 450098 452662
Changes: 
 tripod (0.7.0-2) unstable; urgency=low
 .
   * --enable-debug=full
   * Rebuild for libgpod3
   * libgpod now does not depends on libffi
 - tripod - FTBFS: cannot find -lffi (Closes: #452662)
   * Move Homepage: to headers
   * Upgrade debian/watch
 - debian/watch fails to report upstream#39;s version (Closes:
 #450098)
Files: 
 f3824c2a94267527abd0ba8197e21f9f 723 graphics extra tripod_0.7.0-2.dsc
 165e6d627116573368fa8a0a1738b275 1962 graphics extra tripod_0.7.0-2.diff.gz
 e9c87200ef87eb4d2c7b615acd6f0678 66286 graphics extra tripod_0.7.0-2_i386.deb

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

iD8DBQFHT+VtoCzanz0IthIRAtK4AKCEIJVW2sC8jY+MwfGzheOCCELeWwCcCDrW
PO8CXrn26GtDwzp/DH6g+C8=
=W3AL
-END PGP SIGNATURE-


---End Message---


Processed: tagging bugs that are closed by packages in NEW as pending

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # the following bugs are closed by packages in NEW
 #
 tags 453169 pending
Bug#453169: ruby-gnome2: FTBFS: rbpoppler-page.c:113: error: incompatible type 
for argument 2 of 'poppler_page_get_text'
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]



Processed: setting package to gdm, tagging 438866, tagging 445743, tagging 445870, tagging 445947 ...

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.10ubuntu2
 package gdm
Ignoring bugs not assigned to: gdm

 tags 438866 + pending
Bug#438866: gdm: Standard Xsession ignores ~/.xprofile
There were no tags set.
Tags added: pending

 tags 445743 + pending
Bug#445743: User list is empty after upgrade
There were no tags set.
Bug#446070: gdm: Don't see users in facelist
Tags added: pending

 tags 445870 + pending
Bug#445870: gdm: gnome-keyring pam support
There were no tags set.
Tags added: pending

 tags 445947 + pending
Bug#445947: Quotes in gdm.conf break configuration after upgrade
There were no tags set.
Tags added: pending

 tags 452344 + pending
Bug#452344: incorrect DEBCONF_DAEMON path in /etc/init.d/gdm
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]



Processed: setting package to tripod, tagging 452662

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 package tripod
Ignoring bugs not assigned to: tripod

 tags 452662 + pending
Bug#452662: tripod - FTBFS: cannot find -lffi
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#448139: cfagent crashes with a segmentation fault when 31+ arguments are supplied

2007-11-30 Thread Mark Burgess

THank you for this analysis. The original bug message did not contain
enough context to see this interaction.

M

Iain Patterson wrote:
 Quoth Mark Burgess,
 
 This is probably true, but the case cited in the mail is not a
 limitation of cfengine but the argument getopt code in the
 operating system concerned. It is normal that Unix limits to 31
 args, and internally cfengine does the same for consistency.
 
   I tried compiling the getopt example code at
 http://www.gnu.org/software/libc/manual/html_node/Getopt.html and
 didn't get a segfault with 31 arguments on Linux x86_64.
 
   cfagent 2.2.1 on the same OS did indeed segfault with 31 arguments.
 
 The conclusion is that, while I agree there should be no segfault,
 I am not sure what I can do about it, since there is no code in
 cfengine that lead to this fault.
 
   It seems the bug is in the code which preparses arguments.  Line 253
 of cfagent.c (at least in version 2.2.1) describes the case where a
 script is called with the shell magic
 
 #!/bla/cfengine -v -f
 
 and this ends up being passed in argv[1] as a single string.  cfagent
 then parses this into an array of size CF_MAXARGS, which is 31 as you
 state.
 
   The attached quick and very dirty patch does the preparse in two
 stages, first allocating a dynamic buffer big enough for the arguments
 and then filling it in as before.
 
   An alternative option (if you excuse the pun) would be to use popt,
 which has the function poptParseArgvString().  The downside is that
 this is an added dependency.
 
 
 
 
 --- cfengine-2.2.1/src/cf.defs.h.orig 2007-11-30 08:24:22.122979592 +
 +++ cfengine-2.2.1/src/cf.defs.h  2007-11-30 08:24:26.734643977 +
 @@ -287,7 +287,6 @@
  #define CF_NONCELEN (CF_BUFSIZE/16)
  #define CF_MAXLINKSIZE 256
  #define CF_MAXLINKLEVEL 4
 -#define CF_MAXARGS 31
  #define CF_MAXFARGS 8
  #define CF_MAX_IP_LEN 64   /* numerical ip length */
  #define CF_PROCCOLS 16
 --- cfengine-2.2.1/src/cfagent.c.orig 2007-11-30 08:24:04.652251054 +
 +++ cfengine-2.2.1/src/cfagent.c  2007-11-30 08:47:17.382186413 +
 @@ -198,8 +198,8 @@
   
  void Initialize(int argc,char *argv[])
  
 -{ char *sp, *cfargv[CF_MAXARGS];
 -  int i, cfargc, seed;
 +{ char *sp, **cfargv;
 +  int i, j, cfargc, seed;
struct stat statbuf;
unsigned char s[16];
char ebuff[CF_EXPANDSIZE];
 @@ -235,9 +235,40 @@
  /* Everything ends up inside a single argument! Here's the fix  */
  
  cfargc = 1;
 -cfargv[0]=cfagent;
  
 -for (i = 1; i  argc; i++)
 +/* Pass 1: Find how many arguments there are. */
 +for (i = 1, j = 1; i  argc; i++)
 +   {
 +   sp = argv[i];
 +   
 +   while (*sp != '\0')
 +  {
 +  while (*sp == ' '  *sp != '\0') /* Skip to arg */
 + {
 + sp++;
 + }
 +  
 +  cfargc++;
 +  
 +  while (*sp != ' '  *sp != '\0') /* Skip to white space */
 + {
 + sp++;
 + }
 +  }
 +   }
 +
 +/* Allocate memory for cfargv. */
 +cfargv = (char **) malloc(sizeof(char *) * cfargc + 1);
 +if (! cfargv)
 +   {
 +   /* I guess CfLog(cferror, ...) isn't available yet. */
 +   fprintf(stderr,cfagent: Out of memory parsing arguments\n);
 +   exit(111);
 +   }
 +
 +/* Pass 2: Parse the arguments. */
 +cfargv[0] = cfagent;
 +for (i = 1, j = 1; i  argc; i++)
 {
 sp = argv[i];
 
 @@ -252,7 +283,7 @@
   sp++;
   }

 -  cfargv[cfargc++] = sp;
 +  cfargv[j++] = sp;

while (*sp != ' '  *sp != '\0') /* Skip to white space */
   {
 @@ -260,6 +291,7 @@
   }
}
 }
 +cfargv[j] = 0;
   
   VDEFAULTBINSERVER.name = ;
   
 @@ -315,6 +347,7 @@
   seed = ElfHash(s);
   srand48((long)seed);  
   CheckOpts(cfargc,cfargv);
 + free(cfargv);
  
   AddInstallable(no_default_route);
   CfenginePort();
 
 
 
 
 ___
 Bug-cfengine mailing list
 [EMAIL PROTECTED]
 https://cfengine.org/mailman/listinfo/bug-cfengine

-- 
Mark Burgess

Professor of Network and System Administration
Oslo University College

~~
Work: +47 22453272Email:  [EMAIL PROTECTED]
Fax : +47 22453205WWW  :  http://www.iu.hio.no/~mark
~~



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



Bug#453629: udftools-1.0.0b3 not compiled in 2.6.18-4-amd64 with gcc (GCC) 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)

2007-11-30 Thread Jean-Michel
Package: udftools
Version: 1.0.0b3-12
Severity: serious
Justification: no longer builds from source


udftools-1.0.0b3 does not compile in 2.6.18-4-amd64 with gcc (GCC) 4.1.2
20061115 (prerelease) (Debian 4.1.1-21)

I just did ./configure amd make.

The fatal error is:
make[1]: entrant dans le répertoire «
/root/udf_dump/udftools-1.0.0b3/wrudf »
if gcc -DHAVE_CONFIG_H -I. -I. -I../include  -D_LARGEFILE64_SOURCE
-D_GNU_SOURCE -DDEBUG   -g -O2 -MT wrudf.o -MD -MP -MF .deps/wrudf.Tpo
-c -o wrudf.o wrudf.c; \
then mv -f .deps/wrudf.Tpo .deps/wrudf.Po; else rm -f
.deps/wrudf.Tpo; exit 1; fi
wrudf.c: In function ‘initialise’:
wrudf.c:248: error: invalid lvalue in assignment


The result of ./configure and make was:

:~/udf_dump/udftools-1.0.0b3# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for g77... no
checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag  works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports
shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag CXX to libtool
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports
shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports
shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
appending configuration tag F77 to libtool
checking for ANSI C header files... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for 

Bug#443179: Fix for Bug#443179 commited to version control

2007-11-30 Thread Manoj Srivastava

tags 443179 +pending
thanks
Hi,

 The following change has been committed for this bug, and so the
  fix will be in the next upload.
===
2007-11-30 GMT  Manoj Srivastava [EMAIL PROTECTED]

Summary:
  A bug fixing release
Revision:
  debian-dir--ucf--2.0--patch-6


For keep current and threeway merge, ucf expects answers from debconf
which differ from what is specified in the template master. Frans Pop
suggested using the Choices-C feature of debconf, which is relatively
new, but defines a fixed alias for each option which Debconf will then
use in db_get and db_set operations -- so no more matching the template
in the code. closes: #443179, #449274, #453084

Also, added the Finnish translation, which Closes: Bug#448634

new files:
 po/.arch-ids/fi.po.id po/fi.po

modified files:
 ChangeLog changelog control templates templates.master





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



Bug#443179: Fix for Bug#443179 commited to version control

2007-11-30 Thread Manoj Srivastava

tags 443179 +pending
thanks
Hi,

 The following change has been committed for this bug, and so the
  fix will be in the next upload.
===
2007-11-30 GMT  Manoj Srivastava [EMAIL PROTECTED]

Summary:
  Use Choices-C in changeprompt templates
Revision:
  ucf--devel--3.0--patch-2

For keep current and threeway merge, ucf expects answers from debconf
which differ from what is specified in the template master. Frans Pop
suggested using the Choices-C feature of debconf, which is relatively
new, but defines a fixed alias for each option which Debconf will then
use in db_get and db_set operations -- so no more matching the template
in the code. closes: #443179, #449274, #453084

modified files:
 ChangeLog ucf





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



Processed: Fix for Bug#443179 commited to version control

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 443179 +pending
Bug#443179: ucf: expects the wrong answers from debconf
Tags were: patch
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#453228: marked as done (libmoosex-object-pluggable-perl: FTBFS: t/01-basic failed)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 08:47:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453218: fixed in libmoose-perl 0.31-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: libmoosex-object-pluggable-perl
version: 0.0005-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20071126 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:

  dpkg-source: building libmoosex-object-pluggable-perl in 
  libmoosex-object-pluggable-perl_0.0005-2.dsc
   debian/rules build
  dh_testdir
  # Add commands to compile the package here
  PERL_AUTIONSTALL=--skip /usr/bin/perl Makefile.PL INSTALLDIRS=vendor
  Cannot determine perl version info from lib/MooseX/Object/Pluggable.pm
  *** Module::AutoInstall version 1.03
  *** Checking for Perl dependencies...
  [Core Features]
  - Test::More...loaded. (0.62)
  - Moose ...loaded. (0.26 = 0.17)
  - Module::Pluggable::Object ...loaded. (3.6)
  *** Module::AutoInstall configuration finished.
  Checking if your kit is complete...
  Looks good
  Writing Makefile for MooseX::Object::Pluggable
  /usr/bin/make
  make[1]: Entering directory 
  `/build/user/libmoosex-object-pluggable-perl-0.0005'
  cp lib/MooseX/Object/Pluggable.pm blib/lib/MooseX/Object/Pluggable.pm
  Manifying blib/man3/MooseX::Object::Pluggable.3pm
  make[1]: Leaving directory 
  `/build/user/libmoosex-object-pluggable-perl-0.0005'
  touch build-stamp
   /usr/bin/fakeroot debian/rules binary
  dh_testdir
  dh_testroot
  dh_clean -k
  # Add commands to install the package into debian/ACKAGE_NAME here
  /usr/bin/make test
  make[1]: Entering directory 
  `/build/user/libmoosex-object-pluggable-perl-0.0005'
  PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e 
  test_harness(0, 'inc', 'blib/lib', 'blib/arch') t/00-load.t t/01-basic.t 
  t/02-basic2.t t/03-custom-ns.t t/boilerplate.t t/pod-coverage.t t/pod.t
  t/00-load.# Testing MooseX::Object::Pluggable 0.0005, Perl 5.008008, 
  /usr/bin/perl
  ok
  t/01-basic
  #   Failed test 'use TestApp;'
  #   in t/01-basic.t at line 10.
  # Tried to use 'TestApp'.
  # Error:  Could not create the 'accessor' method for _plugin_app_ns 
  because : Could not create accessor for '_plugin_app_ns' because exists 
  argument is not a HASH or ARRAY element at (eval 72) line 6.
  #  
  #  code: sub { if (scalar(@_) == 2) {defined($_[1]) || confess Attribute 
  ($attr_name) is required, so cannot be set to 
  undef;defined($type_constraint-($_[1]))
  #|| confess Attribute ( . $attr-name . ) does not pass the type 
  constraint (
  #. $attr-type_constraint-name . ) with  
  #. (defined($_[1]) ? (Scalar::Util::blessed($_[1])  
  overload::Overloaded($_[1]) ? overload::StrVal($_[1]) : $_[1]) : undef)
  #   if defined($_[1]);
  # $_[0]-{'_plugin_app_ns'} = $_[1];$attr-trigger-($_[0], $_[1], $attr); 
  }unless (exists exists $_[0]-{'_plugin_app_ns'} ? $_[0]-{'_plugin_app_ns'} 
  : undef) {if ($attr-has_default) {my $default = 
  $attr-default($_[0]);(defined($type_constraint-($default)))
 || confess Attribute ( . $attr-name . ) does not pass the type 
  constraint (   . $attr-type_constraint-name . ) with  . 
  (defined($default) ? (Scalar::Util::blessed($default)  
  overload::Overloaded($default) ? overload::StrVal($default) : $default) : 
  undef)  if defined($default);exists 
  $_[0]-{'_plugin_app_ns'} ? $_[0]-{'_plugin_app_ns'} : undef = $default;
   }else {exists $_[0]-{'_plugin_app_ns'} ? 
  $_[0]-{'_plugin_app_ns'} : undef = undef;}}return (wantarray() ? @{ ( 
  exists $_[0]-{'_plugin_app_ns'} ? $_[0]-{'_plugin_app_ns'} : undef ) || 
  return } : ( exists $_[0]-{'_plugin_app_ns'} ? $_[0]-{'_plugin_app_ns'} : 
  undef ) ) } at /usr/share/perl5/Moose/Meta/Method/Accessor.pm line 46
  #
  Moose::Meta::Method::Accessor::generate_accessor_method_inline('Moose::Meta::Method::Accessor=HASH(0x8622148)')
   called at /usr/share/perl5/Moose/Meta/Method/Accessor.pm line 107
  #
  Moose::Meta::Method::Accessor::generate_accessor_method('Moose::Meta::Method::Accessor=HASH(0x8622148)')
   called at /usr/share/perl5/Class/MOP/Method/Accessor.pm line 64
  #eval {...} called at /usr/share/perl5/Class/MOP/Method/Accessor.pm line 
  64
  #
  Class::MOP::Method::Accessor::initialize_body('Moose::Meta::Method::Accessor=HASH(0x8622148)')

Bug#453219: marked as done (libmoosex-getopt-perl: FTBFS: t/001_basic failed)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 08:47:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453218: fixed in libmoose-perl 0.31-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: libmoosex-getopt-perl
version: 0.05-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20071126 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:

  dpkg-source: building libmoosex-getopt-perl in 
  libmoosex-getopt-perl_0.05-2.dsc
   debian/rules build
  # quilt exits with 2 as return when there was nothing to do. 
  # That's not an error here (but it's usefull to break loops in crude scripts)
  QUILT_PATCHES=debian/patches quilt --quiltrc /dev/null push -a || test $? = 2
  Applying patch pod-meta-add.patch
  patching file lib/MooseX/Getopt/OptionTypeMap.pm
  
  Now at patch pod-meta-add.patch
  touch debian/stamp-patched
  dh_testdir
  /usr/bin/perl Build.PL --installdirs vendor
   - ERROR: Test::Exception is not installed
  
  ERRORS/WARNINGS FOUND IN PREREQUISITES.  You may wish to install the versions
  of the modules indicated above before proceeding with this installation
  
  Checking whether your kit is complete...
  Looks good
  
  Checking prerequisites...
  Creating new 'Build' script for 'MooseX-Getopt' version '0.05'
  /usr/bin/perl Build
  Copying lib/MooseX/Getopt/Meta/Attribute.pm - 
  blib/lib/MooseX/Getopt/Meta/Attribute.pm
  Copying lib/MooseX/Getopt.pm - blib/lib/MooseX/Getopt.pm
  Copying lib/MooseX/Getopt/OptionTypeMap.pm - 
  blib/lib/MooseX/Getopt/OptionTypeMap.pm
  Manifying blib/lib/MooseX/Getopt.pm - blib/libdoc/MooseX::Getopt.3pm
  Manifying blib/lib/MooseX/Getopt/OptionTypeMap.pm - 
  blib/libdoc/MooseX::Getopt::OptionTypeMap.3pm
  Manifying blib/lib/MooseX/Getopt/Meta/Attribute.pm - 
  blib/libdoc/MooseX::Getopt::Meta::Attribute.3pm
  /usr/bin/perl Build test
  t/000_loadok
  t/001_basic...Use of uninitialized value in subroutine entry 
  at /usr/share/perl5/Moose/Meta/TypeConstraint.pm line 127.
  Can't use string () as a subroutine ref while strict refs in use at 
  /usr/share/perl5/Moose/Meta/TypeConstraint.pm line 127.
  # Looks like you planned 53 tests but only ran 1.
  # Looks like your test died just after 1.
  dubious
   Test returned status 255 (wstat 65280, 0xff00)
  DIED. FAILED tests 2-53
   Failed 52/53 tests, 1.89% okay
  t/002_custom_option_type..Use of uninitialized value in subroutine entry 
  at /usr/share/perl5/Moose/Meta/TypeConstraint.pm line 127.
  Can't use string () as a subroutine ref while strict refs in use at 
  /usr/share/perl5/Moose/Meta/TypeConstraint.pm line 127.
  # Looks like you planned 6 tests but only ran 1.
  # Looks like your test died just after 1.
  dubious
   Test returned status 255 (wstat 65280, 0xff00)
  DIED. FAILED tests 2-6
   Failed 5/6 tests, 16.67% okay
  t/003_inferred_option_typeUse of uninitialized value in subroutine entry 
  at /usr/share/perl5/Moose/Meta/TypeConstraint.pm line 127.
  Can't use string () as a subroutine ref while strict refs in use at 
  /usr/share/perl5/Moose/Meta/TypeConstraint.pm line 127.
  # Looks like you planned 5 tests but only ran 1.
  # Looks like your test died just after 1.
  dubious
   Test returned status 255 (wstat 65280, 0xff00)
  DIED. FAILED tests 2-5
   Failed 4/5 tests, 20.00% okay
  t/pod.ok
  t/pod_coverageok
  Failed Test  Stat Wstat Total Fail  Failed  List of Failed
  ---
  t/001_basic.t 255 6528053  104 196.23%  2-53
  t/002_custom_option_type.t255 65280 6   10 166.67%  2-6
  t/003_inferred_option_type.t  255 65280 58 160.00%  2-5
  Failed 3/6 test scripts, 50.00% okay. 61/71 subtests failed, 14.08% okay.
  make: *** [build-stamp] Error 255
  dpkg-buildpackage: failure: debian/rules build gave error exit status 2

The full build log is available from:
http://people.debian.org/~lucas/logs/2007/11/26

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas 

Bug#453215: marked as done (libdevel-repl-perl: FTBFS: BEGIN failed--compilation aborted at t/load_core.t line 5.)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 08:47:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453218: fixed in libmoose-perl 0.31-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: libdevel-repl-perl
version: 1.001000-2
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20071126 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:

  #. (defined($_[1]) ? (Scalar::Util::blessed($_[1])  
  overload::Overloaded($_[1]) ? overload::StrVal($_[1]) : $_[1]) : undef)
  #   if defined($_[1]);
  # $_[0]-{'_plugin_app_ns'} = $_[1];$attr-trigger-($_[0], $_[1], $attr); 
  }unless (exists exists $_[0]-{'_plugin_app_ns'} ? $_[0]-{'_plugin_app_ns'} 
  : undef) {if ($attr-has_default) {my $default = 
  $attr-default($_[0]);(defined($type_constraint-($default)))
 || confess Attribute ( . $attr-name . ) does not pass the type 
  constraint (   . $attr-type_constraint-name . ) with  . 
  (defined($default) ? (Scalar::Util::blessed($default)  
  overload::Overloaded($default) ? overload::StrVal($default) : $default) : 
  undef)  if defined($default);exists 
  $_[0]-{'_plugin_app_ns'} ? $_[0]-{'_plugin_app_ns'} : undef = $default;
   }else {exists $_[0]-{'_plugin_app_ns'} ? 
  $_[0]-{'_plugin_app_ns'} : undef = undef;}}return (wantarray() ? @{ ( 
  exists $_[0]-{'_plugin_app_ns'} ? $_[0]-{'_plugin_app_ns'} : undef ) || 
  return } : ( exists $_[0]-{'_plugin_app_ns'} ? $_[0]-{'_plugin_app_ns'} : 
  undef ) ) } at /usr/share/perl5/Moose/Meta/Method/Accessor.pm line 46
  #
  Moose::Meta::Method::Accessor::generate_accessor_method_inline('Moose::Meta::Method::Accessor=HASH(0x864c510)')
   called at /usr/share/perl5/Moose/Meta/Method/Accessor.pm line 107
  #
  Moose::Meta::Method::Accessor::generate_accessor_method('Moose::Meta::Method::Accessor=HASH(0x864c510)')
   called at /usr/share/perl5/Class/MOP/Method/Accessor.pm line 64
  #eval {...} called at /usr/share/perl5/Class/MOP/Method/Accessor.pm line 
  64
  #
  Class::MOP::Method::Accessor::initialize_body('Moose::Meta::Method::Accessor=HASH(0x864c510)')
   called at /usr/share/perl5/Class/MOP/Method/Accessor.pm line 42
  #Class::MOP::Method::Accessor::new('Moose::Meta::Method::Accessor', 
  'attribute', 'Moose::Meta::Attribute=HASH(0x864c6c0)', 'is_inline', 'undef', 
  'accessor_type', 'accessor') called at 
  /usr/share/perl5/Class/MOP/Attribute.pm line 229
  #eval {...} called at /usr/share/perl5/Class/MOP/Attribute.pm line 228
  #
  Class::MOP::Attribute::process_accessors('Moose::Meta::Attribute=HASH(0x864c6c0)',
   'accessor', '_plugin_app_ns', 'undef') called at 
  /usr/share/perl5/Class/MOP/Attribute.pm line 246
  #
  Class::MOP::Attribute::install_accessors('Moose::Meta::Attribute=HASH(0x864c6c0)')
   called at /usr/share/perl5/Moose/Meta/Attribute.pm line 328
  #
  Moose::Meta::Attribute::install_accessors('Moose::Meta::Attribute=HASH(0x864c6c0)')
   called at /usr/share/perl5/Class/MOP/Class.pm line 665
  #Class::MOP::Class::add_attribute('Moose::Meta::Class=HASH(0x84f52ec)', 
  '_plugin_app_ns', 'trigger', 'CODE(0x857185c)', 'required', 1, 'isa', 
  'ArrayRef', 'default', ...) called at /usr/share/perl5/Moose/Meta/Class.pm 
  line 166
  #Moose::Meta::Class::add_attribute('Moose::Meta::Class=HASH(0x84f52ec)', 
  '_plugin_app_ns', 'trigger', 'CODE(0x857185c)', 'required', 1, 'isa', 
  'ArrayRef', 'default', ...) called at /usr/share/perl5/Moose/Meta/Class.pm 
  line 317
  #
  Moose::Meta::Class::_process_attribute('Moose::Meta::Class=HASH(0x84f52ec)', 
  '_plugin_app_ns', 'trigger', 'CODE(0x857185c)', 'required', 1, 'isa', 
  'ArrayRef', 'default', ...) called at /usr/share/perl5/Moose/Meta/Role.pm 
  line 457
  #
  Moose::Meta::Role::_apply_attributes('Moose::Meta::Role=HASH(0x854850c)', 
  'Moose::Meta::Class=HASH(0x84f52ec)') called at 
  /usr/share/perl5/Moose/Meta/Role.pm line 338
  #Moose::Meta::Role::apply('Moose::Meta::Role=HASH(0x854850c)', 
  'Moose::Meta::Class=HASH(0x84f52ec)') called at 
  /usr/share/perl5/Moose/Meta/Class.pm line 281
  #
  Moose::Meta::Class::_apply_all_roles('Moose::Meta::Class=HASH(0x84f52ec)', 
  'MooseX::Object::Pluggable') called at /usr/share/perl5/Moose.pm line 100
  #Moose::with('MooseX::Object::Pluggable') called at 
  /build/user/libdevel-repl-perl-1.001000/blib/lib/Devel/REPL.pm line 10
  #

Bug#448139: cfagent crashes with a segmentation fault when 31+ arguments are supplied

2007-11-30 Thread Iain Patterson

Quoth Mark Burgess,

This is probably true, but the case cited in the mail is not a 
limitation of cfengine but the argument getopt code in the

operating system concerned. It is normal that Unix limits to 31
args, and internally cfengine does the same for consistency.


  I tried compiling the getopt example code at
http://www.gnu.org/software/libc/manual/html_node/Getopt.html and
didn't get a segfault with 31 arguments on Linux x86_64.

  cfagent 2.2.1 on the same OS did indeed segfault with 31 arguments.


The conclusion is that, while I agree there should be no segfault,
I am not sure what I can do about it, since there is no code in
cfengine that lead to this fault.


  It seems the bug is in the code which preparses arguments.  Line 253
of cfagent.c (at least in version 2.2.1) describes the case where a
script is called with the shell magic

#!/bla/cfengine -v -f

and this ends up being passed in argv[1] as a single string.  cfagent
then parses this into an array of size CF_MAXARGS, which is 31 as you
state.

  The attached quick and very dirty patch does the preparse in two
stages, first allocating a dynamic buffer big enough for the arguments
and then filling it in as before.

  An alternative option (if you excuse the pun) would be to use popt,
which has the function poptParseArgvString().  The downside is that
this is an added dependency.
--- cfengine-2.2.1/src/cf.defs.h.orig	2007-11-30 08:24:22.122979592 +
+++ cfengine-2.2.1/src/cf.defs.h	2007-11-30 08:24:26.734643977 +
@@ -287,7 +287,6 @@
 #define CF_NONCELEN (CF_BUFSIZE/16)
 #define CF_MAXLINKSIZE 256
 #define CF_MAXLINKLEVEL 4
-#define CF_MAXARGS 31
 #define CF_MAXFARGS 8
 #define CF_MAX_IP_LEN 64   /* numerical ip length */
 #define CF_PROCCOLS 16
--- cfengine-2.2.1/src/cfagent.c.orig	2007-11-30 08:24:04.652251054 +
+++ cfengine-2.2.1/src/cfagent.c	2007-11-30 08:47:17.382186413 +
@@ -198,8 +198,8 @@
  
 void Initialize(int argc,char *argv[])
 
-{ char *sp, *cfargv[CF_MAXARGS];
-  int i, cfargc, seed;
+{ char *sp, **cfargv;
+  int i, j, cfargc, seed;
   struct stat statbuf;
   unsigned char s[16];
   char ebuff[CF_EXPANDSIZE];
@@ -235,9 +235,40 @@
 /* Everything ends up inside a single argument! Here's the fix  */
 
 cfargc = 1;
-cfargv[0]=cfagent;
 
-for (i = 1; i  argc; i++)
+/* Pass 1: Find how many arguments there are. */
+for (i = 1, j = 1; i  argc; i++)
+   {
+   sp = argv[i];
+   
+   while (*sp != '\0')
+  {
+  while (*sp == ' '  *sp != '\0') /* Skip to arg */
+ {
+ sp++;
+ }
+  
+  cfargc++;
+  
+  while (*sp != ' '  *sp != '\0') /* Skip to white space */
+ {
+ sp++;
+ }
+  }
+   }
+
+/* Allocate memory for cfargv. */
+cfargv = (char **) malloc(sizeof(char *) * cfargc + 1);
+if (! cfargv)
+   {
+   /* I guess CfLog(cferror, ...) isn't available yet. */
+   fprintf(stderr,cfagent: Out of memory parsing arguments\n);
+   exit(111);
+   }
+
+/* Pass 2: Parse the arguments. */
+cfargv[0] = cfagent;
+for (i = 1, j = 1; i  argc; i++)
{
sp = argv[i];

@@ -252,7 +283,7 @@
  sp++;
  }
   
-  cfargv[cfargc++] = sp;
+  cfargv[j++] = sp;
   
   while (*sp != ' '  *sp != '\0') /* Skip to white space */
  {
@@ -260,6 +291,7 @@
  }
   }
}
+cfargv[j] = 0;
  
  VDEFAULTBINSERVER.name = ;
  
@@ -315,6 +347,7 @@
  seed = ElfHash(s);
  srand48((long)seed);  
  CheckOpts(cfargc,cfargv);
+ free(cfargv);
 
  AddInstallable(no_default_route);
  CfenginePort();


Bug#381817: Maybe libghc6-cabal-dev should be removed?

2007-11-30 Thread Filippo Giunchedi
On Wed, Jun 20, 2007 at 08:36:39AM +0200, Lucas Nussbaum wrote:
 Hi,
 
 Any news on this?

I am re-pinging since no activity since june, any news on this package?

filippo
--
Filippo Giunchedi - http://esaurito.net
PGP key: 0x6B79D401
random quote follows:

Adapting old programs to fit new machines usually means adapting new machines
to behave like old ones.
-- Alan Perlis



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



Bug#444618: marked as done (Zope2.9 instance 'plone-site' already exists)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 21:32:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#429393: fixed in zope-common 0.5.38
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: plone-site
Version: 2.5.1-4
Severity: grave
Justification: renders package unusable


1. I first typed 'apt-get install plone-site'
2. I then later typed 'apt-get remove plon-site'
3. I then later typed 'apt-get install plone-site'
and this is when the following error occurred:

Setting up plone-site (2.5.1-4) ...
Zope2.9 instance 'plone-site' already exists.
Traceback (most recent call last):
  File /usr/bin/dzhandle, line 2394, in ?
main()
  File /usr/bin/dzhandle, line 2389, in main
rv = action.run(global_options)
  File /usr/bin/dzhandle, line 1046, in run
self.instance.add_addon(addon, global_options, self.options.atechnique)
  File /usr/bin/dzhandle, line 1886, in add_addon
uid=global_options.uid, gid=global_options.gid)
  File /usr/bin/dzhandle, line 2024, in copytree
os.mkdir(destdir)
OSError: [Errno 2] No such file or directory:
'/var/lib/zope2.9/instance/plone-site/Products/CMFPlone'
dpkg: error processing plone-site (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 plone-site
[EMAIL PROTECTED]:/var/lib$

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

Versions of packages plone-site depends on:
ii  debconf [debconf-2.0]   1.5.11   Debian configuration management sy
ii  zope-cmfplone   2.5.1-4  content management system based on
ii  zope-common 0.5.31   common settings and scripts for zo
ii  zope2.9 2.9.6-4etch1 Open Source Web Application Server

plone-site recommends no packages.

-- debconf information:
* plone-site/keep-data-on-purge: true
* plone-site/admin-user: admin
  plone-site/internal:
* plone-site/instance-http-port: 8081


---End Message---
---BeginMessage---
Source: zope-common
Source-Version: 0.5.38

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

zope-common_0.5.38.dsc
  to pool/main/z/zope-common/zope-common_0.5.38.dsc
zope-common_0.5.38.tar.gz
  to pool/main/z/zope-common/zope-common_0.5.38.tar.gz
zope-common_0.5.38_all.deb
  to pool/main/z/zope-common/zope-common_0.5.38_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.
Fabio Tranchitella [EMAIL PROTECTED] (supplier of updated zope-common 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, 30 Nov 2007 18:22:15 +0100
Source: zope-common
Binary: zope-common
Architecture: source all
Version: 0.5.38
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 zope-common - common settings and scripts for Zope installations
Closes: 417745 429393 431604 433712 434319 434325 434454 434757 435273 436148 
436282 444763
Changes: 
 zope-common (0.5.38) unstable; urgency=low
 .
   [ Fabio Tranchitella ]
   * Debconf templates and debian/control reviewed by the debian-l10n-
 english team as part of the Smith review project. (Closes: #433712)
   * Debconf translation updates:
 - French. (Closes: #434319)
 - Galician. (Closes: #434325, #444763)
 - Portuguese. (Closes: #434454)
 - Vietnamese. (Closes: #434757)
 - German. (Closes: #435273)
 - Czech. (Closes: #436282)
   * dzhandle:
 + accept a username-only paramter for the --service-user switch.
 + don't show useless actions in the help screen, noone uses them.
 + handle product-specific libraries stored in the .dzlib subdirectory
   of the product: symlink them and remove the symlink on uninstall.
 .
 .
   [ Bernd Zeimetz ]
   * Finally implement removing+reinstalling Zeo and 

Bug#429393: marked as done (zope-common: dzhandle chokes while reinstalling removed dzinstances)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 21:32:03 +
with message-id [EMAIL PROTECTED]
and subject line Bug#429393: fixed in zope-common 0.5.38
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: zope-common 0.5.32
Version: 0.5.32
Severity: serious

dzhandle chokes while reinstalling removed dzinstances

how to reproduce it:
install a package like plone-site or the coming zenoss, dpkg -r it,
install it again

dzhandle fails with:

Traceback (most recent call last):
  File /usr/bin/dzhandle, line 2484, in ?
main()
  File /usr/bin/dzhandle, line 2479, in main
rv = action.run(global_options)
  File /usr/bin/dzhandle, line 1047, in run
self.instance.add_addon(addon, global_options, self.options.atechnique)
  File /usr/bin/dzhandle, line 1973, in add_addon
uid=global_options.uid, gid=global_options.gid)
  File /usr/bin/dzhandle, line 2114, in copytree
os.mkdir(destdir)


and the package is not installable again.




---End Message---
---BeginMessage---
Source: zope-common
Source-Version: 0.5.38

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

zope-common_0.5.38.dsc
  to pool/main/z/zope-common/zope-common_0.5.38.dsc
zope-common_0.5.38.tar.gz
  to pool/main/z/zope-common/zope-common_0.5.38.tar.gz
zope-common_0.5.38_all.deb
  to pool/main/z/zope-common/zope-common_0.5.38_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.
Fabio Tranchitella [EMAIL PROTECTED] (supplier of updated zope-common 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, 30 Nov 2007 18:22:15 +0100
Source: zope-common
Binary: zope-common
Architecture: source all
Version: 0.5.38
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 zope-common - common settings and scripts for Zope installations
Closes: 417745 429393 431604 433712 434319 434325 434454 434757 435273 436148 
436282 444763
Changes: 
 zope-common (0.5.38) unstable; urgency=low
 .
   [ Fabio Tranchitella ]
   * Debconf templates and debian/control reviewed by the debian-l10n-
 english team as part of the Smith review project. (Closes: #433712)
   * Debconf translation updates:
 - French. (Closes: #434319)
 - Galician. (Closes: #434325, #444763)
 - Portuguese. (Closes: #434454)
 - Vietnamese. (Closes: #434757)
 - German. (Closes: #435273)
 - Czech. (Closes: #436282)
   * dzhandle:
 + accept a username-only paramter for the --service-user switch.
 + don't show useless actions in the help screen, noone uses them.
 + handle product-specific libraries stored in the .dzlib subdirectory
   of the product: symlink them and remove the symlink on uninstall.
 .
 .
   [ Bernd Zeimetz ]
   * Finally implement removing+reinstalling Zeo and Zope instances.
 (Closes: #429393, #431604)
   * Handle manually installed products gracefully with dzhandle, thanks to
 Ronan KERYELL and Jochen Pawletta for reporting (Closes: #417745).
   * Describe the requiered options and default settings for make-instance.
 Thanks to Ross Boylan (Closes: #436148).
Files: 
 3309f2046225e308fb9d7bd0d89ea16c 883 web optional zope-common_0.5.38.dsc
 78f8457760e906ae682092d40811f0d4 61011 web optional zope-common_0.5.38.tar.gz
 06ae0eb6059e98b3514463a089981e7d 41198 web optional zope-common_0.5.38_all.deb

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

iD8DBQFHUGyCK/juK3+WFWQRAoT3AJ4rGjNzonPzRYfQa69r6LbOIP0GJQCfYg9F
qZuJ1a8lTsrDntSQYwkVLwE=
=Iy3i
-END PGP SIGNATURE-


---End Message---


Processed: setting package to libpam-krb5-migrate-heimdal pam-krb5-migrate, tagging 445579

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.11
 package libpam-krb5-migrate-heimdal pam-krb5-migrate
Ignoring bugs not assigned to: pam-krb5-migrate libpam-krb5-migrate-heimdal

 tags 445579 + pending
Bug#445579: libpam-krb5-migrate-heimdal: Fails with recent heimdal packages 
(sid)
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#452676: abiword: FTBFS: no matching function for call to...

2007-11-30 Thread Dmitry E. Oboukhov
tags 452676 patch
thanks

attache :)

--
1B23 D4F8 8EC0 D902 0555  E438 AB8C 00CF F8E2 6537
#! /bin/sh /usr/share/dpatch/dpatch-run
## 20_ftbfs_fix_no_matching_function.dpatch by  [EMAIL PROTECTED]
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Fix: no matching function for call to 'GlobalParams::GlobalParams(const 
## DP: char [1])'

@DPATCH@

--- abiword-2.4.6/abiword-plugins/wp/impexp/pdf/xp/ie_imp_PDF.cpp   
2005-06-29 06:22:13.0 +0400
+++ abiword-2.4.6/abiword-plugins/wp/impexp/pdf/xp/ie_imp_PDF.cpp   
2007-11-30 21:30:21.0 +0300
@@ -63,7 +63,7 @@
   
 PDFDoc * doc = new PDFDoc(fileName);
 
-globalParams = new GlobalParams();
+globalParams = new GlobalParams();
 globalParams-setTextEncoding(UTF-8);
 globalParams-setTextEOL(\n);
 globalParams-setTextPageBreaks(gFalse);


signature.asc
Description: Digital signature


Processed: your mail

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 453180 pending
Bug#453180: plone-site: The package doesn't install at all: no instance created.
Tags were: pending
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#447469: Patch to fix this bug

2007-11-30 Thread Varun Hiremath
tags 447469 +pending
thanks

Hi,

Please find attahced patch to fix this bug. 
Also, libjdic-java is now available in Debian.

Regards
Varun

-- 
Varun Hiremath
Undergraduate Student,
Aerospace Engineering Department,
Indian Institute of Technology Madras,
Chennai, India
---
Homepage : http://varun.travisbsd.org
diff -urN javahelp2-2.0.05.orig/debian/changelog 
javahelp2-2.0.05/debian/changelog
--- javahelp2-2.0.05.orig/debian/changelog  2007-11-30 21:26:26.0 
+0530
+++ javahelp2-2.0.05/debian/changelog   2007-11-30 21:33:10.0 +0530
@@ -1,3 +1,14 @@
+javahelp2 (2.0.05-2) unstable; urgency=low
+
+  * debian/control:
++ Build-Depend on ant-options instead of ant (Closes: #447469)
++ Add libjdic-java to Build-Depends-Indep
++ Add Homepage, Vcs-{Svn, Browser} headers
+  * debian/rules:
++ Create symlink for jdic.jar
+
+ -- Varun Hiremath [EMAIL PROTECTED]  Fri, 30 Nov 2007 21:30:13 +0530
+
 javahelp2 (2.0.05-1) unstable; urgency=low
 
   * Initial version (Closes: #432773).
diff -urN javahelp2-2.0.05.orig/debian/compat javahelp2-2.0.05/debian/compat
--- javahelp2-2.0.05.orig/debian/compat 2007-11-30 21:26:26.0 +0530
+++ javahelp2-2.0.05/debian/compat  2007-11-30 21:33:10.0 +0530
@@ -1 +1 @@
-4
+5
diff -urN javahelp2-2.0.05.orig/debian/control javahelp2-2.0.05/debian/control
--- javahelp2-2.0.05.orig/debian/control2007-11-30 21:26:26.0 
+0530
+++ javahelp2-2.0.05/debian/control 2007-11-30 21:33:10.0 +0530
@@ -3,9 +3,13 @@
 Priority: optional
 Maintainer: Debian Java Maintainers [EMAIL PROTECTED]
 Uploaders: Marek Slama [EMAIL PROTECTED]
-Build-Depends: cdbs (= 0.4.8), debhelper (= 4.2.0)
-Build-Depends-Indep: ant, java-gcj-compat-dev, libtomcat5.5-java, 
libservlet2.4-java, unzip
+Build-Depends: cdbs, debhelper (= 5)
+Build-Depends-Indep: ant-optional, java-gcj-compat-dev,
+ libtomcat5.5-java, libservlet2.4-java, libjdic-java, unzip
 Standards-Version: 3.7.2
+Homepage: http://javahelp.dev.java.net
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/javahelp2
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/javahelp2
 
 Package: javahelp2
 Architecture: all
@@ -23,9 +27,7 @@
  entirely in the Java programming language. The JavaHelp system reference
  implementation, based on the Java Foundation Classes (JFC, also known
  as Swing), provides a standard interface that enables both application
- developers and authors to add online help to their applications.
- .
-  Homepage: http://javahelp.dev.java.net
+ developers and authors to add online help to their applications.  
 
 Package: javahelp2-doc
 Architecture: all
@@ -44,5 +46,3 @@
  developers and authors to add online help to their applications.
  .
  This package contains Javadoc API documentation.
- .
-  Homepage: http://javahelp.dev.java.net
diff -urN javahelp2-2.0.05.orig/debian/rules javahelp2-2.0.05/debian/rules
--- javahelp2-2.0.05.orig/debian/rules  2007-11-30 21:26:26.0 +0530
+++ javahelp2-2.0.05/debian/rules   2007-11-30 21:33:10.0 +0530
@@ -25,8 +25,7 @@
mkdir -p $(DEB_SRCDIR)/javahelp_nbproject/lib
ln -s -f /usr/share/java/servlet-api.jar 
$(DEB_SRCDIR)/javahelp_nbproject/lib/servlet-api.jar
ln -s -f /usr/share/java/jsp-api.jar 
$(DEB_SRCDIR)/javahelp_nbproject/lib/jsp-api.jar
-   #Remove class uncompilable without JDIC
-   rm -f 
$(DEB_SRCDIR)/jhMaster/JavaHelp/src/new/javax/help/plaf/basic/BasicNativeContentViewerUI.java
+   ln -s -f /usr/share/java/jdic.jar 
$(DEB_SRCDIR)/javahelp_nbproject/lib/jdic.jar
#Build javahelp target 'release' is for jars, target 'javadoc' is for 
javadoc
ant -f $(DEB_SRCDIR)/javahelp_nbproject/build.xml 
-Djdic-jar-present=true -Djdic-zip-present=true \
-Ddist.javadoc.dir=dist/lib/api \


Bug#453686: cairo: CVE-2007-5503 integer overflow possibly leading to arbitrary code execution

2007-11-30 Thread Nico Golde
Package: libcairo
Version: 1.4.10-1
Severity: grave
Tags: security patch

Hi,
the following CVE (Common Vulnerabilities  Exposures) id was
published for libcairo.

CVE-2007-5503[0]:
| Multiple integer overflows in Cairo before 1.4.12 might allow remote attackers
| to execute arbitrary code, as demonstrated using a crafted PNG image, which is
| not properly handled by the read_png function.

Until now this CVE seems to be reserved, see 
http://nvd.nist.gov/nvd.cfm?cvename=CVE-2007-5503 in the meanwhile.

Patches can be found on:
http://gitweb.freedesktop.org/?p=cairo;a=commitdiff;h=5c7d2d14d78e4dfb1ef6d2c40f0910f177e07360
http://gitweb.freedesktop.org/?p=cairo;a=commitdiff;h=e49bcde27f88e21d5b8037a0089a226096f6514b

I did not check if the stable version is also prone to this.

If you fix this vulnerability please also include the CVE id
in your changelog entry.

For further information:
[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-5503

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpxeiejwUDky.pgp
Description: PGP signature


Processed: Patch to fix this bug

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 447469 +pending
Bug#447469: javahelp2: FTBFS: class 
org.apache.tools.ant.taskdefs.optional.depend.Depend was not found
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#453652: rsync: prone to symlink attacks

2007-11-30 Thread Nico Golde
Hi Paul,
sorry for the fuckup in the paste of the vulnerability, just 
saw it in the BTS that its unformatted.

* Paul Slootman [EMAIL PROTECTED] [2007-11-30 14:42]:
 On Fri 30 Nov 2007, Nico Golde wrote:
 
  attached is an NMU proposal to fix this bug just in case you 
  have no time to fix this.
 
 Is this based on upstream's patch?

Yes.

  For this I needed to backport the patch cause it won't apply 
  with the version in Debian.
 
 There is a patch available for 2.6.9 (2.6.9-2etch1 is the current stable
 version).

http://rsync.samba.org/ftp/rsync/munge-symlinks-2.6.9.diff 
if you mean this patch this at least does not apply to the 
unstable version thats why I ported it. I have not checked 
if this does apply to the stable version.

 2.6.4 is oldstable. I think first priority is the stable version...

Yes. As I am only in the testing security team and thus 
handling testing and unstable issues please contact 
[EMAIL PROTECTED] to check if this is worth a DSA.

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgp0wLyJlYj5L.pgp
Description: PGP signature


Bug#453230: marked as done (streamtuner: FTBFS: `Depends' field, syntax error after reference to package `python-gtk2')

2007-11-30 Thread Debian Bug Tracking System
Your message dated Sat, 01 Dec 2007 05:17:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453230: fixed in streamtuner 0.99.99-10
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: streamtuner
version: 0.99.99-9
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20071126 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:

  dpkg-shlibdeps: warning: 
  debian/streamtuner/usr/lib/streamtuner/plugins/python.so shouldn't be linked 
  with libffi.so.4 (it uses none of its symbols).
  dpkg-shlibdeps: warning: symbol st_handler_notice used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol st_settings_get_music_dir used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol st_handler_field_set_description used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol st_plugin_set_label used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol st_action_register used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol g_free used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol g_strdup used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol g_assert_warning used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol st_handler_bind used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: symbol g_filename_from_utf8 used by 
  debian/streamtuner/usr/lib/streamtuner/plugins/local.so found in none of the 
  libraries.
  dpkg-shlibdeps: warning: 52 other similar warnings have been skipped (use -v 
  to see them all).
  dh_gencontrol
  dpkg-gencontrol: warning: unknown substitution variable ${misc:Depends}
  dh_md5sums
  dh_builddeb
  dpkg-deb: parse error, in file `debian/streamtuner/DEBIAN/control' near line 
  6 package `streamtuner':
   `Depends' field, syntax error after reference to package `python-gtk2'
  dh_builddeb: command returned error code 512
  make: *** [binary-arch] Error 1
  dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary gave error 
  exit status 2

The full build log is available from:
http://people.debian.org/~lucas/logs/2007/11/26

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


---End Message---
---BeginMessage---
Source: streamtuner
Source-Version: 0.99.99-10

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

streamtuner_0.99.99-10.diff.gz
  to pool/main/s/streamtuner/streamtuner_0.99.99-10.diff.gz
streamtuner_0.99.99-10.dsc
  to pool/main/s/streamtuner/streamtuner_0.99.99-10.dsc
streamtuner_0.99.99-10_amd64.deb
  to pool/main/s/streamtuner/streamtuner_0.99.99-10_amd64.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.
Ari Pollak [EMAIL PROTECTED] (supplier of updated streamtuner 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: RIPEMD160

Format: 1.7
Date: Fri, 30 Nov 2007 23:32:25 -0500
Source: streamtuner
Binary: 

Bug#443179: marked as done (ucf: expects the wrong answers from debconf)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 09:47:02 +
with message-id [EMAIL PROTECTED]
and subject line Bug#443179: fixed in ucf 3.004
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: ucf
Version: 3.002
Severity: important
Tags: patch

For keep current and threeway merge, ucf expects answers from
debconf which differ from what is specified in the template master. I
assumed that the template master is more up-to-date than ucf itself, so
the attached patch changes the expected answers in ucf and not the
template.

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

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

Versions of packages ucf depends on:
ii  coreutils 5.97-5.4   The GNU core utilities
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy

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

-- debconf information:
* ucf/changeprompt: keep the local version currently installed
* ucf/show_diff:
  ucf/changeprompt_threeway: keep the local version currently installed
  ucf/title:
--- ucf	2007-09-19 14:30:44.0 +0200
+++ ucf~	2007-09-19 14:37:38.0 +0200
@@ -195,11 +195,11 @@
 # These are strings that must match the untranslated choices
 # of the debconf question.
 choice_install_new=install the package maintainer's version
-choice_keep_current=keep the local version currently installed
+choice_keep_current=keep your currently-installed version
 choice_diff=show the differences between the versions
 choice_sdiff=show a side-by-side difference between the versions
 choice_diff_threeway=show a 3 way difference between available versions of the file
-choice_merge_threeway=do a 3 way merge between available versions (experimental)
+choice_merge_threeway=do a 3 way merge between available versions of the file [Very Experimental]
 choice_shell=start a new shell to examine the situation
 
 
---End Message---
---BeginMessage---
Source: ucf
Source-Version: 3.004

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

ucf_3.004.dsc
  to pool/main/u/ucf/ucf_3.004.dsc
ucf_3.004.tar.gz
  to pool/main/u/ucf/ucf_3.004.tar.gz
ucf_3.004_all.deb
  to pool/main/u/ucf/ucf_3.004_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.
Manoj Srivastava [EMAIL PROTECTED] (supplier of updated ucf 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, 30 Nov 2007 03:29:24 -0600
Source: ucf
Binary: ucf
Architecture: source all
Version: 3.004
Distribution: unstable
Urgency: high
Maintainer: Manoj Srivastava [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 ucf- Update Configuration File: preserve user changes to config files.
Closes: 443179 448634 449274 453084
Changes: 
 ucf (3.004) unstable; urgency=high
 .
   * For keep current and threeway merge, ucf expects answers from
 debconf which differ from what is specified in the template
 master. Frans Pop suggested using the Choices-C feature of debconf,
 which is relatively new, but defines a fixed alias for each option
 which Debconf will then use in db_get and db_set operations -- so no
 more matching the template in the code. He also kindly provided a
 working patch. Updated versioned dependency on debconf to reflect the
 need for a new version.Closes: #443179, #449274, #453084
   * Bug fix: [INTL:fi] Finnish translation of the debconf templates,
 thanks to Esko Arajärvi .Closes: Bug#448634
Files: 
 1f0af77722cda38892a75ffdf5dc49c4 648 utils optional ucf_3.004.dsc
 8c787ea5bdc9ea03eed8152d6f6e038c 79461 utils optional ucf_3.004.tar.gz
 5b6b6480a25a04bcee1d9940e4ae881d 62898 utils optional ucf_3.004_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG 

Processed: Fix for Bug#443179 commited to version control

2007-11-30 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 443179 +pending
Bug#443179: ucf: expects the wrong answers from debconf
Tags were: pending patch
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#453632: iceape hangs up at startup on an error box

2007-11-30 Thread [EMAIL PROTECTED]
Package: iceape
Version: 1.0.11~pre071022-0etch1+lenny1
Severity: grave
Justification: renders package unusable

Yesterday Iceape was working perfectly but today, when trying to start iceape, 
It hangs up showing an error message in a window :

Erreur d'analyse XML : entité non définie
Emplacement : chrome://navigator/content/navigator.xul
Numéro de ligne 62, Colonne 1 :window id=main-window
^  broadcaster id=Communicator:WorkMode
--^menuitem label=openHelpCmd.label; 
^


Here is the dpkg.log part concerning upgrades made yesterday :
2007-11-29 09:55:22 upgrade base-passwd 3.5.13 3.5.16
2007-11-29 09:55:22 status half-configured base-passwd 3.5.13
2007-11-29 09:55:22 status unpacked base-passwd 3.5.13
2007-11-29 09:55:22 status half-installed base-passwd 3.5.13
2007-11-29 09:55:22 status half-installed base-passwd 3.5.13
2007-11-29 09:55:22 status unpacked base-passwd 3.5.16
2007-11-29 09:55:22 status unpacked base-passwd 3.5.16
2007-11-29 09:55:23 status unpacked base-passwd 3.5.16
2007-11-29 09:55:24 status half-configured base-passwd 3.5.16
2007-11-29 09:55:25 status installed base-passwd 3.5.16
2007-11-29 09:55:26 upgrade libgnutls13 2.0.1-1 2.0.4-1
2007-11-29 09:55:26 status half-configured libgnutls13 2.0.1-1
2007-11-29 09:55:26 status unpacked libgnutls13 2.0.1-1
2007-11-29 09:55:26 status half-installed libgnutls13 2.0.1-1
2007-11-29 09:55:26 status half-installed libgnutls13 2.0.1-1
2007-11-29 09:55:27 status unpacked libgnutls13 2.0.4-1
2007-11-29 09:55:27 status unpacked libgnutls13 2.0.4-1
2007-11-29 09:55:27 upgrade man-db 2.5.0-3 2.5.0-4
2007-11-29 09:55:27 status half-configured man-db 2.5.0-3
2007-11-29 09:55:28 status unpacked man-db 2.5.0-3
2007-11-29 09:55:28 status half-installed man-db 2.5.0-3
2007-11-29 09:55:29 status half-installed man-db 2.5.0-3
2007-11-29 09:55:29 status unpacked man-db 2.5.0-4
2007-11-29 09:55:29 status unpacked man-db 2.5.0-4
2007-11-29 09:55:29 upgrade linux-libc-dev 2.6.22-4 2.6.22-6
2007-11-29 09:55:29 status half-configured linux-libc-dev 2.6.22-4
2007-11-29 09:55:29 status unpacked linux-libc-dev 2.6.22-4
2007-11-29 09:55:29 status half-installed linux-libc-dev 2.6.22-4
2007-11-29 09:55:30 status half-installed linux-libc-dev 2.6.22-4
2007-11-29 09:55:30 status unpacked linux-libc-dev 2.6.22-6
2007-11-29 09:55:30 status unpacked linux-libc-dev 2.6.22-6
2007-11-29 09:55:30 upgrade libdatetime-locale-perl 1:0.34-1 1:0.35-1+1.5.0
2007-11-29 09:55:30 status half-configured libdatetime-locale-perl 1:0.34-1
2007-11-29 09:55:30 status unpacked libdatetime-locale-perl 1:0.34-1
2007-11-29 09:55:30 status half-installed libdatetime-locale-perl 1:0.34-1
2007-11-29 09:55:30 status half-installed libdatetime-locale-perl 1:0.34-1
2007-11-29 09:55:30 status unpacked libdatetime-locale-perl 1:0.35-1+1.5.0
2007-11-29 09:55:30 status unpacked libdatetime-locale-perl 1:0.35-1+1.5.0
2007-11-29 09:55:31 status unpacked libgnutls13 2.0.4-1
2007-11-29 09:55:32 status half-configured libgnutls13 2.0.4-1
2007-11-29 09:55:47 status installed libgnutls13 2.0.4-1
2007-11-29 09:55:47 status unpacked man-db 2.5.0-4
2007-11-29 09:55:47 status unpacked man-db 2.5.0-4
2007-11-29 09:55:47 status unpacked man-db 2.5.0-4
2007-11-29 09:55:47 status unpacked man-db 2.5.0-4
2007-11-29 09:55:47 status half-configured man-db 2.5.0-4
2007-11-29 09:55:50 status installed man-db 2.5.0-4
2007-11-29 09:55:50 status unpacked linux-libc-dev 2.6.22-6
2007-11-29 09:55:50 status half-configured linux-libc-dev 2.6.22-6
2007-11-29 09:55:50 status installed linux-libc-dev 2.6.22-6
2007-11-29 09:55:50 status unpacked libdatetime-locale-perl 1:0.35-1+1.5.0
2007-11-29 09:55:50 status half-configured libdatetime-locale-perl 
1:0.35-1+1.5.0
2007-11-29 09:55:50 status installed libdatetime-locale-perl 1:0.35-1+1.5.0
2007-11-29 11:37:07 install python-wxgtk2.6 néant 2.6.3.2.2-1
2007-11-29 11:37:07 status half-installed python-wxgtk2.6 2.6.3.2.2-1
2007-11-29 11:37:08 status unpacked python-wxgtk2.6 2.6.3.2.2-1
2007-11-29 11:37:08 status unpacked python-wxgtk2.6 2.6.3.2.2-1
2007-11-29 11:37:08 install python-wxtools néant 2.6.3.2.2-1
2007-11-29 11:37:08 status half-installed python-wxtools 2.6.3.2.2-1
2007-11-29 11:37:08 status unpacked python-wxtools 2.6.3.2.2-1
2007-11-29 11:37:08 status unpacked python-wxtools 2.6.3.2.2-1
2007-11-29 11:37:09 status unpacked python-wxgtk2.6 2.6.3.2.2-1
2007-11-29 11:37:10 status half-configured python-wxgtk2.6 2.6.3.2.2-1
2007-11-29 11:37:14 status installed python-wxgtk2.6 2.6.3.2.2-1
2007-11-29 11:37:14 status unpacked python-wxtools 2.6.3.2.2-1
2007-11-29 11:37:14 status half-configured python-wxtools 2.6.3.2.2-1
2007-11-29 11:37:15 status installed python-wxtools 2.6.3.2.2-1



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

Kernel: Linux 2.6.8-3-686-smp (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL 

Bug#453397: marked as done (zope-common - logrotate: do not assume all instances are running as zope:zope)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 12:32:15 +
with message-id [EMAIL PROTECTED]
and subject line Bug#453397: fixed in zope3 3.3.1-4
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: zope-common
Version: 0.5.31
Severity: important


The logrotate configuration which is delivered with zope-common assumes,
that all instances are running as zope:zope, which is not always the
case.
The logrotate config should be maintained by dzhandle.


-- 
Bernd Zeimetz
[EMAIL PROTECTED] http://bzed.de/

---End Message---
---BeginMessage---
Source: zope3
Source-Version: 3.3.1-4

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

python-zopeinterface-dbg_3.3.1-4_amd64.deb
  to pool/main/z/zope3/python-zopeinterface-dbg_3.3.1-4_amd64.deb
python-zopeinterface_3.3.1-4_amd64.deb
  to pool/main/z/zope3/python-zopeinterface_3.3.1-4_amd64.deb
zope3-dbg_3.3.1-4_amd64.deb
  to pool/main/z/zope3/zope3-dbg_3.3.1-4_amd64.deb
zope3-doc_3.3.1-4_all.deb
  to pool/main/z/zope3/zope3-doc_3.3.1-4_all.deb
zope3-sandbox_3.3.1-4_all.deb
  to pool/main/z/zope3/zope3-sandbox_3.3.1-4_all.deb
zope3_3.3.1-4.diff.gz
  to pool/main/z/zope3/zope3_3.3.1-4.diff.gz
zope3_3.3.1-4.dsc
  to pool/main/z/zope3/zope3_3.3.1-4.dsc
zope3_3.3.1-4_amd64.deb
  to pool/main/z/zope3/zope3_3.3.1-4_amd64.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.
Fabio Tranchitella [EMAIL PROTECTED] (supplier of updated zope3 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, 29 Nov 2007 12:50:06 +0100
Source: zope3
Binary: python-zopeinterface zope3-dbg zope3 zope3-sandbox 
python-zopeinterface-dbg zope3-doc
Architecture: source all amd64
Version: 3.3.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 python-zopeinterface - The implementation of interface definitions for Zope 3
 python-zopeinterface-dbg - The implementation of interface definitions for 
Zope 3 (debug ext
 zope3  - Open Source Web Application Server (Libraries)
 zope3-dbg  - Open Source Web Application Server (debug extensions)
 zope3-doc  - Documentation for Zope3
 zope3-sandbox - sandbox instance for the zope3 web application server
Closes: 453397
Changes: 
 zope3 (3.3.1-4) unstable; urgency=low
 .
   * debian/zopeZVER.logrotate.in: use the original mode, user and group while
 rotating the logs. (Closes: #453397)
Files: 
 6a3047acf077e4b25a6b0fe637c6ecd1 992 web optional zope3_3.3.1-4.dsc
 7495e324ebf9f6f323cad703c2262790 16052 web optional zope3_3.3.1-4.diff.gz
 ed27cffb499d7bb0f10ccacdf657ca76 4170184 python optional 
zope3_3.3.1-4_amd64.deb
 c19804ff68a61ca54cf1ce39c332dee1 849976 python extra 
zope3-dbg_3.3.1-4_amd64.deb
 234372513d54b7596c20f46370fd584b 138756 python optional 
python-zopeinterface_3.3.1-4_amd64.deb
 76be95a62159a132b42984b575865889 72724 python extra 
python-zopeinterface-dbg_3.3.1-4_amd64.deb
 8f5147627e14a85431baa8c287358b94 225522 doc optional zope3-doc_3.3.1-4_all.deb
 bd65f892593e6f96a5c0a7058d5cae79 46738 web optional 
zope3-sandbox_3.3.1-4_all.deb

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

iD8DBQFHT/9AK/juK3+WFWQRAhv+AJ4jg/417W0NnivaXJ5ZUcVoXzmWXQCeP8Pi
TrIlOrc3tOn6wTa3WN6aGDQ=
=kC69
-END PGP SIGNATURE-


---End Message---


Bug#434373: marked as done (zope-common - logrotate: do not assume all instances are running as zope:zope)

2007-11-30 Thread Debian Bug Tracking System
Your message dated Fri, 30 Nov 2007 12:32:13 +
with message-id [EMAIL PROTECTED]
and subject line Bug#434373: fixed in zope2.9 2.9.8-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: zope-common
Version: 0.5.31
Severity: important


The logrotate configuration which is delivered with zope-common assumes,
that all instances are running as zope:zope, which is not always the
case.
The logrotate config should be maintained by dzhandle.


-- 
Bernd Zeimetz
[EMAIL PROTECTED] http://bzed.de/

---End Message---
---BeginMessage---
Source: zope2.9
Source-Version: 2.9.8-2

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

zope2.9-sandbox_2.9.8-2_all.deb
  to pool/main/z/zope2.9/zope2.9-sandbox_2.9.8-2_all.deb
zope2.9_2.9.8-2.diff.gz
  to pool/main/z/zope2.9/zope2.9_2.9.8-2.diff.gz
zope2.9_2.9.8-2.dsc
  to pool/main/z/zope2.9/zope2.9_2.9.8-2.dsc
zope2.9_2.9.8-2_amd64.deb
  to pool/main/z/zope2.9/zope2.9_2.9.8-2_amd64.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.
Fabio Tranchitella [EMAIL PROTECTED] (supplier of updated zope2.9 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, 29 Nov 2007 12:37:03 +0100
Source: zope2.9
Binary: zope2.9-sandbox zope2.9
Architecture: source amd64 all
Version: 2.9.8-2
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 zope2.9- Open Source Web Application Server
 zope2.9-sandbox - sandbox instance for the zope2.9 web application server
Closes: 434373
Changes: 
 zope2.9 (2.9.8-2) unstable; urgency=low
 .
   * debian/zopeZVER.logrotate.in: use the original mode, user and group while
 rotating the logs. (Closes: #434373)
Files: 
 87c6251b5443b5dd62be222008bf6da2 897 web optional zope2.9_2.9.8-2.dsc
 2d2cdefda522e8d71912037d0c69ef91 13470 web optional zope2.9_2.9.8-2.diff.gz
 17b6c492fdaa95416abb32cb24200eae 6967484 web optional zope2.9_2.9.8-2_amd64.deb
 af41487640a652ba3cc25cdf57c228a9 13126 web optional 
zope2.9-sandbox_2.9.8-2_all.deb

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

iD8DBQFHT/N7K/juK3+WFWQRAnkUAJ9pdm5gWbnxGgRXMJtCYSH6QaoFKwCfXkII
eqq8h0Wa2S+AIzaByVjU7pE=
=/3+u
-END PGP SIGNATURE-


---End Message---


Bug#453629: udftools: patch to corrct compiling issue.

2007-11-30 Thread Jean-Michel
Package: udftools
Version: 1.0.0b3-12
Followup-For: Bug #453629


 diff -pu wrudf.c.old  wrudf.c
--- wrudf.c.old 2007-11-30 14:23:15.0 +0100
+++ wrudf.c 2007-11-30 14:25:22.0 +0100
@@ -245,7 +245,10 @@ initialise(char *devicename)
} else if( strncmp( spm-partIdent.ident, UDF_ID_VIRTUAL,
strlen(UDF_ID_VIRTUAL)) == 0 )
virtualPartitionNum = i;
}
-   (char*)spm += spm-partitionMapLength;
+  spm =  (struct sparablePartitionMap*)
+((char*) spm +
+spm-partitionMapLength); /*gcc-4.1 does not
like  (char*)spm += */
+   /*(char*)spm += spm-partitionMapLength;*/
 }

 if( medium == CDR ) {



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

Versions of packages udftools depends on:
ii  debconf [debconf-2.0]  1.5.11Debian configuration management sy
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libreadline5   5.2-2 GNU readline and history libraries
ii  makedev2.3.1-83  creates device files in /dev

udftools recommends no packages.

-- no debconf information



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



Bug#452662: Accepted tripod 0.7.0-2 (source i386)

2007-11-30 Thread Mark Purcell
On Friday 30 November 2007, you wrote:
 On Fri, 30 Nov 2007, Mark Purcell wrote:
 * libgpod now does not depends on libffi
   - tripod - FTBFS: cannot find -lffi (Closes: #452662)

 There's no explanation on how you fixed this bug. Did you add libffi4-dev
 to the Build-Depends ? If yes, you should just say so:
  * Explicitely added libffi4-dev to Build-Depends since libgpod-dev does no
more depend on it. Closes: #452662

tripod doesn't use any  of the libffi4-dev headers, so it isn't a necessary 
dependency.

The -llibffi4 got pulled into the tripod build via libgpod (see #452829).

Thus #452662  #452829 are actually the same bug and fixed with the upload of 
libgpod. Guess I could of made this clearer in the changelog, perhaps 
referenced the libgpod bug.

Mark


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


  1   2   >