Bug#404015: libglib2.0-0: nautilus cannot work properly with new version of glib2

2006-12-20 Thread Hongzheng Wang
Package: libglib2.0-0
Version: 2.12.4-2
Severity: important



Hi,

It seems the new version 2.12.5-3 of glib2 make the mime system of gnome
unworkable.  That is, after upgrading to this new version, nautilus
can not open any file properly according to the mime type of
file by registered application.  When a user double click a file in
nautilus, it will report cannot open it; right click shows the default
open application registered becomes empty.  Further, manually adding
mime handling application does not work too.

I cannot understand how this bug occurs, but downgrading to version
2.12.4-2 of glib2 eliminates this problem obviously.  So this bug report
is filed.

Thanks.


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

Versions of packages libglib2.0-0 depends on:
ii  libc62.3.6.ds1-9 GNU C Library: Shared libraries

Versions of packages libglib2.0-0 recommends:
ii  libglib2.0-data   2.12.4-2   Common files for GLib library

-- no debconf information


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



Bug#403954: f-spot: does not upload to flickr rotated version of pictures

2006-12-20 Thread Roland Mas
Filippo Giunchedi, 2006-12-20 22:24:00 +0100 :

> Hi,
> steps to reproduce:
>
> - rotate a photo
> - upload to flickr
>
> it is my understanding that the unrotated version gets uploaded to
> flickr, unless there is some trickery behind.
> I didn't tested with picasa for example

There's a checkbox labeled "autorotate" in the dialog to export to a
web gallery.  I *think* it does what you mention, but I don't know for
sure.  And it's not on the Flickr export.

  There might be a workaround for you though: if you resize the
picture to its initial size (surprise), I wouldn't be surprised if the
actual image transferred to Flickr were rotated.

Roland,
just another F-Spot user.
-- 
Roland Mas

C'est un type qui rentre dans un café.
Plouf.



Bug#404016: Many reference of user 'root' in sympa code after installation.

2006-12-20 Thread Jean Charles Delepine
Package: sympa
Version: 5.2.3-0.5
Severity: normal

/usr/lib/sympa/bin/arc2webarc.pl:unless (getlogin() eq 'root') {
/usr/lib/sympa/bin/archived.pl: chown 'root', 'root', $wwsconf->{'arc_path'};
/usr/lib/sympa/bin/archived.pl:$( = $) = (getgrnam('root'))[2];
/usr/lib/sympa/bin/archived.pl:$< = $> = (getpwnam('root'))[2];
/usr/lib/sympa/bin/archived.pl:&POSIX::setuid((getpwnam('root'))[2]);
/usr/lib/sympa/bin/archived.pl:&POSIX::setgid((getgrnam('root'))[2]);
/usr/lib/sympa/bin/bounced.pl:$( = $) = (getgrnam('root'))[2];
/usr/lib/sympa/bin/bounced.pl:$< = $> = (getpwnam('root'))[2];
/usr/lib/sympa/bin/bounced.pl:&POSIX::setuid((getpwnam('root'))[2]);
/usr/lib/sympa/bin/bounced.pl:&POSIX::setgid((getgrnam('root'))[2]);
/usr/lib/sympa/bin/mod2html.pl:$( = $) = (getgrnam('root'))[2];
/usr/lib/sympa/bin/mod2html.pl:$< = $> = (getpwnam('root'))[2];
/usr/lib/sympa/bin/sympa.pl:$( = $) = (getgrnam('root'))[2];
/usr/lib/sympa/bin/sympa.pl:$< = $> = (getpwnam('root'))[2];
/usr/lib/sympa/bin/sympa.pl:&POSIX::setuid((getpwnam('root'))[2]);
/usr/lib/sympa/bin/sympa.pl:&POSIX::setgid((getgrnam('root'))[2]);
/usr/lib/sympa/bin/task_manager.pl:$( = $) = (getgrnam('root'))[2];
/usr/lib/sympa/bin/task_manager.pl:$< = $> = (getpwnam('root'))[2];
/usr/lib/sympa/bin/task_manager.pl:&POSIX::setuid((getpwnam('root'))[2]);
/usr/lib/sympa/bin/task_manager.pl:&POSIX::setgid((getgrnam('root'))[2]);
/usr/lib/sympa/bin/tools.pl:my $uid = (getpwnam('root'))[2];
/usr/lib/sympa/bin/tools.pl:my $gid = (getgrnam('root'))[2];
/usr/lib/sympa/bin/tpl2tt2.pl:#unless (getlogin() eq 'root') {
/usr/lib/sympa/bin/tpl2tt2.pl:  chown 'root', 'root', $dest_path;
/usr/lib/sympa/bin/tpl2tt2.pl:chown 'root', 'root', $out_file;
/usr/lib/cgi-bin/sympa/wwsympa.fcgi: unless ($> eq (getpwnam('root'))[2]) {
/usr/lib/cgi-bin/sympa/wwsympa.fcgi: &wwslog('err','Config error: wwsympa 
should run with UID %s (instead of %s)', (getpwnam('root'))[2], $>);
/usr/lib/cgi-bin/sympa/wwsympa_sudo_wrapper.pl:exec '/usr/bin/sudo', '-u', 
'root', '/usr/lib/cgi-bin/sympa/wwsympa.fcgi'

All those 'root' come from '--USER--' in the code which itself comes
from the configure option :
   --with-user=LOGIN   set sympa user name (default sympa)
debian set's this option to root, because sympa user still not exist at
build time.

sympa runas user sympa, so all those setuid and other chown will not
have effect. Anyway, I don't feel comfortable with this and wouldn't
like somebody else to see such code... and the last 'sudo' is...
quite interesting.

Modifiing autoconf to have --with-user for the code and --with-owner for
the files as in my package has my preference.

You will prefer I think modifying all those --USER-- before build. Maybe
something more... less... than that :

find . -path './debian' -prune -o -type f -print -exec perl -i -pe
"s%\'--USER--\'%\'sympa\'%" {} ';'

-
- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (900, 'testing'), (200, 'unstable'), (10, 'experimental')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-xen-amd64
Locale: LANG=fr_FR, LC_CTYPE=fr_FR (charmap=ISO-8859-1)

Versions of packages sympa depends on:
ii  adduser  3.100   Add and remove users and groups
ii  debconf [debconf-2.0]1.5.8   Debian configuration management sy
ii  libarchive-zip-perl  1.16-1  Module for manipulation of ZIP arc
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  libcgi-fast-perl 5.8.8-6.1   CGI::Fast Perl module
ii  libcrypt-ciphersaber-perl0.61-4  Perl module implementing CipherSab
ii  libdbd-mysql-perl3.0008-1A Perl5 database interface to the 
ii  libdbi-perl  1.53-1  Perl5 database interface by Tim Bu
ii  libfcgi-perl 0.67-2  FastCGI Perl module
ii  libintl-perl 1.16-1  Uniforum message translations syst
ii  libio-stringy-perl   2.110-1 Perl5 modules for IO from scalars 
ii  libmailtools-perl1.74-1  Manipulate email in perl programs
ii  libmd5-perl  2.03-1  backwards-compatible wrapper for D
ii  libmime-perl 5.420-0.1   Perl5 modules for MIME-compliant m
ii  libmsgcat-perl   1.03-3  Locale::Msgcat perl module
ii  libnet-ldap-perl 1:0.33-2A Client interface to LDAP servers
ii  libtemplate-perl 2.14-1  template processing system written
ii  libxml-libxml-perl   1.59-2  Perl module for using the GNOME li
ii  mhonarc  2.6.16-1Mail to HTML converter
ii  perl [libmime-base64-perl]   5.8.8-6.1   Larry Wall's Practical Extraction 
ii  perl-suid5.8.8-6.1   Runs setuid Perl scripts
ii  postfix [mail-transport-agen 2.3.4-3 A high-performance mail transport 
ii  sysklogd [system-log-daemon] 1.4.1-18System Logging Daemon

Versions o

Bug#404014: mbpeventd: Can't change between direct function keys or FN+function keys

2006-12-20 Thread Sergi Barroso
Package: mbpeventd
Version: 0.9-1
Severity: wishlist

This package it's very useful, but if users can select if they want
function features while pressing Fx keys or Fn+Fxkeys will be more
useful.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.19-macbook2
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)

Versions of packages mbpeventd depends on:
ii  eject2.1.4-2.1   ejects CDs and operates CD-Changer
ii  libasound2   1.0.13-1ALSA library
ii  libc62.3.6.ds1-9 GNU C Library: Shared libraries
ii  libconfuse0  2.5-2   Library for parsing configuration 
ii  libsmbios1   0.12.1-3Provide access to (SM)BIOS informa
ii  zlib1g   1:1.2.3-13  compression library - runtime

mbpeventd recommends no packages.

-- no debconf information


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



Bug#398234: closed by Isaac Clerencia <[EMAIL PROTECTED]> (Fixed in 1.1.13)

2006-12-20 Thread Isaac Clerencia
On Thursday 21 December 2006 05:25, David Meggy wrote:
> > > This was fixed in version 1.1.13
> No, it isn't fixed.
>
> Wesnoth still closes on loading that file.
Do you have version 1.1.13 or 1.1.14?

I uploaded 1.1.13 to experimental and then (yesterday) 1.1.14 to unstable so 
it's quite possible you are still using 1.1.12.

If it still crashes with 1.1.13 or 1.1.14 we should have a look.

Best regards
-- 
Warp Networks | [EMAIL PROTECTED]| http://warp.es
Debian| [EMAIL PROTECTED] | http://www.debian.org


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



Bug#354355: sympa: Please stop kidding

2006-12-20 Thread Raphael Hertzog
Hi Stefan,

On Wed, 20 Dec 2006, Stefan Hornburg (Racke) wrote:
> >Stefen, you have write access to this svn repository. Please use it to
> >maintain the package. It will ease our work. I don't know if you're
> >familiar with svn-buildpackage, if not please check out some related
> >documentation:
> >- man svn-buildpackage
> >- http://pkg-perl.alioth.debian.org/subversion.html (some doc from the
> >  perl team which uses heavily svn with the same structure than in
> >  collab-maint)
> >
> >And if you have questions, feel free to ask.
> 
> How does the initial checkout command looks like ?

Here's how to get it going with initial checkout, retrieval of the
required tarball and first build:
$ mkdir svn
$ cd svn
$ svn co svn+ssh://svn.debian.org/svn/collab-maint/deb-maint/sympa/trunk sympa
Asympa/debian
Asympa/debian/control
[...]
$ mkdir tarballs
$ cd tarballs/
$ wget http://ftp.debian.org/debian/pool/main/s/sympa/sympa_5.2.3.orig.tar.gz
$ cd ../sympa
$ svn-buildpackage
[...]
$ ls ../build-area/
sympa_5.2.3-0.5.diff.gz  sympa_5.2.3-0.5_i386.build   sympa_5.2.3-0.5_i386.deb
sympa_5.2.3-0.5.dsc  sympa_5.2.3-0.5_i386.changes sympa_5.2.3.orig.tar.gz

Cheers,
-- 
Raphaël Hertzog

Premier livre français sur Debian GNU/Linux :
http://www.ouaza.com/livre/admin-debian/



Bug#403998: It is not installable

2006-12-20 Thread Jonny
Package: gzip
Version: 1.3.9-1
Severity: grave

The following messages are outputted:
 Setting up gzip (1.3.9-1) ...
 install-info(/usr/share/info/gzip.info): warning, ignoring confusing 
INFO-DIR-ENTRY in file.
 
 No `START-INFO-DIR-ENTRY' and no `This file documents'.
 install-info(/usr/share/info/gzip.info): unable to determine description for 
`dir' entry - giving up
 dpkg: error processing gzip (--install):
  subprocess post-installation script returned error exit status 1
 Errors were encountered while processing:
  gzip


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



Bug#403997: file conflict with clearsilver-dev

2006-12-20 Thread Michael Ablassmeier
Package: libcgi-dev
Severity: serious
Version: 1.0-5
Justification: file conflict between packages

hi, 

both clearsilver-dev and libcgi-dev ship `usr/share/man/man3/cgi_redirect.3.gz' 
but do not conflict or add a diversion, thus fail to be installed on the same
environment:

 dpkg: error processing /var/cache/apt/archives/libcgi-dev_1.0-5_i386.deb 
(--unpack):
 trying to overwrite `/usr/share/man/man3/cgi_redirect.3.gz', which is also in 
package clearsilver-dev
Errors were encountered while processing:
 /var/cache/apt/archives/libcgi-dev_1.0-5_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

see
 http://people.debian.org/~abi/testing_install_logs/clearsilver-dev_libcgi-dev
for the full log.

bye,
- michael


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



Bug#403969: xserver-xorg: xserver crashing, mode related?

2006-12-20 Thread Michel Dänzer
On Wed, 2006-12-20 at 18:33 -0500, Rob Bochan wrote:
> Package: xserver-xorg
> Version: 1:7.1.0-9
> Severity: important
> 
> The xserver on this machine is crashing. So far, it's happening whenever
> I've tried to run a winex/cedega based game, tried to run glxgears, or tried
> to call up glxinfo. Whenever any of the aforementioened are attempted, I'm
> dumped back to the console (since I use startx).

Please provide a log file from a crash and the output from

LIBGL_DEBUG=verbose glxinfo


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer



Bug#403992: file conflicts with childsplay-alphabet-sounds-sv

2006-12-20 Thread Michael Ablassmeier
Package: childsplay-alphabet-sounds-ru
Version: 0.4.2-1
Severity: serious
Justfication: file conflict between packages

hi,

both childsplay-alphabet-sounds-ru and childsplay-alphabet-sounds-sv
ship /usr/share/childsplay/Data/AlphabetSounds/1.ogg  but do not
conflict or add a diversion, thus fail to be installed on the same
environment:

dpkg: error processing 
/var/cache/apt/archives/childsplay-alphabet-sounds-sv_0.4.2-1_all.deb 
(--unpack):
 trying to overwrite `/usr/share/childsplay/Data/AlphabetSounds/1.ogg', which 
is also in package childsplay-alphabet-sounds-ru
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/childsplay-alphabet-sounds-sv_0.4.2-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

see
 
http://people.debian.org/~abi/testing_install_logs/childsplay-alphabet-sounds-ru_childsplay-alphabet-sounds-sv
for the full log.

bye,
- michael


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



Bug#403995: file conflict with aub

2006-12-20 Thread Michael Ablassmeier
Package: webmagick
Version: 2.02-8.2 
Severity: serious
Justfication: file conflict between packages

hi,

both aub and webmagick ship `/usr/share/man/man1/aub.1.gz', but do not
conflict or add a diversion, thus fail to be installed on the same
environment:

 dpkg: error processing /var/cache/apt/archives/webmagick_2.02-8.2_all.deb 
(--unpack):
 trying to overwrite `/usr/share/man/man1/aub.1.gz', which is also in package 
aub
 Errors were encountered while processing:
 /var/cache/apt/archives/webmagick_2.02-8.2_all.deb
 E: Sub-process /usr/bin/dpkg returned an error code (1)

see 
 http://people.debian.org/~abi/testing_install_logs/aub_webmagick
for the full log.

bye,
- michael


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



Bug#403993: Building kernel fails with "You need to install xmlto"

2006-12-20 Thread Harald Dunkel
Package: kernel-package
Version: 10.065

After installing docbook (4.4-1) building a kernel fails
with

:
:
/usr/bin/make  mandocs htmldocs
make[2]: Entering directory `/usr/src/linux-2.6.19.1'
  DOCPROC Documentation/DocBook/wanbook.xml
*** You need to install xmlto ***
make[3]: *** [Documentation/DocBook/wanbook.9] Error 1
make[2]: *** [mandocs] Error 2
make[2]: Leaving directory `/usr/src/linux-2.6.19.1'
make[1]: *** [install/linux-doc-2.6.19.1] Error 2
make[1]: Leaving directory `/usr/src/linux-2.6.19.1'
make: *** [stamp-buildpackage] Error 2


Is this a missing dependency between docbook and xmlto?


Regards

Harri




signature.asc
Description: OpenPGP digital signature


Bug#403994: file conflict with webmagick

2006-12-20 Thread Michael Ablassmeier
Package: aub
Version: 2.2
Severity: serious
Justfication: file conflict between packages

hi,

both aub and webmagick ship `/usr/share/man/man1/aub.1.gz', but do not
conflict or add a diversion, thus fail to be installed on the same
environment:

 dpkg: error processing /var/cache/apt/archives/webmagick_2.02-8.2_all.deb 
(--unpack):
 trying to overwrite `/usr/share/man/man1/aub.1.gz', which is also in package 
aub
 Errors were encountered while processing:
 /var/cache/apt/archives/webmagick_2.02-8.2_all.deb
 E: Sub-process /usr/bin/dpkg returned an error code (1) 

see 
 http://people.debian.org/~abi/testing_install_logs/aub_webmagick
for the full log.

bye,
- michael


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



Bug#403996: file conflict with libcgi-dev

2006-12-20 Thread Michael Ablassmeier
Package: clearsilver-dev
Severity: serious
Version: 0.10.3-4
Justification: file conflict between packages

hi, 


both clearsilver-dev and libcgi-dev ship `usr/share/man/man3/cgi_redirect.3.gz'
but do not conflict or add a diversion, thus fail to be installed on the same
environment:

 dpkg: error processing /var/cache/apt/archives/libcgi-dev_1.0-5_i386.deb 
(--unpack):
 trying to overwrite `/usr/share/man/man3/cgi_redirect.3.gz', which is also in 
package clearsilver-dev
Errors were encountered while processing:
 /var/cache/apt/archives/libcgi-dev_1.0-5_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1) 

see
 http://people.debian.org/~abi/testing_install_logs/clearsilver-dev_libcgi-dev
for the full log.

bye,
- michael


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



Bug#403979: ITP: gpe-gallery -- GPE image gallery and viewer, with slideshow support

2006-12-20 Thread Andreas Tille

On Thu, 21 Dec 2006, Neil Williams wrote:


 Description : GPE image gallery and viewer, with slideshow support
A small application for viewing images in GPE. Intended to show
small and medium sized images and is able to display a slide
show and to perform several simple operations with the images.


Sorry, what is GPE?
Yes, I'm sure Google would be my friend for this question but package
descriptions should not require other resources to be understandable
for the user.

Kind regards

  Andreas.

--
http://fam-tille.de


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



Bug#403910: [Debian-arabic-packages] Bug#403910: /usr/share/fonts/truetype/ttf-farsiweb/tshreer.ttf does not exist

2006-12-20 Thread Alan Baghumian
Lior,

Another thing that ttf-farsiweb fonts conflict with ttf-freefont package.
If ttf-freefont package is installed, ttf-farsiweb fonts won't be
displayed correctly on UI.

Alan

> Hi,
>
> I'm sorry, but I didn't find the link you mentioned. Could you be more
> specific ?
>
>
> Checks done:
> ~$ dpkg -l ttf-farsiweb defoma
> ||/ Name  Version   Description
> +++-=-=-==
> ii  defoma0.11.10   Debian Font
> Manager -- automatic font configuration framework
> ii  ttf-farsiweb  0.4-1 FarsiWeb free
> TrueType Farsi fonts
>
> ( I use SID, but took the package from Sarge).
>
> 1. check the defoma-hints files:
> 2. grep -i tshreer /etc/defoma/hints/ttf-farsiweb.hints
> 3. $ locate nazlib /usr/share/fonts/truetype/ttf-farsiweb/nazlib.ttf
> /var/lib/defoma/gs.d/dirs/fonts/nazlib.ttf
> /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType/nazlib.ttf
>
> $ ls -l /usr/share/fonts/truetype/ttf-farsiweb
> /var/lib/defoma/gs.d/dirs/fonts/
> /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType | grep -i tshreer
>
> 4. I've checked the changelog and tshreer.ttf wasn't provided by this
> package in any time at the past.
>
> Please send more details.
>
>
> Michelle Konzack wrote:
>> Package: ttf-farsiweb
>> Version: 0.4-1
>> Severity: normal
>>
>> Error description:
>>
>> There is a dangling Symlink in the defoma directory
>> since the Font is not distributed.
>>
>> Thanks, Greetings and nice Day
>> Michelle Konzack
>> Systemadministrator
>> Tamay Dogan Network
>> Debian GNU/Linux Consultant
>>
>>
>>
>> -- System Information
>> Debian Release: 3.1
>> Kernel Version: Linux michelle1.private 2.4.27-2-386 #1 Wed Aug 17
>> 09:33:35 UTC 2005 i686 GNU/Linux
>>
>>
>> Versions of the packages ttf-farsiweb depends on:
>> ii  defoma 0.11.8-0.1 Debian Font Manager -- automatic font
>> config
>>
>>
>>
>>
>> 
>>
>> ___
>> Debian-arabic-packages mailing list
>> [EMAIL PROTECTED]
>> http://lists.alioth.debian.org/mailman/listinfo/debian-arabic-packages
>
> --
>
> Lior Kaplan
> [EMAIL PROTECTED]
>
> GPG fingerprint:
> C644 D0B3 92F4 8FE4 4662  B541 1558 9445 99E8 1DA0
>
>
> ___
> Debian-arabic-packages mailing list
> [EMAIL PROTECTED]
> http://lists.alioth.debian.org/mailman/listinfo/debian-arabic-packages
>




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



Bug#378573: tightvncserver: 'vncserver' script should probably use /etc/X11/Xsession as the default client script

2006-12-20 Thread Ola Lundqvist
tags 378573 + patch
thanks

On Wed, Dec 20, 2006 at 06:46:42PM +0300, Nikita V. Youshchenko wrote:
> > > I've filed the bug report after I've seen that someone has shown
> > > [non-technical] users of our network that they may use vnc-over-ssh to
> > > get graphical sessions on our application server from outside of our
> > > network - and the users got confused when under vnc they got something
> > > different from session I've tuned for their needs. Of course, this
> > > partuculer case could be handled by instructiong users not to use
> > > 'vncserver' script, and/or customizing that script - but I don't see
> > > why not make a global solution :)
> >
> > If you can update the vncserver command and send me the patch it would
> > be nice. I need someone that make a working solution that is
> > heavily tested before I release it. I could also update it for you to
> > test but I think that take some more time...
> 
> Actially there is /etc/vnc.conf, that has these lines:
> 
> # $vncStartup points to a script that will be started at the very beginning.
> # $vncStartup = "/etc/X11/Xsession";
> 
> I suggest to uncomment this setting by default.
> 
> 

I see. I do not think this will be accepted for etch, but I'll
consider it for unstable.

Regards,

// Ola

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://opalsys.net/ UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#403712: kernel-patch-openvz: Cannot compile kernel, undefined symbols

2006-12-20 Thread Ola Lundqvist
Hi David

When I compiled the kernel yesterday using the same version of the kernel
and the openvz patch I did not need to do anything with symlinking.

My compile line look something like this:
export PATCH_THE_KERNEL=true
untar xxx.tar.gz
cd /usr/src/linux
make-kpkg -rfakeroot --append-to-version -openvz --added_patches openvz \
--revision 02 --initrd

I used the same .config file as in the upstream version.
I built it for 486, 686 and k7.

Regards,

// Ola

On Wed, Dec 20, 2006 at 10:30:34AM +0200, David Baron wrote:
> >> Hi
> >>
> >> I have built it now and I have no problem building. Not at least
> >> with make-kpkg.
> >
> >I use this.
> >
> >> According to upstream you did not run make oldconfig for some reason?
> >
> >It does this anyway. I compied to .config from the non-patched kernel and 
> >was 
> >asked to fill in various new items inserted by the patch.
> 
> >>
> >> So my question to you (before I close this bug) is how exactly you
> >> built the kernel?
> 
> >Here is the script that I use:
> >#!/bin/sh
> >export PATCH_THE_KERNEL=true
> >cd /usr/src/linux
> >sudo make-kpkg --append-to-version -davidb-ovz --added_patches openvz 
> >kernel_image
> >
> > Did you do as described in the README file or in some other way?
> 
> I started over, fresh untar of the sources, the resultant .config from the 
> previous attempt and (another bug, this in the current kernel sources), made 
> the symlink in /usr/src/linux/include  asm --> asm-i386 (or whatever one is 
> using!)
> 
> Reran the script.
> 
> A few days ago when I filed the bug, the patch was followed by a series of 
> deletions. This time, there were none, so just maybe it is OK
> 
> Let you know. (I have never succeded in booting one of these but that is 
> another issue!)
> 

-- 
 --- Ola Lundqvist systemkonsult --- M Sc in IT Engineering 
/  [EMAIL PROTECTED]   Annebergsslingan 37\
|  [EMAIL PROTECTED]   654 65 KARLSTAD|
|  http://opalsys.net/   Mobile: +46 (0)70-332 1551 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9  /
 ---


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



Bug#403629: tramp: Error on some commands

2006-12-20 Thread Michael Albinus
Toby Speight <[EMAIL PROTECTED]> writes:

> I've just tried with "emacs -q" and I'm having trouble reproducing
> this.  But in my main Emacs (same version, etc), it's failing.  I have
> a lot more stuff running in my main one (Gnus, BBDB, w3, Mule-UCS,
> ...), so it's hard to pin down what's happening.
> no clue there as to where the negative character is coming from.
>
> A little further experimentation using `M-:' (`eval-expression') shows
> that (char-equal) doesn't like negative numbers.  It is probably only
> important when `case-fold-search' is non-nil (it is, for me), as the
> big array looks like a case-mapping table.
>
> Is that any help?

`case-fold-search' doesn't seem to be guilty; it is also t for me. So
it would be interesting if you could find out the guilty package.

Anyway, the test in `tramp-completion-mode' is made in order to check
whether `char-equal' can be applied. If you replace

(and (integerp last-input-event)
by

(and (wholenump last-input-event)

we should be on the safe side. Could you, please, check it? For me it
works of course :-)

Best regards, Michael.


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



Bug#403991: fuse-source: wishing for versions to be synced with other fuse packages

2006-12-20 Thread Shaddy Baddah

Package: fuse-source
Version: 2.2.1-4sarge2
Severity: wishlist

The latest (testing distribution) releases of fuse packages (fuse-utils, 
libfuse-dev, libfuse2) (at version 2.5.3-4.1 at the time of writing), 
fail to interact with the fuse kernel module produced by this version of 
fuse-source (fuse-module-2.6.8-3-686 in my case). The fuse clients (or 
agents probably describes them better) complain of *short read*s on 
/dev/fuse.


There is no such problem when the fuse packages are at the same version 
level as the fuse kernel module.


It would be nice if this fuse-source package was updated and uploaded at 
the same time as the other fuse packages. I get the impression that that 
this did not occur this time was deliberate, because fuse-module dropped 
out of the *suggests* field of the fuse packages.


Any chance of an update, so that we can use the fuse packages in test? 
Also, can I just confirm that the fuse packages can *pass* test without 
requiring that debian have a distribution of the fuse module? Are people 
testing these packages against their *non-distribution* builds of the 
fuse module?


Thanks in advance,
Shaddy



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



Bug#403585: Regression in 2.4.35-1

2006-12-20 Thread Steve Langasek
On Wed, Dec 20, 2006 at 03:10:20PM +1100, Nathan Scott wrote:
> > As reports of broken sid systems rose up, Andreas Barth NMUed
> > your package yesterday in a 0-day NMU policy. He setup an epoch
> > to the package version which IMHO is a bad thing now that we
> > have the possibility of ~ in version strings. He could have used
> > 2.4.35~is.2.4.32-0.1 instead of the ugly 1:2.4.32-1.1, because from
> > now on, you are stuck with an epoch in your package versions.

> Oh.  What is your recommendation on fixing this Andi?  How do I get
> past this epoch that's been thown into my previously neat and tidy
> version management, and back to the simple versioning model I had?

Epochs are forever.  You'll need to incorporate the epoch into your
versioning.

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


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



Bug#403682: apache2.2: FTBFS: /bin/sh: mawk: command not found

2006-12-20 Thread Peter Samuelson

[Aurelien Jarno]
> | /bin/sh: mawk: command not found

> The build log is for kfreebsd-amd64, but the same happens in a
> pbuilder on amd64. The build system is calling mawk, but either gawk
> or mawk can be installed on the system. It should either call awk, or
> the package should build-depends on mawk.

Right, adding a build-dependency now.

Thanks,
Peter


signature.asc
Description: Digital signature


Bug#403990: git-buildpackage: Allow option for git-import-orig to automatically create upstream branch

2006-12-20 Thread David Nusinow
Package: git-buildpackage
Version: 0.2.12
Severity: wishlist

Hello,

   When running git-import-orig on a repository that doesn't have an
upstream branch, the import fails. It would be nice if it either gave the
option of creating a new branch (either by asking the user at runtime or
providing a argument option) automatically.

 - David Nusinow

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

Versions of packages git-buildpackage depends on:
ii  devscripts2.9.27 Scripts to make the life of a Debi
ii  git-load-dirs 1.0.35 Import upstream archives into git
ii  python2.4.4-2An interactive high-level object-o
ii  python-support0.5.6  automated rebuilding support for p

git-buildpackage recommends no packages.

-- no debconf information


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



Bug#403989: sympa: [INTL:fr] French debconf templates translation

2006-12-20 Thread Christian Perrier
Package: sympa
Version: N/A
Severity: wishlist
Tags: patch l10n

Please find attached the french debconf templates update, proofread by the
debian-l10n-french mailing list contributors.

If you do not already use it, please remember about the
"podebconf-report-po" utility, which helps warning translators about
changes when you modify some debconf templates in your packages. See
its man page for details.

The usual policy when using it is sending a warning to translators when
you plan to upload a version of your package with debconf templates
changes (EVEN TYPO CORRECTIONS). Then leave about one week for them to
update their files (several translation teams have a QA process which
requires time).

podebconf-report-po will take care of sending the translators the
needed material as well as getting the translators adresses from the
PO files. All you have to do is just using the utility..:-)

If you apply this policy, please forget about these remarks, of
courseThis message is generic..:-)


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-2-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to fr_FR.UTF-8)
# translation of fr.po to French
# This file is distributed under the same license as the PACKAGE package.
#
#Translators, please read /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
# Christian Perrier <[EMAIL PROTECTED]>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-10-20 13:46+0200\n"
"PO-Revision-Date: 2005-11-08 17:59+0100\n"
"Last-Translator: Christian Perrier <[EMAIL PROTECTED]>\n"
"Language-Team: French \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Simplified Chinese"
msgstr "Chinois simplifié"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Traditional Chinese"
msgstr "Chinois traditionnel"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Czech"
msgstr "Tchèque"

