Bug#440892: libgetopt-ocaml-dev: Dependency problem, makes package uninstallable with OCaml >= 3.10

2007-09-05 Thread S?stien Hinderer
Package: libgetopt-ocaml-dev
Version: 0.0.20040811-7
Severity: important

The package depends on ocaml-nox-3.09.2.
This constraints the use of this specific version of OCaml.
Depending on ocaml-nox (eventually with some constraint on the version
of that package) may be a better choice.


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



Bug#418596: AW: Bug#418596: nfs-common: Can not nfs-mount using second interface during boot

2007-09-05 Thread Steinar H. Gunderson
reassign 418596 initscripts
thanks

On Wed, Sep 05, 2007 at 02:22:48PM +1200, Phil Snowdon wrote:
> Here's a first cut that does (2) with a slight modification to mountnfs.

This is a rather interesting approach, but it's outside the scope of what I
can approve/nix. I'm reassigning to initscripts, which is the entity
containing mountnfs. (initscripts maintainers: Sorry for ping-ponging! :-) )

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


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



Bug#420598: [Mutt] #2882: segfaults in uxterm with > 254 columns if there are single byte 8-bit characters in index_format

2007-09-05 Thread Mutt
#2882: segfaults in uxterm with > 254 columns if there are single byte
8-bit characters in index_format

Changes (by pdmef):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 (In [bb4f47b4578d]) Fix buffer overflow in mutt_FormatString()

 The variable in question is supposed to track string sizes, not string
 widths (closes #2882 and #2900).

-- 
Ticket URL: 




Bug#440634: Fwd: [php-maint] FW: [ZEND-ENGINE-CVS] cvs: ZendEngine2(PHP_5_2) / zend_compile.c zend_compile.h zend_execute.c zend_execute.h zend_hash.c zend_hash.h zend_language_parser.y zend_object_ha

2007-09-05 Thread Jan Wagner

--- Begin Message ---
Hi Sean,

 

Dmitry who made the necessary fixes in the PHP 5.2.x tree just forwarded
me the patch.

It is attached.

With this patch the said Zend Framework functionality should work.

 

Btw, once you bundle a PHP version which actually works with Zend
Framework, would you be interested in bundling ZF itself? I will also be
talking to some other Linux distros about that.

 

Best,


Andi

 

 

From: Dmitry Stogov [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 10, 2007 7:58 AM
To: [EMAIL PROTECTED]
Subject: [ZEND-ENGINE-CVS] cvs: ZendEngine2(PHP_5_2) / zend_compile.c
zend_compile.h zend_execute.c zend_execute.h zend_hash.c zend_hash.h
zend_language_parser.y zend_object_handlers.c zend_vm_def.h
zend_vm_execute.h /tests bug35106.phpt bug36214.ph

 

dmitry  Wed Jan 10 15:58:09 2007 UTC 

  Added files: (Branch: PHP_5_2) 
/ZendEngine2/tests  bug35106.phpt bug36214.phpt bug39449.phpt 
bug39990.phpt 

  Modified files:  
/php-srcNEWS 
/ZendEngine2zend_compile.c zend_compile.h zend_execute.c 
zend_execute.h zend_hash.c zend_hash.h 
zend_language_parser.y zend_object_handlers.c 
zend_vm_def.h zend_vm_execute.h 
/ZendEngine2/tests  bug38146.phpt 
  Log: 
  - Fixed bug #35106 (nested foreach fails when array variable has a
reference). 
  - Fixed bug #36214 (__get method works properly only when conditional
operator is used). 
  - Fixed bug #39449 (Overloaded array properties do not work
correctly). 
  - Fixed bug #39990 (Cannot "foreach" over overloaded properties). 
  
  

http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.486&r2=1.2027.2.547.2.487&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.486 php-src/NEWS:1.2027.2.547.2.487
--- php-src/NEWS:1.2027.2.547.2.486 Wed Jan 10 14:11:44 2007
+++ php-src/NEWSWed Jan 10 15:58:07 2007
@@ -13,13 +13,20 @@
 - Fixed bug #40036 (empty() does not work correctly with ArrayObject when using
   ARRAY_AS_PROPS). (Ilia)
 - Fixed bug #40002 (Try/Catch performs poorly). (Dmitry)
+- Fixed bug #39990 (Cannot "foreach" over overloaded properties). (Dmitry)
 - Fixed bug #39979 (PGSQL_CONNECT_FORCE_NEW will causes next connect to
   establish a new connection). (Ilia)
 - Fixed bug #39504 (xmlwriter_write_dtd_entity() creates Attlist tag,
   not entity). (Hannes)
+- Fixed bug #39449 (Overloaded array properties do not work correctly).
+  (Dmitry)
 - Fixed bug #39394 (Missing check for older variants of openssl). (Ilia)
 - Fixed bug #38325 (spl_autoload_register() gaves wrong line for "class
   not found"). (Ilia)
+- Fixed bug #36214 (__get method works properly only when conditional operator
+  is used). (Dmitry)
+- Fixed bug #35106 (nested foreach fails when array variable has a reference).
+  (Dmitry)
 
 04 Jan 2007, PHP 5.2.1RC2
 - Small optimization of the date() function (Matt,Ilia)
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_compile.c?r1=1.647.2.27.2.25&r2=1.647.2.27.2.26&diff_format=u
Index: ZendEngine2/zend_compile.c
diff -u ZendEngine2/zend_compile.c:1.647.2.27.2.25 
ZendEngine2/zend_compile.c:1.647.2.27.2.26
--- ZendEngine2/zend_compile.c:1.647.2.27.2.25  Tue Jan  9 15:06:07 2007
+++ ZendEngine2/zend_compile.c  Wed Jan 10 15:58:07 2007
@@ -17,7 +17,7 @@
+--+
 */
 
-/* $Id: zend_compile.c,v 1.647.2.27.2.25 2007/01/09 15:06:07 dmitry Exp $ */
+/* $Id: zend_compile.c,v 1.647.2.27.2.26 2007/01/10 15:58:07 dmitry Exp $ */
 
 #include 
 #include "zend.h"
@@ -3677,11 +3677,12 @@
 }
 
 
