Bug#518585: gnome-utils: gnome-system-log shouldn't need gksu

2009-03-24 Thread Luca Bruno
tag 518585 patch
thanks

Sounds reasonable to me.
The only need is to remove the gksu patch under debian/patches.
Applying it would obsolete #479818.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
Index: debian/patches/01_logview_gksu.patch
===
--- debian/patches/01_logview_gksu.patch	(revision 19219)
+++ debian/patches/01_logview_gksu.patch	(working copy)
@@ -1,17 +0,0 @@
 logview/data/gnome-system-log.desktop.in.in.orig	2008-09-14 15:43:48.0 +0200
-+++ logview/data/gnome-system-log.desktop.in.in	2009-01-04 12:36:47.321178809 +0100
-@@ -1,11 +1,12 @@
- [Desktop Entry]
- _Name=System Log
- _Comment=View or monitor system log files
--Exec=gnome-system-log
-+TryExec=gksu
-+Exec=gksu gnome-system-log
- Icon=logviewer
- Terminal=false
- Type=Application
--StartupNotify=true
-+StartupNotify=false
- Categories=GTK;GNOME;System;Monitor;
- NotShowIn=KDE;
- X-GNOME-DocPath=gnome-system-log/gnome-system-log.xml


signature.asc
Description: Digital signature


Bug#516881: nc6 -- TCP/IP swiss army knife with IPv6 support

2009-03-20 Thread Luca Bruno
Guillaume Delacour scrisse:

 Hello,
 
 I think this is a good idea to drop the package since this tools does
 not have so much release (i just see this after ITA it :s)
 
 After some investigations, i see that:
 - nc.openbsd (netcat-openbsd package) have IPv6 and UDP support
 - nc6 have many supports like bluetooth support [1] via L2CAP
 protocol (yet used ?), buffer size, half-close, mtu and nru. I don't
 know if these features are useful for actual users of nc6 [2]
 - socat   seems to have same features that nc.openbsd have (IPv6,
 UDP, etc..)
 
 1: nc6(1)
 2: http://qa.debian.org/popcon.php?package=nc6
 So the problem does not seems to be the IPv6 support but other
 features of nc6...

So, it looks like the original intent of ipv6-support is already there
for alternatives, still nc6 has some interesting options. The
optimum would be to port them to nc-openbsd/socat, so that nc6 will
complete its scope.
I'll try to get in touch with related upstream developer and ask them
to cordinate the integration. I won't have time now to directly produce
patches, so I hope someone can keep the job soon.

In the meantime, nc6 could be kept in the archive as a pro-tempore
solution, if you're still interested in it.

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpB8XNETbL9e.pgp
Description: PGP signature


Bug#519913: btrfs-tools: FTBFS on alpha and ia64, printk cast warning

2009-03-16 Thread Luca Bruno
Package:  btrfs-tools
Version:  0.18-1
Severity: serious
Tags: patch

Some warnings of the form:
format '%llu' expects type 'long long unsigned int' but argument has
type 'u64'
in conjunction with -Werror are causing build failures on ia64 and
alpha. Patch attached to properly cast them, avoiding compiler
warnings.
This issue should be the last one stopping the migration to
testing...

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer
commit f1147b7796a2127d426ba976ebd319831d4cdea9
Author: Luca Bruno lu...@debian.org
Date:   Sun Mar 15 18:26:35 2009 +0100

btrfs-progs: Fix printf format casting errors

There are still some warnings of the form:

format '%llu' expects type 'long long unsigned int' but argument has type 'u64'

In conjunction with -Werror, this is causing some build failures.
Now they're properly casted, avoiding compiler warnings.

Signed-off-by: Luca Bruno lu...@debian.org