#. Type: select
#. Choices
#: ../templates:1001
msgid "English"
msgstr "Anglais"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Estonian"
msgstr "Estonien"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Finnish"
msgstr "Finnois"

#. Type: select
#. Choices
#: ../templates:1001
msgid "French"
msgstr "Français"

#. Type: select
#. Choices
#: ../templates:1001
msgid "German"
msgstr "Allemand"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Hungarian"
msgstr "Hongrois"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Italian"
msgstr "Italien"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Polish"
msgstr "Polonais"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Romanian"
msgstr "Roumain"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Spanish"
msgstr "Espagnol"

#. Type: select
#. DefaultChoice
#: ../templates:1002
msgid ""
"English[default:do not put what's inside brackets into translations. Put "
"your own language here but UNTRANSLATED]"
msgstr "French"

#. Type: select
#. Description
#: ../templates:1003
msgid "What is your language?"
msgstr "Langue :"

#. Type: string
#. Description
#: ../templates:2001
msgid "What is the sympa hostname?"
msgstr "Nom d'hôte du serveur « sympa » :"

#. Type: string
#. Description
#: ../templates:2001
msgid ""
"This is the name of the machine or the alias you will use to reach sympa."
msgstr ""
"Veuillez indiquer le nom d'hôte de la machine ou de l'alias utilisé pour "
"envoyer des requêtes à Sympa. Par exemple :"

#. Type: string
#. Description
#. Type: string
#. Description
#. Type: string
#. Description
#: ../templates:2001 ../templates:3001 ../templates:17001
msgid "Example:"
msgstr "Exemple :"

#. Type: string
#. Description
#: ../templates:2001
msgid "  listhost.cru.fr"
msgstr "  listhost.cru.fr"

#. Type: string
#. Description
#: ../templates:2001
msgid "  Then, you will send your sympa commands to:"
msgstr "Les commandes de Sympa seront alors envoyées à :"

#. Type: string
#. Description
#: ../templates:2001
msgid "  [EMAIL PROTECTED]"
msgstr "  [EMAIL PROTECTED]"

#. Type: string
#. Description
#: ../templates:3001
msgid "What are the listmasters email addresses?"
msgstr "Adresses électroniques des administrateurs de listes :"

#. Type: string
#. Description
#: ../templates:3001
msgid ""
"Listmasters are privileged people who administrate mailing lists (mailing "
"list superusers)."
msgstr ""
"Un administrateur de listes (« listmaster ») est une personne qui gère le "
"serveur de listes de diffusion."

#. Type: string
#. Description
#: ../templates:3001
msgid "Please give listmasters email addresses separated by c

Bug#321466: O: liblingua-ispell-perl -- Perl module encapsulating access to the ispell program

2006-12-20 Thread Gunnar Wolf
retitle 321466 ITA: liblingua-ispell-perl -- Perl module encapsulating access 
to the ispell program
thanks

I'm adopting this package for the pkg-perl group.

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF


signature.asc
Description: Digital signature


Bug#403934: xvier: contains a file in /usr/X11R6/include/X11/

2006-12-20 Thread Gunnar Wolf
I just uploaded the NMU for this bug to delayed 4-day. The diff is
here attached.

