Bug#421201: SpamAssassin: Various error messages in /var/log/mail.err

2007-04-26 Thread Arno van Amersfoort

Package: spamassassin
Version: 3.1.7-2

Since I've upgraded my machine to Debian Etch I'm getting these error 
messages in my /var/log/mail.err :


Apr 24 03:28:05 rocky spamd[3835]: Can't locate Math/BigInt/FastCalc.pm 
in @INC (@INC contains: ../lib /usr/share/perl5 /etc/p
erl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/


AND

Apr 24 03:28:05 rocky spamd[3835]: Can't locate IO/Socket/INET6.pm in 
@INC (@INC contains: ../lib /usr/share/perl5 /etc/perl /
usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 
/usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_
perl /usr/local/lib/perl/5.8.4 /usr/local/share/perl/5.8.4) at 
/usr/lib/perl5/Net/DNS/Resolver/Base.pm line 62,  line 4

4.

I don't know whether this is an issue I should worry about but it seems 
like SpamAssassin is missing some Perl modules/dependencies.(?)


regards,

Arno


--
Ing. A.C.J. van Amersfoort (Arno)
Department Of Electronics (ELD, k1007)
Huygens Laboratory
Leiden University
P.O. Box 9504
Niels Bohrweg 2
2333 CA Leiden
The Netherlands

Phone : +31-(0)71-527.1894   Fax: +31-(0)71-527.5819
E-mail: [EMAIL PROTECTED]

Arno's (Linux firewall) homepage: http://rocky.eld.leidenuniv.nl







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



Bug#421200: NIS: Add support for MAXUID/MAXGID in /var/yp/Makefile

2007-04-26 Thread Arno van Amersfoort

Package: nis
Version: 3.13-2

Besides having MINUID & MINGID in /var/yp/Makefile, it is quite handy to 
 also have MAXUID & MAXGID. For my case that is mainly to filter out 
the Samba domain machines that also live in our /etc/passwd. I've added 
a patch (which I've been using for quite some time now) to implement 
this feature. Hopefully it is usefull for others too..


regards,

Arno


--
Ing. A.C.J. van Amersfoort (Arno)
Department Of Electronics (ELD, k1007)
Huygens Laboratory
Leiden University
P.O. Box 9504
Niels Bohrweg 2
2333 CA Leiden
The Netherlands

Phone : +31-(0)71-527.1894   Fax: +31-(0)71-527.5819
E-mail: [EMAIL PROTECTED]

Arno's (Linux firewall) homepage: http://rocky.eld.leidenuniv.nl





*** /tmp/Makefile.dpkg-dist 2007-03-26 15:20:30.0 +0200
--- /var/yp/Makefile2007-02-26 11:19:29.0 +0100
***
*** 34,41 
  # the passwd file. If no entry is found, this shadow entry is
  # ignored.
  # MINGID is the lowest gid that will be included in the group maps.
! MINUID=1000
! MINGID=1000

  # Don't export this uid/guid (nfsnobody).
  # Set to 0 if you want to
--- 35,44 
  # the passwd file. If no entry is found, this shadow entry is
  # ignored.
  # MINGID is the lowest gid that will be included in the group maps.
! MINUID=111
! MAXUID=1999
! MINGID=120
! MAXGID=1999

  # Don't export this uid/guid (nfsnobody).
  # Set to 0 if you want to
***
*** 309,315 
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
$(MERGER) -p $(PASSWD) $(SHADOW) | \
!  $(AWK) -F: '!/^[-+#]/ { if ($$1 != "" && $$3 >= $(MINUID) && $$3 != 
$(NFSNOBODYUID) ) \
   print $$1"\t"$$0 }' | $(DBLOAD) -i $(PASSWD) \
-o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
--- 313,319 
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
$(MERGER) -p $(PASSWD) $(SHADOW) | \
!  $(AWK) -F: '!/^[-+#]/ { if ($$1 != "" && $$3 >= $(MINUID) && $$3 <= 
$(MAXUID) && $$3 != $(NFSNOBODYUID) ) \
   print $$1"\t"$$0 }' | $(DBLOAD) -i $(PASSWD) \
-o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
***
*** 318,324 
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
$(MERGER) -p $(PASSWD) $(SHADOW) | \
!  $(AWK) -F: '!/^[-+#]/ { if ($$1 != "" && $$3 >= $(MINUID) && $$3 != 
$(NFSNOBODYUID) ) \
   print $$3"\t"$$0 }' | $(DBLOAD) -i $(PASSWD) \
 -o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
--- 322,328 
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
$(MERGER) -p $(PASSWD) $(SHADOW) | \
!  $(AWK) -F: '!/^[-+#]/ { if ($$1 != "" && $$3 >= $(MINUID) && $$3 <= 
$(MAXUID) && $$3 != $(NFSNOBODYUID) ) \
   print $$3"\t"$$0 }' | $(DBLOAD) -i $(PASSWD) \
 -o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
***
*** 332,338 
  passwd.byname: $(PASSWD) $(YPDIR)/Makefile
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
!   $(AWK) -F: '!/^[-+#]/ { if ($$1 != "" && $$3 >= $(MINUID) && $$3 != 
$(NFSNOBODYUID) ) \
   print $$1"\t"$$0 }' $(PASSWD) | $(DBLOAD) -i $(PASSWD) \
-o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
--- 336,342 
  passwd.byname: $(PASSWD) $(YPDIR)/Makefile
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
!   $(AWK) -F: '!/^[-+#]/ { if ($$1 != "" && $$3 >= $(MINUID) && $$3 <= 
$(MAXUID) && $$3 != $(NFSNOBODYUID) ) \
   print $$1"\t"$$0 }' $(PASSWD) | $(DBLOAD) -i $(PASSWD) \
-o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
***
*** 340,346 
  passwd.byuid: $(PASSWD) $(YPDIR)/Makefile
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
!   $(AWK) -F: '!/^[-+#]/ { if ($$1 != "" && $$3 >= $(MINUID) && $$3 != 
$(NFSNOBODYUID) ) \
   print $$3"\t"$$0 }' $(PASSWD) | $(DBLOAD) -i $(PASSWD) \
 -o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
--- 344,350 
  passwd.byuid: $(PASSWD) $(YPDIR)/Makefile
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
!   $(AWK) -F: '!/^[-+#]/ { if ($$1 != "" && $$3 >= $(MINUID) && $$3 <= 
$(MAXUID) && $$3 != $(NFSNOBODYUID) ) \
   print $$3"\t"$$0 }' $(PASSWD) | $(DBLOAD) -i $(PASSWD) \
 -o $(YPMAPDIR)/$@ - $@
[EMAIL PROTECTED](NOPUSH) || $(YPPUSH) -d $(DOMAIN) $@
***
*** 349,355 
@echo "Updating [EMAIL PROTECTED]"
@$(UMASK); \
$(AWK) -F: '{ if (FILENAME ~ /shadow$$/) { \
!   if (UID[$$1] >= $(MINUID) && U

Bug#409971: xfce4-battery-plugin: It doesn't work after upgrading to linux kernel 2.6.21

2007-04-26 Thread Evgeni Golov
On Fri, 27 Apr 2007 08:21:19 +0200 Matteo Vescovi wrote:

> Hi Evgeni,
>
> On 4/27/07, Evgeni Golov <[EMAIL PROTECTED]> wrote:
> > Works here without any problems. Could you be more specific on "not to
> > work at all"? Does it load and show garbage, or don't load, or show
> > wrong percentage/time?
>
> Oh, well... I provided a screenshot of it; you can find it at:
> http://mfv.altervista.org/desktop.png
>
> I can load it on the panel, but it doesn't work correctly; it shows always
> the image you see on the screenshot.
> The linux kernel module works perfectly, it shows the right battery
> charge percentage
> and switch between "charging on AC" and "discharging" like it's supposed to.
> The plugin, instead, is steady on the same situation, kinda freezing :-(
> No right percentage/time/charging state... nothing.

Hm, well, usual questions as:
1. it will work again if you boot 2.6.20?
2. it neither works for a new created user with no config?

I provide my config, maybe you have some bugs there?
display_label=false
display_icon=false
display_power=true
display_percentage=true
display_time=true
tooltip_display_percentage=true
tooltip_display_time=true
low_percentage=10
critical_percentage=5
action_on_low=1
action_on_critical=1
hide_when_full=1
command_on_low=
command_on_critical=

However, Yves or Simon should point out how to run th panel/plugin in
debug mode, I bett you'll find some hints there.

> --
> Imagine a red swirl here.

LOL, nice signature ;)

--
   ^^^| Evgeni -SargentD- Golov ([EMAIL PROTECTED])
 d(O_o)b  | GPG/PGP-Key-ID: 0xAC15B50C
  >-|-<   | 0C04 F872 0963 ADC9 AA83 882B 24A0 1418 AC15 B50C
   / \| http://www.die-welt.net - [EMAIL PROTECTED]

Viele geniale Leute sind schwierig und kommen mit Gott und der Welt
nicht klar. Leider folgern daraus viele Leute, die mit Gott und der
Welt nicht klar kommen, dass sie genial sind. (CodeWicht @ heise.de)


pgpW3MjQy9zCP.pgp
Description: PGP signature


Bug#409288: nscd: not installable in sid

2007-04-26 Thread Laurent Bonnaud
Hi,

I am going to reopen this bug because now that libssp0 has been removed
from Debian, nscd is not installable:

# apt-get install nscd
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  nscd: Depends: libssp0 (>= 4.1.1-12) but it is not going to be
installed
E: Broken packages


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




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



Bug#409971: xfce4-battery-plugin: It doesn't work after upgrading to linux kernel 2.6.21

2007-04-26 Thread Matteo Vescovi

Hi Evgeni,

On 4/27/07, Evgeni Golov <[EMAIL PROTECTED]> wrote:

Works here without any problems. Could you be more specific on "not to
work at all"? Does it load and show garbage, or don't load, or show
wrong percentage/time?


Oh, well... I provided a screenshot of it; you can find it at:
http://mfv.altervista.org/desktop.png

I can load it on the panel, but it doesn't work correctly; it shows always
the image you see on the screenshot.
The linux kernel module works perfectly, it shows the right battery
charge percentage
and switch between "charging on AC" and "discharging" like it's supposed to.
The plugin, instead, is steady on the same situation, kinda freezing :-(
No right percentage/time/charging state... nothing.

Hope this could help fixing the bug.

Regards,

mfv


--
Imagine a red swirl here.


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



Bug#421037: libc6: SIGILL on upgrade on netwinder

2007-04-26 Thread Aurelien Jarno
James Troup a écrit :
> Package: libc6
> Version: 2.5-4
> Severity: serious
> 
> | Preparing to replace libc6 2.3.6.ds1-11 (using 
> .../archives/libc6_2.5-4_arm.deb) ...
> | Unpacking replacement libc6 ...
> | dpkg: error processing /var/cache/apt/archives/libc6_2.5-4_arm.deb 
> (--unpack):
> |  dpkg: warning - old post-removal script killed by signal (Illegal 
> instruction)
> 
> This is on a netwinder (SA-110) running 2.6.xx.
> 

Could you please give me the exact kernel version that netwinder runs?
Also same question for europa.debian.org which seems to suffer from the
same problem.

-- 
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Bug#349342: dillo: File list (dpi) leaves out filenames starting with a hashmark

2007-04-26 Thread Yoshio Nakamura

package dillo
tags 349342 + patch
thanks



In dillo-0.8.5/dpi/file.c , near the top of the file, there is the line:

#define HIDE_DOTFILES TRUE

In the function File_dillodir_new(), there are the lines:

  /* Scan every name and sort them */
  while ((de = readdir(dir)) != 0) {
 if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, ".."))
continue;  /* skip "." and ".." */

 if (HIDE_DOTFILES) {
/* Don't add hidden files or backup files to the list */
if (de->d_name[0] == '.' ||
de->d_name[0] == '#' ||
(de->d_name[0] != '\0' &&
 de->d_name[strlen(de->d_name) - 1] == '~'))
   continue;
 }