diff --git a/btrfsck.c b/btrfsck.c
index 5834ca3..dd546c8 100644
--- a/btrfsck.c
+++ b/btrfsck.c
@@ -1134,12 +1134,14 @@ static int check_inode_recs(struct btrfs_root *root,
 		ret = check_root_dir(rec);
 		if (ret) {
 			fprintf(stderr, root %llu root dir %llu error\n,
-root-root_key.objectid, root_dirid);
+(unsigned long long) root-root_key.objectid, 
+(unsigned long long) root_dirid);
 			error++;
 		}
 	} else {
 		fprintf(stderr, root %llu root dir %llu not found\n,
-			root-root_key.objectid, root_dirid);
+			(unsigned long long) root-root_key.objectid, 
+			(unsigned long long) root_dirid);
 	}
 
 	while (1) {
@@ -1160,7 +1162,8 @@ static int check_inode_recs(struct btrfs_root *root,
 		if (!rec-found_inode_item)
 			rec-errors |= I_ERR_NO_INODE_ITEM;
 		fprintf(stderr, root %llu inode %llu errors %x\n,
-			root-root_key.objectid, rec-ino, rec-errors);
+			(unsigned long long) root-root_key.objectid, 
+			(unsigned long long) rec-ino, rec-errors);
 		list_for_each_entry(backref, rec-backrefs, list) {
 			if (!backref-found_dir_item)
 backref-errors |= REF_ERR_NO_DIR_ITEM;
@@ -1170,7 +1173,8 @@ static int check_inode_recs(struct btrfs_root *root,
 backref-errors |= REF_ERR_NO_INODE_REF;
 			fprintf(stderr, \tunresolved ref dir %llu index %llu
  namelen %u name %s filetype %d error %x\n,
-backref-dir, backref-index,
+(unsigned long long) backref-dir, 
+(unsigned long long) backref-index,
 backref-namelen, backref-name,
 backref-filetype, backref-errors);
 		}
diff --git a/extent-tree.c b/extent-tree.c
index cc8d1d7..94ddb0c 100644
--- a/extent-tree.c
+++ b/extent-tree.c
@@ -823,7 +823,7 @@ int btrfs_lookup_extent_ref(struct btrfs_trans_handle *trans,
 		goto out;
 	if (ret != 0) {
 		btrfs_print_leaf(root, path-nodes[0]);
-		printk(failed to find block number %Lu\n, bytenr);
+		printk(failed to find block number %Lu\n, (unsigned long long) bytenr);
 		BUG();
 	}
 	l = path-nodes[0];
diff --git a/mkfs.c b/mkfs.c
index af7d12c..1533754 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -388,7 +388,7 @@ int main(int ac, char **av)
 	fprintf(stderr, File system size 
 		%llu bytes is too small, 
 		256M is required at least\n,
-		block_count);
+		(unsigned long long) block_count);
 	exit(1);
 }
 zero_end = 0;
diff --git a/print-tree.c b/print-tree.c
index 52ef7c7..8ff763f 100644
--- a/print-tree.c
+++ b/print-tree.c
@@ -70,7 +70,7 @@ static int print_inode_ref_item(struct extent_buffer *eb, struct btrfs_item *ite
 		len = (name_len = sizeof(namebuf))? name_len: sizeof(namebuf);
 		read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
 		printf(\t\tinode ref index %llu namelen %u name: %.*s\n,
-		   index, name_len, len, namebuf);
+		   (unsigned long long) index, name_len, len, namebuf);
 		len = sizeof(*ref) + name_len;
 		ref = (struct btrfs_inode_ref *)((char *)ref + len);
 		cur += len;


pgpZaYiV3kVxD.pgp
Description: PGP signature


Bug#519690: live-helper: rename categories to archive-areas

2009-03-14 Thread Luca Bruno
Package: live-helper
Version: 1.0.4-1
Severity: minor

As per debian policy 3.8.1, main/contrib/non-free have been renamed again
from category to archive-area.

-- Package-specific info:

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

Kernel: Linux 2.6.26-1-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 live-helper depends on:
ii  cdebootstrap0.5.4Bootstrap a Debian system
ii  debootstrap 1.0.10lenny1 Bootstrap a basic Debian system

Versions of packages live-helper recommends:
ii  gettext-base  0.17-6 GNU Internationalization utilities

Versions of packages live-helper suggests:
ii  dosfstools 3.0.2-1   utilities for making and checking 
ii  fakeroot   1.12.2Gives a fake root environment
ii  genisoimage9:1.1.9-1 Creates ISO-9660 CD-ROM filesystem
ii  grub   0.97-47lenny2 GRand Unified Bootloader (Legacy v
pn  memtest86+ | memtest86 none(no description available)
ii  mtools 4.0.4-1   Tools for manipulating MSDOS files
pn  parted none(no description available)
pn  squashfs-tools | genext2fs none(no description available)
ii  sudo   1.6.9p17-2Provide limited super user privile
ii  uuid-runtime   1.41.3-1  universally unique id library
pn  win32-loader   none(no description available)

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#516881: nc6 -- TCP/IP swiss army knife with IPv6 support

2009-03-14 Thread Luca Bruno
Hi Guillame,
what are the features strictly relevant to nc6 over other advanced
conections tools (eg. socat), to justify the existence of a separate
package?
If it only add ipv6 support and an enhanced support for UDP, I would
really say that socat already does this (and much more!).

Given that upstream seems dead and there's a great mess with various
netcat flavors, wouldn't be better to coordinate with other developers
to try porting the v6 patch to the mainstream flavors and drop this
package?

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpEDAIZojcoN.pgp
Description: PGP signature


Bug#515747: eclipse: Error on startup: JVM terminated.

2009-02-25 Thread Luca Bruno
tag 515747 confirmed
thanks

I confirm the bug. It seems that eclipse doesn't recognize any other vm
except the default one, or maybe I'm not able to tell him to start with that
vm. Tried with:
eclipse -vm /usr/lib/jvm/java-6-sun
eclipse -vm /usr/lib/jvm/java-6-sun/jre
eclipse -vm file:///usr/lib/jvm/java-6-sun
eclipse -vm /usr/lib/jvm/java-1.5.0-gcj-4.3-1.5.0.0

But I always get:
A Java Runtime Environment (JRE) or Java Development Kit (JDK)
must be available in order to run Eclipse. No Java virtual machine
was found after searching the following locations:
/usr/lib/jvm/java-6-sun

Of course the path output is varying according to the -vm option.
Notice that's not a symbolic link problem as the last one is not a symbolic
link.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#515747: eclipse: Error on startup: JVM terminated.

2009-02-25 Thread Luca Bruno
My bad, it works with -vm, but it needs right the java binary path,
not the whole installation path.
This is the error:
/usr/lib/jvm/java-6-sun/bin/java: symbol lookup error:
/home/lethal/.eclipse/org.eclipse.platform_3.2.0/configuration/org.eclipse.osgi/bundles/68/1/.cp/libswt-mozilla-gtk-3236.so:
undefined symbol: _ZN4nsID5ParseEPKc

Works with xulrunner-dev. Please Depend on it?

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#515052: ksplice-create fails to create tarball

2009-02-14 Thread Luca Bruno
Tim Abbott scrisse:

 Hello,
 This problem is caused by a bug in Ksplice 0.9.5 that was fixed in
 the Ksplice 0.9.6 upstream release.
 
I'm currently moving home and unstable queue is temporarily frozen due
to lenny release, 0.9.6 will be uploaded as soon as both factors get
less tricky (the first one in particular :).

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpvTKc4LsNdt.pgp
Description: PGP signature


Bug#512346: inkscape: window do not maximize and hide borders

2009-02-09 Thread Luca Bruno
reopen 512346 !
severity 512346 minor
thanks

Reducing the toolbar size is a work-around enforcing the user to keep that
option enabled, not a solution. Also the inkscape developers agreed it's a
work-around so they fixed it by making the tools sidebar flexible
(which will appear in the next release).
Most of all this work-around only works for high resolution screens,
but not for e.g. 800x600.

Reopening the bug and lowering severity to minor.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#512346: inkscape: window do not maximize and hide borders

2009-02-06 Thread Luca Bruno
tag 512346 confirmed
thanks

Happens to me too with the same configuration.
Also affects ubuntu [1] (please see the screenshot).
Confirming the bug.

[1] https://bugs.launchpad.net/debian/+source/inkscape/+bug/325709

-- 
lethalman.blogspot.com - Thoughts about computer technologies
code.google.com/p/syx - A Smalltalk-80 implementation searching for helpers



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



Bug#512346: inkscape: window do not maximize and hide borders

2009-02-06 Thread Luca Bruno
forwarded 512346 https://bugs.launchpad.net/inkscape/+bug/168648
notfound 512346 0.45.1-1.1
thanks

The bug should be fixed With the upcoming release of inkscape.
The problem is that the minimum height of the window is high, and it's
impossible for it to get maximized. This is due to the large number
of drawing tools.
Actually a workaround is to detach one toolbar to make space on the left,
maximize the window, then reattach the toolbar.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#512099: python-gtkmozembed: weird debug output when importing the module

2009-01-17 Thread Luca Bruno
Package: python-gtkmozembed
Version: 2.19.1-3
Severity: minor

Hello,
when I import the gtkmozembed module in Python I get some debug output that
I would expect:
~/ python
Python 2.5.2 (r252:60911, Jan  4 2009, 21:59:32) 
[GCC 4.3.2] on linux2
Type help, copyright, credits or license for more information.
 import gtkmozembed
location: /usr/lib/xulrunner-1.9/libxpcom.so 
before 3
 

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-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 python-gtkmozembed depends on:
ii  libatk1.0-0  1.22.0-1The ATK accessibility toolkit
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libcairo21.6.4-7 The Cairo 2D vector graphics libra
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libglib2.0-0 2.18.4-1The GLib library of C routines
ii  libgtk2.0-0  2.12.11-4   The GTK+ graphical user interface 
ii  libpango1.0-01.20.5-3Layout and rendering of internatio
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  python   2.5.2-3 An interactive high-level object-o
ii  python-gtk2  2.12.1-6Python bindings for the GTK+ widge
ii  python-support   0.8.4   automated rebuilding support for P
ii  xulrunner-1.91.9.0.5-1   XUL + XPCOM application runner

python-gtkmozembed recommends no packages.

Versions of packages python-gtkmozembed suggests:
ii  python-gnome2-extras-doc  2.19.1-3   Documentation for the extra GNOME 

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#502315: No equivalent to XMoveWindow

2009-01-17 Thread Luca Bruno
forwarded 502315 
https://sourceforge.net/tracker2/?func=detailaid=2515543group_id=10350atid=360350
thanks

On Wed, Oct 15, 2008 at 03:34:00PM +0100, Daniel Watkins wrote:
 It's not easy to move a window using python-xlib as it stands, whereas the C 
 API
 has XMoveWindow[0].
 
 [Footnote 0: http://tronche.com/gui/x/xlib/window/XMoveWindow.html]
 

You can still use XConfigureWindow[0] by obtaining other necessary
information before the call. Anyway it would be a good feature to have.
Forwarding upstream[1]. Notice that XMoveWindow it's not the only convenient
function that's missing in the wrapper.

[0] http://tronche.com/gui/x/xlib/window/XConfigureWindow.html
[1] 
https://sourceforge.net/tracker2/?func=detailaid=2515543group_id=10350atid=360350

 -- System Information:
 Debian Release: lenny/sid
   APT prefers unstable
   APT policy: (500, 'unstable'), (1, 'experimental')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 2.6.24-1-amd64 (SMP w/2 CPU cores)
 Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages python-xlib depends on:
 ii  python2.5.2-2An interactive high-level 
 object-o
 ii  python-support0.8.6  automated rebuilding support for 
 P
 
 python-xlib recommends no packages.
 
 python-xlib suggests no packages.
 
 -- no debconf information
 
 
 

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#511779: freespeak: Installation error in 0.3 (0.2 worked fine)

2009-01-14 Thread Luca Bruno
tag 511779 pending
thanks

On Wed, Jan 14, 2009 at 01:46:43PM +0100, Richard Scherping wrote:
 Compiling /usr/lib/python2.4/site-packages/freespeak/translation.py ...
   File /usr/lib/python2.4/site-packages/freespeak/translation.py, line 117
 yield
  ^
 SyntaxError: invalid syntax
 
 pycentral: pycentral pkginstall: error byte-compiling files (29)
 pycentral pkginstall: error byte-compiling files (29)

The yield syntax without any argument is not supported in Python 2.4. Next
debian release will bump the dependency to 2.5.
Thanks for your report.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#493362: [Reportbug-maint] Bug#493362: closed by Sandro Tosi matrixh...@gmail.com (Re: Bug#493362: running reportbug in a directory containing commands.py fails)

2008-12-28 Thread Luca Bruno
tag 493362 wontfix
thanks

It's not a reportbug problem since the commands module is a python module
and you won't have any other way to import it.
Maybe python should give precedence to PYTHONPATH, but Unix software teach
environment variables comes before default paths.
It's a wontfix in either reportbug and python.

On Sat, Aug 02, 2008 at 04:05:47PM +0200, Sandro Tosi wrote:
 and again:
 
 mo...@zion:~/tmp/deb/python/rep$ ls
 commands.py
 mo...@zion:~/tmp/deb/python/rep$
 PYTHONPATH=/home/morph/tmp/deb/python/rep/
 mo...@zion:~/tmp/deb/python/rep$ echo $PYTHONPATH
 /home/morph/tmp/deb/python/rep/

Sandro, please use export PYTHONPATH and you'll reproduce it.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#494921: Fw: Re: jGaramond font license

2008-12-27 Thread Luca Bruno
Upstream told me that he won't release it under a free license.
I'm thus considering this font non-free and non-distributable.
Below his response...

Begin forwarded message:

Date: Tue, 16 Dec 2008 21:01:58 +0100
From: Jan Thor jan AT janthor.de
To: Luca Bruno lucab AT debian.org
Subject: Re: jGaramond font license

Luca Bruno schrieb:

 Hi, 
 A debian user has just requested the inclusion of your jGaramond font
 in the distribution. While I've read that you're deprecating and no
 more supporting them, it could be still useful to have a free/libre
 Garamond typeface floating around.

 I'm thus suggesting you to liberate your work for the community,
 releasing it under a free license as this is already being done for a
 lot general interesting font.

 I'd encourage you to adopt a generally used license, such as the Open
 Font License (OFL): http://scripts.sil.org/OFL
 If you're still in doubt, there is a concise FAQ for it:
 http://scripts.sil.org/OFL-FAQ_web

Hello Luca,

I regret, but I can't do that.

Yours, Jan



pgpOsqcihNncV.pgp
Description: PGP signature


Bug#509819: apt-xapian-index: Error during first index update

2008-12-26 Thread Luca Bruno
Package: apt-xapian-index
Version: 0.13
Severity: minor

I've installed apt-xapian-index for the first time:
[snip]
# update-apt-xapian-index 
Reading current timestamp failed: [Errno 2] No such file or directory:
'/var/lib/apt-xapian-index/update-timestamp'. Assuming the index has not
been created yet.
Rebuilding Xapian index... 78% 
Traceback (most recent call last):
  File /usr/sbin/update-apt-xapian-index, line 430, in module
buildIndex(dbdir, addons, progress)
  File /usr/sbin/update-apt-xapian-index, line 152, in buildIndex
db.add_document(document)
xapian.DatabaseCorruptError: Failed to unlink
/var/lib/apt-xapian-index/index.2/postlist.baseA: No such file or directory
[/snip]
After that the index seems to be created successfully, the index works
correctly.

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-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 apt-xapian-index depends on:
ii  python  2.5.2-3  An interactive high-level object-o
ii  python-apt  0.7.7.1+nmu1 Python interface to libapt-pkg
ii  python-debian   0.1.10   Python modules to work with Debian
ii  python-xapian   1.0.7-3.1Xapian search engine interface for

apt-xapian-index recommends no packages.

apt-xapian-index suggests no packages.

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#506425: zenity: error while setting the notification icon

2008-12-23 Thread Luca Bruno
forwarded 506425 http://bugzilla.gnome.org/show_bug.cgi?id=525596
thanks

This bug is similar to an upstream bug.
Forwarding to http://bugzilla.gnome.org/show_bug.cgi?id=525596

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#508800: mailman: incorret boot dependency on mail-transport-agent

2008-12-15 Thread Luca Bruno
Package:  mailman
Version:  1:2.1.11-7
Severity: normal
User: initscripts-ng-de...@lists.alioth.debian.org
Usertags: incorrect-dependency

Hi, 
while installing on a insserv-enabled system, I encountered an issue
with mailman boot dependency list:

Unpacking mailman (from .../mailman_1%3a2.1.11-7_i386.deb) ...
Processing triggers for man-db ...
Setting up mailman (1:2.1.11-7) ...
Looking for enabled languages (this may take some time) ... done.
Installing site language en  done.
Configuring mailman for domain thetis ...
Upgrading from version 0x0 to 0x2010bf0
getting rid of old source files
insserv: Service mail-transport-agent has to be enabled to start service 
mailman-qrunner
insserv: exiting now!
dpkg: error processing mailman (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 mailman
E: Sub-process /usr/bin/dpkg returned an error code (1)

I discussed it briefly with Peter on IRC, which came up with suggestions:

pere the MTAs do not provide a boot facility mail-transport-agent, so it is 
 always wrong to add it as a dependency in the lsb header of init.d scripts.  
 they can't provide it, as it would give problems with conflicting provides.
pere (I know some script do provide it, but they are buggy and need to be 
 fixed too. :)
pere if mailman uses /usr/lib/sendmail as I suspect, there is no need to 
 have boot dependency on an mta.

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpJNq91d3LmG.pgp
Description: PGP signature


Bug#489145: #489145: Stucked libgit-fastexport-perl ITP

2008-12-13 Thread Luca Bruno
Hi Edi,
Almost 6 months later(!!) is there any progress on this ITP?
Otherwise just release it as RFP.

I think the debian-perl team (Cc: here), could probably take care of it
in a fashionable manner.

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpdi1I5HWXJg.pgp
Description: PGP signature


Bug#497760: [Pkg-fonts-devel] Bug#497760: RFP: ttf-aoyagi-kouzan -- Brush-style Japanese font

2008-12-13 Thread Luca Bruno
 You can use this font without any costs.
 You can use this font for commercial use. Printings, company logos,
 homepage graphics, character seals or any others are all free.
 
Are modifications allowed?

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgp6xEIlXKq8e.pgp
Description: PGP signature


Bug#494921: RFP: ttf-jgaramond -- Garamond-like font

2008-12-13 Thread Luca Bruno
 I really don't know, what is the license. In this page it in section
 Notable Free-as-in-Beer Fonts:

The actual zip-file is lacking any license, so I'd assume this is
really not a free font.

Anyway the author seems to have dismissed it, so at this point he could
probably release it under a free license...

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpLikHH7B5b4.pgp
Description: PGP signature


Bug#332182: libgtk2.0-0: valgrind reports errors inside gtk/gdk/glib

2008-12-12 Thread Luca Bruno
notfound 332182 2.12.11-4
thanks

Confirming no errors in lenny.
Please consider retrying [1]:
G_SLICE=always-malloc G_DEBUG=gc-friendly valgrind --tool=memcheck 
--leak-resolution=high --num-callers=20 ./testprogram

For what concerns the fgbgmodifier.c, I think a new bug with lower severity
might be more suitable. This one refers to errors not memory leaks.

[1] http://live.gnome.org/Valgrind

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

Kernel: Linux 2.6.26-1-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 libgtk2.0-0 depends on:
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6.1  The Cairo 2D vector graphics libra
ii  libcomerr21.41.3-1   common error description library
ii  libcups2  1.3.8-1lenny4  Common UNIX Printing System(tm) - 
ii  libfontconfig12.6.0-3generic font configuration library
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgnutls26   2.4.2-4the GNU TLS library - runtime libr
ii  libgtk2.0-common  2.12.11-4  Common files for the GTK+ graphica
ii  libjpeg62 6b-14  The Independent JPEG Group's JPEG 
ii  libkrb53  1.6.dfsg.4~beta1-4 MIT Kerberos runtime libraries
ii  libpango1.0-0 1.20.5-3   Layout and rendering of internatio
ii  libpng12-01.2.27-2   PNG library - runtime
ii  libtiff4  3.8.2-11   Tag Image File Format (TIFF) libra
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxcomposite11:0.4.0-3  X11 Composite extension library
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxdamage1   1:1.1.1-4  X11 damaged region extension libra
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxfixes31:4.0.3-2  X11 miscellaneous 'fixes' extensio
ii  libxi62:1.1.4-1  X11 Input extension library
ii  libxinerama1  2:1.0.3-2  X11 Xinerama extension library
ii  libxrandr22:1.2.3-1  X11 RandR extension library
ii  libxrender1   1:0.9.4-2  X Rendering Extension client libra
ii  zlib1g1:1.2.3.3.dfsg-12  compression library - runtime

Versions of packages libgtk2.0-0 recommends:
ii  hicolor-icon-theme0.10-1 default fallback theme for FreeDes
ii  libgtk2.0-bin 2.12.11-4  The programs for the GTK+ graphica

Versions of packages libgtk2.0-0 suggests:
ii  librsvg2-common   2.22.2-2   SAX-based renderer library for SVG

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#235067: nautilus: No limit on thumbnail cache - big disk space waste

2008-12-10 Thread Luca Bruno
reassign 235067 gnome-settings-daemon
tag 235067 fixed-upstream
thanks

This bug will appear fixed in gnome 2.24. Reassigning to gnome-settings-daemon 
as it depends on this upstream bug
http://bugzilla.gnome.org/show_bug.cgi?id=523159.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#254487: nautilus: Remounting rw/ro a mount point closes closes windows on that mount point

2008-12-10 Thread Luca Bruno
severity 254487 wishlist
thanks

Dropping severity to wishlist as it's not a real issue.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#384918: Icon changing on the desktop is more difficult then on the top panel.

2008-12-10 Thread Luca Bruno
notforwarded 384918
tags 384918 +upstream -fixed-upstream
severity 384918 wishlist
thanks

I agree with you, chossing the icon in nautilus isn't as friendly as in
gnome-panel.
The bug wasn't quite relative to the upstream bug #325024 as the reporter
wishes to have a friendlier chooser dialog.
For what concerns the Icon position in the properties, the Icon: label has
been dropped both in gnome-panel and in the recent upstream #325024.
Latest nautilus versions have cleaned up the Basic tab and now the icon
is more visible.
Lowering to wishlist as it doesn't affect the program functionality.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


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

2008-12-09 Thread Luca Bruno
Hello,
in browse mode it's redundant so one of the two might be hidden when using
always the browse mode.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#492590: gnome-appearance-properties does not show thumbnails and uses 100% CPU

2008-12-09 Thread Luca Bruno
tag 492590 fixed-upstream
reassign 492590 libgtk2.0-0
thanks

This bug has been fixed in upstream version 2.12.12 of GTK+.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#507906: Please remove optional depends on pypanel

2008-12-06 Thread Luca Bruno
Barry deFreese scrisse:

 Hi,
 I have recently requested the removal of pypanel from the archive.  
 Please remove the optional depends for pypanel from istanbul on your 
 next upload if possible.

I'll probably take care of this along with #485301 after lenny release.
Or are you going to request before that, and for lenny too?
 
 Thank you, 
 Barry deFreese
 Debian QA

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpTYxdF8frHJ.pgp
Description: PGP signature


Bug#508001: git-cvsimport connect error: Network is unreachable

2008-12-06 Thread Luca Bruno
Package: git-cvs
Version: 1:1.5.6.5-1
Severity: minor

Hello,
when issueing git-cvsimport I always get:
Initialized empty Git repository in /media/common/projects/MODULE/.git/
connect error: Network is unreachable
cvs rlog: Logging MODULE
...

Eventhough connects to the server and fetches the code.

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

Kernel: Linux 2.6.26-1-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 git-cvs depends on:
ii  cvsps2.1-4   Tool to generate CVS patch set inf
ii  git-core 1:1.5.6.5-1 fast, scalable, distributed revisi
ii  libdbd-sqlite3-perl  1.14-3  Perl DBI driver with a self-contai

git-cvs recommends no packages.

Versions of packages git-cvs suggests:
ii  cvs 1:1.12.13-12 Concurrent Versions System
pn  git-doc none   (no description available)

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#499617: ITP: pyamf -- Action Message Format support for Python

2008-11-29 Thread Luca Bruno
More than two months later, any news about this?
If you are no more interested or busy, please relabel it as RFP and
someone else will take care of it...

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpSxvRVJi54E.pgp
Description: PGP signature


Bug#500769: RFS: inkscape-textext

2008-11-29 Thread Luca Bruno
Salvatore Bonaccorso scrisse:

 Dear mentors,
 
 I am looking for a sponsor for my package inkscape-textext.

 inkscape-textext - Inkscape extension for editable LaTeX text or
 formula

I'm not really in favor of this ITP, as it mainly seems as a
wring reaction to the latex extension not working properly.

All main inkscape extensions are maintained within the upstream repo as
the extension interface is used to change a lot between each release,
and so they could broke often. You should talk to textext upstream to
better integrate with inkscape upstream.

What is surely missing is a better separation of inkscape core and all
other extensions, which was already proposed for 0.47 but not yet
realized.

I definitely would not welcome a one-package-per-extension policy, that
is the field where your package is currently going.

Thus I'm suggesting you to drop this ITP, work with Wolfram (which
currently seems a bit busy) to fix the other two related bugs, suggest
your upstream to get in touch with Inkscape developers to integrate the
extension avoiding duplicate code and maybe start discussing a better
extensions packaging (which would be really appreciate, IMHO).

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgp9bjy9j3hwx.pgp
Description: PGP signature


Bug#507318: python-dbus: dbus-python.pc requires dbus-1

2008-11-29 Thread Luca Bruno
Package: python-dbus
Version: 0.82.4-2
Severity: normal

Hello,
dbus-python.pc has Requires: dbus-1.
When using dbus-python, dbus development files are not needed, only the
runtime library is needed.
That Requires forces packages using dbus-python to Build-Depend on
libdbus-1-dev.

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

Kernel: Linux 2.6.26-1-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 python-dbus depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.1-4simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  python2.5.2-3An interactive high-level object-o
ii  python-support0.8.4  automated rebuilding support for P

Versions of packages python-dbus recommends:
ii  python-gobject2.14.2-1   Python bindings for the GObject li

Versions of packages python-dbus suggests:
pn  python-dbus-dbg   none (no description available)
ii  python-dbus-doc   0.82.4-2   Documentation for the D-Bus Python

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#507324: deskbar-applet: missing copyright in headers and for gnome-doc-tools.make

2008-11-29 Thread Luca Bruno
Package: deskbar-applet
Version: 2.22.3.1
Severity: wishlist

Hello,
deskbar-applet has no copyright headers in its Python source files.
Also, gnome-doc-tools.make copyright is not mentioned in debian/copyright.

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

Kernel: Linux 2.6.26-1-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 deskbar-applet depends on:
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6.1 The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-4   simple interprocess messaging syst
ii  libebook1.2-9  2.22.3-1.1Client library for evolution addre
ii  libedataserver1.2-92.22.3-1.1Utility library for evolution data
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgnome-desktop-2 2.22.3-2  Utility library for loading .deskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-2The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-5GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libstartup-notification0   0.9-1 library for program launch feedbac
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  python 2.5.2-3   An interactive high-level object-o
ii  python-central 0.6.8 register and build utility for Pyt
ii  python-dbus0.82.4-2  simple interprocess messaging syst
ii  python-glade2  2.12.1-6  GTK+ bindings: Glade support
ii  python-gnome2  2.22.0-1  Python bindings for the GNOME desk
ii  python-gnome2-desktop  2.22.0-2  Python bindings for the GNOME desk
ii  python-gtk22.12.1-6  Python bindings for the GTK+ widge

Versions of packages deskbar-applet recommends:
ii  gnome-utils   2.20.0.1-3 GNOME desktop utilities
pn  python-beagle none (no description available)
pn  python-soappy none (no description available)

deskbar-applet suggests no packages.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#477182: Please update the debbugs package

2008-11-28 Thread Luca Bruno
Hello,
what about uploading to experimental eventhough the package is not ready for
end user usage?

Best regards,

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#496894: [PATCH] add a default Subject to the Reply link in the web interface

2008-11-28 Thread Luca Bruno
tag 496894 patch
thanks

Hello,
I've attached a very simple but untested patch.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'templates/en_US/cgi/bugreport.tmpl'
--- templates/en_US/cgi/bugreport.tmpl	2008-09-19 00:21:05 +
+++ templates/en_US/cgi/bugreport.tmpl	2008-11-28 16:30:23 +
@@ -27,7 +27,7 @@
  $output .= sprintf qq(pa href=%sFull log/a/p),html_escape(bug_links(bug=$ref,links_only=1));
   }
   else {
- $output .=  qq(pa href=mailto:[EMAIL PROTECTED]Reply/a ).
+ $output .=  qq(pa href=mailto:[EMAIL PROTECTED]($status{subject})}Reply/a ).
 	  qq(or a href=mailto:[EMAIL PROTECTED]subscribe/a ).
 	   qq(to this bug./p\n);
  $output .=  qq(pa href=javascript:toggle_infmessages();Toggle useless messages/a/p);



signature.asc
Description: Digital signature


Bug#477182: Please update the debbugs package

2008-11-28 Thread Luca Bruno
Hello,
what about uploading to experimental eventhough it's not ready for being
used by users? That's the job of experimental, isn't it? ;)

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#507176: ITP: freespeak -- A frontend to online translator engines for GNOME.

2008-11-28 Thread Luca Bruno
Package: wnpp
Severity: wishlist
Owner: Luca Bruno [EMAIL PROTECTED]


* Package name: freespeak
  Version : 0.2.0
  Upstream Author : Luca Bruno [EMAIL PROTECTED]
* URL : http://freespeak.berlios.de/
* License : GPL
  Programming Lang: Python
  Description : A frontend to online translator engines for GNOME.

 With this program you can translate text and web pages using online
 translation engines. Currently supported translators are Google, Yahoo and 
 FreeTranslation.
 Features include tabbed consulting, automatically copy and paste from/to
 clipboard, expandible in a very easy way by writing translator modules,
 easy to use and to configure, localized (currently English and Italian),
 good integration with free desktop environments (mostly in GNOME).


signature.asc
Description: Digital signature


Bug#502909: weird characters in nicknames

2008-11-28 Thread Luca Bruno
tag 502909 upstream
forwarded 502909 http://bugzilla.gnome.org/show_bug.cgi?id=523220
thanks

Hello,
it looks like to be an upsteam problem.

Best regards,

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#223712: Permit i18n support in SizeToStr()

2008-11-18 Thread Luca Bruno
Hello,
thanks for your report.
The use of _() shouldn't be needed.
I've attached a proposed patch.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'apt-pkg/contrib/strutl.cc'
--- apt-pkg/contrib/strutl.cc	2008-10-03 18:57:25 +
+++ apt-pkg/contrib/strutl.cc	2008-11-18 21:58:49 +
@@ -304,13 +304,13 @@
{
   if (ASize  100  I != 0)
   {
- sprintf(S,%.1f%c,ASize,Ext[I]);
+ sprintf(S,%'.1f %c,ASize,Ext[I]);
 	 break;
   }
   
   if (ASize  1)
   {
- sprintf(S,%.0f%c,ASize,Ext[I]);
+ sprintf(S,%'.0f %c,ASize,Ext[I]);
 	 break;
   }
   ASize /= 1000.0;

=== modified file 'cmdline/acqprogress.cc'
--- cmdline/acqprogress.cc	2008-11-16 20:55:04 +
+++ cmdline/acqprogress.cc	2008-11-18 21:57:18 +
@@ -198,7 +198,7 @@
 
   // Add the current progress
   if (Mode == Long)
-	 snprintf(S,End-S, %lu,I-CurrentSize);
+	 snprintf(S,End-S, %'lu,I-CurrentSize);
   else
   {
 	 if (Mode == Medium || I-TotalSize == 0)



signature.asc
Description: Digital signature


Bug#414848: [PATCH] use '[Enter]' rather than 'enter'

2008-11-16 Thread Luca Bruno
severity 414848 minor
thanks

Hello,
thanks for your report.
I've updated the previous patches.
PO/POT files are autogenerated so they don't need changes.

Lowering severity to minor as it doesn't affect the program functionality.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'apt-pkg/acquire-worker.cc'
--- apt-pkg/acquire-worker.cc	2008-01-07 17:45:30 +
+++ apt-pkg/acquire-worker.cc	2008-11-16 20:42:33 +
@@ -398,7 +398,7 @@
   ostringstream msg,status;
   ioprintf(msg,_(Please insert the disc labeled: 
 		 '%s' 
-		 in the drive '%s' and press enter.),
+		 in the drive '%s' and press [Enter].),
 	   Media.c_str(),Drive.c_str());
   status  media-change:   // message
 	  Media   : // media

=== modified file 'cmdline/acqprogress.cc'
--- cmdline/acqprogress.cc	2006-12-14 11:39:29 +
+++ cmdline/acqprogress.cc	2008-11-16 20:42:11 +
@@ -270,7 +270,7 @@
   cout  '\r'  BlankLine  '\r';
ioprintf(cout,_(Media change: please insert the disc labeled\n
 		'%s'\n
-		   in the drive '%s' and press enter\n),
+		   in the drive '%s' and press [Enter]\n),
 	Media.c_str(),Drive.c_str());
 
char C = 0;

=== modified file 'cmdline/apt-cdrom.cc'
--- cmdline/apt-cdrom.cc	2007-08-01 22:51:20 +
+++ cmdline/apt-cdrom.cc	2008-11-16 20:42:18 +
@@ -90,7 +90,7 @@
 
 bool pkgCdromTextStatus::ChangeCdrom() 
 {
-   Prompt(_(Please insert a Disc in the drive and press enter));
+   Prompt(_(Please insert a Disc in the drive and press [Enter]));
return true;
 }
 

=== modified file 'debian/changelog'
--- debian/changelog	2008-11-14 20:13:18 +
+++ debian/changelog	2008-11-16 20:54:40 +
@@ -1,3 +1,11 @@
+apt (0.7.19~exp3) UNRELEASED; urgency=low
+
+  [ Luca Bruno ]
+  * Replace all press enter occurrences with press [Enter]
+(thanks to Andre Felipe Machado, closes: #414848)
+
+ -- Luca Bruno [EMAIL PROTECTED]  Sun, 16 Nov 2008 21:51:36 +0100
+
 apt (0.7.19~exp2) experimental; urgency=low
 
   [ Christian Perrier ]

=== modified file 'dselect/install'
--- dselect/install	2008-05-04 07:59:15 +
+++ dselect/install	2008-11-16 20:45:48 +
@@ -48,7 +48,7 @@
 
 if [ x$WAIT = xtrue ]; then
$APTGET $OPTS $APT_OPT0 $APT_OPT1 -d dselect-upgrade
-   echo $Press enter to continue.  read RES
+   echo $Press [Enter] to continue.  read RES
$APTGET $OPTS $APT_OPT0 $APT_OPT1 dselect-upgrade
RES=$?
 else

=== modified file 'dselect/update'
--- dselect/update	2006-12-14 11:39:29 +
+++ dselect/update	2008-11-16 20:45:41 +
@@ -42,7 +42,7 @@
 fi
 
 if [ x$PROMPT = xtrue ]; then
-   echo $Press enter to continue.  read RES;
+   echo $Press [Enter] to continue.  read RES;
 fi
 
 exit $STATUS



signature.asc
Description: Digital signature


Bug#459572: marked as done (/usr/bin/apt-get: please provide apt-get purge as a shorthand for apt-get remove --purge)

2008-11-07 Thread Luca Bruno
Perhaps bash completion of 'purge' is missing.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#485301: after lenny

2008-11-04 Thread Luca Bruno
As discussed on IRC, the python-gnome2-extras drop won't happen before
lenny, so the fix for this will get in just after the release.

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpaoxAjuxB4H.pgp
Description: PGP signature


Bug#500930: Wormux 0.8.2

2008-11-03 Thread Luca Bruno
Note that 0.8.2 is out now, and upstream is noticing the lack of
updates, see
http://www.wormux.org/blog/index.php?2008/10/31/56-wanted-deb-packager

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgp7aoHMnSyeq.pgp
Description: PGP signature


Bug#504222: RFP: htmlcxx -- htmlcxx is a simple non-validating html parser library for C++

2008-11-01 Thread Luca Bruno
Package: wnpp
Severity: wishlist


* Package name: htmlcxx
  Version : 0.83
  Upstream Author : Davi Reis [EMAIL PROTECTED]
* URL : http://htmlcxx.sourceforge.net/
* License : LGPL
  Programming Lang: C++
  Description : htmlcxx is a simple non-validating html parser library for 
C++

htmlcxx is a simple non-validating css1 and html parser for C++. Although
there are several other html parsers available, htmlcxx has some
characteristics that make it unique:

* STL like navigation of DOM tree, using excelent's tree.hh library from
  Kasper Peeters
* It is possible to reproduce exactly, character by character, the
original document from the parse tree
* Bundled css parser
* Optional parsing of attributes
* C++ code that looks like C++ (not so true anymore)
* Offsets of tags/elements in the original document are stored in the
nodes of the DOM tree

The parsing politics of htmlcxx were created trying to mimic mozilla
firefox (http://www.mozilla.org) behavior. So you should expect parse trees
similar to those create by firefox. However, differently from firefox,
htmlcxx does not insert non-existent stuff in your html. Therefore,
serializing the DOM tree gives exactly the same bytes contained in the
original HTML document. 

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#500418: istanbul Please also re-enable hppa

2008-10-28 Thread Luca Bruno
Thiemo Seufer scrisse:

 I can do a NMU if they are short on time. (And iff the bugs remains
 flagged as RC, as Developer's Reference 5.10.2.2 recommends.)

Sorry for not replying early on this. My intention was to wait after
lenny to fix both #500418 and 485301 at once.

While the architecture drop was just a (ugly) workaround of mine to fix
the symptoms of a toolchain bigger problem, I don't feel like an urgent
upload at this point of lenny release cycle would be justified by
the sole need of istanbul on mips* and hppa (ie. not stricly desktop
oriented arch) given the stability of the current version in lenny.

Please note that I'm not throwing mud at not-so-widespread arches (and
I'm with you supporting all of them) and that I'll restore them for
squeeze asap fixing the acknowledged regression; that said I wouldn't
classify this bug as RC.

I'm anyway just a man with my partial opinions, so if the release team
really sees this as an issue needing an immediate fix, I won't object to
the choice (and if Thiemo is already there I won't be against a quick
NMU targeting only #500418, as I'll probably be busy in the next few
days).

Otherwise, if nobody speak up before 24h, I'll downgrade severity.

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpAxylhf9LVc.pgp
Description: PGP signature


Bug#497789: security bug on iceweasel

2008-10-27 Thread Luca Bruno
Firstly, a rough translation of the previous mail for non-Italian
readers: 
She doesn't like the fact that the report was closed as
not-a-bug, stating that there are enough elements to prove it.
The first point here is that she says that new fake windows/frames
hijacked the workspace, interpreting that as a window spoofing attack
[1]. She adds that it isn't related to single rogue site, but it
happens on all sites with frames (citing gmail, yahoo, and various
other webmail).
The second issue she reports (maybe related) is that the flash
call fscommand() could be not safe, letting a malicious app the ability
to invoke program on the target host (in the first mail she report part
of the log of a network sniffer, during a SMB domain enum).
She suggest to fix the bug and implement an ip-based filter to avoid
the attack (here descibed as a mix of Man-in-the-middle and
tcp-connection injecting by a third party host).

Then my comments:
Firstly, the SMB enum is completely unrelated to this report, and I
think the reporter just mixed what is an internal SMB traffic with
which is usually called resource enumeration on an attacked host.
Then, the part regarding the ip-source check could be ignored, as she's
probably missing some fundamentals on the protocol (ie. here there
isn't any injection at tcp-level).

Coming back to browser issue, this is clearly a mixture of flash/swfdec
behavior and iceweasel own rendering. Judging from the screenshot, she's
using swfdec; looking at the source, both swfdec and gnash doesn't
fully support fscommand(), but only a minor and safe subset (ie. quit
and such). So actually this shouldn't pose a security problem (it
could be relevant with the proprietary plugin, though I can't really
say if fscommand() works without limits on linux, and what we could do
for that). Secondly, I won't say she's experiencing a window spoofing
attack. The only thing I can desume from the screenshot is a probably
strange rendering and disposition of some iframed sites, which could
be due to the embedded flash object, plus two unnamed windows which
should be something external (swf object players or such). I really
doubt that an intelligent user could be tricked this way by a
specifically crafted website (or, anyway, we can't do much more to
technically fix a human problem).

Many details of the report are anyway obscure, so I had to add some own
assumptions and interpretations to reach those conclusion. More details
and specific info are welcome, if I've missed some points.

I would agree with Cristoph closing this report as it isn't a bug in
iceweasel, nor in any free flash player.

In the end, I would agree with Luca, as I've already meet her on many
mailing (eg. debian-italian, cc-italian, debian-user both under her
real name and the nickname heba) and she has already proven to a be a
mixture of uncollaborative troll and an egocentric security paranoid
person, who is laking deep knowledge on certain fields and tends to
correlate unlinked events to describe them all as a security attack
in place (I could link previous threads here, but this isn't the main
point of the bug report). Her second mail in italian was almost confuse
as the first english one, plus adding some sarcastic comments that I
personally didn't like (but I won't really engage an harsh discussion
here).

Nonetheless, I tried to be objective and inspected the issue
from a neutral POV. Eric, please read all the above comments and decide
by yourself.

Cheers, Luca

[1] http://www.mikx.de/firespoofing/

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpONsBgx2A2x.pgp
Description: PGP signature


Bug#503612: /usr/bin/pulseaudio: pulseaudio fails to work

2008-10-27 Thread Luca Bruno
 Package: pulseaudio
 Version: 0.9.10-3
 
 I have installed the version of Pulseaudio in experimental and, now,
 have no audio.

experimental has 0.9.13, while your report here claims 0.9.10. What's
the real version in use? If it really just affects 0.9.13, please
change the version-found accordingly.

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgplhNRxvYIdy.pgp
Description: PGP signature


Bug#503529: O: udhcp -- very small DHCP client

2008-10-27 Thread Luca Bruno
Citing from udhcp upstream website:
«Note that the standalone udhcp client/server is not maintained anymore.
It was moved to busybox. Use the udhcp in busybox instead. (The rest of
this page was last updated in 2003 and is now obsolete).»

It looks like this source package could be dropped, if QA team wants.
Popcon report 122/143 install; busybox maintainers could consider
providing binary packages for this, if feasible.

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpH2hP2dflnm.pgp
Description: PGP signature


Bug#425150: apt: Don't show user/pass when failing to download.

2008-10-26 Thread Luca Bruno
Please paste the exact error you see.
I can't reproduce it with 0.7.14+b1.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#500560: apt: Not possible to use an @ (at sign) in username or password of a proxy

2008-10-26 Thread Luca Bruno
I do agree, also for :. I'd suggest to allow some escape like \: or \@ in
the file.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#497789: security bug on iceweasel

2008-10-25 Thread Luca Bruno
Ciao,
sembra esserci stata qualche incomprensione riguardo la segnalazione
iniziale, per cui non riesco a capire dalla tua prima mail in
inglese i dettagli del problema (e come me anche Christoph).

Ti chiederei quindi di esporre più dettagliatamente in italiano il
problema che hai riscontrato, così che mi/ci sia più facile capire di
cosa si tratta. In particolare sotto quali condizioni hai riscontrato
il problema e in cosa consiste l'attacco alla sicurezza. Le schermate
che hai allegato possono essere interpretate in diverse maniere, quindi
mi piacerebbe anche avere un commento sul dettaglio fondamentale che
ciascuna cerca di evidenziare.
Inoltre non ho colto il passaggio tra il problema del plugin flash e
quel che tu descrivi come sniffing e spoofing; ti spiacerebbe
illustrarmelo meglio?

Grazie, Luca

(Basically asking for a more complete report in Italian, hoping that's
easier to understand)

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpDho5P48UXP.pgp
Description: PGP signature


Bug#503330: Multiple Vulnerabilities (xss, insecure file handling and code execution)

2008-10-24 Thread Luca Bruno
Package: websvn
Version: 1.61-20
Severity: critical
Tags: security

A full disclosure bulletin has been posted today, reporting various 
security vulnerabilities in websvn.
The remote code execution should only affect etch version, while at a 
first glance the others are also still open in lenny/sid.
Check the complete bulletin at:
http://www.gulftech.org/?node=researcharticle_id=00132-10202008
http://www.milw0rm.com/exploits/6822

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpNi26uVyffE.pgp
Description: PGP signature


Bug#502909: xchat-gnome: weird characters in nicknames

2008-10-20 Thread Luca Bruno
Package: xchat-gnome
Version: 1:0.18-3
Severity: minor

Hello,
I'm using UTF-8 as you can see.
In the discussion there are weird characters surrounding nicknames which are
very boring:
##nickname##
Where # is a strange character. I'm not able to copy and paste an example,
or at least this is the result:H

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

Kernel: Linux 2.6.26-1-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 xchat-gnome depends on:
ii  libatk1.0-0  1.22.0-1The ATK accessibility toolkit
ii  libc62.7-14  GNU C Library: Shared libraries
ii  libcairo21.6.4-6 The Cairo 2D vector graphics libra
ii  libdbus-1-3  1.2.1-3 simple interprocess messaging syst
ii  libdbus-glib-1-2 0.76-1  simple interprocess messaging syst
ii  libgconf2-4  2.22.0-1GNOME configuration database syste
ii  libglade2-0  1:2.6.2-1   library to load .glade files at ru
ii  libglib2.0-0 2.16.6-1The GLib library of C routines
ii  libgnome2-0  2.20.1.1-1  The GNOME 2 library - runtime file
ii  libgnomeui-0 2.20.1.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   1:2.22.0-5  GNOME Virtual File System (runtime
ii  libgtk2.0-0  2.12.11-3   The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk2. 0.4.4-3 sends desktop notifications to a n
ii  libpango1.0-01.20.5-2Layout and rendering of internatio
ii  libperl5.10  5.10.0-15   Shared Perl library
ii  libsexy2 0.1.11-2+b1 collection of additional GTK+ widg
ii  libssl0.9.8  0.9.8g-13   SSL shared libraries
ii  libx11-6 2:1.1.5-2   X11 client-side library
ii  libxext6 2:1.0.4-1   X11 miscellaneous extension librar
ii  python2.52.5.2-11.1  An interactive high-level object-o
ii  tcl8.4   8.4.19-2Tcl (the Tool Command Language) v8
ii  xchat-gnome-common   1:0.18-3a new frontend to the popular X-Ch

xchat-gnome recommends no packages.

xchat-gnome suggests no packages.

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#502915: tomboy: create a note using hotkey doesn't present the window

2008-10-20 Thread Luca Bruno
Package: tomboy
Version: 0.10.2-1
Severity: normal

I set an hotkey for creating a new note. When I use that hotkey (I've tried
with different hotkeys) the window is created but it's not presented, it
goes to the bottom of the stack and I can't see it.
I think this is an important usability issue.

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

Kernel: Linux 2.6.26-1-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 tomboy depends on:
ii  gconf2  2.22.0-1 GNOME configuration database syste
ii  libc6   2.7-14   GNU C Library: Shared libraries
ii  libgconf2.0-cil 2.20.1-1 CLI binding for GConf 2.20
ii  libglib2.0-02.16.6-1 The GLib library of C routines
ii  libglib2.0-cil  2.12.1-2 CLI binding for the GLib utility l
ii  libgmime2.2-cil 2.2.22-2 CLI binding for the MIME library
ii  libgnome2.0-cil 2.20.1-1 CLI binding for GNOME 2.20
ii  libgnomeprint2.2-0  2.18.4-1 The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-02.18.2-1 GNOME 2.2 print architecture User 
ii  libgtk2.0-0 2.12.11-3The GTK+ graphical user interface 
ii  libgtk2.0-cil   2.12.1-2 CLI binding for the GTK+ toolkit 2
ii  libgtkspell02.0.13-1+b1  a spell-checking addon for GTK's T
ii  libmono-addins-gui0.2-cil   0.3.1-5  GTK# frontend library for Mono.Add
ii  libmono-addins0.2-cil   0.3.1-5  addin framework for extensible CLI
ii  libmono-corlib2.0-cil   1.9.1+dfsg-4 Mono core library (2.0)
ii  libmono-system2.0-cil   1.9.1+dfsg-4 Mono System libraries (2.0)
ii  libmono2.0-cil  1.9.1+dfsg-4 Mono libraries (2.0)
ii  libndesk-dbus-glib1.0-cil   0.4.1-1  CLI implementation of D-Bus (GLib 
ii  libndesk-dbus1.0-cil0.6.0-1  CLI implementation of D-Bus
ii  libpanel-applet2-0  2.20.3-5 library for GNOME Panel applets
ii  libpango1.0-0   1.20.5-2 Layout and rendering of internatio
ii  libx11-62:1.1.5-2X11 client-side library
ii  mono-runtime1.9.1+dfsg-4 Mono runtime

tomboy recommends no packages.

Versions of packages tomboy suggests:
pn  evolution none (no description available)

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#502914: tomboy: listening to hotkeys doesn't work

2008-10-20 Thread Luca Bruno
Package: tomboy
Version: 0.10.2-1
Severity: important

As per subject, the box Listen to hotkeys is checkered but when I press
Alt or Ctrl and something else, the hotkey is not set. Instead I have to set
it manually, like a normal entry. I would expect something like the keyboard
shurtcuts capplet of gnome.

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

Kernel: Linux 2.6.26-1-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 tomboy depends on:
ii  gconf2  2.22.0-1 GNOME configuration database syste
ii  libc6   2.7-14   GNU C Library: Shared libraries
ii  libgconf2.0-cil 2.20.1-1 CLI binding for GConf 2.20
ii  libglib2.0-02.16.6-1 The GLib library of C routines
ii  libglib2.0-cil  2.12.1-2 CLI binding for the GLib utility l
ii  libgmime2.2-cil 2.2.22-2 CLI binding for the MIME library
ii  libgnome2.0-cil 2.20.1-1 CLI binding for GNOME 2.20
ii  libgnomeprint2.2-0  2.18.4-1 The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-02.18.2-1 GNOME 2.2 print architecture User 
ii  libgtk2.0-0 2.12.11-3The GTK+ graphical user interface 
ii  libgtk2.0-cil   2.12.1-2 CLI binding for the GTK+ toolkit 2
ii  libgtkspell02.0.13-1+b1  a spell-checking addon for GTK's T
ii  libmono-addins-gui0.2-cil   0.3.1-5  GTK# frontend library for Mono.Add
ii  libmono-addins0.2-cil   0.3.1-5  addin framework for extensible CLI
ii  libmono-corlib2.0-cil   1.9.1+dfsg-4 Mono core library (2.0)
ii  libmono-system2.0-cil   1.9.1+dfsg-4 Mono System libraries (2.0)
ii  libmono2.0-cil  1.9.1+dfsg-4 Mono libraries (2.0)
ii  libndesk-dbus-glib1.0-cil   0.4.1-1  CLI implementation of D-Bus (GLib 
ii  libndesk-dbus1.0-cil0.6.0-1  CLI implementation of D-Bus
ii  libpanel-applet2-0  2.20.3-5 library for GNOME Panel applets
ii  libpango1.0-0   1.20.5-2 Layout and rendering of internatio
ii  libx11-62:1.1.5-2X11 client-side library
ii  mono-runtime1.9.1+dfsg-4 Mono runtime

tomboy recommends no packages.

Versions of packages tomboy suggests:
pn  evolution none (no description available)

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#502693: ipppd: must depend on makedev

2008-10-19 Thread Luca Bruno
Package: ipppd
Severity: important

Setting up ipppd (1:3.9.20060704-3.5) ...
Note: running MAKEDEV to create ISDN devices in /dev...
/var/lib/dpkg/info/ipppd.postinst: line 22: ./MAKEDEV: No such file or
directory
dpkg: error processing ipppd (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 ipppd
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

Kernel: Linux 2.6.26-1-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

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#502655: apt-file: find has no completion

2008-10-18 Thread Luca Bruno
Package: apt-file
Version: 2.1.5
Severity: minor

The 'search' command has a completion but the 'find' one, which is an alias
to search, doesn't.
Also, I'd like to ask if it's the case to add path completion to such
commands since I always try to complete paths.

Best regards,

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

Kernel: Linux 2.6.26-1-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 apt-file depends on:
ii  curl  7.18.2-5   Get a file from an HTTP, HTTPS or 
ii  libapt-pkg-perl   0.1.22+b1  Perl interface to libapt-pkg
ii  libconfig-file-perl   1.42-1 Parses simple configuration files
ii  liblist-moreutils-perl0.22-1+b1  Addition list functions not found 
ii  perl  5.10.0-15  Larry Wall's Practical Extraction 
ii  wget  1.11.4-2   retrieves files from the web

Versions of packages apt-file recommends:
ii  menu  2.1.40 generates programs menu for all me

Versions of packages apt-file suggests:
ii  openssh-client1:5.1p1-3  secure shell client, an rlogin/rsh
ii  sudo  1.6.9p17-1 Provide limited super user privile

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#392063: apt: build problem when configured with --disable-nls

2008-10-11 Thread Luca Bruno
tag 392063 confirmed

Hello,
thanks for your report.
I think this bug must be splitted in two different bugs.
I've updated the patch as it's pretty old now and doesn't apply well.

Could you check if the portability issues are gone with the new patch?

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'buildlib/apti18n.h.in'
--- buildlib/apti18n.h.in	2006-09-30 12:28:00 +
+++ buildlib/apti18n.h.in	2008-10-11 07:20:27 +
@@ -18,6 +18,8 @@
 #else
 // apt will not use any gettext
 # define setlocale(a, b)
+# define textdomain(a)
+# define bindtextdomain(a, b)
 # define _(x) x
 # define N_(x) x
 #endif

=== modified file 'buildlib/inttypes.h.in'
--- buildlib/inttypes.h.in	2004-09-20 16:55:00 +
+++ buildlib/inttypes.h.in	2008-10-11 07:20:27 +
@@ -4,6 +4,13 @@
 
 #include config.h
 
+#undef int32_t
+#undef uint32_t
+#undef int16_t
+#undef uint16_t
+#undef int8_t
+#undef uint8_t
+
 /* Generate the fixed bit size types */
 #if SIZEOF_INT == 4
   typedef int int32_t;

=== modified file 'cmdline/makefile'
--- cmdline/makefile	2007-07-03 19:38:32 +
+++ cmdline/makefile	2008-10-11 07:26:54 +
@@ -7,42 +7,42 @@
 
 # The apt-cache program
 PROGRAM=apt-cache
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = apt-cache.cc
 include $(PROGRAM_H)
 
 # The apt-get program
 PROGRAM=apt-get
-SLIBS = -lapt-pkg -lutil
+SLIBS = -lapt-pkg -lutil $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = apt-get.cc acqprogress.cc
 include $(PROGRAM_H)
 
 # The apt-config program
 PROGRAM=apt-config
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = apt-config.cc
 include $(PROGRAM_H)
 
 # The apt-cdrom program
 PROGRAM=apt-cdrom
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = apt-cdrom.cc 
 include $(PROGRAM_H)
 
 # The apt-sortpkgs program
 PROGRAM=apt-sortpkgs
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = apt-sortpkgs.cc
 include $(PROGRAM_H)
 
 # The apt-extracttemplates program
 PROGRAM=apt-extracttemplates
-SLIBS = -lapt-pkg -lapt-inst
+SLIBS = -lapt-pkg -lapt-inst $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = apt-extracttemplates.cc 
 include $(PROGRAM_H)

=== modified file 'ftparchive/makefile'
--- ftparchive/makefile	2004-09-20 17:06:43 +
+++ ftparchive/makefile	2008-10-11 07:27:09 +
@@ -8,7 +8,7 @@
 # The apt-ftparchive program
 ifdef BDBLIB
 PROGRAM=apt-ftparchive
-SLIBS = -lapt-pkg -lapt-inst $(BDBLIB)
+SLIBS = -lapt-pkg -lapt-inst $(BDBLIB) $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile apt-inst/makefile
 SOURCE = apt-ftparchive.cc cachedb.cc writer.cc contents.cc override.cc \
  multicompress.cc

=== modified file 'methods/makefile'
--- methods/makefile	2008-01-04 20:33:09 +
+++ methods/makefile	2008-10-11 07:28:36 +
@@ -12,70 +12,70 @@
 
 # The file method
 PROGRAM=file
-SLIBS = -lapt-pkg 
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = file.cc
 include $(PROGRAM_H)
 
 # The copy method
 PROGRAM=copy
-SLIBS = -lapt-pkg 
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = copy.cc
 include $(PROGRAM_H)
 
 # The gzip method
 PROGRAM=gzip
-SLIBS = -lapt-pkg 
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = gzip.cc
 include $(PROGRAM_H)
 
 # The gpgv method
 PROGRAM=gpgv
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = gpgv.cc
 include $(PROGRAM_H)
 
 # The cdrom method
 PROGRAM=cdrom
-SLIBS = -lapt-pkg 
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = cdrom.cc
 include $(PROGRAM_H)
 
 # The http method
 PROGRAM=http
-SLIBS = -lapt-pkg $(SOCKETLIBS)
+SLIBS = -lapt-pkg $(SOCKETLIBS) $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = http.cc rfc2553emu.cc connect.cc
 include $(PROGRAM_H)
 
 # The https method
 PROGRAM=https
-SLIBS = -lapt-pkg -lcurl
+SLIBS = -lapt-pkg -lcurl $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = https.cc
 include $(PROGRAM_H)
 
 # The ftp method
 PROGRAM=ftp
-SLIBS = -lapt-pkg $(SOCKETLIBS)
+SLIBS = -lapt-pkg $(SOCKETLIBS) $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = ftp.cc rfc2553emu.cc connect.cc
 include $(PROGRAM_H)
 
 # The rred method
 PROGRAM=rred
-SLIBS = -lapt-pkg $(SOCKETLIBS)
+SLIBS = -lapt-pkg $(SOCKETLIBS) $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = rred.cc
 include $(PROGRAM_H)
 
 # The rsh method
 PROGRAM=rsh
-SLIBS = -lapt-pkg
+SLIBS = -lapt-pkg $(INTLLIBS)
 LIB_MAKES = apt-pkg/makefile
 SOURCE = rsh.cc
 include $(PROGRAM_H)



signature.asc
Description: Digital signature


Bug#345901: [patch update] unclear whether contents of apt.conf are case-sensitive

2008-10-11 Thread Luca Bruno
Hello,
thanks very much for your report.
I agree with you it's unclear. I always thought it was case-sensitive.

The patch is old and doesn't apply well. I've updated it and added this
phrase too So in the previous example you could use
dpkg::pre-install-pkgs.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'doc/apt.conf.5.xml'
--- doc/apt.conf.5.xml	2008-02-19 19:37:41 +
+++ doc/apt.conf.5.xml	2008-10-11 08:24:09 +
@@ -75,6 +75,9 @@
filenamedocdir;examples/apt.conf/filename configureindex;
is a good guide for how it should look./para
 
+   paraThe names of the configuration items are not case-sensitive. So in the previous example
+   you could use literaldpkg::pre-install-pkgs/literal./para
+
paraTwo specials are allowed, literal#include/literal and literal#clear/literal 
literal#include/literal will include the given file, unless the filename
ends in a slash, then the whole directory is included.  



signature.asc
Description: Digital signature


Bug#457264: retitle to Please document APT::* group of options

2008-10-11 Thread Luca Bruno
retitle 457264 Please document APT::* group of options
thanks

Hello,
thanks very much for the report.
Your're right and I think other group of options must be documented as
well, like GPGV and Update.
I guess you mismatched the name of the option, maybe you meant to say
Never-MarkAuto-Sections.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#501407: gnome-core should depend on at-spi

2008-10-07 Thread Luca Bruno
 Thanks for your report.

 This is gnome-session's fault for not checking that at-spi is installed
 before trying to launch it. I have fixed it in our SVN.


Does it worth opening a bug on upstream maybe?

-- 
lethalman.blogspot.com - Thoughts about computer technologies
code.google.com/p/syx - A Smalltalk-80 implementation searching for helpers



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



Bug#471276: apt-mark.8.xml patch

2008-10-04 Thread Luca Bruno
severity 471276 minor
tag 471276 pending
thanks

Hello,
thanks very much for your report.
Attached a patch for the apt code.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'doc/apt-mark.8.xml'
--- doc/apt-mark.8.xml	2008-02-19 19:37:41 +
+++ doc/apt-mark.8.xml	2008-10-04 10:02:28 +
@@ -26,7 +26,7 @@
  !-- Man page title --
  refnamediv
 refnameapt-mark/refname
-refpurposeUtility to sort package index files/refpurpose
+refpurposemark/unmark a package as being automatically-installed/refpurpose
  /refnamediv
 
  !-- Arguments --



signature.asc
Description: Digital signature


Bug#386579: patch --option documentation in apt.ent

2008-10-04 Thread Luca Bruno
Hello,
thanks very much for your help.
The attached file patches apt.ent in the latest TIP.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'doc/apt.ent'
--- doc/apt.ent	2008-02-19 19:37:41 +
+++ doc/apt.ent	2008-10-04 10:22:55 +
@@ -259,6 +259,8 @@
   termoption--option/option/term
  listitemparaSet a Configuration Option; This will set an arbitrary
   configuration option. The syntax is option-o Foo::Bar=bar/option.
+  option-o/option and option--option/option can be used multiple
+  times to set different options.
  /para
  /listitem
  /varlistentry



signature.asc
Description: Digital signature


Bug#305796: apt.ent bug

2008-10-04 Thread Luca Bruno
reassign 305796 apt
forgemerge 298821 305796
tag 305796 pending
thanks

Hello,
this is a known bug in the doc/apt.ent file. This bug has already been fixed
in previous versions. All the similar bugs will be closed once other typo
patches land the experimental branch.
Thanks for your report.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#175940: updated patch

2008-10-04 Thread Luca Bruno
Hello,
I've attached an updated patch.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'doc/offline.sgml'
--- doc/offline.sgml	2008-03-15 18:26:36 +
+++ doc/offline.sgml	2008-10-04 10:44:11 +
@@ -44,7 +44,9 @@
 is to use APT to generate a list of packages that are required and then fetch
 them onto the disc using another machine with good connectivity. It is 
 even possible to use another Debian machine with APT or to use a completely 
-different OS and a download tool like wget.
+different OS and a download tool like wget. Let emremote host/em mean the
+machine downloading the packages, and emtarget host/em the one with bad or
+no connection.
 
 p
 This is achieved by creatively manipulating the APT configuration file. The
@@ -87,9 +89,9 @@
 The configuration file should tell APT to store its files on the disc and
 to use the configuration files on the disc as well. The sources.list should
 contain the proper sites that you wish to use from the remote machine, and
-the status file should be a copy of em/var/lib/dpkg/status/em. Please note,
-if you are using a local archive you must use copy URIs, the syntax is identical
-to file URIs.
+the status file should be a copy of em/var/lib/dpkg/status/em from the
+emtarget host/em. Please note, if you are using a local archive you must use
+copy URIs, the syntax is identical to file URIs.
 
 p
 emapt.conf/em must contain the necessary information to make APT use the 
@@ -99,7 +101,7 @@
  APT
  {
/* This is not necessary if the two machines are the same arch, it tells
-  the remote APT what architecture the Debian machine is */
+  the remote APT what architecture the target machine is */
Architecture i386;

Get::Download-Only true;
@@ -125,7 +127,7 @@
 configuration file in em/usr/share/doc/apt/examples/apt.conf/em.
 
 p
-On the remote Debian machine the first thing to do is mount the disc and copy 
+On the target machine the first thing to do is mount the disc and copy 
 em/var/lib/dpkg/status/em to it. You will also need to create the directories
 outlined in the Overview, emarchives/partial//em and emlists/partial//em
 Then take the disc to the remote machine and configure the sources.list. 
@@ -136,7 +138,7 @@
  # apt-get update
  [ APT fetches the package files ]
  # apt-get dist-upgrade
- [ APT fetches all the packages needed to upgrade your machine ]
+ [ APT fetches all the packages needed to upgrade the target machine ]
 /example
 
 The dist-upgrade command can be replaced with any-other standard APT commands,
@@ -146,7 +148,7 @@
 
 p
 Now the disc contains all of the index files and archives needed to upgrade
-the Debian machine. Take the disc back and run:
+the target machine. Take the disc back and run:
 
 example
   # export APT_CONFIG=/disc/apt.conf



signature.asc
Description: Digital signature


Bug#273100: Updated patch, help needed for l10n

2008-10-04 Thread Luca Bruno
severity 273100 normal
tag 273100 l10n confirmed
thanks

Hello,
thanks a lot for your report.
Bumping to normal as the synopsis of the program is important, as it
affects a lot of other apt tools.
The attached patch doesn't fix translations.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'doc/apt-cache.8.xml'
--- doc/apt-cache.8.xml	2006-12-14 11:39:29 +
+++ doc/apt-cache.8.xml	2008-10-04 11:00:50 +
@@ -34,7 +34,7 @@
cmdsynopsis
   commandapt-cache/command
   argoption-hvsn/option/arg
-  argoption-o=replaceableconfig string/replaceable/option/arg
+  argoption-o replaceableconfig/replaceable=replaceablestring/replaceable/option/arg
   argoption-c=replaceablefile/replaceable/option/arg
   group choice=req
  argadd arg choice=plain rep=repeatreplaceablefile/replaceable/arg/arg

=== modified file 'doc/apt-cdrom.8.xml'
--- doc/apt-cdrom.8.xml	2006-03-28 18:36:42 +
+++ doc/apt-cdrom.8.xml	2008-10-04 11:00:50 +
@@ -34,7 +34,7 @@
   commandapt-cdrom/command
   argoption-hvrmfan/option/arg
   argoption-d=replaceablecdrom mount point/replaceable/option/arg
-  argoption-o=replaceableconfig string/replaceable/option/arg
+  argoption-o replaceableconfig/replaceable=replaceablestring/replaceable/option/arg
   argoption-c=replaceablefile/replaceable/option/arg
   group
  argadd/arg

=== modified file 'doc/apt-config.8.xml'
--- doc/apt-config.8.xml	2006-03-28 18:36:42 +
+++ doc/apt-config.8.xml	2008-10-04 11:00:50 +
@@ -34,7 +34,7 @@
cmdsynopsis
   commandapt-config/command
   argoption-hv/option/arg
-  argoption-o=replaceableconfig string/replaceable/option/arg
+  argoption-o replaceableconfig/replaceable=replaceablestring/replaceable/option/arg
   argoption-c=replaceablefile/replaceable/option/arg
   group choice=req
  argshell/arg

=== modified file 'doc/apt-ftparchive.1.xml'
--- doc/apt-ftparchive.1.xml	2008-02-19 19:37:41 +
+++ doc/apt-ftparchive.1.xml	2008-10-04 11:00:50 +
@@ -38,7 +38,7 @@
   argoption--delink/option/arg
   argoption--readonly/option/arg
   argoption--contents/option/arg
-  argoption-o=replaceableconfig string/replaceable/option/arg
+  argoption-o replaceableconfig/replaceable=replaceablestring/replaceable/option/arg
   argoption-c=replaceablefile/replaceable/option/arg  
   group choice=req
  argpackagesarg choice=plain rep=repeatreplaceablepath/replaceable/argargreplaceableoverride/replaceableargreplaceablepathprefix/replaceable/arg/arg/arg

=== modified file 'doc/apt-get.8.xml'
--- doc/apt-get.8.xml	2008-10-03 18:41:16 +
+++ doc/apt-get.8.xml	2008-10-04 11:00:50 +
@@ -34,7 +34,7 @@
cmdsynopsis
   commandapt-get/command
   argoption-hvs/option/arg
-  argoption-o=replaceableconfig string/replaceable/option/arg
+  argoption-o replaceableconfig/replaceable=replaceablestring/replaceable/option/arg
   argoption-c=replaceablefile/replaceable/option/arg
   group choice=req
  argupdate/arg

=== modified file 'doc/apt-sortpkgs.1.xml'
--- doc/apt-sortpkgs.1.xml	2006-03-28 18:36:42 +
+++ doc/apt-sortpkgs.1.xml	2008-10-04 11:00:50 +
@@ -34,7 +34,7 @@
cmdsynopsis
   commandapt-sortpkgs/command
   argoption-hvs/option/arg
-  argoption-o=replaceableconfig string/replaceable/option/arg
+  argoption-o replaceableconfig/replaceable=replaceablestring/replaceable/option/arg
   argoption-c=replaceablefile/replaceable/option/arg
   arg choice=plain rep=repeatreplaceablefile/replaceable/arg
/cmdsynopsis

=== modified file 'doc/ja/apt-cache.ja.8.xml'
--- doc/ja/apt-cache.ja.8.xml	2006-05-17 15:58:24 +
+++ doc/ja/apt-cache.ja.8.xml	2008-10-04 11:01:27 +
@@ -37,7 +37,7 @@
cmdsynopsis
   commandapt-cache/command
   argoption-hvsn/option/arg
-  argoption-o=replaceableconfig string/replaceable/option/arg
+  argoption-o replaceableconfig/replaceable=replaceablestring/replaceable/option/arg
   argoption-c=replaceablefile/replaceable/option/arg
   group choice=req
  argadd arg choice=plain rep=repeatreplaceablefile/replaceable/arg/arg

=== modified file 'doc/ja/apt-cdrom.ja.8.xml'
--- doc/ja/apt-cdrom.ja.8.xml	2006-05-17 15:58:24 +
+++ doc/ja/apt-cdrom.ja.8.xml	2008-10-04 11:01:27 +
@@ -37,7 +37,7 @@
   commandapt-cdrom/command
   argoption-hvrmfan/option/arg
   argoption-d=replaceablecdrom mount point/replaceable/option/arg
-  argoption-o=replaceableconfig string/replaceable/option/arg
+  argoption-o replaceableconfig/replaceable=replaceablestring/replaceable/option/arg
   argoption-c=replaceablefile/replaceable/option/arg
   group
  argadd/arg

=== modified file 'doc/ja/apt-config.ja.8.xml'
--- doc/ja/apt-config.ja.8.xml	2006-05-17 15:58:24 

Bug#493382: patch configuration memory leak

2008-10-04 Thread Luca Bruno
tag 493382 confirmed
thanks

Hello,
thanks very much for your report.
You patch is good, though in other places in the code a buffer is used and
an error is raised whenever the line is too much long.
I attach the new patch, but I haven't tested it yet. I used the 500 length, 
since the previous code used
to divide 1024 by 2. Well, the worse problem is that sizeof(Buffer) is 4 (or
8) not 1024.

 it managed to leak out a megabyte of memory in no time, gods only know why

I'm not god but for each configuration line 1024 bytes are lost ;)

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'apt-pkg/contrib/configuration.cc'
--- apt-pkg/contrib/configuration.cc	2008-04-02 03:55:09 +
+++ apt-pkg/contrib/configuration.cc	2008-10-04 15:42:44 +
@@ -505,6 +505,7 @@

int CurLine = 0;
bool InComment = false;
+   char Buffer[500];
while (F.eof() == false)
{
   // The raw input line.
@@ -513,16 +514,12 @@
   std::string Fragment;
 
   // Grab the next line of F and place it in Input.
-  do
-	{
-	  char *Buffer = new char[1024];
-
-	  F.clear();
-	  F.getline(Buffer,sizeof(Buffer) / 2);
-
-	  Input += Buffer;
-	}
-  while (F.fail()  !F.eof());
+  F.clear();
+  F.getline(Buffer,sizeof(Buffer));
+  if (F.fail()  !F.feof())
+return _error-Error(_(Line %u too long in source list %s.),   
+			CurLine,FName.c_str());  
+  Input += Buffer;
 
   // Expand tabs in the input line and remove leading and trailing
   // whitespace.



signature.asc
Description: Digital signature


Bug#202493: agree with wontfix

2008-10-04 Thread Luca Bruno
Hello,

If apt-cache show does not know about a package, it should exit with a
nonzero status. Zero breaks all kinds of scripts which check
apt-cache's exit status and rely on sensible information.

apt-cache show accepts multiple packages, how would you decide the exit
status? WHen all of the given packages are not found? When one of the
packages are not found? When to exit?

In my opinion, the behavior for exit() would be too ambiguous.

Best regards,

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#277536: [PATCH] bug apt-cache: . and * in regexp, documented

2008-10-04 Thread Luca Bruno
tag 277536 patch
thanks

Hello,
I'm proposing the attached patch for apt-cache.8.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System
=== modified file 'doc/apt-cache.8.xml'
--- doc/apt-cache.8.xml	2006-12-14 11:39:29 +
+++ doc/apt-cache.8.xml	2008-10-04 21:09:20 +
@@ -197,9 +197,14 @@
 
  varlistentrytermsearch replaceableregex [ regex ... ]/replaceable/term
  listitemparaliteralsearch/literal performs a full text search on all available package
- lists for the regex pattern given. It searches the package names and the
+ lists for the POSIX regex pattern given, see 
+ refentrytitlecommandregex/command/refentrytitle
+ manvolnum7/manvolnum.
+ It searches the package names and the
  descriptions for an occurrence of the regular expression and prints out
- the package name and the short description. If option--full/option is given
+ the package name and the short description, including virtual package
+ names.
+ If option--full/option is given
  then output identical to literalshow/literal is produced for each matched
  package, and if option--names-only/option is given then the long description
  is not searched, only the package name is./para



signature.asc
Description: Digital signature


Bug#298821: Thanks for your report

2008-10-03 Thread Luca Bruno
merge 145575 298821
untag 298821 sarge
thanks

Hello,
thanks very much for your help!
The patch is as similar as the merged bug one, it looks good.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#426913: Thanks

2008-10-02 Thread Luca Bruno
usertag 426913 docs
tag 426913 pending
thanks

Hello,
thanks very much for your report.
The patch looks good, altough in my opinion it's better to use the full word 
will.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#350575: Thanks for your contribution

2008-10-02 Thread Luca Bruno
usertag 350575 docs
tag 350575 pending
severity 350575 minor
thanks

Hello,
thanks very much for your patch. We're sorry the patch hasn't been reviewed
for a long time.
Notice doc/apt-key.8 is not versioned, the rest of the patch looks good to
me.
Lowering to minor as it doesn't affect the package usefulness.
I hope it will be applied soon in experimental.

Best regards,

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#490347: Thanks

2008-10-02 Thread Luca Bruno
usertag 490347 docs
severity 490347 minor
thanks

Hello,
thanks very much for your report and for your patch!
Lowering to minor as it doesn't affect the functionality of the package.
Thanks again.

Best regards,

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#368665: Thanks for your report

2008-10-02 Thread Luca Bruno
severity 368665 minor
usertag 368665 docs
thanks

Hello,
thanks very much for your report and for your patches.
Though there are differences in build dirs, which is not versioned, your
patches look good.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#484485: Good idea

2008-10-02 Thread Luca Bruno
severity 484485 wishlist
thanks

In my opinion it's a good idea, though not all packages use the Homepage
field and the user might expect at least one result from the search.
Thanks very much for your patch.

Best regards,

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#493143: Thanks

2008-10-02 Thread Luca Bruno
severity 493143 wishlist
thanks

Thanks very much for your update!

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#223558: Thanks for your report

2008-10-02 Thread Luca Bruno
tag 223558 l10n
thanks

Thanks very much for the report.
I suppose the right patch is the one attached to #223712.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#500468: No editor in anjuta

2008-10-01 Thread Luca Bruno
In particular, anjuta now fails to find gtksourceview or scintilla
plugin to edit files (you could see that it no more asks for a choice
among them). It was still working in 2:2.4.2-1

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpvSDiSXMSeG.pgp
Description: PGP signature


Bug#500468: Rebuilt and working

2008-10-01 Thread Luca Bruno
Just as a note, I've rebuilt it in a clean i386 sid chroot and now it
works.
As the autobuilders for other arch are still waiting for some
build-deps, I can't check those build log.

Rob, can you please check your build environment?

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpBvyrrePHAj.pgp
Description: PGP signature


Bug#458236: Can't reproduce

2008-09-30 Thread Luca Bruno
I can't reproduce the bug, using file-roller 2.20.2-1. This might have been
fixed upstream.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#471260: Rendering problems?

2008-09-30 Thread Luca Bruno
Thanks for your report.

It's like you are having some rendering problems, instead of a real
duplicate line.
Does it happen with latest gedit/2.22.3-1?

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#398957: lilo failure with LVM, ubuntu's workaround in lilo-installer

2008-09-29 Thread Luca Bruno
reopen 398957
thanks

It looks like the bug has been closed by a spam mail :(, so I'm
reopening it.
Anyway I've just seen it on a recent Lenny netinstall (at
least I think, I was in a hurry so no time for problem inspection).

Searching the net, I've found a similar problem workarounded by ubuntu
in lilo-installer with the patch attached at
https://bugs.launchpad.net/ubuntu/+source/lilo-installer/+bug/105631
and not yet merged in lenny's package.

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgp4fSP68Sjkz.pgp
Description: PGP signature


Bug#500327: gnome-backgrounds: upgrade to standards version 3.8.0

2008-09-27 Thread Luca Bruno
Package: gnome-backgrounds
Version: 2.22.0-1
Severity: minor
Tags: patch

I have followed the upgrading-checklist.txt shipped with debian-policy.
I've also added the Homepage field as discussed on IRC.

* The base section has been removed.  contrib and non-free have been
  removed from the section list; they are only categories.  The base  
  system is now defined by priority. 

[OK] base section not used

* If dpkg-source -x doesn't provide the source that will be compiled,
  a debian/rules patch target is recommended and should do whatever
  else is necessary.
* If dpkg-source -x doesn't produce source ready for editing and   
  building with dpkg-buildpackage, packages should include a
  debian/README.source file explaining how to generate the patched 
  source, add a new modification, and remove an existing
  modification.  This file may also be used to document packaging a
  new upstream release and any other complexity of the Debian build
  process. 

[OK] The sources provided compile successfully.

* Standardized the format of DEB_BUILD_OPTIONS.  Specified permitted   
  characters for tags, required that tags be whitespace-separated,   
  allowed packages to assume non-conflicting tags, and required
  unknown flags be ignored.

[OK] No DEB_BUILD_OPTIONS used

* Added parallel=n to the standardized DEB_BUILD_OPTIONS tags,
  indicating that a package should be built using up to n parallel
  processes if the package supports it

[OK] No parallel build specified

* Debian packages should not use convience copies of code from other
  packages unless the included package is explicitly intended to be   
  used that way. 

[OK] No third-party code included in the package

* The Uploaders field in debian/control may be wrapped.

[OK] The field content is all in one row

* An empty Debian revision is equivalent to a Debian revision of 0 in
  a version number.

[OK] 

* New Homepage field for upstream web sites.

[OK] Added field with http://www.gnome.org

* The Breaks field declares that this package breaks another and 
  prevents installation of the breaking package unless the package 
  named in Breaks is deconfigured first.  This field should not be
  used until the dpkg in Debian stable supports it.

[OK] No Breaks field

* Clarify which files should go into a shared library package, into a
  separate package, or into the -dev package.  Suggest -tools instead
  of -runtime for runtime support programs, since that naming is more
  common in Debian.

[OK] Neither shared libraries nor runtime support programs.

* Files in /etc/cron.{hourly,daily,weekly,monthly} must be
  configuration files (upgraded from should).  Mention the hourly
  directory. 

[OK] No cron files

* Packages providing /etc/X11/Xresources files need not conflict with 
  xbase ( 3.3.2.3a-2), which is long-obsolete.

[OK] No such files are provided.

* Manual pages in locale-specific directories should use either the
  legacy encoding for that directory or UTF-8.  Country names should
  not be included in locale-specific manual page directories unless
  indicating a significant difference in the language.  All
  characters in the manual page source should be representable in the
  legacy encoding for a locale even if the man page is encoded in
  UTF-8.

[OK] No man pages provided.

* The Apache 2.0 license is now in common-licenses and should be
  referenced rather than quoted in debian/copyright.

[OK] No apache license used.

* Packages in contrib and non-free should state in the copyright file
  that the package is not part of Debian GNU/Linux and briefly
  explain why.

[OK] The package is in the main category.

* Underscore (_) is allowed in debconf template names.

[OK] No debconf templates.

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

Kernel: Linux 2.6.26-1-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

-- no debconf information

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.ammazzatecitutti.org - Ammazzateci tutti
Index: debian/control
===
--- debian/control	(revision 17157)
+++ debian/control	(working copy)
@@ -7,7 +7,8 @@
cdbs,
gnome-pkg-tools
 Build-Depends-Indep: libxml-parser-perl
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
+Homepage: http://www.gnome.org
 
 Package: gnome-backgrounds
 Architecture: all


signature.asc
Description: Digital signature


Bug#500212: live-helper: rescue list contains lsusb package

2008-09-26 Thread Luca Bruno
Package: live-helper
Version: 1.0.0-2
Severity: normal

The rescue list contains a package named lsusb which is not present in any
Debian distribution. This stops lh_build.


-- Package-specific info:

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

Kernel: Linux 2.6.26-1-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 live-helper depends on:
ii  cdebootstrap  0.5.3  Bootstrap a Debian system
ii  debootstrap   1.0.10 Bootstrap a basic Debian system
ii  gettext-base  0.17-3 GNU Internationalization utilities

live-helper recommends no packages.

Versions of packages live-helper suggests:
ii  dosfstools2.11-6 utilities for making and checking 
ii  fakeroot  1.9.5  Gives a fake root environment
ii  genisoimage   9:1.1.8-1  Creates ISO-9660 CD-ROM filesystem
ii  grub  0.97-47GRand Unified Bootloader (Legacy v
pn  memtest86+ | memtest86none (no description available)
ii  mtools3.9.11-1   Tools for manipulating MSDOS files
pn  partednone (no description available)
pn  squashfs-tools | genext2fs |  none (no description available)
ii  sudo  1.6.9p17-1 Provide limited super user privile
pn  uuid-runtime  none (no description available)
pn  win32-loader  none (no description available)

-- no debconf information



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



Bug#500130: gnome-panel: upgrade to standards version 3.8.0

2008-09-25 Thread Luca Bruno
Package: gnome-panel
Version: 2.20.3-5
Severity: minor

Hello, I'm new to Debian and packaging. Anyway I'm trying to contribute the
switch to the new debian policy version 3.8.0 as per the
upgrading-checklist.txt.

* The base section has been removed.  contrib and non-free have been
  removed from the section list; they are only categories.  The base
  system is now defined by priority.

[OK] gnome-panel has not base section

* If dpkg-source -x doesn't provide the source that will be compiled,
  a debian/rules patch target is recommended and should do whatever
  else is necessary.
* If dpkg-source -x doesn't produce source ready for editing and 
  building with dpkg-buildpackage, packages should include a
  debian/README.source file explaining how to generate the patched
  source, add a new modification, and remove an existing
  modification.  This file may also be used to document packaging a
  new upstream release and any other complexity of the Debian build
  process.  

[OK] dpkg-source -x gnome-panel*.dsc provides the source that will be
compiled 
and the compilation is successful.

* Standardized the format of DEB_BUILD_OPTIONS.  Specified permitted
  characters for tags, required that tags be whitespace-separated,
  allowed packages to assume non-conflicting tags, and required
  unknown flags be ignored. 
* Added parallel=n to the standardized DEB_BUILD_OPTIONS tags,
  indicating that a package should be built using up to n parallel
  processes if the package supports it

[??] No DEB_BUILD_OPTIONS neither in debian/rules nor in
/usr/share/gnome-pkg-t

* Debian packages should not use convience copies of code from other
  packages unless the included package is explicitly intended to be  
  used that way.

[OK] gnome-panel doesn't seem to contain any third-party software included
in its distribution tarball.

* The Uploaders field in debian/control may be wrapped.

[OK] The Uploaders field is all in a row without line breaks that could span   
multiple lines.

* An empty Debian revision is equivalent to a Debian revision of 0 in
  a version number.

[OK] Current package has debian revision 6.

* New Homepage field for upstream web sites.

[OK] Other gnome packages have no upstream Homepage field.

* The Breaks field declares that this package breaks another and 
  prevents installation of the breaking package unless the package
  named in Breaks is deconfigured first.  This field should not be
  used until the dpkg in Debian stable supports it.

[OK] No package in Breaks field.

* Clarify which files should go into a shared library package, into a
  separate package, or into the -dev package.  Suggest -tools instead
  of -runtime for runtime support programs, since that naming is more
  common in Debian.

[OK] gnome-panel seems to have no runtime support programs.

* Files in /etc/cron.{hourly,daily,weekly,monthly} must be
  configuration files (upgraded from should).  Mention the hourly
  directory.

[OK] gnome-panel seems to have no cron files.

* Packages providing /etc/X11/Xresources files need not conflict with
  xbase ( 3.3.2.3a-2), which is long-obsolete.

[OK] gnome-panel doesn't seem to provide such files.

* Manual pages in locale-specific directories should use either the
  legacy encoding for that directory or UTF-8.  Country names should
  not be included in locale-specific manual page directories unless
  indicating a significant difference in the language.  All
  characters in the manual page source should be representable in the
  legacy encoding for a locale even if the man page is encoded in
  UTF-8.

[OK] gnome-panel.1 is encoded in UTF-8

* The Apache 2.0 license is now in common-licenses and should be
  referenced rather than quoted in debian/copyright.

[OK] gnome-panel doesn't seem to use the Apache 2.0 license.

* Packages in contrib and non-free should state in the copyright file
  that the package is not part of Debian GNU/Linux and briefly
  explain why.

[OK] gnome-panel is part of the main category.

* Underscore (_) is allowed in debconf template names.

[OK] gnome-panel has no debconf templates.

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

Kernel: Linux 2.6.26-1-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 gnome-panel depends on:
ii  gnome-about2.22.3-1  The GNOME about box
ii  gnome-control-center   1:2.22.2.1-2  utilities to configure the GNOME d
ii  gnome-desktop-data 2.22.3-1  Common files for GNOME 2 desktop a
ii  gnome-menus2.22.2-4  an implementation of the freedeskt
ii  gnome-panel-data   2.20.3-5  common files for the GNOME Panel
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA 

Bug#499617: RFP: pyamf -- Action Message Format support for Python

2008-09-20 Thread Luca Bruno
Package: wnpp
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

* Package name: pyamf
  Version : 0.3.1
  Upstream Author : Thijs Triemstra [EMAIL PROTECTED]
* URL : http://www.pyamf.org/
* License : MIT
  Programming Lang: Python
  Description : Action Message Format support for Python

[Directly taken from upstream web, tweak as needed]

PyAMF provides Action Message Format (AMF) support for Python
that is compatible with the Flash Player. It includes integration 
with Python web frameworks like Django, Pylons, Twisted, and more.

The Adobe Integrated Runtime and Flash Player use AMF to communicate 
between an application and a remote server. AMF encodes remote 
procedure calls (RPC) into a compact binary representation that 
can be transferred over HTTP/HTTPS or the RTMP/RTMPS protocol. 
Objects and data values are serialized into this binary format, 
which increases performance, allowing applications to load data up
 to 10 times faster than with text-based formats such as XML or SOAP.

AMF 3, the default serialization for ActionScript 3.0, provides 
various advantages over AMF0, which is used for ActionScript 1.0 
and 2.0. AMF 3 sends data over the network more efficiently than AMF 0. 
AMF 3 supports sending int and uint objects as integers and supports 
data types that are available only in ActionScript 3.0, such as 
ByteArray, ArrayCollection, and IExternalizable.


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

iEYEARECAAYFAkjVGzsACgkQRqobajv7n7MOIgCffsj5HtmOt+lffKJhV0chcEbv
V2cAn1z9YE5W1p9ewjmK/usuzsGWOeCD
=ocFA
-END PGP SIGNATURE-



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



Bug#497989: apt-cache: --installed not working with pkgnames

2008-09-05 Thread Luca Bruno
Package: apt
Version: 0.7.14+b1
Severity: normal

When I use apt-cache --installed pkgnames the result is the same as apt-cache 
pkgnames.
Shouldn't --installed work also with pkgnames and only show insalled package 
names?


-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture amd64;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 1;
APT::Install-Suggests 0;
APT::Acquire ;
APT::Acquire::Translation environment;
APT::Authentication ;
APT::Authentication::TrustCDROM true;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::Default-Release testing;
APT::Periodic ;
APT::Periodic::Update-Package-Lists 1;
APT::Periodic::Download-Upgradeable-Packages 0;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::userstatus status.user;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
Dir::Log var/log/apt;
Dir::Log::Terminal term.log;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/sbin/apt-listbugs apt || exit 10;
DPkg::Pre-Install-Pkgs:: /usr/bin/apt-listchanges --apt || test $? -ne 10;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;
DPkg::Tools ;
DPkg::Tools::Options ;
DPkg::Tools::Options::/usr/sbin/apt-listbugs ;
DPkg::Tools::Options::/usr/sbin/apt-listbugs::Version 2;
DPkg::Tools::Options::/usr/bin/apt-listchanges ;
DPkg::Tools::Options::/usr/bin/apt-listchanges::Version 2;

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


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

deb http://ftp.us.debian.org/debian/ experimental main contrib non-free

deb http://ftp.us.debian.org/debian/ unstable main contrib non-free
# deb-src http://ftp.us.debian.org/debian/ unstable main

deb http://ftp.us.debian.org/debian/ testing main contrib non-free
deb-src http://ftp.us.debian.org/debian/ testing main

# deb http://www.emdebian.org/debian/ unstable main

# deb http://ftp.us.debian.org/debian/ stable main contrib non-free
# deb-src http://ftp.us.debian.org/debian/ stable main

# deb http://debian.alphagemini.org unstable main contrib non-free

# deb http://www.debian-multimedia.org testing main

# deb http://snapshot.debian.net/archive pool glibc

deb http://security.debian.org/ testing/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib

deb http://syx.netsons.org/debian/ unstable main
-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-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 apt depends on:
ii  debian-archive-keyring   2008.04.16+nmu1 GnuPG archive keys of the Debian a
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.1-9   GCC support library
ii  libstdc++6   4.3.1-9 The GNU Standard C++ Library v3

apt recommends no packages.

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

-- no debconf information



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



Bug#487623: inkscape rc

2008-09-02 Thread Luca Bruno
tags 487623 + patch
tags 487623 + fixed-upstream
thanks

[EMAIL PROTECTED] scrisse:

 OK, please notify me via Debian's BTS if you have an update on that.
 If I have problem in backporting it, I'll ask for help.

Well, I've got no reply from Gail, so this patch will probably remain
as is for some time. If you haven't yet backported the patch, you can
find it attached here.

 Thanks,
 Wolfi
 
Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer
Index: src/libnrtype/FontFactory.cpp
===
--- src/libnrtype/FontFactory.cpp	(revisione 19753)
+++ src/libnrtype/FontFactory.cpp	(copia locale)
@@ -821,7 +821,8 @@
 res-Ref();
 AddInCache(res);
 }
-res-InitTheFace();
+if(res)
+	res-InitTheFace();
 return res;
 }
 
Index: src/libnrtype/Layout-TNG-Output.cpp
===
--- src/libnrtype/Layout-TNG-Output.cpp	(revisione 19753)
+++ src/libnrtype/Layout-TNG-Output.cpp	(copia locale)
@@ -116,22 +116,24 @@
 _getGlyphTransformMatrix(glyph_index, glyph_matrix);
 NR::Matrix total_transform = glyph_matrix;
 total_transform *= transform;
-NR::MaybeNR::Rect glyph_rect = _glyphs[glyph_index].span(this).font-BBox(_glyphs[glyph_index].glyph);
-if (glyph_rect) {
-NR::Point bmi = glyph_rect-min(), bma = glyph_rect-max();
-NR::Point tlp(bmi[0],bmi[1]), trp(bma[0],bmi[1]), blp(bmi[0],bma[1]), brp(bma[0],bma[1]);
-tlp *= total_transform;
-trp *= total_transform;
-blp *= total_transform;
-brp *= total_transform;
-*glyph_rect = NR::Rect(tlp,trp);
-glyph_rect-expandTo(blp);
-glyph_rect-expandTo(brp);
-if ( (glyph_rect-min())[0]  bounding_box-x0 ) bounding_box-x0=(glyph_rect-min())[0];
-if ( (glyph_rect-max())[0]  bounding_box-x1 ) bounding_box-x1=(glyph_rect-max())[0];
-if ( (glyph_rect-min())[1]  bounding_box-y0 ) bounding_box-y0=(glyph_rect-min())[1];
-if ( (glyph_rect-max())[1]  bounding_box-y1 ) bounding_box-y1=(glyph_rect-max())[1];
-}
+if(_glyphs[glyph_index].span(this).font) {
+	NR::MaybeNR::Rect glyph_rect = _glyphs[glyph_index].span(this).font-BBox(_glyphs[glyph_index].glyph);
+if (glyph_rect) {
+	NR::Point bmi = glyph_rect-min(), bma = glyph_rect-max();
+	NR::Point tlp(bmi[0],bmi[1]), trp(bma[0],bmi[1]), blp(bmi[0],bma[1]), brp(bma[0],bma[1]);
+tlp *= total_transform;
+trp *= total_transform;
+blp *= total_transform;
+brp *= total_transform;
+*glyph_rect = NR::Rect(tlp,trp);
+glyph_rect-expandTo(blp);
+glyph_rect-expandTo(brp);
+if ( (glyph_rect-min())[0]  bounding_box-x0 ) bounding_box-x0=(glyph_rect-min())[0];
+if ( (glyph_rect-max())[0]  bounding_box-x1 ) bounding_box-x1=(glyph_rect-max())[0];
+if ( (glyph_rect-min())[1]  bounding_box-y0 ) bounding_box-y0=(glyph_rect-min())[1];
+if ( (glyph_rect-max())[1]  bounding_box-y1 ) bounding_box-y1=(glyph_rect-max())[1];
+}
+	}
 }
 }
 
Index: src/libnrtype/Layout-TNG-Compute.cpp
===
--- src/libnrtype/Layout-TNG-Compute.cpp	(revisione 19753)
+++ src/libnrtype/Layout-TNG-Compute.cpp	(copia locale)
@@ -478,9 +478,9 @@
 new_span.in_input_stream_item = unbroken_span.input_index;
 new_span.baseline_shift = _y_offset;
 new_span.block_progression = _block_progression;
-if (_flow._input_stream[unbroken_span.input_index]-Type() == TEXT_SOURCE) {
-new_span.font = para.pango_items[unbroken_span.pango_item_index].font;
-new_span.font-Ref();
+if ((_flow._input_stream[unbroken_span.input_index]-Type() == TEXT_SOURCE)  (new_span.font = para.pango_items[unbroken_span.pango_item_index].font))
+{
+		new_span.font-Ref();
 new_span.font_size = unbroken_span.font_size;
 new_span.direction = para.pango_items[unbroken_span.pango_item_index].item-analysis.level  1 ? RIGHT_TO_LEFT : LEFT_TO_RIGHT;
 new_span.input_stream_first_character = Glib::ustring::const_iterator(unbroken_span.input_stream_first_character.base() + it_span-start.char_byte);
@@ -565,7 +565,7 @@
 new_glyph.x = x + unbroken_span.glyph_string-glyphs[glyph_index].geometry.x_offset * font_size_multiplier;
 new_glyph.y = _y_offset + unbroken_span.glyph_string-glyphs

Bug#490702: ITP: pencil -- Traditional animation/drawing software

2008-08-31 Thread Luca Bruno
Almost two months later, it would be good to see at least the
preliminary package uploaded somewhere.
I've already seen some users requesting it, while this ITP being silent.

Please put your package somewhere (maybe on mentors.d.n, as Kibi
already said) so that it can be tested.

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpwQ0gprdLIA.pgp
Description: PGP signature


Bug#492908: querybts: NameError: global name 'ewrite' is not defined

2008-08-31 Thread Luca Bruno
Package: reportbug
Version: 3.99.0
Severity: normal

ewrite is only used once in that file. querybts is commonly using print, so you 
could use print instead.
I'm attaching a patch.


-- Package-specific info:
** Environment settings:
EDITOR=jmacs
VISUAL=jmacs
EMAIL=[EMAIL PROTECTED]
NAME=Luca Bruno

** /home/lethal/.reportbugrc:
reportbug_version 3.42
mode standard
ui gnome2

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

Kernel: Linux 2.6.26-1-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 reportbug depends on:
ii  apt   0.7.14+b1  Advanced front-end for dpkg
ii  python2.5.2-2An interactive high-level object-o
ii  python-reportbug  3.99.0 Python modules for interacting wit

reportbug recommends no packages.

Versions of packages reportbug suggests:
ii  debconf-utils 1.5.22 debconf utilities
pn  debsums   none (no description available)
pn  dlocate   none (no description available)
ii  esmtp-run [mail-transport-age 0.6.0-1User configurable relay-only MTA
ii  file  4.25-1 Determines file type using magic
ii  gnupg 1.4.9-3GNU privacy guard - a free PGP rep
ii  python-urwid  0.9.8.3-1  curses-based UI/widget library for

-- no debconf information
From b8ada85b090537739f48bd7065ee9f972310a97c Mon Sep 17 00:00:00 2001
From: Luca Bruno [EMAIL PROTECTED]
Date: Mon, 1 Sep 2008 02:00:39 +0200
Subject: [PATCH] Fix ewrite in querybts

---
 bin/querybts |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bin/querybts b/bin/querybts
index e261e7d..4768abd 100755
--- a/bin/querybts
+++ b/bin/querybts
@@ -178,7 +178,7 @@ def main():
 ui.long_message('*** Unable to import %s interface: %s '
 'Falling back to %s interface.\n',
 interface, msg, ui_mode)
-ewrite('\n')
+print
 
 reportre = re.compile(r'^#?(\d+)$')
 try:
-- 
1.5.6.3



Bug#497338: reportbug: add tags when submitting more information

2008-08-31 Thread Luca Bruno
Package: reportbug
Version: 3.99.0
Severity: wishlist

When submitting more information I'd expect sometimes reportbug asks me if I 
have a patch.
Instead I have to attach the file then use control to add the patch tag.


-- Package-specific info:
** Environment settings:
EDITOR=jmacs
VISUAL=jmacs
EMAIL=[EMAIL PROTECTED]
NAME=Luca Bruno

** /home/lethal/.reportbugrc:
reportbug_version 3.42
mode standard
ui gnome2

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

Kernel: Linux 2.6.26-1-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 reportbug depends on:
ii  apt   0.7.14+b1  Advanced front-end for dpkg
ii  python2.5.2-2An interactive high-level object-o
ii  python-reportbug  3.99.0 Python modules for interacting wit

reportbug recommends no packages.

Versions of packages reportbug suggests:
ii  debconf-utils 1.5.22 debconf utilities
pn  debsums   none (no description available)
pn  dlocate   none (no description available)
ii  esmtp-run [mail-transport-age 0.6.0-1User configurable relay-only MTA
ii  file  4.25-1 Determines file type using magic
ii  gnupg 1.4.9-3GNU privacy guard - a free PGP rep
ii  python-urwid  0.9.8.3-1  curses-based UI/widget library for

-- no debconf information



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



Bug#497024: AVAILABLE_UIS in reportbug.py must be copied

2008-08-29 Thread Luca Bruno
Package: reportbug
Version: 3.45
Severity: normal
Tags: patch

I was trying to hack gnome-reportbug but the module couldn't be imported.
The problem is that both AVAILABLE_UIS array and imp.find_module
usage is broken.
I've attached a simple patch.


-- Package-specific info:
** Environment settings:
EDITOR=jmacs
VISUAL=jmacs
EMAIL=[EMAIL PROTECTED]
NAME=Luca Bruno
INTERFACE=urwid

** /home/lethal/.reportbugrc:
reportbug_version 3.42
mode standard
ui gnome2

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

Kernel: Linux 2.6.26-1-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 reportbug depends on:
ii  apt   0.7.14+b1  Advanced front-end for dpkg
ii  python2.5.2-2An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt

reportbug recommends no packages.

Versions of packages reportbug suggests:
ii  debconf-utils 1.5.22 debconf utilities
pn  debsums   none (no description available)
pn  dlocate   none (no description available)
ii  esmtp-run [mail-transport-age 0.6.0-1User configurable relay-only MTA
ii  file  4.25-1 Determines file type using magic
ii  gnupg 1.4.9-3GNU privacy guard - a free PGP rep
ii  python-urwid  0.9.8.3-1  curses-based UI/widget library for

-- debconf-show failed
--- usr/bin/reportbug.orig	2008-08-29 11:44:14.0 +0200
+++ usr/bin/reportbug	2008-08-29 11:35:40.0 +0200
@@ -821,7 +821,7 @@
 sys.argv = sys.argv[:1] + list(args)
 if options.interface:
 interface = options.interface
-if interface in ('gnome', 'newt',):
+if interface in ('gnome2', 'newt',):
 ui.long_message(The %s interface is not supported.  Unless you 
 are debugging reportbug, please do not use it.  
 If you are debugging reportbug, please DO NOT 
--- usr/share/reportbug/reportbuglib/reportbug.py.orig	2008-08-29 11:35:12.0 +0200
+++ usr/share/reportbug/reportbuglib/reportbug.py	2008-08-29 11:45:21.0 +0200
@@ -39,6 +39,7 @@
 import socket
 import subprocess
 import imp
+from copy import copy
 
 import debianbts
 
@@ -52,11 +53,11 @@
  'Justification', 'Followup-For', 'Owner', 'User', 'Usertags')
 
 VALID_UIS = ['newt', 'text', 'gnome2', 'urwid']
-AVAILABLE_UIS = VALID_UIS
+AVAILABLE_UIS = copy (VALID_UIS)
 for ui in VALID_UIS:
 module_name = 'reportbug_ui_%(ui)s' % vars()
 try:
-imp.find_module(module_name)
+imp.find_module(module_name, os.path.dirname (__file__))
 except ImportError:
 AVAILABLE_UIS.remove(ui)
 


Bug#497024: AVAILABLE_UIS in reportbug.py must be copied wrong patch

2008-08-29 Thread Luca Bruno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,
I'm sorry I've attached the wrong patch, I'll paste it here directly:

- --- usr/bin/reportbug.orig  2008-08-29 11:44:14.0 +0200
+++ usr/bin/reportbug   2008-08-29 11:35:40.0 +0200
@@ -821,7 +821,7 @@
 sys.argv = sys.argv[:1] + list(args)
 if options.interface:
 interface = options.interface
- -if interface in ('gnome', 'newt',):
+if interface in ('gnome2', 'newt',):
 ui.long_message(The %s interface is not supported.  Unless you 
 are debugging reportbug, please do not use it.  
 If you are debugging reportbug, please DO NOT 
- --- usr/share/reportbug/reportbuglib/reportbug.py.orig  2008-08-29 
11:35:12.000
+++ usr/share/reportbug/reportbuglib/reportbug.py   2008-08-29 11:45:21.000
@@ -39,6 +39,7 @@
 import socket
 import subprocess
 import imp
+from copy import copy
 
 import debianbts
 
@@ -52,11 +53,11 @@
  'Justification', 'Followup-For', 'Owner', 'User', 'Usertags')
 
 VALID_UIS = ['newt', 'text', 'gnome2', 'urwid']
- -AVAILABLE_UIS = VALID_UIS
+AVAILABLE_UIS = copy (VALID_UIS)
 for ui in VALID_UIS:
 module_name = 'reportbug_ui_%(ui)s' % vars()
 try:
- -imp.find_module(module_name)
+imp.find_module(module_name, os.path.dirname (__file__))
 except ImportError:
 AVAILABLE_UIS.remove(ui)

- -- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.ammazzatecitutti.org - Ammazzateci tutti
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAki3yP0ACgkQw9Qj+8Kak3G4EQCeJMM7qFv9xhZIDs7QO07Nzaa2
m2MAn1MPLuf3ObAZcM523j9iL5VzSBiR
=Lbnd
-END PGP SIGNATURE-


Bug#496558: nautilus: Fails to browser - confirmed

2008-08-28 Thread Luca Bruno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I've an amd64 but I haven't found this problem, same version of nautilus.
I haven't tried with a fresh user.
My $LANG is en_US.UTF-8 if this can help.

- -- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.ammazzatecitutti.org - Ammazzateci tutti
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAki2d+kACgkQw9Qj+8Kak3HuEQCfRgQWQUIJ6HIFV07zmWqZhBc/
rvoAnRUjw9gOXy8Cc3V+14QCq7/EvQhs
=HAyc
-END PGP SIGNATURE-


Bug#496894: bugs.debian.org: add a default Subject to the Reply link in the web interface

2008-08-28 Thread Luca Bruno
Package: bugs.debian.org
Severity: wishlist

I usually reply to bugs from the web interface of the BTS by clicking to the 
Reply link.
I then have to copy the subject of the bug and add Re: to it.
First times I replied to the BTS it didn't accept my reply because of the empty 
subject.
Could you please add a ?subject= or such to the mailto:?


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

Kernel: Linux 2.6.25-2-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



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



Bug#487623: inkscape rc

2008-08-28 Thread Luca Bruno
forwarded 487623 https://bugs.launchpad.net/inkscape/+bug/261475
thanks

This is probably the same bug as http://bugs.debian.org/349515 ;
that part of code has been reworked in the meantime but it looks like
the same issue.

zh_CN triggers the crash every time as open dialog translation contains
an evil char, but this can be reproduced in other locales too.

I'm working on a patch to prevent the crash, even I haven't yet
discovered the cause of the failure while retrieving the typeface.

Please follow this up on upstream bugtracker.

Cheers, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpIiKJj4s3F1.pgp
Description: PGP signature


Bug#496969: reportbug: default priority must be normal not critical

2008-08-28 Thread Luca Bruno
Package: reportbug
Version: 3.45
Severity: normal

Severity of reportbug is always 'critical' while it should be 'normal'. In
the code in fact there's default = 'normal' as per
http://www.debian.org/Bugs/Developer#severities.


-- Package-specific info:
** Environment settings:
EDITOR=jmacs
VISUAL=jmacs
EMAIL=[EMAIL PROTECTED]
NAME=Luca Bruno
INTERFACE=urwid

** /home/lethal/.reportbugrc:
reportbug_version 3.42
mode standard
ui urwid

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

Kernel: Linux 2.6.25-2-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 reportbug depends on:
ii  apt   0.7.14+b1  Advanced front-end for dpkg
ii  python2.5.2-2An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt

reportbug recommends no packages.

Versions of packages reportbug suggests:
ii  debconf-utils 1.5.22 debconf utilities
pn  debsums   none (no description available)
pn  dlocate   none (no description available)
ii  esmtp-run [mail-transport-age 0.6.0-1User configurable relay-only MTA
ii  file  4.25-1 Determines file type using magic
ii  gnupg 1.4.9-3GNU privacy guard - a free PGP rep
ii  python-urwid  0.9.8.3-1  curses-based UI/widget library for

-- no debconf information



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



Bug#487623: #487623 confirmed and backtraced

2008-08-26 Thread Luca Bruno
tags 487623 + confirmed
thanks

Bug reproducible even on recent svn (0.46+devel, actually svn r19753).
I think the bug hasn't changed since 0.46, so I'm providing backtrace
from svn version.
Below a clean backtrace, attached a full backtrace.

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb6203700 (LWP 4030)]
font_instance::InitTheFace (this=0x0) at libnrtype/FontInstance.cpp:349
349 theFace=pango_ft2_font_get_face(pFont);
(gdb) bt
#0  font_instance::InitTheFace (this=0x0) at libnrtype/FontInstance.cpp:349
#1  0x083e9ed0 in font_factory::Face (this=0xa0370b0, descr=0xc3ca100, 
canFail=false) at libnrtype/FontFactory.cpp:824
#2  0x083ea132 in font_factory::Face (this=0xa0370b0, descr=0xc3ca100, 
canFail=true) at libnrtype/FontFactory.cpp:801
#3  0x083f806b in 
Inkscape::Text::Layout::Calculator::_buildPangoItemizationForPara 
(this=0xbf88affc, para=0xbf88af44)
at libnrtype/Layout-TNG-Compute.cpp:879
#4  0x083f990a in Inkscape::Text::Layout::Calculator::calculate 
(this=0xbf88affc) at libnrtype/Layout-TNG-Compute.cpp:1377
#5  0x083f9f2d in Inkscape::Text::Layout::calculateFlow (this=0xb1bd2d8) at 
libnrtype/Layout-TNG-Compute.cpp:1515
#6  0x080f5657 in SPText::rebuildLayout (this=0xb1bd1b8) at sp-text.cpp:573
#7  0x080f5936 in sp_text_update (object=0xb1bd1b8, ctx=0xbf88b1a8, 
flags=value optimized out) at sp-text.cpp:248
#8  0x080d8856 in SPObject::updateDisplay (this=0xb1bd1b8, ctx=0xbf88b1a8, 
flags=127) at sp-object.cpp:1298
#9  0x080c79df in CGroup::onUpdate (this=0xc414800, ctx=0xbf88b2e8, flags=92) 
at sp-item-group.cpp:668
#10 0x080d8856 in SPObject::updateDisplay (this=0xb1a0da0, ctx=0xbf88b2e8, 
flags=95) at sp-object.cpp:1298
#11 0x080c79df in CGroup::onUpdate (this=0xc414da8, ctx=0xbf88b42c, flags=28) 
at sp-item-group.cpp:668
#12 0x080e8ce1 in sp_root_update (object=0x9ac4410, ctx=0xbf88b648, flags=27) 
at sp-root.cpp:553
#13 0x080d8856 in SPObject::updateDisplay (this=0x9ac4410, ctx=0xbf88b648, 
flags=27) at sp-object.cpp:1298
#14 0x0808c038 in SPDocument::_updateDocument (this=0x965bea0) at 
document.cpp:826
#15 0x0808c132 in sp_document_idle_handler (data=0x965bea0) at document.cpp:872
#16 0xb73b9381 in ?? () from /usr/lib/libglib-2.0.so.0
#17 0x0965bea0 in ?? ()
#18 0x0c410bf0 in ?? ()
#19 0xbf88b718 in ?? ()
#20 0xb74364a8 in ?? () from /usr/lib/libglib-2.0.so.0
#21 0xb686a3f0 in ?? () from /lib/i686/cmov/libpthread.so.0
#22 0xb74364a8 in ?? () from /usr/lib/libglib-2.0.so.0
#23 0xbf88b768 in ?? ()
#24 0xb73bb2e1 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
Backtrace stopped: frame did not save the PC

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as i486-linux-gnu...
(gdb) run
Starting program: /usr/local/bin/inkscape 
[Thread debugging using libthread_db enabled]
[New Thread 0xb6204700 (LWP 4001)]
[New Thread 0xb5455b90 (LWP 4014)]
[New Thread 0xb4c54b90 (LWP 4015)]
[Thread 0xb5455b90 (LWP 4014) exited]
[Thread 0xb4c54b90 (LWP 4015) exited]
[New Thread 0xb4c54b90 (LWP 4016)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb6204700 (LWP 4001)]
font_instance::InitTheFace (this=0x0) at libnrtype/FontInstance.cpp:349
349 theFace=pango_ft2_font_get_face(pFont);
(gdb) bt full
#0  font_instance::InitTheFace (this=0x0) at libnrtype/FontInstance.cpp:349
No locals.
#1  0x083e9ed0 in font_factory::Face (this=0x9a860b0, descr=0xbe518c0, 
canFail=false) at libnrtype/FontFactory.cpp:824
res = (class font_instance *) 0x0
#2  0x083ea132 in font_factory::Face (this=0x9a860b0, descr=0xbe518c0, 
canFail=true) at libnrtype/FontFactory.cpp:801
tc = value optimized out
nFace = value optimized out
res = (class font_instance *) 0xbe5c208
#3  0x083f806b in 
Inkscape::Text::Layout::Calculator::_buildPangoItemizationForPara 
(this=0xbfb8aafc, para=0xbfb8aa44)
at libnrtype/Layout-TNG-Compute.cpp:879
new_item = {item = 0xbe41a28, font = 0x0}
font_description = (PangoFontDescription *) 0xbe518c0
current_pango_item = (GList *) 0xbdf9bd0
para_text = {static npos = 4294967295, string_ = {static npos = 
4294967295, 
_M_dataplus = {std::allocatorchar = {__gnu_cxx::new_allocatorchar = 
{No data fields}, No data fields}, 
  _M_p = 0xb9f8bc4 æ\227 é¢\204è§\210}}}
attributes_list = (PangoAttrList *) 0xbdf9830
input_index = value optimized out
pango_items_glist = (GList *) 0xbdf9bd0
#4  0x083f990a in Inkscape::Text

Bug#496154: istanbul crashed with AttributeError in stop_recording()

2008-08-23 Thread Luca Bruno
tags 496154 - patch
tags 496154 + moreinfo
thanks

Andreas Moog scrisse:

 Package: istanbul
 Version: 0.2.2-4
 Severity: Normal
 Tags: Patch
 
 After running istanbul ( on kde ), i check select windows to record
 in the menu, it show a backtrace, and then the software no longer
 respond once i stop the recording.
 
 Suggested Patch (from Upstream):
 
 Index: istanbul/main/window_select.py
 ===
 --- istanbul/main/window_select.py(revision 168)
 +++ istanbul/main/window_select.py(working copy)
 @@ -85,7 +85,7 @@
  return child
 
  for child in children:
 -result = self._get_client_window_check_children(window)
 +result = self._get_client_window_check_children(child)
  if result != None:
  return result
 
Please read the changelog, this patch is already in use:
http://patch-tracking.debian.net/package/istanbul/0.2.2-4

And without enough background I can't try to debug this; it could be
some old files still floating around...

Ciao, Luca

-- 
 .''`.  ** Debian GNU/Linux **  | Luca Bruno (kaeso)
: :'  :   The Universal O.S.| lucab (AT) debian.org
`. `'`  | GPG Key ID: 3BFB9FB3
  `- http://www.debian.org  | Debian GNU/Linux Developer


pgpn2u9vIL1A6.pgp
Description: PGP signature


<    1   2   3   4   5   6   >