Greetings,

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF
diff -ru xvier-1.0/debian/changelog ../xvier-1.0/debian/changelog
--- xvier-1.0/debian/changelog  2006-12-20 22:56:03.0 -0600
+++ ../xvier-1.0/debian/changelog   2006-12-20 22:44:08.989670056 -0600
@@ -1,3 +1,11 @@
+xvier (1.0-7.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Moved menu pixmaps from /usr/X11R6/include/X11/pixmaps to
+/usr/share/pixmaps (Closes: #403934)
+
+ -- Gunnar Wolf <[EMAIL PROTECTED]>  Wed, 20 Dec 2006 22:44:08 -0600
+
 xvier (1.0-7.2) unstable; urgency=low
 
   * Non-maintainer upload to help with xlibs-dev transition.
diff -ru xvier-1.0/debian/menu ../xvier-1.0/debian/menu
--- xvier-1.0/debian/menu   2006-12-20 22:56:03.0 -0600
+++ ../xvier-1.0/debian/menu2006-12-20 22:44:27.586842856 -0600
@@ -1,3 +1,3 @@
 ?package(xvier): needs="X11" title="Xvier" section="Games/Board" \
   command="/usr/games/xvier" \
-  icon="/usr/X11R6/include/X11/pixmaps/mini-xvier.xpm"
+  icon="/usr/share/pixmaps/mini-xvier.xpm"
diff -ru xvier-1.0/debian/rules ../xvier-1.0/debian/rules
--- xvier-1.0/debian/rules  2006-12-20 22:56:03.0 -0600
+++ ../xvier-1.0/debian/rules   2006-12-20 22:53:08.559642952 -0600
@@ -26,8 +26,8 @@
 binary-arch: build
test `id -u` -eq 0
rm -rf $(tmp)
-   install -d -m 0755 $(tmp)/usr/games $(tmp)/usr/lib/menu $(tmp)/DEBIAN \
-   $(tmp)/usr/X11R6/include/X11/pixmaps \
+   install -d -m 0755 $(tmp)/usr/games $(tmp)/usr/share/menu $(tmp)/DEBIAN 
\
+   $(tmp)/usr/share/pixmaps \
$(tmp)/usr/share/man/man6 $(tmp)/usr/share/doc/xvier
install -s -m 755 xvier xvier_prog $(tmp)/usr/games
strip --remove-section=.comment --remove-section=.note 
$(tmp)/usr/games/*
@@ -35,10 +35,10 @@
ln -s xvier.6x.gz $(tmp)/usr/share/man/man6/xvier_prog.6x.gz
install -m 755 debian/postinst debian/postrm $(tmp)/DEBIAN
install -m 644 README $(tmp)/usr/share/doc/xvier
-   install -m 644 mini-xvier.xpm $(tmp)/usr/X11R6/include/X11/pixmaps
+   install -m 644 mini-xvier.xpm $(tmp)/usr/share/pixmaps
gzip -c9 debian/changelog > 
$(tmp)/usr/share/doc/xvier/changelog.Debian.gz
install -m 644 debian/copyright $(tmp)/usr/share/doc/xvier/copyright
-   install -m 644 debian/menu $(tmp)/usr/lib/menu/xvier
+   install -m 644 debian/menu $(tmp)/usr/share/menu/xvier
dpkg-shlibdeps $(tmp)/usr/games/*
dpkg-gencontrol -P$(tmp) -isp
chown -R root.root $(tmp)


signature.asc
Description: Digital signature


Bug#403988: git-buildpackage: git-import-orig does not appear to work at all

2006-12-20 Thread David Nusinow
Package: git-buildpackage
Version: 0.2.12
Severity: important

Hello,

   I'm trying to use git-import-orig on a new repository. This repository
currently has the debian packaging already present in the master branch.
There are no other sources. I create an upstream branch and run
git-import-orig. After it gives me the list of files and asks for
confirmation, I allow it to run the import. It does so, and it deletes the
debian directory in the change to the upstream branch. Then when it
switches to the master branch and pull the change, the debian directory
gets deleted and the import fails because this packaging information is
missing.

   Similarly, if I create the upstream branch, then delete the debian
directory there, so that the packaging info is only in the master branch,
and run git-import-orig, the same thing happens. This is apparently because
git-import-orig runs 'git pull . upstream', which pulls all the changes
from upstream in to master, including the change that deleted the debian
dir. In order to make this work, I have to manually revert the master dir
and cherry-pick the import change, thus avoiding the change that deletes
the debian dir.

   I'm not sure if this is a suitable method for git-import-orig to do, but
it does get me what I need in order to build the package.

 - David Nusinow

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

Versions of packages git-buildpackage depends on:
ii  devscripts2.9.27 Scripts to make the life of a Debi
ii  git-load-dirs 1.0.35 Import upstream archives into git
ii  python2.4.4-2An interactive high-level object-o
ii  python-support0.5.6  automated rebuilding support for p

git-buildpackage recommends no packages.

-- no debconf information


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



Bug#403987: git-buildpackage: Does not work with pbuilder

2006-12-20 Thread David Nusinow
Package: git-buildpackage
Version: 0.2.12
Severity: normal

Hello,

  git-buildpackage fails when I specify --git-builder=pbuilder.
Specifically, git-buildpackage explicitly passes pbuilder the 'clean'
target, which causes it to fail. I really like to use pbuilder to ensure
that my build-deps are correct, so having git-buildpackage support it would
be very helpful. Thank you for your work on git-buildpackage!

 - David Nusinow

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

Versions of packages git-buildpackage depends on:
ii  devscripts2.9.27 Scripts to make the life of a Debi
ii  git-load-dirs 1.0.35 Import upstream archives into git
ii  python2.4.4-2An interactive high-level object-o
ii  python-support0.5.6  automated rebuilding support for p

git-buildpackage recommends no packages.

-- no debconf information


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



Bug#398234: closed by Isaac Clerencia <[EMAIL PROTECTED]> (Fixed in 1.1.13)

2006-12-20 Thread David Meggy
No, it isn't fixed.

Wesnoth still closes on loading that file.

David

On Sun, 2006-12-17 at 07:49 -0800, Debian Bug Tracking System wrote:
> This is an automatic notification regarding your Bug report
> #398234: wesnoth: Crashes with an assert message on loading a particular file,
> which was filed against the wesnoth package.
> 
> It has been closed by Isaac Clerencia <[EMAIL PROTECTED]>.
> 
> Their explanation is attached below.  If this explanation is
> unsatisfactory and you have not received a better one in a separate
> message then please contact Isaac Clerencia <[EMAIL PROTECTED]> by replying
> to this email.
> 
> Debian bug tracking system administrator
> (administrator, Debian Bugs database)
> 
> email message attachment
> >  Forwarded Message 
> > From: Isaac Clerencia <[EMAIL PROTECTED]>
> > To: [EMAIL PROTECTED]
> > Subject: Fixed in 1.1.13
> > Date: Sun, 17 Dec 2006 16:26:31 +0100
> > 
> > Version: 1.1.13-1
> > 
> > This was fixed in version 1.1.13



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



Bug#403967: sarge->etc: ended up with /usr/bin/vim binary from 1.5 years ago

2006-12-20 Thread James Vega
severity 401000 important
merge 401000 403967
thanks

On Thu, Dec 21, 2006 at 12:12:23AM +0100, Willi Mann wrote:
> Important because the behaviour is confusing and the way to resolve it is
> by no means on the hand. Maybe even RC as it could it hurt the reputation of
> debian as the "Upgrades-Always-Work" distribution.
> [snip dpkg -l]
> but:
> 
> $ dpkg -S /usr/bin/vim.org
> Umleitung durch vim-gtk von: /usr/bin/vim
> Umleitung durch vim-gtk zu: /usr/bin/vim.org
> $ ls -l /usr/bin/vim
> -rwxr-xr-x 1 root root 1411096 2005-07-30 12:45 /usr/bin/vim
> 
> after some guessing I removed vim-gtk, removed vim and installed vim.
> Then I got:
> 
> $ ls -l /usr/bin/vim
> lrwxrwxrwx 1 root root 21 2006-12-20 23:56 /usr/bin/vim -> 
> /etc/alternatives/vim
> 
> and vim works as before. I guess there's something wrong with the
> alternatives handling.
> 
> I have a typescript from my apt-get dist-upgrade run. I could look for
> relevant output of the vim upgrade if you like.

I've attempted to reproduce this (as noted in #401000) but haven't had
much luck.  I can take another look at this after the holidays.  Maybe
your log will point out something that I missed before.

James
-- 
GPG Key: 1024D/61326D40 2003-09-02 James Vega <[EMAIL PROTECTED]>


signature.asc
Description: Digital signature


Bug#403935: toolbar-fancy: contains files in /usr/X11R6/include/X11/

2006-12-20 Thread Gunnar Wolf
Sorry, forgot to attach patch. Grr.

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF
diff -ru orig/toolbar-fancy-0.07/debian/changelog 
toolbar-fancy-0.07/debian/changelog
--- orig/toolbar-fancy-0.07/debian/changelog2006-12-20 20:59:01.0 
-0600
+++ toolbar-fancy-0.07/debian/changelog 2006-12-20 20:46:13.860253216 -0600
@@ -1,3 +1,22 @@
+toolbar-fancy (0.07-7.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Moved the menu's .xpm from /usr/X11R6/include/X11/ into
+/usr/share/pixmap (Closes: #403935)
+  * Debhelper is now listed as build-depends instead of build-depends-
+indep; upgraded the minimum version to current series (5)
+  * Corrected debian/copyright, listing the new FSF address and removing
+the dh-make boilerplate string ("author(s)"), as instructed by
+Lintian
+  * Debhelper compat version is now set in debian/compat instead of
+debian/rules (which was erroneously set to 1 anyway), following
+Lintian advice
+  * Minor adjustments to debian/rules, as current Debhelper works
+somewhat different from what it was when this package was last built
+(i.e. build directory, conffiles)
+
+ -- Gunnar Wolf <[EMAIL PROTECTED]>  Wed, 20 Dec 2006 20:46:13 -0600
+
 toolbar-fancy (0.07-7) unstable; urgency=low
 
   * Revised the package description. closes:# 209737
Only in toolbar-fancy-0.07/debian: compat
diff -ru orig/toolbar-fancy-0.07/debian/conffiles 
toolbar-fancy-0.07/debian/conffiles
--- orig/toolbar-fancy-0.07/debian/conffiles2006-12-20 20:59:01.0 
-0600
+++ toolbar-fancy-0.07/debian/conffiles 2006-12-20 20:49:38.253180768 -0600
@@ -1 +1 @@
-/etc/xemacs21/site-start.d/50toolbar-fancy.el
+
diff -ru orig/toolbar-fancy-0.07/debian/control 
toolbar-fancy-0.07/debian/control
--- orig/toolbar-fancy-0.07/debian/control  2006-12-20 20:59:01.0 
-0600
+++ toolbar-fancy-0.07/debian/control   2006-12-20 20:24:34.175835280 -0600
@@ -2,7 +2,7 @@
 Section: editors
 Priority: optional
 Maintainer: Ryuichi Arafune <[EMAIL PROTECTED]>
-Build-Depends-Indep: debhelper (>= 3.0.0)
+Build-Depends: debhelper (>= 5.0.0)
 Standards-Version: 3.5.2
 
 Package: toolbar-fancy
diff -ru orig/toolbar-fancy-0.07/debian/copyright 
toolbar-fancy-0.07/debian/copyright
--- orig/toolbar-fancy-0.07/debian/copyright2006-12-20 20:59:01.0 
-0600
+++ toolbar-fancy-0.07/debian/copyright 2006-12-20 20:27:41.091419792 -0600
@@ -3,9 +3,10 @@
 
 It was downloaded from http://www.math.ethz.ch/~vroonhof/emacs/packages/
 
-Upstream Author(s): Jan Vroonhof  <[EMAIL PROTECTED]>
+Upstream Author: Jan Vroonhof  <[EMAIL PROTECTED]>
 
-Copyright: (written in toolbar-fancy.el)
+Copyright: (written in toolbar-fancy.el - Modified here to reflect the
+current FSF postal address)
 ;; This file is not part of XEmacs.
 
 ;; This software  is free software; you can redistribute it and/or modify it
@@ -19,9 +20,9 @@
 ;; General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with XEmacs ; see the file COPYING.  If not, write to the Free
-;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-;; 02111-1307, USA.
+;; along with XEmacs ; see the file COPYING.  If not, write to the
+;; Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+;; Boston, MA 02110-1301, USA. 
 
 
 In Debian system, You can find the GNU General Public License in 
diff -ru orig/toolbar-fancy-0.07/debian/dirs toolbar-fancy-0.07/debian/dirs
--- orig/toolbar-fancy-0.07/debian/dirs 2006-12-20 20:59:01.0 -0600
+++ toolbar-fancy-0.07/debian/dirs  2006-12-20 20:18:36.669184552 -0600
@@ -1,2 +1,2 @@
-usr/X11R6/include/X11/pixmaps/toolbar-fancy
+usr/share/pixmaps/toolbar-fancy
 usr/share/emacs/site-lisp/toolbar-fancy
diff -ru orig/toolbar-fancy-0.07/debian/emacsen-startup 
toolbar-fancy-0.07/debian/emacsen-startup
--- orig/toolbar-fancy-0.07/debian/emacsen-startup  2006-12-20 
20:59:01.0 -0600
+++ toolbar-fancy-0.07/debian/emacsen-startup   2006-12-20 20:18:21.179539336 
-0600
@@ -14,7 +14,7 @@
 (setq load-path (nconc load-path (list (concat "/usr/share/"
(symbol-name flavor)
"/site-lisp/toolbar-fancy"
-(setq data-directory-list (cons "/usr/X11R6/include/X11/pixmaps/" 
data-directory-list))
+(setq data-directory-list (cons "/usr/share/pixmaps/" data-directory-list))
 (package-provide 'toolbar-fancy :version 0.07001 :type 'regular)
 (autoload 'init-fancy-toolbar "toolbar-fancy" nil nil nil)
 (autoload 'set-fancy-toolbar "toolbar-fancy" nil nil nil)
diff -ru orig/toolbar-fancy-0.07/debian/rules toolbar-fancy-0.07/debian/rules
--- orig/toolbar-fancy-0.07/debian/rules2006-12-20 20:59:01.0 
-0600
+++ toolbar-fancy-0.07/debian/rules 2006-12-20 20:37:09.6

Bug#403986: akregator: Akregator crashes on POST

2006-12-20 Thread Antoni Villalonga
Package: akregator
Version: 4:3.5.5.dfsg.1-4
Severity: normal

Akregator crashes every time I send a comment in a blog :-(

I can reproduce it:
$ cat comment.html
http://localhost/comment2.html"; method="post">

$ cat comment2.html
ok

I link http://localhost/comment.html in a rss2 and open it in a
Akregator tab. When I submit the form the program crash (and close).

If I don't sumbit the form it don't crash and if I link
http://localhost/comment2.html directly in the rss2 don't crash too.

It crash in my blog too with a complete and valid html in 
http://_delete-me_friki.cat
(sorry for the spam). You can't submit a comment using akregator.

The apache log in a localhost test is:
127.0.0.1 - - [21/Dec/2006:04:39:43 +0100] "GET /comment.html HTTP/1.1"
200 100 "-" "Mozilla/5.0 (compatible; Konqueror/3.5; Linux 2.6.20-rc1;
X11; i686; ca, en_US) KHTML/3.5.5 (like Gecko) (Debian package
4:3.5.5a.dfsg.1-5)" "-"
127.0.0.1 - - [21/Dec/2006:04:39:44 +0100] "POST /comment2.html
HTTP/1.1" 405 309 "http://localhost/comment.html"; "Mozilla/5.0
(compatible; Konqueror/3.5; Linux 2.6.20-rc1; X11; i686; ca, en_US)
KHTML/3.5.5 (like Gecko) (Debian package 4:3.5.5a.dfsg.1-5)" "-"

It's all. Thanks!

-- 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.20-rc1
Locale: LANG=ca_ES.UTF-8, LC_CTYPE=ca_ES.UTF-8 (charmap=UTF-8)

Versions of packages akregator depends on:
ii  kdelibs4c2a4:3.5.5a.dfsg.1-5 core libraries and binaries for al
ii  libc6  2.5-0exp3 GNU C Library: Shared libraries
ii  libgcc11:4.2-20061003-1  GCC support library
ii  libkdepim1a4:3.5.5.dfsg.1-4  KDE PIM library
ii  libqt3-mt  3:3.3.7-1 Qt GUI Library (Threaded runtime v
ii  libstdc++6 4.2-20061003-1The GNU Standard C++ Library v3

akregator recommends no packages.

-- no debconf information


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



Bug#403814: gaim: please compile Network Manager (LIBNM) support

2006-12-20 Thread Otto Solares
On Tue, Dec 19, 2006 at 05:56:29PM -0500, Ari Pollak wrote:
> According to the upstream developers, NetworkManager support is
> currently not in a good state, so it will probably be a while before
> support is enabled.

Is working nicely in current unstable.

Do you know about any issues?

-otto

> On Tue, 2006-12-19 at 16:17 -0600, Otto Solares wrote:
> > Package: gaim
> > Version: 2.0.0+beta5-9
> > Severity: wishlist
> > 
> > (sorry for bad english)
> > 
> > Recently (2.0.0+beta4) GAIM gains connection/disconnection awareness via
> > Network Manager dbus, currently is not enabled, please compile against
> > libnm-glib so network-manager users benefit.
> > 
> > if LIBNM support is enabled in GAIM and users have network-manager (nm)
> > enabled, the suspend/resume case is handled as well, as nm will receive
> > power-manager notification, will shutdown network and GAIM will
> > disconnect gracefully (bug #249139).


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



Bug#403935: toolbar-fancy: contains files in /usr/X11R6/include/X11/

2006-12-20 Thread Gunnar Wolf
tags 403935 + patch
tags 403935 + pending
thanks

Hi,

I'm attaching the patch for this bug. In order to keep the package
reasonably sane (it's been too long since its last upload, and
debhelper's behavior has changed), I did some minor fixes in
debian/rules, debian/conffiles, debian/control as well. I'm uploading
the NMU to the 4-day delayed queue.

Greetings,

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF


signature.asc
Description: Digital signature


Bug#403985: apt-get update crashes in pkgAcqDiffIndex::ParseDiffIndex

2006-12-20 Thread jacob kuenzel

Package: apt
Version: 0.6.46.4
Severity: serious
Justification: breaks unrelated software

I just did a fresh install from the stable netinst iso and then
dist-upgraded to unstable. Now when I try to aptitude update or
apt-get update, I get a crash:

# apt-get update
Get: 1 http://cudlug.cudenver.edu unstable Release.gpg [378B]
Get: 2 http://security.debian.org testing/updates Release.gpg [189B]
Hit http://cudlug.cudenver.edu unstable Release
Hit http://security.debian.org testing/updates Release
Get: 3 http://www.debian-multimedia.org unstable Release.gpg [189B]
Ign http://security.debian.org testing/updates/main Packages/DiffIndex
99% [Waiting for headers] [Waiting for headers]Segmentation fault

Here's the stack trace:

#0  0xb7a41818 in ?? ()
#1  0x06b8 in ?? ()
#2  0xb7e8ea44 in std::basic_stringstream,
std::allocator >::~basic_stringstream () from
/usr/lib/libstdc++.so.6
#3  0xb7f5902a in pkgAcqDiffIndex::ParseDiffIndex ()
  from /usr/lib/libapt-pkg-libc6.3-6.so.3.11
#4  0xb7f59e32 in pkgAcqDiffIndex::Done ()
  from /usr/lib/libapt-pkg-libc6.3-6.so.3.11
#5  0xb7f41029 in pkgAcquire::Worker::RunMessages ()
  from /usr/lib/libapt-pkg-libc6.3-6.so.3.11
#6  0xb7f41fe0 in pkgAcquire::Worker::InFdReady ()
  from /usr/lib/libapt-pkg-libc6.3-6.so.3.11
#7  0xb7f39ac9 in pkgAcquire::RunFds ()
  from /usr/lib/libapt-pkg-libc6.3-6.so.3.11
#8  0xb7f3cd86 in pkgAcquire::Run () from
/usr/lib/libapt-pkg-libc6.3-6.so.3.11
#9  0x0805324e in ?? ()
#10 0xb7f174ab in CommandLine::DispatchArg ()
  from /usr/lib/libapt-pkg-libc6.3-6.so.3.11
#11 0x0804f59f in ?? ()
#12 0xb7cbaea8 in __libc_start_main () from /lib/tls/i686/cmov/libc.so.6
#13 0x0804c5a1 in ?? ()

I can provide any additional output that would be helpful, access to my
machine, etc. I might even dive into the source myself if I get a
chance...

-- Package-specific info:

-- apt-config dump --

APT "";
APT::Architecture "i386";
APT::Build-Essential "";
APT::Build-Essential:: "build-essential";
Dir "/";
Dir::State "var/lib/apt/";
Dir::State::lists "lists/";
Dir::State::cdroms "cdroms.list";
Dir::State::userstatus "status.user";
Dir::State::status "/var/lib/dpkg/status";
Dir::Cache "var/cache/apt/";
Dir::Cache::archives "archives/";
Dir::Cache::srcpkgcache "srcpkgcache.bin";
Dir::Cache::pkgcache "pkgcache.bin";
Dir::Etc "etc/apt/";
Dir::Etc::sourcelist "sources.list";
Dir::Etc::sourceparts "sources.list.d";
Dir::Etc::vendorlist "vendors.list";
Dir::Etc::vendorparts "vendors.list.d";
Dir::Etc::main "apt.conf";
Dir::Etc::parts "apt.conf.d";
Dir::Etc::preferences "preferences";
Dir::Bin "";
Dir::Bin::methods "/usr/lib/apt/methods";
Dir::Bin::dpkg "/usr/bin/dpkg";
DPkg "";
DPkg::Pre-Install-Pkgs "";
DPkg::Pre-Install-Pkgs:: "/usr/sbin/dpkg-preconfigure --apt || true";

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


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

# Main
# Berkeley, WHY YOU CRASH???
#deb http://linux.csua.berkeley.edu/debian/ unstable main non-free contrib
#deb-src http://linux.csua.berkeley.edu/debian/ unstable main non-free
contrib

deb http://cudlug.cudenver.edu/debian/ unstable main non-free contrib
deb-src http://cudlug.cudenver.edu/debian/ unstable main non-free contrib

# Security
deb http://security.debian.org/ testing/updates main contrib

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

# MythTV
#deb http://dijkstra.csh.rit.edu/~mdz/debian/ unstable mythtv
#deb-src http://dijkstra.csh.rit.edu/~mdz/debian/ unstable mythtv

-- System Information:
Debian Release: 4.0
 APT prefers unstable
 APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages apt depends on:
ii  debian-archive-keyring   2006.11.22  GnuPG archive keys of the
Debian a
ii  libc62.3.6.ds1-9 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-21  GCC support library
ii  libstdc++6   4.1.1-21The GNU Standard C++ Library v3

apt recommends no packages.

-- no debconf information


Bug#399661: Simplistic workaround

2006-12-20 Thread Matthias Julius
An even simpler workaround is this:

# wget 
http://snapshot.debian.net/archive/2006/10/13/debian/pool/main/s/subversion/subversion-tools_1.4.0-5_all.deb
# dpkg -i subversion-tools_1.4.0-5_all.deb

Matthias



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



Bug#403983: wireless-tools: Needs to up interface before setting options

2006-12-20 Thread Matthew Garrett
Package: wireless-tools
Severity: normal

As described in http://lkml.org/lkml/2006/12/20/371 , various wireless
drivers require that the interface be brought up before wireless options
are set. As far as I can tell, the pre-up script doesn't currently do
this.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.33
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_GB.UTF-8)

Versions of packages wireless-tools depends on:
ii  libc6 2.3.2.ds1-22sarge4 GNU C Library: Shared libraries an


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



Bug#403308: Please upgrade gzip to 1.3.9

2006-12-20 Thread Bdale Garbee
On Fri, 2006-12-15 at 23:03 -0800, Paul Eggert wrote:
> Package: gzip
> Version: 1.3.5-15
> 
> gzip 1.3.9 has been released here:
> 
> 
> 
> Can you please propagate it into Debian?  Thanks.

Just uploaded 1.3.9-1 to Debian unstable, with the regression fix for
null input.  Thanks Paul!

Bdale



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



Bug#403984: No default application when opening any file

2006-12-20 Thread Christian Surchi
Package: nautilus
Version: 2.14.3-6
Severity: important

Suddenly I can't open any file, from desktop or in a nautilus window.
I receive the warning message that it's impossible to open the file.
I see the type is correctly recognised (for example jpg image or zip
archive), but no default application defined. 

In previous gnome session I could open a zip file, but no way to listen a
song in the archive without "suggesting" an application to open the file.

In this session no way to open any file. 

Thanks,
Christian


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages nautilus depends on:
ii  desktop-file-utils 0.11-1Utilities for .desktop files
ii  gnome-control-center   1:2.14.2-6utilities to configure the GNOME d
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.12.3-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.14.0-3  Bonobo CORBA interfaces library
ii  libc6  2.3.6.ds1-9   GNU C Library: Shared libraries
ii  libeel2-2  2.14.3-2  Eazel Extensions Library (for GNOM
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libexif12  0.6.13-5  library to parse EXIF files
ii  libgail-common 1.8.11-4  GNOME Accessibility Implementation
ii  libgail17  1.8.11-4  GNOME Accessibility Implementation
ii  libgconf2-42.16.0-3  GNOME configuration database syste
ii  libglade2-01:2.6.0-3 library to load .glade files at ru
ii  libglib2.0-0   2.12.5-3  The GLib library of C routines
ii  libgnome-desktop-2 2.14.3-1  Utility library for loading .deskt
ii  libgnome2-02.16.0-2  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented display
ii  libgnomeui-0   2.14.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.14.2-4  GNOME virtual file-system (runtime
ii  libgtk2.0-02.8.20-3  The GTK+ graphical user interface 
ii  libnautilus-extension1 2.14.3-6  libraries for nautilus components 
ii  liborbit2  1:2.14.4-1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.14.8-3  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  librsvg2-2 2.14.4-2  SAX-based renderer library for SVG
ii  libstartup-notification0   0.8-2 library for program launch feedbac
ii  libx11-6   2:1.0.3-4 X11 client-side library
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  nautilus-data  2.14.3-6  data files for nautilus
ii  shared-mime-info   0.19-1FreeDesktop.org shared MIME databa

Versions of packages nautilus recommends:
ii  desktop-base  4.0.0  common files for the Debian Deskto
ii  eject 2.1.4-2.1  ejects CDs and operates CD-Changer
pn  fam(no description available)
ii  libgnomevfs2-extra2.14.2-4   GNOME virtual file-system (extra m
ii  librsvg2-common   2.14.4-2   SAX-based renderer library for SVG
ii  nautilus-cd-burner2.14.3-5   CD Burning front-end for Nautilus

-- no debconf information


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



Bug#403135: yelp: start up is way too slow

2006-12-20 Thread Michael Gilbert

i would say that time till window is up is approximately equal to
epiphany.  however, actually being usable is slightly longer to parse
and display the help pages for the program.

yelp launched via nautilus in particular is rather slow.

mike


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



Bug#403932: xgammon: install a file in /usr/X11R6/include/X11/

2006-12-20 Thread Gunnar Wolf
tags 403932 + pending
tags 403932 + patch
thanks

Hi,

I have uploaded a NMU for this bug to the 4-day delayed queue. I'm
attaching the patch here.

Greetings,

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF
diff -ru xgammon-0.99.1128.orig/debian/changelog 
xgammon-0.99.1128.new/debian/changelog
--- xgammon-0.99.1128.orig/debian/changelog 2006-12-20 20:01:50.0 
-0600
+++ xgammon-0.99.1128.new/debian/changelog  2006-12-20 20:05:49.582799408 
-0600
@@ -1,3 +1,11 @@
+xgammon (0.99.1128-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Moved the menu's .xpm from /usr/X11R6/include/X11/ into
+/usr/share/pixmap (Closes: #403932)
+
+ -- Gunnar Wolf <[EMAIL PROTECTED]>  Wed, 20 Dec 2006 20:05:49 -0600
+
 xgammon (0.99.1128-2) unstable; urgency=low
 
   * debian/control: xlibs-dev transition (closes: #346818).
diff -ru xgammon-0.99.1128.orig/debian/install 
xgammon-0.99.1128.new/debian/install
--- xgammon-0.99.1128.orig/debian/install   2006-12-20 20:01:50.0 
-0600
+++ xgammon-0.99.1128.new/debian/install2006-12-20 19:58:18.663349584 
-0600
@@ -1,3 +1,3 @@
 src/xgammonusr/games
 lib/xgammon.db usr/lib/xgammon
-debian/mini-xgammon.xpmusr/X11R6/include/X11/pixmaps
+debian/mini-xgammon.xpmusr/share/pixmaps
diff -ru xgammon-0.99.1128.orig/debian/menu xgammon-0.99.1128.new/debian/menu
--- xgammon-0.99.1128.orig/debian/menu  2006-12-20 20:01:50.0 -0600
+++ xgammon-0.99.1128.new/debian/menu   2006-12-20 20:01:23.235290384 -0600
@@ -1,6 +1,6 @@
 ?package(xgammon):needs="x11" \
 section="Games/Board" \
-icon="/usr/X11R6/include/X11/pixmaps/mini-xgammon.xpm" \
+icon="/usr/share/pixmaps/mini-xgammon.xpm" \
 title="XGammon" \
hints="Backgammon" \
 command="/usr/games/xgammon"


signature.asc
Description: Digital signature


Bug#403982: ITP: socnetv -- Import, export and displays network file formats

2006-12-20 Thread Alejandro Garrido Mota
Package: wnpp
Severity: wishlist

* Package name: socnetv
  Version : 0.43
  Upstream Author : Dimitris B. Kalamaras <[EMAIL PROTECTED]>
* URL : http://socnetv.sourceforge.net
* License : GPL

Description: Import, export and displays network file formats
The user can visually modify an existing network or draw a new one
using the mouse. Network and actor properties, such as distances,
centralities, diameter, etc., can easily be computed.
.
HomePage: http://socnetv.sourceforge.net/

-- 
Atentamente:
Alejandro Garrido Mota
http://www.mogaal.com
GNU/Linux Debian SID
En kernel 2.6.17-8
Caracas-Venezuela
Usuario Linux registrado #386758
Correos: [EMAIL PROTECTED] , [EMAIL PROTECTED]
GPG Key Fingerprint = F6A7 EF7E 4688 70C6 6B37  A8EF F6B0 9645 B24B F200


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



Bug#396593: ship with this bug in etch?

2006-12-20 Thread Micah Anderson


Sam Vilain wrote:
> It would be nice if this build method could be accepted, as it has
> some benefits over softupdate, particularly in terms of consistency of
> vserver builds versus network installs.

Its likely that it would be accepted by util-vserver upstream, if it is
submitted to them. They are looking for updates to this from people
knowledgeable about FAI.

Micah


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



Bug#401396: 20061202 - daily build for sparc32 floppy install

2006-12-20 Thread Dan Oglesby
Frans Pop <[EMAIL PROTECTED]> wrote: On Wednesday 20 December 2006 05:18, Dan 
Oglesby wrote:
> Just completed a flawless install of Debian off of the 2006-12-19
> floppy images on the SS20 system.  All hardware detected automatically,
> no errors during the install, and the system rebooted to a login
> prompt.

Great! Thanks for following up.

As this report has now become a bit long and difficult to follow, I'm 
closing it.

Could you file one new installation report for the issue that you need to 
press enter 4 times to get the root floppy loaded so we can keep track of 
that? I think that is now the only issue remaining.

Cheers,
FJP


The install completes on the SS5-70, but will not successfully boot after 
install.  It doesn't appear to load the esp module from the initfs, and cannot 
locate the root filesystem.

So, the install process is fine on the SS20, but still does not install 
properly on an SS5 system.

There were no errors that I saw during the installation process.  Onboard 
ethernet and SCSI were detected automatically during the install.

--Dan

 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Bug#403852: Upgrading

2006-12-20 Thread Stuart Anderson


Severity: serious

This was meant to have been filed as serious since it impacts support
for developing LSB applications.


Stuart

Stuart R. Anderson   [EMAIL PROTECTED]
Network & Software Engineering   http://www.netsweng.com/
1024D/37A79149:  0791 D3B8 9A4C 2CDC A31F
 BD03 0A62 E534 37A7 9149


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



Bug#403981: libconfig0: scan_integer() does not accept hexadecimal numbers containing hex digits A through F

2006-12-20 Thread Michael Deegan
Package: libconfig0
Version: 0.1.5
Severity: normal

While the example TEST.conf suggests that specifying integers in
hexadecimal works, it instead returns an 'Unexpected character' error if it
comes across a hex digit greater than 9. This causes libconfig to reject
many otherwise valid hexadecimal strings that strtol() happily accepts.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable'), (495, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.34
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)

-MD (who incidentally would prefer libconfig use strtoul() for hex constants)

-- 
__ 
Michael Deegan, Unix Server Administrator, Murdoch University. Ph +61893606967


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



Bug#402482: RC?

2006-12-20 Thread Steve Langasek

On Wed, Dec 20, 2006 at 02:41:29PM +0100, Frans Pop wrote:
> On Wednesday 20 December 2006 08:35, Andreas Barth wrote:
> > I have yet to see the dataloss. Anyways, bugs being important doesn't
> > mean they are not allowed to be fixed (and I would let such an fix
> > still to Etch currently), but I don't think we should wait on the fix.
> > So I'm downgrading to important.

> The dataloss is there, though not in the conventional sense: the file 
> itself is correct, but using busybox zcat or gunzip only part of it is 
> extracted so from a user PoV data is "lost".

No, that's not the standard for data loss, and this does not qualify as a
grave bug on those grounds.  No data is *lost* just because busybox gunzip
can't get to it.

Nor is the package "unusable or mostly so"; clearly the package is usable,
it's been stated in the bug log that this bug no longer impacts d-i, which
is using it.

You could argue that the package is "unfit for release" (=> sev: serious),
but then I don't see how that's consistent with asking for an etch-ignore
tag.  If it's ignorable for etch, I don't see why it wouldn't also be
ignorable for lenny if it didn't get fixed in time.

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


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



Bug#316872: RFS: libssh -- SSH and SCP library. No such thing as an RFS bug

2006-12-20 Thread Luis Rodrigo Gallardo Cruz
# There's no such thing as an RFS bug
retitle 316872 ITP: libssh -- SSH and SCP library
# And it is pending, since there's a package ready just waiting to be
# sponsored.
tag 316872 pending
thanks

-- 
Rodrigo Gallardo
GPG-Fingerprint: 7C81 E60C 442E 8FBC D975  2F49 0199 8318 ADC9 BC28


signature.asc
Description: Digital signature


Bug#401416: pending upload of digikam-0.8.2

2006-12-20 Thread Mark Purcell
Given the discussion has died down.

I am proposing to release digikam[imageplugins] 0.8.2 to unstable in the
next couple of days to overcome the lack of an libexiv2 transition.

The current release is in svn.debian.org, for those who would like to have
a look before it goes formal.

Mark


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



Bug#403776: closed by Sune Vuorela <[EMAIL PROTECTED]> (Re: Bug#403776: kdm uses only theme)

2006-12-20 Thread Sune Vuorela
On Thursday 21 December 2006 01:44, erlk ozlr wrote:
> This means the configuration files must be placed in /var/run/kdm (I
> tried and it worked as I wanted), I think this is a very bad thing
> according to
> Maybe there is a very good reason I ignore but else this seems grave !

Hi!

Please read the entire file as you quoted a bit from. It does the following:
Read the configuration files in 
1)
/etc/kde3/kdm/
2)
builds a file in /var/run/something based of what it has read 
in /etc/kde3/kdm/
3)
read the overrides in /etc/default/kdm.d and does some magic with the 
autogenerated files in /var/run/something

There is no permanent configuration files stored in /var/run, as they are 
regenerated on every kdm restart based on the mentioned 3 steps.

/Sune


-- 
Man, do you know how might I log on the RW SCSI front-end?

You either cannot boot the serial application over a connection, or should 
enable the Fast port, in such way from Windows XP and from the folder inside 
Mac you have to cancel the terminale of the LCD provider and from Word NT you 
must telnet to a graphic CD monitor over the BIOS forward to a utility for 
loading a gadget on a SIMM to a port 7.


pgpcWXw7suuxR.pgp
Description: PGP signature


Bug#403097: how does autoconf fix kmix

2006-12-20 Thread Sune Vuorela
reopen 403097
found 403097  4:3.3.2-1
stop

On Thursday 21 December 2006 02:15, [EMAIL PROTECTED] wrote:
> Sorry, I don'r understand your message.  Can you explain?
> (I'm just checking that 403097 is the number of the bug you *wanted*
> to close.  Sometimes people make typo in bug number!)
> regards,
> J

Being in the kde end of this bug report, my best guess is that it was a wrong 
close

-- 
How may I receive a wordprocessor?

First you have to log in the mailer of the 6-bit AT space bar for turning off 
a window.


pgpMH4wIArOXY.pgp
Description: PGP signature


Bug#403696: gtkdialog: Fails to load

2006-12-20 Thread David Broome
I caught that afterwards - sorry - I assumed it ran like kommander.

This wasn't a bug, I should have read the man pages.

On Tuesday 19 December 2006 8:54 am, Fabio Tranchitella wrote:
> severity 403696 normal
> retitle 403696 gtkdialog: Fails to load if MAIN_DIALOG is not defined
> thanks
>
> * 2006-12-19 03:26, David Broome wrote:
> > Package: gtkdialog
> > Version: 2:0.7.9-1
> > Severity: grave
> > Justification: renders package unusable
> >
> > When I try to run it I get:
> >
> > ** ERROR **: GtkDialog: Could not find the dialog description in the
> > environment variable 'MAIN_DIALOG'.
> > aborting...
> > Aborted
>
> This is not a bug, but the intended behaviour of the program. In order to
> use gtkdialog, you must define an environment variable MAIN_DIALOG with a
> glade XML definition for the first dialog window.
>
> Also, be sure to have a look at the examples in /usr/share/doc/gtkdialog.
>
> I'm downgrading the severity of this bug, and I leave it open in case you
> have suggestion on how to document in an effective way the behaviour of
> gtkdialog.
>
> Thanks,


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



Bug#403979: ITP: gpe-gallery -- GPE image gallery and viewer, with slideshow support

2006-12-20 Thread Neil Williams
Package: wnpp
Severity: wishlist
Owner: Neil Williams <[EMAIL PROTECTED]>

* Package name: gpe-gallery
  Version : 0.97
  Upstream Author : Damien Tanner <[EMAIL PROTECTED]>
* URL : http://gpe.linuxtogo.org/projects/gpe-gallery.shtml
* License : GPL
  Programming Lang: C
  Description : GPE image gallery and viewer, with slideshow support
 A small application for viewing images in GPE. Intended to show 
 small and medium sized images and is able to display a slide 
 show and to perform several simple operations with the images.



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


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



Bug#403980: gcc-snapshot_20061217-1(sparc/experimental): FTBFS due to missing stubs-64.h

2006-12-20 Thread Frank Lichtenheld
Package: glibc
Version: 2.5-0exp3
Severity: serious

Hi,

stubs-64.h seems to be missing on sparc. This caused the following FTBFS
in experimental.

| Automatic build of gcc-snapshot_20061217-1 on odin by sbuild/sparc 79
| Build started at 20061221-0002
| **
| Checking available source versions...
| Fetching source files...
| Reading Package Lists...
| Building Dependency Tree...
| Need to get 40.4MB of source archives.
| Get:1 http://ftp.de.debian.org experimental/main gcc-snapshot 20061217-1 
(dsc) [4000B]
| Get:2 http://ftp.de.debian.org experimental/main gcc-snapshot 20061217-1 
(tar) [40.1MB]
| Get:3 http://ftp.de.debian.org experimental/main gcc-snapshot 20061217-1 
(diff) [307kB]
| Fetched 40.4MB in 28s (1397kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: dpkg-dev (>= 1.13.9), libc6.1-dev (>= 2.5) [alpha ia64] | 
libc0.3-dev (>= 2.5) [hurd-i386] | libc0.1-dev (>= 2.5) [kfreebsd-i386 
knetbsd-gnu] | libc12-dev (>= 2.5) [netbsd-elf-gnu] | libc6-dev (>= 2.5), 
libc6-dev (>= 2.4) [alpha], libc6-dev (>= 2.5) [amd64 i386 powerpc ppc64 sparc 
s390], libc6-dev-amd64 [i386], libc6-dev-sparc64 [sparc], libc6-dev-s390x 
[s390], libc6-dev-i386 [amd64], libc6-dev-powerpc [ppc64], libc6-dev-ppc64 
[powerpc], lib32gcc1 [amd64 ppc64], lib64gcc1 [i386 powerpc sparc s390], 
lib64z1-dev [i386 powerpc sparc s390], lib32z1-dev [amd64 ppc64], 
libunwind7-dev (>= 0.98.5-6) [ia64], libatomic-ops-dev [ia64], m4, autoconf, 
autoconf2.13, automake1.9, libtool, autogen, gawk, dejagnu (>= 1.4.3) 
[!hurd-i386], expect-tcl8.3 [!hurd-i386], bzip2, binutils (>= 2.17.50) | 
binutils-multiarch (>= 2.17.50), binutils-hppa64 (>= 2.17.50) [hppa], debhelper 
(>= 5.0), gperf (>= 3.0.1), bison (>= 1:2.3), flex, gettext, texinfo (>= 4.3), 
zlib1g-dev, libmpfr-dev [!avr], locales [!hurd-i386 !knetbsd-i386 
!netbsd-i386], procps [!hurd-i386], sharutils, fastjar, libasound2-dev 
[!knetbsd-i386 !netbsd-i386 !kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], 
lib32asound2-dev [amd64 ppc64], lib64asound2-dev [i386 powerpc sparc s390], 
libxtst-dev [!knetbsd-i386 !netbsd-i386 !kfreebsd-i386 !kfreebsd-amd64 
!hurd-i386], libxt-dev [!knetbsd-i386 !netbsd-i386 !kfreebsd-i386 
!kfreebsd-amd64 !hurd-i386], libgtk2.0-dev (>= 2.4.4-2) [!knetbsd-i386 
!netbsd-i386 !kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libart-2.0-dev 
[!knetbsd-i386 !netbsd-i386 !kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], 
libcairo2-dev [!knetbsd-i386 !netbsd-i386 !kfreebsd-i386 !kfreebsd-amd64 
!hurd-i386], libqt4-dev (>= 4.1.0) [!knetbsd-i386 !netbsd-i386 !kfreebsd-i386 
!kfreebsd-amd64 !hurd-i386], libgconf2-dev [!knetbsd-i386 !netbsd-i386 
!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libxul-dev [!knetbsd-i386 
!netbsd-i386 !kfreebsd-i386 !kfreebsd-amd64 !hurd-i386 !kfreebsd-i386 
!kfreebsd-amd64], gnat-4.1 [!alpha !arm !armeb !m32r !m68k !sh3 !sh3eb !sh4 
!sh4eb !knetbsd-i386 !netbsd-i386 !hurd-i386], realpath (>= 1.9.12), chrpath, 
lsb-release, make (>= 3.81)
| Build-Depends-Indep: doxygen (>= 1.4.2), graphviz (>= 2.2), gsfonts-x11, gjdoc
| Build-Conflicts: qt3-dev-tools
|  Warning:
|  The following central src deps are (probably) missing:
|   xlibs-dev (>> 4.1.0)
| Checking for already installed source dependencies...
| dpkg-dev: already installed (1.13.24 >= 1.13.9 is satisfied)
| libc6-dev: already installed (2.5-0exp3 >= 2.5 is satisfied)
| libc6-dev: already installed (2.5-0exp3 >= 2.5 is satisfied)
| libc6-dev-sparc64: already installed (2.5-0exp3)
| lib64gcc1: already installed (1:4.1.1-21)
| lib64z1-dev: missing
| m4: missing
| autoconf: missing
| autoconf2.13: missing
| automake1.9: missing
| libtool: missing
| autogen: missing
| gawk: missing
| dejagnu: missing
| Using default version 1.4.4.cvs20060709-3
| expect-tcl8.3: missing
| bzip2: missing
| binutils: already installed (2.17.20061210cvs-1 >= 2.17.50 is satisfied)
| debhelper: missing
| Using default version 5.0.42
| gperf: missing
| Using default version 3.0.2-1
| bison: missing
| Using default version 1:2.3.dfsg-4
| flex: missing
| gettext: missing
| texinfo: missing
| Using default version 4.8.dfsg.1-4
| zlib1g-dev: missing
| libmpfr-dev: missing
| locales: already installed (2.5-0exp3)
| procps: missing
| sharutils: missing
| fastjar: missing
| libasound2-dev: missing
| lib64asound2-dev: missing
| libxtst-dev: missing
| libxt-dev: missing
| libgtk2.0-dev: missing
| Using default version 2.8.20-3
| libart-2.0-dev: missing
| libcairo2-dev: missing
| libqt4-dev: missing
| Using default version 4.2.1-2
| libgconf2-dev: missing
| libxul-dev: missing
| gnat-4.1: missing
| realpath: missing
| Using default version 1.10
| chrpath: missing
| lsb-release: missing
| make: already installed (3.81-3 >= 3.81 is satisfied)
| qt3-dev-tools: already deinstalled
| Checking for source dependency conflicts...
[...]
| make[7]: Entering directory `/build/buildd/gcc-snapshot-20061217/bui

Bug#403097: how does autoconf fix kmix

2006-12-20 Thread jeremy
Sorry, I don'r understand your message.  Can you explain?
(I'm just checking that 403097 is the number of the bug you *wanted*
to close.  Sometimes people make typo in bug number!)
regards,
J



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



Bug#403894: swaks: please consider --sendmail option

2006-12-20 Thread Gunnar Wolf
tags 403894 + wontfix
thanks

Hi,

I don't think this would fit in the program's goals - Remember that
Swaks is short for "Swiss Army Knife SMTP", and it's (from its package
description) "a command-line tool written in Perl for testing SMTP
setups" - It's not a tool for generically testing anything related to
a MTA, but it's targetted at the protocol.

If you must test how a local MTA is working, use the --pipe option -
From Swaks' man page: 

   swaks --pipe "exim -bh 127.0.0.2"

This opens a SMTP conversation with the locally installed exim (you
could there use any other MTA binary, /usr/lib/sendmail or whatever). 

Adding any other MTA interaction capability to Swaks would just mean
bloating it, IMHO. So, I'm tagging this bug as wontfix.

Of course, feel free to refute my point of view :)

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF


signature.asc
Description: Digital signature


Bug#403776: closed by Sune Vuorela <[EMAIL PROTECTED]> (Re: Bug#403776: kdm uses only theme)

2006-12-20 Thread erlk ozlr

Hi,
I found this in /etc/init.d/kdm :
KDMRC=/etc/kde3/kdm/kdmrc
BACKGROUNDRC=/etc/kde3/kdm/backgroundrc
KDMOVERRIDEDIR=/etc/default/kdm.d
KDMCFGDIR=/var/run/kdm
KDMCFG=$KDMCFGDIR/kdmrc
BACKGROUNDCFG=$KDMCFGDIR/backgroundrc

This means the configuration files must be placed in /var/run/kdm (I
tried and it worked as I wanted), I think this is a very bad thing
according to 
http://www.pathname.com/fhs/pub/fhs-2.3.html#VARRUNRUNTIMEVARIABLEDATA
(which is supposed to be a kind of standard)
Maybe there is a very good reason I ignore but else this seems grave !


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



Bug#403208: configuration file for defaults

2006-12-20 Thread Gunnar Wolf
tags 403208 + upstream
thanks

Hi,

I'm forwarding your request with this mail (and therefor quoting it in
full ;-) ) to Swaks' upstream author. John: Please give us your point
of view on Martin's request - it does not seem _too_ hard, and it can
be very useful to avoid hand-specifying over and over the most common
settings for your specific setup.

> From: martin f krafft <[EMAIL PROTECTED]>
> To: Debian Bug Tracking System <[EMAIL PROTECTED]>
> Subject: configuration file for defaults
> Date: Fri, 15 Dec 2006 12:32:46 +0100
> 
> It would be great if I could use a configuration file to specify
> defaults for stuff like the EHLO hostname to be used by swaks.
> Thanks for your consideration and this great piece of software!

Greetings,

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF


signature.asc
Description: Digital signature


Bug#403978: playground-plugin-xmms doesn't work

2006-12-20 Thread Santiago Ruano Rincón
Package: playground-plugin-xmms
Version: 0.3-1
Severity: grave

It just doesn't work. Maybe, it could get incompatible with xmms since
a xmms package version.

Regards,

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

Versions of packages playground-plugin-xmms depends on:
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  playground   0.3-1   simple GNOME applet that lets you 
ii  xmms 1:.2.10+20061201-1 Versatile X audio player

playground-plugin-xmms recommends no packages.

-- no debconf information


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



Bug#401645: [pkg-wpa-devel] Bug#401645: wpasupplicant is stopped too early at reboot/shutdown

2006-12-20 Thread Przemyslaw Bruski

Hi,

here's the updated version of sendsigs script: better English, sed is 
not required anymore,

useless assignment is removed.

bye,

Przemek
#! /bin/sh
### BEGIN INIT INFO
# Provides:  sendsigs
# Required-Start:
# Required-Stop: umountnfs
# Default-Start:
# Default-Stop:  0 6
# Short-Description: Kill all remaining processes except for crucial ones.
# Description: 
### END INIT INFO

PATH=/usr/sbin:/usr/bin:/sbin:/bin

. /lib/lsb/init-functions

#lists all ancestor pids, until pid number 0 is reached
getAncestorPids() {
local pid=$1
local ppids=

while true; do
ppid=$(ps --no-headers --format ppid $pid)
if [ $ppid -eq 0 ]; then
break;
fi
ppids=$ppid" "$ppids
pid=$ppid
done
echo $ppids
}


# Replacement for killall5 command. Just like killall5 does, it sends
# a signal to all processes except for: ancestor processes, itself
# and kernel threads.
# Addtionally, it skips all processes that had been run using command
# name passed as a parameter.
#
# arguments:
# signalnumber
# list of command names that should not be killed
killall5_except() {
local signalNumber="$1"
shift 
local myPid=$$
local preciousPids=$(ps --no-headers --format pid -C "$*")
#initial precious pids are: my pid and pids of processes given as 
parameters
preciousPids=$myPid" "$preciousPids
local ancestorPids=

for preciousPid in $preciousPids; do
ancestorPids=$ancestorPids" "$(getAncestorPids $preciousPid)
done

#kernel threads should not be killed, either. Kernel threads have 
userspace size of 0.
local kernelThreadPids=$(ps --format pid,size --no-headers -A |
while read pid size; do 
[ $size -eq 0 ] && echo $pid
done
)

allPreciousPids="$preciousPids $ancestorPids $kernelThreadPids"

allPidsToTerminate=$(ps --deselect --no-headers --format pid --pid 
$allPreciousPids)

#a trick to eliminate ps pid from the list
allPidsToTerminate=$(ps --no-headers --format pid --pid 
$allPidsToTerminate)

if [ ! -z "$allPidsToTerminate" ]; then
kill $signalNumber $allPidsToTerminate
fi
}

do_stop () {
# Kill all processes.
log_action_begin_msg "Asking all remaining processes to terminate"
killall5_except -15 wpa_supplicant usplash
log_action_end_msg 0
sleep 5
log_action_begin_msg "Killing all remaining processes"
killall5_except -9 wpa_supplicant usplash
log_action_end_msg 0
}

case "$1" in
  start)
# No-op
;;
  restart|reload|force-reload)
echo "Error: argument '$1' not supported" >&2
exit 3
;;
  stop)
do_stop
;;
  *)
echo "Usage: $0 start|stop" >&2
exit 3
;;
esac

:


Bug#388194: ITA: playground -- simple GNOME applet that lets you control basic functions of audio players

2006-12-20 Thread Santiago Ruano Rincón
package wnpp
retitle 388194 O: playground -- simple GNOME applet that lets you
control basic functions of audio players
retitle 388196 O: playground-xmms -- XMMS control plugin for playground
GNOME
thanks


El jue, 14-12-2006 a las 22:18 +0100, Matej Vela escribió:
> Hi,
> 
> Do you still intend to adopt playground?  (This is just a ping, I'm
> not interested in adopting it myself.)
> 
> Thanks,
> 
> Matej

I've tried playground with xmms, but it just doesn't work.

I won't be able to work on these packages in the following days, so, I'm
orphaning them.

regards,

Santiago


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#403974: loop-aes-source: build error on kernel 2.6.20-rc1

2006-12-20 Thread Wolfgang Aigner
Package: loop-aes-source
Version: 3.1d-12
Severity: serious
Justification: no longer builds from source

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hello Max,
it would be great if you could update to Jari's latest release (3.1e).

3.1d don't build on kernel 2.6.20.
With 3.1e everything works fine.

thanks for your great work

Wolfgang



- -- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.20-rc1
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages loop-aes-source depends on:
ii  build-essential   11.3   informational list of build-essent
ii  bzip2 1.0.3-6high-quality block-sorting file co
ii  debhelper 5.0.42 helper programs for debian/rules
ii  module-assistant  0.10.8 tool to make module package creati

Versions of packages loop-aes-source recommends:
ii  loop-aes-testsuite3.1d-12test suite for loop-AES encryption

- -- no debconf information

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

iQEVAwUBRYnSjB/d62jpf6fsAQIXdAf/bu0p4p6vDO085L7b5ZKcqEHbr0eS0Plc
ohJmi3jc5rcyexR8RtkmPh4g48LUO/Q65Eab/wyI7jKdJZn8+EyezHbYpKgdi8bs
rRd2aiDc011o88I/YSdX9ERTOslBn+AvWMu9WAA7xhMzKdPVBCvJJjp8NdhE6SxW
DBH2Pb63QYlampZccU+/4+hnAaPLoxdUIfFhVEXs4rQUpvg3JHTnJ7IXK3nnmrCg
eggcTYRQzROjhxkkjNbNDW2WWY1er0qNfuS3QUT8CeGpKFaXyVPI0pU/Dhe7qrBm
D2rW+lvbd1L8CaYQcM3FoLmCe5LgYCM29gdcqVSygizT6F3NZVxsLA==
=V3Ty
-END PGP SIGNATURE-


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



Bug#403968: p7zip: [manual] Non-existing programms 7z(1) and 7za(1) referenced in SEE ALSO

2006-12-20 Thread Mohammed Adnène Trojette
On Thu, Dec 21, 2006, Jari Aalto wrote:
> Manual Page reads:
> 
>   SEE ALSO
>7z(1),7za(1)
> 
> None of the programs exist. Please update to refer to these:

They are in p7zip-full. Why do you think references should be added to
gzip(1) or others?

-- 
Mohammed Adnène Trojette



Bug#403975: Upgrade report

2006-12-20 Thread Robert de Bath

Package: x11-common
Version: 1:7.1.0-8

Upgrade report from sarge.

Packages removed for x11-common to be able to install:
  ucbmpeg-play qvwm opera-static

The existing xorg.conf was very complex; it caused the Xserver to 
segfault. I have attached it but am not currently using it; I will 
probably be re-adding may of the changes if I find a specific problem I 
will add it here.


I regenerated a new xorg.conf accepting the defaults (except for the 
display name and acceptable video modes).


The machine this is on is a Toshiba Portage R100.

Value in  XkbLayout of generated xorg.conf file was "uk" the correct value 
is "gb". With "uk" the keyboard was in "us" layout and the Ctrl-Alt Fkeys 
did not work.


The default layout also used the "synaptics" driver for the 'touch-pad' 
mouse, I understand the device is an 'ALPS Glidepad'. This is sufficiently 
different from a synaptics for the default setup of the synaptics driver 
to be unusable and the documentation is not sufficient to correct this 
without a LOT of guesswork.  I have disabled the synaptics driver and am

using the default ps/2 setup.

The known bugs in the xv extension and the DPMS are still present.

01:00.0 VGA compatible controller: Trident Microsystems CyberBlade XP4m32 
(rev 91)


--
Rob.  (Robert de Bath )
 # XF86Config-4 (XFree86 X server configuration file) generated by dexconf, the
# Debian X Configuration tool, using values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 > /var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "ServerFlags"
# Option"HandleSpecialKeys" "Always"
# Option"XkbDisable"
Option  "VTSysReq"  "on"
# Option"VTSysreqToggle"
# Option"DontVTSwitch"
EndSection

Section "Files"
FontPath"unix/:7100"# local font server
FontPath"unix/:7110"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/lib/X11/fonts/CID"
FontPath"/usr/lib/X11/fonts/Speedo"
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"dri"
Load"freetype"
Load"glx"
Load"int10"
Load"record"
Load"type1"
# Load  "xtrap"
Load"vbe"
# Load  "GLcore" # Not xorg
# Load  "speedo" # Not xorg

Load"extmod"

# This disables XVideo
# SubSection "extmod"
#   Option  "omit XVideo"
#   Option  "omit XVideo-MotionCompensation"
# EndSubSection
EndSection

###

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "gb"
#Option "XkbOptions""compose:ralt"
Option  "XkbOptions""compose:caps"
#Option "XkbOptions""caps:shift"
#Option "XkbOptions""srvrkeys:none" # No Ctrl-Alt-F1

#Option "XkbRules"  "xorg"
#Option "XkbModel"  "pc104"
#Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier  "PS Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/psaux"
Option  "Buttons"   "2"
Option  "Protocol"  "auto"
Option  "Emulate3Buttons"   "true"
Option  "ZAxisMapping"  "4 5"
EndSection

Section "InputDevice"
Identifier  "GPM Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/gpmdata"
Option  "Buttons"   "2"
Option  "Protoc

Bug#403972: cpio: error in info page or cpio itself

2006-12-20 Thread Edward Shornock
Package: cpio
Version: 2.6-17
Severity: normal

In the info page, we have the following switches defined for the various
modes:

`-i, --extract'
 Run in copy-in mode

`-o, --create'
 Run in copy-out mode.

`-p, --pass-through'
 Run in copy-pass mode.


While I think copy-in and copy-out are the opposite of what I think they
logically should be, the problem is with the --sparse option and it's
description.  Either the info page is wrong or `cpio` is 'slighly
broken'.

The info page states:

`--sparse'
 Write files with large blocks of zeros as sparse files.  This
 option is used in copy-in and copy-pass modes.



...but in practice that's not the case..


darkside:/bin# ls |cpio -o > /tmp/cpioarchive
7976 blocks
darkside:/bin# cpio -i --sparse < /tmp/cpioarchive
cpio: --sparse is meaningless with --extract



...and contrary to what the info page states, --sparse is accepted in copy-out
mode:

darkside:/bin# ls |cpio -o --sparse > /tmp/cpioarchive
7976 blocks



-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (600, 'testing'), (500, 'testing-proposed-updates'), (50, 
'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.19-cks2
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages cpio depends on:
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries

cpio recommends no packages.

-- no debconf information


signature.asc
Description: Digital signature


Bug#403973: cl-utilities: write a better documentation for once-only

2006-12-20 Thread Pierre THIERRY
Package: cl-utilities
Version: 1.2.4-1
Severity: minor
Tags: patch

The documentation for the once-only macro should be written instead of
pointing to a newsgroup discussion describing it. Here is a patch that
adds the relevant description:

Index: Source/doc/once-only.html
===
--- Source.orig/doc/once-only.html  2006-08-06 23:22:30.480823552 +0200
+++ Source/doc/once-only.html   2006-08-06 23:33:13.696039976 +0200
@@ -11,29 +11,57 @@
 
 
 
-once-only (name*) form*
+once-only (name*) body-form*
 
 Arguments and Values:
 
 name---a http://www.lispworks.com/documentation/HyperSpec/Body/glo_s.html#symbol";>symbol.
 
 
-form---a http://www.lispworks.com/documentation/HyperSpec/Body/glo_f.html#form";>form.
 
+body-form---a http://www.lispworks.com/documentation/HyperSpec/Body/glo_f.html#form";>form.
 
 
 
 Description:
 Meant to be used in macro code, once-only guards against
-multiple evaluation of its arguments in macroexpansion code. Any
-concise description would be far too vague to grasp, but http://groups.google.com/group/comp.lang.lisp/browse_frm/thread/1783554653afad7f/f6357129c8c1c002?rnum=1&_done=%2Fgroup%2Fcomp.lang.lisp%2Fbrowse_frm%2Fthread%2F1783554653afad7f%2F940b6ebd2d1757f4%3F#doc_f6357129c8c1c002";>this
-thread on comp.lang.lisp does a decent job of explaining what
-once-only does.
-
-Notes:
-
-The description here is frustratingly non-descriptive, and I
-apologize for that. If you understand once-only and can give a
-better explanation, I would be very grateful—not to mention
-completely awed.
+multiple evaluation of its arguments in macroexpansion code.
+
+once-only generates a Lisp form that evaluates each lexical
+variable named by the symbols given as name arguments to
+once-only, and evaluates the body forms in a lexical environment where
+these results are bound to their respective originating symbol.
+
+That is, if the only name argument were the single 'alpha
+symbol, the body forms would be evaluated in a lexical environment
+where 'alpha is bound to the result of the evaluation of alpha in the
+lexical environment of the generated Lisp form.
+
+Example:
+
+With the following 3x macro:
+
+(defmacro 3x (x)
+  `(+ ,x ,x ,x))
+
+These three forms evaluate to the same result because the form
+given as x argument is referencially transparent (i.e. it
+yields the same result each time it's evaluated):
+
+(3x 2) === 6
+(3x (1+ 1)) === 6
+(let ((a 1)) (3x (1+ a))) === 6
+
+But the following form has an argument that has side-effects and has 
different results for each of the three
+times it will be evaluated:
+
+(let ((a 1)) (3x (incf a))) === 9
+
+The problem is solved by protecting the body of the macro with
+once-only:
+
+(defmacro 3x (x)
+  (once-only (x)
+`(+ ,x ,x ,x)))
+
+(let ((a 1)) (3x (incf a))) === 6
 
 Manual Index
 
It applies to 1.2.4-1.


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

Versions of packages cl-utilities depends on:
ii  common-lisp-controller6.8This is a Common Lisp source and c

cl-utilities recommends no packages.

-- no debconf information

-- 
[EMAIL PROTECTED]
OpenPGP 0xD9D50D8A


signature.asc
Description: Digital signature


Bug#403970: gzip refuses to decompress inferno.tgz (+ patch)

2006-12-20 Thread Paul Eggert
Package: gzip
Version: 1.3.5-10sarge2

Yiorgos Adamopoulos <[EMAIL PROTECTED]> writes:

> Hi!  I tried to gunzip
> http://www.vitanuova.com/dist/4e/20060303/inferno.tgz using version
> 1.3.5 (I work on an Ubuntu 6.06 LTS) and got:
>
> [EMAIL PROTECTED]:~/tmp$ gunzip inferno.tgz
>
> gunzip: inferno.tgz: invalid compressed data--format violated

Thanks very much for reporting that.  Do you happen to know what
program generated that .tgz file?

Anyway, this is clearly a regression in gzip, regardless of whether
the stream has a valid format, so I installed the following patch into
gzip.  I am CC'ing this to the Debian bug address and to Thomas Biege.

2006-12-20  Paul Eggert  <[EMAIL PROTECTED]>

* inflate.c (huft_build): Fix regression that caused gzip to
refuse to uncompress null input (all zero length codes).  Problem
reported by Yiorgos Adamopoulos.  This regression was caused by
the security patch installed 2006-11-20, which in turn came from
Debian, which in turn apparently came from Thomas Biege of SuSe.

Index: inflate.c
===
RCS file: /cvsroot/gzip/gzip/inflate.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -p -u -r1.5 -r1.6
--- inflate.c   27 Nov 2006 00:51:37 -  1.5
+++ inflate.c   20 Dec 2006 23:30:17 -  1.6
@@ -116,7 +116,7 @@
  */
 
 #ifdef RCSID
-static char rcsid[] = "$Id: inflate.c,v 1.5 2006/11/27 00:51:37 eggert Exp $";
+static char rcsid[] = "$Id: inflate.c,v 1.6 2006/12/20 23:30:17 eggert Exp $";
 #endif
 
 #include 
@@ -335,9 +335,16 @@ int *m; /* maximum looku
   } while (--i);
   if (c[0] == n)/* null input--all zero length codes */
   {
-*t = (struct huft *)NULL;
-*m = 0;
-return 2;
+q = (struct huft *) malloc (2 * sizeof *q);
+if (!q)
+  return 3;
+hufts += 2;
+q[0].v.t = (struct huft *) NULL;
+q[1].e = 99;/* invalid code marker */
+q[1].b = 1;
+*t = q + 1;
+*m = 1;
+return 0;
   }
 
 


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



Bug#403899: wodim: not disable burnfree by default

2006-12-20 Thread Eduard Bloch
tags 403899 + pending
thanks

#include 
* [EMAIL PROTECTED] [Wed, Dec 20 2006, 03:54:34PM]:
> Package: wodim
> Version: 1.1.0-1
> 
> Now that Joerg is not the dictator of cdrkit it would be great if
> burnfree is not disabled by default, because it causes too many problems
> for new users since nobody understands why that feature is disabled by
> default!
> 
> 
> 
> Prueba el correo Terra ( http://www.terra.es/correo ); Seguro, rápido, fiable.
> 
> 

-- 
Captain John Sheridan: Bester.
PsiCop Alfred Bester: Captain Sheridan.
Captain John Sheridan: Get the hell out of my chair.
 -- Quotes from Babylon 5 --



Bug#380508: (no subject)

2006-12-20 Thread Jiří Paleček

Err, I have posted a wrong patch (reverse). This patch should be better.

Regards
   Jiri Palecek

sdl.diff
Description: Binary data


Bug#403579: chillispot: [INTL:cs] Czech debconf templates translation

2006-12-20 Thread Rudy Godoy
El día 18/12/2006 a 02:11 Vitezslav Kotrla escribió...

Hi,

> 
> Please accept attached Czech translation of the debconf template for
> chillispot.

You've used the old version for translating. Please update your
translation using the attached file.
Also please set the charset for the file, or let me know which should
be used, utf-8 is preferred.

thanks

-- 
Rudy Godoy | 0x3433BD21 | http://www.htu.com.pe  ,''`.
http://www.apesol.org  -  http://www.debian.org  : :' :
GPG FP: 0D12 8537 607E 2DF5 4EFB  35A7 550F 1A00 3433 BD21   `. `'
   `-
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Vítězslav Kotrla <[EMAIL PROTECTED]>, 2006.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
"POT-Creation-Date: 2006-12-09 23:34-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Vtzslav Kotrla <[EMAIL PROTECTED]>\n"
"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: boolean
#. Description
#: ../chillispot.templates:1001
msgid "Would you like to handle configuration through debconf?"
msgstr ""

#. Type: boolean
#. Description
#: ../chillispot.templates:1001
msgid ""
"This assistant can handle basic Chillispot configuration for you,  asking a "
"few questions. Later you can adjust config by editing '/etc/chilli.conf'. "
"However you should have to previously setup the radius server and UAM server "
"in order to have it properly working."
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:2001
msgid "IP address of radius server 1:"
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:2001
msgid ""
"Radius server handles accounting for the hotspot. Enter the IP address for "
"the first radius server."
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:3001
msgid "IP address for radius server 2:"
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:3001
msgid "Second radius server acts as backup for hotspot accounting."
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:3001
msgid ""
"If you have only one radius server you should enter the same IP address for "
"radius server 1."
msgstr ""

#. Type: password
#. Description
#: ../chillispot.templates:4001
msgid "Radius shared secret:"
msgstr ""

#. Type: password
#. Description
#: ../chillispot.templates:4001
msgid " This is the password shared on both radius servers."
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:5001
msgid "Ethernet interface for DHCP to listen:"
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:5001
msgid ""
"Chillispot has an internal DHCP server which will assign IP addresses to the "
"clients. You need to specify the interface which is connected to the access "
"points."
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:5001
msgid "In a typical configuration this should be set to 'eth1'."
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:6001
msgid "URL of UAM server:"
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:6001
msgid ""
"User authorization is handled by a UAM server, which can be a webserver. You "
"need to enter the URL for this component."
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:6001
msgid ""
"Normally this is a cgi program like 'https://yourserver/hotspotlogin.cgi'"
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:7001
msgid "URL of UAM homepage:"
msgstr ""

#. Type: string
#. Description
#: ../chillispot.templates:7001
msgid ""
"This is the initial homepage that will be displayed to the hotspot clients."
msgstr ""

#. Type: password
#. Description
#: ../chillispot.templates:8001
msgid "Shared password between chillispot and webserver:"
msgstr ""

#. Type: password
#. Description
#: ../chillispot.templates:8001
msgid ""
"In order to handle authentication Chillispot and the UAM  webserver share a "
"password to communicate."
msgstr ""

#~ msgid "Chillispot configuration"
#~ msgstr "Nastaven programu chillispot"

#~ msgid "By default Chillispot is disabled, so it doesn't start on boot time."
#~ msgstr ""
#~ "Ve vchozm nastaven je chillispot zakzn, take nebude pi startu systmu "
#~ "sputn."

#~ msgid ""
#~ "This package installs a default configuration on /etc/chilli.conf,  you "
#~ "are required to customize it to fit your needs and only then  enable it "
#~ "on /etc/default/chillispot."
#~ msgstr ""
#~ "Tento balek nainstaluje vchoz konfiguraci do /etc/chilli.conf. Nejprve ji "
#~ "upravtepodle vaich poteb a teprve potom chillispot v /etc/default/"
#~ "chillispot povolte."

#~ msgid "Configuration is NOT (yet) handled by debconf."
#~ 

Bug#403920: sympa: syslog facility badly configured

2006-12-20 Thread LENHOF Jean-Yves
Le mercredi 20 décembre 2006 à 23:13 +0100, Stefan Hornburg (Racke) a
écrit :
> Jean Charles Delepine wrote:
> > Package: sympa
> > Version: 5.2.3-0.5
> > Severity: normal
> > Tags: patch
> > 
> > 
> > # grep ^syslog /etc/sympa/sympa.conf
> > syslog  LOCAL1
> > # grep sympa /etc/syslog.conf 
> > local0.*/var/log/sympa.log
> > 
> > You might :
> > 
> > * modify debian/sympa_wizard.pl to use LOCAL0 (problem if already used)
> > 
> > * Return to the firsts debian package and use 
> >   syslog = `cat /etc/sympa/facility`
> 
> What happens if the user has installed syslog-ng ?
> 
> Bye
>   Racke

That does'nt change so much for the pure sympa configuration... 
but for the /etc/syslog-ng/syslog-ng.conf you should have to modify
these lines...



destination df_sympa { file("/var/log/sympa.log"); };

filter f_local1 { facility(local1); };

# local1.* /var/log/sympa.log
log {
source(s_all);
filter(f_local1);
destination(df_sympa);
};


JY, who use a manual install of sympa on his "sarge"... because version
5.2 is very much an improvement towards 4.1 version. (unicode support
was one of my problem if I remember correctly). Thanks for Jean-Charles
to provide patchs, perhaps on the long run it will pay. As always, you
have to make evidence that you know what to do... but I think you are on
the good way to convince Stefan that you can help him on the maintenance
of this package.

Regards,


-- 
Jean-Yves LENHOF
Tél. Portable : 06 09 39 96 49
[EMAIL PROTECTED]




Bug#403968: p7zip: [manual] Non-existing programms 7z(1) and 7za(1) referenced in SEE ALSO

2006-12-20 Thread Jari Aalto
Package: p7zip
Version: 4.43~dfsg.1-1
Severity: minor

Manual Page reads:

  SEE ALSO
   7z(1),7za(1)

None of the programs exist. Please update to refer to these:

  SEE ALSO
   7zr(1) unzip(1) zip(1) gzip(1) bzip2(1)

The installation files of p7zip include:

/usr/share/man
/usr/share/man/man1
/usr/share/man/man1/p7zip.1.gz
/usr/share/man/man1/7zr.1.gz

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-3-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US)

Versions of packages p7zip depends on:
ii  libc62.3.6.ds1-9 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-21  GCC support library
ii  libstdc++6   4.1.1-21The GNU Standard C++ Library v3

Versions of packages p7zip recommends:
pn  p7zip-full (no description available)

-- no debconf information


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



Bug#403971: megahal: please update py bindings

2006-12-20 Thread Bernd Zeimetz
Package: megahal
Version: 9.1.1a-1
Severity: wishlist

Heya,

please provide the python module for more recent versions of py, too.


Thanks,

Bernd


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.19-rc4
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages megahal depends on:
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries

megahal recommends no packages.

-- no debconf information


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



Bug#403890: installation successfull with some manual work

2006-12-20 Thread Frans Pop
On Wednesday 20 December 2006 23:13, peter green wrote:
> btw why do you ask for installation reports even on sucessfull
> installations?

Because receiving only failures gets boring ;-)

Well, seriously, because it gives us a better idea how well the installer 
is being used/tested over various architectures and successes help us 
determine if we are ready for release.

Also, even if installs are successful people often have usability comments 
or suggestions which are valuable for us. Even if we cannot reply to 
every report, we do read almost all of them. Comments that are repeated 
by different people tend to stick and eventually get worked on.

Cheers,
FJP


pgpb6Ig9tbu5q.pgp
Description: PGP signature


Bug#403677: openoffice.org: Opening .xls file puts me in OOo writer instead of in calc

2006-12-20 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 12/20/06 15:48, Jim Watson wrote:
> 
> On 21/12/2006, at 12:33 AM, Nagy Gabor Peter wrote:
>>
>> I think you were right. I don't know how real .xls files look like, but
>> my files look like this:
>>
>>  
> You could try open it in writer, then copy and paste the tables into
> calc. Also you could search the issues at www.openoffice.org, as it
> seems likely this should be a defect or enhancement issue upstream.

You mean "convert html table to spreadsheet"?

That would be *EXTREMELY* useful!

- --
Ron Johnson, Jr.
Jefferson LA  USA

Is "common sense" really valid?
For example, it is "common sense" to white-power racists that
whites are superior to blacks, and that those with brown skins
are mud people.
However, that "common sense" is obviously wrong.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFFicRJS9HxQb37XmcRAuGcAJ9aUdwXac/9GCGYU6S+tnr7Wl/mXgCcCWq5
oVdiOLke2G+6M8gszTjJWy0=
=801y
-END PGP SIGNATURE-


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



Bug#403969: xserver-xorg: xserver crashing, mode related?

2006-12-20 Thread Rob Bochan
Package: xserver-xorg
Version: 1:7.1.0-9
Severity: important

The xserver on this machine is crashing. So far, it's happening whenever
I've tried to run a winex/cedega based game, tried to run glxgears, or tried
to call up glxinfo. Whenever any of the aforementioened are attempted, I'm
dumped back to the console (since I use startx). This has come up today, but
I haven't restarted the xserver in well over a month.

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-07-29 09:07 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1597868 2006-12-12 21:34 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: 3Dfx Interactive, Inc. Voodoo 4 / Voodoo 5 
(rev 01)

/etc/X11/xorg.conf unchanged from checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 3046 2006-12-20 18:13 /etc/X11/xorg.conf

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

Section "Files"
FontPath"/usr/share/fonts/X11/misc"
FontPath"/usr/X11R6/lib/X11/fonts/misc"
FontPath"/usr/share/fonts/X11/cyrillic"
FontPath"/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath"/usr/share/fonts/X11/100dpi/:unscaled"
FontPath"/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/share/fonts/X11/75dpi/:unscaled"
FontPath"/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/share/fonts/X11/Type1"
FontPath"/usr/X11R6/lib/X11/fonts/Type1"
FontPath"/usr/share/fonts/X11/100dpi"
FontPath"/usr/X11R6/lib/X11/fonts/100dpi"
FontPath"/usr/share/fonts/X11/75dpi"
FontPath"/usr/X11R6/lib/X11/fonts/75dpi"
# path to defoma fonts
FontPath"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"vbe"
EndSection

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

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
Option  "Emulate3Buttons"   "true"
EndSection

Section "Device"
Identifier  "3Dfx Interactive, Inc. Voodoo 4 / Voodoo 5"
Driver  "tdfx"
BusID   "PCI:1:0:0"
VideoRam65535
EndSection

Section "Monitor"
Identifier  "Diamond Pro 710"
Option  "DPMS"
HorizSync   30-60
VertRefresh 50-75
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "3Dfx Interactive, Inc. Voodoo 4 / Voodoo 5"
Monitor "Generic Monitor"
DefaultDepth16
SubSection "Display"
Depth   1
Modes   "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth   4
Modes   "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth   8
Modes   "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth   15
Modes   "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth   16
Modes   "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth   24
Modes   "1024x768" "800x600" "640x480"
EndS

Bug#374638: i810switch: does not recognize 8086:27a2 / 8086:27a2

2006-12-20 Thread James Bromberger

tags upstream
thanks


Hi Ken/Jeff,

Any plans on updating i810switch with support for "Intel Corporation 
Mobile 945GM/GMS/940GM" as per:

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


Regards,

 James

--
 James Bromberger | www.james.rcpt.to | james_AT_rcpt.to
 UK Cell: +44 7952042920 | Perth/Au phone in London/UK: +61 8 6424 8325

begin:vcard
fn:James Bromberger
n:Bromberger;James
adr:;;;London;Greater London;;United Kingdom
email;internet:[EMAIL PROTECTED]
tel;cell:+447952042920
note:GPG: 3F2C F8FD B2D5 AA35 C81A  F914 A5F2 7028 0917 A9E4
x-mozilla-html:FALSE
url:http://www.james.rcpt.to
version:2.1
end:vcard



Bug#403967: sarge->etc: ended up with /usr/bin/vim binary from 1.5 years ago

2006-12-20 Thread Willi Mann
Package: vim
Version: 1:7.0-122+1
Severity: important

Important because the behaviour is confusing and the way to resolve it is
by no means on the hand. Maybe even RC as it could it hurt the reputation of
debian as the "Upgrades-Always-Work" distribution.

 dpkg -l "vim*"
Gewünscht=Unbekannt/Installieren/R=Entfernen/P=Säubern/Halten
| Status=Nicht/Installiert/Config/U=Entpackt/Fehlgeschl. Konf./Halb install.
|/ Fehler?=(kein)/Halten/R=Neuinst notw/X=beide (Status, Fehler: GROSS=schlecht)
||/ Name Version  
Beschreibung
+++---
ii  vim  7.0-122+1
Vi IMproved - enhanced vi editor
ii  vim-common   7.0-122+1
Vi IMproved - Common files
un  vim-doc
(keine Beschreibung vorhanden)
un  vim-full   
(keine Beschreibung vorhanden)
un  vim-gnome  
(keine Beschreibung vorhanden)
ii  vim-gtk  7.0-122+1
Vi IMproved - enhanced vi editor - with GTK2 GUI
ii  vim-gui-common   7.0-122+1
Vi IMproved - Common GUI files
un  vim-lesstif
(keine Beschreibung vorhanden)
un  vim-perl   
(keine Beschreibung vorhanden)
un  vim-python 
(keine Beschreibung vorhanden)
un  vim-ruby   
(keine Beschreibung vorhanden)
ii  vim-runtime  7.0-122+1
Vi IMproved - Runtime files
un  vim-scripts
(keine Beschreibung vorhanden)
un  vim-tcl
(keine Beschreibung vorhanden)
un  vim-tiny   
(keine Beschreibung vorhanden)

but:

$ dpkg -S /usr/bin/vim.org
Umleitung durch vim-gtk von: /usr/bin/vim
Umleitung durch vim-gtk zu: /usr/bin/vim.org
$ ls -l /usr/bin/vim
-rwxr-xr-x 1 root root 1411096 2005-07-30 12:45 /usr/bin/vim

after some guessing I removed vim-gtk, removed vim and installed vim.
Then I got:

$ ls -l /usr/bin/vim
lrwxrwxrwx 1 root root 21 2006-12-20 23:56 /usr/bin/vim -> /etc/alternatives/vim

and vim works as before. I guess there's something wrong with the alternatives 
handling.

I have a typescript from my apt-get dist-upgrade run. I could look for relevant 
output
of the vim upgrade if you like.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-3-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages vim depends on:
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  libgpmg1 1.19.6-23   General Purpose Mouse - shared lib
ii  libncurses5  5.5-5   Shared libraries for terminal hand
ii  vim-common   1:7.0-122+1 Vi IMproved - Common files
ii  vim-runtime  1:7.0-122+1 Vi IMproved - Runtime files

vim recommends no packages.

-- no debconf information



Bug#403964: libinstrudeo0: Links with libraries with incompatible licenses

2006-12-20 Thread Thadeu Lima de Souza Cascardo
Package: libinstrudeo0
Version: 0.1.3-3
Severity: serious
Justification: Policy 2.3

This library is linked to OpenSSL, whose license is incompatible with
GPL, which is the license of libinstrudeo0 itself and the ffmpeg
libraries it uses (libavcodec0d and libavformat0d).


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


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



Bug#403966: gnome-art: only the first interaction with the menu works

2006-12-20 Thread Armin Berres
Package: gnome-art
Version: 0.2-5
Severity: important

After the first interaction with the menu, every further interaction with the 
menu
doesn't work - nothing happens. On the console I get
"/usr/lib/ruby/1.8/gnome-art/gnome_art.rb:132: warning: GRClosure invoking 
callback: already destroyed"
I file this bug as important because it is impossible to view art from different
sections without restarting the programm. Feel free to decrease the severity...

/Armin

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

Versions of packages gnome-art depends on:
ii  gnome-splashscreen-manager0.2-5  manage your GNOME splash screen im
ii  libglade2-ruby0.15.0-1.1 Libglade 2 bindings for the Ruby l
ii  ruby  1.8.2-1An interpreter of object-oriented 

gnome-art recommends no packages.

-- no debconf information


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



Bug#403965: package verification failed

2006-12-20 Thread Olaf
Package: tar
Version: 1.14-2.3


Hi, when doing an "apt-get update && apt-get upgrade" I see:

Reading package lists... Done
Building dependency tree... Done
The following NEW packages will be installed:
  anacron
The following packages will be upgraded:
  gnupg libdevmapper1.01 tar
3 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B/2460kB of archives.
After unpacking 918kB of additional disk space will be used.
Do you want to continue [Y/n]?
Preconfiguring packages ...
Authenticating /var/cache/apt/archives/tar_1.14-2.3_i386.deb ...
debsig: Origin Signature check failed. This deb might not be signed.

dpkg: error processing /var/cache/apt/archives/tar_1.14-2.3_i386.deb
(--unpack):
 Verification on package /var/cache/apt/archives/tar_1.14-2.3_i386.deb
failed!
Errors were encountered while processing:
 /var/cache/apt/archives/tar_1.14-2.3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
Some errors occurred while unpacking. I'm going to configure the
packages that were installed. This may result in duplicate errors
or errors caused by missing dependencies. This is OK, only the errors
above this message are important. Please fix them and run [I]nstall again
Press enter to continue.


installation script returned error exit status 100.
Press  to continue.


Regards,
Olaf


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



Bug#402876: [fuse-devel] FUSE not working on ARM? Hangs during stat64

2006-12-20 Thread Jon Dowland
On Wed, Dec 20, 2006 at 07:37:50PM +0100, Miklos Szeredi
wrote:
> Can you please try the out-of-tree kernel module from the
> fuse-2.6.x package (use 'configure
> --enable-kernel-module).  That contains a workaround for a
> bug in the ARM architecture code.

I've just built fuse-2.6.1 from the tarball on sf.net and
everything worked with that.

I tried encfs and sshfs invocations that failed last time,
both with the .so built in that source and also using the
older .so in debian (2.5.3), all were fine.


Thanks for your help,

-- 
Jon Dowland


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



Bug#402450: ppp-udeb and netcfg

2006-12-20 Thread Eddy Petrișor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

clone 402450 -1
# the hostname configuration is provided by netcfg, ppp-udeb can't do that
# with ppp-udeb also the loopback is not dealt with although this issue can
# be worked around by the necesary lines in /etc/network/interfaces
retitle -1 ppp-udeb: should be integrated in netcfg
severity -1 wishlist
thanks


Tammo Block wrote:
> Eddy Petri?or ([EMAIL PROTECTED]) wrote:
>> I guess I'd better intergrate ppp-udeb in netcfg asap.
>>
> Yes. I think this would also be the "natural" place for the menu entry. Now,
> after the failure of DHCP, you get a menu asking "Try DHCP, Enter values by
> hand , No Network". This is the menu where IMHO another point "Use PPPoE" (or
> maybe better the lesser-technical term "Use DSL/Cablemodem") should be added,
> if the ppp-udeb is installed.


- --
Regards,
EddyP
=
"Imagination is more important than knowledge" A.Einstein
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFFicIlY8Chqv3NRNoRAuK3AKDQiaUgF1hVUPtbhwJay+7Akm1R9wCg3ZRQ
X6nYYE8si06AKBWnjAKEiro=
=Izel
-END PGP SIGNATURE-


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



Bug#403962: flashplugin-nonfree: no sound with ES1370

2006-12-20 Thread Arnaud Giersch
Package: flashplugin-nonfree
Version: 9.0.21.78.4
Severity: normal

Hello,

I do not have any sound with Flash plugin 9.  I tested several
browsers: Firefox, Iceape and Opera.  As it works fine on another
machine, I suspect that the problem is related to the sound card.
Lspci reports it to be an Ensoniq ES1370 [AudioPCI].  IIRC, it is a
Sound Blaster 64 PCI.  The Alsa driver is snd_ens1370.

Other applications work just fine: aplay, Flash plugin 7, ogg123, ...

I also noticed that, if I put the following line in my ~/.asoundrc:

  defaults.pcm.dmix_format FOOBAR

Flash plugin 9 works, but an error message is printed on the terminal:

  ALSA lib pcm.c:6620:(snd_pcm_slave_conf) unknown format FOOBAR

This bogus setting however breaks the other (previously working)
programs.  For example, aplay complains that:

  ALSA lib pcm.c:6620:(snd_pcm_slave_conf) unknown format FOOBAR
  aplay: main:550: audio open error: Invalid argument

ogg123 fails with a similar error message.  That is why I think that
it is Flash plugin 9 which is faulty.

Regards,

Arnaud Giersch

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

Versions of packages flashplugin-nonfree depends on:
ii  debconf [debconf-2.0] 1.5.8  Debian configuration management sy
ii  fontconfig2.4.1-2generic font configuration library
ii  libgtk2.0-0   2.8.20-3   The GTK+ graphical user interface 
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  wget  1.10.2-2   retrieves files from the web

Versions of packages flashplugin-nonfree recommends:
ii  xfs   1:1.0.1-5  X font server

-- debconf information:
  flashplugin-nonfree/httpget: false
* flashplugin-nonfree/not_exist:
  flashplugin-nonfree/local: /usr/lib/flashplugin-nonfree-unpackdir


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



Bug#399329: 3 security issues: PMASA-2006-7, PMASA-2006-8, PMASA-2006-9

2006-12-20 Thread Moritz Muehlenhoff
Thijs Kinkhorst wrote:
> Concerning these phpMyAdmin security issues the following:
> 
> Thomas Babut wrote:
> > 3 security issues were fixed with the new version of phpMyAdmin 2.9.1.1.
> > All 3 issues affects all previous versions of phpMyAdmin. This also
> > applies to Sarge.
> > 
> > See this security announcements:
> > http://www.phpmyadmin.net/home_page/security.php?issue=PMASA-2006-7
> 
> This partially applies to sarge, but the part that applies is only
> exploitable when register_globals = On. Is that setup security
> supported? If it is, we can use the attached simple patch.

No, it's an unsupported setup.
 
> This is a feature that was insecure by design: the X-Forwarded-For HTTP
> header was used to determine the IP of a user to match it against an
> allow/deny list; this HTTP header is of course easily settable by any
> client.
> 
> The solution is that the behaviour is changed and an extra configuration
> parameter has been added. Is this suitable for sarge? See also patch.

What functionality is referred to by "Bad IP Allow/Deny checking"? It is a
black list protection against potentially malicious clients or brute
force attacks?

Cheers,
Moritz


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



Bug#381431: Announce of the upcoming NMU for the phppgadmin package (last one...)

2006-12-20 Thread Isaac Clerencia
On Wednesday, 20 December 2006 23:28, Christian Perrier wrote:
> Quoting Isaac Clerencia ([EMAIL PROTECTED]):
> > On Thursday 14 December 2006 07:09, Christian Perrier wrote:
> > > OK, let's go this way. I proceed as usual, then instead of NMU'ing,
> > > I'll send you the NMU patch. Would that be right ?
> >
> > Sure, that would be perfect :)
>
> Here's the proposed patch.
Applied and uploaded, thank you.

-- 
Isaac Clerencia at Warp Networks, http://www.warp.es
Work: <[EMAIL PROTECTED]>   | Debian: <[EMAIL PROTECTED]>


pgpn5gfwnPIDr.pgp
Description: PGP signature


Bug#388350: Add USB eject patch from Ubuntu

2006-12-20 Thread Sam Morris
reopen 388350
found 388350 2.6.18-7
thanks

I reported http://bugzilla.gnome.org/show_bug.cgi?id=387981 today and a
developer said that it is probably this Debian-specific issue.

-- 
Sam Morris
http://robots.org.uk/

PGP key id 1024D/5EA01078
3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078


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


Bug#403945: apache2-mpm-itk: uninstallable on arm

2006-12-20 Thread Steinar H. Gunderson
On Wed, Dec 20, 2006 at 10:33:08PM +0100, Aurelien Jarno wrote:
>>> The problem has already been sorted out by the release team, but failed
>>> on arm due to a recurrent problem with the build daemon.
>> In that case, it is not a bug in apache2-mpm-itk; closing after conferring
>> with the RMs.
> Where should I report this problem then? This package is *not* in a
> releasable state on ARM, this has to be *tracked* somewhere.

I guess the RMs already know about it...? It's not really the first time a
package has been late in building for some reason, and the BTS isn't really
needed to track such skews. Cc-ing -release; I'm sure they can help you if
you have further issues.

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



Bug#403961: Carries useless file in source: debian/po/fontconfig_2.4.1-2_es.po

2006-12-20 Thread Christian Perrier
Package: fontconfig
Version: 2.4.2-1
Severity: minor

This file is useless as the debian/po/es.po file is enough and complete. I
suggest you remove it from the source package.

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

Versions of packages fontconfig depends on:
ii  defoma   0.11.10 Debian Font Manager -- automatic f
ii  fontconfig-config2.4.2-1 generic font configuration library
ii  libc62.3.6.ds1-9 GNU C Library: Shared libraries
ii  libexpat11.95.8-3.4  XML parsing C library - runtime li
ii  libfontconfig1   2.4.2-1 generic font configuration library
ii  libfreetype6 2.2.1-5 FreeType 2 font engine, shared lib
ii  zlib1g   1:1.2.3-13  compression library - runtime

fontconfig recommends no packages.

-- debconf information excluded


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



Bug#403890: installation successfull with some manual work

2006-12-20 Thread peter green

> Not sure what was wrong here, but it does not seem like something we can 
> fix in the installer. 
well ntfsfix cleared up the journal and made it work so it would presumablly be 
possible to do that, i dunno how safe ntfsfix is though.

btw why do you ask for installation reports even on sucessfull installations?





Bug#400399: [Pkg-mono-group] Bug#400399: I'm seeing the same problem

2006-12-20 Thread Joseph Nahmias
Hello Mirco,

On Wed, Dec 20, 2006 at 09:10:30PM +0100, Mirco Bauer wrote:
> On Wed, 2006-12-20 at 14:33 -0500, Joseph Nahmias wrote:
> > Package: monodoc-http
> > Version: 1.1.18-1
> > Followup-For: Bug #400399
> > 
> > Hi,
> > 
> > Maybe I've done something wrong/stupid but now, after upgrading to the
> > latest mono (1.2.2) in testing, monodoc doesn't work.  I'm using apache
> > 1.3 -- not xsp -- as the webserver.
> 
> Which mod-mono or xsp version and mono version are you using exactly?
> This should do it for me:
> dpkg -l|egrep "(mod-mono|xsp|mono-jit)"

[EMAIL PROTECTED]:~$ dpkg -l|egrep "(mod-mono|xsp|mono-jit)"
ii  libapache-mod-mono   1.2.1-1 Run 
ASP.NET Pages on UNIX with Apache and Mo
ii  mono-jit 1.2.2.1-1   fast CLI 
JIT/AOT compiler for Mono
ii  mono-xsp-base1.2.1-1 base 
libraries for XSP 1.1

--Joe


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



Bug#403909: bad /usr/share/sympa/web_tt2/authorization_reject.tt2 symlink

2006-12-20 Thread Stefan Hornburg (Racke)

Jean Charles Delepine wrote:

"Stefan Hornburg (Racke)" <[EMAIL PROTECTED]> écrivait (wrote) :


Jean Charles Delepine wrote:

Package: sympa
Version: 5.2.3-0.5
Severity: important
Tags: patch

sympa native instalattion links 
/usr/share/sympa/mail_tt2/authorization_reject.tt2 to 
${PREFIX}/usr/share/sympa/web_tt2/authorization_reject.tt2

Is this a bug in Sympa or somehow related to the Debian
packaging ?


sympa-5.2.3/mail_tt2/Makefile : 
rm -f $(DESTDIR)$(ETCBINDIR)/web_tt2/authorization_reject.tt2 ;

ln -s $(DESTDIR)$(ETCBINDIR)/mail_tt2/authorization_reject.tt2
$(DESTDIR)$(ETCBINDIR)/web_tt2

DESTDIR when native insallation will be somewhat like /usr/local/sympa
ETCBINDIR will be somewhat like share. 
Relative symlinks might be better but I don't think we can say it a bug.


The installation in $(DESTDIR) should be self-contained, therefore I consider
that a bug of Sympa.

Bye
Racke


--
LinuXia Systems => http://www.linuxia.de/
Expert Interchange Consulting and System Administration
ICDEVGROUP => http://www.icdevgroup.org/
Interchange Development Team



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



Bug#403803: pine: Please switch to gettext-based debconf templates

2006-12-20 Thread Santiago Vila
On Wed, 20 Dec 2006, Thomas Huriaux wrote:

> > I support pine only partially, so I have added debconf stuff to
> > allow for unattented installs, but that's all.
> 
> Do you allow me or any other people caring about i18n to do the job for
> you, either by NMUing the package or by providing full patches? Or
> should we just stay away from that package?

You should stay away, really.

In addition to being non-free, there are two additional reasons why I
think this should not be done, as it would be a complete waste of time:

a) It is likely that pine will eventually be replaced by alpine
(once alpine is mature enough).

b) There should be a mta-base package on which packages like this
may depend, so that we do not duplicate the same debconf questions
about /etc/mailname and /etc/news/server over and over again
in every package managing those files.


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



Bug#403960: esound-clients: esddsp does not export any variables

2006-12-20 Thread Markus
Package: esound-clients
Version: 0.2.36-3
Severity: normal


When running "export |grep ESPEAKER" after "/usr/bin/esddsp 
--server=192.168.10.1:16001 -m"
gives you just "" (nothing). When I export ESPEAKER manually everything
works fine.

Output of "sh -x /usr/bin/esddsp --server=192.168.10.1:16001 -m":
+ verbose=0
+ set_name=0
+ test 2 -gt 0
+ case "$1" in
++ echo --server=192.168.10.1:16001
++ sed -e 's/^[^=]*=//g'
+ ESPEAKER=192.168.10.1:16001
+ export ESPEAKER
+ shift
+ test 1 -gt 0
+ case "$1" in
+ ESDDSP_MIXER=1
+ export ESDDSP_MIXER
+ shift
+ test 0 -gt 0
+ test 0 = 0
+ ESDDSP_NAME=
+ export ESDDSP_NAME
+ test 0 = 1
+ prefix=/usr
+ exec_prefix=/usr
+ LD_PRELOAD='/usr/lib/esound/libesddsp.so.0 /usr/lib/libesd.so.0 '
+ export LD_PRELOAD
+ exec




-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages esound-clients depends on:
ii  esound-common0.2.36-3Enlightened Sound Daemon - Common 
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  libesd0  0.2.36-3Enlightened Sound Daemon - Shared 

esound-clients recommends no packages.

-- no debconf information


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



Bug#403677: openoffice.org: Opening .xls file puts me in OOo writer instead of in calc

2006-12-20 Thread Jim Watson


On 21/12/2006, at 12:33 AM, Nagy Gabor Peter wrote:


I think you were right. I don't know how real .xls files look like,  
but

my files look like this:



You could try open it in writer, then copy and paste the tables into  
calc. Also you could search the issues at www.openoffice.org, as it  
seems likely this should be a defect or enhancement issue upstream.







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



Bug#381431: Announce of the upcoming NMU for the phppgadmin package (last one...)

2006-12-20 Thread Christian Perrier
Quoting Isaac Clerencia ([EMAIL PROTECTED]):
> On Thursday 14 December 2006 07:09, Christian Perrier wrote:
> > OK, let's go this way. I proceed as usual, then instead of NMU'ing,
> > I'll send you the NMU patch. Would that be right ?
> Sure, that would be perfect :)


Here's the proposed patch.


diff -Nru phppgadmin-4.0.1.old/debian/changelog phppgadmin-4.0.1/debian/changelog
--- phppgadmin-4.0.1.old/debian/changelog	2006-12-07 07:59:01.029011382 +0100
+++ phppgadmin-4.0.1/debian/changelog	2006-12-18 08:52:05.663368471 +0100
@@ -1,3 +1,23 @@
+phppgadmin (4.0.1-2.1) unstable; urgency=low
+
+  * Non-maintainer upload to fix longstanding l10n issues
+  * Debconf templates translations:
+- Portuguese added. Closes: #381431
+- Dutch added. Closes: #383338
+- Spanish updated. Closes: #383086
+- Swedish updated. Sent during the call for updates of the NMU campaign.
+- Czech updated. Sent during the call for updates of the NMU campaign.
+- Russian added. Sent during the call for updates of the NMU campaign.
+- Brazilian Portuguese updated. Sent during the call for updates
+  of the NMU campaign.
+- Vietnamese updated. Sent during the call for updates of the NMU campaign.
+  * Lintian fixes:
+- Move debhelper and dpatch to Build-Depends
+- Rewrite debconf templates to fix the Developers Reference suggested
+  write style
+
+ -- Christian Perrier <[EMAIL PROTECTED]>  Thu,  7 Dec 2006 08:06:52 +0100
+
 phppgadmin (4.0.1-2) unstable; urgency=low
 
   * Remove dangling links from conf.d dirs when removing the package,
diff -Nru phppgadmin-4.0.1.old/debian/control phppgadmin-4.0.1/debian/control
--- phppgadmin-4.0.1.old/debian/control	2006-12-07 07:59:01.029011382 +0100
+++ phppgadmin-4.0.1/debian/control	2006-12-07 08:05:16.971869082 +0100
@@ -2,7 +2,7 @@
 Maintainer: Isaac Clerencia <[EMAIL PROTECTED]>
 Section: web
 Priority: extra
-Build-Depends-Indep: debhelper (>= 4.1.16), dpatch
+Build-Depends: debhelper (>= 4.1.16), dpatch
 Standards-Version: 3.6.2
 
 Package: phppgadmin
diff -Nru phppgadmin-4.0.1.old/debian/phppgadmin.templates phppgadmin-4.0.1/debian/phppgadmin.templates
--- phppgadmin-4.0.1.old/debian/phppgadmin.templates	2006-12-07 07:59:01.057011594 +0100
+++ phppgadmin-4.0.1/debian/phppgadmin.templates	2006-12-07 08:06:25.952395593 +0100
@@ -2,6 +2,6 @@
 Type: select
 __Choices: Apache, Apache-SSL, Apache-Perl, Apache2, None
 Default: Apache
-_Description: Which web server would you like to reconfigure automatically?
+_Description: Web server to reconfigure automatically:
  phpPgAdmin supports any web server that PHP4 does, but this automatic
  configuration process only supports Apache servers.
diff -Nru phppgadmin-4.0.1.old/debian/po/ar.po phppgadmin-4.0.1/debian/po/ar.po
--- phppgadmin-4.0.1.old/debian/po/ar.po	2006-12-07 07:59:01.053011564 +0100
+++ phppgadmin-4.0.1/debian/po/ar.po	2006-12-13 23:35:51.687814649 +0100
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: ar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-03-02 16:19+0100\n"
+"POT-Creation-Date: 2006-12-07 08:06+0100\n"
 "PO-Revision-Date: 2005-07-19 22:32+0300\n"
 "Last-Translator: Ossama M. Khayat <[EMAIL PROTECTED]>\n"
 "Language-Team: Arabic <[EMAIL PROTECTED]>\n"
@@ -26,47 +26,47 @@
 
 #. Type: select
 #. Choices
-#: ../phppgadmin.templates:3
+#: ../phppgadmin.templates:1001
 msgid "Apache"
 msgstr "Apache"
 
 #. Type: select
 #. Choices
-#: ../phppgadmin.templates:3
+#: ../phppgadmin.templates:1001
 msgid "Apache-SSL"
 msgstr "Apache-SSL"
 
 #. Type: select
 #. Choices
-#: ../phppgadmin.templates:3
+#: ../phppgadmin.templates:1001
 msgid "Apache-Perl"
 msgstr "Apache-Perl"
 
 #. Type: select
 #. Choices
-#: ../phppgadmin.templates:3
+#: ../phppgadmin.templates:1001
 msgid "Apache2"
 msgstr "Apache2"
 
 #. Type: select
 #. Choices
-#: ../phppgadmin.templates:3
+#: ../phppgadmin.templates:1001
 msgid "None"
 msgstr "لاشيء"
 
 #. Type: select
 #. Description
-#: ../phppgadmin.templates:5
-msgid "Which web server would you like to reconfigure automatically?"
+#: ../phppgadmin.templates:1002
+#, fuzzy
+msgid "Web server to reconfigure automatically:"
 msgstr "أي خادم وب تريد إعادة تهيئته تلقائياً؟"
 
 #. Type: select
 #. Description
-#: ../phppgadmin.templates:5
+#: ../phppgadmin.templates:1002
 msgid ""
 "phpPgAdmin supports any web server that PHP4 does, but this automatic "
 "configuration process only supports Apache servers."
 msgstr ""
-"يدعم phpPgAdmin أي خادم وب يدعمه PHP4، "
-"ولكن هذه التهيئة التلقائية تدعم فقط خوادم Apache."
-
+"يدعم phpPgAdmin أي خادم وب يدعمه PHP4، ولكن هذه التهيئة التلقائية تدعم فقط "
+"خوادم Apache."
diff -Nru phppgadmin-4.0.1.old/debian/po/ca.po phppgadmin-4.0.1/debian/po/ca.po
--- phppgadmin-4.0.1.old/debian/po/ca.po	2006-12-07 07:59:01.053011564 +0100
+++ phppgadmin-4.0.1/debian/po/ca.po	2006-12-13 23:35:5

Bug#403890: installation successfull with some manual work

2006-12-20 Thread Christian Perrier
Quoting peter green ([EMAIL PROTECTED]):
> 
> > 
> > This was possible in export installs and this is still possible in
> > expert installs. The behaviour has not changed with regard to that matter.
> > 
> i'm pretty sure i've never intentionally booted d-i in expert mode, and when 
> i did a sarge install i'm pretty sure i managed to skip creating a normal 
> user account (i think it prompted me for one and i selected some kind of 
> cancel option), unfortuntely i don't have any spare systems to test this on 
> now.

Yes, you probably did that: be prompted, hit ESC and then get the
option to skip the "normal user" test.

Which you can also do in the etch install, IIRC.




signature.asc
Description: Digital signature


Bug#331638: elinks: cannot render UTF-8 properly

2006-12-20 Thread Kalle Olavi Niemitalo
Gabor Gombas <[EMAIL PROTECTED]> writes:

> It seems that elinks cannot handle UTF-8 input/output properly. Symptoms
> include links containing accented characters jumping some positions to
> the left or becoming garbled when selected, or wrong cursor positioning
> in input fields when I enter accented characters. Google's Hungarian
> index page (http://www.google.co.hu) is a good example where all these
> happen.

In ELinks 0.12.GIT configured with --enable-utf-8,
 appears to render correctly.
In ELinks 0.12.0, --enable-utf-8 will probably be the default.

> From the symptoms I'd guess that elinks simply uses strlen() and ignores
> the fact that the displayed length of strings is not the same as the
> number of octets in them.

ELinks 0.12.GIT has code for converting bytes to Unicode characters,
and for counting the character cells that a character spans in a
terminal.  (However, it does not support combining characters,
and no such feature is planned for 0.12.0.)

Related upstream bugs at :
Bug 20 - UTF8 I/O can look absurd ;-)
Bug 375 - utf-8 form content (textarea) gets screwed if not displayable
Bug 822 - Should enable CONFIG_UTF8 by default (after it's safe)
Bug 824 - Unicode combining characters support


pgp4RSoAmdCo4.pgp
Description: PGP signature


Bug#403959: debootstrap: suite choices appear to be inaccurate and incomplete

2006-12-20 Thread Ross Boylan
Package: debootstrap
Version: 0.3.3.1
Severity: normal


If I have not misunderstood how the package operates, this might be
something worth fixing before etch release.

It appears the legal values for "suite" are determined by the entries
in  /usr/lib/debootstrap/scripts/.  I notice several things; the first
is the most important:

1) etch is a symlink to sid.  The correct value now would be testing,
and on release it will be stable, or not a symlink at all.

2) there is no entry for testing.  I think this means one can't easily
make a testing chroot, and also that I don't get the benefit of the
local files I have cached for testing.

3) Some of the entries are for versions that are quite old, or that I
just don't recognize.

Desired state:
1) etch gets the correct stuff.
2) a testing script exists.
3) perhaps clean some of the old stuff, if you think it wise.

Thanks.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (990, 'stable'), (50, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages debootstrap depends on:
ii  binutils  2.17-3 The GNU assembler, linker and bina
ii  wget  1.10.2-2   retrieves files from the web

debootstrap recommends no packages.

-- no debconf information


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



Bug#403909: bad /usr/share/sympa/web_tt2/authorization_reject.tt2 symlink

2006-12-20 Thread Jean Charles Delepine
"Stefan Hornburg (Racke)" <[EMAIL PROTECTED]> écrivait (wrote) :

> Jean Charles Delepine wrote:
> >Package: sympa
> >Version: 5.2.3-0.5
> >Severity: important
> >Tags: patch
> >
> >sympa native instalattion links 
> >/usr/share/sympa/mail_tt2/authorization_reject.tt2 to 
> >${PREFIX}/usr/share/sympa/web_tt2/authorization_reject.tt2
> 
> Is this a bug in Sympa or somehow related to the Debian
> packaging ?

sympa-5.2.3/mail_tt2/Makefile : 
rm -f $(DESTDIR)$(ETCBINDIR)/web_tt2/authorization_reject.tt2 ;
ln -s $(DESTDIR)$(ETCBINDIR)/mail_tt2/authorization_reject.tt2
$(DESTDIR)$(ETCBINDIR)/web_tt2

DESTDIR when native insallation will be somewhat like /usr/local/sympa
ETCBINDIR will be somewhat like share. 
Relative symlinks might be better but I don't think we can say it a bug.

But for debian packaging, install something like

/usr/share/sympa/web_tt2/authorization_reject.tt2 ->
/tmp/buildd/sympa-5.2.3/debian/sympa/usr/share/sympa/mail_tt2/authorization_reject.tt2

is definitly a bug.

-- 
> R : Tu vois !|| Jean Charles Delépine - Université de Picardie
> > Q : Tu crois ?  
> > > R : Ça casse l'ordre chronologique de l'échange.
> > > > Q : En quoi répondre au dessus est-il gênant ?



  1   2   3   4   >