-void zend_do_foreach_begin(znode *foreach_token, znode *open_brackets_token, 
znode *array, int variable TSRMLS_DC)
+void zend_do_foreach_begin(znode *foreach_token, znode *open_brackets_token, 
znode *array, znode *as_token, int variable TSRMLS_DC)
 {
zend_op *opline;
zend_bool is_variable;
zend_bool push_container = 0;
+   zend_op dummy_opline;
 
if (variable) {
if (zend_is_function_or_method_call(array)) {
@@ -3689,6 +3690,8 @@
} else {
is_variable = 1;
}
+   /* save the location of FETCH_W instruction(s) */
+   open_brackets_token->u.opline_num = 
get_next_op_number(CG(active_op_array));
zend_do_end_variable_parse(BP_VAR_W, 0 TSRMLS_CC);
if (CG(active_op_array)->last > 0 &&

CG(active_op_array)->opcodes[CG(active_op_array)->last-1].opcode == 
ZEND_FETCH_OBJ_W) {
@@ -3700,6 +3703,7 @@
}
} else {
is_variable = 0;
+   open_brackets_token->u.opline_num = 
get_next_op_number(CG(active_op_array));
}
 
/* save the location of FE_RESET */
@@ -3714,28 +3718,17 @@
opline->op1 = *array;
SET_UNUSED(opline->op2);
opline->extended_value

Bug#440872: reprepro: adding an architecture does not get the arch:all Packages included in it

2007-09-05 Thread Bernhard R. Link
* Cameron Dale <[EMAIL PROTECTED]> [070905 00:49]:
> I recently added a new architecture to my conf/distributions file. After
> that I did a "reprepro export" to get the new index files created, which
> worked fine (I thought). Looking back now, I see that the architecture:all
> packages in my archive are not in the new architecture's Packages files.
> Subsequently adding new-arch-specific packages did not add the arch:all
> packages to the new arch either.

This is (consequence of) intended behaviour. You can have different
versions (including no version) of an arch:all package within different
architectures (so one can have working binary packages of different
versions in different architectures depending on arch:all packages
of the same version and thinks still work).
The downsize is that reprepro thus stores arch:all packages just as
it handles binary packages, which just share the same file for the
different architectures.
As reprepro does not realize that there was a new architecture added,
it cannot special case that. And even if it could, and there would be
multiple other architectures yet, where should it copy them from, and
if the versions of their arch:all packages differ, which should it
choose?

> To get them added I had to manually
> traverse my pool and do "reprepro includedeb package.deb" for all the
> arch:all binary packages.

An easier way is to use the pull command. Add a pull rule like the
following into conf/pulls:

Name: copyarchall
From: 
Architectures: i386>powerpc
FilterFormula: Architecture (== all)

and add
Pull: copyarchall
to your distribtion in conf/distributions

Then call reprepro's pull command.

(Perhaps I should allow From: * for pull rules just as for update rules.
This way one could have one pull rule like that for all
distributions...)

Hochachtungsvoll,
Bernhard R. Link


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



Bug#440894: RFP: ufdbGuard -- an extremely fast and free URL filter

2007-09-05 Thread Meder Bakirov
Package: wnpp
Severity: wishlist

Package name: ufdbGuard
Version : 1.11
Upstream Author : ufdb <[EMAIL PROTECTED]>
URL : http://sourceforge.net/projects/ufdbguard/
License : GPL
Programming Lang: C
Description : an extremely fast and free URL filter

The fastest URL filter with 50,000 URL verifications/sec to filter unwanted 
web content. ufdbGuard is a redirector for the Squid internet proxy. 
ufdbGuard is approximately 9 times faster than squidguard.


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


Bug#440895: ITP: libgssglue-0.1 -- mechanism-switch gssapi library

2007-09-05 Thread Aníbal Monsalve Salazar
Package: wnpp
Severity: wishlist
Owner: Anibal Monsalve Salazar <[EMAIL PROTECTED]>

On Tue, Sep 04, 2007 at 03:52:47PM -0400, Kevin Coffman wrote:
>Date: Tue, 4 Sep 2007 15:52:47 -0400
>Message-ID: <[EMAIL PROTECTED]>
>From: Kevin Coffman <[EMAIL PROTECTED]>
>To: nfsv4 <[EMAIL PROTECTED]>
>Subject: libgssglue-0.1
>
>A new library, libgssglue is now available from:
>
>http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/libgssglue-0.1.tar.gz
>
>This update renames the library formerly known as libgssapi in order
>to resolve a name conflict with the Heimdal and MIT Kerberos library
>of the same name.
>
>This name change requires changes to librpcsecgss which are included
>in librpcsecgss-0.15.
>
>Changes since libgssapi-0.11:
>
> * Rename library from libgssapi to libgssglue to
>  resolve conflicts with Heimdal and MIT libraries
>  named libgssapi.
>* Patch from Luke Howard <[EMAIL PROTECTED]> to allow
>  application to continue to "function" even if no
>  mechanisms are correctly configured.
>___
>NFSv4 mailing list
>[EMAIL PROTECTED]
>http://linux-nfs.org/cgi-bin/mailman/listinfo/nfsv4

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


signature.asc
Description: Digital signature


Bug#440897: instead of music/sound I get static noise

2007-09-05 Thread Rafal Czlonka
Package: btanks
Version: 0.5.4740-2
Severity: normal

Hi,
After starting the game all I can hear is a static noise. I think it
might be an endianness related problem as I've experienced it with
other programs in the past.
The audio files sound normal when using an audio player.

BTW, the /usr/share/games/btanks/data/sounds/boomerang-missile.ogg file
has an execution bit set.

Cheers,
Raf

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

Kernel: Linux 2.6.22-2-powerpc
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages btanks depends on:
ii  btanks-data 0.5.4740-2   fast 2D tank arcade game - game da
ii  libc6   2.6.1-2  GNU C Library: Shared libraries
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libgcc1 1:4.2.1-5GCC support library
ii  libgl1-mesa-glx [libgl1 7.0.1-2  A free implementation of the OpenG
ii  libopenal0a 1:0.0.8-6OpenAL is a portable library for 3
ii  libsdl-image1.2 1.2.6-1  image loading library for Simple D
ii  libsdl1.2debian 1.2.11-9 Simple DirectMedia Layer
ii  libsigc++-2.0-0c2a  2.0.17-2 type-safe Signal Framework for C++
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  libvorbisfile3  1.2.0.dfsg-2 The Vorbis General Audio Compressi
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

btanks recommends no packages.

-- no debconf information


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



Bug#440892: libgetopt-ocaml-dev: Dependency problem, makes package uninstallable with OCaml >= 3.10

2007-09-05 Thread Ralf Treinen
On Wed, Sep 05, 2007 at 08:49:29AM +0200, S?stien Hinderer wrote:
> Package: libgetopt-ocaml-dev
> Version: 0.0.20040811-7
> Severity: important
> 
> The package depends on ocaml-nox-3.09.2.
> This constraints the use of this specific version of OCaml.
> Depending on ocaml-nox (eventually with some constraint on the version
> of that package) may be a better choice.

The debian-ocaml-maint team is currently performing a transition from ocaml
3.09 to ocaml 3.10 in unstable. All packages will be recompiled and uploaded
soon. 

If you wish you can recompile the package locally, the dependency on
he ocaml version will be filled in auomatically at package build time.

-Ralf.


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



Bug#440896: virtualbox: /etc/init.d/vboxdrv setup fails

2007-09-05 Thread Elmar Haneke
Package: virtualbox
Version: 1.4.0svn4130-dfsg-1
Severity: normal


invoking "/etc/init.d/vboxdrv setup" does fail to generate kernel modules:

# ./vboxdrv setup
Stopping VirtualBox kernel module: vboxdrv.
Recompiling VirtualBox kernel module: vboxdrv
* Look at /var/lib/vbox-install.log to find out what went wrong
# cat /var/lib/vbox-install.log
./vboxdrv: line 162: /usr/lib/virtualbox/src/build_in_tmp: Datei oder
Verzeichnis nicht gefunden



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

Kernel: Linux 2.6.14-mywin4lin (PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages virtualbox depends on:
ii  libasound21.0.14a-2  ALSA library
ii  libc6 2.6.1-2GNU C Library: Shared libraries
hi  libgcc1   1:4.2.1-5  GCC support library
ii  libgl1-mesa-glx [libgl1]  7.0.1-2A free implementation of the OpenG
ii  libglib2.0-0  2.14.0-2   The GLib library of C routines
ii  libidl0   0.8.8-0.1  library for parsing CORBA IDL file
ii  libqt3-mt 3:3.3.7-7  Qt GUI Library (Threaded runtime v
ii  libsdl1.2debian   1.2.11-9   Simple DirectMedia Layer
hi  libstdc++64.2.1-5The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxalan110   1.10-3.1   Provides XSLT support for applicat
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxerces27   2.7.0-4validating XML parser library for 
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library

Versions of packages virtualbox recommends:
pn  virtualbox-modules (no description available)
ii  virtualbox-source1.4.0svn4130-dfsg-1 Source for the VirtualBox module

-- debconf information:
* virtualbox/module-compilation-allowed: true
* virtualbox/present-virtualbox-puel-1-2:
  virtualbox/module-compilation-failed:
* virtualbox/accepted-virtualbox-puel-1-2: true
  virtualbox/error-virtualbox-puel-1-2:
* virtualbox/group-vboxusers:


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



Bug#440896: virtualbox: /etc/init.d/vboxdrv setup fails

2007-09-05 Thread Patrick Winnertz
Am Mittwoch, 5. September 2007 09:33:18 schrieb Elmar Haneke:
> Package: virtualbox
> Version: 1.4.0svn4130-dfsg-1
> Severity: normal
>
>
> invoking "/etc/init.d/vboxdrv setup" does fail to generate kernel
> modules:
>
> # ./vboxdrv setup
> Stopping VirtualBox kernel module: vboxdrv.
> Recompiling VirtualBox kernel module: vboxdrv
> * Look at /var/lib/vbox-install.log to find out what went wrong
> # cat /var/lib/vbox-install.log
> ./vboxdrv: line 162: /usr/lib/virtualbox/src/build_in_tmp: Datei oder
> Verzeichnis nicht gefunden#

This sounds strange to me... we doesn't include and init script within our 
package. Can you please check from which package this initscript is? 

Greetings
Winnie


ps: Virtualbox has also no debconf questions... so I really do not know 
what you have done there.



-- 
 .''`.   Patrick Winnertz <[EMAIL PROTECTED]>
:  :' :  GNU/Linux Debian-Edu Developer
`. `'`   http://www.der-winnie.de http://d.skolelinux.org/~winnie
  `-  Debian - when you have better things to do than fixing systems


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



Bug#439392: Security Update for Etch?

2007-09-05 Thread Alexis Sukrieh

Micha Lenk wrote:

Hi Alexis,

when will there be a security update available for Debian Etch?

Thanks for your support


Hi,

I've submitted a patch for the etch package to the security team. It's 
in their hands and is waiting for approval.


I'm waiting to see it going into the security updates as well ;)

Regards,

--
Alexis Sukrieh



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



Bug#399183: xserver-xorg: incorrectly calculates TrueType font metrics

2007-09-05 Thread Juliusz Chroboczek
Tags: upstream, wontfix

Hi.  (I'm the original author of the FreeType backend in X.Org.)

This bug was introduced in revision 1.32 of ftfuncs.c[1] in XFree86
CVS[2] on 19 October 2003 by David Dawes <[EMAIL PROTECTED]>.  This
commit was made against my opinion (as expressed on the internal
XFree86 mailing list), and was one of the reasons why I resigned from
XFree86.

The current version of ftfuncs.c in X.Org was branched from XFree86,
unfortunately after the afore-mentioned commit.  I believe that there
is currently nobody who understands the mess that has been made out of
my formerly relatively clean code (to the extent that anything
relating to core fonts can be clean).

If you wish to work on the FreeType backend, I encourage you to study
commit 1.32 and undo the mess.  For now, I'm marking this report as
wontfix and CC-ing upstream.

Regards,

Juliusz

[1] 
http://cvsweb.xfree86.org/cvsweb/xc/lib/font/FreeType/ftfuncs.c.diff?r1=1.31&r2=1.32
[2] http://cvsweb.xfree86.org/cvsweb/


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



Bug#440898: quicklist: [INTL:sv] Swedish PO translation

2007-09-05 Thread Daniel Nylander
Package: quicklist
Severity: wishlist
Tags: patch l10n


Here is the Swedish translation for quicklist

Regards,
Daniel

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

Kernel: Linux 2.6.17.4
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=UTF-8) (ignored: LC_ALL set to 
sv_SE)
Shell: /bin/sh linked to /bin/bash

Versions of packages quicklist depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
pn  libglib1.2 (no description available)
ii  libgtk1.2 1.2.10-18.1The GIMP Toolkit set of widgets fo
pn  libgtkextra17  (no description available)
ii  xlibs 6.9.0.dfsg.1-6 X Window System client libraries m

quicklist recommends no packages.
# Swedish translation for quicklist.
# Copyright (C) 2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the quicklist package.
# Daniel Nylander <[EMAIL PROTECTED]>, 2007.
#
msgid ""
msgstr ""
"Project-Id-Version: quicklist\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-09-03 21:49+0100\n"
"PO-Revision-Date: 2007-09-05 10:00+0100\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../src/dim_list_menu.c:134
#: ../src/filein.c:687
#: ../src/fileout.c:508
msgid "QuickList files *.qlf"
msgstr "QuickList-filer *.qlf"

#: ../src/edit.c:374
msgid "Clipboard is limited to 5,000 rows"
msgstr "Urklipp är begränsat till 5000 rader"

#: ../src/field.c:309
msgid "Decimal places"
msgstr "Decimalpositioner"

#: ../src/field.c:350
#, c-format
msgid "Column %u"
msgstr "Kolumn %u"

#: ../src/field.c:387
msgid "The number of decimal places must be between 0 to 9"
msgstr "Antalet decimalposition måste vara mellan 0 och 9"

#: ../src/field.c:586
msgid "Edit Column Information"
msgstr "Redigera kolumninformation"

#: ../src/field.c:592
#: ../src/filter.c:289
#: ../src/report.c:1072
#: ../src/report.c:1172
msgid "Column Name"
msgstr "Kolumnnamn"

#: ../src/field.c:605
msgid "Text"
msgstr "Text"

#: ../src/field.c:614
msgid "Numeric"
msgstr "Numerisk"

#: ../src/field.c:623
msgid "Date"
msgstr "Datum"

#: ../src/field.c:632
msgid "Time"
msgstr "Tid"

#: ../src/field.c:643
msgid "Left"
msgstr "Vänster"

#: ../src/field.c:652
msgid "Center"
msgstr "Mitten"

#: ../src/field.c:661
msgid "Right"
msgstr "Höger"

#. Translators: this is the name of a new file before being saved with a name
#: ../src/field.c:864
#: ../src/field.c:865
msgid "Untitled_New_List"
msgstr "Namnlös_ny_lista"

#: ../src/filein.c:616
msgid "Error: "
msgstr "Fel: "

#: ../src/filein.c:617
msgid "This file is apparently not the type that you selected."
msgstr "Den här filen är tydligen inte av den typ som du valde."

#: ../src/filein.c:691
msgid "Open a list"
msgstr "Öppna en lista"

#: ../src/filein.c:701
msgid "Import a file"
msgstr "Importera en fil"

#: ../src/filein.c:708
msgid "All files *"
msgstr "Alla filer *"

#: ../src/filein.c:801
msgid "HTML document, *.html"
msgstr "HTML-dokument, *.html"

#: ../src/filein.c:806
msgid "Comma delimited, *.csv"
msgstr "Kommaseparerad, *.csv"

#: ../src/filein.c:810
msgid "Tab delimited, *.tsv"
msgstr "Tabulatoravgränsad, *.tsv"

#: ../src/fileout.c:98
msgid "Entire file"
msgstr "Hela filen"

#: ../src/fileout.c:105
msgid "Allowed by filter"
msgstr "Tillåts av filter"

#: ../src/fileout.c:114
msgid "Highlighted cells"
msgstr "Färgmarkerade celler"

#: ../src/fileout.c:411
#: ../src/fileout.c:429
#: ../src/fileout.c:445
#: ../src/fileout.c:461
msgid "Can't write the file.  Strange."
msgstr "Kan inte skriva filen.  Konstigt."

#: ../src/fileout.c:510
msgid "Save this list"
msgstr "Spara den här listan"

#: ../src/fileout.c:515
msgid "Untitled list"
msgstr "Namnlös lista"

#: ../src/fileout.c:533
msgid "Export to a file"
msgstr "Exportera till en fil"

#: ../src/fileout.c:580
msgid "This file has been changed. Do you want to save it to disk?"
msgstr "Den här filen har ändrats. Vill du spara den till disk?"

#. TRANSLATORS: Replace this string with your names, one name per line.
#: ../src/help.c:49
msgid "translator-credits"
msgstr "Daniel Nylander <[EMAIL PROTECTED]>"

#: ../src/help.c:59
msgid "GTK2 utility for making lists of things."
msgstr "GTK2-verktyg för att skapa listor över saker."

#: ../src/help.c:75
msgid "Homepage:"
msgstr "Webbplats:"

#: ../src/filter.c:213
msgid "Internal error in tools_compare_record: Invalid field type."
msgstr "Internt fel i tools_compare_record: Ogiltig fälttyp."

#: ../src/filter.c:252
msgid "Select a filter"
msgstr "Välj ett filter"

#: ../src/filter.c:286
#: ../src/report.c:1069
#: ../src/report.c:1169
msgid "Available columns"
msgstr "Tillgängliga kolumner"

#: ../src/filter.c:413
msgid "** PANIC ** in _filter_entry_handler"
msgstr "** PAN

Bug#408888: closed by Matthias Klose <[EMAIL PROTECTED]> (Bug#408888: fixed in gcc-4.1 4.1.2-15)

2007-09-05 Thread Samuel Thibault
Samuel Thibault, le Mon 03 Sep 2007 00:57:27 +0200, a écrit :
> > please check the 4.2
> 
> It is already fine.

Ah, actually no, it's not any more thanks to the new snapshot.

> > and 4.3 branches as well.
> 
> I'll have a look (I hadn't noticed that that branch got opened).

Some other patches got merged there too.

> > what is the upstream status of libjava-hurdfix.dpatch? I didn't see
> > the libltdl changes forwarded upstream.
> 
> It looks like that one is not needed any more actually.  I'll check that
> too.

It is not indeed.

Here are the three patches.  You will notice that I actually had to fix
configure.host again: gnu* doesn't match i486-gnu.

Samuel
Index: debian/patches/libjava-hurdfix.dpatch
===
--- debian/patches/libjava-hurdfix.dpatch   (révision 2471)
+++ debian/patches/libjava-hurdfix.dpatch   (copie de travail)
@@ -48,57 +48,6 @@
 +#endif
caseSensitive = true;
  }
-diff -ur gcj-4.1.1/libjava/libltdl/acinclude.m4 
gcj-4.1.1/libjava/libltdl/acinclude.m4
 gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 13:35:07.0 
+0200
-+++ gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 11:07:03.0 
+0200
-@@ -1413,7 +1413,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
-diff -ur gcj-4.1.1/libjava/libltdl/configure 
gcj-4.1.1/libjava/libltdl/configure
 gcj-4.1.1/libjava/libltdl/configure2006-05-12 13:35:21.0 
+0200
-+++ gcj-4.1.1/libjava/libltdl/configure2006-05-12 11:07:15.0 
+0200
-@@ -8380,7 +8380,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
-@@ -12021,7 +12021,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
-@@ -15097,7 +15097,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
-@@ -17380,7 +17380,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
 diff -ur gcj-4.1.1/libjava/configure.host gcj-4.1.1/libjava/configure.host  
 --- gcj-4.1.1/libjava/configure.host   2006-09-07 01:00:37.0 +0200
 +++ gcj-4.1.1/libjava/configure.host   2006-09-07 01:00:37.0 +0200
Index: debian/patches/libjava-hurdfix.dpatch
===
--- debian/patches/libjava-hurdfix.dpatch   (révision 2471)
+++ debian/patches/libjava-hurdfix.dpatch   (copie de travail)
@@ -27,57 +27,6 @@
 exit 0
 
 
-diff -ur gcj-4.1.1/libjava/libltdl/acinclude.m4 
gcj-4.1.1/libjava/libltdl/acinclude.m4
 gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 13:35:07.0 
+0200
-+++ gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 11:07:03.0 
+0200
-@@ -1413,7 +1413,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
-diff -ur gcj-4.1.1/libjava/libltdl/configure 
gcj-4.1.1/libjava/libltdl/configure
 gcj-4.1.1/libjava/libltdl/configure2006-05-12 13:35:21.0 
+0200
-+++ gcj-4.1.1/libjava/libltdl/configure2006-05-12 11:07:15.0 
+0200
-@@ -8380,7 +8380,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
-@@ -12021,7 +12021,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
-@@ -15097,7 +15097,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
-@@ -17380,7 +17380,7 @@
-   ;;
- 
- # This must be Linux ELF.
--linux*)
-+linux*|gnu*)
-   version_type=linux
-   need_lib_prefix=no
-   need_version=no
 diff -ur gcj-4.1.1/libjava/configure.host gcj-4.1.1/libjava/configure.host  
 --- gcj-4.1.1/libjava/configure.host   2006-09-07 01:00:37.0 +0200
 +++ gcj-4.1.1/libjava/configure.host   2006-09-07 01:00:37.0 +0200
@@ -85,52 +34,8 @@
  esac
  
  case "${host}" in
--  *linux*|*-kfreebsd*-gnu)
-+  *linux*|*-kfreebsd*-gnu|*gnu*)
+-  *linux*|*-kfreebsd*-gnu|gnu*)
++  *linux*|*-kfreebsd*-gnu|*-gnu*)
  use_libgcj_bc=yes
;;
*)
-Index: gcc-4.1.1/libjava/java/lang/natPosixProcess.cc
-===
 gcc-4.1.1/libjava/java/lang/natPosixProcess.cc (révision 127274)
-+++ gcc-4.1.1/libjava/java/lang/natPosixProcess.cc (copie de travail)
-@@ -110,7 +110,11 @@
- // sigwait() on SIGCHLD.  The information passed is ignored as it
- // will be recovered by the waitpid() call.
- static void
-+#ifdef SA_SIGINFO
- sigchld_handler (int sig, siginfo_t *si, void *third)
-+#else
-+sigc

Bug#439827: grep -vw segfault on word matches in UTF-8 locales

2007-09-05 Thread arno
Le mardi 04 septembre 2007, à 22:46:38 -0500, Santiago a écrit : 
> 
> Uploaded another version. Sorry, in my running I didn't build correctly 
> the package and forgot to upload the source.
> 

With that version, problem is fixed on my machine.

arno.


signature.asc
Description: Digital signature


Bug#440860: gambas2: FTBFS on amd64: cast from 'char*' to 'int' loses precision

2007-09-05 Thread Damyan Ivanov
-=| José L. Redrejo Rodríguez,  5.09.2007 10:06 |=-
> Hi, thanks for your info, but gambas2 is not compatible with the amd64
> architecture, and it's not built in Debian for that arch [...]

Oh, sorry for the noise then.

I guess I was misled by the following changelog entry:
 * debian/control: firebird control only available to i386 & amd64 archs

--
dam



signature.asc
Description: OpenPGP digital signature


Bug#440900: icedove: Ugly display of iso-2022-jp text.

2007-09-05 Thread Charles Plessy
Package: icedove
Version: 1.5.0.12.dfsg1-0etch1+lenny1
Severity: minor

Hi,

When I read mail which is encoded in iso-2022-jp in iceweasel, the latin
characters are displayed an ugly double-spaced font. For messages
written completely in english, this is very annoying...

I can send you a screenshot if need is...

Have a nice day,

-- Charles Plessy, Wako, Saitama, Japan

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

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

Versions of packages icedove depends on:
ii  debconf [debconf-2. 1.5.14   Debian configuration management sy
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libgcc1 1:4.2.1-4GCC support library
ii  libglib2.0-02.14.0-2 The GLib library of C routines
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libpango1.0-0   1.16.5-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libstdc++6  4.2.1-4  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  myspell-en-us [mysp 1:2.3.0~src680m225-1 English_american dictionary for my
ii  myspell-fr-gut [mys 1:1.0-19.1   The French dictionary for myspell 
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

icedove recommends no packages.

-- debconf information:
  icedove/browser: Debian


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



Bug#399183: xserver-xorg: incorrectly calculates TrueType font metrics

2007-09-05 Thread Daniel Stone
On Wed, Sep 05, 2007 at 10:02:33AM +0200, Juliusz Chroboczek wrote:
> Hi.  (I'm the original author of the FreeType backend in X.Org.)
> 
> This bug was introduced in revision 1.32 of ftfuncs.c[1] in XFree86
> CVS[2] on 19 October 2003 by David Dawes <[EMAIL PROTECTED]>.  This
> commit was made against my opinion (as expressed on the internal
> XFree86 mailing list), and was one of the reasons why I resigned from
> XFree86.
> 
> The current version of ftfuncs.c in X.Org was branched from XFree86,
> unfortunately after the afore-mentioned commit.  I believe that there
> is currently nobody who understands the mess that has been made out of
> my formerly relatively clean code (to the extent that anything
> relating to core fonts can be clean).
> 
> If you wish to work on the FreeType backend, I encourage you to study
> commit 1.32 and undo the mess.  For now, I'm marking this report as
> wontfix and CC-ing upstream.

Hi Juliusz,
As our resident font luminary (being that you seem to know the turf, and
none of the rest of us know much about it), you're more than welcome to
fix it, should you choose to.

Cheers,
Daniel


signature.asc
Description: Digital signature


Bug#440901: ITP: val-and-rick -- shooter game

2007-09-05 Thread Debian Games Team
Package: wnpp
Severity: wishlist
Owner: Debian Games Team <[EMAIL PROTECTED]>


* Package name: val-and-rick
  Version : 0.1a
  Upstream Author : Kenta Cho <[EMAIL PROTECTED]>
* URL : http://www.asahi-net.or.jp/~cs8k-cyu/windows/vr0_1a.zip
* License : BSD
  Programming Lang: D
  Description : shooter game

 Val & Rick is probably the precursor to Gunroar, featuring similar
 controls but in a different environment. Only 2D sprites and backgrounds
 are used in what seems like a tribute to Xevious and Star Soldier.

 Val & Rick is another gem among many by Kenta Cho.


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



Bug#440899: openoffice.org-gcj: requires java-gcj-compat

2007-09-05 Thread Pascal A. Dupuis
Package: openoffice.org-gcj
Version: 2.2.1-8
Severity: normal

Hello,
today I upgraded to openoffice.org-2.2 as it landed into testing. I also 
installed the gcj package, then started openoffice: the gcj was not 
recognised as a valid JRE. Having installed java-gcj-compat, a 'FSF 
version 1.5' appeared. I guess java-gcj-compat should be a pre-requisite 
of this package.

Best regards

Pascal Dupuis

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

Kernel: Linux 2.6.22.5
Locale: LANG=fr_BE, LC_CTYPE=fr_BE (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash


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



Bug#440902: window placement of scan dialog

2007-09-05 Thread martin f krafft
Package: gscan2pdf
Version: 0.9.14
Severity: minor

The gscan2pdf scan dialog is dynamic in the sense that it displays
and then grows as soon as devices and their options are known.

The problem is that it always grows outside of the screen. The
"scanning for devices" part is centred and then the dialog grows
downwards. I like the fact the top edge does not move, but maybe the
whole dialog could be started further up?

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

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

Versions of packages gscan2pdf depends on:
ii  libglib-perl1:1.152-1Perl interface to the GLib and GOb
ii  libgtk2-ex-simple-l 0.50-1   A simple interface to Gtk2's compl
ii  libgtk2-perl1:1.140-1Perl interface to the 2.x series o
ii  liblocale-gettext-p 1.05-1   Using libc functions for internati
ii  libpdf-api2-perl0.62-1   provides the functions for creatin
ii  libsane 1.0.19~cvs20070730-1 API library for scanners
ii  libtiff-tools   3.8.2-7  TIFF manipulation and conversion t
ii  perlmagick  7:6.2.4.5.dfsg1-1+b1 A perl interface to the libMagick 
ii  sane-utils  1.0.19~cvs20070730-1 API library for scanners -- utilit

Versions of packages gscan2pdf recommends:
ii  djvulibre-bin 3.5.19-3   Utilities for the DjVu image forma
ii  gocr  0.41-1+b1  A command line OCR
ii  libgtk2-ex-podviewer-perl 0.14-2.1   Perl Gtk2 widget for displaying Pl
ii  sane  1.0.14-4   scanner graphical frontends
ii  tesseract-ocr 1.02-3 Command line OCR tool
ii  unpaper   0.2-2  post-processing tool for scanned p
ii  xdg-utils 1.0.1-2Desktop integration utilities from

-- no debconf information


-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#402885: Another upstream release

2007-09-05 Thread draeath
FYI:

2.4.1 has been released. Changelog follows.


Version 2.4.1 (2007 9 2):
- Fixed load/save bug (Jimmy Salmon)
- Move to new map layout (Francois Beerten)
- Added Portuguese translation (Giovanni Oliveira)
- Made the language options menu more dynamic (Francois Beerten)
- Added the ability to change directories in the file browser (Jimmy Salmon)
- Using OpenGL is a run-time option (Jimmy Salmon)
- Fixed compilation on OS X (Francois Beerten)


(message posted to both bugs 437382 and 437385)


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



Bug#429351: Patch for Newt

2007-09-05 Thread Jérémy Bobbio
tags 429351 + d-i
thanks

Hi!

On Fri, Jul 13, 2007 at 12:52:49PM +0100, Alastair McKinstry wrote:
> Thanks for the patch; I will test it out, and possibly include it in newt.
> 
> I'm wary about changing the API for newt, even for additions: I'd
> prefer to get it adopted upstream first. However upstream has not
> included the Bidi patches so far, I'd like to see why.

Have you made any progress on this issue?

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#440904: virtualbox-source: When virtualbox is running, ksoftirqd takes 20% proc

2007-09-05 Thread Vincent Bernat
Package: virtualbox-source
Version: 1.4.0svn4130-dfsg-1
Severity: normal

Hi !

When running VirtualBox, ksoftirqd takes 20% proc:
4 root  34  19 000 S   23  0.0 225:07.50  ksoftirqd/0   
 

Removing and reloading vboxdrv module does not change this behavior.

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

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

Versions of packages virtualbox-source depends on:
ii  bzip2 1.0.3-7high-quality block-sorting file co
ii  debhelper 5.0.53 helper programs for debian/rules
ii  dpatch2.0.27 patch maintenance system for Debia
ii  kbuild1080-2 framework for writing simple makef
ii  module-assistant  0.10.11tool to make module package creati

virtualbox-source recommends no packages.

-- no debconf information


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



Bug#440903: split package in ladspa-sdk and ladspa-sdk-demoplugins

2007-09-05 Thread Tim Blechmann
Package: ladspa-sdk
Version: 1.1-6
Severity: wishlist

the ladspa sdk provides some demo plugins:
/usr/lib/ladspa/amp.so
/usr/lib/ladspa/delay.so
/usr/lib/ladspa/filter.so
/usr/lib/ladspa/noise.so
/usr/lib/ladspa/sine.so

according to /usr/share/doc/ladspa-sdk/example_plugins.html, plugins with the 
same 
functionality are also included in the cmt plugin set. thus i would propose to 
split 
this package in to two packages. one for providing the sdk and one for 
providing the 
demo plugins. thus it can be avoided that people have two functionally 
equivalent 
plugins installed on their machines, if they install both ladspa-sdk and cmt

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

Kernel: Linux 2.6.22.2-rt9-amd64 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages ladspa-sdk depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libgcc1   1:4.2.1-4  GCC support library
ii  libstdc++64.2.1-4The GNU Standard C++ Library v3

ladspa-sdk recommends no packages.

-- debconf-show failed


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



Bug#372943: The makefile supports 64bit...

2007-09-05 Thread Joachim Breitner
Hi,

this is how I got this to work on my machine (64bit Kernel, 32bit
Userspace). I’m not sure which of these changes are actually needed.

diff -Nru /tmp/4Sdbx3PtXd/vnstat-1.4/debian/changelog 
/tmp/ZsFMB9p4cp/vnstat-1.4/debian/changelog
--- /tmp/4Sdbx3PtXd/vnstat-1.4/debian/changelog 2007-09-05 10:46:17.0 
+0200
+++ /tmp/ZsFMB9p4cp/vnstat-1.4/debian/changelog 2007-09-05 10:46:17.0 
+0200
@@ -1,3 +1,9 @@
+vnstat (1.4-4.nomeata1) unstable; urgency=low
+
+  * fix for 64bit
+
+ -- Joachim Breitner <[EMAIL PROTECTED]>  Wed,  5 Sep 2007 10:28:22 +0200
+
 vnstat (1.4-4) unstable; urgency=low
 
   * New maintainer. (Closes: #394800)
diff -Nru /tmp/4Sdbx3PtXd/vnstat-1.4/debian/rules 
/tmp/ZsFMB9p4cp/vnstat-1.4/debian/rules
--- /tmp/4Sdbx3PtXd/vnstat-1.4/debian/rules 2007-09-05 10:46:17.0 
+0200
+++ /tmp/ZsFMB9p4cp/vnstat-1.4/debian/rules 2007-09-05 10:46:17.0 
+0200
@@ -24,7 +24,7 @@
dh_testdir
 
# Add here commands to compile the package.
-   $(MAKE) CFLAGS="$(CFLAGS)"
+   $(MAKE) 64bit CFLAGS="$(CFLAGS)"
 
touch build-stamp
 
diff -Nru /tmp/4Sdbx3PtXd/vnstat-1.4/src/misc.c 
/tmp/ZsFMB9p4cp/vnstat-1.4/src/misc.c
--- /tmp/4Sdbx3PtXd/vnstat-1.4/src/misc.c   2004-03-26 14:22:42.0 
+0100
+++ /tmp/ZsFMB9p4cp/vnstat-1.4/src/misc.c   2007-09-05 10:46:17.0 
+0200
@@ -4,7 +4,7 @@
 void kerneltest(void)
 {
FILE *fp;
-   int i=0, check, b1, b2;
+   long i=0, check, b1, b2;
char temp[64];
 
if ((fp=fopen("/proc/stat","r"))==NULL) {
@@ -28,7 +28,7 @@
exit(1);
}
 
-   b1=strtoul(statline+6, (char **)NULL, 0);
+   b1=strtoull(statline+6, (char **)NULL, 0);
fclose(fp);
 
printf("This test will take about 20 seconds.\n");
@@ -54,7 +54,7 @@
break;
}
}
-   b2=strtoul(statline+6, (char **)NULL, 0);
+   b2=strtoull(statline+6, (char **)NULL, 0);
fclose(fp);
 
printf(" done\n\n");
diff -Nru /tmp/4Sdbx3PtXd/vnstat-1.4/src/proc.c 
/tmp/ZsFMB9p4cp/vnstat-1.4/src/proc.c
--- /tmp/4Sdbx3PtXd/vnstat-1.4/src/proc.c   2004-03-26 14:22:42.0 
+0100
+++ /tmp/ZsFMB9p4cp/vnstat-1.4/src/proc.c   2007-09-05 10:46:17.0 
+0200
@@ -71,7 +71,7 @@
int day, month, year, hour, min, shift;
int rxkchange=0, txkchange=0;   /* changes in the kB 
counters */
 
-   btime=strtoul(statline+6, (char **)NULL, 0);
+   btime=strtoull(statline+6, (char **)NULL, 0);
 
/* btime in /proc/stat seems to vary �1 second so we use btime-BVAR 
just to be safe */
/* the variation is also slightly different between various kernels... 
*/


-- 
Joachim "nomeata" Breitner
Debian Developer
  [EMAIL PROTECTED] | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: [EMAIL PROTECTED] | http://people.debian.org/~nomeata




Bug#440905: bashbug: tries to use rmail but it's not in PATH

2007-09-05 Thread Timo Juhani Lindfors
Package: bash
Version: 3.1dfsg-8
Severity: normal

My MTA is exim 3.36-18.2. bashbug looks for /usr/lib/sendmail or
/usr/sbin/sendmail and then falls back to "rmail". This won't work
since the rmail symlink is in /usr/sbin/rmail which is not in the PATH
of a normal user. Is there some /etc/alternatives style symlink that
would always be present and allow programs to send email regardless of
the MTA?

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-k7
Locale: LANG=C, LC_CTYPE=fi_FI (charmap=ISO-8859-1)

Versions of packages bash depends on:
ii  base-files 4 Debian base system miscellaneous f
ii  debianutils2.17  Miscellaneous utilities specific t
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand

bash recommends no packages.

-- no debconf information


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



Bug#440902: window placement of scan dialog

2007-09-05 Thread Jeffrey Ratcliffe
On 05/09/07, martin f krafft <[EMAIL PROTECTED]> wrote:
> The problem is that it always grows outside of the screen. The
> "scanning for devices" part is centred and then the dialog grows
> downwards. I like the fact the top edge does not move, but maybe the
> whole dialog could be started further up?

At the moment, all the dialog windows *start* in the centre of their
parent. It is a GTK+ option. I could leave the placement to the window
manager (which I have done in the past and didn't like). I could
remember the position from the previous session. I could spread the
scan dialog into several tabs.

I suppose remembering the position makes the most sense.


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



Bug#439827: grep -vw segfault on word matches in UTF-8 locales

2007-09-05 Thread arno
Le mercredi 05 septembre 2007, à 10:05:17 +0200, arno a écrit : 
> Le mardi 04 septembre 2007, à 22:46:38 -0500, Santiago a écrit : 
> > 
> > Uploaded another version. Sorry, in my running I didn't build correctly 
> > the package and forgot to upload the source.
> > 
> 
> With that version, problem is fixed on my machine.
> 
> arno.

Oups, looks like it does not work so well.
with your latest version, -w is fixed, but now, -i is broken:

$ echo word > file
$ echo Word >> file
$ grep -i word file
word


signature.asc
Description: Digital signature


Bug#440888: qemubuilder: creating base does not work for ARM

2007-09-05 Thread Junichi Uekawa
Hi,

> 
> qemubuilder --create does not work here for the ARM platform (following
> the wiki for getting kernels). For some undetermined reason, the kernel
> reports the NIC as eth0 but ifconfig -a shows it to be eth2.
> 
> The following hack does not really attempt to fix the problem, but
> displays a bit more information through ifconfig -a before attempting to
> up the interfaces and makes use of the first "ethX" interface to call
> dhcpdclient, therefore allowing --create to work for me on ARM.

Can you send the logs as proof ?  It sounds weird (and it works for me
).

regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#440903: split package in ladspa-sdk and ladspa-sdk-demoplugins

2007-09-05 Thread Junichi Uekawa
> 
> according to /usr/share/doc/ladspa-sdk/example_plugins.html, plugins
> with the same functionality are also included in the cmt plugin
> set. thus i would propose to split this package in to two
> packages. one for providing the sdk and one for providing the demo
> plugins. thus it can be avoided that people have two functionally
> equivalent plugins installed on their machines, if they install both
> ladspa-sdk and cmt

They are so small the difference is negligible.

regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#416057: Please decrease the severity and rename

2007-09-05 Thread Anton Ivanov
Please decrease the severity and rename:

arts allows values for fragmentation and buffering which esd cannot
handle.

If you set the frags to the lowest possible value ESD barfs. If you
raise frag size to 4096 it works OK.

Daft really
-- 
   Understanding is a three-edged sword:
your side, their side, and the truth. --Kosh Naranek

A. R. Ivanov
E-mail:  [EMAIL PROTECTED]
WWW: http://www.sigsegv.cx/
pub 1024D/DDE5E715 2002-03-03 Anton R. Ivanov <[EMAIL PROTECTED]>
Fingerprint: C824 CBD7 EE4B D7F8 5331  89D5 FCDA 572E DDE5 E715




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



Bug#440879: cowdancer: needed in cowdancer-ilistcreate.c for Etch backport

2007-09-05 Thread Junichi Uekawa
> #include  to cowdancer-ilistcreate.c befor the #include
> for ilist.h to (hopefully) fix this problem.


Including sys/types.h is better.


regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#417736: Still reproducable

2007-09-05 Thread Martin Michlmayr
* Otavio Salvador <[EMAIL PROTECTED]> [2007-08-07 22:22]:
> Can you please try to rebuild this package and see if it still fails
> with gcc-4.3.

It builds now.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#440906: ftp.debian.org: RM: deb822 -- RoRA; superseded by python-debian

2007-09-05 Thread Adeodato Simó
Package: ftp.debian.org
X-Debbugs-CC: [EMAIL PROTECTED]

The deb822 module has been merged into the python-debian package, so
please remove the deb822 source package from unstable.

Thanks in advance,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
   Listening to: Nacho Cano - Niño no nacido




Bug#440902: window placement of scan dialog

2007-09-05 Thread martin f krafft
also sprach Jeffrey Ratcliffe <[EMAIL PROTECTED]> [2007.09.05.1102 +0200]:
> At the moment, all the dialog windows *start* in the centre of their
> parent. It is a GTK+ option. I could leave the placement to the window
> manager (which I have done in the past and didn't like). I could
> remember the position from the previous session. I could spread the
> scan dialog into several tabs.
> 
> I suppose remembering the position makes the most sense.

I am not sure about that, since then it might bite with the window
manager. Maybe the solution would be at least to recentre the
dialog once, when the device list has been obtained (but possibly
not again when the options have been fetched)?

-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
if you see an onion ring -- answer it!


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#439427: still a problem

2007-09-05 Thread Bill Allombert
On Tue, Sep 04, 2007 at 09:13:42PM -0400, Brent S. Elmer, Ph.D. wrote:
> I did the following as suggested and it didn't help:
> 
> rm -Rf /var/lib/menu-xdg/* plus dpkg-reconfigure menu-xdg.
> 
> It seems as if there must be some local configuration file that is
> messed up instead of system wide since 2 different logins show different
> menu options from the debian menu.  One login only shows games, help,
> and screen.  Another login only shows help and screen.  I can't get all
> of the debian menu to show.

Try update-menus --remove as a normal user.
But most probably this bug is not in menu-xdg but in GNOME.

Cheers,
-- 
Bill. <[EMAIL PROTECTED]>

Imagine a large red swirl here. 


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



Bug#440907: php5: file_exists gives fails warnings with open_basedir enabled

2007-09-05 Thread Arnaud Patard
Package: php5
Version: 5.2.3-1+b1
Severity: normal

If you use file_exists() and open_basedir(), you'll get a warning when the file 
doesn't exist.
Theses warnings are annoying and are breaking websites which are using 
header(). Also, if 
you're not aware of this issue, you end up looking for a non-existant 
misconfiguration.

A bug upstream has been filed for this issue and has been fixed. The patch 
works for me.

See:
http://bugs.php.net/bug.php?id=41518
http://cvs.php.net/viewvc.cgi/php-src/main/fopen_wrappers.c?r1=1.193&r2=1.194

Please consider applying the patch.

Thanks

Arnaud

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

Kernel: Linux 2.6.21.3-rsbac-1-lechat (PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages php5 depends on:
ii  libapache2-mod-php5   5.2.3-1+b1server-side, HTML-embedded 
scripti
ii  php5-cgi  5.2.3-1+b1server-side, HTML-embedded 
scripti
ii  php5-common   5.2.3-1+b1Common files for packages built 
fr

php5 recommends no packages.

-- no debconf information


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



Bug#440864: #440864, gambas2: Must build-depend on firebird2.0-dev

2007-09-05 Thread Damyan Ivanov
Hi,

FWIW, I tried the patch on i386 and the build was successful.
-- 
damJabberID: [EMAIL PROTECTED]



signature.asc
Description: OpenPGP digital signature


Bug#440876: icedove: please rename ~/.mozilla-thunderbird to ~/.mozilla/thunderbird

2007-09-05 Thread Alexander Sack - Debian Bugmail
On Wed, Sep 05, 2007 at 01:19:28AM +0200, Mario 'BitKoenig' Holbe wrote:
> Package: icedove
> Version: 2.0.0.4.dfsg1-2
> Severity: wishlist
> 
> Hello,
> 
> would it be possible to rename the user-specific conf-directory to
> .mozilla/thunderbird - just as the other mozilla skins use
> .mozilla/something directories?
> 

Would be possible ... however there is no safe migration code for
thunderbird profiles afaik ... so not that simple. If anyone wants to
work on this, ping me.

 - Alexander

-- 
 GPG messages preferred.   |  .''`.  ** Debian GNU/Linux **
 Alexander Sack| : :' :  The  universal
 [EMAIL PROTECTED]   | `. `'  Operating System
 http://www.asoftsite.org  |   `-http://www.debian.org/


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



Bug#336708: [Mutt] #2140: message-hook and patterns, [: invalid command

2007-09-05 Thread Mutt
#2140: message-hook and patterns, [: invalid command

Changes (by pdmef):

  * status:  new => closed
  * resolution:  => invalid

Comment:

 It's indeed parsed as parsed as patterns ~h and =[. The UPDATING file
 already contains an entry for string searches with =, please re-open if
 other docs should be improved.

-- 
Ticket URL: 




Bug#440864: #440864, gambas2: Must build-depend on firebird2.0-dev

2007-09-05 Thread L. Redrejo
El mié, 05-09-2007 a las 12:12 +0300, Damyan Ivanov escribió:
> Hi,
> 
> FWIW, I tried the patch on i386 and the build was successful.

Thanks, I will upload it a.s.a.p.

Regards.


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


Bug#440908: Please make possible to add a column File

2007-09-05 Thread Cédric Boutillier
Package: d3lphin
Version: 0.9.1-1
Severity: wishlist

--- Please enter the report below this line. ---
Hi,
Could you please add the possibility to add a column in the detailed view, 
which could make possible to view the tpe of a file, as it is done in 
konqueror for example. This would be really useful.

Greetings,

Cédric

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.22-2-686

Debian Release: lenny/sid
  990 unstableftp.fr.debian.org 
  700 testing ftp.lip6.fr 
  300 experimentalftp.lip6.fr 

--- Package information. ---
Depends(Version) | Installed
-+-==
kdelibs4c2a   (>= 4:3.5.7-1) | 4:3.5.7.dfsg.1-7
libacl1(>= 2.2.11-1) | 2.2.42-1
libart-2.0-2 (>= 2.3.18) | 2.3.19-3
libattr1(>= 2.4.4-1) | 1:2.4.32-1.2
libaudio2| 1.9-2+b1
libc6 (>= 2.5-5) | 2.6.1-2
libfam0  | 2.7.0-13
libfontconfig1(>= 2.4.0) | 2.4.2-1.2
libfreetype6(>= 2.2) | 2.3.5-1+b1
libgcc1  (>= 1:4.2-20070516) | 1:4.2.1-5
libice6 (>= 1:1.0.0) | 2:1.0.4-1
libidn11 (>= 0.5.18) | 1.0-0
libjpeg62| 6b-13
libpng12-0 (>= 1.2.13-4) | 1.2.15~beta5-2
libqt3-mt   (>= 3:3.3.7) | 3:3.3.7-7
libsm6   | 2:1.0.3-1+b1
libstdc++6 (>= 4.2-20070516) | 4.2.1-5
libx11-6 | 2:1.0.3-7
libxcursor1   (>> 1.1.2) | 1:1.1.9-1
libxext6 | 1:1.0.3-2
libxft2   (>> 2.1.1) | 2.1.12-2
libxi6   | 2:1.1.2-1
libxinerama1 | 1:1.0.2-1
libxrandr2  (>= 2:1.2.0) | 2:1.2.1-1
libxrender1  | 1:0.9.3-1
libxt6   | 1:1.0.5-3
zlib1g (>= 1:1.2.3.3.dfsg-1) | 1:1.2.3.3.dfsg-5




Bug#440909: lincity-ng doesn't work without ttf-bitstream-vera, even if ttf-dejavu is installed.

2007-09-05 Thread Morita Sho
Package: lincity-ng
Version: 1.1.0-2
Severity: normal

Hi,

I have installed and run lincity-ng, but it doesn't work with following error:
$ lincity-ng 
Starting lincity-ng (version 1.1.0)...
[/home/qw/.lincity] is in the search path.
[/usr/share/games/lincity-ng] is in the search path.
LINCITY_HOME: /usr/share/games/lincity-ng
OpenGL Mode 1024x768
Unexpected exception: Error while parsing component 'TableLayout': Error while 
parsing
component 'Button': Couldn't open 'fonts/sans.ttf': No such file or directory

The file /usr/share/games/lincity-ng/fonts/sans.ttf is symbolic link for
/usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf, a file of the 
ttf-bitstream-vera package.

lincity-ng depends ttf-dejavu | ttf-bitstream-vera, so I just installed only 
ttf-dejavu.
But ttf-bitstream-vera seems necessary.

I have installed ttf-bitstream-vera, and lincity-ng is now working.


Thanks,
Morita Sho


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

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

Versions of packages lincity-ng depends on:
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libgcc1 1:4.2.1-4GCC support library
ii  libgl1-mesa-glx [libgl1 7.0.1-2  A free implementation of the OpenG
ii  libphysfs-1.0-0 1.0.0-5  filesystem abstraction library for
ii  libsdl-gfx1.2-4 2.0.13-3 drawing and graphical effects exte
ii  libsdl-image1.2 1.2.6-1  image loading library for Simple D
ii  libsdl-mixer1.2 1.2.6-3  mixer library for Simple DirectMed
ii  libsdl-ttf2.0-0 2.0.9-1  ttf library for Simple DirectMedia
ii  libsdl1.2debian 1.2.11-9 Simple DirectMedia Layer
ii  libstdc++6  4.2.1-4  The GNU Standard C++ Library v3
ii  libxml2 2.6.30.dfsg-2GNOME XML library
ii  lincity-ng-data 1.1.0-2  Media files for the city simulator
ii  ttf-dejavu  2.19-1   Vera font family derivate with add
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

lincity-ng recommends no packages.

-- no debconf information


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



Bug#440903: split package in ladspa-sdk and ladspa-sdk-demoplugins

2007-09-05 Thread Tim Blechmann
On Wed, 2007-09-05 at 17:58 +0900, Junichi Uekawa wrote:
> > 
> > according to /usr/share/doc/ladspa-sdk/example_plugins.html, plugins
> > with the same functionality are also included in the cmt plugin
> > set. thus i would propose to split this package in to two
> > packages. one for providing the sdk and one for providing the demo
> > plugins. thus it can be avoided that people have two functionally
> > equivalent plugins installed on their machines, if they install both
> > ladspa-sdk and cmt
> 
> They are so small the difference is negligible.

negligible in technical or in usability terms? in technical terms i
agree, but for usability it is less confusing, if a user can only select
one white noise generator instead of having to select one of two
generators, that are functionally equivalent but having different names
and ladspa ids

best,
tim

--
[EMAIL PROTECTED]ICQ: 96771783
http://tim.klingt.org

Linux is like a wigwam: no windows, no gates, apache inside, stable.


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


Bug#436007: Support for clear-flag and set-flag functions in the pager map

2007-09-05 Thread Alain Bench
 Le mardi 28 août 2007 à 22:50:12 +0200, Loïc Minier écrivait:

> unfortunately, [pager's ] only works for the
> "important" flag

The pager has functions for manipulating many flags:

| flag  key functionhelp
|---
| ! F toggle a message's 'important' flag
| N N  toggle a message's 'new' flag
| D d   delete the current entry
| D u undelete the current entry
| * t  tag the current entry
|---

Only "O" and "r" flags seemingly lack (unless  counts ;-).


> and has the side effect of moving to the next message (I guess that's
> a feature).

Feature controlled by the $resolve switch, on by default.


[]
> Hmm that's not very practical; I simply want to toggle a flag, not
> stop reading the message. :-/

Well, anyway  $resolves to the next message, by default.
So my macros and pager: would equally stop you from reading
the current message. Granted, pager: would stay in pager,
while my macros eject you to the index. Hum... what about:

| macro pager  O  "mark message 
Old"
| macro pager  O"mark message 
read"

Unfortunately it's not possible to prompt the user in the middle of
a macro. The macro has to embed the response.


> These are certainly helpful workarounds, but it seems to me it would
> be very natural to have "clear-flag" and "set-flag" available

Natural, I agree. OTOS this would mean more code. And a longer list
of functions, when we already have so many that users may be lost.
Adding code, , and $vars should be done primarily for interesting
new features not doable otherwise. My opinion is not done yet: I'd need
to hear more arguments, and think to it.


Bye!Alain.
-- 
How to Report Bugs Effectively
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html>



Bug#440908: (no subject)

2007-09-05 Thread Cédric Boutillier
could you modify the title of this bug report to: "Please add a column 'File 
Type' in detailed view" ? The last part of my title has been chopped and thus 
it lost its meaning.

Thanks.

Cédric



Bug#440851: git-core 1.5.3 source fails to build with fakeroot

2007-09-05 Thread Gerrit Pape
On Tue, Sep 04, 2007 at 09:33:23PM +0100, Robert Newson wrote:
> I get the following error when running 'dpkg-buildpackage -r fakeroot'
> 
> make[3]: Entering directory `/home/rnewson/Source/git-core-1.5.3/perl'
> Installing
> /home/rnewson/Source/git-core-1.5.3/debian/git-core/usr/share/perl5/Git.pm
> 
> ERROR: Cannot unlink '/usr/share/perl5/Git.pm': Permission denied
> 
>  at -e line 1
> make[3]: *** [pure_vendor_install] Error 13
> 
> everything else appears to build. I have successfully built and used
> git-core from source before, I think it's just the latest drop.

Hi Robert, I didn't manage to reproduce the problem.  Can you please
post the complete output of 'dpkg-buildpackage -r fakeroot' to this bug
report?

Thanks, Gerrit.


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



Bug#440910: Segmentation fault at startup

2007-09-05 Thread Ronny Standtke
Package: gimp
Version: 2.2.17-1
Severity: grave

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

Starting up gimp results in a segmentation fault. Here comes the console 
output of a gdb run:

$ gdb gimp
GNU gdb 6.4.90-debian
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i486-linux-gnu"...(no debugging symbols found)
Using host libthread_db library "/lib/libthread_db.so.1".

(gdb) run
Starting program: /usr/bin/gimp
Failed to read a valid object file image from memory.
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1219700176 (LWP 3377)]

(gimp:3377): GLib-GObject-WARNING **: cannot register existing type 
`GimpConfigInterface'

(gimp:3377): GLib-GObject-CRITICAL **: g_type_interface_add_prerequisite: 
assertion `G_TYPE_IS_INTERFACE (interface_type)' failed

(gimp:3377): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 
`g_type_parent (interface_type) == G_TYPE_INTERFACE' failed

(gimp:3377): GLib-GObject-WARNING **: cannot register existing type 
`GimpConfigInterface'

(gimp:3377): GLib-GObject-CRITICAL **: g_type_interface_add_prerequisite: 
assertion `G_TYPE_IS_INTERFACE (interface_type)' failed

(gimp:3377): GLib-GObject-CRITICAL **: g_type_add_interface_static: assertion 
`g_type_parent (interface_type) == G_TYPE_INTERFACE' failed

(gimp:3377): GLib-GObject-WARNING **: cannot register existing type 
`GimpParamRGB'

(gimp:3377): GLib-GObject-CRITICAL **: g_param_spec_internal: assertion 
`G_TYPE_IS_PARAM (param_type) && param_type != G_TYPE_PARAM' failed

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1219700176 (LWP 3377)]
0xb7ea803d in gimp_param_spec_rgb (name=0x0, nick=0x0, blurb=0x0, has_alpha=1, 
default_value=0xbffaeb28, flags=0) at gimprgb.c:684
684   cspec->has_alpha = has_alpha;
(gdb) bt full
#0  0xb7ea803d in gimp_param_spec_rgb (name=0x0, nick=0x0, blurb=0x0, 
has_alpha=1, default_value=0xbffaeb28, flags=0) at gimprgb.c:684
cspec = (GimpParamSpecRGB *) 0x0
#1  0xb7ecabdc in gimp_color_button_class_init (klass=0x2) at 
gimpcolorbutton.c:223
color = {r = 0, g = 0, b = 0, a = 1}
#2  0xb7825c51 in g_type_class_ref () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#3  0xb78260a9 in g_type_class_ref () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#4  0xb780c24a in g_object_newv () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#5  0xb780c73f in g_object_new_valist () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#6  0xb780c8f0 in g_object_new () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#7  0x0810a062 in ?? ()
No symbol table info available.
#8  0x08754d28 in ?? ()
No symbol table info available.
#9  0x in ?? ()
No symbol table info available.
(gdb) q
The program is running.  Exit anyway? (y or n) y


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

Debian Release: lenny/sid
  500 testing mirror.swiss-it.ch 
  500 stable  mirror.swiss-it.ch 

--- Package information. ---
Depends(Version) | Installed
-+-==
wget | 1.10.2-3
gimp-data   (= 2.2.17-1) | 2.2.17-1
libaa1  (>= 1.2) | 1.4p5-32
libart-2.0-2 (>= 2.3.18) | 2.3.19-3
libatk1.0-0  (>= 1.13.2) | 1.18.0-2
libc6 (>= 2.6-1) | 2.6.1-1+b1
libcairo2 (>= 1.4.0) | 1.4.10-1
libexif12| 0.6.16-2
libexpat1(>= 1.95.8) | 1.95.8-4
libfontconfig1(>= 2.4.0) | 2.4.2-1.2
libfreetype6  (>= 2.3.5) | 2.3.5-1+b1
libgimp2.0(>= 2.2.0+rel) | 2.2.17-1
libglib2.0-0 (>= 2.12.9) | 2.14.0-2
libgtk2.0-0   (>= 2.10.12-3) | 2.10.13-1
libice6 (>= 1:1.0.0) | 2:1.0.4-1
libjpeg62| 6b-13
liblcms1 (>= 1.15-1) | 1.16-6
libmng1 (>= 1.0.3-1) | 1.0.9-1
libpango1.0-0(>= 1.16.4) | 1.16.5-1
libpng12-0 (>= 1.2.13-4) | 1.2.15~beta5-2
libsm6   | 2:1.0.3-1+b1
libtiff4 | 3.8.2-7
libwmf0.2-7 (>= 0.2.8.4) | 0.2.8.4-6
libx11-6 | 2:1.0.3-7
libxcursor1   (>> 1.1.2) | 1:1.1.8-2
libxext6 | 1:1.0.3-2
libxfixes3  (>= 1:4.0.1) | 1:4.0.3-2
libxi6   | 2:1.1.2-1
libx

Bug#440811: evince: Problems rendering a PDF file (xpdf renders OK)

2007-09-05 Thread Wolfgang Weisselberg
Hi, Sven!

Sven Arvidsson ([EMAIL PROTECTED]) wrote 44 lines:

> On Tue, 2007-09-04 at 13:57 +0200, Wolfgang Weisselberg wrote:
> > URL:
> > 
> > http://direct.motorola.com/GER/howtoguides/F3/F3_GER_HowTo_PrintVersion_022807_HR.pdf

> > Evince just renders 2 or 3 words on a page and a very few of
> > the images.

> Right, this looks like a known bug in the cairo backend of poppler.

Ok.  Thanks for re-routing the bug to the correct party.

> > xpdf renders the PDF correctly, as far as I can see ---
> > certainly much more usefully and complete than evince.

> No, not really.

Maybe my irony meter is out of kilter --- I merely wanted to
point out that the xpdf rendering of the above document looks
correct and _very_ different from the evince/poppler rendering.


BTW: evince renders the document correctly, as does xpdf, on a
Debian Release: 4.0
  APT prefers stable
  APT policy: (600, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
system.

-Wolfgang


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



Bug#440113: gotmail: Page doesn't contain any form action field

2007-09-05 Thread Gabor Gombas
Package: gotmail
Version: 0.9.0-1
Followup-For: Bug #440113


Hi,

A patch is available at

http://sourceforge.net/tracker/?func=detail&atid=615989&aid=1777163&group_id=96810

It works for me.

Gabor

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

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

Versions of packages gotmail depends on:
ii  curl   7.16.4-5  Get a file from an HTTP, HTTPS or 
ii  liburi-perl1.35.dfsg.1-1 Manipulates and accesses URI strin
ii  perl   5.8.8-7   Larry Wall's Practical Extraction 
ii  perl-modules [libnet-perl] 5.8.8-7   Core Perl modules

gotmail recommends no packages.

-- no debconf information


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



Bug#314440: nedit: It can't copy and paste text.

2007-09-05 Thread Paul B van den Berg

A patch is available:

http://sourceforge.net/tracker/index.php?func=detail&aid=1440331&group_id=11005&atid=111005


Regards, Paul B


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



Bug#440911: ITP: policyd-spf-fs -- Postfix policy server for SPF checking

2007-09-05 Thread Magnus Holmgren
Package: wnpp
Severity: wishlist
Owner: Magnus Holmgren <[EMAIL PROTECTED]>

* Package name: policyd-spf-fs
  Version : 0+svn21
  Upstream Author : Matthias Cramer <[EMAIL PROTECTED]>
* URL : http://www.freestone.net/software/policyd-spf-fs/
* License : LGPL 2.1 and/or 2-clause BSD
  Programming Lang: C
  Description : Postfix policy server for SPF checking

policyd-spf-fs is a simple Sender Policy Framework (SPF) policy
engine for the Postfix MTA, written in C.

Postfix SMTP Access Policy Delegation is described at
http://www.postfix.org/SMTPD_POLICY_README.html


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



Bug#440912: xrdp/lang.c: german keymap misses certain keys

2007-09-05 Thread Michael Ablassmeier
Package: xrdp
Severity: important
Version: 0.4.0~dfsg-3

hi,

it seems like xrdp/lang.c misses some keys for the german keyboard layout.
While beeing connected to a xrdp server using 'rdesktop -k de' several keys
wont work "< > |", for example.

It seems like | is missing in the de_altgr char scan code, and < > are missing
in the de_noshift one.

I couldnt figure out at which point to  place them in the char, please
enlighten me :-)

bye,
- michael


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



Bug#440913: kde-icon-theme-kneu: Don't depend on kdebase

2007-09-05 Thread Andreas Pakulat
Package: kde-icon-theme-kneu
Version: 0.2-1
Severity: normal

Hi,

I think the dependecy on kdebase is wrong, no other icon theme has a
Depends, they all just Recommends kdebase. I can't see an obvious reason
why this icon theme needs kdebase to work.

Andreas

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

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


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



Bug#440914: ITP: sketch -- produce 3D line drawings from scene description language

2007-09-05 Thread David Bremner
Package: wnpp
Severity: wishlist
Owner: David Bremner <[EMAIL PROTECTED]>


* Package name: sketch
  Version : 0.2.9
  Upstream Author : Eugene Ressler
* URL : http://www.frontiernet.net/~eugene.ressler
* License : Unknown "Copyleft"
  Programming Lang: C
  Description :  produce 3D line drawings from scene description language

Sketch is a simple system for producing line drawings of
three-dimensional objects and scenes. Sketch is intended to produce finely
wrought, mathematically-based illustrations with no extraneous detail
and be able to easily overlay TeX math and text. The input language is
reminiscent of PSTricks, so will be easy to learn for current PSTricks
users.  It generates either PSTricks or TikZ/PGF code as output.

LICENSING NOTES:

On the website it states, 

   I've developed some tools while writing a textbook. They're good 
   enough to get real work done, so I'm offering them free under 
   Copyleft. 

But there seems to be no explicit licensing information in the source. 
Obviously I need to figure this out before the package can be considered 
for inclusion in Debian.

NAME NOTES:

There was another package named sketch; it seems to be gone now. If this 
is problematic, an alternative name could be sketch3d

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

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


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



Bug#440851: git-core 1.5.3 source fails to build with fakeroot

2007-09-05 Thread Robert Newson
Having uninstalled git-core to get the build working, I am unable to
reproduce the build failure. I tried building 1.5.3 with both the etch
and etch-backports versions of git-core installed (one at a time,
obviously). Both builds succeeded.

Please close, I can't reproduce the odd state I was in.

On 9/5/07, Gerrit Pape <[EMAIL PROTECTED]> wrote:
> On Tue, Sep 04, 2007 at 09:33:23PM +0100, Robert Newson wrote:
> > I get the following error when running 'dpkg-buildpackage -r fakeroot'
> >
> > make[3]: Entering directory `/home/rnewson/Source/git-core-1.5.3/perl'
> > Installing
> > /home/rnewson/Source/git-core-1.5.3/debian/git-core/usr/share/perl5/Git.pm
> > 
> > ERROR: Cannot unlink '/usr/share/perl5/Git.pm': Permission denied
> > 
> >  at -e line 1
> > make[3]: *** [pure_vendor_install] Error 13
> >
> > everything else appears to build. I have successfully built and used
> > git-core from source before, I think it's just the latest drop.
>
> Hi Robert, I didn't manage to reproduce the problem.  Can you please
> post the complete output of 'dpkg-buildpackage -r fakeroot' to this bug
> report?
>
> Thanks, Gerrit.
>


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



Bug#422151: RFP: libspf2-policyd

2007-09-05 Thread Magnus Holmgren
I've filed a separate ITP for policyd-spf-fs; it's bug #440911.

-- 
Magnus Holmgren  [EMAIL PROTECTED]  [EMAIL PROTECTED]


pgpWP3AgoVe2n.pgp
Description: PGP signature


Bug#440915: cpufrequtils: disabling /etc/init.d/loadcpufreq not possible?

2007-09-05 Thread Michael Prokop
Package: cpufrequtils
Version: 002-5
Severity: normal


Please forgive me if I got it wrong, but AFAICS it is not possible
to disable execution of /etc/init.d/loadcpufreq, right?

Via running:

# cat /usr/share/doc/cpufrequtils/examples/cpufrequtils.sample > 
/etc/default/cpufrequtils

it is possible to disable execution of /etc/init.d/cpufrequtils¹ -
but there does not seem to exist a possibility to disable
/etc/init.d/loadcpufreq.  Would be great if /etc/init.d/loadcpufreq
could be controlled via something like /etc/default/loadcpufreq.

¹ BTW: is there a specific reason why you provide the file in
  /usr/share/... instead of providing a smart default configuration in
  /etc/default/cpufrequtils?

regards,
-mika-



Bug#440823: ITP: kelbt -- backtracking LR parser

2007-09-05 Thread Robert Lemmen
On Tue, Sep 04, 2007 at 09:24:18PM +0200, Guus Sliepen wrote:
> >   Description : backtracking LR parser
> > 
> >  Kelbt generates backtracking LALR(1) parsers. Standard LALR(1) parser
> 
> If it is a parser _generator_, mention this in de short description as
> well.

absolutely correct, will update this

> Which CASCON paper? I don't think you should mention this in the
> description. The description is meant for a user to decide if he wants
> to install this package or not. You shouldn't make a user follow
> references, that is besides the point. I also don't think that the
> paragraph about the proof of concept is useful. The only useful
> information is "C++". Does Kelbt indeed output C++ code? 

the reference to the paper is indeed a bit weird, but i think the rest
of the paragraph is ok. the information that the tool is capable of
handling a complex case like this, and that the code for it is included
as an example _is_ interesting. will rephrase the paragraph accordingly.

cu  robert

-- 
Robert Lemmen   http://www.semistable.com 


signature.asc
Description: Digital signature


Bug#440916: firehol: Latest version lost OpenVPN service definition

2007-09-05 Thread Sam Couter
Package: firehol
Version: 1.256-1
Severity: minor

FireHOL version 1.231-7 knew about OpenVPN, while version 1.256-1 does
not.

Just add the following lines back into /sbin/firehol:

server_openvpn_ports="tcp/1194 udp/1194"
client_openvpn_ports="default"
-- 
Sam Couter |  mailto:[EMAIL PROTECTED]
   |  jabber:[EMAIL PROTECTED]
OpenPGP fingerprint:  A46B 9BB5 3148 7BEA 1F05  5BD5 8530 03AE DE89 C75C


signature.asc
Description: Digital signature


Bug#440905: bashbug: tries to use rmail but it's not in PATH

2007-09-05 Thread Justin Pryzby
On Wed, Sep 05, 2007 at 11:53:23AM +0300, Timo Juhani Lindfors wrote:
> Package: bash
> Version: 3.1dfsg-8
> Severity: normal
> 
> My MTA is exim 3.36-18.2. bashbug looks for /usr/lib/sendmail or
> /usr/sbin/sendmail and then falls back to "rmail". This won't work
> since the rmail symlink is in /usr/sbin/rmail which is not in the PATH
> of a normal user. Is there some /etc/alternatives style symlink that
> would always be present and allow programs to send email regardless of
> the MTA?
/usr/sbin/sendmail is apparently in Debian policy and the FHS.  If it
didn't work since that's missing, then it's allowed to not work, since
the system is no longer consistent with the assumptions one is allowed
to make on a Debian system.

Justin


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



Bug#440917: virtualbox-ose: /etc/init.d/vboxdrv setup fails.

2007-09-05 Thread Dario Minnucci (midget)
Package: virtualbox-ose
Version: 1.5.0-dfsg-1
Severity: grave
Justification: renders package unusable

Trying to recompiling kernel module 'vboxdrv' the following message is issued:

[EMAIL PROTECTED]:~# /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel module: vboxdrv.
Recompiling VirtualBox kernel module: vboxdrv
* Look at /var/lib/vbox-install.log to find out what went wrong

[EMAIL PROTECTED]:~# cat /var/lib/vbox-install.log
/etc/init.d/vboxdrv: line 162: /usr/lib/virtualbox/src/build_in_tmp: No such 
file or directory


So, cannot build the kernel module kernel module and virtualbox is not able to 
start.



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

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

Versions of packages virtualbox-ose depends on:
ii  libasound21.0.14a-2  ALSA library
ii  libc6 2.6.1-2GNU C Library: Shared libraries
ii  libgcc1   1:4.2.1-5  GCC support library
ii  libgl1-mesa-glx [libgl1]  7.0.1-2A free implementation of the OpenG
ii  libglib2.0-0  2.14.0-2   The GLib library of C routines
ii  libidl0   0.8.8-0.1  library for parsing CORBA IDL file
ii  libqt3-mt 3:3.3.7-7  Qt GUI Library (Threaded runtime v
ii  libsdl1.2debian   1.2.11-9   Simple DirectMedia Layer
ii  libstdc++64.2.1-5The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxalan110   1.10-3.1   Provides XSLT support for applicat
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxerces27   2.7.0-4validating XML parser library for 
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library

Versions of packages virtualbox-ose recommends:
pn  virtualbox-ose-modules (no description available)
pn  virtualbox-ose-source  (no description available)

-- no debconf information


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



Bug#440912: xrdp/lang.c: german keymap misses certain keys

2007-09-05 Thread Michael Ablassmeier
tags 440912 + patch
thanks

hi again,

On Wed, Sep 05, 2007 at 12:59:50PM +0200, Michael Ablassmeier wrote:
> it seems like xrdp/lang.c misses some keys for the german keyboard layout.
> While beeing connected to a xrdp server using 'rdesktop -k de' several keys
> wont work "< > |", for example.

attached patch should at least fix those keys mentioned above, i think there
are more missing.

bye,
- michael
--- xrdp-0.4.0~dfsg.orig/xrdp/lang.c
+++ xrdp-0.4.0~dfsg/xrdp/lang.c
@@ -302,7 +302,7 @@
   0,   ' ',   0,0,0,0,0,0,
   0,0,0,0,0,0,0,   '7',
  '8',  '9',  '-',  '4',  '5',  '6',  '+',  '1',
- '2',  '3',  '0',  '.',   0,0,0,0,
+ '2',  '3',  '0',  '.',   0,0,   '<',   0,
   0,0,0,0,0,0,0,0,
   0,0,0,0,0,0,0,0,
   0,0,0,0,0,0,0,0,
@@ -323,7 +323,7 @@
   0,   ' ',   0,0,0,0,0,0,
   0,0,0,0,0,0,0,   '7',
  '8',  '9',  '-',  '4',  '5',  '6',  '+',  '1',
- '2',  '3',  '0',  '.',   0,0,0,0,
+ '2',  '3',  '0',  '.',   0,0,   '>',   0,
   0,0,0,0,0,0,0,0,
   0,0,0,0,0,0,0,0,
   0,0,0,0,0,0,0,0,
@@ -344,7 +344,7 @@
   0,0,0,0,0,0,0,0,
   0,0,0,0,0,0,0,0,
   0,0,0,0,0,0,0,0,
-  0,0,0,0,0,0,0,0,
+  0,0,0,0,0,0,   '|',   0,
   0,0,0,0,0,0,0,0,
   0,0,0,0,0,0,0,0,
   0,0,0,0,0,0,0,0,


Bug#440918: xserver-xorg-video-ati: supertux lost its textures after hibernation

2007-09-05 Thread Jiří Paleček

Package: xserver-xorg-video-ati
Version: 1:6.7.192-1~7.2
Severity: normal

Hello,

when I play supertux (OpenGL mode is on), hibernate and resume the
computer, supertux display is completely garbled (it seems like it has
loast its textures, so everything looks like a rectangle), see
screenshot.

Regards
Jiri Palecek

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

Kernel: Linux 2.6.20.3-rt8 (PREEMPT)
Locale: LANG=cs_CZ, LC_CTYPE=cs_CZ (charmap=ISO-8859-2) (ignored: LC_ALL  
set to cs_CZ)

Shell: /bin/sh linked to /bin/dash

Versions of packages xserver-xorg-video-ati depends on:
ii  libc6  2.6-2 GNU C Library: Shared  
libraries

ii  xserver-xorg-core  2:1.3.0.0.dfsg-12 X.Org X server -- core server

xserver-xorg-video-ati recommends no packages.

-- no debconf information


--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/<>

Bug#435536: this bug still present

2007-09-05 Thread Joachim Breitner
Hi Bastian,

I just uploaded 0.9.12-1 to the archive. Could you please see if the bug
is still present?

Thanks,
Joachim
-- 
Joachim "nomeata" Breitner
Debian Developer
  [EMAIL PROTECTED] | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: [EMAIL PROTECTED] | http://people.debian.org/~nomeata



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



Bug#405789: rubygems: rubygems is too dumb to recognize debian packages

2007-09-05 Thread Lucas Nussbaum
severity 405789 wishlist
tags 405789 - patch
tags 405789 + wontfix
thanks

On 27/05/07 at 17:57 +0900, Daigo Moriwaki wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Hi, Jürgen
> 
> Sorry for the late reply.
> 
> Jürgen Strobel wrote:
> > Example: 
> > 
> > aptitude install rake rails
> > gem install mongrel
> > 
> > gem will insist on installing dependencies, including rake. A really
> > nicely patched up rubygems could autodetect the rake package.
> 
> Your request is ideal. However, we, Debian developers, have no good solution
> yet. To support integration of rubygems and dpkg for a long time, more
> consideration (not just patch rubygems.rb) is required.

Also, we would probably need to talk with upstream again. Debian isn't
the only distro facing those issues.

Anyway, tagging the bug accordingly.
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


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



Bug#403407: your mail

2007-09-05 Thread Lucas Nussbaum
retitle 403407 rubygems: gems are installed in /var/lib/gems/X.Y/bin, which is 
not in $PATH
severity 403407 wishlist
tags 403407 + wontfix
thanks

On 04/07/07 at 19:59 +0200, Renaud Morvan wrote:
> There is another issue related to this situation in current stable etch.
>
> Gems bin are located in /var/lib/gems/1.8/bin/ which means that they can't 
> be accessed easily with sudo which seems to be compiled with secure-path 
> that hardcode PATH env variable
>
> It leads to buggy situation with some popular gems:
>   if you install gems like mongrel (as the vast majority of ruby on rails 
> users do) you can't start the server under another identity than yours 
> without using the full path. Can't start the provided init.d script for 
> mongrel cluster ...
>   And "normal user" that don't know about the sudo security stuff just 
> get 
> "command not found" => headache
>
> As long as this package will ghetto the gems bin in some exotic folder, I 
> fear that compiling rubygems will remains mainstream as it's not worst than 
> symlinking to /usr/local/bin :/
>
> I understand that the scope of this situation is wider than that, that's 
> much more about the compatibility between gems and apt-get
>
> Hope that one day I'll be able to be an happy debian rubyist :)

yeah, all of this sucks, really. The problem is that the upstream
rubygems developers don't care, and that it's impossible to change that
without their cooperation. I know it's frustrating.

Note that this issue is documented in
/usr/share/doc/rubygems/README.Debian
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


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



Bug#440919: firehol: Please add mention of /etc/default/firehol to NEWS.Debian

2007-09-05 Thread Sam Couter
Package: firehol
Version: 1.256-1
Severity: minor

In the interests of reducing the element of surprise, please add a
mention of the new START_FIREHOL setting to NEWS.Debian so
apt-listchanges can email it to the admin.

It would also be useful if there was a comment in /etc/default/firehol
that the value "YES" must be all uppercase.
-- 
Sam Couter |  mailto:[EMAIL PROTECTED]
   |  jabber:[EMAIL PROTECTED]
OpenPGP fingerprint:  A46B 9BB5 3148 7BEA 1F05  5BD5 8530 03AE DE89 C75C


signature.asc
Description: Digital signature


Bug#440841: dpkg-dev: source package gpg verification doesn't restrict valid keys to debian-keyring

2007-09-05 Thread Sami Liedes
On Wed, Sep 05, 2007 at 01:31:06AM +0200, Cyril Brulebois wrote:

> What about the following? An Application Manager asks his/hers New
> Maintainer applicant to sign the source packages, or more generally one
> provides source packages on ones website, and publish the key with which
> they were signed. (See also .) Doesn't the
> current behaviour exactly fit these purposes?

Ah, ok, I probably misunderstood it's purpose then if it doesn't
intend to verify that it's signed by a DD.

However, it still fails to do what you describe: The .dsc can be
signed by *anyone* whose key I happen to have in my keyring, not only
by the person in the Maintainer: field, without giving any clue to
whose signature the .dsc has. I can't think what that's good for.

> > 1. Download the public key of Adam Attacker.
> 
> Then it would be considered a user-assisted security hole at most, don't
> you think?

Well, many email clients automatically download the key that is needed
to verify a signature. The fact that a key exists in the public key
ring doesn't imply any trust at all.

Sami


signature.asc
Description: Digital signature


Bug#440920: tuxtype crashes after start

2007-09-05 Thread Martin Posch

Package: tuxtype
Version: 1.5.6.dfsg1-3
Severity: grave
Justification: renders package unusable


After starting tuxtype the welcome screen is shortly displayed and
tuxtype crashes with the messages:

LoadSettings: Settings file does not exist! settings not loaded
open /dev/sequencer: No such file or directory
FATAL ERROR: couldn't load font: GenAI102.ttf


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

Kernel: Linux 2.6.17 (PREEMPT)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15
(charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages tuxtype depends on:
ii  libc6  2.6.1-2   GNU C Library: Shared libraries
ii  libsdl-image1.21.2.6-1   image loading library for
Simple D
ii  libsdl-mixer1.21.2.6-3   mixer library for Simple
DirectMed
ii  libsdl-ttf2.0-02.0.9-1   ttf library for Simple
DirectMedia
ii  libsdl1.2debian1.2.11-9  Simple DirectMedia Layer
ii  ttf-gentium1.02+dfsg-4   Transition package for
ttf-sil-gen
ii  tuxtype-data   1.5.6.dfsg1-3 Data files for the
Educational Typ

tuxtype recommends no packages.

-- no debconf information





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



Bug#73611: Get this right now

2007-09-05 Thread Alexandria
Check out this.. www.boyperiod.cn


Yours Sincerely,
Alexandria,
www.boyperiod.cn


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



Bug#440921: quicklist: [INTL:vi] Vietnamese program translation

2007-09-05 Thread Clytie Siddall

Package: quicklist
Version: 0.8.6+0.9.0pre2-1
Severity: wishlist
Tags: l10n, patch

The initial Vietnamese translation for the program file: quicklist

translated and submitted by:

Clytie Siddall (vi-VN, Vietnamese free-software translation team /  
nhóm Việt hóa phần mềm tự do)

vi.po.gz
Description: GNU Zip compressed data


PGP.sig
Description: This is a digitally signed message part


Bug#440821: [Pkg-kde-extras] Bug#440821: kdebluetooth crash

2007-09-05 Thread Michael Meskes
severity 440386 important
merge 440386 440821 440434
thanks

On Tue, Sep 04, 2007 at 05:37:20PM +0200, newbeewan wrote:
> Package: kdebluetooth
> Version: 0.99+1.0beta2-8
> Severity: important
> 
> Hi,
> 
> kbluetoothD cash now all the time in unstable and testing...

Frankly I don't know which new package triggers this, but given that a
new upstream version is about to make it into sid, I don't think it
makes sense to spend a lot of time to debug this.

The new package build from beta6 is waiting in NEW since it contains new
binary packages. I'm currently working on beta7. Let's see if these fix
the problem.

Anyway, could someone of you please try to simply recompile
kdebluetooth? My tests suggest that this might fix the problem.
Depending on how long it takes to get the new version in I can upload a
recompiled version of -8 if this helps.

Michael
-- 
Michael Meskes
Email: Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: [EMAIL PROTECTED]
Go SF 49ers! Go Rhein Fire! Use Debian GNU/Linux! Use PostgreSQL!


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



Bug#437422: Using Debian sources

2007-09-05 Thread Neil Williams
Building toolchains from the upstream sources for installation on
Debian would appear to be asking for problems. Emdebian is building
toolchains for cross-building using the Debian packages so that the
toolchain should be more easily installable alongside the native
toolchain. This also means that patches that may be needed for
generating a cross-building toolchain can be committed upstream. This
has also helped make gcc-4.2 build a "reverse cross" - where build !=
host, host == target as opposed to the usual cross build of build ==
host, host != target in order to provide libraries for installation
alongside the packages built with the toolchain.

So I'm not sure about crosstool-ng - I'm not sure where it would fit.

Your website only mentions gcc-4.1 but Emdebian is currently updating to
build 4.2. 

http://www.emdebian.org/

You are welcome to discuss toolchain-stuff on the debian-embedded
mailing list or #emdebian IRC channel - details on the website.

Another problem is that your website doesn't provide access to the SVN
without checking out the sources locally so I can't look at the code.
Would it be possible to install websvn or something similar so that
interested visitors can take a look at the actual code?

The Emdebian script that prepares our toolchains is visible at:
http://buildd.emdebian.org/svn/browser/current/emdebian/trunk/buildcross/trunk
and is currently being rewritten by Hector Oron (zumbi).

-- 


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



pgp8RwSoQNy20.pgp
Description: PGP signature


Bug#440917: virtualbox-ose: /etc/init.d/vboxdrv setup fails.

2007-09-05 Thread Dario Minnucci (midget)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

> ...
> Am Mittwoch, 5. September 2007 13:35:42 schrieb Dario Minnucci (midget):
>> Package: virtualbox-ose
>> Version: 1.5.0-dfsg-1
>> Severity: grave
>> Justification: renders package unusable
>>
>> Trying to recompiling kernel module 'vboxdrv' the following message is
>> issued:
> /etc/init.d/vboxdrv isn't shipped within our debian package.. this are some 
> things which remains from the deb which is available at virtualbox.org. 


Sorry, for this false alarm then. It seems my system has a mess with virtualbox
and virtualbox-ose files.


> Please purge this package and install the ones which are in debian.
> then you should be able to build the kernel module with module-assistant 
> auto-install virtualbox-ose. see README.Debian for details. 
> 
> This should work and is well tested.


Sure, sorry again.


> I'll would like to close this bug if you don't have any objections against 
> this since this is really no bug in our package :)
> See bug no. 440896 which is also about this issue. 


Fell free to close this bug report and sorry again for inconveniences.

Cheers.



- --

 Dario Minnucci (a.k.a. midget)
 Phone: (+34) 902021030 | Fax: (+34) 902024417 | 24/7: (+34) 807429057
 Email: [EMAIL PROTECTED] | URL: http://www.midworld.net/midget/
 Key fingerprint = 6DDB 5487 7F6D 89D4 5D9C  33C7 D181 DD7A 6C42 8272

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

iD8DBQFG3qMO0YHdemxCgnIRAinQAJ4nmNVKPEEiIJ9fxXWlx/JpbgZydwCfTCk8
Y5lynYLp3gyD+2a9YN0AAfI=
=N7+l
-END PGP SIGNATURE-


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



Bug#438864: fix

2007-09-05 Thread Gyuris Szabolcs
/usr/share/python-support/trac/trac/versioncontrol/cache.py

Change the line 114 from

  pass

to
  return

The working code
--
if self.youngest:
next_youngest = self.repos.next_rev(self.youngest)
else:
next_youngest = None
try:
next_youngest = self.repos.oldest_rev
next_youngest = self.repos.normalize_rev(next_youngest)
except TracError:
-pass
+return # can't normalize oldest_rev: repository was
empty


It works for me...

-- 
\\///   http://linux.oregpreshaz.eu/Thawte
 O O  / http://www.oregpreshaz.eu/
/=uOO(_)OOu==~   WOT
| E-mail: szimszon az oregpreshaz pont eu
| VoIP  : szimszon a ekiga.net | pgp key id: 049BFAD8   Notary



smime.p7s
Description: S/MIME Cryptographic Signature


Bug#435971: Please give some feedback

2007-09-05 Thread Junichi Uekawa
Hi,

We'd like to get japanese fonts handling with fontconfig ASAP.
Please give feedback.


regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#440922: Hangs the whole PC (can't even login via ssh)

2007-09-05 Thread Michał Gorycki
Package: btanks
Version: 0.5.4740-2
Severity: critical

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

When I run the game on my Asus F3F the game hangs in ~30 seconds. The X screen 
is trashed with multicolor horizontal lines. The input system is dead and I 
even can't reach the box via ssh (operation timed out). A hard reset is 
required.

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

Debian Release: lenny/sid
  990 testing www.kadu.net 
  990 testing www.debian-multimedia.org 
  990 testing security.debian.org 
  990 testing ftp.pl.debian.org 
  990 testing ftp.icm.edu.pl 
  600 unstablewww.kadu.net 
  600 unstablewww.debian-multimedia.org 
  600 unstableftp.pl.debian.org 
  600 unstableftp.icm.edu.pl 
  500 proposed-updates ftp.pl.debian.org 
  500 edgyparker1.co.uk 
  400 stable  security.debian.org 
  400 stable  ftp.pl.debian.org 
  400 stable  ftp.icm.edu.pl 

--- Package information. ---
Depends(Version) | Installed
-+-==
btanks-data   (= 0.5.4740-2) | 0.5.4740-2
libc6 (>= 2.6-1) | 2.6.1-1+b1
libexpat1(>= 1.95.8) | 1.95.8-4
libgcc1  (>= 1:4.2-20070516) | 1:4.2.1-4
libgl1-mesa-glx  | 7.0.1-1
 OR libgl1   | 
libopenal0a  | 1:0.0.8-6
libsdl-image1.2   (>= 1.2.5) | 1.2.6-1
libsdl1.2debian(>= 1.2.10-1) | 1.2.11-9
libsigc++-2.0-0c2a(>= 2.0.2) | 2.0.17-2
libstdc++6 (>= 4.2-20070516) | 4.2.1-4
libvorbisfile3(>= 1.2.0) | 1.2.0.dfsg-2
zlib1g (>= 1:1.2.3.3.dfsg-1) | 1:1.2.3.3.dfsg-5


--
Opole - Miasto Bez Granic.
http://www.opole.pl - tu znajdziesz nowe miejsca, nowe moÂżliwoÂści, nowe 
inspiracje...




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



Bug#440161: wrong /etc/fstab when installing on RAID using Adaptec 2100S

2007-09-05 Thread Arne Metzger

Hi Jeremy,

the following modules are loaded during boot and also show up in lsmod:

i2o_core
This is always needed to access your I2O hardware. It is the main 
module, which provides low level access to the I2O hardware. [I2O FAQ]


i2o_block
This is the disk driver, which let you access your RAID array, or if you 
don't have a RAID array configured to the single disks. You only have 
access to the disks through this driver! [I2O FAQ]


So, i2o_scsi is not loaded and my data is still ok ;)

I cant mount /dev/sda anymore after i2o_core and i2o_block are loaded. 
Error message ist somehting like "no such device" (sorry, that machine 
is not actually running, its my "experimental server" - i have to 
remember me, what the messages were).


As said here [1]: "After the i2o_block module is loaded, you could 
access the drive through /dev/i2o/hda for the first disk 
(/dev/i2o/hda/disk if using devfs), /dev/i2o/hdb for the second disk 
(/dev/i2o/hdb/disk if using devfs), and so on."


So: the d-i recognizes my RAID-Array as /dev/sda. After Reboot, i2o_core 
and i2o_block are loaded, and from that moment /dev/sda is known as 
/dev/i2o/hda.


Sorry, but i cant send any dmesg at this time. Do you need them?

Regards,
Arne


[1]
http://i2o.shadowconnect.com/faq.php#raidaccess


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



Bug#440923: ITP: tatan -- pointing STG shooter game

2007-09-05 Thread Debian Games Team
Package: wnpp
Severity: wishlist
Owner: Debian Games Team <[EMAIL PROTECTED]>


* Package name: tatan
  Version : 1.0
  Upstream Author : HIZ <[EMAIL PROTECTED]>
* URL : http://hizuoka.web.fc2.com/game/tatan/index_en.html
* License : http://www5.atwiki.jp/yaruhara/pages/56.html
  Programming Lang: D
  Description : pointing STG shooter game

 Tatan is a shooter game with simplified controls: use the mouse to aim
 and shoot, and the space bar to toggle your position. You have to collect
 the yellow stars (or shoot the white ones circumscribed in spheres) for
 power-ups.

 The game is played in some sort of quantum universe, and you are
 either positioned on the left or the right.

 The license more or less says you can do whatever you want with it, as
 long as you keep the author's name there.


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



Bug#440924: ITP: projectl -- sword action shooting

2007-09-05 Thread Debian Games Team
Package: wnpp
Severity: wishlist
Owner: Debian Games Team <[EMAIL PROTECTED]>


* Package name: projectl
  Version : 1.001
  Upstream Author : HIZ <[EMAIL PROTECTED]>
* URL : http://hizuoka.web.fc2.com/game/projectL/index_en.html
* License : (GPL, LGPL, BSD, MIT/X, etc.)
  Programming Lang: D
  Description : sword action shooting

 The sword mechanic is everything in this game. Your sword rotates away
 from the direction your ship moves, and in doing so slices through the
 various enemies.

 The license more or less says you can do whatever you want with it, as
 long as you keep the author's name there.


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



Bug#440920: tuxtype crashes after start

2007-09-05 Thread Holger Levsen
Hi,

Thanks for your bug report!

On Wednesday 05 September 2007 13:52, Martin Posch wrote:
> LoadSettings: Settings file does not exist! settings not loaded
> open /dev/sequencer: No such file or directory
> FATAL ERROR: couldn't load font: GenAI102.ttf

This should be fixed with the next upload, where tuxtype will use 
ttf-sil-andika as font.

Also this bug doesnt effect stable, as the GenAI102.ttf is in stable.


regards,
Holger


pgpUaFwEYcezH.pgp
Description: PGP signature


Bug#440905: bashbug: tries to use rmail but it's not in PATH

2007-09-05 Thread Timo Lindfors
Hi,

Justin Pryzby <[EMAIL PROTECTED]> writes:
> /usr/sbin/sendmail is apparently in Debian policy and the FHS.  If it
> didn't work since that's missing, then it's allowed to not work, since
> the system is no longer consistent with the assumptions one is allowed
> to make on a Debian system.

Sorry, please close this. I was accidentally inside the wrong chroot
that has no mail configuration (not even exim). (I used chroot so I
could test the bug against the latest version of bash).

best regards,
Timo Lindfors



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



Bug#440925: ITP: es-shooter -- shooter game

2007-09-05 Thread Debian Games Team
Package: wnpp
Severity: wishlist
Owner: Debian Games Team <[EMAIL PROTECTED]>


* Package name: es-shooter
  Version : 1.0a
  Upstream Author : HIZ <[EMAIL PROTECTED]>
* URL : http://hizuoka.web.fc2.com/game/ES/ES_d.zip
* License : http://www5.atwiki.jp/yaruhara/pages/56.html
  Programming Lang: D
  Description : shooter game

Your ship is surrounded by two circles. You shoot in the direction of
your mouse points, and you move if the mouse pointer is outside the
inner circle.

The license more or less says you can do whatever you want with it, as
long as you keep the author's name there.


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



Bug#368968: Removal of csplain from Debian

2007-09-05 Thread Norbert Preining
Dear all,

I want to inform you that within the next few days the 
csplain
package as contained in texlive-lang-czechslovak will be removed from
Debian/unstable (and later on from Debian/testing).

The reason is that we waited now more than one (1) year that Petr fixes
only the license text and uploads to CTAN, as announced several times:

On Mit, 06 Sep 2006, Petr Olsak wrote:
> > Do you have a timeline for a new release?  Later this year, there will
> 
> Sorry, I have had plans to do this in Jun, but I have solved more
> important things (outside TeX). I mean that my new release will only
> change the license text mentioned in csplain.ini. I don't plan more changes.
> So, my timeline is: the end of september.

This is a sad step, but I don't see any other option.

Of course, if later uploads will make csplain again distributable we
will reinclude it into the Debian TeX Live packages.


Best wishes

Norbert

---
Dr. Norbert Preining <[EMAIL PROTECTED]>Vienna University of Technology
Debian Developer <[EMAIL PROTECTED]> Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
HUCKNALL (vb.)
To crouch upwards: as in the movement of a seated person's feet and
legs made in order to allow a cleaner's hoover to pass beneath them.
--- Douglas Adams, The Meaning of Liff


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



Bug#438864: [Pkg-trac-devel] Bug#438864: fix

2007-09-05 Thread Luis Matos
Thanks ... i will commit that change to our git repository and wait for
a chance to include it in debian (probably with a security patch).

Qua, 2007-09-05 às 14:41 +0200, Gyuris Szabolcs escreveu:
> /usr/share/python-support/trac/trac/versioncontrol/cache.py
> 
> Change the line 114 from
> 
>   pass
> 
> to
>   return
> 
> The working code
> --
> if self.youngest:
> next_youngest = self.repos.next_rev(self.youngest)
> else:
> next_youngest = None
> try:
> next_youngest = self.repos.oldest_rev
> next_youngest = self.repos.normalize_rev(next_youngest)
> except TracError:
> -pass
> +return # can't normalize oldest_rev: repository was
> empty
> 
> 
> It works for me...
> 
> ___
> Pkg-trac-devel mailing list
> [EMAIL PROTECTED]
> http://lists.alioth.debian.org/mailman/listinfo/pkg-trac-devel



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



Bug#440926: pidgin: segfault (and unable to create a backtrace, even when pidgin-dbg installed)

2007-09-05 Thread Matthew Tylee Atkinson
Package: pidgin
Version: 2.0.1-1
Severity: important

I have followed the advice in the BTS to install the following packages: 
libglib2.0-0-dbg; 
libgtk2.0-0-dbg and pidgin-dbg.  However, when I try to run pidgin -d or pidgin 
from within 
gdb, the core file created seems to have no debuging symbols in it.  dgb says: 
``(no 
debugging symbols found)''.  I have also run ``ulimit -c unlimited'' from the 
terminal and
have had no luck.

I don't think I will be able to provide any useful information until I can get 
the backtrace 
to work but I have tried the current unstable version of pidgin (2.1.1) and it 
still crashes 
at some point early after startup.

If you could help me try to work out why the debugging symbols are not being 
used, that 
would be of great help.

best regards,


Matthew

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

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

Versions of packages pidgin depends on:
ii  libavah 0.6.21-1 Avahi Howl compatibility library
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libcair 1.4.10-1 The Cairo 2D vector graphics libra
ii  libdbus 1.1.1-3  simple interprocess messaging syst
ii  libdbus 0.74-1   simple interprocess messaging syst
ii  libfont 2.4.2-1.2generic font configuration library
ii  libgstr 0.10.14-1Core GStreamer libraries and eleme
ii  libgtk2 2.10.13-1The GTK+ graphical user interface 
ii  libgtks 2.0.10-3+b1  a spell-checking addon for GTK's T
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libncur 5.6+20070812-1   Shared libraries for terminal hand
ii  libnspr 1.8.0.13~pre070720-0etch3+lenny1 NetScape Portable Runtime Library
ii  libnss3 3.11.7-1 Network Security Service libraries
ii  libpang 1.16.5-1 Layout and rendering of internatio
ii  libperl 5.8.8-7  Shared Perl library
ii  libsasl 2.1.22.dfsg1-14  Authentication abstraction library
ii  libsasl 2.1.22.dfsg1-14  Pluggable Authentication Modules f
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstar 0.9-1library for program launch feedbac
ii  libx11- 2:1.0.3-7X11 client-side library
ii  libxcur 1:1.1.8-2X cursor management library
ii  libxext 1:1.0.3-2X11 miscellaneous extension librar
ii  libxfix 1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxine 1:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.29.dfsg-1GNOME XML library
ii  libxran 2:1.2.1-1X11 RandR extension library
ii  libxren 1:0.9.2-1X Rendering Extension client libra
ii  libxss1 1:1.1.2-1X11 Screen Saver extension library
ii  pidgin- 2.0.1-1  multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.14-2  GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-good0.10.6-1   GStreamer plugins from the "good" 
ii  python-dbus   0.82.2-1   simple interprocess messaging syst

-- no debconf information


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



Bug#440927: lyx-common: Please pack new upstream version lyx 1.5

2007-09-05 Thread G. Milde
Package: lyx-common
Version: 1.4.4-2
Severity: wishlist


After the bugfix release 1.5.1 is out, it would be nice to have a 'lyx 1.5'
debian package. (Especially, I am longing for the unicode support and tabbed
windows.)

There is an unofficial ad-hoc package available on the lyx download site 
ftp://ftp.lyx.org/pub/lyx/bin/1.5.1/ (thanks to Sam Lewis). 

However, I'd like to see an official one, that integrates well with the rest
of Debian.

Cheers

Guenter

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

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

Versions of packages lyx-common depends on:
ii  perl  5.8.8-7Larry Wall's Practical Extraction 
ii  python2.4.4-6An interactive high-level object-o
ii  python-support0.6.4  automated rebuilding support for p
ii  texlive-latex-base2007-12TeX Live: Basic LaTeX packages
ii  xdg-utils 1.0.1-2Desktop integration utilities from

Versions of packages lyx-common recommends:
pn  lyx(no description available)

-- no debconf information


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



Bug#432569: debian-goodies: /usr/sbin/checkrestart still falsely reports apache2

2007-09-05 Thread Michael Richters
I have also observed this bug.  I have apache2-mpm-prefork running, with
mod_ssl, and I believe this is the problem.  The deleted file in question is
/var/run/apache2/ssl_mutex.

  --Mike


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



Bug#433742: mirror submission for debian.med.univ-tours.fr

2007-09-05 Thread Virgile Aguillon

Simon Paillard wrote:

Hello/Bonjour Virgile,

(Sorry to speak english while we are both french, but the BTS's language
is english)

On Thu, Jul 19, 2007 at 08:39:22AM +, Virgile Aguillon wrote:
  

Submission-Type: new
Site: debian.med.univ-tours.fr



Thanks for the submission of your mirror.
There are a few details to fix before we can add your mirror to the
list.

  

Aliases: mirror.med.univ-tours.fr



It's not really a problem since the main name is
debian.med.univ-tours.fr, but for your information
mirror.med.univ-tours.fr doesn't resolve.

  

Type: leaf
Archive-ftp: /debian/
Archive-http: /debian/
Archive-rsync: debian/



It seems you don't use anonftpsync yet.

Please use the recommended rsync method, which makes mirror's updates
almost atomic and by this way makes your mirror available to users
eveing during updates.

http://www.debian.org/mirrors/ftpmirror#how
http://www.debian.org/mirrors/anonftpsync

This script also doesn't localize the local trace file, while
http://debian.med.univ-tours.fr/debian/project/trace/debian.med.univ-tours.fr
is localized.

  

CDImage-ftp: /debian-cd/
CDImage-http: /debian-cd/
CDImage-rsync: debian-cd/
Security-ftp: /debian-security/
Security-http: /debian-security/
Security-rsync: debian-security/



You should delete http://debian.med.univ-tours.fr/debian-non-US/ which
is obsolete since the release of sarge, more than 2 years ago.

  

Mirrors-from: ftp.fr.debian.org
Archive-architecture: ALL 
Maintainer: Virgile Aguillon <[EMAIL PROTECTED]>

Country: FR France
Location: Tours
Sponsor: UFR Médecine de Tours http://www.med.univ-tours.fr



What are the available bandwidth, and the update frequency ?

Thanks for mirroring and best regards,


  

Hi

My DNS resolving is repaired.
My type is Push (not Leaf) from ftp.fr.debian.org.
Now I use anonftpsync.

My available Bandwidh is 100Mo.

Thanks

begin:vcard
fn:Virgile Aguillon
n:Aguillon;Virgile
org;quoted-printable:Facult=C3=A9 de M=C3=A9decine;Service Informatique
adr;quoted-printable;dom:;;10 bvd Tonnell=C3=A9 ;Tours;;37032
email;internet:[EMAIL PROTECTED]
title;quoted-printable:Administrateur Syst=C3=A8mes & R=C3=A9seaux
tel;work:02 47 3 66160
tel;fax:02 47 3 66099
url:http://www.med.univ-tours.fr
version:2.1
end:vcard



Bug#440928: libopal-2.2: cannot build package

2007-09-05 Thread Didrik Pinte
Package: libopal-2.2
Version: 2.2.8~dfsg1-2
Severity: normal

Hi,

I'm trying to compile libopal-2.2 package from the official repositories.

Here is the procedure used :


[1] apt-get source libopal-2.2
[2] cd opal-2.2.8~dfsg1/
[3] dpkg-buildpackage -rfakeroot

The package cannot be build and outputs the following error : 



 obj_linux_x86_d/simpleopal -g   -L/usr/lib
 -L/home/did/debian/ekiga/opal-2.2.8~dfsg1/lib/debug   ./obj_linux_x86_d/main.o
 -lopal -lpt -lspeex -lldap -llber -lldap_r  -lpthread -lsasl2 -lssl -lcrypto
 -lexpat -lSDL -lresolv -ldl 
 make[2]: Leaving directory
 `/home/did/debian/ekiga/opal-2.2.8~dfsg1/samples/simple'
 make[1]: Leaving directory
 `/home/did/debian/ekiga/opal-2.2.8~dfsg1/samples/simple'
 if (samples/simple/obj_*_d/simpleopal --help >/dev/null);then \
 echo shared debug simpleopal incorrectly compiled static; false;\
 else \
echo shared debug simpleopal correctly  compiled non-static; \
 fi
shared debug simpleopal incorrectly compiled static
make: *** [build-arch-stamp] Error 1


Any idea on the problem ?

Thanks 

Didrik

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

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

Versions of packages libopal-2.2 depends on:
ii  libc6   2.6.1-2  GNU C Library: Shared libraries
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libgcc1 1:4.2.1-5GCC support library
ii  libldap22.1.30.dfsg-13.5 OpenLDAP libraries
ii  libpt-1.10.01.10.7~dfsg1-4   Portable Windows Library
ii  libsasl2-2  2.1.22.dfsg1-14  Authentication abstraction library
ii  libsdl1.2debian 1.2.11-9 Simple DirectMedia Layer
ii  libspeex1   1.1.12-3 The Speex Speech Codec
ii  libssl0.9.8 0.9.8e-8 SSL shared libraries
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3

libopal-2.2 recommends no packages.

-- no debconf information


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



Bug#440927: [Pkg-lyx-devel] Bug#440927: lyx-common: Please pack new upstream version lyx 1.5

2007-09-05 Thread Per Olofsson
Hi,

G. Milde wrote:
> After the bugfix release 1.5.1 is out, it would be nice to have a 'lyx 1.5'
> debian package. (Especially, I am longing for the unicode support and tabbed
> windows.)
> 
> There is an unofficial ad-hoc package available on the lyx download site 
> ftp://ftp.lyx.org/pub/lyx/bin/1.5.1/ (thanks to Sam Lewis). 
> 
> However, I'd like to see an official one, that integrates well with the rest
> of Debian.

There is one, in experimental. It will soon be uploaded to unstable.

-- 
Pelle


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



Bug#440929: apt-cross -i fails completely if an update error happens

2007-09-05 Thread Ritesh Raj Sarraf
Package: apt-cross
Version: 0.2.0
Severity: grave
Justification: renders package unusable

Hi Neil,

Here's what the manpage says for apt-cross -i:

--i|--install 
   Retrieve the architecture-specific package(s) from the Debian 
mirrors into the current
   directory. Check for dependencies that are suitable for dpkg-cross, 
download each dependency
   and build, then install the package and dependencies using 
dpkg-cross and dpkg -i. If
   successfully installed, the temporary downloaded archives are 
removed. Requires working sudo
   setup and will prompt for the sudo password if necessary (if sudo is 
not already cached).

When I do a `apt-cross -a ia64 -i gcc`, it'd follow all the process that
is defined above. The problem is that during an update, some of the
repositories specified in my sources.list file do not offer ia64 or
whatever. And for them, the fetch fails. Now when apt-cross proceeds
ahead, the downloaded file, in this case gcc_4.2.1-5_ia64.deb, is nothing
but an xml file with details about failures it had seen.

This thus further fails with dpkg-cross which complains that the archive
is not a debian archive.

Here's the full error:

@learner:/tmp$ apt-cross -a ia64 -i gcc
Checking dependencies: \
13 packages to install.
dpkg-deb: `binutils_2.18-1_ia64.deb' is not a debian format archive
dpkg-cross: conversion of binutils_2.18-1_ia64.deb failed.
dpkg-deb: `gcc-4.2_4.2.1-4_ia64.deb' is not a debian format archive
dpkg-cross: conversion of gcc-4.2_4.2.1-4_ia64.deb failed.
dpkg-deb: `libgcc1_4.2.1-4_ia64.deb' is not a debian format archive
dpkg-cross: conversion of libgcc1_4.2.1-4_ia64.deb failed.
dpkg-deb: `libc6.1-dev_2.6.1-1_ia64.deb' is not a debian format archive
dpkg-cross: conversion of libc6.1-dev_2.6.1-1_ia64.deb failed.
dpkg-deb: `cpp_4.2.1-5_ia64.deb' is not a debian format archive
dpkg-cross: conversion of cpp_4.2.1-5_ia64.deb failed.
dpkg-deb: `libc6.1_2.6.1-1_ia64.deb' is not a debian format archive
dpkg-cross: conversion of libc6.1_2.6.1-1_ia64.deb failed.
dpkg-deb: `libunwind7_0.98.5-8_ia64.deb' is not a debian format archive
dpkg-cross: conversion of libunwind7_0.98.5-8_ia64.deb failed.
dpkg-deb: `cpp-4.2_4.2.1-4_ia64.deb' is not a debian format archive
dpkg-cross: conversion of cpp-4.2_4.2.1-4_ia64.deb failed.
dpkg-deb: `gcc-4.2-base_4.2.1-4_ia64.deb' is not a debian format archive
dpkg-cross: conversion of gcc-4.2-base_4.2.1-4_ia64.deb failed.
dpkg-deb: `gcc_4.2.1-5_ia64.deb' is not a debian format archive
dpkg-cross: conversion of gcc_4.2.1-5_ia64.deb failed.
dpkg-deb: `linux-libc-dev_2.6.22-4_ia64.deb' is not a debian format
archive
dpkg-cross: conversion of linux-libc-dev_2.6.22-4_ia64.deb failed.
dpkg-deb: `libunwind7-dev_0.98.5-8_ia64.deb' is not a debian format
archive
dpkg-cross: conversion of libunwind7-dev_0.98.5-8_ia64.deb failed.
dpkg-deb: `libgomp1_4.2.1-4_ia64.deb' is not a debian format archive
dpkg-cross: conversion of libgomp1_4.2.1-4_ia64.deb failed.

Ritesh

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

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

Versions of packages apt-cross depends on:
ii  apt   0.7.6  Advanced front-end for dpkg
ii  binutils  2.18~cvs20070812-1 The GNU assembler, linker and bina
ii  dpkg-cross1.39   tools for cross compiling Debian p
ii  dpkg-dev  1.14.5 package building tools for Debian
ii  libfile-homedir-perl  0.64-1 Get the home directory for yoursel
ii  libwww-perl   5.805-1WWW client/server library for Perl
ii  sudo  1.6.8p12-5 Provide limited super user privile

apt-cross recommends no packages.

-- no debconf information

http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
http://www.w3.org/1999/xhtml"; xml:lang="en">

Multimedia Debian Packages::Not found 












debian-multimedia
.org repository


  Home
  
  


http://pagead2.googlesyndication.com/pagead/show_ads.js";>






Page not found




  http://www.google.com/custom"; target="google_window">

  
	http://www.google.com/";>
	http://www.google.com/logos/Logo_25blk.gif"; border="0" alt="Google" align="middle">
	
	
	Enter your search terms
	
  
  
	
	  
	
	  
		
	  Web
	  
		
	  debian-multimedia.org
	
	  
	  Submit search form
	  
	  
	  
	  
	  
	  
	  
	  
	  

  







Bug#440161: wrong /etc/fstab when installing on RAID using Adaptec 2100S

2007-09-05 Thread Jérémy Bobbio
On Wed, Sep 05, 2007 at 03:00:50PM +0200, Arne Metzger wrote:
> So: the d-i recognizes my RAID-Array as /dev/sda. After Reboot, i2o_core 
> and i2o_block are loaded, and from that moment /dev/sda is known as 
> /dev/i2o/hda.

If your server is still "experimental", it would be quite helpful if you
could you try with a recent daily build of the debian-installer [1] and
see if the issue is still there.

In the past months, we got rid of the old devfs style device names.
This could actually have solved your issue, so it would be great if you
could help us in verifying that.

[1] amd64: http://people.debian.org/~aba/d-i/images/20070902-10:51/
  or i386: http://people.debian.org/~joeyh/d-i/images/20070905-09:01/

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#440903: split package in ladspa-sdk and ladspa-sdk-demoplugins

2007-09-05 Thread Junichi Uekawa
Hi,

> > > according to /usr/share/doc/ladspa-sdk/example_plugins.html, plugins
> > > with the same functionality are also included in the cmt plugin
> > > set. thus i would propose to split this package in to two
> > > packages. one for providing the sdk and one for providing the demo
> > > plugins. thus it can be avoided that people have two functionally
> > > equivalent plugins installed on their machines, if they install both
> > > ladspa-sdk and cmt
> > 
> > They are so small the difference is negligible.
> 
> negligible in technical or in usability terms? in technical terms i
> agree, but for usability it is less confusing, if a user can only select
> one white noise generator instead of having to select one of two
> generators, that are functionally equivalent but having different names
> and ladspa ids

Because they have different names and IDs, it's not a wise idea to
remove them from Debian.

Splitting a package means removing the package from majority of Debian
users. Does this usability glitch warrant that drastic change,
increasing the number of Debian packages by 12 or so ?

I doubt it.

regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#169034: yytn{{k

2007-09-05 Thread gaina Klinkhamer

How it is going 169034
All the ladies want to f*ck me now, they never use too..

tania Khokhani
http://souitng.com/



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



Bug#440931: debian-policy: Virtual package for Japanese font packages(ttf-japanese-mincho and ttf-japanese-gothic)

2007-09-05 Thread Nobuhiro Iwamatsu
Package: debian-policy
Version: 3.7.2.2
Severity: wishlist

Hi, 
We (Japanese Task Force: JTF) would like to propose 'ttf-japanese-mincho'
and 'ttf-japanese-gothic' as names of virtual packages:
  - ttf-japanese-mincho 
Japanese font for Mincho-style.
  - ttf-japanese-gothic 
Japanese font for Gothic-style 

--- PROPOSAL ---
We, the Japanese font packages maintainers and their 
collaborators (Japanese Task Force: JTF), propose 
following action items to ease the task of the default
font selection for applications under the Debian system. 
 
 * The creation of new virtual package name: 
  - ttf-japanese-mincho 
  - ttf-japanese-gothic 
 * The creation of new alternative name: 
  - ttf-japanese-mincho.ttf 
  - ttf-japanese-gothic.ttf 
 * The adjustment of font packages which provide newly created virtual 
   package name. 
 * The adjustment of application packages which directly declare 
   dependency to the Japanese ttf font packages. 
 
[Packages which are affected]

 * Japanese font packages
 * Application packages which declare dependency to the Japanese ttf package
  - libpango1.0-common
  - xpdf-japanese
  - gs-cjk-resource
  - xdvik-ja
  - vflib2
  - mgp
  - libkiten1
  - kiten
  - kanjipad
  - kanatest
  - gjiten
  - advi-examples
  - advi

[Packages which are not affected]

 * The application packages which use defoma or fontconfig for their
   font configuration.

[Details of proposed action items]
 1. Each Japanese font packages provides one of the virtual package name in its 
Provides stanza based on the glyph style:
  - ttf-japanese-mincho (for Mincho-style. The glyph style corresponds to 
sans-serif.)
  - ttf-japanese-gothic (for Gothic-style. The glyph style corresponds to 
gothic.)

 2. Each Japanese font packages registers to the alternative system while making
link from ttf-japanese-mincho.ttf or ttf-japanese-gothic.ttf in
/usr/share/fonts/truetype/ directory.  The priority level of alternative is
specified as follows.

   above 100: Third party or user created fonts
   60:ttf-vlgothic
   50:ttf-sazanami-mincho, ttf-sazanami-gothic
   20:ttf-kochi-mincho, ttf-kochi-gothic
   below 20:  fonts which are deprecated for use in Japanese environment,
  (e.g..,  fonts which use Chinese style glyph for the unified
  region characters.)

 3. The application that specifies a specific Japanese font package dependency 
replaces its dependency to ttf-japanese-mincho | ttf-japanese-gothic (or
ttf-japanese-mincho, ttf-japanese-gothic) as needed.  Then, the path to the
specific font is replaced by the path to
/usr/share/fonts/truetype/ttf-japanese-mincho.ttf and
/usr/share/fonts/truetype/ttf-japanese-gothic.ttf.

[Time line]
N-x   The discussion period ends and the formal request to add virtual package 
names 
  is sent to debian-policy from the JTF.
N The proposed new virtual packages are approved.
  Uploading of the updated Japanese font packages is started by the JTF.
  The making and testing of the patch to the affected application packages 
  which depend on the Japanese ttf are started by the JTF.

N+3   Uploadings of all Japanese font packages are completed. (including NMUs)

N+13  The ttf-vlgothic and ttf-sazanami-mincho packages which are the core font 
  packages enters into testing (at least).
  The tested patches to the affected packages which depend on the Japanese
  ttf packages are sent out to the BTS by the JTF.

N+25  The JTF requests non-responsive maintainers for the permission to perform
  the NMUs of the affected packages.

N+30  The NMUs of updated packages are completed.

[Proposer]
Kenshi Muto (Debian developer)
Hideki Yamane (Debian contributor)
Junichi Uekawa (Debian developer)
Nobuhiro Iwamatsu (Debian contributor)

regards,
 Nobuhiro

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

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

-- no debconf information

-- 
Nobuhiro Iwamatsu
[EMAIL PROTECTED]
[EMAIL PROTECTED]

GPG ID : 3170EBE9


pgpawGz3iQI2R.pgp
Description: PGP signature


Bug#435888: A few problems

2007-09-05 Thread Neil Williams
OK, I've taken a quick look at this package and there are a few
problems.

(The "Ubuntu" package mentioned in the RFP is a .deb but it is not
part of Ubuntu and there are serious errors in the packaging of
that .deb) :

1. Nearly all the files in the upstream tarball are executable which is
a PITA and requires a new tarball to be released with only essential
scripts set to executable. (Probably only ./configure.)

2. The package includes loads of XSL that appears to have already been
packaged for Debian and some of that has been modified compared to
upstream. There should be an option supported by ./configure to omit
these files from the 'make install' so that Debian does not have to
carry duplicate XSL files. xmlcopyeditor would then depend on
docbook-xsl and other similar packages that are maintained separately.
If any XSL files remain after these dependencies have been identified,
they can be packaged separately. This may require changes in the
upstream source to use /etc/catalog.xml to locate the correct
stylesheets. (See the datafreedom-qsfxsl package for an example.)
http://packages.debian.org/sid/datafreedom-qsfxsl

3. There are over TWENTY licences claimed within the source! Despite
that, NONE of the source files have any copyright information or any
licence information:
$ sudo apt-get install devscripts
$ licensecheck -r . | grep -c UNKNOWN
111
$ licensecheck -r . | grep -v UNKNOWN
./ltmain.sh: GPL (v2 or later) GENERATED FILE
./src/xmlcopyeditor_private.h: GENERATED FILE

I'm guessing that separating out the XSL from the C++ will mean that
the C++ is under a single licence but that needs to be made explicit,
preferably by specifying the typical copyright and licence header in
every .cpp and .h file:

/***
 *filename.c
 *
 *  timestamp
 *  Copyright  year  name email
 /
/*
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see . */
(GPL3 in this example from one of my upstream C projects.)

4. The supported translations are packaged in a non-standard way -
there is no po/ directory, instead arbitrary directories are used to
package the prebuilt messages.mo files. This is a very bad idea as it
prevents translators within Debian from contributing to the translation
effort. The package should use gettext macros and a po/ directory and
package xmlcopyeditor.pot so that translations can be updated and
committed back upstream.

The upstream package is therefore not suitable for Debian at this time.

The final problem is that it requires wxwidgets2.8 when only 2.6 is
currently available in Debian unstable because of various issues - one
of which is the fragility of wxwidgets versions:

> We can't by any sensible measure just keep accruing wx releases in the
> distro.  There are apps still happily using 2.4 because an 'upgrade' to
> 2.6 will break them, though the demise of gtk1 is going to put an end
> to that period of bliss eventually whether they are working or not...
> 
> wx2.6 was rushed out prematurely, because book deadlines apparently
> trump good release management, 2.8 followed fairly shortly after for
> reasons which should be obvious, but not quickly enough to introduce
> another transition into the etch cycle.  Its the release we probably
> should have had in etch, but only very few people I know of had tested
> it with apps that were candidates for the distro, and though there were
> some apps that already would no longer work with 2.6 in their latest
> form, the needs of the many ultimately had to win the hand for etch.
> 
> I don't know of any app that missed inclusion totally from etch for
> this reason.
> 
> So the million dollar question now, is which version do we want to ship
> with Lenny.  2.8 will almost certainly be obsolete by then, and it looks
> like 2.9 is going to totally break everybody's string handling yet again.
> How big a nightmare that proves to be is probably also going to depend
> on how many shortcuts it takes to make an intractable solution meet
> another contractual deadline...
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403237

So I don't see xmlcopyeditor as a viable candidate for Debian, sorry.
(I don't know if a new release could work with 2.6.)

-- 


Neil Williams
--
[EMAIL PROTECTED]
[EMAIL PROTECTE

  1   2   3   4   >