Removing the line ==>  de->d_name[0] == '#' ||
results in filenames beginning with a hash mark appearing.  Patch attached.
diff -urN dillo-0.8.5/dpi/file.c dillo-0.8.5FIX2/dpi/file.c
--- dillo-0.8.5/dpi/file.c	2005-06-14 08:12:21.0 -0700
+++ dillo-0.8.5FIX2/dpi/file.c	2007-04-26 22:30:18.0 -0700
@@ -271,9 +271,8 @@
  continue;  /* skip "." and ".." */
 
   if (HIDE_DOTFILES) {
- /* Don't add hidden files or backup files to the list */
+ /* Don't add hidden files to the list */
  if (de->d_name[0] == '.' ||
- de->d_name[0] == '#' ||
  (de->d_name[0] != '\0' &&
   de->d_name[strlen(de->d_name) - 1] == '~'))
 continue;


Bug#421171: mksh: depends on removed libssp0 package

2007-04-26 Thread Sven Joachim
Thorsten Glaser writes:
> Why is that library gone and/or how is ProPolice SSP in gcc 4.1+ then
> supposed to work without it?
> 
> If the __guard_setup() and __stack_smash_handler() functions are now
> contained in libc, a simple recompile is in fact enough.

Please ask the gcc and/or glibc maintainers, I'm just a poor user who
noticed that gcc is currently not upgradable.


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



Bug#421050: darcsweb: Bad links in RSS

2007-04-26 Thread Antoni Villalonga
En/na Antoni Villalonga i Noceras ha escrit:
> Package: darcsweb
> Version: 0.16-1
> Severity: normal
> 
> I think there is a problen in the links of feed RSS. I am not sure at all,
> could be a problem in my config files.
> 
> There are my config files:
> [EMAIL PROTECTED]:~$ tail /etc/darcsweb/config.py
> #   # file named "_darcs/third_party/darcsweb/extdoc" (one line only), set
> #   # this to True. It defaults to False.
> #   #autoprojurl = True
> 
> class frikibloc:
> reponame = 'FrikiBLOC'
> repodesc = 'Sistema gestor de continguts (CMS) per a blocs personals'
> repodir = '/home/antoni/bloc/descarregues/frikibloc/darcs'
> repourl = 'http://friki.cat'
> repoencoding = 'latin1'
> [EMAIL PROTECTED]:~$ tail /etc/darcsweb/config.py
> #   # file named "_darcs/third_party/darcsweb/extdoc" (one line only), set
> #   # this to True. It defaults to False.
> #   #autoprojurl = True
> 
> class frikibloc:
> reponame = 'FrikiBLOC'
> repodesc = 'Sistema gestor de continguts (CMS) per a blocs personals'
> repodir = '/home/antoni/bloc/descarregues/frikibloc/darcs'
> repourl = 'http://friki.cat'
> repoencoding = 'latin1'
> [EMAIL PROTECTED]:~$ cat /etc/apache2/sites-available/frikibloc
> [...]
> 
> ServerAdmin [EMAIL PROTECTED]
> DocumentRoot /home/antoni/frikibloc
> ServerName frikibloc.info
> ErrorLog /var/log/apache2/frikibloc.error.log
> CustomLog /var/log/apache2/frikibloc.access.log combined
> php_admin_value open_basedir /home/antoni/frikibloc
> 
> Alias /darcsweb /usr/share/darcsweb
> 
> AllowOverride None
> Options None
> Order allow,deny
> Allow from all
> RedirectMatch ^/darcsweb$ /cgi-bin/darcsweb.cgi
> 
> 
> [EMAIL PROTECTED]:~$
> 
> Links of my repo:
> REPO: http://frikibloc.info/cgi-bin/darcsweb.cgi?r=FrikiBLOC;a=summary
> RSS: http://frikibloc.info/cgi-bin/darcsweb.cgi?r=FrikiBLOC;a=rss
> Example:
>   Incorrect link (readed from rss): 
> http://frikibloc.info/cgi-bin/darcsweb.cgi/darcsweb.cgi?r=FrikiBLOC;a=commit;h=20070426021537-e6899-f351afde840ddb68c4e1b521fd6688fcbaf86bb9.gz
>   Correct link: 
> http://frikibloc.info/cgi-bin/darcsweb.cgi?r=FrikiBLOC;a=commit;h=20070426021537-e6899-f351afde840ddb68c4e1b521fd6688fcbaf86bb9.gz
> 
> It's all, thanks!
> 
> -- System Information:
> Debian Release: 4.0
>   APT prefers stable
>   APT policy: (500, 'stable')
> Architecture: i386 (i686)
> Shell:  /bin/sh linked to /bin/bash
> Kernel: Linux 2.6.16-xenU-rimu6
> Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
> 
> Versions of packages darcsweb depends on:
> ii  darcs  1.0.9~rc1-0.1 an advanced revision control 
> syste
> ii  python 2.4.4-2   An interactive high-level 
> object-o
> 
> Versions of packages darcsweb recommends:
> ii  apache2   2.2.3-4Next generation, scalable, 
> extenda
> ii  apache2-mpm-prefork [httpd]   2.2.3-4Traditional model for Apache 
> HTTPD
> 
> -- no debconf information
> 
> 

Hi!

I solved my problem changing just one line. I don't know if it's an
"universal" patch.

This is the diff file:
--- darcsweb.cgi2007-04-27 07:24:55.0 +0200
+++ original-darcsweb.cgi 2007-04-27 06:57:15.0 +0200
@@ -2263,7 +2263,7 @@
if 'myurl' not in dir(base) and 'cachedir' not in dir(base):
n = os.environ['SERVER_NAME']
p = os.environ['SERVER_PORT']
-   s = os.path.dirname(os.environ['SCRIPT_NAME'])
+   s = os.environ['SCRIPT_NAME']
if p == '80':
p = ''
else:


Bye!


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



Bug#421199: binutils 2.17cvs20070426-1: FTBFS on hppa

2007-04-26 Thread Aurelien Jarno
Package: binutils
Version: 2.17cvs20070426-1
Severity: serious
Tags: patch
Justification: Fails to build from source

binutils 2.17cvs20070426-1 fails to build from source on hppa:

Automatic build of binutils_2.17cvs20070426-1 on bld-3 by sbuild/hppa 98
Build started at 20070426-1937
**

[...]

rm -rf debian/binutils-hppa64/usr/man
rm -rf debian/binutils-hppa64/usr/info
rm -rf debian/binutils-hppa64/usr/include
rm -rf debian/binutils-hppa64/usr/share
rm -rf debian/binutils-hppa64/usr/hppa-linux-gnu
rm -rf debian/binutils-hppa64/usr/lib/libiberty.a
: # Strip shared libraries
strip --remove-section=.comment --remove-section=.note --strip-unneeded 
debian/binutils-hppa64/usr/lib/libbfd-*so
strip --remove-section=.comment --remove-section=.note --strip-unneeded 
debian/binutils-hppa64/usr/lib/libopcodes-*so
strip --remove-section=.comment --remove-section=.note $(file /usr/bin/* | awk 
-F: '$0 !~ /script/ {print $1}')
strip: /usr/bin/stxu6zI0: Permission denied
strip: /usr/bin/stmZSrpR: Permission denied
strip: /usr/bin/stfsLX0H: Permission denied
strip: /usr/bin/stkNsTaB: Permission denied
strip: /usr/bin/stTfCVju: Permission denied
strip: /usr/bin/st8Lm7Fn: Permission denied
strip: /usr/bin/st1adjXg: Permission denied

[...]


The problem is a missing 'p' in the variable name d_hppa64. Please find
a patch below to fix that.

diff -u binutils-2.17cvs20070426/debian/rules 
binutils-2.17cvs20070426/debian/rules
--- binutils-2.17cvs20070426/debian/rules
+++ binutils-2.17cvs20070426/debian/rules
@@ -339,7 +339,7 @@
: # Strip shared libraries
$(STRIP) --strip-unneeded $(d_hppa64)/usr/lib/libbfd-*so
$(STRIP) --strip-unneeded $(d_hppa64)/usr/lib/libopcodes-*so
-   $(STRIP) $$(file $(d_hpa64)/usr/bin/* | awk -F: '$$0 !~ /script/ {print 
$$1}')
+   $(STRIP) $$(file $(d_hppa64)/usr/bin/* | awk -F: '$$0 !~ /script/ 
{print $$1}')
 endif
 
chmod ugo-x $(d_hppa64)/usr/lib/*.so


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

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

Versions of packages binutils depends on:
ii  libc6 2.5-4  GNU C Library: Shared libraries

binutils recommends no packages.

-- no debconf information


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



Bug#421184: updmap machinery is not robust enough

2007-04-26 Thread Norbert Preining
tags 421184 + wontfix
thanks

On Fre, 27 Apr 2007, David Frey wrote:
> Please get rid of the updmap machinery, or at least, make it more
> robust.

This will not happen, as it is usefull to configure dvips, xdvi, pdftex
etc at the same time, configuring *all* this program by hand is over the
abilities of more or less all users.

Furthermore, the adaptions of the Debian packages (update-*,
/etc/texmf/updmap.d/, ...) are necessary due to the Debian Policy
(configuration kept over upgrades, over remove/install, ...).

> On most major LaTeX updates the update machinery fails and a manual
> syncwithtree or updmap-sys is necessary. 

Aehmm ... please read 
Debian-on-TeX
documentation (in html, pdf, txt) in /usr/share/doc/tex-common/

You should not use syncwithtree, as the file updmap.cfg is a *GENERATED*
file. You should ONLY edit files in /etc/texmf/updmap.d/

> This is with locally installed fonts.

I have about 50 locally installed fonts and font packs, and I have a
config file /etc/texmf/updmap.d/90local.cfg and this works well.

Best wishes

Norbert

---
Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena
Debian Developer <[EMAIL PROTECTED]> Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
PANT-Y-WACCO (adj.)
The final state of mind of retired colonel before they come to take
him away.
--- Douglas Adams, The Meaning of Liff


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



Bug#421198: [INTL:gu] Gujarati ikiwiki translation

2007-04-26 Thread Kartik Mistry

Package: ikiwiki
Version: N/A
Severity: wishlist
Tags: l10n, patch

Please find Gujarati (gu) translation for ikiwiki attached with this mail.

--

Kartik Mistry  | Eng: kartikmistry.org/blog
0xD1028C8D | Guj: kartikm.wordpress.com

# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Kartik Mistry <[EMAIL PROTECTED]>, 2007.
#
msgid ""
msgstr ""
"Project-Id-Version: ikiwiki-gu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-04-23 14:43-0400\n"
"PO-Revision-Date: 2007-01-11 16:05+0530\n"
"Last-Translator: Kartik Mistry <[EMAIL PROTECTED]>\n"
"Language-Team: Gujarati <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../IkiWiki/CGI.pm:154
msgid "You need to log in first."
msgstr "તમારે પ્રથમ લોગ ઇન થવું પડશે."

#: ../IkiWiki/CGI.pm:274
msgid "Preferences saved."
msgstr "પ્રાથમિકતાઓ સંગ્રહાઇ."

#: ../IkiWiki/CGI.pm:339
#, perl-format
msgid "%s is not an editable page"
msgstr "%s એ સુધારી શકાય તેવું પાનું નથી"

#: ../IkiWiki/CGI.pm:418 ../IkiWiki/Plugin/brokenlinks.pm:24
#: ../IkiWiki/Plugin/inline.pm:183 ../IkiWiki/Plugin/opendiscussion.pm:17
#: ../IkiWiki/Plugin/orphans.pm:28 ../IkiWiki/Render.pm:95
#: ../IkiWiki/Render.pm:166
msgid "discussion"
msgstr "ચર્ચા"

#: ../IkiWiki/CGI.pm:464
#, perl-format
msgid "creating %s"
msgstr "%s બનાવે છે"

#: ../IkiWiki/CGI.pm:481 ../IkiWiki/CGI.pm:496 ../IkiWiki/CGI.pm:507
#: ../IkiWiki/CGI.pm:533 ../IkiWiki/CGI.pm:577
#, perl-format
msgid "editing %s"
msgstr "%s સુધારે છે"

#: ../IkiWiki/CGI.pm:674
msgid "You are banned."
msgstr "તમારા પર પ્રતિબંધ છે."

#: ../IkiWiki/CGI.pm:706
msgid "login failed, perhaps you need to turn on cookies?"
msgstr "પ્રવેશ નિષ્ફળ, કદાચ તમારી કુકીઓ સક્રિય બનાવવી પડશે?"

#: ../IkiWiki/Plugin/aggregate.pm:62
#, perl-format
msgid "missing %s parameter"
msgstr "ખોવાયેલ %s વિકલ્પ"

#: ../IkiWiki/Plugin/aggregate.pm:90
msgid "new feed"
msgstr "નવું ફીડ"

#: ../IkiWiki/Plugin/aggregate.pm:104
msgid "posts"
msgstr "પોસ્ટ"

#: ../IkiWiki/Plugin/aggregate.pm:106
msgid "new"
msgstr "નવું"

#: ../IkiWiki/Plugin/aggregate.pm:212
#, perl-format
msgid "expiring %s (%s days old)"
msgstr "જુનું કરે છે %s (%s દિવસો જુનું)"

#: ../IkiWiki/Plugin/aggregate.pm:219
#, perl-format
msgid "expiring %s"
msgstr "જુનું કરે છે %s"

#: ../IkiWiki/Plugin/aggregate.pm:242
#, perl-format
msgid "processed ok at %s"
msgstr "આના પર બરાબર છે %s"

#: ../IkiWiki/Plugin/aggregate.pm:247
#, perl-format
msgid "checking feed %s ..."
msgstr "ફીડ %s ચકાસે છે ..."

#: ../IkiWiki/Plugin/aggregate.pm:252
#, perl-format
msgid "could not find feed at %s"
msgstr "%s પર ફીડ મળી શક્યું નહી"

#: ../IkiWiki/Plugin/aggregate.pm:267
msgid "feed not found"
msgstr "ફીડ મળ્યું નહી"

#: ../IkiWiki/Plugin/aggregate.pm:278
#, perl-format
msgid "invalid UTF-8 stripped from feed"
msgstr "ફીડમાંથી અયોગ્ય રીતે UTF-8 નીકાળેલ છે"

#: ../IkiWiki/Plugin/aggregate.pm:283
msgid "feed crashed XML::Feed!"
msgstr "ફીડ ભાંગી ગયું XML::Feed!"

#: ../IkiWiki/Plugin/aggregate.pm:356
#, perl-format
msgid "creating new page %s"
msgstr "નવું પાનું %s બનાવે છે"

#: ../IkiWiki/Plugin/brokenlinks.pm:37
msgid "There are no broken links!"
msgstr "અહીં કોઇ તૂટેલ કડી નથી!"

#: ../IkiWiki/Plugin/conditional.pm:20
msgid "\"test\" and \"then\" parameters are required"
msgstr "\"test\" અને \"then\" વિકલ્પો જરૂરી છે"

#: ../IkiWiki/Plugin/fortune.pm:18
msgid "fortune failed"
msgstr "ભવિષ્ય નિષ્ફળ"

#: ../IkiWiki/Plugin/googlecalendar.pm:22
msgid "failed to find url in html"
msgstr "htmlમાં યુઆરએલ શોધવામાં નિષ્ફળ"

#: ../IkiWiki/Plugin/graphviz.pm:59
msgid "failed to run graphviz"
msgstr "ગ્રાફવિઝ ચલાવવામાં નિષ્ફળ"

#: ../IkiWiki/Plugin/graphviz.pm:81
msgid "prog not a valid graphviz program"
msgstr "કાર્યક્રમએ યોગ્ય ગ્રાફવિઝ કાર્યક્રમ નથી"

#: ../IkiWiki/Plugin/img.pm:36
#, perl-format
msgid "%s not found"
msgstr "ટેમ્પલેટ %s મળ્યું નહી"

#: ../IkiWiki

Bug#421180: texlive update fails

2007-04-26 Thread Norbert Preining
Hi David,

On Fre, 27 Apr 2007, David Frey wrote:
> !!! ERROR! The map file `bsr-interpolated.map' has not been found at all.

> Solution: remove 10tetex-base.cfg  20tetex-extra.cfg in
> /etc/texmf/updmap.d/ and run update-updmap and then run updmap-sys.

This is *very* strange as these files should NOT have been included into
updmap.cnf at all. Do you have 
/var/lib/tex-common/fontmap-cfg/tetex-{base,extra}.list

If not, then a simple update-updmap and updmap-sys (as root) should
work.

> The bug severity is important, since this is 
> a) tedious
> b) non-obvious for a Non-LaTeX expert.

Since nobody else has reported this bug till now I wouldn't have used
this importance, but so let it be.

> I also removed cm-super.

Irrelevant.

Best wishes

Norbert

---
Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena
Debian Developer <[EMAIL PROTECTED]> Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
For a moment, nothing happened. Then, after a second or
so, nothing continued to happen.
 --- Douglas Adams, The Hitchhikers Guide to the Galaxy


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



Bug#421192: texinfo: describe which tex packages needed

2007-04-26 Thread Norbert Preining
Hi Kevin,

On Fre, 27 Apr 2007, Kevin Ryde wrote:
> It'd be nice if the package description or the README.Debian said what
> tex packages (texlive or tetex or whatever) are needed for full dvi
> and/or pdf etc operation (through texi2dvi, texi2pdf, etc).

Thanks, this is a very good suggestion. I will do it for the next
upload.

Best wishes

Norbert

---
Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena
Debian Developer <[EMAIL PROTECTED]> Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
ABOYNE (vb.)
To beat an expert at a game of skill by playing so appallingly that
none of his clever tactics or strategies are of any use to him.
--- Douglas Adams, The Meaning of Liff


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



Bug#421197: gcc-4.1: Please build-depends on binutils (>= 2.17.50) on hppa

2007-04-26 Thread Aurelien Jarno
Package: gcc-4.1
Version: 4.1.2-4
Severity: important

Could you please change the build-depends on binutils to (>= 2.17.50) on
hppa? This will ensure that the TLS support is always activated.

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

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

Versions of packages gcc-4.1 depends on:
ii  binutils  2.17-3 The GNU assembler, linker and bina
ii  cpp-4.1   4.1.2-4The GNU C preprocessor
ii  gcc-4.1-base  4.1.2-4The GNU Compiler Collection (base 
ii  libc6 2.5-4  GNU C Library: Shared libraries
ii  libgcc1   1:4.1.2-4  GCC support library

Versions of packages gcc-4.1 recommends:
ii  libc6-dev 2.5-4  GNU C Library: Development Librari
pn  libmudflap0-dev(no description available)

-- no debconf information


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



Bug#414932: Info received (Bug#414932: linux-image-2.6.18-4-ixp4xx: xfs partition from x86 system can not be used on arm)

2007-04-26 Thread Eric Sandeen
Maybe the alignment isn't broken; it's just "special" - I guess there 
are no actual rules on how the structure must be aligned...  hmm...



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



Bug#414932: linux-image-2.6.18-4-ixp4xx: xfs partition from x86 system can not be used on arm

2007-04-26 Thread Eric Sandeen
Root cause seems to be gcc misaligning the xfs shortform directory 
structures.  In the example below, bar.parent has offset 4, while 
boo.parent has offset 2.  The union seems to cause extra padding - I 
believe "c" should be at offset 2 in both structures.


This is leading to trouble in xfs_dir2_sf_hdr_t and others, and is 
unfortunately leading to on-disk corruption, I think.  The patch that's 
been floating around to "fix" this probably only masks the problem, by 
accommodating the extra padding when calculating sizes.


#include 

struct bar {
unsigned char   a;
unsigned char   b;
union {
unsigned char x;
unsigned char y;
} c;
};

struct boo {
unsigned char   a;
unsigned char   b;
unsigned char   c;
};


#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)

int main(int argc, char ** argv) {

printf("a: %d\n", offsetof(struct bar, a));
printf("b: %d\n", offsetof(struct bar, b));
printf("c: %d\n", offsetof(struct bar, c));

printf("a: %d\n", offsetof(struct boo, a));
printf("b: %d\n", offsetof(struct boo, b));
printf("c: %d\n", offsetof(struct boo, c));

return 0;
}

[EMAIL PROTECTED]:~$ ./gcc-test
a: 0
b: 1
c: 4
a: 0
b: 1
c: 2

[EMAIL PROTECTED]:~$ gcc -v
Using built-in specs.
Target: arm-linux-gnu
Configured with: ../src/configure -v 
--enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr 
--enable-shared --with-system-zlib --libexecdir=/usr/lib 
--without-included-gettext --enable-threads=posix --enable-nls 
--program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-mpfr --enable-checking=release 
arm-linux-gnu

Thread model: posix
gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)

[EMAIL PROTECTED]:~$ uname -a
Linux all6500-arm 2.6.18-4-iop32x #1 Thu Feb 22 03:51:25 UTC 2007 
armv5tel GNU/Linux




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



Bug#421196: -cli and -gtk must Replace transmission (<< 0.6.1.dfsg-2)

2007-04-26 Thread Frédéric Brière
Package: transmission
Version: 0.6.1.dfsg-2
Severity: serious
Justification: Policy 10.1

transmission-cli and transmission-gtk both include files which were part
of transmission up to 0.6.1.dfsg-1, so they must Replace that package.
Otherwise, dpkg just barfs when upgrading.


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

Kernel: Linux 2.6.18-4-k7 (SMP w/1 CPU core)
Locale: LANG=en_CA, LC_CTYPE=en_CA (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages transmission depends on:
pn  transmission-cli   (no description available)
pn  transmission-gtk   (no description available)

transmission recommends no packages.

-- no debconf information


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



Bug#419492: Dillo "save configuration" breaks it

2007-04-26 Thread Yoshio Nakamura

dillo started minimized to 409x108 pixels. When maximized the dillo window
to whole screen, I saw that text was rendered as unreadable microscopic
lines. Deleting ~/.dillo directory resets the browser to working state.


The patches in 355792 and 409126 fix the problems in your bug report.


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



Bug#420726: libc6: ldconfig does not access /etc/ld.so.conf.d/*

2007-04-26 Thread Aurelien Jarno
Aurelien Jarno a écrit :
> Russell Coker a écrit :
>> On Tuesday 24 April 2007 21:55, Aurelien Jarno <[EMAIL PROTECTED]> wrote:
>>> What is the content of /etc/ld.so.conf? This file should have a line
>>> containing:
>>>
>>> "include /etc/ld.so.conf.d/*.conf"
>> Empty.  It is empty on all my machines which have been installed from Etch 
>> or 
>> slightly pre-Etch, regardless of whether they have been upgraded to Etch or 
>> Unstable.
>>
> 
> Which installation media did you used? I have just tried to install Etch
> from the netinstall CD, and it has this file, with the correct line.
> 

Any news on that? How did you installed you Etch? I am not able to
reproduce the problem with a standard installation using the netinstall CD.

-- 
  .''`.  Aurelien Jarno | GPG: 1024D/F1BCDB73
 : :' :  Debian developer   | Electrical Engineer
 `. `'   [EMAIL PROTECTED] | [EMAIL PROTECTED]
   `-people.debian.org/~aurel32 | www.aurel32.net


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



Bug#421195: bootclean runs too late at startup

2007-04-26 Thread ZoeP

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: initscripts
Version: 2.86.ds1-38
Severity: normal

- --- Please enter the report below this line. ---
As the bootclean init script runs at S20 some daemons have already started 
and written files to /var/run (especially acpid) which potentially causes 
other things to fail later as suddenly sockets/pidfiles aren't there.


- --- System information. ---
Architecture: i386
Kernel:   Linux 2.6.20-1-k7

Debian Release: lenny/sid
  500 unstablewww.lennartsson.se
  500 unstablemacaroni.penguin
  500 testing-proposed-updates macaroni.penguin
  500 testing macaroni.penguin
  500 experimentalmacaroni.penguin
1 experimentalmacaroni.penguin

- --- Package information. ---
Depends  (Version) | Installed
==-+-
libc6 (>= 2.3.6-6) | 2.5-4
mount (>= 2.11x-1) | 2.12r-19
e2fsprogs  (>= 1.32+1.33-WIP-2003.04.14-1) | 
1.39+1.40-WIP-2006.11.14+dfsg-2
debianutils(>= 2.13.1) | 2.18
lsb-base(>= 3.0-6) | 3.1-23.1
sysvinit-utils | 2.86.ds1-38


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

iD8DBQFGMW46bbnfPjpiTWURAlnmAJ92QdLpgQ4Yur5jNfgLhBQlLFG2KQCfQjSj
I/j+Sv+Y0oUnKFG+akemvpw=
=ZPo7
-END PGP SIGNATURE-



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



Bug#421167: quodlibet: fails to start, claiming 'filesrc' cannot be found

2007-04-26 Thread Joe Wreschnig
On Thu, 2007-04-26 at 23:21 +0200, Martin wrote:
> Package: quodlibet
> Version: 0.23.1-1
> Severity: grave
> Justification: renders package unusable
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Quod Libet fails to start, pops up a message saying "Quod Libet could
> not find the 'filesrc' GStreamer element. Check your GStreamer
> installation." It used to work fine before/during the freeze.
> ...
> Versions of packages quodlibet recommends:
> ii  gstreamer0.10-alsa0.10.12-2  GStreamer plugin for ALSA
> pn  gstreamer0.10-gnomevfs (no description available)

^-- This would be why. In 0.10.10 and all previous versions, a filesrc
object would be returned:

>>> gst.element_make_from_uri(gst.URI_SRC, "file://", "")
<__main__.GstFileSrc object () at 0x402076bc>

Now, in unstable:
>>> gst.element_make_from_uri(gst.URI_SRC, "file://", "")
<__main__.GstGnomeVFSSrc object () at 0xb7d6393c>

And if I remove gstreamer0.10-gnomevfs:
>>> gst.element_make_from_uri(gst.URI_SRC, "file://", "")
>>>

So, filesrc is in fact broken.

Blah blah API compatibility, blah blah you need unit tests, blah blah,
no one listens to me, blah STOP BREAKING MY SOFTWARE DAMNIT.

The GStreamer changelog says:

2007-02-13  Sebastian Dröge  <[EMAIL PROTECTED]>

* plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
* plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
Also check for an absolute path following file:// in the filesrc
element. Remove redundant check and call g_path_is_absolute() on the
unescaped location.

Sebastian, do you understand what an API is, and why changes like that
ARE NOT ALLOWED, especially in point releases?
-- 
Joe Wreschnig <[EMAIL PROTECTED]>


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


Bug#421194: Psi doesn't change state

2007-04-26 Thread Pierre THIERRY
Package: psi
Version: 0.10-2
Severity: important

Psi starts in Available state, and any following state change to
something else than Offline will not really change the state:

- nothing shows up in XML console,
- state of the contact of the relevant account remains Available

but the state as shown in Psi's tray icon and the icon on the button to
change state is changed.

After that, changing back to any other state than Available will also
fail, but the icon will still change, and changing to Available will
also fail but the icon will not change.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.17-2-k7

Debian Release: lenny/sid
  990 testing www.debian-multimedia.org 
  990 testing security.debian.org 
  990 testing ftp.nerim.net 
  502 stable  ftp.nerim.net 
  501 unstableftp.nerim.net 
  500 unstableftp.nerim.net 
  500 stable  security.debian.org 
  500 stable  ftp.nerim.net 
  200 unstablewww.debian-multimedia.org 
  200 stable  www.debian-multimedia.org 
1 experimentalftp.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
| 


-- 
[EMAIL PROTECTED]
OpenPGP 0xD9D50D8A


signature.asc
Description: Digital signature


Bug#421167: quodlibet: fails to start, claiming 'filesrc' cannot be found

2007-04-26 Thread Joe Wreschnig
On Thu, 2007-04-26 at 23:21 +0200, Martin wrote:
> Package: quodlibet
> Version: 0.23.1-1
> Severity: grave
> Justification: renders package unusable
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Quod Libet fails to start, pops up a message saying "Quod Libet could
> not find the 'filesrc' GStreamer element. Check your GStreamer
> installation." It used to work fine before/during the freeze.

Sounds like something in GStreamer changed. QL actually tries to create
that element by checking the result of
gst.element_make_from_uri(gst.URI_SRC, "file://", ""), which previously
returned whatever element would handle a file URL. We didn't actually
care what it was, as long as it existed (filesrc is just the most
common / only? one).

I can't reproduce this, but you're the third person I've heard it from
and across three distros.

This is a grave GStreamer bug.
-- 
Joe Wreschnig <[EMAIL PROTECTED]>


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


Bug#421193: python-setuptools: does not support python2.5

2007-04-26 Thread LI Daobing
Package: python-setuptools
Version: 0.6c5-2
Severity: normal

you provide easy_install-2.5, but it never work

$ easy_install-2.5
Traceback (most recent call last):
  File "/usr/bin/easy_install-2.5", line 5, in 
from pkg_resources import load_entry_point
ImportError: No module named pkg_resources

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

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

Versions of packages python-setuptools depends on:
ii  python2.4.4-2An interactive high-level object-o
ii  python-central0.5.13-0.1 register and build utility for Pyt

python-setuptools recommends no packages.

-- no debconf information


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



Bug#421192: texinfo: describe which tex packages needed

2007-04-26 Thread Kevin Ryde
Package: texinfo
Version: 4.8.dfsg.1-4
Severity: wishlist

It'd be nice if the package description or the README.Debian said what
tex packages (texlive or tetex or whatever) are needed for full dvi
and/or pdf etc operation (through texi2dvi, texi2pdf, etc).

With tetex I think I only had tetex-base, but with the new texlive I
seem to need texlive-latex-base, plus texlive-generic-recommended for
@image, or something like that (perhaps I'm mistaken).  Of course you
can use makeinfo happily without tex, so they're not dependencies as
such, but some guidance on what you should get for full operation
would be nice.


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

Kernel: Linux 2.6.15-1-486
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages texinfo depends on:
ii  libc6 2.5-2  GNU C Library: Shared libraries

texinfo recommends no packages.

-- no debconf information


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



Bug#421173: nscd: depends on removed libssp0 package

2007-04-26 Thread Pierre Habouzit
On Fri, Apr 27, 2007 at 12:27:56AM +0200, Pierre Habouzit wrote:
reassign 421173 glibc
reassign 413370 glibc
forcemerge 421173 413370
thanks
# gee ...

> 
> On Thu, Apr 26, 2007 at 11:34:11PM +0200, Sven Joachim wrote:
> > Package: nscd 
> > Version: 2.5-4
> > Severity: grave
> > 
> > Your package depends on libssp0 which is no longer present in the
> > latest gcc-4.1 upload (4.1.2-4).  Following Matthias Klose's advice
> > in http://bugs.debian.org/421162, I report this as a bug against your
> > package.  Please examine whether a binNMU solves this problem or if
> > you have to change the dependencies.
> > 
> > 
> > -- System Information:
> > Debian Release: lenny/sid
> >   APT prefers unstable
> >   APT policy: (500, 'unstable')
> > Architecture: i386 (i686)
> > 
> > Kernel: Linux 2.6.20.7
> > Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.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]
> > 
> 
> -- 
> ·O·  Pierre Habouzit
> ··O[EMAIL PROTECTED]
> OOOhttp://www.madism.org



-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpEtLks9ZWgH.pgp
Description: PGP signature


Bug#421135: X does not start on gnumach (2:1.3.99.dfsg.cvs20070405-1)

2007-04-26 Thread Samuel Thibault
Hi,

YAMAMOTO, Hiroyuki, le Fri 27 Apr 2007 02:24:38 +0900, a écrit :
> X does not start on gnumach (Version: 2:1.3.99.dfsg.cvs20070405-1),
> though X starts on gnumach (Version: 2:1.3.99.dfsg.cvs20070306-1) on the
> same condition.
> It is guessed that it is a bug perhaps related to the device.

> xf86ReadBIOS() can't device_open. ((os/device) no such device)

Erf, yes: Thomas Schwinge dropped the iopl device, which X.org uses for
getting I/O permissions.  It's just a matter of reverting commit of
2007-04-02 until gnumach has i386_io_perm_create/modify implemented and
Xorg uses them through ioperm().

Samuel



Bug#383316: Could you please forward this proposed license to Teosto? (was: Re: Choosing a license for Frets on Fire songs)

2007-04-26 Thread Jason Spiro

Hi Matthew,

2007/4/26, Matthew Johnson <[EMAIL PROTECTED]> wrote:

On Thu Apr 26 16:25, Jason Spiro wrote:
> Copyright (C)  
>
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this work (the "Work") to use, modify, copy, publish,
> distribute, publicly perform, and/or sublicense copies of the Work,
> and/or to charge a fee for the physical act of transferring copies,
> and/or to offer warranty protection for a fee, and/or to permit
> persons to whom the Work is furnished to do all of the aforementioned
> actions, subject to the following conditions:
>
> * Persons distributing the Work to the general public may only do so
> if the Work is distributed and/or bundled with game software.
> * No person may musically rearrange the Work or modify the lyrics of
> the Work unless that person obtains permission to do so from either
> the author or the copyright holder.

This contradicts "Permission is hereby granted, ... to use, modify,"
above.


I don't know much about how to write licenses, and this is the first
one I have ever written.  I figured that everything after the "subject
to the following conditions:" would automatically override the initial
permissions I gave.  I guess I was wrong?


May I suggest using a CCby licence and adding 'may only be
distributed with the game' rather than cobbling together your own
inconsistent one...


CC-BY-ND doesn't let anyone put additional restrictions on covered
works; it says:  "Licensor shall not be bound by any additional
provisions that may appear in any communication from You."  And we
can't use a CC-BY-NC-ND license with additional permissions either:
"...the game's music can't be distributed with a CC license. The
problem is while the songs can freely be distributed with the game,
they can't be distributed or otherwise used independently of the game
without a specific license from Teosto."[1]

It *is* possible to make new licenses by copying and editing the text
of Creative Commons licenses.[2]  Perhaps I or someone else could
modify the text of CC-BY and add restrictions on redistribution
separate from game software, musical rearrangement, and changes to
lyrics?  But since CC-BY is a much longer license wouldn't it'd be
harder to wrap one's head around it in order to modify?  Maybe it'd
just be easier for us to fix the license I wrote.

And then again, I wonder if Teosto will accept *any* license we write.
Maybe we should just send them the license I wrote (after it's
fixed), ask them if they'll accept it, and if not, ask if they could
kindly either change it to their liking or write their own.

Maybe it'd be more worth it just to get more DFSG-compliant music out
there instead of spending more effort on this.  It can't be that hard
to find good open-content music and to get the artists to release the
individual tracks so we can remix them for FoF, can it?

Cheers,
Jason

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=383316#125

[2] http://creativecommons.org/policies#license says:  "We do not
assert a copyright in the text of our licenses. Modified versions of
our licenses, however, should not be labeled as 'Creative Commons'
licenses."

[3] For those just tuning into the conversation now:  Teosto is the
Finnish songwriters' copyright collection agency.  They collect
royalty payments on behalf of most Finnish musicians.  See
http://en.wikipedia.org/wiki/Teosto


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



Bug#149020: New Vacancy

2007-04-26 Thread Mr. Albert
The progressive company which takes  high place in sphere of professional 
development of the Internet  Technologies offers vacancy of the Transfers 
Manager for the active and purposeful person.
If you are interested in this offer, please send us this application form.
Application Form:
1. Your full name:
2. Your country:
3. Your full adress.
4. Your mobile contact phone:
5. Your fixed/home contact phone:
6. Your work contact phone:
7. Your contact email:
8. Are you ready to accept money transfers to your bank account?
contact us:   [EMAIL PROTECTED]
Truly yours.
MR. Albert



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



Bug#421178: ssmtp: [INTL:pt] Portuguese translation for debconf messages

2007-04-26 Thread Santiago Ruano Rincón
package ssmtp
tags 421178 + pending
thanks

Added into svn, it will be included in the next revision.

Thanks,

Santiago


On Thu, Apr 26, 2007 at 11:38:33PM +0100, Traduz - Portuguese Translation Team 
wrote:
> Package: ssmtp
> Version: 2.61-12
> Tags: l10n, patch
> Severity: wishlist
> 
> Portuguese translation for ssmtp's debconf messages.
> Translator: Ricardo Silva 
> Feel free to use it.
> 
> For translation updates please contact 'Last Translator' or the
> Portuguese Translation Team .
> 
> 
> -- 
> Best regards,
> 
> Miguel Figueiredo
> "Traduz" - Portuguese Translation Team
> http://www.DebianPT.org
> 


signature.asc
Description: Digital signature


Bug#389857: libxml-libxml-perl: New upstream version available (1.63)

2007-04-26 Thread Bryan Donlan

retitle 389857 libxml-libxml-perl: New upstream version available (1.63)
thanks

Version 1.63 is now available upstream.


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



Bug#362618: footnote

2007-04-26 Thread Eric Shattow
I (Eric Shattow) am the author of the above patch in feh bugtracker.
Works for me, it's been included upstream by the feh author. Given the
extended time between upstream releases, I ask that this patch be
considered for debian feh 1.3.4 inclusion.

Inccidentally, there is an instance of feh svn being maintained by
raster (part of the E17 enlightenment svn). This patch is included
upstream in those feh sources also. I do not know the circumstances
under which two concurrent versions of feh are being maintained.



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



Bug#421190: libgfortran2-dev: depends on non-existing version of gcc-4.2-base

2007-04-26 Thread micha
Package: libgfortran2-dev
Version: 4.2-20060923-1
Severity: normal

This version fo the package depends on gcc-4.2-base version
4.2-20060923-1 which doesn't exist and is thus uninstallable without
forcing the instalation

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

Kernel: Linux 2.6.20.4
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 libgfortran2-dev depends on:
ii  gcc-4.2-base  4.2-20070405-1 The GNU Compiler Collection (base 
ii  libgfortran2  4.2-20070405-1 Runtime library for GNU Fortran ap

libgfortran2-dev recommends no packages.

-- no debconf information


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



Bug#421191: python-gtk2: debug version of gtk library causes Segmentation Fault

2007-04-26 Thread Achim Gaedke
Package: python-gtk2
Version: 2.8.6-8
Severity: normal

install the package libgtk2-2.0-0-dbg

add the symbolic links in /usr/lib/debug/usr/lib
lrwxrwxrwx 1 root root  26 2007-04-26 21:57 libgdk-x11-2.0.so -> 
libgdk-x11-2.0.so.0.800.20
lrwxrwxrwx 1 root root  26 2007-04-26 21:57 libgdk-x11-2.0.so.0 -> 
libgdk-x11-2.0.so.0.800.20
lrwxrwxrwx 1 root root  26 2007-04-26 21:57 libgtk-x11-2.0.so -> 
libgtk-x11-2.0.so.0.800.20
lrwxrwxrwx 1 root root  26 2007-04-26 21:57 libgtk-x11-2.0.so.0 -> 
libgtk-x11-2.0.so.0.800.20

and try out:

[EMAIL PROTECTED]:~$ LD_LIBRARY_PATH=/usr/lib/debug/usr/lib python -c "import 
gtk"
Segmentation fault

setting ulimit results in a core file with following backtrace:

#0  0xb7f3107f in _dl_rtld_di_serinfo () from /lib/ld-linux.so.2
#1  0xb7f385b0 in _dl_make_stack_executable () from /lib/ld-linux.so.2
#2  0xb7f34432 in _dl_rtld_di_serinfo () from /lib/ld-linux.so.2
#3  0xb7f37ece in _dl_make_stack_executable () from /lib/ld-linux.so.2
#4  0xb7ef1e1d in dlopen () from /lib/i686/cmov/libdl.so.2
#5  0xb7f34432 in _dl_rtld_di_serinfo () from /lib/ld-linux.so.2
#6  0xb7ef249c in dlerror () from /lib/i686/cmov/libdl.so.2
#7  0xb7ef1d51 in dlopen () from /lib/i686/cmov/libdl.so.2
#8  0x080e1312 in _PyImport_GetDynLoadFunc ()
#9  0x080d6302 in _PyImport_LoadDynamicModule ()
#10 0x080d4325 in PyImport_ExecCodeModule ()
#11 0x080d4a49 in PyImport_ReloadModule ()
#12 0x080d4ef1 in PyImport_ReloadModule ()
#13 0x080d50fe in PyImport_ImportModuleEx ()
#14 0x080afe91 in _PyBuiltin_Init ()
#15 0x080589d7 in PyObject_Call ()
#16 0x080b3d2d in PyEval_CallObjectWithKeywords ()
#17 0x080b7a90 in PyEval_EvalFrame ()
#18 0x080ba765 in PyEval_EvalCodeEx ()
#19 0x080ba7c9 in PyEval_EvalCode ()
#20 0x080d38fc in PyImport_ExecCodeModuleEx ()
#21 0x080d3f76 in PyImport_ExecCodeModule ()
#22 0x080d5886 in PyImport_ImportModule ()
#23 0x080d4a49 in PyImport_ReloadModule ()
#24 0x080d4ef1 in PyImport_ReloadModule ()
#25 0x080d50fe in PyImport_ImportModuleEx ()
#26 0x080afe91 in _PyBuiltin_Init ()
#27 0x080589d7 in PyObject_Call ()
#28 0x080b3d2d in PyEval_CallObjectWithKeywords ()
#29 0x080b7a90 in PyEval_EvalFrame ()
#30 0x080ba765 in PyEval_EvalCodeEx ()
#31 0x080ba7c9 in PyEval_EvalCode ()
#32 0x080dcfcb in PyRun_SimpleStringFlags ()
#33 0x080557a2 in Py_Main ()
#34 0x08055032 in main ()

the same happens with gtk-2.10 and pygtk-2.10 (unstable)

I am trying to trace down a x11 error. Could you also tell me how to use the 
--sync flag without dbg version of gtk?

The last lines of strace are:

LD_LIBRARY_PATH=/usr/lib/debug/usr/lib strace /usr/bin/python2.4 -c "import gtk"

open("/usr/lib/libpng12.so.0", O_RDONLY) = 5
read(5, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\2406\0"..., 512) = 512
fstat64(5, {st_mode=S_IFREG|0644, st_size=137760, ...}) = 0
mmap2(NULL, 140716, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 
0xb7204000
mmap2(0xb7226000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x21) = 0xb7226000
close(5)= 0

so it might be an issue for libpng12, too.

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

Kernel: Linux 2.6.18-4-686 (SMP w/1 CPU core)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-gtk2 depends on:
ii  libatk1.0-0  1.18.0-2The ATK accessibility toolkit
ii  libc62.5-1   GNU C Library: Shared libraries
ii  libcairo21.4.4-1 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.4.2-1.2   generic font configuration library
ii  libglib2.0-0 2.12.11-3   The GLib library of C routines
ii  libgtk2.0-0  2.8.20-7The GTK+ graphical user interface 
ii  libpango1.0-01.16.2-2Layout and rendering of internatio
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxcursor1  1.1.7-4 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxfixes3   1:4.0.1-5   X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.1-4   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-5 X11 RandR extension library
ii  libxrender1  1:0.9.1-3   X Rendering Extension client libra
ii  python   2.4.4-2 An interactive high-level object-o
ii  python-cairo 1.4.0-2 Python bindings for the Cairo vect
ii  python-numeric   24.2-7  Numerical (matrix-oriented) Mathem
ii  python-support   0.6.3   automated rebuilding support for p

python-gtk2 recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTE

Bug#383495: Please update manpage.xml.ex to better work with latest docbook-xsl

2007-04-26 Thread Daniel Leidert
Am Freitag, den 27.04.2007, 08:54 +1000 schrieb Craig Small:
> OK, looking at the bug report, I used what was found in 376378 and not
> your bug report. Then they were merged so all seem right in the world.
> 
> 
> On Thu, Apr 26, 2007 at 12:41:15PM +0200, Daniel Leidert wrote:
> > So could you please update the template with the one I sent recently? If
> I am looking at http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=383495
> 
> You sent and email Dated Tue, 24 Apr 2007 17:29:03 +0200 (by the

Tue, 24 Apr 2007 17:29:04 +0200 - yes, that's the right one that shall
have the fixed indentation too (as requested my Michael Biebl).

> website) that has the patch manpage.xml.ex in it, is that the correct
> one?
> 
> Want to make sure the right one goes in this time.

Thanks. Please don't hesitate to contact me, if you want to add some
feature/content to this template or if you want to change some of the
formatting output. I'm maintaining docbook2x, docbook-xsl and other
relevant tools and would like to help to keep this template up-to-date.

Regards, Daniel



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



Bug#382175: Ping

2007-04-26 Thread Sami Liedes
Hi,

Anything new about this bug?

I think I could help with this, either the reverse engineering or
reimplementation effort, if that's needed. I don't have very much
experience with RPC though.

Sami


signature.asc
Description: Digital signature


Bug#421189: Remove/merge redundant "dvorak" file

2007-04-26 Thread Andrew Sayers
Package: xkb-data
Version: 0.9-4
Severity: normal

I've encountered an obscure bug that occurs in dvorak(gb) but not
gb(dvorak).  When I'm using the Beryl window manager, holding down the
"alt" key causes the active window to lose the focus.  I've tried
several other WMs and can't replicate it outside Beryl.

The "dvorak" file has (largely) compatible equivalents in the respective
national keyboard layouts, so having a specific dvorak file is confusing
to users and leads to inconsistencies like the above - if it's really
important that both exist, could you make dvorak($lang) just include the
settings from $lang(dvorak)?

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

Kernel: Linux 2.6.18-4-k7 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

-- no debconf information


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



Bug#416647: debconf is essential to remove awffull

2007-04-26 Thread Jose Carlos Medeiros

Hi,

But if I patch as you said, I will receive a error with this command in "purge"

db_get awffull/directory

I need debconf  to remove awffull,  and debconf is in pre-depends.
what is wrong ? debconf must be as depends instead pre-depends?

Regards
--

[]'s
José Carlos


Bug#65937: Are you really touching the registry everytime the focus changes to another thread?

2007-04-26 Thread brand-new

CDPN Starts Huge Campaign! Watch For News!

China Datacom Corp.
Sym: CDPN
Price: $0.08

CDPN, in the news 8 months ago for purchasing Supremacy International
and entering the new G3 Market, is beginning a huge marketing campaign.
Watch for the news and get ready for the ride! Get on CDPN firs thing
Friday!

I always filter for unread items and have to use Ctrl-Shift-F every time
I start Sharpreader. While Digg claims to have ways to prevent
manipulation, one can't help but wonder whether it's enough, and I'm
sure there are plenty of spammers out there just dying to beat the
system.
I guess that has to do with the content checking.
I did see in the release comments of SharpReader that this may have been
resolved.
My request has got to be for handling the Window's shutdown call better
or something though.
Posted by Scott Walters at August 28, 2006  9:57 AM Thanks for a
wonderful product. Vista is teh suck or SharpReader is teh suck (on
Vista)?
Posted by Eric Pence at August 18, 2006  6:45 PM Hey Luke, thanks for
updating Sharpreader once again. Long-term Assignment.
I also really like the drill down capability in the headline window,
since most of the events are linked to other events. I have a small
issue with 0.
Posted by Kim Forota at August  2, 2006  2:57 AM Yes we do this fot that
reason.
0 feeds to display the events. I may be back with a question or so! Very
good work on your part. AppSettings" threw an exception.
Posted by Nat at August  3, 2006  9:14 AM I just wanted to leave you a
quick note of appreciation for all the work you've done on SharpReader.
0 to crash intermittently.
Experience in pharmaceutical, cosmetic or personal care industries and a
background in a process-engineering or. Btw from what i hear it doesn't
work with adsense.
Posted by David at August 17, 2006  2:04 PM Luke, any news on the issue
where McAfee is complaining every time I click on a post in SharpReader?
If you wish to contact me about this post, you can do so by email. The
Digg Blog says the following about this burying feature: Digg now allows
logged in users to bury stories as 'inaccurate'.
they are all middle-men. 0 and I cannot use your upgrades since I need
this feature. I think I sent you one or two Error Reports on this.
0 feeds to display the events. Can I fool SharpReader into alerting
whenever a new comment is posted to an article? (From OceanStateJobs.
Could you make this configurable? I also use the same sources as they
do: press releases from the research facilities and other sources. What
else could it be comparing on?
That was a lifesaver for me.
Los Angeles Acting School EMAS Posted by Meisner Technique Los Angeles
Acting Classes at August 31, 2006  5:27 PM Hi there!
Sharpreader a great product and I want to say thanks for your continuing
great work on it. and while the referrer header may be spoofable, I
don't see how a spam-email would be able to achieve this.
Posted by Omer van Kloeten at August  3, 2006 11:06 AM Luke, Thanks for
the update. However, there is one feature that I'd like to see in the
future versions: Please add support for feeds using Windows
Authentication. Filtering, (far) more often than not, raises Error(TE),
"An unexpected error occurred: Access is denied". Thanks for all your
good work.
I'm just wrapping up a vBulletin PHP page for feeding RSS2. Posted by
Blake at October 14, 2006  1:31 AM Hi Luke, any chance you can add an
option to support auto proxy configuration urls? Google likes them , as
long as they are not filtered.
" Posted by Phil Ringnalda at August  5, 2006  1:10 AM Hi Luke, why is
this version redirecting to www. 0 feeds with per-entry author elements,
SR doesn't display the author. While it can be used to fool readers, the
redirect URL is short enough to look suspicious, and it still does more
good than harm, most of the time.
Because some podcasts have the url to the mp3-file directly as the
post-name (Right now i have to click on "Open in seperate window" and
then click "Save to .



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



Bug#421188: libpam-keyring: please add support for changing the password of a keyring

2007-04-26 Thread Arjan Oosting
Package: libpam-keyring
Version: 0.0.8-6
Severity: wishlist
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I would be nice if pam-keyring-tool would support changing the password
of a keyring. Upstream has released a testing version (with the same
version number) which support this and the patch can be found on
https://bugs.launchpad.net/gnome-keyring/+bug/54792 

I have rebuild the package with the patch applied and it seems to work
for me. (Attached is the interdiff)

Greetings Arjan.

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

Kernel: Linux 2.6.20-2-nebula (PREEMPT)
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libpam-keyring depends on:
ii  libc6 2.5-4  GNU C Library: Shared libraries
ii  libglib2.0-0  2.12.11-3  The GLib library of C routines
ii  libgnome-keyring0 0.8.1-2GNOME keyring services library
ii  libpam0g  0.79-4 Pluggable Authentication Modules l

Versions of packages libpam-keyring recommends:
ii  gnome-session 2.18.0-1   The GNOME 2 Session Manager

- -- no debconf information

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

iD8DBQFGMTa+UALvsZYuOJARAlOMAKDVpQih5ygNRmkWeu0jJ3Hsyat26gCcCGBG
7pmGOQMLk6TM8Bik+5PkcDs=
=DKw0
-END PGP SIGNATURE-
diff -u pam-keyring-0.0.8/debian/changelog pam-keyring-0.0.8/debian/changelog
--- pam-keyring-0.0.8/debian/changelog
+++ pam-keyring-0.0.8/debian/changelog
@@ -1,3 +1,13 @@
+pam-keyring (0.0.8-6.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/patches/06pam-keyring_change-password.dpatch:
+- Add an option to pam-keyring-tool for changing the password of a
+  keyring. Patch taken from
+  https://bugs.launchpad.net/gnome-keyring/+bug/54792  
+
+ -- Arjan Oosting <[EMAIL PROTECTED]>  Fri, 27 Apr 2007 01:13:21 +0200
+
 pam-keyring (0.0.8-6) unstable; urgency=low
 
   * debian/patches/05pam-keyring_kfreebsd.dpatch:
diff -u pam-keyring-0.0.8/debian/patches/00list 
pam-keyring-0.0.8/debian/patches/00list
--- pam-keyring-0.0.8/debian/patches/00list
+++ pam-keyring-0.0.8/debian/patches/00list
@@ -5,0 +6 @@
+06pam-keyring_change-password
only in patch2:
unchanged:
--- pam-keyring-0.0.8.orig/config.sub
+++ pam-keyring-0.0.8/config.sub
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2006-09-20'
+timestamp='2007-01-18'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -245,12 +245,12 @@
| bfin \
| c4x | clipper \
| d10v | d30v | dlx | dsp16xx \
-   | fr30 | frv \
+   | fido | fr30 | frv \
| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
| i370 | i860 | i960 | ia64 \
| ip2k | iq2000 \
| m32c | m32r | m32rle | m68000 | m68k | m88k \
-   | maxq | mb | microblaze | mcore \
+   | maxq | mb | microblaze | mcore | mep \
| mips | mipsbe | mipseb | mipsel | mipsle \
| mips16 \
| mips64 | mips64el \
@@ -324,7 +324,7 @@
| clipper-* | craynv-* | cydra-* \
| d10v-* | d30v-* | dlx-* \
| elxsi-* \
-   | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \
+   | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
| h8300-* | h8500-* \
| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
| i*86-* | i860-* | i960-* | ia64-* \
@@ -925,6 +925,9 @@
basic_machine=sh-hitachi
os=-hms
;;
+   sh5el)
+   basic_machine=sh5le-unknown
+   ;;
sh64)
basic_machine=sh64-unknown
;;
@@ -1219,7 +1222,7 @@
  | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
  | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
  | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
- | -skyos* | -haiku* | -rdos* | -toppers*)
+ | -skyos* | -haiku* | -rdos* | -toppers* | -drops*)
# Remember, each alternative MUST END IN *, to match a version number.
;;
-qnx*)
@@ -1414,6 +1417,9 @@
m68*-cisco)
os=-aout
;;
+mep-*)
+   os=-elf
+   ;;
mips*-cisco)
os=-elf
;;
only in patch2:
unchanged:
--- pam-keyring-0.0.8.orig/config.guess
+++ pam-keyring-0.0.8/config.guess
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2006-07-02'
+timestamp='2007-03-06'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of

Bug#421187: seems not to work with readline programs

2007-04-26 Thread Frederik Eaton
Package: expect
Version: 5.43.0-8
Severity: normal

(I'm sorry if this is a duplicate)

The following script has erroneous behaviour:


#!/usr/bin/expect -d
spawn gdb
interact


The last things it prints are:


(gdb) spawn id exp0 sent <\u0004>
spawn id exp6 sent 
quit
interact: received eof from spawn_id exp6
write() failed to write anything - will sleep(1) and retry...
 tty_set: raw = 0, 
echo = 1
tty_set: raw = 5, echo = 0


There is about a 1 second delay as it exits. I think there should be
no delay.

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

Versions of packages expect depends on:
ii  libc6 2.5-1  GNU C Library: Shared libraries
ii  tcl8.48.4.12-1.1 Tcl (the Tool Command Language) v8

expect recommends no packages.

-- no debconf information


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



Bug#421186: Broken font link crashes iceweasel

2007-04-26 Thread Matías A. Bellone

Package: iceweasel
Version: 2.0.0.3-1

Was getting iceweasel to crash upon loading (foreground or background) 
certain websites. When running from the console it only reported 
"Segmentation Fault" and when run with '-debug'  option - due to lack of 
debugging symbols - it didn't show any information.


Running it with strace showed it was crashing when trying to open a font 
file twice. Both times getting an error stating that file did not exist.


It turned out to be a broken symlink. Which means that error handling 
there should be reviewed and enhanced.


uname -a (stock kernel):
Linux 2.6.18-4-686 #1 SMP Mon Mar 26 17:17:36 UTC 2007 i686 GNU/Linux

dpkg -s libc6 | grep ^Version:
Version: 2.3.6.ds1-13

Regards,
Matías


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



Bug#420611: xserver-xorg-core: Composite extension not available?

2007-04-26 Thread Adam Spragg
Brice Goglin wrote:
> Adam Spragg wrote:
>> With or without an "Option Composite Enable" line in my xorg.conf,
>> Xorg.0.log claims that the Composite extension is initialized. At least,
>> no errors are reported.
> 
> I guess "initialized" is different from "enabled"...

It says it's initializing it, and then gives no warnings or errors. I'm
assuming under the unix "be silent on success, noisy on error" rule,
along with the fact that most of the other extensions are initialized
without problems & output no warnings and that there are plenty of other
warnings in the log, that the Composite extension is being initialized
without problems.

> That's a couple interesting warnings that we have seen in other bugs as
> well.
> But it's not clear why Composite would not be enabled.
> Does Direct Rendering even work? (according to glxinfo)

Yup, output of glxinfo follows:

name of display: :0.0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_ARB_multisample, GLX_EXT_import_context,
GLX_EXT_texture_from_pixmap,
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer,
GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGI_swap_control,
GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group
client glx vendor string: SGI
client glx version string: 1.4
client glx extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap
GLX version: 1.2
GLX extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
GLX_MESA_swap_frame_usage, GLX_OML_swap_method,
GLX_SGI_make_current_read,
GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample,
GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group
OpenGL vendor string: Tungsten Graphics, Inc
OpenGL renderer string: Mesa DRI Intel(R) 945GM 20061017 x86/MMX/SSE2
OpenGL version string: 1.3 Mesa 6.5.2
OpenGL extensions:
GL_ARB_depth_texture, GL_ARB_fragment_program, GL_ARB_imaging,
GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_point_parameters,
GL_ARB_shadow, GL_ARB_texture_border_clamp, GL_ARB_texture_compression,
GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat,
GL_ARB_texture_rectangle, GL_ARB_transpose_matrix,
GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_window_pos,
GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color,
GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate,
GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint,
GL_EXT_cull_vertex, GL_EXT_compiled_vertex_array, GL_EXT_convolution,
GL_EXT_copy_texture, GL_EXT_draw_range_elements, GL_EXT_fog_coord,
GL_EXT_histogram, GL_EXT_multi_draw_arrays, GL_EXT_packed_pixels,
GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal,
GL_EXT_secondary_color, GL_EXT_separate_specular_color,
GL_EXT_shadow_funcs, GL_EXT_stencil_wrap, GL_EXT_subtexture,
GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp,
GL_EXT_texture_env_add, GL_EXT_texture_env_combine,
GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic,
GL_EXT_texture_lod_bias, GL_EXT_texture_object,
GL_EXT_texture_rectangle,
GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1,
GL_APPLE_client_storage, GL_APPLE_packed_pixels,
GL_ATI_blend_equation_separate, GL_IBM_rasterpos_clip,
GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate,
GL_MESA_pack_invert, GL_MESA_ycbcr_texture, GL_MESA_window_pos,
GL_NV_blend_square, GL_NV_light_max_exponent, GL_NV_texture_rectangle,
GL_NV_texgen_reflection, GL_NV_vertex_program, GL_NV_vertex_program1_1,
GL_OES_read_format, GL_SGI_color_matrix, GL_SGI_color_table,
GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp,
GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SGIX_depth_texture,
GL_SUN_multi_draw_arrays

   visual  x  bf lv rg d st colorbuffer ax dp st accumbuffer  ms  cav
 id dep cl sp sz l  ci b ro  r  g  b  a bf th cl  r  g  b  a ns b eat
--
0x23 24 tc  0 32  0 r  y  .  8  8  8  8  0  0  0  0  0  0  0  0 0 None
0x24 24 tc  0 32  0 r  .  .  8  8  8  8  0  0  0  0  0  0  0  0 0 None
0x25 24 tc  0 32  0 r  y  .  8  8  8  8  0 24  8  0  0  0  0  0 0 None
0x26 24 tc  0 

Bug#421025: XCreateFontSet fails with fixed 13 as first font pattern in UTF-8 environment

2007-04-26 Thread Ben Hutchings
On Fri, 2007-04-27 at 00:46 +0200, Brice Goglin wrote:
> Brice Goglin wrote:
> > I was rather thinking of locating where this assertion is (I don't see
> > it in libx11, strace/gdb might help to locate the library or binary
> > where it comes from). And then try to understand where the error comes
> > from by either reading the corresponding code, or adding some debug
> > printf. Not very easy...
> >   
> 
> I might have been drinking too much lately since the assertion is in
> your program, not in fontset.c in a lib :)
> 
> Now we have to understand why the code at the URL below returns NULL:
> http://git.debian.org/?p=pkg-xorg/lib/libx11.git;a=blob;f=src/FSWrap.c;h=10634ceecae26eab5306507cadda2181019ae2be;hb=HEAD#l167
> 
> That would be either XOpenOM returning NULL,

Doesn't depend on the font name.

> or XCreateOC returning NULL,

It's got to be that one.

>  or list->charset_list && *missing_charset_list == NULL...

If list->charset_list != NULL and list->charset_count == 0, the Xmalloc
call in copy_string_list might return NULL (I don't know whether it
supports a size of 0), causing copy_string_list and XCreateFontSet() to
return NULL.  This seems unlikely to be triggered only by the exact font
pattern lists I identified though.

Ben.

-- 
Ben Hutchings
If God had intended Man to program,
we'd have been born with serial I/O ports.


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


Bug#421185: quagga : [INTL:pt] Portuguese translation for debconf messages

2007-04-26 Thread Traduz - Portuguese Translation Team

Package: quagga
Version: 0.99.6-6
Tags: l10n, patch
Severity: wishlist

Portuguese translation for quagga's debconf messages.
Translator: Miguel Figueiredo 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .


--
Best regards,

Rui Branco
"Traduz" - Portuguese Translation Team
http://www.DebianPT.org














































pt.po
Description: application/gettext


Bug#210911: Found in later verison

2007-04-26 Thread Sami Liedes
package gconf
found 210911 1.0.9-7.2
thanks

Hi,

How about fixing this trivial bug in the next release?

Sami


signature.asc
Description: Digital signature


Bug#418041: err...

2007-04-26 Thread Roland Dreier
sorry, that last email was meant for 418014, not this bug...


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



Bug#421183: libgtk2.0-0: file dialog oscillates between two sizes

2007-04-26 Thread Ken Bloom
Package: libgtk2.0-0
Version: 2.10.11-2
Severity: important

When I go to save or export files in the GIMP, dia, or inkscape the
file dialog oscillates very quickly between two sizes, making it
impossible to click either the cancel or save buttons. I can still use
the dialog entirely by keyboard however, and other controls are
unaffected because they're anchored to the left side of the dialog
box.

FreeBSD users report similar behavior at
http://www.freebsdforums.org/forums/showthread.php?t=48891

--Ken Bloom

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

Kernel: Linux 2.6.18-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.18.0-2   The ATK accessibility toolkit
ii  libc6 2.5-4  GNU C Library: Shared libraries
ii  libcairo2 1.4.4-1The Cairo 2D vector graphics libra
ii  libcupsys21.2.7-4Common UNIX Printing System(tm) - 
ii  libfontconfig12.4.2-1.2  generic font configuration library
ii  libglib2.0-0  2.12.11-3  The GLib library of C routines
ii  libgnutls13   1.6.2-1the GNU TLS library - runtime libr
ii  libgtk2.0-common  2.10.11-2  Common files for the GTK+ graphica
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.16.2-2   Layout and rendering of internatio
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libtiff4  3.8.2-7Tag Image File Format (TIFF) libra
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxcursor1   1:1.1.8-2  X cursor management library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxfixes31:4.0.3-2  X11 miscellaneous 'fixes' extensio
ii  libxi61:1.0.1-4  X11 Input extension library
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.1-1  X11 RandR extension library
ii  libxrender1   1:0.9.2-1  X Rendering Extension client libra
ii  zlib1g1:1.2.3-13 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.10.11-2  The programs for the GTK+ graphica

-- no debconf information


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



Bug#418014: libibverbs1: sysfs not available : libibverbs: Fatal: couldn't read uverbs ABI version.

2007-04-26 Thread Roland Dreier
I'm not sure what is being asked for here.  Would you like libibverbs1
to work if sysfs is not mounted, or are you just looking for a better
error message that explains the cause of the failure better?


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



Bug#421184: updmap machinery is not robust enough

2007-04-26 Thread David Frey
Package: texlive-base
Version: 2007-4
Severity: wishlist

Please get rid of the updmap machinery, or at least, make it more
robust.

On most major LaTeX updates the update machinery fails and a manual
syncwithtree or updmap-sys is necessary. 

This is with locally installed fonts.

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

Kernel: Linux 2.6.18
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages texlive-base depends on:
ii  texlive-base-bin  2007-5 TeX Live: Essential binaries
ii  texlive-common2007-4 TeX Live: Base component
ii  texlive-doc-base  2007-2 TeX Live: Base documentation

Versions of packages texlive-base recommends:
pn  dvipdfmx   (no description available)
ii  lmodern   1.010x-3   scalable PostScript and OpenType f

Versions of packages tex-common depends on:
ii  debconf   1.5.13 Debian configuration management sy
ii  ucf   2.0021 Update Configuration File: preserv

Versions of packages texlive-base is related to:
pn  tetex-base (no description available)
ii  tetex-bin 2007-4 TeX Live: teTeX transitional packa
pn  tetex-extra(no description available)

-- debconf information excluded


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



Bug#383316: Could you please forward this proposed license to Teosto? (was: Re: Choosing a license for Frets on Fire songs)

2007-04-26 Thread Matthew Johnson
On Thu Apr 26 16:25, Jason Spiro wrote:
> Copyright (C)  
> 
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this work (the "Work") to use, modify, copy, publish,
> distribute, publicly perform, and/or sublicense copies of the Work,
> and/or to charge a fee for the physical act of transferring copies,
> and/or to offer warranty protection for a fee, and/or to permit
> persons to whom the Work is furnished to do all of the aforementioned
> actions, subject to the following conditions:
> 
> * Persons distributing the Work to the general public may only do so
> if the Work is distributed and/or bundled with game software.
> * No person may musically rearrange the Work or modify the lyrics of
> the Work unless that person obtains permission to do so from either
> the author or the copyright holder.

This contradicts "Permission is hereby granted, ... to use, modify,"
above. May I suggest using a CCby licence and adding 'may only be
distributed with the game' rather than cobbling together your own
inconsistent one...

Matt

>
--
Matthew Johnson


signature.asc
Description: Digital signature


Bug#421182: shrinkta: Program committed suicide

2007-04-26 Thread Andrew J. Barr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: shrinkta
Version: 0.1.8-0.2
Severity: important
File: /usr/bin/shrinkta

I clicked Read to attempt to back up a DVD.

(no debugging symbols found)
Using host libthread_db library "/lib/libthread_db.so.1".
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 805574848 (LWP 7039)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
0x0e8e74b0 in ?? () from /lib/libpthread.so.0
#0  0x0e8e74b0 in ?? () from /lib/libpthread.so.0
#1  0x0e8e7498 in ?? () from /lib/libpthread.so.0
#2  0x0ff278c4 in ?? () from /usr/lib/libgnomeui-2.so.0
#3  
#4  0x0e6a6cb8 in raise () from /lib/libc.so.6
#5  0x0e6a866c in abort () from /lib/libc.so.6
#6  0x0e84c060 in g_logv () from /usr/lib/libglib-2.0.so.0
#7  0x0e84c0dc in g_log () from /usr/lib/libglib-2.0.so.0
#8  0x0e84c180 in g_assert_warning () from /usr/lib/libglib-2.0.so.0
#9  0x0ffd36d0 in dvd_title_disk_read_properties () from
/usr/lib/libdvd.so.0
#10 0x0ffcfecc in dvd_disk_read_properties () from /usr/lib/libdvd.so.0
#11 0x1000d100 in ?? ()
#12 0x0ea64150 in g_cclosure_marshal_VOID__VOID ()
   from /usr/lib/libgobject-2.0.so.0
#13 0x0ea5335c in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#14 0x0ea679d4 in ?? () from /usr/lib/libgobject-2.0.so.0
#15 0x0ea68cdc in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#16 0x0ea6aa84 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
#17 0x0f4b8714 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#18 0x0ea64150 in g_cclosure_marshal_VOID__VOID ()
   from /usr/lib/libgobject-2.0.so.0
#19 0x0ea5335c in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#20 0x0ea679d4 in ?? () from /usr/lib/libgobject-2.0.so.0
#21 0x0ea68cdc in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#22 0x0ea68eac in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#23 0x0f2cf440 in gtk_button_clicked () from /usr/lib/libgtk-x11-2.0.so.0
#24 0x0f2d13b4 in ?? () from /usr/lib/libgtk-x11-2.0.so.0
#25 0x0ea64150 in g_cclosure_marshal_VOID__VOID ()
   from /usr/lib/libgobject-2.0.so.0
#26 0x0ea5156c in ?? () from /usr/lib/libgobject-2.0.so.0
#27 0x0ea5335c in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#28 0x0ea6765

Bug#107208: xserver-xfree86: [rendition] striped corruption and broken VT switching on Verite 2100/2200 rev 6

2007-04-26 Thread Andrew Reid
On Thursday 26 April 2007 16:18, Brice Goglin wrote:
> Hi,
>
> About 6 years ago, you reported (or replied to) a bug in the Debian BTS
> regarding rendering corruption and broken VT switch on a Rendition
> Verite 2100/2200 board. Did any of you guys reproduce this problem
> recently? With Xorg/Etch? If not, I will close this bug in the next weeks.

  Hi Brice --

  Wow, that's a blast from the past, as they say.  I got rid of the box
with the Rendition card in it years ago, and never collected any additional
info on it.  Feel free to close it.

-- A.
-- 
Andrew Reid / [EMAIL PROTECTED]


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



Bug#421181: please support negation in searching

2007-04-26 Thread Felipe Sateler
Package: packagesearch
Version: 2.2.5
Severity: wishlist

Usually when using packagesearch one selects all the tags that your package 
should have. It doesn't however allow to select tags that shouldn't be there. 
For example, if I wanted to search for games, I'd select the use::gameplaying 
tag. But it would be better if I could also select to not show all 
role::app-data packages.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.18-4-k7

Debian Release: lenny/sid
  500 unstablelocalhost 
  400 unstablelocalhost 

--- Package information. ---
Depends (Version) | Installed
=-+-
apt (>= 0.6.46.1) | 0.6.46.4-0.1
debtags(>= 1.6.1) | 1.6.6
libapt-pkg-libc6.3-6-3.11 | 
libc6(>= 2.3.6-6) | 2.5-4
libgcc1   (>= 1:4.1.1-12) | 1:4.1.1-21
libqt4-core(>= 4.2.1) | 4.2.3-1+b1
libqt4-gui (>= 4.2.1) | 4.2.3-1+b1
libqt4-qt3support  (>= 4.2.1) | 4.2.3-1+b1
libsigc++-2.0-0c2a (>= 2.0.2) | 2.0.17-2
libstdc++6  (>= 4.1.1-12) | 4.1.1-21
zlib1g   (>= 1:1.2.1) | 1:1.2.3-13


-- 

Felipe Sateler


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



Bug#420974: xterm-225: copy-&-paste for national chars is broken

2007-04-26 Thread Thomas Dickey
On Wed, Apr 25, 2007 at 05:50:15PM +0200, Eugene B. Berdnikov wrote:
> Package: xterm
> Version: 225-1
> Severity: normal
> 
> 
> Xterm-225-1, LANG=ru_RU.KOI8-R (cyrillic).
> 
> Cyrillic characters are substituted by hashes (#) on copy-and-paste.
> Xterm 222-1etch2 works fine with cyrillic on the same system.

This seems to be the simplest fix:

diff -u -r1.272 button.c
--- button.c2007/03/19 23:42:48 1.272 
+++ button.c2007/04/26 22:56:56 
@@ -1611,7 +1611,8 @@ 
GettingSelection(dpy, *type, line, *length);

 #if OPT_WIDE_CHARS
-   if (*type == XA_UTF8_STRING(dpy)) { 
+   if (*type == XA_UTF8_STRING(dpy) && 
+   !(screen->wide_chars || screen->c1_printable)) { 
rc = Xutf8TextPropertyToTextList(dpy, &text_prop,
 &text_list, &text_list_count);
if (text_list != NULL && text_list_count != 0) {


-- 
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net


pgpD6fOGRg03D.pgp
Description: PGP signature


Bug#418041: libibverbs1: sysfs not available : libibverbs: Fatal: couldn't read uverbs ABI version.

2007-04-26 Thread Roland Dreier
I'm not sure what is being asked for here.  Would you like libibverbs1
to work if sysfs is not mounted, or are you just looking for a better
error message that explains the cause of the failure better?


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



Bug#421180: texlive update fails

2007-04-26 Thread David Frey
Package: texlive-base
Version: 2007-4
Severity: important

An upgrade from my teTeX to texlive installation went wrong:

updmap: This is updmap, version 1167072206
updmap: using transcript file `/var/lib/texmf/web2c/updmap.log'

updmap is creating new map files using the following configuration:

  config file: `/var/lib/texmf/web2c/updmap.cfg'
  dvips output directory: `/var/lib/texmf/fonts/map/dvips/updmap'
  pdftex output directory: `/var/lib/texmf/fonts/map/pdftex/updmap'
  dvipdfm output directory: `/var/lib/texmf/fonts/map/dvipdfm/updmap'

  prefer outlines: `true'
  texhash enabled: `false'
  download standard fonts (dvips): `false'
  download standard fonts (pdftex): `true'
  download standard fonts (dvipdfm): `true'

updmap: Scanning for LW35 support files
updmap: using map file 
`/usr/share/texmf-texlive/fonts/map/dvips/tetex/dvips35.map'
updmap: using map file 
`/usr/share/texmf-texlive/fonts/map/dvips/tetex/pdftex35.map'
updmap: using map file 
`/usr/share/texmf-texlive/fonts/map/dvips/tetex/dvipdfm35.map'
updmap: using map file 
`/usr/share/texmf-texlive/fonts/map/dvips/tetex/ps2pk35.map'

updmap: Scanning for MixedMap entries:
updmap: using map file 
`/usr/share/texmf-texlive/fonts/map/dvips/ams/ams-bsr-interpolated.map'
updmap: using map file 
`/usr/share/texmf-texlive/fonts/map/dvips/ams/ams-bsr.map'
updmap: using map file 
`/usr/share/texmf-texlive/fonts/map/dvips/ams/ams-cmcsc-bsr-interpolated.map'

!!! ERROR! The map file `bsr-interpolated.map' has not been found at all.

Either put this file into the right place or remove the
reference from the configuration file. An automatic way
to disable unavailable map files is to call
  updmap --syncwithtrees

For manual editing, call
  updmap --edit


The help text is disingenious at best, since it does not work on Debian
installations.

Solution: remove 10tetex-base.cfg  20tetex-extra.cfg in
/etc/texmf/updmap.d/ and run update-updmap and then run updmap-sys.

The bug severity is important, since this is 
a) tedious
b) non-obvious for a Non-LaTeX expert.

I also removed cm-super.

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

Kernel: Linux 2.6.18
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages texlive-base depends on:
ii  texlive-base-bin  2007-5 TeX Live: Essential binaries
ii  texlive-common2007-4 TeX Live: Base component
ii  texlive-doc-base  2007-2 TeX Live: Base documentation

Versions of packages texlive-base recommends:
pn  dvipdfmx   (no description available)
ii  lmodern   1.010x-3   scalable PostScript and OpenType f

Versions of packages tex-common depends on:
ii  debconf   1.5.13 Debian configuration management sy
ii  ucf   2.0021 Update Configuration File: preserv

Versions of packages texlive-base is related to:
pn  tetex-base (no description available)
ii  tetex-bin 2007-4 TeX Live: teTeX transitional packa
pn  tetex-extra(no description available)

-- debconf information:
  tex-common/check_texmf_wrong:
  tex-common/check_texmf_missing:
  tex-common/singleuser: true


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



Bug#421179: libgphoto2-2: Fuji FinePix A800 missing from udev rules

2007-04-26 Thread Marcelo Bezerra

Package: libgphoto2-2
Version: 2.3.1-3
Severity: important


Fuji FinexPix A800 camera is not listed in /etc/udev/libgphoto2.rules and so 
does not work for non root users.

Adding the following line fixes the problem:

ATTRS{idVendor}=="04cb", ATTRS{idProduct}=="01d2", MODE="0660", GROUP="plugdev"


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

Kernel: Linux 2.6.20.4-retirante3 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages libgphoto2-2 depends on:
ii  adduser   3.102  Add and remove users and groups
ii  libc6 2.5-4  GNU C Library: Shared libraries
ii  libexif12 0.6.13-5   library to parse EXIF files
ii  libgphoto2-port0  2.3.1-3gphoto2 digital camera port librar
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 


Versions of packages libgphoto2-2 recommends:
ii  udev  0.105-4/dev/ and hotplug management daemo

-- no debconf information



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



Bug#421166: vmstat display error

2007-04-26 Thread Craig Small
tags 421166 upstream
severity 421166 wishlist
thankyou
On Thu, Apr 26, 2007 at 02:18:44PM -0700, Joseph Hall wrote:
> When using vmstat, the -S option correctly affects the output. But
> when using vmstat -d to examine disk activity, the -S option does not
> affect the output, it is always in kilobytes.

The man page implies -S doesn't work with the -d flag, on the other hand
I cannot see why it couldn't. So that makes it a wishlist.

I'll pas it onto upstream.

 - Craig
-- 
Craig Small  GnuPG:1C1B D893 1418 2AF4 45EE  95CB C76C E5AC 12CA DFA5
http://www.enc.com.au/ csmall at : enc.com.au
http://www.debian.org/  Debian GNU/Linux, software should be Free 


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



Bug#392397: preparing a QA upload

2007-04-26 Thread Neil Williams
Hi Marga,

With xracer now orphaned, I want to prepare a QA upload that closes
this bug.

However, the diff attached to the bug report includes some anomalies;
The faq.html and faq.txt files appear to have been patched when
Makefile.am indicates that faq.chtml should be the source of faq.html
and faq.txt
faq.txt contains unprintable characters - this I suspect is a build
error where it is assuming that html->txt conversion is done in an
English locale of some kind. I may need to force that to LANG=C. (How
important are the FAQ changes, bearing in mind xracer is orphaned?)
A few Makefile.in files are patched, rather than the
Makefile.am. Whilst this means the rebuild does not need to run
automake or autoconf, if someone does run automake or autoconf to fix a
different bug, the effect of your patches will be lost.

I note the diff was intended as a 'work-in-progress' - is there an
updated patch at all?

I was thinking I'd probably add dpatch support and patch 'src/track.c'
directly.

No rush - I expect you're busy with DebConf. (See you in Edinburgh.)
:-)

--


Neil Williams
=
http://www.data-freedom.org/
http://www.nosoftwarepatents.com/
http://www.linux.codehelp.co.uk/



pgpLvoDGr4bUA.pgp
Description: PGP signature


Bug#383495: Please update manpage.xml.ex to better work with latest docbook-xsl

2007-04-26 Thread Craig Small
OK, looking at the bug report, I used what was found in 376378 and not
your bug report. Then they were merged so all seem right in the world.


On Thu, Apr 26, 2007 at 12:41:15PM +0200, Daniel Leidert wrote:
> So could you please update the template with the one I sent recently? If
I am looking at http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=383495

You sent and email Dated Tue, 24 Apr 2007 17:29:03 +0200 (by the
website) that has the patch manpage.xml.ex in it, is that the correct
one?

Want to make sure the right one goes in this time.

 - Craig

-- 
Craig Small  GnuPG:1C1B D893 1418 2AF4 45EE  95CB C76C E5AC 12CA DFA5
http://www.enc.com.au/ csmall at : enc.com.au
http://www.debian.org/  Debian GNU/Linux, software should be Free 


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



Bug#421025: XCreateFontSet fails with fixed 13 as first font pattern in UTF-8 environment

2007-04-26 Thread Brice Goglin
Brice Goglin wrote:
> I was rather thinking of locating where this assertion is (I don't see
> it in libx11, strace/gdb might help to locate the library or binary
> where it comes from). And then try to understand where the error comes
> from by either reading the corresponding code, or adding some debug
> printf. Not very easy...
>   

I might have been drinking too much lately since the assertion is in
your program, not in fontset.c in a lib :)

Now we have to understand why the code at the URL below returns NULL:
http://git.debian.org/?p=pkg-xorg/lib/libx11.git;a=blob;f=src/FSWrap.c;h=10634ceecae26eab5306507cadda2181019ae2be;hb=HEAD#l167

That would be either XOpenOM returning NULL, or XCreateOC returning
NULL, or list->charset_list && *missing_charset_list == NULL...

Brice



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



Bug#59832: Close?

2007-04-26 Thread Sami Liedes
Hi,

Perhaps this old bug can be closed?

Sami


signature.asc
Description: Digital signature


Bug#421087: hdparm doesn't cope with changing device names

2007-04-26 Thread Stephen Gran
This one time, at band camp, Tim Small said:
> Stephen Gran wrote:
> >I would suggest adding udev rules to map drives bassed on something
> >(serial number, whatever) and create a permanently named symlink based
> >on that.  hdparm can then run on the symlink.
> OK, that sounds like a good solution.  Would you accept a patch to the 
> man page if I produce one?

I think README.Debian is a better place for it, but yes, I will
happily take a patch.
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#402641: bug not fixed yet

2007-04-26 Thread Wesley J. Landaker
On Sunday 22 April 2007 13:38, Alex Malinovich wrote:
> I don't believe this is quite fixed yet:
[...]
> I just tried doing a build in my i386 chroot which didn't have bzip2
> installed and it failed. Manually installing bzip2 allowed it to build
> successfully.

You are right, I accidentally put a build-depends instead of a depends. =) 
Fixed for real in the next upload.

-- 
Wesley J. Landaker <[EMAIL PROTECTED]> 
OpenPGP FP: 4135 2A3B 4726 ACC5 9094  0097 F0A9 8A4C 4CD6 E3D2


pgpklzjJqi8Og.pgp
Description: PGP signature


Bug#421178: ssmtp: [INTL:pt] Portuguese translation for debconf messages

2007-04-26 Thread Traduz - Portuguese Translation Team

Package: ssmtp
Version: 2.61-12
Tags: l10n, patch
Severity: wishlist

Portuguese translation for ssmtp's debconf messages.
Translator: Ricardo Silva 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .


--
Best regards,

Miguel Figueiredo
"Traduz" - Portuguese Translation Team
http://www.DebianPT.org

# Portuguese translation of ssmtp's debconf messages.
# Copyright (C) 2007 Ricardo Silva
# This file is distributed under the same license as the ssmtp package.
# Ricardo Silva <[EMAIL PROTECTED]>, 2007.
#
msgid ""
msgstr ""
"Project-Id-Version: ssmtp 2.61-12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-03-21 04:33+0100\n"
"PO-Revision-Date: 2007-04-26 23:36+0100\n"
"Last-Translator: Ricardo Silva <[EMAIL PROTECTED]>\n"
"Language-Team: Portuguese <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: boolean
#. Description
#: ../templates:1001
msgid "Automatically overwrite config files?"
msgstr "Escrever por cima de ficheiros de configuração automaticamente?"

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"The mail configuration file /etc/ssmtp/ssmtp.conf can be automatically "
"updated on each upgrade with the information supplied to the debconf "
"database. If you do not want this to happen (ie/ you want to maintain "
"control of this file yourself) then set this option to have the program "
"never touch this file."
msgstr ""
"O ficheiro de configuração do mail /etc/ssmtp/ssmtp.conf pode ser actualizado "
"automaticamente sempre que actualizar o pacote com a informação "
"disponibilizada pela base de dados do debconf. Se não quer que isto aconteça "
"(ie/ deseja manter o controlo manual sobre este ficheiro) configure esta "
"opção para que o programa nunca toque nesse ficheiro."

#. Type: string
#. Description
#: ../templates:2001
msgid "Who gets mail for userids < 1000:"
msgstr "Quem recebe o mail de utilizadores com identificador < 1000:"

#. Type: string
#. Description
#: ../templates:2001
msgid ""
"Mail sent to a local user whose UID is less than 1000 will instead be sent "
"here. This is useful for daemons which mail reports to root and other system "
"UIDs. Make this empty to disable rewriting."
msgstr ""
"O mail enviado para um utilizador local cujo identificador UID seja menor "
"que 1000 será enviado para aqui. Isto é útil para daemons que enviam "
"relatórios para o root ou para outros utilizadores do sistema. Deixe este "
"campo vazio para desactivar o reencaminhamento."

#. Type: string
#. Description
#: ../templates:3001
msgid "Name of your mailhub:"
msgstr "Nome do seu mailhub:"

#. Type: string
#. Description
#: ../templates:3001
msgid ""
"This sets the host to which mail is delivered. The actual machine name is "
"required; no MX records are consulted. Commonly, mailhosts are named \"mail."
"domain.com\"."
msgstr ""
"Isto especifica a máquina onde o mail é entregue. É necessário o verdadeiro "
"nome da máquina; não será consultado nenhum registo MX. Normalmente, as "
"máquinas de mail são chamadas \"mail.dominio.pt\"."

#. Type: string
#. Description
#: ../templates:4001
msgid "Remote SMTP port number:"
msgstr "Porto de SMTP remoto:"

#. Type: string
#. Description
#: ../templates:4001
msgid ""
"If your remote SMTP server listens on a port other than 25 (Standard/RFC) "
"then set it here."
msgstr ""
"Se o seu servidor remoto de SMTP escutar num porto diferente de 25 "
"(RFC/Padrão) especifique-o aqui."

#. Type: string
#. Description
#: ../templates:5001
msgid "What domain to masquerade as:"
msgstr "Que domínio a mascarar como:"

#. Type: string
#. Description
#: ../templates:5001
msgid ""
"ssmtp will use \"[EMAIL PROTECTED]" as the default From: address for "
"outgoing mail which contains only a local username."
msgstr ""
"O ssmtp irá usar \"[EMAIL PROTECTED]" como o endereço From: "
"por omissão para o mail a enviar que contenha apenas um nome de utilizador "
"local."

#. Type: string
#. Description
#: ../templates:6001
msgid "What name to store in /etc/mailname:"
msgstr "Que nome guardar em /etc/mailname:"

#. Type: string
#. Description
#: ../templates:6001
msgid ""
"This is the portion of the address after the '@' sign to be shown on "
"outgoing news and mail messages."
msgstr ""
"Esta é a parte do endereço depois do sinal '@' que é para ser mostrado "
"em mensagens de notícias e email de saída."

#. Type: string
#. Description
#: ../templates:7001
msgid "Fully qualified hostname:"
msgstr "Nome de domínio totalmente qualificado:"

#. Type: string
#. Description
#: ../templates:7001
msgid ""
"This should specify the real hostname of this machine, and will be sent to "
"the mailhub when delivering mail."
msgstr ""
"Aqui deve especificar o real nome desta máquina, que irá ser enviado para o "
"mailhub quando se entregar mail."

#. Type: boolean
#. Description
#: ../templates:8001
msgi

Bug#58394: Ping?

2007-04-26 Thread Sami Liedes
Hi,

This >7 year old bug requests for recompilation of the package.
Perhaps it has already been recompiled since?

Sami



signature.asc
Description: Digital signature


Bug#125963: Works for me

2007-04-26 Thread Sami Liedes
Works for me.

Sami


signature.asc
Description: Digital signature


Bug#421173: nscd: depends on removed libssp0 package

2007-04-26 Thread Pierre Habouzit
forcemerge 421173 413370
thanks

On Thu, Apr 26, 2007 at 11:34:11PM +0200, Sven Joachim wrote:
> Package: nscd 
> Version: 2.5-4
> Severity: grave
> 
> Your package depends on libssp0 which is no longer present in the
> latest gcc-4.1 upload (4.1.2-4).  Following Matthias Klose's advice
> in http://bugs.debian.org/421162, I report this as a bug against your
> package.  Please examine whether a binNMU solves this problem or if
> you have to change the dependencies.
> 
> 
> -- System Information:
> Debian Release: lenny/sid
>   APT prefers unstable
>   APT policy: (500, 'unstable')
> Architecture: i386 (i686)
> 
> Kernel: Linux 2.6.20.7
> Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.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]
> 

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpjixOQgx9oG.pgp
Description: PGP signature


Bug#100100: Close?

2007-04-26 Thread Sami Liedes
Hi,

I think this can be closed?

Sami


signature.asc
Description: Digital signature


Bug#421177: mozilla-mplayer: segfaults trying to play url crashing iceweasel

2007-04-26 Thread Gabriele Pigozzo
Package: mozilla-mplayer
Version: 3.40-2
Severity: normal


How to reproduce:
- go to http://www.deejay.it/dj/programma?idProgramma=11 and try to listen to 
song.

As a result mozilla-mplayer sefaults crashing iceweasel.



Debug log:



[EMAIL PROTECTED]:~$ iceweasel 
OpenOffice path is '/usr/lib/openoffice'
wmp:1
qt:1
rm:1
gmp:1
mp3:1
ogg:1
midi:1
pls:1
smil:1
helix:1
No media cache is set to 0 in conf file
mimetype: video/x-ms-asf-plugin
Embedded mode
Argument Name: src
Argument Value:
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
Argument Name: type
Argument Value: video/x-ms-asf-plugin
Argument Name: pluginspage
Argument Value:
http://www.microsoft.com/windows/mediaplayer/download/default.asp
Argument Name: autostart
Argument Value: 1
argv[i]=1
autostart=1
Argument Name: showcontrols
Argument Value: 1
argv[i]=1
showcontrols=1
Argument Name: showstatusbar
Argument Value: 0
Argument Name: autorewind
Argument Value: 0
argv[i]=0
loop=0
Argument Name: showdisplay
Argument Value: 0
Argument Name: showpositioncontrols
Argument Value: 0
Argument Name: showtracker
Argument Value: 0
argv[i]=0
showtracker=0
Argument Name: align
Argument Value: middle
Argument Name: height
Argument Value: 26
Argument Name: width
Argument Value: 208
New window! old: 0x0new 0x65020584
Size: 25 25 0x3e022a8
Size: 208x26 

(gecko:20304): Gtk-CRITICAL **: gtk_widget_set_size_request: assertion
`height >= -1' failed
resizing widgets to 208 x 26 
back in SetWindow
New Size: 208x26
resizing widgets to 208 x 26 
resizing widgets to 208 x 26 
resizing widgets to 208 x 26 
resizing widgets to 208 x 26 
exiting URL base with
http://mediaserver.kataweb.it/deejay/audio/50_song/
using url for url
url
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
buffer
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
ready to setup threads
creating thread - NP_EMBED
creating player thread
In launchPlayerThread, state = 110
launchPlayerThread - creating new thread
MAIN THREAD DONE
WR tempname: /tmp/mplayKBQY8M
exiting URL base with
http://mediaserver.kataweb.it/deejay/audio/50_song/
Destroy stream found a URL match
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
checking to see if we need to make a button
n->url=http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
url=http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
href=(NULL)
calling buildPlaylist with filename /tmp/mplayKBQY8M
found ASF file
URL:
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
BUILD - traversing playlist
adding url
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
URL:
http://213.92.19.6:80/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
BUILD - traversing playlist
adding url
http://213.92.19.6/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
Scanning for speed
low = 0, med = 0, high = 0
playlist adjustment complete
n->url=
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
n->bytes = 205
n->cachebytes = 524288
n->play= 0
n->playlist= 1
n->mmsstream= 0
n->url=
http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
n->bytes = 0
n->cachebytes = 0
n->play= 1
n->playlist= 0
n->mmsstream= 1
signalling player (mmsstream)
Signalling Player thread, state = 110, js_state = 12
Waiting for player thread to start12
player thread: in playPlaylist
player thread: about to go to sleep, js_state = 6, state = 110
WR tempname: /tmp/mplayCuQS3J
exiting URL base with http://213.92.19.6/deejay/audio/50_song/
Destroy stream found a URL match
http://213.92.19.6/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
http://213.92.19.6/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
checking to see if we need to make a button
n->url=http://213.92.19.6/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
url=http://mediaserver.kataweb.it/deejay/audio/50_song/nas_cant_forget_about_you.wma
href=(NULL)
calling buildPlaylist with filename /tmp/mplayCuQS3J
found ASF file
URL:
http://213.92.19.6/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
BUILD - traversing playlist
found duplicate entry
http://213.92.19.6/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
URL:
http://213.92.19.6:80/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
BUILD - traversing playlist
found duplicate entry
http://213.92.19.6/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
Scanning for speed
low = 0, med = 0, high = 0
playlist adjustment complete
URL:
http://213.92.19.6/deejay/audio/50_song/nas_cant_forget_about_you.wma?MSWMExt=.asf
Reason 0
resizing widgets to 208 x 26 
resizing w

Bug#421025: XCreateFontSet fails with fixed 13 as first font pattern in UTF-8 environment

2007-04-26 Thread Brice Goglin
Ben Hutchings wrote:
> On Thu, 2007-04-26 at 21:21 +0200, Brice Goglin wrote:
>   
>> Seems to works fine here:
>> $ LC_CTYPE=fr_FR ./prout '-*-fixed-*-*-*-*-13-*-*-*-*-*-*-*'
>> default:
>> $ LC_CTYPE=fr_FR.utf8 ./prout '-*-fixed-*-*-*-*-13-*-*-*-*-*-*-*'
>> missing: KSC5601.1987-0
>> missing: GB2312.1980-0
>> default:
>> (the other cases get either the first or the second output from above).
>> 
>
> Was the fr_FR.utf8 locale actually installed on the test system?  I
> found that the test passes for UTF-8 locales that aren't actually
> installed.
>   

Yes (I am french actually):

$ locale -a
C
POSIX
en_US
en_US.iso88591
en_US.iso885915
en_US.utf8
fr_FR
fr_FR.iso88591
[EMAIL PROTECTED]
fr_FR.utf8
[EMAIL PROTECTED]
français
french


> I don't know where to look.  strace shows no system call failures, but
> it can dump the X protocol conversation (-e read=3 -e write=3).  Would
> that be useful?
>   

I was rather thinking of locating where this assertion is (I don't see
it in libx11, strace/gdb might help to locate the library or binary
where it comes from). And then try to understand where the error comes
from by either reading the corresponding code, or adding some debug
printf. Not very easy...

Brice




Bug#409971: xfce4-battery-plugin: It doesn't work after upgrading to linux kernel 2.6.21

2007-04-26 Thread Evgeni Golov
On Thu, 26 Apr 2007 22:29:13 +0200 Matteo Vescovi wrote:

> After upgrading linux kernel to version 2.6.21, the battery plugin seems
> not to work at all.
> Even the workaround provided before (modprobing battery kernel module)
> does not help with it.

Works here without any problems. Could you be more specific on "not to
work at all"? Does it load and show garbage, or don't load, or show
wrong percentage/time?

Regards
Evgeni

-- 
   ^^^| Evgeni -SargentD- Golov ([EMAIL PROTECTED])
 d(O_o)b  | GPG/PGP-Key-ID: 0xAC15B50C
  >-|-<   | 0C04 F872 0963 ADC9 AA83 882B 24A0 1418 AC15 B50C
   / \| http://www.die-welt.net - [EMAIL PROTECTED]



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



Bug#287369: closed by Sven Arvidsson <[EMAIL PROTECTED]> (Close 287369)

2007-04-26 Thread Sven Arvidsson
reopen 287369
thanks

On Thu, 2007-04-26 at 23:21 +0200, Andras Korn wrote:
> Sorry, I didn't receive your followup from 2005.
> 
> I'm not currently in a position to test this behaviour with a new version of
> nautilus, but I can at least attach a test file.
> 
> I'll try to remember and see what nautilus does with it. Just give me a few
> days.

Sure, a test file would be great.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#409268: WFM Terminal GNOME 2.16.1

2007-04-26 Thread Yves Lambert
This works for me with 2.16.1 (unstable) if the problem does occure with 
2.18.* this is a regression


btw I still have this message on console :

(gnome-terminal:11474): Gtk-CRITICAL **: 
gtk_file_system_unix_get_parent: assertion `g_path_is_absolute 
(filename)' failed



Reporter : there are 2.18.* version on experimental.


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



Bug#42459: This old bug report

2007-04-26 Thread Sami Liedes
Any information on whether there has been any progress on this bug or
if it's fixed or irrelevant nowadays?

Sami


signature.asc
Description: Digital signature


Bug#44901: Ping?

2007-04-26 Thread Sami Liedes
Hi,

Maybe this old bug can be closed?

Sami


signature.asc
Description: Digital signature


Bug#39776: This old bug

2007-04-26 Thread Sami Liedes
Maybe this old bug report can be closed?

Sami


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



Bug#421156: Missing icons in tray

2007-04-26 Thread Carlos Moffat
On Thu, 2007-04-26 at 23:50 +0200, Sven Arvidsson wrote:
> On Thu, 2007-04-26 at 15:26 -0400, Carlos Moffat wrote:
> > After the last update, I noticed the tray applet no longer shows any
> > of the icons (they've been replaced by a small red x instead).
> > 
> > I ran it with --verbose --no-daemon and got:
> > 
> > gnome-power-manager --no-daemon --verbose
> > [gpm_debug_init] gpm-debug.c:217 (15:23:12): Verbose debugging enabled
> > [main] gpm-main.c:205 (15:23:12):GNOME Power Manager 2.18.2
> > *** WARNING ***
> > [gpm_stock_icons_init] gpm-stock-icons.c:89 (15:23:12):  Unable to load 
> > icon gpm-hibernate
> > *** WARNING ***
> > [gpm_stock_icons_init] gpm-stock-icons.c:89 (15:23:12):  Unable to load 
> > icon gpm-suspend
> > 
> > 
> > I can only tell you that the icons do seem to exist in the right places in 
> > /usr/share/icons etc.
> 
> Hi,
> 
> This seems to work fine for me. I wonder if this is due to the icon
> cache? Can you see if you a cache, and move it out of the way if that's
> the case?
> 
> find /usr/share/icons/ -name icon-theme.cache
> 

Hi Sven,

That did it. I deleted all the icon-theme.cache files and all the
missing icons are showing up. 

You can close the bug now!

Thanks,
Carlos



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



Bug#410111: fglrx-kernel-src: 8.36.5-1 still fails to build for 2.6.20

2007-04-26 Thread Evgeni Golov
On Thu, 26 Apr 2007 14:47:47 -0500 Eric Evans wrote:

> I tried building the version in experimental (8.36.5-1) this morning
> against 2.6.20-1-686 and it still fails. Build output attached.

You need to build with CONFIG_PARAVIRT=n

Regards
Evgeni

--
   ^^^| Evgeni -SargentD- Golov ([EMAIL PROTECTED])
 d(O_o)b  | GPG/PGP-Key-ID: 0xAC15B50C
  >-|-<   | 0C04 F872 0963 ADC9 AA83 882B 24A0 1418 AC15 B50C
   / \| http://www.die-welt.net - [EMAIL PROTECTED]

lebt unser alter webserver noch, webserver noch, webserver noch... -
ja, er pingt noch, er pingt noch, er pingt noch (jesse @
teranetworks.de)


pgpLHl7GdhuCK.pgp
Description: PGP signature


Bug#35198: This old bug

2007-04-26 Thread Sami Liedes
Hi,

Is this old bug still relevant?

Sami


signature.asc
Description: Digital signature


Bug#419138: Mairix Segfaulting

2007-04-26 Thread Vincent Lefevre
On 2007-04-26 21:11:56 +0100, Richard Curnow wrote:
> I need to research what the filename*0=".." syntax means to understand
> what has to be done with it.

I did some search. First on Bugzilla. You have examples here:

  https://bugzilla.mozilla.org/show_bug.cgi?id=309566

The syntax is probably covered by RFC 2231 (MIME Parameter Value and
Encoded Word Extensions: Character Sets, Languages, and Continuations):

  ftp://ftp.rfc-editor.org/in-notes/rfc2231.txt

-- 
Vincent Lefèvre <[EMAIL PROTECTED]> - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / Arenaire project (LIP, ENS-Lyon)



Bug#421171: mksh: depends on removed libssp0 package

2007-04-26 Thread Thorsten Glaser
Sven Joachim dixit:

>Package: mksh
>Version: 29.2-1
>Severity: grave
>
>Your package depends on libssp0 which is no longer present in the
>latest gcc-4.1 upload (4.1.2-4).

Why is that library gone and/or how is ProPolice SSP in gcc 4.1+ then
supposed to work without it?

If the __guard_setup() and __stack_smash_handler() functions are now
contained in libc, a simple recompile is in fact enough.

bye,
//mirabile
-- 
I believe no one can invent an algorithm. One just happens to hit upon it
when God enlightens him. Or only God invents algorithms, we merely copy them.
If you don't believe in God, just consider God as Nature if you won't deny
existence.  -- Coywolf Qi Hunt


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



Bug#421025: XCreateFontSet fails with fixed 13 as first font pattern in UTF-8 environment

2007-04-26 Thread Ben Hutchings
On Thu, 2007-04-26 at 21:21 +0200, Brice Goglin wrote:
> Seems to works fine here:
> $ LC_CTYPE=fr_FR ./prout '-*-fixed-*-*-*-*-13-*-*-*-*-*-*-*'
> default:
> $ LC_CTYPE=fr_FR.utf8 ./prout '-*-fixed-*-*-*-*-13-*-*-*-*-*-*-*'
> missing: KSC5601.1987-0
> missing: GB2312.1980-0
> default:
> (the other cases get either the first or the second output from above).

Was the fr_FR.utf8 locale actually installed on the test system?  I
found that the test passes for UTF-8 locales that aren't actually
installed.

> Could you try to debug a little bit and see while it fails?

I don't know where to look.  strace shows no system call failures, but
it can dump the X protocol conversation (-e read=3 -e write=3).  Would
that be useful?

Ben.

-- 
Ben Hutchings
Life would be so much easier if we could look at the source code.


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


Bug#285818: 海.∷.外.∷∵∵.已.1600万.人.声.明∵.退.∷党∷团,天∷灭中∷共退∷党保平安

2007-04-26 Thread Mang BinMan

海∷外∷已2070万人声明退∷党∷团,天∷灭中∷共退∷党保平安

|重| |2|明|人|��|退|外|��|外|退|,|外|评|��|国|当
|要| |0|退|,|是|党|大|引|大|党|每|分|��|运|内|年
|的| |0|党|��|现|是|纪|起|纪|团|天|析|及|动|老|有
|新| |7|团|天|在|从|元|,|元|人|2|,|退|,|百|个
|闻| |年|人|灭|这|2|报|短|、|数|-|中|党|同|姓|苏
| | |3|数|中|个|0|社|短|看|接|3|共|潮|时|知|联
| | | |接|共|阶|0|评|2|中|近|万|为|,|封|道|为
| | |月|近|,|段|4|��|年|国|2|人|应|发|锁|。|首
| | |,|2|退|的|年|九|时|网|0|的|对|动|消| |的
| | |在|0|党|主|1|评|间|站|7|速|这|了|息| |共
| | |海|7|保|题|1|共|,|上|0|度|个|��|,| |产
| | |外|0|平|。|月|产|在|发|万|。|��|保|不| |主
| | |声|万|安| |海|党|海|表|人|海|九|先|让| |义

|阵|是|,|那|、|垮|现|鲜|家|千|党|这|,|还|网|看|实
|营|世|后|些|匈|台|在|、|,|万|,|2|还|得|络|似|情
|和|界|来|共|牙|时|世|越|中|��|还|0|是|��|封|是|况
|美|两|共|产|利|都|界|南|共|2|有|7|通|托|锁|��|是
|国|极|产|党|、|出|上|等|最|0|退|0|过|人|才|太|什
|为|,|主|国|捷|现|只|仅|大|7|团|万|网|��|能|平|么
|首|美|义|家|克|了|剩|有|,|0|、|人|络|��|做|盛|呢
|的|苏|阵|如|等|一|下|几|现|万|少|��|��|,|到|世|?
|自|多|营|苏|国|个|中|个|在|里|先|浮|不|而|,|��|得
|由|年|跨|联|家|退|共|共|也|不|队|出|懂|且|国|,|有
|阵|搞|掉|、|共|党|、|产|退|全|��|水|网|是|内|实|多
|营|冷|了|东|产|潮|北|党|掉|是|。|面|络|突|表|际|少
|,|战|,|德|党|。|朝|国|近|退| |��|的|破|面|真|人

|知|?|问| |��|邪|义|��|治|、|文|9|威|动|事|在|轮
|道|怕|题| |九|教|��|信|运|三|化|年|胁|,|实|现|功
|这|都|了| |评|,|这|仰|动|反|大|在|的|还|,|在|学
|个|不|。| |��|当|一|��|接|、|革|共|情|向|9|这|员
|消|是| | |指|年|今|,|一|五|命|产|况|国|9|一|被
|息|1| | |出|为|天|共|个|反|,|党|下|内|年|时|关
|,|个| | |共|了|已|产|政|、|多|执|6|老|镇|刻|压
|多|亿| | |产|实|经|党|治|肃|少|政|4|百|压|,|在
|少|、| | |党|现|无|搞|运|反|人|合|枪|姓|法|还|监
|人|2| | |是|��|人|了|动|、|受|法|杀|撒|轮|有|狱
|在|个| | |真|共|再|一|,|反|害|性|学|谎|功|大|、
|传|亿| | |正|产|信|个|镇|右|,|受|生|掩|,|批|集
|呢|的| | |的|主|的|政|反|、|8|到|运|盖|就|法|中

|营|公|里|能|火|、|奸|上|事|中|谋|说|多|证|、|从|还
|,|开|秘|的|烧|电|女|平|。|营|利|这|个|实|谴|法|,
|迫|�M|密|酷|、|棍|法|平|不|活|��|样|,|这|责|律|欠
|害|行|的|刑|不|、|轮|静|久|体|注|的|现|一|,|意|多
|法|,|�M|进|让|老|功|静|前|摘|意|集|在|罪|震|义|少
|轮|是|行|行|睡|虎|学|,|暴|取|是|中|国|行|惊|上|还
|功|在|,|迫|觉|凳|员|暗|出|法|活|营|际|,|世|说|多
|不|监|用|害|、|等|,|地|沈|轮|人|在|组|国|界|,|少
|是|狱|尽|,|冬|等|社|里|阳|功|摘|中|织|际|。|欠|。
|在|、|了|钳|天|,|会|做|苏|学|取|国|已|纷| |了|共
|社|教|一|子|外|甚|上|尽|家|员|��|有|经|纷| |就|产
|会|养|切|夹|面|至|表|了|屯|器|,|3|调|曝| |得|党
|上|院|可|、|冻|强|面|坏|集|官|据|0|查|光| |偿|为

|祸|2|家|取|次|次|0|无|倍|每|已|做|是|普|有|么|��
|中|/|统|政|南|6|多|辜|偿|个|经|,|充|通|那|天|都
|国|3|计|权|京|4|人|迫|还|��|罪|但|斥|的|么|惩|难
|半|的|说|到|大|枪|��|害|。|共|恶|每|它|��|大|中|辞
|个|人|共|今|屠|杀|。|信|那|产|在|个|的|党|的|共|其
|多|被|产|天|杀|学|尤|仰|么|党|身|��|势|员|势|,|咎
|世|共|党|平|,|生|其|真|这|员|,|党|力|��|力|每|。
|纪|产|杀|均|平|��|迫|善|样|��|虽|员|,|的|做|个|
|,|党|人|2|均|大|害|忍|的|没|然|��|没|加|坏|��|
|中|害|数|个|每|致|法|的|滔|做|没|的|有|入|事|共|
|国|过|目|月|天|4|轮|好|天|坏|有|加|那|,|吗|产|
|人|,|从|搞|搞|0|功|人|罪|事|亲|入|么|它|?|党|
|有|人|夺|一|一|0|,|加|行|也|自|就|多|能|那|员|

| |那|还|们|就|��|把|,|费|没|这|里|,|把|想|个|实
| |么|是|?|是|时|自|如|��|有|样|不|因|生|想|行|际
| |毕|不| |必|发|己|果|、|参|就|把|为|命|就|动|发
| |竟|错| |须|下|的|是|心|加|��|自|你|都|算|,|表
| |是|的| |有|的|生|只|里|它|算|己|是|��|数|必|声
| |大|人| |个|誓|命|是|不|的|了|当|发|献|了|须|明
| |多|,| |行|言|��|很|认|任|��|党|过|给|?|得|不
| |数|那| |动|,|��|多|可|何|,|员|誓|��|就|行|需
| |��|么| |破|那|献|年|它|��|就|了|的|它|是|动|要
| |党|如| |除|个|给|不|了|活|是|,|,|,|必|上|组
| |员|何| |��|誓|��|交|或|动|只|那|而|人|须|做|织
| |��|救| |入|言|它|��|多|��|是|不|且|心|得|到|上
| |都|他| |党|��|了|党|年|,|心|行|是|里|有|。|去

|退|须|锁|上|个|场|想|��|不| |共|念|,|中|爱|脱|才
|,|有|在|发|声|合|法|?|是| |产|,| |共|国|离|是
|也|个|海|表|明|贴|了| |搞| |党|混| | | |关|您
|不|行|外|一|��|上|,| |政| |混|淆| |≠|≠|系|明
|需|动|大|个|不|就|这| |治| |淆|了| | | |,|智
|要|,|纪|声|用|可|是| |,| |了|爱| |中|爱|挽|的
|使|可|元|明|署|以|不| |是| |中|国| |国|党|救|选
|用|以|、|,|真|了|是| |在| |国|和| |,|,|自|择
|真|突|看|也|名|。|在| |救| |和|爱| | |和|己|。
|名|破|中|可|��|也|��| |您| |中|党| | |这|的|
|,|网|国|以|在|许|搞| |。| |共|的| | |个|未|
|但|络|网|写|公|您|政| | | |的|概| | |恶|来|
|必|封|站|一|开|有|治| | | |概|念| | |党|,|

详细情况请看:tinyurl.com/y9msaz 或 clipurl.com/?PES856
此域名可能会失效,打开的页面有"软件下载"请下载软件以后使用(或这里直接下载  clipurl.com/?UEK397
解压密码: abcd)

|欢|望|广|络|唐|网|在|打|部|听|的|到|息|息|报|��|
|迎|之|播|广|人|络|上|开|��|到|国|的|��|美|道| |
|收|声|电|播|电|电|面|主|您|最|内|真|有|国|都| |
|听|国|台|及|视|视|地|页|将|及|听|实|些|之|很| |
|希|际|网|新|台|��|址|顶|收|时|不|消|消|音|少| |

w60y9p28t2ysgi5ed93zchp1ctj0m77qou54g9241o8okiwu4g3imfpidq
0wip9hjtshtfabe2106b25gmnryesxsi8xpy98v1wovt99ldn5jyg87l99
5bxxe0v3f28vcq2j66we1ni7d4qffk2n06f6rwn4gq0qwhj3c8h3xo8xy1
hifzxvf22a6pib39eir65mzvqm77is3j7qsn8z73zrspgt4i2he1gkn1pb
mn70409sdr3a7ko3e3oeuvlbinlj0rwcnebhsgwtbq8bdq2rowij4ee44v
dfq44wkl0rid8fze0rkzh6zvef8ougiw7afan4c6j52yco0vgiqslnhozz
4v5e7b6dsj53t0dovv53cl6orpii3tzs3rffzy05i6muio10rfgl4dhmnc
o1il962mpfy12abnicrp9k7izmuabtbezf63w3gewve3cmwelkncvg1ib1
7t80snpuab0b5krixxha014e1qvirix66of30yggu0y7m60qfrqif5noit
d7928s01s729a9lt4xtv88042rvi67gdnr1dh478rpwjnc27597wu71s0s
6w3q014516vuj3i3mxcoierqr09c7zse375z57cxsue31ns59jl5ziskzl
orf68qhdilg5zga91g1b1rvozqbg9pvm9zw6t25gq7gzvr0xly4u93kmi6
11cr0l1115nwyjpdbl0k2wu33a7hhslcjsc3dnxfmkkwqttm0qhcyvcu11
6honyyw5nqlgp1l8v0fkrfa0k6s0mkdt6vbssp0cvepa488apbv5o6nsmy
4534qoskktn8hfojb0qw17p4zy0bdb762o0uzz9rlgh6qbzbjz19tr7xpj
o4ioz49jlgagjsjim2yrql09f2l25hzfzwtqrrt9u64448ntsg293wue3i
ok7nsblvw6jpdzso5c7u4d3rr7bhok99n2kl1xj93ldc3f82csml752fiu
ubqgyden5mr3a7hciposxyxiso4bmtj673of3ezqg9yopsynblbziaetug
4z09u244qdics3p8mo023hcgpfhmieijihw078fhkpxohtoht4u1cr7g34
9ua95nk3fc563zgjyaybt5l67ou4qh7m6c1qutl90fz9934g2jeb8j00hv
i3v3a5dyag78xiidqm5yvoo98xo85xji21ok5ezzwgkaxc5b8b7ggy1o5i
gx3ahez3dx2qx5x0vkwhl935y86ock6uomzjybfacttz4orrov9mv7ot2i
urn1hxxgx6wyff3mrpa6yo77dkc42rdasrvrl6ir3to0q58hpw2sg3drn7
vw6buauqwsaad3l414uzl50711elmzhjneomkwecfolb48ou4v3714july
655fcj8eyot8a

Bug#29751: Old bug

2007-04-26 Thread Sami Liedes
Hi,

Is this old bug report still valid / important?

Sami


signature.asc
Description: Digital signature


Bug#33796: This old bug

2007-04-26 Thread Sami Liedes
Hi,

Have you still encountered this old bug?

Sami


signature.asc
Description: Digital signature


Bug#421111: Gnome doesn’t open kml files

2007-04-26 Thread Wesley J. Landaker
On Thursday 26 April 2007 08:52, Joachim Breitner wrote:
> Hi,
>
> sorry for not providing more information, but after a quick check here,
> my Gnome does not open kml files, neither doing “gnome-open file.kml”
> nor opening a link[1] to an “application/kml” file in Galeon.
>
> I don’t know how to fix it, though.

If you find something that fixes it, I'd be interesting in hearing.

The package built by the latest googleearth-package includes MIME definition 
and "desktop" files that usually have to do with file association in 
whatever desktop environment you are using. (Remember also that after 
installing, you might need to log out and log back in before some of these 
take effect.)

One thing you said that sounds fishy is "application/kml" -- there is no 
such thing. The only valid MIME types that Google Earth uses 
are "application/vnd.google-earth.kml+xml" 
and "application/vnd.google-earth.kmz". Two more deprecated types are still 
supported, but they are totally RFC-invalid: "application/keyhole" 
and "application/earthviewer".

-- 
Wesley J. Landaker <[EMAIL PROTECTED]> 
OpenPGP FP: 4135 2A3B 4726 ACC5 9094  0097 F0A9 8A4C 4CD6 E3D2


pgpEqEjB1psa9.pgp
Description: PGP signature


Bug#421156: Missing icons in tray

2007-04-26 Thread Sven Arvidsson
On Thu, 2007-04-26 at 15:26 -0400, Carlos Moffat wrote:
> After the last update, I noticed the tray applet no longer shows any
> of the icons (they've been replaced by a small red x instead).
> 
> I ran it with --verbose --no-daemon and got:
> 
> gnome-power-manager --no-daemon --verbose
> [gpm_debug_init] gpm-debug.c:217 (15:23:12): Verbose debugging enabled
> [main] gpm-main.c:205 (15:23:12):GNOME Power Manager 2.18.2
> *** WARNING ***
> [gpm_stock_icons_init] gpm-stock-icons.c:89 (15:23:12):  Unable to load icon 
> gpm-hibernate
> *** WARNING ***
> [gpm_stock_icons_init] gpm-stock-icons.c:89 (15:23:12):  Unable to load icon 
> gpm-suspend
> 
> 
> I can only tell you that the icons do seem to exist in the right places in 
> /usr/share/icons etc.

Hi,

This seems to work fine for me. I wonder if this is due to the icon
cache? Can you see if you a cache, and move it out of the way if that's
the case?

find /usr/share/icons/ -name icon-theme.cache

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#415176: rhythmbox restarts on close unless doing "kill" on the command line

2007-04-26 Thread Martin Ketzer
Sven Arvidsson wrote:
> Hi,
> 
> Any news on this bug? Have you had a chance to try logging in as a new
> user and see if it happens with a fresh setup?
> 
Hi,

hm, no real news. i had the same bug on a different computer (my
notebook) which has essentially the same configuration. but with the
"0.10.0-1"version i have no problems. i can't reproduce the behavior
now, not with the 0.9.6-9 nor with 0.10.0-1 (haven't got the 0.9.8-3 any
more). so i guess it can be closed unless someone else has a problem.



signature.asc
Description: OpenPGP digital signature


Bug#420850: Can't open audio device for stream after ad plays

2007-04-26 Thread Ari Pollak
Is the ad Flash? Are there possibly any Flash animations or other movies
running at the same time?

On Tue, 2007-04-24 at 18:15 -0700, Dominique Brazziel wrote:
> Package: mozilla-mplayer
> Version: 3.31+main-1
> Severity: important
> 
> Trying to listen to stream audio from espnradio.com,
> an ad plays first, and I can hear
> the audio and see video.  The stream starts buffering,
> then the player says it's playing
> but no audio can be heard.  .xsession-errors shows:
> 
> READ: [AO OSS] audio_setup: Can't open audio device
> /dev/dsp: Device or resource busy
> 
> Similar attempts to open /dev/snd/pcmC0D0p and
> /dev/dvb/adapter0/audio0 fail;  the first because
> of device or resource busy, the second because the
> device doesn't exist.
> 
> As a workaround, if I copy the URL and play it with
> mplayer I can hear the audio just
> fine.  Screen output (from mplayer -v) show /dev/dsp
> opened and used for audio, and
> /dev/snd/pcmC0D0p used as mixer device.




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



Bug#421109: Please include googleearth-package version number in googlearth package version number

2007-04-26 Thread Wesley J. Landaker
On Thursday 26 April 2007 08:49, Joachim Breitner wrote:
> it’s hard to find out what version of googleearth-package created a
> certain googlearth package. Maybe the version string for the googlearth
> package could be, for example 4.0.2414-0.0.6-1?

Good idea. I'm not sure if this is better in the package version or 
somewhere else; I'll have to think about that one. But I'll find a good 
place and put it in there in the next release. =)

-- 
Wesley J. Landaker <[EMAIL PROTECTED]> 
OpenPGP FP: 4135 2A3B 4726 ACC5 9094  0097 F0A9 8A4C 4CD6 E3D2


pgppbgthSvtnq.pgp
Description: PGP signature


Bug#421162: gcc-4.1: libssp0 is gone, several packages depend on it

2007-04-26 Thread Sven Joachim
Matthias Klose writes:
> it's gone on all architectures which have glibc-2.5. please file bug
> reports on the packages depending on it

Done for all six of them (counting source packages).

> and/or check if these can be fixed by binary rebuilds.

I'll leave this to the respective maintainers.
Regards,

Sven


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



Bug#375553: xserver-xorg: Server freezes switching to console and back

2007-04-26 Thread Brice Goglin
Hi,

About a year ago, you reported a bug to the Debian BTS regarding a
freeze of the X server when switch back/to console on a Sis board. Did
you reproduce this problem recently? With Xorg/Etch? If not, I will
close this bug in the next weeks.

Thanks,
Brice



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



Bug#421176: ifupdown: clarify scope of logic names in interfaces(5)

2007-04-26 Thread Ross Boylan
Package: ifupdown
Version: 0.6.8
Severity: wishlist

It was unclear to me whether the renaming accomplished by mapping
affected the name by which the device is known in the rest of the
system.  In particular, should iptables -i used the original name or
the mapped name?

Inspecting /proc, /dev and ksysinfo seems to show the original name is
the one used elsewhere, i.e., the mapping is only effective while
/etc/network/interfaces is being processed.  If that's true, it would
be helpful to say so.  (It's also unfortunate, since then one still
needs to fiddle the firewall rules if the rules of the devices
change.)

A couple of semi-related points while I'm here:

Some discussion of the relation of the mapping facility to the naming
facilities provided by 2.6 kernels and udev would be useful.  For
example, is one method preferred over the other?

The use of the keyword hotplug and reference to the hotplug
"subsystem" implicit in the current language is a bit confusing, since
the hotplug package was removed from Debian.  I guess udev supplies
hotplug functionality, and the keyword remains for historical reasons.

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

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

Versions of packages ifupdown depends on:
ii  debconf [debconf-2.0]   1.5.13   Debian configuration management sy
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  lsb-base3.1-23.1 Linux Standard Base 3.1 init scrip
ii  net-tools   1.60-17  The NET-3 networking toolkit

ifupdown recommends no packages.

-- debconf information excluded


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



Bug#10752: Ping?

2007-04-26 Thread Sami Liedes
Hi,

What about this bug with last comment in 1997, still valid and should
be fixed?

Sami


signature.asc
Description: Digital signature


Bug#421163: charpick_applet2 should allow drag’n’drop

2007-04-26 Thread Sven Arvidsson
forwarded 421163 http://bugzilla.gnome.org/show_bug.cgi?id=433725
thanks

On Thu, 2007-04-26 at 22:28 +0200, Joachim Breitner wrote:
> gucharmap allows the dragging of characters to other applications. It
> would be handy if charpick_applet2 would allow this as well – it would
> be a bit faster and not remove the contents of the copy’n’paste buffer.

Hi,

I forwarded this request to the upstream developers

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#401010: evolution: Evolution hangs when i try to read a mail

2007-04-26 Thread WaVeR
Hi Øystein,

Le jeudi 26 avril 2007 à 06:57 +0200, Øystein Gisnås a écrit :

> With 2.10.1 in unstable, can you please try and see if this problem
> has been fixed? I'm quite confident it has...

Until now, i dont have any problem with the new version. Give me please
some days to see if it's fixed.


Regards,

---
Hassan



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



Bug#421173: nscd: depends on removed libssp0 package

2007-04-26 Thread Sven Joachim
Package: nscd 
Version: 2.5-4
Severity: grave

Your package depends on libssp0 which is no longer present in the
latest gcc-4.1 upload (4.1.2-4).  Following Matthias Klose's advice
in http://bugs.debian.org/421162, I report this as a bug against your
package.  Please examine whether a binNMU solves this problem or if
you have to change the dependencies.


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

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


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



  1   2   3   4   5   >