Bug#524806: Fwd: etch patch for CVE-2009-0146/147/0166/0799/0800/1179/1180/1181/1182/1183/1187

2009-08-04 Thread Michael S Gilbert
tag 524806 patch
thanks

derived from ubuntu's 0.5.1 patch, here is a patch set for etch's
0.4.5.  i am fairly certain all of these CVEs are addressed in this one.

note vulnerable code not present in etch for CVE-2009-0755/1188.

please test; i've done some basic testing with existing pdfs on my
system, but have by no means done extensive or robust testing.
hopefully nothings been broken.

this may be useful for the etch r9 point release (if not for a DSA)?

good night,
mike
diff -ur poppler-0.4.5/poppler/CairoOutputDev.cc poppler-0.4.5-new/poppler/CairoOutputDev.cc
--- poppler-0.4.5/poppler/CairoOutputDev.cc	2005-12-12 17:24:01.0 -0500
+++ poppler-0.4.5-new/poppler/CairoOutputDev.cc	2009-08-04 01:27:24.0 -0400
@@ -509,7 +509,7 @@
   cairo_matrix_t matrix;
   int is_identity_transform;
   
-  buffer = (unsigned char *)gmalloc (width * height * 4);
+  buffer = (unsigned char *)gmallocn (width, height * 4);
 
   /* TODO: Do we want to cache these? */
   imgStr = new ImageStream(str, width,
Only in poppler-0.4.5-new/poppler: CairoOutputDev.cc.orig
diff -ur poppler-0.4.5/poppler/JBIG2Stream.cc poppler-0.4.5-new/poppler/JBIG2Stream.cc
--- poppler-0.4.5/poppler/JBIG2Stream.cc	2006-01-10 13:53:54.0 -0500
+++ poppler-0.4.5-new/poppler/JBIG2Stream.cc	2009-08-04 01:26:46.0 -0400
@@ -422,12 +422,14 @@
   table[i] = table[len];
 
   // assign prefixes
-  i = 0;
-  prefix = 0;
-  table[i++].prefix = prefix++;
-  for (; table[i].rangeLen != jbig2HuffmanEOT; ++i) {
-prefix = table[i].prefixLen - table[i-1].prefixLen;
-table[i].prefix = prefix++;
+  if (table[0].rangeLen != jbig2HuffmanEOT) {
+i = 0;
+prefix = 0;
+table[i++].prefix = prefix++;
+for (; table[i].rangeLen != jbig2HuffmanEOT; ++i) {
+  prefix = table[i].prefixLen - table[i-1].prefixLen;
+  table[i].prefix = prefix++;
+}
   }
 }
 
@@ -491,7 +493,7 @@
   }
   if (p-bits  0) {
 error(str-getPos(), Bad two dim code in JBIG2 MMR stream);
-return 0;
+return EOF;
   }
   bufLen -= p-bits;
   return p-n;
@@ -507,7 +509,7 @@
 ++nBytesRead;
   }
   while (1) {
-if (bufLen = 7  ((buf  (bufLen - 7))  0x7f) == 0) {
+if (bufLen = 11  ((buf  (bufLen - 7))  0x7f) == 0) {
   if (bufLen = 12) {
 	code = buf  (12 - bufLen);
   } else {
@@ -550,14 +552,15 @@
 ++nBytesRead;
   }
   while (1) {
-if (bufLen = 6  ((buf  (bufLen - 6))  0x3f) == 0) {
+if (bufLen = 10  ((buf  (bufLen - 6))  0x3f) == 0) {
   if (bufLen = 13) {
 	code = buf  (13 - bufLen);
   } else {
 	code = buf  (bufLen - 13);
   }
   p = blackTab1[code  0x7f];
-} else if (bufLen = 4  ((buf  (bufLen - 4))  0x0f) == 0) {
+} else if (bufLen = 7  ((buf  (bufLen - 4))  0x0f) == 0 
+	   ((buf  (bufLen - 6))  0x03) != 0) {
   if (bufLen = 12) {
 	code = buf  (12 - bufLen);
   } else {
@@ -667,6 +670,7 @@
   void combine(JBIG2Bitmap *bitmap, int x, int y, Guint combOp);
   Guchar *getDataPtr() { return data; }
   int getDataSize() { return h * line; }
+  GBool isOk() { return data != NULL; }
 
 private:
 
@@ -762,6 +766,8 @@
 inline void JBIG2Bitmap::getPixelPtr(int x, int y, JBIG2BitmapPtr *ptr) {
   if (y  0 || y = h || x = w) {
 ptr-p = NULL;
+ptr-shift = 0; // make gcc happy
+ptr-x = 0; // make gcc happy
   } else if (x  0) {
 ptr-p = data[y * line];
 ptr-shift = 7;
@@ -806,6 +812,10 @@
   Guint src0, src1, src, dest, s1, s2, m1, m2, m3;
   GBool oneByte;
 
+  // check for the pathological case where y = -2^31
+  if (y  -0x7fff) {
+return;
+  }
   if (y  0) {
 y0 = -y;
   } else {
@@ -1226,6 +1236,7 @@
   Guint segNum, segFlags, segType, page, segLength;
   Guint refFlags, nRefSegs;
   Guint *refSegs;
+  int segDataPos;
   int c1, c2, c3;
   Guint i;
 
@@ -1293,6 +1304,16 @@
   goto eofError2;
 }
 
+// keep track of the start of the segment data 
+segDataPos = getPos();
+
+// check for missing page information segment
+if (!pageBitmap  ((segType = 4  segType = 7) ||
+			(segType = 20  segType = 43))) {
+  error(getPos(), First JBIG2 segment associated with a page must be a page information segment);
+  return;
+}
+
 // read the segment data
 switch (segType) {
 case 0:
@@ -1368,6 +1389,45 @@
   break;
 }
 
+// Make sure the segment handler read all of the bytes in the 
+// segment data, unless this segment is marked as having an
+// unknown length (section 7.2.7 of the JBIG2 Final Committee Draft)
+
+if (segLength != 0x) {
+
+  int segExtraBytes = segDataPos + segLength - getPos();
+  if (segExtraBytes  0) {
+
+	// If we didn't read all of the bytes in the segment data,
+	// indicate an error, and throw away the rest of the data.
+	
+	// v.3.1.01.13 of the LuraTech PDF Compressor Server will
+	// sometimes generate an extraneous NULL byte at the end of
+	// arithmetic-coded symbol dictionary segments when numNewSyms
+	// == 0.  Segments like this often 

Bug#539861: ITP: madlib -- mesh adaptation library

2009-08-04 Thread Christophe Prud'homme
Package: wnpp
Severity: wishlist
X-Debbugs-CC: 
debian-de...@lists.debian.org,pkg-scicomp-de...@lists.alioth.debian.org,debian-scie...@lists.debian.org

--- Please fill out the fields below. ---

   Package name: madlib
Version: 1.2.2
Upstream Author: Jean-François Remacle jean-francois.rema...@uclouvain.be, 
 Gaëtan Compere gaetan.comp...@uclouvain.be
URL: http://www.madlib.be
License: LGPL
Description: 
MAdLib is a mesh adaptation library. This is an important tool for numerical 
simulations in particular in the context of finite element 
simulation. At the moment Debian is missing such a tool. This package is almost 
ready to b uploaded in the git repository of pkgscicomp.
Note that MAdLib is strongly related to Gmsh : it uses Gmsh to ensure that the 
geometry is preserved while adapting the mesh.
MAdLib is a library that performs global node repositioning and mesh adaptation 
by local mesh modifications on tetrahedral or triangular 
meshes. It is designed to frequently adapt the mesh in transient computations. 
MAdLib is written in C++. 
The adaptation procedure is driven by two objectives: 
 - make the edge lengths as close as possible to a (non-homogenous) prescribed 
length, 
 - maintain a satisfying element quality everywhere. 
MAdLib can therefore be used in transient computations in order to maintain a 
satisfying element quality (moving boundaries, multiphase 
flows with interface tracking, ...) or/and to apply selective refinements and 
coarsenings (error estimators based, interface capturing: 
shocks, free surfaces, ...).

MAdLib is copyright (C) 2008-2009 by the Université catholique de Louvain, 
Belgium
-- 
Debian Developer
Annecy - Grenoble
Scientific computing related software



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



Bug#538369: [wordnet] wordnet fails to install because of unmet wordnet-base dependency

2009-08-04 Thread Andreas Tille

On Mon, 3 Aug 2009, Riccardo Stagni wrote:


The problem will fix by itself when amd64 will be able to compile the
source package. Andreas, you could close this report or tag it as
blocked by 529491. Personally, I would close it as it's not a real bug
but something that happens sometimes in unstable.
What solution you prefer? Lior?


When thinking about this we might leave this bug open and I'll close
it with the upload which closes the FTBFS bug (#529491).  So users
are able to read about this problem in BTS and will not start filing
the same bug once more.

I actually hope to find some time which solves the issue soon(ish).

Thanks for sorting this out

   Andreas.

--
http://fam-tille.de



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



Bug#538849: could you tell me where the dictionaries raw data come from?

2009-08-04 Thread Tong Sun
On Mon, Aug 3, 2009 at 11:01 PM, LIU Qiliuq...@gmail.com wrote:
 On Sun, Aug 02, 2009 at 09:00:34PM +0800, LIU Qi wrote:
   Dear Mr. Ma and Mr. Fu,
  
   I am packaging your dictionaries data from stardict 1.3 and
   xdict for Debian to used as the dictionaries of stardict.
   Now I really need to know where the raw data source of the
   dictionaries come from to determine if they follow the DFSG
   (http://www.debian.org/social_contract#guidelines). Could you tell me
   more information about your dictionaries? Thank you very much.
 I have contacted the upstream of the two dictionaries, xdict and
 stardict 1.3. Most mails are failed to send. And no one responses my
 mail. I am afraid that we can not figure out how these dictionaries are
 made.

On their main dictionary entrance page,
http://stardict.sourceforge.net/Dictionaries.php

there is a disclaimer,

Notice: As the dictionaries are collected from the internet, we can't
make sure of each dictionary's license, if you find your dictionaries
are downloadable here, which is not allowed, please mail me, i will
remove it soon.

So I think (and heard) Changwoo's suspicion is right.

Just pack those save ones. All stardict dictionaries are extremely
easy to install anyway.

my 2c

cheers

tong



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



Bug#538852: could you tell me where the dictionaries raw data come from?

2009-08-04 Thread Tong Sun
On Tue, Aug 4, 2009 at 2:20 AM, Tong
 Just pack those save ones.

sorry, I meant *safe*.



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



Bug#539862: gmailfs: update debian/copyright to latest dh-make template

2009-08-04 Thread Jari Aalto
Package: gmailfs
Version: 0.8-5
Severity: minor


debian/copyright is missing upstream author's contact. Please
add email address.

Please update the file to follow latest format of
/usr/share/debhelper/dh_make/licenses/gpl2 (see below):

Upstream Author(s):

put author's name and email here
likewise for another author

Copyright:

Copyright (C)  Firtname Lastname
likewise for another author

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

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

Versions of packages gmailfs depends on:
ii  fuse-utils  2.7.4-2  Filesystem in USErspace (utilities
ii  python  2.5.4-2  An interactive high-level object-o
ii  python-central  0.6.11   register and build utility for Pyt
ii  python-fuse 1:0.2-pre3-9 Python bindings for FUSE (Filesyst
ii  python-libgmail 0.1.11-1 Python bindings to access Gmail ac

Versions of packages gmailfs recommends:
ii  encfs 1.5.2-1encrypted virtual filesystem

gmailfs suggests no packages.

-- no debconf information



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



Bug#538849: could you tell me where the dictionaries raw data come from?

2009-08-04 Thread LIU Qi
On Tue, Aug 04, 2009 at 02:20:41AM -0400, Tong Sun wrote:
  there is a disclaimer,
  
  Notice: As the dictionaries are collected from the internet, we can't
  make sure of each dictionary's license, if you find your dictionaries
  are downloadable here, which is not allowed, please mail me, i will
  remove it soon.
  
  So I think (and heard) Changwoo's suspicion is right.
  
  Just pack those save ones. All stardict dictionaries are extremely
  easy to install anyway.
I am afraid that only CEDICT is safe, and we should remove package
dict-stardic and dict-xdict from Debian main.

Regards,
Qi



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



Bug#539753: [Pkg-utopia-maintainers] Bug#539753: network-manager: Init script provides wrong name for sequence based boot

2009-08-04 Thread Andreas Tille

On Mon, 3 Aug 2009, Michael Biebl wrote:


This statement is not correct. In the LSB header you can declare a Provides:
that does not need to match the name of the init script file.

If at all, this requirement could be said to be a best practice (which we then
should document).


I mailed about this issue with Petter Reinholdtsen:

--
Date: Mon, 3 Aug 2009 16:27:05 +0200
From: Petter Reinholdtsen p...@hungry.com
To: Andreas Tille til...@rki.de
Subject: Re: [Pkg-utopia-maintainers] Bug#539753: network-manager: Init script
provides wrong name for sequence based boot (fwd)

[Andreas Tille]

Ditto


I modified URL:http://wiki.debian.org/LSBInitScripts to make it more
clear what to put in the provides header.  Does it help?

Michael is right that this is best practice and not technically
required for dependency based boot sequencing to work.  The reason is
that it is more predicable and easier to understand if the provide and
the script name uses the same name space.
--


gdm is refering to the network-manager and thus fails to load right
in time because it is not running.


Given the above, the gdm init script could be changed to have a
Should-Start: NetworkManager

which would have the same effect.


I agree that this would have the same effect but I guess there are more
packages than gdm which would need to be changed that way and the Wiki
page above seems to be clear about the best practices - so people who are
aware of this page might have done accordingly.


I don't know if there are other packages which already depend on the
NetworkManager facility name and would be broken by this change and if it is
safer to change the gdm init script instead.


I have not checked this nor am I able to spend more time into this.

Kind regards

   Andreas.

--
http://fam-tille.de



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



Bug#539863: liblua5.1-wsapi1: /usr/bin/wsapi.cgi has ^M characters

2009-08-04 Thread Anthony Towns
Package: liblua5.1-wsapi1
Version: 1.1.0-4
Severity: important

wsapi.cgi has carriage return (^M, \r) characters at end-of-line, which makes
it non-executable because there's no lua5.1\r in $PATH:

$ /usr/bin/wsapi.cgi 
: No such file or directory

$ /usr/bin/wsapi.cgi 21 |hexdump -C
  2f 75 73 72 2f 62 69 6e  2f 65 6e 76 3a 20 6c 75  |/usr/bin/env: lu|
0010  61 35 2e 31 0d 3a 20 4e  6f 20 73 75 63 68 20 66  |a5.1.: No such f|
0020  69 6c 65 20 6f 72 20 64  69 72 65 63 74 6f 72 79  |ile or directory|
0030  0a|.|
0031

Cheers,
aj



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



Bug#539864: [INTL:ast] Asturian tasksel updated translation

2009-08-04 Thread Marcos
Package: tasksel
Version: N/A
Severity: wishlist
Tags: l10n patch

Please find attached the Asturian update translation of the tasksel
package (only tasksel-tasks).

Thanks very much!


tasksel_tasks_po_ast.po.gz
Description: GNU Zip compressed data


Bug#539865: gmailfs: Unable to use Gmail account - No space left on device

2009-08-04 Thread Jari Aalto
Package: gmailfs
Version: 0.8-5
Severity: grave


The gmailfs interface appears non-working. The FUESE module module
cannot access GMail.

0. All the following was done as a regular user (not root)

1. Create a fresh google account

2. Make ~/.gmailfs.conf + chmod 600 (see below)

3. Mount with

   I can send password for this in private mail

   /sbin/mount.gmailfs none ~/var/mnt/gmail -o 
username=testa911,password=*,fsname=test123

4. Check mount

$ mount | grep gmail
python on /home/foo/var/mnt/gmail type fuse.python 
(rw,nosuid,nodev,user=jaalto)

5. Check mount point

$ ls /home/foo/var/mnt/gmail
ls: cannot access /home/foo/var/mnt/gmail: No space left on device

6. Check log file (see below)

---

# ~/.gmailfs.conf
# chmod 600 ~/.gmailfs.conf

[connection]
# The proxy URL
#proxy = http://user:p...@proxyhost:port
# or just
#proxy = http://proxyhost:port

# The number or retries for the proxy connection.
#retries = 3

[account]
username = foo
password = foo

[filesystem]
fsname = foo123

[references]
# reference = filesystem:username:password

[logs]
# Change this to DEBUG for verbose output (useful for debugging)
level = DEBUG

# if you'd like logs to go to stdout, comment out this variable.
# For logging to, say, stderr, use /dev/stderr of your system's
# equivalent for it
logfile = ~/var/log/gmailfs.log

# End of file

---

$ cat ~/var/log/gmailfs.log

08/04/09 09:38:52 ERROR  OpenSSLProxy is missing. Can't use HTTPS proxy!
08/04/09 09:38:52 INFO   Starting gmailfs in child process (PID 11989)
08/04/09 09:38:52 INFO   waiting for /home/foo/var/mnt/gmail to become a 
mountpoint
08/04/09 09:38:52 INFO   Mountpoint: /home/foo/var/mnt/gmail
08/04/09 09:38:52 INFO   Named mount options: {'username': 'testa911', 
'password': '', 'fsname': 'lx1ca2'}
08/04/09 09:38:55 INFO   Connected to gmail
08/04/09 09:38:56 DEBUG  get stat:/
08/04/09 09:38:56 DEBUG  check getnodemsg:/
08/04/09 09:38:56 DEBUG  ind:0
08/04/09 09:38:56 DEBUG  dirpath:/ name:
08/04/09 09:38:56 DEBUG  ind:0
08/04/09 09:38:56 DEBUG  dirpath:/ name:
08/04/09 09:38:57 INFO   Sent message failed
08/04/09 09:38:57 INFO   Sent message failed
08/04/09 09:38:58 INFO   Sent message failed
08/04/09 09:38:58 ERROR  Send failed too many times
08/04/09 09:38:58 DEBUG  get stat:/
08/04/09 09:38:58 ERROR  gmailfs child died, exiting...
08/04/09 09:38:58 DEBUG  check getnodemsg:/
08/04/09 09:38:58 DEBUG  ind:0
08/04/09 09:38:58 DEBUG  dirpath:/ name:
08/04/09 09:38:58 DEBUG  ind:0
08/04/09 09:38:58 DEBUG  dirpath:/ name:
08/04/09 09:38:59 INFO   Sent message failed
08/04/09 09:38:59 INFO   Sent message failed
08/04/09 09:38:59 INFO   Sent message failed
08/04/09 09:38:59 ERROR  Send failed too many times
08/04/09 09:39:21 DEBUG  get stat:/
08/04/09 09:39:21 DEBUG  check getnodemsg:/
08/04/09 09:39:21 DEBUG  ind:0
08/04/09 09:39:21 DEBUG  dirpath:/ name:
08/04/09 09:39:21 DEBUG  ind:0
08/04/09 09:39:21 DEBUG  dirpath:/ name:
08/04/09 09:39:22 INFO   Sent message failed
08/04/09 09:39:22 INFO   Sent message failed
08/04/09 09:39:22 INFO   Sent message failed
08/04/09 09:39:22 ERROR  Send failed too many times
08/04/09 09:44:47 DEBUG  get stat:/
08/04/09 09:44:47 DEBUG  check getnodemsg:/
08/04/09 09:44:47 DEBUG  ind:0
08/04/09 09:44:48 DEBUG  dirpath:/ name:
08/04/09 09:44:48 DEBUG  ind:0
08/04/09 09:44:48 DEBUG  dirpath:/ name:
08/04/09 09:44:48 INFO   Sent message failed
08/04/09 09:44:49 INFO   Sent message failed
08/04/09 09:44:49 INFO   Sent message failed
08/04/09 09:44:49 ERROR  Send failed too many times

---

$ dpkg -L gmailfs

/.
/sbin
/usr
/usr/bin
/usr/bin/mount.gmailfs
/usr/share
/usr/share/pyshared
/usr/share/pyshared/gmailfs.py
/usr/share/pyshared-data
/usr/share/pyshared-data/gmailfs
/usr/share/doc
/usr/share/doc/gmailfs
/usr/share/doc/gmailfs/README
/usr/share/doc/gmailfs/changelog.gz
/usr/share/doc/gmailfs/copyright
/usr/share/doc/gmailfs/examples
/usr/share/doc/gmailfs/examples/tests.py.gz
/usr/share/doc/gmailfs/NEWS.Debian.gz
/usr/share/doc/gmailfs/changelog.Debian.gz
/usr/share/man
/usr/share/man/man8
/usr/share/man/man8/mount.gmailfs.8.gz
/etc
/etc/gmailfs
/etc/gmailfs/gmailfs.conf
/sbin/mount.gmailfs

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

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

Versions of packages gmailfs depends on:
ii  fuse-utils  2.7.4-2  Filesystem in USErspace (utilities
ii  

Bug#525826: flac maintenance RC bug

2009-08-04 Thread Fabian Greffrath

Christophe Mutricy schrieb:

If an upload can happen quiclky , it would be great as it would save a binNMU.
Currently all packages depending on libflac-dev ftbfs sue to
libflac.la refering to libogg.la which has been removed (see #5539687)


Just a second please, I found some other issue...

--
Dipl.-Phys. Fabian Greffrath

Ruhr-Universität Bochum
Lehrstuhl für Energieanlagen und Energieprozesstechnik (LEAT)
Universitätsstr. 150, IB 3/134
D-44780 Bochum

Telefon: +49 (0)234 / 32-26334
Fax: +49 (0)234 / 32-14227
E-Mail:  greffr...@leat.ruhr-uni-bochum.de



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



Bug#539866: ITP: pdfchain -- a graphical user interface for the PDF Tool Kit

2009-08-04 Thread Johann Felix Soden
Package: wnpp
Severity: wishlist
Owner: Johann Felix Soden joh...@gmx.de

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

* Package name: pdfchain
  Version : 0.123
  Upstream Author : Martin Singer (m_pow...@users.sourceforge.net)
* URL : http://pdfchain.sourceforge.net/
* License : GPL-3+
  Programming Lang: C++
  Description : a graphical user interface for the PDF Tool Kit

The program includes features designed to handle PDF files in a easy
way. Basically it can merge, split, add backgrounds or stamps and add
attachments. There are some tools for extended needs, too.

The GUI is written in GTKmm, a C++ library for GTK+.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iQIcBAEBCgAGBQJKd9noAAoJEINZGTv9ywnERxEQAI6UO51s4aAG1w7rQ3gFx/AE
WNOGRJIdoiaNi2DLEXOIh2+cHpXJnX4/lVFZI606eiVq1H/ZaZOAaxTKuXkJdAYp
g7jNQ3Mvr9govzYqr/l3MhYPV/YDcjPbi/Gyix3KOpuSFcTTWR/nSoKxYDWVhUvM
d3UamMxJlCtOUVs+kKgKu1SPrzOYWiwa2Rb442oj65ZhyyeTBi3WXh7G1HumqOMO
WZ88oA8ZZOAAKItB4RwaQaUy5iAT+RKTBsCMp51tcC+UrtNRkZ0dLtZX39BhR1sN
odcCyYYkz8TlX3GbbvVv3WHDofxgOeGBJXGgfX5CcnrNzshk6GJ1aoICdd5k2JI0
BOUWRZ6k9v2F4aytGV+ij6qaVJtYMpvhmsilSSTU+PB1GzwSdppm/ym3BsNqxi4x
f7FAm/6yKcH3nvLz91JXKk8n1u6n0M7aQpfLoAHxSvfMN5OLsp67OqaTQVJckuj6
Zyq6cZcZGEu2ORRJF0cSywci3CShcMlKSa54AHzvTRhg9v2EAfNp4RGOJOJ6PoXz
0fYrlsEt3dAFKe6FJ+LFOnGVKGvZvCLDBTCsR2YNYUIGLw8xYiBXQFAXV27ADbgo
ZHIJs3f7kuKBNjMrduDD0Ov/CjiTm6EyXXL/xctTT7oaOu9T/FO2OMDIpoTA8gEm
4AGKlwHb8MjzpHEFZXOV
=5GFe
-END PGP SIGNATURE-




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



Bug#538901: [pkg-wine-party] #538901

2009-08-04 Thread Ove Kaaven
Mishustin Alexey skrev:
 Hi,
 
 Could you say something about bug #538901?

Something like No clue, perhaps? Don't know if you've changed anything
on your system, and personally I don't play that gam... I mean, don't
use that application. (I'm content with The GIMP)

Upstream probably also aren't very interested in supporting it under
Wine 1.0.*, and would just ask if you've tried it under Wine 1.1.26 or
something. (You can get that at http://people.debian.org/~ovek/wine/, by
the way.)

As far as debugging go, warn+all is generally not very helpful. Often
you'd use stuff like +relay,+seh or anything relevant to the problem
area. You could send me a log of that if you like.

I suppose that something you could try is to run the program in some
English locale, rather than Russian.



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



Bug#538886: fixed by reboot

2009-08-04 Thread Marc Pignat
Hi all!

The bug disappeared after a reboot, probably a problem when upgrading.

Best regards

Marc



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



Bug#525826: flac maintenance RC bug

2009-08-04 Thread Fabian Greffrath

Fabian Greffrath schrieb:

Just a second please, I found some other issue...


Allright, IMHO flac is really ready for upload now!

--
Dipl.-Phys. Fabian Greffrath

Ruhr-Universität Bochum
Lehrstuhl für Energieanlagen und Energieprozesstechnik (LEAT)
Universitätsstr. 150, IB 3/134
D-44780 Bochum

Telefon: +49 (0)234 / 32-26334
Fax: +49 (0)234 / 32-14227
E-Mail:  greffr...@leat.ruhr-uni-bochum.de



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



Bug#539744: chroot to lenny /target in debootstrap segfaults

2009-08-04 Thread Frans Pop
On Tuesday 04 August 2009, Ferenc Wagner wrote:
 The two traces are very similar indeed.  What I could spot:
  * /target vs. /target/ on the command line.

That's just from auto-completion. Not relevant.

  * The new chroot binary reads 4 bytes from urandom and does an extra
mprotect before chrooting; the old one does not.  I don't know what
it is, maybe an extra tripwire which (the new?) mount manages to
trip, or some new type of randomization which mount isn't prepared
for...  Just guessing.

  * The new fstab is 841 bytes, the old is 492.

That's because it now contains UUID= instead of /dev/[hs]dX.

  * The new mount does some prctl trickery, and in general starts to do
very different things (reads /etc/blkid.tab, /proc/whatever) just
before segfaulting.  Maybe it tries to use UUID-s or labels to
achieve device persistence, and makes an invalid memory access
analyzing the data.

Note that it is not the new mount; the version of mount is identical.
But I guess that must be it: the change from /dev/[hs]dX to UUID=.

And yes, replacing the UUIDs in the fstab by regular devices gets rid of 
the segfault. Still weird that an empty mtab avoids it though.

Colin, any thoughts (given that you implemented the switch to UUID)?

 All in all it looks like some of the above reveal a bug in mount.  The
 segfault does not come from the kernel, but from application code, as
 I see it.

Question is whether we have a realistic chance of fixing that bug or not. 
After all, we are talking about mount in *stable*.



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



Bug#539754: gs-common: dummy package or not?

2009-08-04 Thread Sven Joachim
On 2009-08-04 00:23 +0200, Jonas Smedegaard wrote:

 On Mon, Aug 03, 2009 at 02:44:22PM +0200, Sven Joachim wrote:
According to its description and content, gs-common is a dummy package, 
but it cannot be removed because ghostscript depends on it:

 Ghostscript packaging was cleaned up prior to Lenny, but many packages 
 still depended on the various transitional packages - some of them 
 versioned, requiring those packages to be kept around.

I understand that and I did not mean to suggest dropping gs-common now,
but could you please explain why ghostscript *itself* has a versioned
dependency on gs-common?  That is the sole reason why gs-common is still
installed on my system.

Sven



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



Bug#539867: distccmon-gnome has empty output

2009-08-04 Thread Dominique Brazziel
Package: distccmon-gnome
Version: 2.18.3-8
Severity: grave
Justification: renders package unusable

There is nothing in the window but load average.  I just compiled
a kernel and the distccd.log file has all the details but I saw nothing
in the distccmon-gnome window for the entire 49 minutes but the load average.
The column headers were there but there's just no output.

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

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

Versions of packages distccmon-gnome depends on:
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.26.0-1  The ATK accessibility toolkit
ii  libavahi-client3   0.6.25-1  Avahi client library
ii  libavahi-common3   0.6.25-1  Avahi common library
ii  libbonobo2-0   2.24.1-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.1-1  The Bonobo UI library
ii  libc6  2.9-12GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics libra
ii  libgconf2-42.26.2-1  GNOME configuration database syste
ii  libglib2.0-0   2.20.1-2  The GLib library of C routines
ii  libgnome2-02.26.0-1  The GNOME library - runtime files
ii  libgnomecanvas2-0  2.26.0-1  A powerful object-oriented display
ii  libgnomeui-0   2.24.1-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.24.1-3GNOME Virtual File System (runtime
ii  libgtk2.0-02.16.1-2  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.24.0-3+b1   Layout and rendering of internatio
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.1.0-2 X11 Session Management library

distccmon-gnome recommends no packages.

Versions of packages distccmon-gnome suggests:
ii  distcc2.18.3-8   Simple distributed compiler client

-- no debconf information



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



Bug#533759: evince: Segfault when opening dvi files

2009-08-04 Thread Alessio Botta
Creating the example I realized that this happens only if the dvi
contains a picture. 

I am attaching to this mail a latex file, the included picture in eps
format, the produced dvi (the one causing the segfault), and the
postscript created from that with dvips, which opens perfectly in
evince.

Please let me know if you need something more or different.
Thanks for your time and help.

Alessio

On Tue, 2009-08-04 at 01:12 +0200, Emilio Pozuelo Monfort wrote:
 Alessio Botta wrote:
  Package: evince
  Version: 2.26.1-2
  Severity: important
  
  
  
  When opening a dvi file created from a latex source with latex compiler, 
  evince reports the following:
  GPL Ghostscript 8.64: ./psi/iinit.c(98): initial_enter failed (-7), 
  entering /MaxBitmap in -dict:10/1123-
  GPL Ghostscript 8.64: Initialization file gs_init.ps does not begin with an 
  integer.
  fatal internal error -100Segmentation fault
  
  and exits. If I try to open the eps created from this dvi with dvips, 
  everything works.
 
 Can you attach a problematic file?
 


exampleReport.tar.gz
Description: application/compressed-tar


Bug#357300:

2009-08-04 Thread Matt Kraai
On Mon, Aug 03, 2009 at 02:40:59PM +0100, Michael Terry wrote:
 I'd like to me-too this bug.  It's been a few years, and no response.
 
 I think this would still be very useful, especially if the script that
 generated it converted text like [2.4] to a link to the relevant
 section.

The script that extracts the documents from the debian-policy package
and puts them on the website can be found at

 http://cvs.debian.org/webwml/cron/parts/7doc?view=markup

Would you be willing to prepare a patch to make this script extract
upgrading-checklist.txt.gz as well?

-- 
Matt Kraai   http://ftbfs.org/



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



Bug#539868: python-libgmail: Update upstream email contact in debian/copyright

2009-08-04 Thread Jari Aalto
Package: python-libgmail
Version: 0.1.11-1
Severity: wishlist


Accorsing to original sources README

You can contact us by email:
libgmail-develo...@lists.sf.net,
or, individually at
stas.zytkiew...@gmail.com
wdaher AT mit DOT edu
follower AT myrealbox DOT com

Please list these addresses in debian/copyright for upstream
contact. Or at least mention libgmail-develo...@lists.sf.net

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

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

Versions of packages python-libgmail depends on:
ii  python2.5.4-2An interactive high-level object-o
ii  python-central0.6.11 register and build utility for Pyt
ii  python-mechanize  0.1.7b-3   stateful programmatic web browsing

python-libgmail recommends no packages.

python-libgmail suggests no packages.

-- no debconf information



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



Bug#357300:

2009-08-04 Thread Matt Kraai
On Tue, Aug 04, 2009 at 12:18:27AM -0700, Matt Kraai wrote:
 On Mon, Aug 03, 2009 at 02:40:59PM +0100, Michael Terry wrote:
  I'd like to me-too this bug.  It's been a few years, and no response.
  
  I think this would still be very useful, especially if the script that
  generated it converted text like [2.4] to a link to the relevant
  section.
 
 The script that extracts the documents from the debian-policy package
 and puts them on the website can be found at
 
  http://cvs.debian.org/webwml/cron/parts/7doc?view=markup
 
 Would you be willing to prepare a patch to make this script extract
 upgrading-checklist.txt.gz as well?

Actually, I just committed changes to publish
upgrading-checklist.txt.  If you'd be interesting in preparing a patch
to convert it to HTML, that would be great, though!

-- 
Matt Kraai   http://ftbfs.org/



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



Bug#539869: cannot open /usr/share/awesome/themes/default/theme: no such file or directory

2009-08-04 Thread Alexandre Fayolle
Package: awesome
Version: 3.3.2-1
Severity: important

Hi,

I upgraded awesome yesterday, and this morning my favorite window manager
refuses to start, alledgedly because /usr/share/awesome/themes/default/theme
does not exist (message in .xession-errors). 

There is indeed no such file or directory, but there is a file called
/usr/share/awesome/themes/default/theme.lua, it turns out that the
aforementioned path is in my rc.lua file, and changing it fixes the problem.
But a notice on upgrade would have been nice. 

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

Kernel: Linux 2.6.26-2-686 (SMP w/4 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 awesome depends on:
ii  dbus-x11 1.2.16-2simple interprocess messaging syst
ii  libc62.9-12  GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libdbus-1-3  1.2.16-2simple interprocess messaging syst
ii  libev3   3.43-1.1high-performance event loop librar
ii  libglib2.0-0 2.20.1-2The GLib library of C routines
ii  libimlib21.4.2-4+b1  powerful image loading and renderi
ii  liblua5.1-0  5.1.4-3 Simple, extensible, embeddable pro
ii  libpango1.0-01.24.0-3+b1 Layout and rendering of internatio
ii  libstartup-notification0 0.10-1  library for program launch feedbac
ii  libx11-6 2:1.2.2-1   X11 client-side library
ii  libxcb-atom1 0.3.5-1 utility libraries for X C Binding 
ii  libxcb-aux0  0.3.5-1 utility libraries for X C Binding 
ii  libxcb-event10.3.5-1 utility libraries for X C Binding 
ii  libxcb-icccm10.3.5-1 utility libraries for X C Binding 
ii  libxcb-image00.3.5-1 utility libraries for X C Binding 
ii  libxcb-keysyms1  0.3.5-1 utility libraries for X C Binding 
ii  libxcb-property1 0.3.5-1 utility libraries for X C Binding 
ii  libxcb-randr01.3-2   X C Binding, randr extension
ii  libxcb-render-util0  0.3.5-1 utility libraries for X C Binding 
ii  libxcb-render0   1.3-2   X C Binding, render extension
ii  libxcb-shm0  1.3-2   X C Binding, shm extension
ii  libxcb-xinerama0 1.3-2   X C Binding, xinerama extension
ii  libxcb-xtest01.3-2   X C Binding, xtest extension
ii  libxcb1  1.3-2   X C Binding
ii  libxdg-basedir1  1.0.1-1 implementation of the XDG Base Dir
ii  menu 2.1.41  generates programs menu for all me

Versions of packages awesome recommends:
ii  rlwrap0.30-1.1   readline feature command line wrap
ii  x11-xserver-utils 7.4+2  X server utilities

awesome suggests no packages.

-- no debconf information



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



Bug#539870: grub2: 'Out of range 0x2c00. Aborting.' on amd64.

2009-08-04 Thread Konrad Cempura
Package: grub2
Version: 1.96+20090725-1
Severity: critical
Justification: breaks the whole system

After update system didn't boot. I was chrooted, and run grub-install /dev/sda 
and update-grub.
This didn't helped me. Remove params (eg. vga) also did nothing. The kernel is 
selected to boot
and after this I've always seen 'Out of range 0x2c00. Aborting.', always after 
kernel selection.

Only one solution is worked for me - to install grub2, grub-pc
and grub-common from Debian Stable repository 1.96+20080724...

My system:
Debian Testing amd64
IBM xSeries 3650
6 disks in RAID6.
ext4

-- Package-specific info:

*** WARNING grub-setup left core.img in filesystem

*** BEGIN /proc/mounts
/dev/root / ext4 rw,relatime,errors=remount-ro,barrier=1,data=ordered 0 0
/dev/sda3 /file-store ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/sda4 /srv ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/sda3 /home ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/sda3 /var ext4 rw,relatime,barrier=1,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/sda
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/update-grub using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=5
set root=(hd0,1)
search --fs-uuid --set ba2b3973-1f10-4638-a6d3-a5c81c3b769c
if font /usr/share/grub/ascii.pff ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  terminal gfxterm
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_hurd ###
### END /etc/grub.d/10_hurd ###

### BEGIN /etc/grub.d/10_linux ###
menuentry Debian GNU/Linux, linux 2.6.30-e4+i+l7 {
set root=(hd0,1)
search --fs-uuid --set ba2b3973-1f10-4638-a6d3-a5c81c3b769c
linux   /boot/vmlinuz-2.6.30-e4+i+l7 root=/dev/sda1 ro vga=792 
}
menuentry Debian GNU/Linux, linux 2.6.30-e4+i+l7 (single-user mode) {
set root=(hd0,1)
search --fs-uuid --set ba2b3973-1f10-4638-a6d3-a5c81c3b769c
linux   /boot/vmlinuz-2.6.30-e4+i+l7 root=/dev/sda1 ro single vga=792
}
menuentry Debian GNU/Linux, linux 2.6.30-rc5-e4+i+l7 {
set root=(hd0,1)
search --fs-uuid --set ba2b3973-1f10-4638-a6d3-a5c81c3b769c
linux   /boot/vmlinuz-2.6.30-rc5-e4+i+l7 root=/dev/sda1 ro vga=792 
}
menuentry Debian GNU/Linux, linux 2.6.30-rc5-e4+i+l7 (single-user mode) {
set root=(hd0,1)
search --fs-uuid --set ba2b3973-1f10-4638-a6d3-a5c81c3b769c
linux   /boot/vmlinuz-2.6.30-rc5-e4+i+l7 root=/dev/sda1 ro single 
vga=792
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file is an example on how to add custom entries
### END /etc/grub.d/40_custom ###
*** END /boot/grub/grub.cfg

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

Kernel: Linux 2.6.30-e4+i+l7 (SMP w/4 CPU cores)
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages grub2 depends on:
ii  debconf [debconf-2.0]   1.5.27   Debian configuration management sy
ii  grub-pc 1.96+20080724-16 GRand Unified Bootloader, version 

grub2 recommends no packages.

grub2 suggests no packages.

-- debconf information excluded



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



Bug#539719: repeated assertion failure from squid cache

2009-08-04 Thread TN

I also have this occurring on the same version.

It appears to be this bug which has just been fixed:
http://www.squid-cache.org/bugs/show_bug.cgi?id=2728



Send instant messages to your online friends http://au.messenger.yahoo.com 





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



Bug#539393: Bug#539393: The gnustep packages are not new enough in the Debian stable release.

2009-08-04 Thread Gürkan Sengün

Hi Yavor

If there are 0.16.x point releases, we'll upload them.  0.17.x are 
unstable and won't be packaged.


I really wish we could go with the latest tarballs of GNUstep, would
it be possible to have them at least in experimental? If it wasn't such
a painful thing to build it from source, I'd just do it myself. But whenever
I try to build gnustep-make,base,gui,back. I FAIL!


projectcenter.app-0.5.0~20080704


There are almost no differences between this version and 0.5.0.  Will be 
updated as well.



gorm.app-1.2.8


This has been ready for some time, waiting for a sponsor, I think.


i even have the later version, but it only builds with the latest gnustep tarball 
releases...


I'm also interested having the latest tarballs of GNUstep packaged in Debian, 
since I need them for the http://livecd.gnustep.org/


Yours,
Guerkan



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



Bug#539871: libid3tag encoding patch update

2009-08-04 Thread Andreas Henriksson
Package: libid3tag
Version: 0.15.1b-10
Severity: important

Hector Santos found a problem with the current patch and seems to have
figured out a much better fix. See forwarded message below.

Regards,
Andreas Henriksson

- Forwarded message from Hector Santos hsan...@santronics.com -

Date: Fri, 24 Jul 2009 18:26:56 -0400
From: Hector Santos hsan...@santronics.com
To: andr...@fatal.se
Subject: libid3tag patch update
User-Agent: Thunderbird 2.0.0.0 (Windows/20070326)

Hello, I had a problem with a MP3 file using the libid3tag library and
after tracking it down, I looked for a current patch. I found yours:

http://patch-tracking.debian.net/patch/series/view/libid3tag/0.15.1b-10/11_unknown_encoding

This work, but it doesn't solve the issue of why it is reading the
TYER tags wrong.

The patch I have (which includes your changes) isL


end = data + length;

+   length 4 is expected, if 5 then get encoding byte
+   encoding = 0;
+   if (length == 5) {
+   encoding = id3_parse_uint(data, 1);
+   }
string   = id3_parse_string(data, end - data, encoding, 0);

if (!string) {
continue;
}

if (id3_ucs4_length(string)  4) {
  free(string);
  continue;
}

I am not an expert with this patch systems, so I hope you can update
the library for the community.

Thanks

-- 
Sincerely

Hector Santos
http://www.santronics.com



- End forwarded message -




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



Bug#539749: patch

2009-08-04 Thread Stéphane Glondu
tags 539749 + patch
thanks

Attached is a tentative patch to add support for emacs23 in auctex.


Cheers,

-- 
Stéphane
diff -u auctex-11.83/debian/changelog auctex-11.83/debian/changelog
--- auctex-11.83/debian/changelog
+++ auctex-11.83/debian/changelog
@@ -1,3 +1,10 @@
+auctex (11.83-7.4) UNRELEASED; urgency=low
+
+  * Non-maintainer upload
+  * Add support for emacs23 (Closes: #539749)
+
+ -- Stephane Glondu st...@glondu.net  Tue, 04 Aug 2009 09:27:15 +0200
+
 auctex (11.83-7.3) unstable; urgency=high
 
   * Non-maintainer upload
diff -u auctex-11.83/debian/rules.in auctex-11.83/debian/rules.in
--- auctex-11.83/debian/rules.in
+++ auctex-11.83/debian/rules.in
@@ -174,6 +174,7 @@
 :# install Debian system files ://
 	$(INSTDIR) $(auctex)/:$_=${sstartd}; s|emacs|emacs21|; print: \
 		$(auctex)/:$_=${sstartd}; s|emacs|emacs22|; print: \
+		$(auctex)/:$_=${sstartd}; s|emacs|emacs23|; print: \
 		$(auctex)/:$_=${sstartd}; s|emacs|emacs-snapshot|; print:
 	$(INSTDATA) debian/:=${PACKAGE}:/lisp-startup.el \
 		$(auctex)/:$_=${sstartd}/${EPRIORITY}${PACKAGE}.el;
@@ -183,6 +184,9 @@
 		s|emacs|emacs22|; $_=~tr|/|/|s; print:
 	$(INSTDATA) debian/:=${PACKAGE}:/lisp-startup.el \
 		$(auctex)/:$_=${sstartd}/${EPRIORITY}${PACKAGE}.el;
+		s|emacs|emacs23|; $_=~tr|/|/|s; print:
+	$(INSTDATA) debian/:=${PACKAGE}:/lisp-startup.el \
+		$(auctex)/:$_=${sstartd}/${EPRIORITY}${PACKAGE}.el;
 		s|emacs|emacs-snapshot|; $_=~tr|/|/|s; print:
 	$(INSTDIR) $(auctex)/:=${cron_weekly}:
 	$(INSTSCRIPT) debian/:=${PACKAGE}:/cron \
diff -u auctex-11.83/debian/rules auctex-11.83/debian/rules
--- auctex-11.83/debian/rules
+++ auctex-11.83/debian/rules
@@ -181,12 +181,15 @@
 
 	$(INSTDIR) $(auctex)//etc/emacs21/site-start.d/ \
 		$(auctex)//etc/emacs22/site-start.d/ \
+		$(auctex)//etc/emacs23/site-start.d/ \
 		$(auctex)//etc/emacs-snapshot/site-start.d/
 	$(INSTDATA) debian/auctex/lisp-startup.el \
 		$(auctex)//etc/emacs21/site-start.d/50auctex.el
 	$(INSTDATA) debian/auctex/lisp-startup.el \
 		$(auctex)//etc/emacs22/site-start.d/50auctex.el
 	$(INSTDATA) debian/auctex/lisp-startup.el \
+		$(auctex)//etc/emacs23/site-start.d/50auctex.el
+	$(INSTDATA) debian/auctex/lisp-startup.el \
 		$(auctex)//etc/emacs-snapshot/site-start.d/50auctex.el
 	$(INSTDIR) $(auctex)//etc/cron.weekly/
 	$(INSTSCRIPT) debian/auctex/cron \
diff -u auctex-11.83/debian/control auctex-11.83/debian/control
--- auctex-11.83/debian/control
+++ auctex-11.83/debian/control
@@ -4,12 +4,12 @@
 Maintainer: Davide G. M. Salvetti sa...@debian.org
 Uploaders: OHURA Makoto oh...@debian.org
 Standards-Version: 3.7.2
-Build-Depends-Indep: emacs22 | emacs21 | emacs-snapshot, eperl, ghostscript, po-debconf, texlive-latex-base, texinfo, texi2html (=1.76)
+Build-Depends-Indep: emacs23 | emacs22 | emacs21 | emacs-snapshot, eperl, ghostscript, po-debconf, texlive-latex-base, texinfo, texi2html (=1.76)
 Homepage: http://www.gnu.org/software/auctex/
 
 Package: auctex
 Architecture: all
-Depends: debconf | debconf-2.0, emacs22 | emacs21 | emacs-snapshot, make, preview-latex-style
+Depends: debconf | debconf-2.0, emacs23 | emacs22 | emacs21 | emacs-snapshot, make, preview-latex-style
 Recommends: doc-base, ghostscript, texlive-latex-recommended, xpdf-reader | pdf-viewer
 Suggests: catdvi, dvipng, lacheck
 Conflicts: emacspeak (= 17.0-1), preview-latex
diff -u auctex-11.83/debian/auctex/update-auctex-install.in auctex-11.83/debian/auctex/update-auctex-install.in
--- auctex-11.83/debian/auctex/update-auctex-install.in
+++ auctex-11.83/debian/auctex/update-auctex-install.in
@@ -13,7 +13,7 @@
 db_version 2.0
 
 :# Default flavors: only GNU, XEmacs comes with its own AUCTeX.://
-FLAVORS=${*:-emacs21 emacs22 emacs-snapshot}
+FLAVORS=${*:-emacs21 emacs22 emacs23 emacs-snapshot}
 
 for FLAVOR in ${FLAVORS}; do
 if [ -x /usr/bin/${FLAVOR} ]; then
diff -u auctex-11.83/debian/auctex/conffiles.in auctex-11.83/debian/auctex/conffiles.in
--- auctex-11.83/debian/auctex/conffiles.in
+++ auctex-11.83/debian/auctex/conffiles.in
@@ -4,6 +4,8 @@
 :$_=${sstartd}/${EPRIORITY}${PACKAGE}.el;
 	s|emacs|emacs22|; $_=~tr|/|/|s; print:
 :$_=${sstartd}/${EPRIORITY}${PACKAGE}.el;
+	s|emacs|emacs23|; $_=~tr|/|/|s; print:
+:$_=${sstartd}/${EPRIORITY}${PACKAGE}.el;
 	s|emacs|emacs-snapshot|; $_=~tr|/|/|s; print:
 :=if($_=${cron_weekly}/${PACKAGE})=~tr|/|/|s:
 :
diff -u auctex-11.83/debian/auctex/bug.script.in auctex-11.83/debian/auctex/bug.script.in
--- auctex-11.83/debian/auctex/bug.script.in
+++ auctex-11.83/debian/auctex/bug.script.in
@@ -30,7 +30,7 @@
 EOF
 
 :# Default flavors: only GNU/Emacsen, XEmacs comes with its own AUCTeX.://
-FLAVORS=${*:-emacs21 emacs22 emacs-snapshot}
+FLAVORS=${*:-emacs21 emacs22 emacs23 emacs-snapshot}
 
 for FLAVOR in ${FLAVORS}; do
 if [ -x /usr/bin/${FLAVOR} ]; then
diff -u auctex-11.83/debian/auctex/update-auctex-elisp.in auctex-11.83/debian/auctex/update-auctex-elisp.in
--- auctex-11.83/debian/auctex/update-auctex-elisp.in
+++ 

Bug#539873: nbd-client init script relies on files in /usr too early in boot

2009-08-04 Thread Anton Ivanov
Package: nbd-client
Version: 1:2.9.11-3
Severity: minor


NBD is presently before nfs mounts in the rcS startup sequence.
As a result an nfs /usr breaks its init script because /usr/bin/expr
is not yet available. The situation should be the same with /usr on nbd

While elegant, the expr +1 should be replaced by an enumeration of 0..9 to
cover valid NBDs


-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26 (SMP w/1 CPU core; PREEMPT)
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 nbd-client depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  libc6 2.7-18 GNU C Library: Shared libraries

nbd-client recommends no packages.

nbd-client suggests no packages.

-- debconf information excluded



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



Bug#539872: [INTL:eu] ganglia debconf templates Basque translation

2009-08-04 Thread Piarres Beobide
Package: ganglia
Severity: wishlist
Tags: l10n patch

Hi

Attached ganglia debconf templates Basque translation, please add it.

thx


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

Kernel: Linux 2.6.30-1-686 (SMP w/4 CPU cores)
Locale: LANG=eu_ES.UTF-8, LC_CTYPE=eu_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
# translation of ganglia-templates.po to Euskara
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Piarres Beobide p...@beobide.net, 2009.
msgid 
msgstr 
Project-Id-Version: ganglia-templates\n
Report-Msgid-Bugs-To: gang...@packages.debian.org\n
POT-Creation-Date: 2009-07-29 20:19+0100\n
PO-Revision-Date: 2009-08-04 09:47+0200\n
Last-Translator: Piarres Beobide p...@beobide.net\n
Language-Team: Euskara debian-l10n...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n
Plural-Forms: nplurals=2; plural=(n != 1);\n

#. Type: boolean
#. Description
#: ../ganglia-webfrontend.templates:2001
msgid Automatically configure apache2?
msgstr Automatikoki konfiguratu apache2?

#. Type: boolean
#. Description
#: ../ganglia-webfrontend.templates:2001
msgid 
The ganglia front-end will be unavailable until a web server is configured. 
Automatic configuration can be performed for the Apache 2 web server.
msgstr 
Ganglia interfazea ez da eskuragarri egongo web-zerbitzaria konfiguratzen den 
arte. 
Apache2 web-zerbitzariaren konfigurazio automatikoa egin daiteke.

#. Type: boolean
#. Description
#: ../ganglia-webfrontend.templates:3001
msgid Restart apache2?
msgstr Berrabiarazi apache2?

#. Type: boolean
#. Description
#: ../ganglia-webfrontend.templates:3001
msgid 
In order to activate the new configuration, the web server needs to be 
restarted. If you choose not to do this automatically, you should do so 
manually at the first opportunity.
msgstr 
Konfigurazio berriak eragin izan dezan, web-zerbitzaria berrabiarazi 
egin behar da. Hau automatikoki egitea ala ez hautatu dezakezu baina 
aukera duzun bezain laster egitea gomendatzen da.



Bug#539867: distccmon-gnome has empty output

2009-08-04 Thread Carsten Wolff
Hi Dominique,

On Tuesday 04 August 2009, Dominique Brazziel wrote:
 There is nothing in the window but load average.  I just compiled
 a kernel and the distccd.log file has all the details but I saw nothing
 in the distccmon-gnome window for the entire 49 minutes but the load
 average. The column headers were there but there's just no output.

did you run distccmon-gnome on the same machine and as the same user you ran 
make with?

Carsten



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



Bug#539874: error in kvirc's default script

2009-08-04 Thread antsev


Package: kvirc
Version: 4:4.0.0~svn3240-1
Severity: normal

After starting kvirc it display warning:
[11:33:42] [KVS] Warning: Unterminated string constant
[11:33:42] [KVS]   in script context 
/usr/share/kvirc/4.0/defscript/popups.kvs, line 1381, 
near character 60
[11:33:42] [KVS] Compilation Error: Unexpected end of line 
in string constant (missing  character or unescaped 
newline)
[11:33:42] [KVS]   in script context 
/usr/share/kvirc/4.0/defscript/popups.kvs, line 1381, 
near character 61
and suggest to reset scripts to default. But it is doesn't 
help.
To fix this problem I edited 
/usr/share/kvirc/4.0/defscript/popups.kvs file (patch in 
attach).



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 
'testing')

Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 
(charmap=UTF-8)

Shell: /bin/sh linked to /bin/bash

Versions of packages kvirc depends on:
ii  kdebase-runtime4:4.2.4-2 runtime 
components from the offici
ii  kdelibs5   4:4.2.4-1 core 
libraries for all KDE 4 appli
ii  kvirc-data 4:4.0.0~svn3240-1 Data files 
for KVIrc
ii  libaudiofile0  0.2.6-7   Open-source 
version of SGI's audio
ii  libc6  2.9-12GNU C 
Library: Shared libraries
ii  libesd-alsa0 [libesd0] 0.2.41-5  Enlightened 
Sound Daemon (ALSA) -
ii  libgcc11:4.4.0-5 GCC support 
library
ii  libperl5.105.10.0-24 Shared Perl 
library
ii  libphonon4 4:4.5.2-1 Qt 4 Phonon 
module
ii  libqt4-dbus4:4.5.2-1 Qt 4 D-Bus 
module
ii  libqt4-network 4:4.5.2-1 Qt 4 network 
module
ii  libqt4-sql 4:4.5.2-1 Qt 4 SQL 
module
ii  libqt4-webkit  4:4.5.2-1 Qt 4 WebKit 
module
ii  libqt4-xml 4:4.5.2-1 Qt 4 XML 
module
ii  libqtcore4 4:4.5.2-1 Qt 4 core 
module
ii  libqtgui4  4:4.5.2-1 Qt 4 GUI 
module
ii  libssl0.9.80.9.8k-3  SSL shared 
libraries
ii  libstdc++6 4.4.0-5   The GNU 
Standard C++ Library v3
ii  libx11-6   2:1.2.2-1 X11 
client-side library
ii  libxrender11:0.9.4-2 X Rendering 
Extension client libra
ii  phonon 4:4.5.2-1 Qt 4 Phonon 
module metapackage
ii  zlib1g 1:1.2.3.3.dfsg-13 compression 
library - runtime


kvirc recommends no packages.

kvirc suggests no packages.
diff 1/popups.kvs 2/popups.kvs
1381c1381
 		if($system.ostype == unix)system.runcmd traceroute $0
---
 		if($system.ostype == unix)system.runcmd traceroute $0
1387c1387
 		if($system.ostype == unix)system.runcmd traceroute6 $0
---
 		if($system.ostype == unix)system.runcmd traceroute6 $0


Bug#539372: ltsp-server: ltsp-build-client fails w/ 4 x W: Failure while configuring base packages

2009-08-04 Thread Vagrant Cascadian
retitle 539372 debootstrap: fails w/ 4 x W: Failure while configuring base 
packages
reassign 539372 debootstrap
notfound 539372 5.1.76-1
thanks

On Mon, Aug 03, 2009 at 11:41:02PM +0200, Andre Majorel wrote:
 On 2009-08-03 04:46 -0700, Vagrant Cascadian wrote:
  On Fri, Jul 31, 2009 at 09:48:28AM +0200, Andre Majorel wrote:
 ltsp-build-client --dist sid --base /opt/ltsp-5 \
   --mirror ftp://ftp.nerim.net/debian
   
   from a Debian testing i386 ends with this :
   
 [...]
 I: Configuring apt...
 W: Failure while configuring base packages.
 W: Failure while configuring base packages.
 W: Failure while configuring base packages.
 W: Failure while configuring base packages.
 W: Failure while configuring base packages.
 error: LTSP client installation ended abnormally
  
  this is probably not specific to anything LTSP is doing. could you try just
  using debootstrap:
  
debootstrap sid /opt/test --mirror ftp://ftp.nerim.net/debian
 
 Indeed. debootstrap sid /opt/test ftp://ftp.nerim.net/debian;
 emits the exact same warnings as above (minus the last line) and
 exits with status 1.
 
 Guess this bug report is really for deboostrap.

retitled and reassigned.

though really, this is most likely dependency issues that will just get sorted
out in sid.

live well,
  vagrant



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



Bug#539876: qmmp: unable add new skin without installed unzip

2009-08-04 Thread antsev


Package: qmmp
Version: 0.3.0-1
Severity: minor

I was unable to add new skin (provided in zip archive) 
without installing unzip. After choosing file with skin 
nothing happend.
Looks like it is need to add unzip in qmmp dependencies 
(at least in suggested).



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 
'testing')

Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/1 CPU core)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 
(charmap=UTF-8)

Shell: /bin/sh linked to /bin/bash

Versions of packages qmmp depends on:
ii  libc6 2.9-12 GNU C 
Library: Shared libraries
ii  libcurl3-gnutls   7.19.5-1 
 Multi-protocol file transfer libra
ii  libgcc1   1:4.4.0-5  GCC support 
library
ii  libqmmp-misc  0.3.0-1qmmp audio 
player -- plugins and a
ii  libqmmp0  0.3.0-1qmmp audio 
player -- runtime libra
ii  libqmmpui00.3.0-1qmmp audio 
player -- user interfac
ii  libqt4-network4:4.5.2-1  Qt 4 network 
module
ii  libqtcore44:4.5.2-1  Qt 4 core 
module
ii  libqtgui4 4:4.5.2-1  Qt 4 GUI 
module
ii  libstdc++64.4.0-5The GNU 
Standard C++ Library v3
ii  libx11-6  2:1.2.2-1  X11 
client-side library


qmmp recommends no packages.

Versions of packages qmmp suggests:
pn  qmmp-plugin-projectm  none (no 
description available)


-- no debconf information



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



Bug#539875: connect-proxy: Get HTTP proxy information from http_proxy variable

2009-08-04 Thread Alexander Galanin
Package: connect-proxy
Version: 1.100-1
Severity: wishlist

http_proxy environment variable contains many useful information about HTTP 
proxy
for the current user: proxy server host and port, user name and password. So it
should be taken into account by connect-proxy.

Syntax of variable:
http://[user[:passwo...@]host[:port]

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'testing')
Architecture: i386 (i686)

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

Versions of packages connect-proxy depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries

connect-proxy recommends no packages.

connect-proxy suggests no packages.

-- no debconf information



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



Bug#538225: krb5.conf

2009-08-04 Thread Eamonn Hamilton

[libdefaults]
default_realm = A.SAIC.COM
ticket_lifetime = 24000
dns_lookup_realm = yes
dns_lookup_kdc = yes

[realms]
B.SAIC.COM = {
kdc = server1.b.saic.com:88
kdc = server2.b.saic.com:88
kdc = server3.b.saic.com:88
kdc = server4.b.saic.com:88
admin_server = server1.b.saic.com:749
default_domain = b.saic.com
}

A.SAIC.COM = {
kdc = server5.a.saic.com:88
kdc = server6.a.saic.com:88
admin_server = server5.a.saic.com:749
default_domain = a.saic.com
}

[domain_realm]
.b.saic.com = B.SAIC.COM
b.saic.com = B.SAIC.COM
.a.saic.com = A.SAIC.COM
a.saic.com = A.SAIC.COM

[login]
#krb4_convert = true
#krb4_get_tickets = true

[appdefaults]
 pam = {
   debug = false
   ticket_lifetime = 8h
   renew_lifetime = 8h
   forwardable = true
   krb4_convert = false
 }

[logging]
 default = SYSLOG:



SAIC Limited is a private limited company registered in England and Wales. 
Registered number 1396396. Registered office at Hemel One, Boundary Way, Hemel 
Hempstead, Hertfordshire, HP2 7YU. VAT number 599 5474 64.
This e-mail and any attachments are private and confidential.  If you are not 
the intended recipient of this e-mail, any disclosure, copying, distribution or 
use of its contents is strictly prohibited. Please notify the sender 
immediately and then delete it (including any attachments) from your system.
All emails and attachments are virus scanned. It is your responsibility to 
ensure that any onward transmission, opening or use of this message and any 
attachments will not adversely affect your or the onward recipients' systems or 
data. Please carry out such virus and other such checks as you consider 
appropriate.
SAIC Limited may monitor email traffic data and, also, the content of email for 
the purposes of security, staff training and compliance with SAIC policies.




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



Bug#539877: [icedove] Compose windows crashes when trying to paste text

2009-08-04 Thread Axel Dürrbaum
Package: icedove
Version: 2.0.0.22-1
Severity: normal

Every time when I try to paste text into the compose window of Icedove
(both new mail  and reply window),
it is crashing (wether I use Cntrl-V or the middle mouse button).

Even in safe-mode:

$ icedove -safe-mode
Gtk-Message: (for origin information, set GTK_DEBUG): failed to retrieve
property `GtkOptionMenu::indicator-size' of type `GtkRequisition' from
rc file value 0 of type `glong'
Gtk-Message: (for origin information, set GTK_DEBUG): failed to retrieve
property `GtkOptionMenu::indicator-spacing' of type `GtkBorder' from rc
file value 0 of type `glong'
/usr/lib/icedove/run-mozilla.sh: line 131: 26645 Speicherzugriffsfehler 
$prog ${1+$@}

When I paste without formatting form the menu Icedove does not crash.


--- System information. ---
Architecture: amd64
Kernel: Linux 2.6.30-1-amd64

Debian Release: squeeze/sid
700 unstable www.debian-multimedia.org
700 unstable ftp.de.debian.org

--- Package information. ---
Depends (Version) | Installed
===-+-==
fontconfig | 2.6.0-4
psmisc | 22.8-1
debianutils (= 1.16) | 3.2
libatk1.0-0 (= 1.20.0) | 1.26.0-1
libc6 (= 2.3) | 2.9-23
libcairo2 (= 1.2.4) | 1.8.8-2
libfontconfig1 (= 2.4.0) | 2.6.0-4
libfreetype6 (= 2.2.1) | 2.3.9-5
libgcc1 (= 1:4.1.1) | 1:4.4.1-1
libglib2.0-0 (= 2.16.0) | 2.20.4-1
libgtk2.0-0 (= 2.8.0) | 2.16.5-1
libhunspell-1.2-0 (= 1.2.8) | 1.2.8-4
libjpeg62 | 6b-14
libnspr4-0d (= 1.8.0.10) | 4.8-1
libnss3-1d (= 3.12.0~beta3) | 3.12.3-1
libpango1.0-0 (= 1.14.0) | 1.24.5-1
libpng12-0 (= 1.2.13-4) | 1.2.38-1
libstdc++6 (= 4.1.1) | 4.4.1-1
libx11-6 | 2:1.2.2-1
libxft2 ( 2.1.1) | 2.1.13-3
libxinerama1 | 2:1.0.3-2
libxrender1 | 1:0.9.4-2
libxt6 | 1:1.0.5-3
zlib1g (= 1:1.1.4) | 1:1.2.3.3.dfsg-14


Package's Recommends field is empty.

Suggests (Version) | Installed
-+-===
icedove-gnome-support (= 2.0.0.22-1) |
latex-xft-fonts | 1.6.3-5
libthai0 | 0.1.12-1





-- 
Axel Dürrbaum / Universität Kassel / FB 15 - Maschinenbau
FG Mess- und Regelungstechnik (MRT)
Mönchebergstraße 7 / 34109 Kassel / Germany / Technik I/2 / Raum 1804c
phone:+49 561 804 3261  eMail:axel.duerrb...@mrt.uni-kassel.de

begin:vcard
fn;quoted-printable:Axel D=C3=BCrrbaum
n;quoted-printable:D=C3=BCrrbaum;Axel
org;quoted-printable:Universit=C3=A4t Kassel;FB 15 Mess- und Regelungstechnik
adr;quoted-printable:;;M=C3=B6nchebergstr. 7;Kassel;Hessen;34109;Deutschland
email;internet:axel.duerrb...@mrt.uni-kassel.de
title:Dipl.-Ing.
tel;work:+49 561 804 3261
tel;home:+49 561 581533
tel;cell:+49 178 8414568
note;quoted-printable:Hiermit widerspreche ich jeglicher Nutzung oder Uebermittlung meiner Date=
	n, die ueber diesen Kontakt hinausgeht, gleichgueltig zu welchen Zweckens=
	ie erfolgt. Insbesondere widerspreche ich der Nutzung oder Uebermittlungm=
	einer Daten fuer Werbezwecke oder fuer die Markt- oder Meinungsforschung=
	 gemaess Paragraph 28 Absatz 3 Bundesdatenschutzgesetz.=0D=0A=
	=0D=0A=
	Achtung: Die eMail-Adresse ist keine Zustelladresse. Aus technischen Grue=
	nden kann ich Ihre eMail nicht sofort nach Eingang darauf =C3=BCberpruefe=
	n, ob sie Fristen oder Termine enthaelt. Daher uebernehme ich keine Gewae=
	hr, da=C3=9F Ihre Nachricht so rechtzeitig gelesen wird, da=C3=9F alle=
	 zur Einhaltung von etwaigen Fristen oder Terminen notwendigen Massnahmen=
	 ergriffen werden koennen. Bitte uebermitteln Sie solche Schriftstuecke=
	 per Fax oder Brief.
x-mozilla-html:FALSE
url:http://www.uni-kassel.de/fb15/mrt
version:2.1
end:vcard



Bug#539830: [PATCH] iproute: typo in ip manpage

2009-08-04 Thread Andreas Henriksson
Fix spelling (s/commoand/command/) in ip(8) manpage.

Spotted by dann frazier da...@hp.com - http://bugs.debian.org/539830

diff --git a/man/man8/ip.8 b/man/man8/ip.8
index e948d03..586ec1d 100644
--- a/man/man8/ip.8
+++ b/man/man8/ip.8
@@ -1085,7 +1085,7 @@ but label is not required.
 .SS ip addrlabel list - list address labels
 the command show contents of address labels.
 .SS ip addrlabel flush - flush address labels
-the commoand flushes the contents of address labels and it does not restore 
default settings.
+the command flushes the contents of address labels and it does not restore 
default settings.
 .SH ip neighbour - neighbour/arp tables management.
 
 .B neighbour



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



Bug#539744: chroot to lenny /target in debootstrap segfaults

2009-08-04 Thread Frans Pop
On Tuesday 04 August 2009, Frans Pop wrote:
 And yes, replacing the UUIDs in the fstab by regular devices gets rid
 of the segfault. Still weird that an empty mtab avoids it though.

 Colin, any thoughts (given that you implemented the switch to UUID)?

The problem is essentially that we have a configured fstab in an 
otherwise unconfigured chroot.

One, IMO fairly logical, solution to this could be to not let partman 
create /etc/fstab *in* /target, but instead create it somewhere in the 
the D-I environment and then let a base-installer.d script copy it over 
to /target.
This would also be more in line with how other components do things.

debootstrap handles a missing fstab correctly by creating a dummy file, 
which explains why there was no segfault when I ran base-installer after 
doing a 'rm -r /target/*'.



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



Bug#539878: libsamplerate0: src_simple() causes a crash with certain inputs

2009-08-04 Thread Attila
Package: libsamplerate0
Version: 0.1.7-2
Severity: normal


Trying to resample an array of length 199030 to 1000 with src_simple()
causes a crash.  For different input or output lengths, both larger and 
smaller, it is likely to work, only some values cause the crash.

Below is an example C++ program that crashes, when I run it I get this
output: http://pastebin.org/6262
Here is the output when ran with valgrind: http://pastebin.com/f5a7201e9

#include iostream
#include vector
#include samplerate.h
 
typedef std::vectorfloat float_vec;
 
int main()
{
float_vec in(199030); // initializes to zeros
float_vec buf(1000);
const double ratio = (double)buf.size()/in.size();
SRC_DATA x = {in[0], buf[0], in.size(), buf.size(), 0,0,0, ratio};
const int error = src_simple(x, 2, 1);
if (error)
{
std::cout  src_strerror(error)  \n;
return 1;
}
return 0;
}

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

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

Versions of packages libsamplerate0 depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries

libsamplerate0 recommends no packages.

libsamplerate0 suggests no packages.

-- no debconf information



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



Bug#536018: Problems concerning wifi-radar

2009-08-04 Thread Patrick Winnertz
Hey Sean,

I just prepared a upload for debian, however I noted that the
init-script starts a gui, which is not that good as wifi-radar should
run there as a daemon (the init script doesn't stop until you close the
wifi-radar window). 

It would be cool if you could have a look for wifi-radar to prevent it
starting the gui when running in daemon mode. 
If I have time today I'll digg into this issue.

Greetings
Winnie



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



Bug#539880: xiphos: long description no sentence

2009-08-04 Thread Gerfried Fuchs
Package: xiphos
Version: 3.1-1
Severity: minor

Hi!

 It would be nice if the long description of your package could consist
of full sentences[1], the snippet in the first paragraph is missing its
subject, A bible study program for GNOME using the SWORD library isn't
really a full sentence, and neither is Features:. :)

 Furthermore, I'd like to suggest to prefix your feature list with
bulleting markers like * or -, this will allow package renderers like
the one in aptitude to recognize it as a list and render it accordingly.

 So long, and thanks for your great work nevertheless!
Rhonda
[1] 
http://www.us.debian.org/doc/developers-reference/best-pkging-practices#bpp-pkg-desc



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



Bug#527566: proposed nmu diff to fix mediatomb-daemon.postinst

2009-08-04 Thread Andreas Henriksson
Hello!

Please see attached NMU diff. I will upload very soon unless someone has
any objections!

-- 
Andreas Henriksson
diff -u mediatomb-0.12.0~svn2018/debian/changelog mediatomb-0.12.0~svn2018/debian/changelog
--- mediatomb-0.12.0~svn2018/debian/changelog
+++ mediatomb-0.12.0~svn2018/debian/changelog
@@ -1,3 +1,15 @@
+mediatomb (0.12.0~svn2018-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/mediatomb-daemon.postinst:
+avoid trying (and failing!) to migrate database and purge rc.d scripts
+on clean installs, only do it on upgrades.
+(Also make sure the db file exists before trying to copy it for extra
+ safety.)
+Thanks goes to all the people who commented on the bug! (Closes: #527566)
+
+ -- Andreas Henriksson andr...@fatal.se  Tue, 04 Aug 2009 09:26:40 +0200
+
 mediatomb (0.12.0~svn2018-3) unstable; urgency=low
 
   * Fix minor typo in mediatomb-transcode script.
diff -u mediatomb-0.12.0~svn2018/debian/mediatomb-daemon.postinst mediatomb-0.12.0~svn2018/debian/mediatomb-daemon.postinst
--- mediatomb-0.12.0~svn2018/debian/mediatomb-daemon.postinst
+++ mediatomb-0.12.0~svn2018/debian/mediatomb-daemon.postinst
@@ -12,17 +12,17 @@
 # Copies database file from sqlite3.db to mediatomb.db
 mv_db() {
 [ ! -e /var/lib/mediatomb/mediatomb.db ] || return 0
-[ -e /var/lib/mediatomb/sqlite3.db ]  \
+[ ! -e /var/lib/mediatomb/sqlite3.db ] || \
 cp --preserve /var/lib/mediatomb/sqlite3.db /var/lib/mediatomb/mediatomb.db
 }
 
 case $1 in
 configure)
 # Force removal of previous scripts if upgrading from 0.11.0-3
-if dpkg --compare-versions $2 le 0.11.0-3; then
+if [ -n $2 ]  dpkg --compare-versions $2 le 0.11.0-3; then
 update-rc.d mediatomb remove /dev/null || exit $?
 fi
-if dpkg --compare-versions $2 le 0.12.0~svn2018-1; then
+if [ -n $2 ]  dpkg --compare-versions $2 le 0.12.0~svn2018-1; then
 mv_db
 fi
 esac


Bug#539879: chm2pdf: long description no sentence

2009-08-04 Thread Gerfried Fuchs
Package: chm2pdf
Version: 0.9.1-1.1
Severity: minor

Hi!

 It would be nice if the long description of your package could consist
of full sentences[1], the snippet in the first paragraph is missing its
subject, Convert chm to PDF files isn't really a full sentence. :)
Furthermore, the last sentence is missing its fullstop.

 So long, and thanks for your great work nevertheless!
Rhonda
[1] 
http://www.us.debian.org/doc/developers-reference/best-pkging-practices#bpp-pkg-desc



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



Bug#537327: [emacs-w3m:10980] Re: Bug#537327: w3m-el can't render http://www.crummy.com/software/BeautifulSoup/documentation.html

2009-08-04 Thread 白井秀行
From: Tatsuya Kinoshita t...@vega.ocn.ne.jp said
Subject: [emacs-w3m:10980] Re: Bug#537327: w3m-el can't render 
http://www.crummy.com/software/BeautifulSoup/documentation.html
Message-ID: 20090803.204534.59000234.tats%nob...@tats.iris.ne.jp
Date: Mon, 03 Aug 2009 20:45:34 +0900 (JST)

 Hi emacs-w3m developers,
 
 This bug is forwarded from Debian bug tracking system:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=537327
 
 (If possible, please preserve 457...@bugs.debian.org in replies.)
 
 On July 17, 2009 at 12:56PM +1000,
 trentbuck (at gmail.com) wrote:
 
 Package: w3m-el-snapshot
 Version: 1.4.344+0.20090405-1
 Severity: normal
 
 This URL works in w3m but not in w3m-el:
 
 http://www.crummy.com/software/BeautifulSoup/documentation.html
 
 To reproduce this:
 
 emacs -Q -l /etc/emacs/site-start.d/50w3m-el-snapshot.el --eval 
 '(w3m-browse-url 
 http://www.crummy.com/software/BeautifulSoup/documentation.html;)'
 
 The contents of *Messages* is
 
 (emacs -Q -l /etc/emacs/site-start.d/50w3m-el-snapshot.el 
 --eval (w3m-browse-url 
 \http://www.crummy.com/software/BeautifulSoup/documentation.html\;))
 For information about GNU Emacs and the GNU system, type C-h C-a.
 error in process sentinel: w3m-fontify-anchors: Wrong type argument: 
 number-or-marker-p, nil
 error in process sentinel: Wrong type argument: number-or-marker-p, nil

Thank you for your report.

I just installed this patch to CVS Head.

-- 
Hideyuki SHIRAI (mailto:shi...@meadowy.org)

Index: w3m.el
===
RCS file: /cvsroot/w3m-shirai/emacs-w3m/w3m.el,v
retrieving revision 1.1260
retrieving revision 1.1261
diff -u -r1.1260 -r1.1261
--- w3m.el  30 Jul 2009 00:34:06 -  1.1260
+++ w3m.el  4 Aug 2009 01:12:05 -   1.1261
@@ -3457,8 +3457,9 @@
   ;; is replaced from  and embedded in the w3m's halfdump should be
   ;; restored into  some time.
   (let ((start 0) (buf))
-(while (string-match amp; str start)
-  (setq buf (cons  (cons (substring str start (match-beginning 0)) buf))
+(while (string-match \\(amp;\\)\\|\\([\t\r\f\n]+\\) str start)
+  (setq buf (cons (if (match-beginning 1)   )
+ (cons (substring str start (match-beginning 0)) buf))
start (match-end 0)))
 (apply (function concat)
   (nreverse (cons (substring str start) buf)



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



Bug#539882: nagios3: workhours timeperiod schedules check for next year

2009-08-04 Thread Castan Eric
Package: nagios3
Version: 3.0.6-4~lenny2
Severity: normal


As reported in http://tracker.nagios.org/view.php?id=31, setting workhours-like 
timeperiods as check_periods may result in checks being scheduled for the next 
year instead of the next day.

It seems that there is no other workaround but using 24x7 timerperiods.

Regards

Eric Castan


-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (800, 'stable')
Architecture: i386 (i686)

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

Versions of packages nagios3 depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libgd2-xpm 2.0.36~rc1~dfsg-3 GD Graphics Library version 2
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libperl5.105.10.0-19 Shared Perl library
ii  libpng12-0 1.2.27-2+lenny2   PNG library - runtime
ii  nagios3-common 3.0.6-4~lenny2support files for nagios3
ii  perl   5.10.0-19 Larry Wall's Practical Extraction 
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

nagios3 recommends no packages.

Versions of packages nagios3 suggests:
pn  nagios-nrpe-pluginnone (no description available)

-- no debconf information



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



Bug#539883: ITP: covered -- Verilog code coverage analysis tool

2009-08-04 Thread أحمد المحمودي
Package: wnpp
Severity: wishlist
Owner: أحمد المحمودي aelmahmo...@users.sourceforge.net


* Package name: covered
  Version : 0.7.5
  Upstream Author : Trevor Williams phase1...@gmail.com
* URL : http://covered.sourceforge.net/
* License : GPL-2+
This program 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 2 of the License, or
(at your option) any later version.
  Programming Lang: C, Tcl
  Description : Verilog code coverage analysis tool
 Covered is a Verilog code coverage utility that reads in a Verilog design and
 a generated VCD/LXT dumpfile from that design and generates a coverage file
 that can be merged with other coverage files or used to create a coverage
 report. Covered also contains the GUI coverage report utility that reads in a
 coverage file to allow interactive coverage discovery. Areas of coverage
 measured by Covered are: line, toggle, memory, combinational logic, FSM
 state/state-transition and assertion coverage.

-- System Information:
Debian Release: 5.0
  APT prefers jaunty-updates
  APT policy: (500, 'jaunty-updates'), (500, 'jaunty-security'), (500, 
'jaunty-proposed'), (500, 'jaunty-backports'), (500, 'jaunty')
Architecture: i386 (i686)



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



Bug#539884: ITP: elementary -- A graphical user interface library using Enlightenment Foundation Libraries

2009-08-04 Thread Albin Tonnerre
Package: wnpp
Severity: wishlist
Owner: pkg-e-de...@lists.alioth.debian.org


* Package name: elementary
  Version : 0.5.1.0
  Upstream Author : The e17 development team
* URL : http://www.enlightenment.org
* License : LGPL
  Programming Lang: C
  Description : A graphical user interface library using Enlightenment 
Foundation Libraries

 Elementary is a widget set based on the Enlightenment Foundation Libraries,
 primarily aimed at creating graphical user interfaces for mobile and embedded
 devices.


-- 
Albin Tonnerre



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



Bug#539857: liferea: Program received signal SIGABRT

2009-08-04 Thread Emilio Pozuelo Monfort
Nelson A. de Oliveira wrote:
 Package: liferea
 Version: 1.6.0-1
 Severity: important
 
 Hi!
 
 With the attached test file (test.rss), liferea quits with a SIGABRT when
 clicking on link cosmos.
 gdb backtrace is attached too.

Here's a backtrace with debugging symbols:


ERROR:social.c:142:social_get_link_search_url: assertion failed: (link)

Program received signal SIGABRT, Aborted.
0xb7fe1424 in __kernel_vsyscall ()
(gdb) bt
#0  0xb7fe1424 in __kernel_vsyscall ()
#1  0xb69ee3d0 in raise () from /lib/i686/cmov/libc.so.6
#2  0xb69f1a85 in abort () from /lib/i686/cmov/libc.so.6
#3  0xb6b8206c in IA__g_assertion_message (domain=0xb6bbf29e , file=0x80a6f83
social.c, line=142, func=0x80a79e0 social_get_link_search_url,
message=0x89dc258 assertion failed: (link))
at
/build/buildd-glib2.0_2.20.4-1-i386-6KfM1O/glib2.0-2.20.4/glib/gtestutils.c:1301
#4  0xb6b8268d in IA__g_assertion_message_expr (domain=0x0, file=0x80a6f83
social.c, line=142, func=0x80a79e0 social_get_link_search_url,
expr=0x80b152d link)
at
/build/buildd-glib2.0_2.20.4-1-i386-6KfM1O/glib2.0-2.20.4/glib/gtestutils.c:1312
#5  0x08075104 in social_get_link_search_url ()
#6  0x0808de5a in ui_itemlist_search_item_link ()
#7  0x08087ff8 in liferea_htmlview_handle_URL ()
#8  0x0809d4d7 in ?? ()
#9  0xb735e4a9 in webkit_marshal_BOOLEAN__OBJECT_OBJECT_OBJECT_OBJECT
(closure=0x8964198, return_value=0xbfffe4f0, n_param_values=5,
param_values=0x8980568, invocation_hint=0xbfffe4dc, marshal_data=0x855e0b8)
at DerivedSources/webkitmarshal.cpp:214
#10 0xb6be1b13 in IA__g_closure_invoke (closure=0x8964198,
return_value=0xbfffe4f0, n_param_values=5, param_values=0x897bc80,
invocation_hint=0xbfffe4dc)
at
/build/buildd-glib2.0_2.20.4-1-i386-6KfM1O/glib2.0-2.20.4/gobject/gclosure.c:767
#11 0xb6bf5b3f in signal_emit_unlocked_R (node=0x8644e68, detail=0,
instance=0x855e0b8, emission_return=0xbfffe628, instance_and_params=0x897bc80)
at
/build/buildd-glib2.0_2.20.4-1-i386-6KfM1O/glib2.0-2.20.4/gobject/gsignal.c:3247
#12 0xb6bf6e1f in IA__g_signal_emit_valist (instance=0x855e0b8, signal_id=309,
detail=0, var_args=0xbfffe6c8 \344\346\377\277\30\227\327\267)
at
/build/buildd-glib2.0_2.20.4-1-i386-6KfM1O/glib2.0-2.20.4/gobject/gsignal.c:2990
#13 0xb6bf7285 in IA__g_signal_emit_by_name (instance=0x855e0b8,
detailed_signal=0xb7ca6724 navigation-policy-decision-requested)
at
/build/buildd-glib2.0_2.20.4-1-i386-6KfM1O/glib2.0-2.20.4/gobject/gsignal.c:3074
#14 0xb7344462 in
WebKit::FrameLoaderClient::dispatchDecidePolicyForNavigationAction
(this=0xb2ff0f20, policyFunction=0xb772cff0
WebCore::FrameLoader::continueAfterNavigationPolicy(WebCore::PolicyAction),
action=..., resourceRequest=...) at
../WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp:364
#15 0xb772c107 in WebCore::FrameLoader::checkNavigationPolicy (this=0xb2ff36a8,
request=..., loader=0xb3006000, formState=...,
function=0xb7730e30
WebCore::FrameLoader::callContinueLoadAfterNavigationPolicy(void*,
WebCore::ResourceRequest const, WTF::PassRefPtrWebCore::FormState, bool),
argument=0xb2ff36a8)
at ../WebCore/loader/FrameLoader.cpp:3924
#16 0xb772c7c0 in WebCore::FrameLoader::loadWithDocumentLoader (this=0xb2ff36a8,
loader=0xb3006000, type=WebCore::FrameLoadTypeStandard, prpFormState=...) at
../WebCore/loader/FrameLoader.cpp:2376
#17 0xb772d4ce in WebCore::FrameLoader::loadWithNavigationAction
(this=0xb2ff36a8, request=..., action=..., lockHistory=false,
type=WebCore::FrameLoadTypeStandard, formState=...)
at ../WebCore/loader/FrameLoader.cpp:2310
#18 0xb772fb93 in WebCore::FrameLoader::loadURL (this=0xb2ff36a8, newURL=...,
referrer=..., frameName=..., lockHistory=value optimized out,
newLoadType=WebCore::FrameLoadTypeStandard, event=...,
prpFormState=...) at ../WebCore/loader/FrameLoader.cpp:2253
#19 0xb772ff03 in WebCore::FrameLoader::loadFrameRequest (this=0xb2ff36a8,
request=..., lockHistory=value optimized out, lockBackForwardList=false,
event=..., formState=...)
at ../WebCore/loader/FrameLoader.cpp:2194
#20 0xb773353b in WebCore::FrameLoader::urlSelected (this=0xb2ff36a8,
request=..., passedTarget=..., triggeringEvent=..., lockHistory=value optimized
out, lockBackForwardList=value optimized out,
userGesture=value optimized out) at ../WebCore/loader/FrameLoader.cpp:408
#21 0xb768a2cf in WebCore::HTMLAnchorElement::defaultEventHandler
(this=0xb3087500, evt=0xb21f5528) at ../WebCore/html/HTMLAnchorElement.cpp:208
#22 0xb75c9bd8 in WebCore::Node::dispatchGenericEvent (this=0xb3083dc8,
prpEvent=...) at ../WebCore/dom/Node.cpp:2562
#23 0xb75c9efc in WebCore::Node::dispatchEvent (this=0xb3083dc8, e=...,
e...@0xbfffef4c) at ../WebCore/dom/Node.cpp:2449
#24 0xb75c8e41 in WebCore::Node::dispatchMouseEvent (this=0xb3083dc8,
eventType=..., button=value optimized out, detail=1, pageX=228, pageY=44,
screenX=520, screenY=442, ctrlKey=false, altKey=false,
shiftKey=false, metaKey=false, isSimulated=false, relatedTargetArg=0x0,
underlyingEvent=...) at 

Bug#539885: git-buildpackage: AttributeError: GbpOptionParser instance has no attribute 'add_boolean_config_file_option'

2009-08-04 Thread Jari Aalto
Package: git-buildpackage
Version: 0.4.55
Severity: important


I get following error. I use a Makefile target to call
git-buildpackage:

CC='ccache gcc' CXX='ccache g++' 
PATH=/usr/bin:/root/var/link/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
 \
DH_ALWAYS_EXCLUDE=CVS:RCS:.MT:.svn:.bzr:.hg:.git 
DEBUILD_PRESERVE_ENVVARS=DH_ALWAYS_EXCLUDE \
  git-buildpackage  \
--git-verbose   \
--git-ignore-new\
--lintian-opts --display-info --show-overrides 
--display-experimental \
  21  \
| tee $(pwd)/../build-area/pkg-git-build.log
Traceback (most recent call last):
  File /usr/bin/git-buildpackage, line 350, in module
sys.exit(main(sys.argv))
  File /usr/bin/git-buildpackage, line 183, in main
parser.add_boolean_config_file_option(option_name = ignore-new, 
dest=ignore_new)
AttributeError: GbpOptionParser instance has no attribute 
'add_boolean_config_file_option'

According to manual, there are is an option --git-ignore-new:

   SYNOPSIS

   git-buildpackage [ --git-[no-]ignore-new ] [ --git-tag ] [
   --git-verbose ] [ --git-upstream-branch=treeish ] [
   --git-debian- branch=branch_name ] [ --git-builder=BUILD_CMD ]
   [ --git-cleaner=CLEAN_CMD ] [ --git-[no-]sign-tags ] [
   --git-keyid=gpg-keyid ] [ --git-posttag=command ] [
   --git-postbuild=command ] [ --git-debian-tag=tag-format ] [
   --git-no-create-orig ] [ --git-tarball- dir=directory ] [
   --git-export-dir=directory ] [ --git-export=treeish ] [
   --git-[no-]pristine-tar ] [ --git-dont-purge ] [ --git-
   tag-only ]

The branches are:

* master
  upstream

Using stock configuration file:

  -rw-r--r-- 1 root root 1661 2009-08-04 11:46 /etc/git-buildpackage/gbp.conf

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

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

Versions of packages git-buildpackage depends on:
ii  devscripts   2.10.52 scripts to make the life of a Debi
ii  git-core 1:1.6.3.3-2 fast, scalable, distributed revisi
ii  python   2.5.4-2 An interactive high-level object-o
ii  python-dateutil  1.4.1-3 powerful extensions to the standar
ii  python-support   1.0.3   automated rebuilding support for P

Versions of packages git-buildpackage recommends:
ii  pristine-tar  1.00   regenerate pristine tarballs

Versions of packages git-buildpackage suggests:
pn  git-load-dirs none (no description available)

-- no debconf information



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



Bug#539886: munin-node: maintainer scripts fails to create default set of enabled plugins due to df error

2009-08-04 Thread janning
Package: munin-node
Version: 1.2.6-10~lenny1
Severity: normal


$ aptitude install munin-node


# Got junk from df_inode: df: `/var/lib/postgresql/8.4/main/base': Permission 
denied
# Got junk from df_inode: Error executing df. Exit code 256
# Got junk from df: df: `/var/lib/postgresql/8.4/main/base': Permission denied
# Got junk from df: Error executing df. Exit code 256

if you have a mountpoint which is not accessible by munin user, df plugin fails
with an error message and no symlinks are created by maintainer script

# ls -ald /var/lib/postgresql/8.4/main/base/
drwx-- 8 postgres postgres 4.0K 2009-08-03 12:51 
/var/lib/postgresql/8.4/main/base/

# mount | grep postgres
/dev/md1 on /var/lib/postgresql/8.4/main/base type ext3 
(rw,noatime,data=writeback)

# sudo -u munin df
Filesystem   1K-blocks  Used Available Use% Mounted on

df: `/var/lib/postgresql/8.4/main/base': Permission denied

the error should be handled and the maintainer script should go on to install 
other plugins
at the moment no plugins are installed, just because df fails on one mount 
point.

ls -al /etc/munin/plugins/
total 8.0K
drwxr-xr-x 2 root root 4.0K 2009-03-13 14:10 .
drwxr-xr-x 4 root root 4.0K 2009-08-04 10:33 ..

kind regards 
Janning

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/8 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 munin-node depends on:
ii  adduser 3.110add and remove users and groups
ii  gawk1:3.1.5.dfsg-4.1 GNU awk, a pattern scanning and pr
ii  libnet-server-perl  0.97-1   An extensible, general perl server
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  perl5.10.0-19Larry Wall's Practical Extraction 
ii  procps  1:3.2.7-11   /proc file system utilities

Versions of packages munin-node recommends:
ii  libnet-snmp-perl  5.2.0-1Script SNMP connections

Versions of packages munin-node suggests:
pn  acpi | lm-sensors none (no description available)
pn  ethtool   none (no description available)
ii  libdbd-pg-perl2.8.7-1Perl DBI driver for the PostgreSQL
pn  liblwp-useragent-determined-p none (no description available)
pn  libnet-irc-perl   none (no description available)
pn  libwww-perl   none (no description available)
pn  munin none (no description available)
pn  munin-plugins-extra   none (no description available)
pn  mysql-client  none (no description available)
ii  python2.5.2-3An interactive high-level object-o
pn  smartmontools none (no description available)

-- no debconf information



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



Bug#539857: liferea: Program received signal SIGABRT

2009-08-04 Thread Emilio Pozuelo Monfort
Emilio Pozuelo Monfort wrote:
 Nelson A. de Oliveira wrote:
 Package: liferea
 Version: 1.6.0-1
 Severity: important

 Hi!

 With the attached test file (test.rss), liferea quits with a SIGABRT when
 clicking on link cosmos.
 gdb backtrace is attached too.
 
 Here's a backtrace with debugging symbols:

The feed doesn't validate. We shouldn't crash anyway, but it may not be a
problem of us (except that we should handle the feed problem gracefully).



signature.asc
Description: OpenPGP digital signature


Bug#539887: libnice: missing comma in build-depends list in debian/control file

2009-08-04 Thread Jeremy Lal
Package: libnice
Version: 0.0.8
Severity: serious
Justification: no longer builds from source

Here's what i read :
Build-Depends: cdbs,
   debhelper (= 7),
   libglib2.0-dev (= 2.10)
   libgstreamer0.10-dev,
   libgstreamer-plugins-base0.10-dev,
   gtk-doc-tools

It seems some comma is missing after the third line.
dpkg-checkbuilddeps complains about that.

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

Kernel: Linux 2.6.30-1-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/dash




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



Bug#539876: qmmp: unable add new skin without installed unzip

2009-08-04 Thread Eugene V. Lyubimkin
package qmmp
tags 539876 + pending
thanks

ant...@tula.net wrote:
 
 Package: qmmp
 Version: 0.3.0-1
 Severity: minor
 
 I was unable to add new skin (provided in zip archive) without
 installing unzip. After choosing file with skin nothing happend.
 Looks like it is need to add unzip in qmmp dependencies (at least in
 suggested).
Thanks for the report, will be fixed in the next upload of qmmp.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Maintainer



signature.asc
Description: OpenPGP digital signature


Bug#539888: nm-device.h needs nm-connection.h that is installed in an other package

2009-08-04 Thread Laurent Bigonville
Package: network-manager
Version: 0.7.1-1
Severity: serious

Hi,

Today I've tried to compile a software that is using nm, and I get a
FTBFS due to a missing header.

libtool: compile:  cc -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I.. 
-DDATADIR=\/usr/share\ -DLOCALEDIR=\/usr/share/locale\ 
-DG_LOG_DOMAIN=\empathy\ -pthread -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/gio-unix-2.0/ -I/usr/include/libxml2 
-I/usr/include/telepathy-1.0 -I/usr/include/dbus-1.0 
-I/usr/lib/dbus-1.0/include -I/usr/include/gstreamer-0.10 
-I/usr/include/geoclue -I/usr/include/dbus-1.0 -I/usr/include/libxml2 
-I/usr/lib/dbus-1.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/libnm-glib -I/usr/include/NetworkManager -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include 
-Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wchar-subscripts 
-Wnested-externs -Wpointer-arith -Wno-sign-compare -Wno-pointer-sign -Wformat 
-Werror -g -O2 -g -Wall -O2 -c empathy-idle.c  -fPIC -DPIC -o 
.libs/empathy-idle.o
In file included from /usr/include/libnm-glib/nm-client.h:32,
 from empathy-idle.c:29:
/usr/include/libnm-glib/nm-device.h:34:27: error: nm-connection.h: No such file 
or directory
In file included from /usr/include/libnm-glib/nm-client.h:33,
 from empathy-idle.c:29:
/usr/include/libnm-glib/nm-active-connection.h:62: error: expected '=', ',', 
';', 'asm' or '__attribute__' before 'nm_active_connection_get_scope'
make[4]: *** [empathy-idle.lo] Error 1

So it's look like nm-device.h needs nm-connection.h that is installed into an 
other package.

Build-depending against libnm-util-dev fix the FTBFS but I think there is 
missing a dependency (or the file should be moved)

Best Regards

Laurent Bigonville



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



Bug#539886: munin-node: maintainer scripts fails to create default set of enabled plugins due to df error

2009-08-04 Thread Holger Levsen
Hi Janning,

On Dienstag, 4. August 2009, janning wrote:
 the error should be handled and the maintainer script should go on to
 install other plugins at the moment no plugins are installed, just because
 df fails on one mount point.

I agree, thanks for your bug report!


regards,
Holger


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


Bug#491006: reassign 491006 to wxwidgets2.8, affects 491006

2009-08-04 Thread Gerfried Fuchs
* Gerfried Fuchs rho...@debian.at [2009-08-03 16:03:50 CEST]:
 # this is really a wxwidgets2.8 bug, seemingly fixed in a newer wx2.8 release
 reassign 491006 wxwidgets2.8 
 affects 491006 pgadmin3

 I got this further information about this bug which should be able to
fix the issue:
http://svn.wxwidgets.org/viewvc/wx/wxWidgets/branches/WX_2_8_BRANCH/src/gtk/menu.cpp?r1=54064r2=54173

And this is the discussion about the issue.
http://groups.google.fr/group/comp.soft-sys.wxwindows/browse_frm/thread/608778ec0debf8e3/62791d5b4e51904d?hl=frtvc=1q=Shortcut+issue+on+GTK+contextual+menu#62791d5b4e51904d

 Hope that helps!
Rhonda



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



Bug#539890: xsltproc's -o argument is ambiguous

2009-08-04 Thread Jonny Lamb
Package: xsltproc
Version: 1.1.24-2
Severity: minor
Tags: patch

If there is no output to xsltproc's invocation, it does not create the
file specified in the -o argument. Therefore, these two calls are
different:

xsltproc -o foo [...]

xsltproc [...]  foo

because in the case of xsltproc having no output, the former will not
even create the file foo, whereas of course the latter will create
an empty file.

The man page does not mention this behaviour. I have attached a patch
to add mention of it to the manpage. I'm welcome for my wording and/or
nroff to be fixed as you see fit.

Thanks,

-- 
Jonny Lamb, UK
jo...@debian.org
diff -Nruad -Nruad libxslt-1.1.24.orig/doc/xsltproc.1 
libxslt-1.1.24/doc/xsltproc.1
--- libxslt-1.1.24.orig/doc/xsltproc.1  2009-08-04 10:18:17.0 +0100
+++ libxslt-1.1.24/doc/xsltproc.1   2009-08-04 10:21:20.0 +0100
@@ -161,6 +161,17 @@
 will maybe not work, but
 \fB\-o directory/\fR
 will\.
+.sp
+.it 1 an-trap
+.nr an-no-space-flag 1
+.nr an-break-flag 1
+.br
+Also note
+If there is no output to xsltproc,
+\fIFILE\fR
+will not be created at all\. An empty file will
+\fBnot\fR
+be created.
 .RE
 .PP
 \fB\-\-encoding \fR\fB\fIENCODING\fR\fR


Bug#539891: CVE-2009-2654: allows remote attackers to spoof the address bar

2009-08-04 Thread Giuseppe Iuculano
Package: xulrunner
Severity: important
Tags: security patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


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

CVE-2009-2654[0]:
| Mozilla Firefox 3.5.1 and earlier allows remote attackers to spoof the
| address bar, and possibly conduct phishing attacks, via a crafted web
| page that calls window.open with an invalid character in the URL,
| makes document.write calls to the resulting object, and then calls the
| stop method during the loading of the error page.

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2654
http://security-tracker.debian.net/tracker/CVE-2009-2654
Patch: https://bug451898.bugzilla.mozilla.org/attachment.cgi?id=391176

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

iEYEARECAAYFAkp4AMUACgkQNxpp46476aoiAwCeKqWgto7rHejQ1l7FYCfz/6n6
IFYAmwe/xWeHzR1rozUIbi+cY4nuNhSA
=xX+m
-END PGP SIGNATURE-



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



Bug#539892: dovecot: unfiltered messages

2009-08-04 Thread Stefan V?l
Package: logcheck-database
Version: 1.2.69
Severity: normal
Tags: patch

Hi,

sometimes dovecot's deliver generates messages like this

Aug  4 06:56:11 bc-bd deliver(bd): msgid=: saved mail to INBOX.maybespam

e.g. without a msgid. These messages are not filtered by logcheck.

regards

Stefan

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.16.33-xenU (SMP w/2 CPU cores)
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

-- no debconf information
--- /tmp/dovecot2009-08-04 09:24:02.0 +
+++ ignore.d.server/dovecot 2009-08-04 09:24:34.0 +
@@ -14,7 +14,7 @@
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ dovecot-auth: \(pam_unix\) check 
pass; user unknown$
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ dovecot-auth: 
pam_unix\(dovecot:[[:alnum:]]+\): check pass; user unknown$
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ deliver\([...@[:alnum:]]+\): 
msgid=[^[:space:]]+( \((added by [^[:space:]]+|sfid-[_[:xdigit:]]+)\))?: 
saved mail to [-_.[:alnum:]]+$
-^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ deliver\([...@[:alnum:]]+\): 
msgid=[^[:space:]]+?( \((added by [^[:space:]]+|sfid-[_[:xdigit:]]+)\))?: 
(saved mail to [-_.[:alnum:]]+|forwarded to [^[:space:]]+)$
+^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ deliver\([...@[:alnum:]]+\): 
msgid=([^[:space:]]+|:)?( \((added by [^[:space:]]+|sfid-[_[:xdigit:]]+)\))?: 
(saved mail to [-_.[:alnum:]]+|forwarded to [^[:space:]]+)$
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ dovecot: 
auth-worker\([-_.[:alnum:]]+\): (pg|my)sql: Connected to [-_.[:alnum:]]+ 
\([-_.[:alnum:]]+\)$
 # see #396760
 ^\w{3} [ :[:digit:]]{11} [._[:alnum:]-]+ dovecot: auth\([[:alnum:]]+\): client 
in: AUTH 
[[:digit:]]+[[:space:]]+(PLAIN|plain|LOGIN|login|(CRAM|DIGEST)-MD5|(cram|digest)-md5)[[:space:]]+service=IMAP[[:space:]]+(secured
 )?lip=[.:[:xdigit:]]+[[:space:]]+rip=[.:[:xdigit:]]+[[:space:]]+resp=hidden$


Bug#539889: libsndfile.la needs to have its dependency_libs field cleared.

2009-08-04 Thread Luke Yelavich
Package: libsndfile
Version: 1.0.20-1
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu karmic ubuntu-patch

The libsndfile.la includes references to libraries that libsndfile is linked 
against, such as libFLAC, and libvorbisenc. Whe na package that depends on 
libsndfile links against libsndfile, the package in question also gets 
uselessly linked against those libraries. Clearing the dependency_libs field in 
libsndfile.la fixes this problem.

*** /tmp/tmp_qsPtS
In Ubuntu, we've applied the attached patch to achieve the following:

  * debian/rules: Clear the dependency_libs field in .la files.

We thought you might be interested in doing the same. 


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

Kernel: Linux 2.6.31-5-generic (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u libsndfile-1.0.20/debian/rules libsndfile-1.0.20/debian/rules
--- libsndfile-1.0.20/debian/rules
+++ libsndfile-1.0.20/debian/rules
@@ -51,6 +51,11 @@
 
 	$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
 
+	set -e; for FILE in debian/tmp/usr/lib/*.la; \
+	do \
+		sed -i /dependency_libs/ s/'.*'/''/ $$FILE; \
+	done
+
 binary-indep: build install
 
 binary-arch: build install


Bug#539778: init.d script

2009-08-04 Thread Christoph Haas
I have added the config test to the init.d script here and it appears to
work well. Feel free to use it if you think it's okay.

 Christoph
#! /bin/sh

### BEGIN INIT INFO
# Provides:  nginx
# Required-Start:$all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop:  0 1 6
# Short-Description: starts the nginx web server
# Description:   starts nginx using start-stop-daemon
### END INIT INFO

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/nginx
NAME=nginx
DESC=nginx

test -x $DAEMON || exit 0

# Include nginx defaults if available
if [ -f /etc/default/nginx ] ; then
	. /etc/default/nginx
fi

set -e

test_config() {
set +e
RES=`nginx -t 21`
if [ $? -ne 0 ] ; then
echo Error in nginx configuration found!
echo $RES
exit 10
fi
set -e
}

case $1 in
  start)
	echo -n Starting $DESC: 
	start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
		--exec $DAEMON -- $DAEMON_OPTS || true
	echo $NAME.
	;;
  stop)
	echo -n Stopping $DESC: 
	start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
		--exec $DAEMON || true
	echo $NAME.
	;;
  restart|force-reload)
test_config
	echo -n Restarting $DESC: 
	start-stop-daemon --stop --quiet --pidfile \
		/var/run/$NAME.pid --exec $DAEMON || true
	sleep 1
	start-stop-daemon --start --quiet --pidfile \
		/var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS || true
	echo $NAME.
	;;
  reload)
test_config
echo -n Reloading $DESC configuration: 
start-stop-daemon --stop --signal HUP --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON || true
echo $NAME.
;;
  configtest)
test_config
;;
  *)
	echo Usage: $NAME {start|stop|restart|reload|force-reload|configtest} 2
	exit 1
	;;
esac

exit 0


Bug#539893: New upstream release (ovaldi 5.5.23)

2009-08-04 Thread Michael Wiegand
Package: ovaldi
Severity: minor

A new version of ovaldi (5.5.23) has recently been released and is
available for download from http://sourceforge.net/projects/ovaldi/.
Please consider packaging this version. Thank you!

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

-- 
Michael Wiegand | OpenPGP: D7D049EC | Intevation GmbH - www.intevation.de
Neuer Graben 17, 49074 Osnabrück, Germany   |AG Osnabrück, HR B 18998
Geschäftsführer: Frank Koormann,  Bernhard Reiter,  Dr. Jan-Oliver Wagner



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



Bug#539857: liferea: Program received signal SIGABRT

2009-08-04 Thread Emilio Pozuelo Monfort
Emilio Pozuelo Monfort wrote:
 Emilio Pozuelo Monfort wrote:
 Nelson A. de Oliveira wrote:
 Package: liferea
 Version: 1.6.0-1
 Severity: important

 Hi!

 With the attached test file (test.rss), liferea quits with a SIGABRT when
 clicking on link cosmos.
 gdb backtrace is attached too.
 Here's a backtrace with debugging symbols:
 
 The feed doesn't validate. We shouldn't crash anyway, but it may not be a
 problem of us (except that we should handle the feed problem gracefully).

Nevermind that, it seems the cause is that the items don't have a link tag,
which doesn't seem to be mandatory. So the bug is ours.

I'll look at fixing it.

Emilio



signature.asc
Description: OpenPGP digital signature


Bug#537244: jppy: does not start but quits with a segmentation fault

2009-08-04 Thread Nicholas Piper
This is because we are currently NOT compatible with libpisock9
0.12.4. You must have libpisock9 0.12.3 installed instead. The
conflicts data was not updated in libpisock9 to reflect this due to an
oversight.

See
http://lists.pilot-link.org/pipermail/pilot-link-devel/2009-July/001777.html

A new jppy package (with source changes) needs to be created and
uploaded with a matter of urgency, but this has not happened yet. The
porting work was started, but not finished:
http://git.debian.org/?p=jppy/jppy.git;a=shortlog;h=refs/heads/pilot-link-0.12.4-compat-devel

I'm sorry for this trouble.

 Nick



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



Bug#539767: alsa-base: drop blacklist of snd-pcsp

2009-08-04 Thread Steve Langasek
severity 539767 important
thanks

On Mon, Aug 03, 2009 at 04:05:23PM +0200, maximilian attems wrote:
 Package: alsa-base
 Version: 1.0.20+dfsg-1
 Severity: serious

 please nuke this entry
  egrep blacklist snd-pcsp /etc/modprobe.d/alsa-base-blacklist.conf
 blacklist snd-pcsp

 this one needs to be enough.
  egrep snd-pcsp /etc/modprobe.d/alsa-base.conf
 # Keep snd-pcsp from beeing loaded as first soundcard
 options snd-pcsp index=-2

 we disable for linux-2.6 2.6.31 the traditional INPUT_PCSPKR
 in favour of aboves alsa driver.

Downgrading, this isn't a release-critical bug.  (Unless the alsa-base
maintainers agree with you that this makes the package unsuitable for
release, in which case they can raise the severity again.)

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org



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



Bug#470894: grub-installer: user parameters are not added to grub.cfg for grub2

2009-08-04 Thread Felix Zielcke
bts tag 470894 patch
thanks
Am Freitag, den 31.07.2009, 10:25 +0200 schrieb Felix Zielcke:
 Am Donnerstag, den 11.06.2009, 15:03 +0100 schrieb Colin Watson:
  If you, and others on this list, agree with that claim, then we can
  simply go ahead and have grub-installer edit /etc/default/grub to
  insert
  the output of user-params, on the condition that the default text -
  i.e.
  what you get if you just press enter at the boot: prompt - is
  character-for-character the same as what's in the conffile shipped in
  the grub-pc package. However, if you disagree, then I think it will be
  necessary to convert grub-pc (and I suppose the other grub-* binary
  packages) to manage /etc/default/grub using ucf. 
 
 Now that we use ucf for it, it should be easy to implement for someone
 who knows sed.
 Which I don't unfortunately, so I don't know how to do it.
 
 Should there be then a check for the version with ucf in case people
 install lenny with current grub-installer to be real policy compliant?
 In that case the version would be 1.96+20090611-1.


Here's now a patch which does it without a version check.

-- 
Felix Zielcke
Proud Debian Maintainer
Index: grub-installer
===
--- grub-installer	(revision 59908)
+++ grub-installer	(working copy)
@@ -731,10 +731,30 @@ for u_param in $user_params; do
 	esac
 done
 if [ $defopt_params ]; then
-	sed -i s!^\(# defoptions=.*\)!\1 $defopt_params! $ROOT/boot/grub/$menu_file
+	case $grub_version in
+	grub)
+		sed -i s!^\(# defoptions=.*\)!\1 $defopt_params! $ROOT/boot/grub/$menu_file ;;
+	grub2)
+		if grep -q GRUB_CMDLINE_LINUX $ROOT/boot/grub/$menu_file ; then
+			sed -i s!^GRUB_CMDLINE_LINUX_DEFAULT=\\(.*\)\!GRUB_CMDLINE_LINUX_DEFAULT=\\1 $defopt_params\! $ROOT/boot/grub/$menu_file
+		else
+			echo GRUB_CMDLINE_LINUX_DEFAULT=\$defopt_params\  $ROOT/boot/grub/$menu_file
+		fi
+		;;
+	esac
 fi
 if [ $kopt_params ]; then
-	sed -i s!^\(# kopt=.*\)!\1 $kopt_params! $ROOT/boot/grub/$menu_file
+	case ($grub_version) in
+	grub)
+		sed -i s!^\(# kopt=.*\)!\1 $kopt_params! $ROOT/boot/grub/$menu_file
+	grub2)
+		if grep -q GRUB_CMDLINE_LINUX $ROOT/boot/grub/$menu_file ; then
+			sed -i s!^GRUB_CMDLINE_LINUX=\\(.*\)\!GRUB_CMDLINE_LINUX_DEFAULT=\\1 $kopt_params\! $ROOT/boot/grub/$menu_file 
+		else
+			echo GRUB_CMDLINE_LINUX=\$kopt_params\  $ROOT/boot/grub/$menu_file
+		fi
+		;;
+	esac	
 fi
 # In either case, update the Debian kernel entries
 if [ $user_params ]; then


Bug#539894: no way to reindex colelction after adding an arch

2009-08-04 Thread martin f krafft
Package: reprepro
Version: 3.11.1-1
Severity: wishlist

I recently added armel as an arch to my repo, but now I cannot find
a way to export existing arch:all packages so that they become
available to armel clients. It would be nice if I could just say
'reindex it all please'.

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

Kernel: Linux 2.6.31-rc3-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 reprepro depends on:
ii  libarchive12.6.2-1   Single library to read/write tar, 
ii  libbz2-1.0 1.0.5-3   high-quality block-sorting file co
ii  libc6  2.9-23GNU C Library: Shared libraries
ii  libdb4.6   4.6.21-14 Berkeley v4.6 Database Libraries [
ii  libgpg-error0  1.6-1 library for common error values an
ii  libgpgme11 1.1.8-2   GPGME - GnuPG Made Easy
ii  zlib1g 1:1.2.3.3.dfsg-14 compression library - runtime

Versions of packages reprepro recommends:
ii  apt   0.7.21 Advanced front-end for dpkg

Versions of packages reprepro suggests:
ii  gnupg-agent   2.0.11-1   GNU privacy guard - password agent
pn  inoticoming   none (no description available)
ii  lzma  4.43-14Compression method of 7z format in

-- no debconf information


-- 
 .''`.   martin f. krafft madd...@d.o  Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  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#531548: Info received (Bug#531548: _not_ fixed in xemacs21 21.4.22-2)

2009-08-04 Thread points
I decided to give it another spin, and see if the oldstable version 
would work. Which it didn't.


Then, however, I just created a symbolic link in /usr/bin, for 
/usr/bin/xemacs to point to /usr/bin/xemacs21 (which was present), and 
hey, presto!


Upgrading to the testing version proved to be no problem either.

Apparently update-alternatives can't work with a broken link, and 
xemacs won't fix it by itself (or something).


Hope this helps, I've got xemacs installed  functioning:

ii  xemacs21 21.4.21-4highly 
customizable text editor


Regards,
Jan



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



Bug#539744: chroot to lenny /target in debootstrap segfaults

2009-08-04 Thread Frans Pop
reassign 539744 base-installer
tags 539744 pending
thanks

On Tuesday 04 August 2009, Frans Pop wrote:
 One, IMO fairly logical, solution to this could be to not let partman
 create /etc/fstab *in* /target, but instead create it somewhere in the
 the D-I environment and then let a base-installer.d script copy it over
 to /target.
 This would also be more in line with how other components do things.

This oneliner change would fix the issue as well:
+++ b/packages/base-installer/debian/bootstrap-base.postinst
@@ -88,7 +88,7 @@ install_base_system () {
# so make a backup to be restored later
copied_fstab=true
cp /target/etc/fstab /target/etc/fstab.orig
-   echo # UNCONFIGURED FSTAB FOR BASE SYSTEM  /target/etc/fstab
+   echo # UNCONFIGURED FSTAB FOR BASE SYSTEM  /target/etc/fstab
fi

if [ $PROTOCOL = http ]; then

And it even makes more sense than the current code...

I'll go ahead and commit this.



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



Bug#539897: If a font is insufficient, starting will go wrong

2009-08-04 Thread Jonny
Package: netsurf-sdl
Version: 2.1-1
Severity: serious

It cannot start, unless ~/.netsurf/sans_serif.ttf or 
/usr/share/fonts/truetype/ttf-bitstream-vera/Vera.ttf exists. In order to 
avoid this problem, please add ttf-bitstream-vera to Depends or Recommends.



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



Bug#539895: CVE-2009-2409: spoof certificates by using MD2 design flaws

2009-08-04 Thread Giuseppe Iuculano
Package: nss
Version: 3.12.0-6
Severity: important
Tags: security lenny

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

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

CVE-2009-2409[0]:
| The NSS library before 3.12.3, as used in Firefox; GnuTLS before 2.6.4
| and 2.7.4; OpenSSL 0.9.8 through 0.9.8k; and other products support
| MD2 with X.509 certificates, which might allow remote attackers to
| spoof certificates by using MD2 design flaws to generate a hash
| collision in less than brute-force time.  NOTE: the scope of this
| issue is currently limited because the amount of computation required
| is still large.


The NSS library since version 3.12.3 has disabled MD2 by default, so only
the lenny version is affected.

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2409
http://security-tracker.debian.net/tracker/CVE-2009-2409


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

iEYEARECAAYFAkp4BpYACgkQNxpp46476ap2EQCfcTQr+2RFdTqKMG0J1dBvCKqY
ddgAn14HPxWzZ6a9Ubsk5f3TKQ/k9zTD
=jhHJ
-END PGP SIGNATURE-



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



Bug#539898: ltsp-server: ltsp-build-client fails to build i386 client on amd64

2009-08-04 Thread Libor Klepáč
Package: ltsp-server
Version: 5.1.79-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,
I wanted to test new ltsp with pulseaudio fixed.
Unfortunately, build-client fails to build i386  version of boot, amd64 version 
builds ok
It dies on
cp: omitting directory `/usr/bin/'
error: LTSP client installation ended abnormally

I also tried to install chroot with debootstrap and it's ok
Log files attached

With regards
Libor


- -- Package-specific info:
packages in chroot: /opt/ltsp/amd64
ii  ldm  2:2.0.42-1   LTSP display manager
ii  ltsp-client  5.1.79-1 LTSP client environment
ii  ltsp-client-core 5.1.79-1 LTSP client environment
ii  ltspfsd  0.5.13-1 Fuse based remote 
filesystem daemon for LTSP thin clients
ii  ltspfsd-core 0.5.13-1 Fuse based remote 
filesystem daemon for LTSP thin clients
lts.conf from chroot: /opt/ltsp/amd64
# This is the default lts.conf file for ltsp 5.
# For more information about valid options please see: 
# /usr/share/doc/ltsp-client-core/lts-parameters.txt.gz
# in the client environment or
# /usr/share/doc/ltsp-server/lts-parameters.txt.gz
# on the server

[default] 
LTSP_CONFIG=True
#SOUND=False
#LOCALDEV=False
#CONFIGURE_X=False

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

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

Versions of packages ltsp-server depends on:
ii  debconf [debconf-2.0] 1.5.27 Debian configuration management sy
ii  debconf-utils 1.5.27 debconf utilities
ii  debootstrap   1.0.15 Bootstrap a basic Debian system
ii  gettext-base  0.17-6 GNU Internationalization utilities
ii  iproute   20090324-1 networking and traffic control too
ii  lsb-release   3.2-23 Linux Standard Base version report
ii  openssh-client1:5.1p1-7  secure shell client, an rlogin/rsh
ii  python2.5.4-3An interactive high-level object-o
ii  tcpd  7.6.q-18   Wietse Venema's TCP wrapper utilit
ii  update-inetd  4.31   inetd configuration file updater

Versions of packages ltsp-server recommends:
ii  nbd-server1:2.9.13-2 Network Block Device protocol - se
ii  nfs-kernel-server 1:1.2.0-2  support for NFS kernel server
pn  openbsd-inetd | inet-superser none (no description available)
ii  openssh-server1:5.1p1-7  secure shell server, an rshd repla
ii  squashfs-tools1:4.0-1Tool to create and append to squas
ii  tftpd-hpa 5.0-3  HPA's tftp server

Versions of packages ltsp-server suggests:
pn  audi none  (no description available)
pn  dhcp none  (no description available)
ii  esou 0.2.41-5Enlightened Sound Daemon - clients
ii  kde- 4:4.2.96-1  the KDE 4 window manager (KWin)
pn  ldm- none  (no description available)
ii  liba 1.0.20-1ALSA library additional plugins
ii  ltsp 0.5.13-1Fuse based remote filesystem for L
ii  nas- 1.9.2-1 Network Audio System - client bina
ii  open 3.4.7.2-4   standards compliant, fast, light-w
ii  puls 0.9.16~test2~20090726git59659e1db-1 PulseAudio ESD compatibility layer
pn  sdm  none  (no description available)
ii  xaut 1:1.0.3-2   X authentication utility

- -- debconf information:
  ltsp-server/build_client: false

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

iEYEARECAAYFAkp4B/4ACgkQhMrxGRe1HmH7EgCfT+EieJTiCXB30y4UMpOCQN3E
1Y4AoJ7bZ7sMDr9ZJOwoTzux75zh2mTD
=0Z37
-END PGP SIGNATURE-
DEBUG: Loading plugin: install: /usr/share/ltsp/plugins/ltsp-builI: Retrieving 
Release
I: Retrieving Release.gpg
I: Checking Release signature
I: Valid Release signature (key id 150C8614919D8446E01E83AF9AA38DCD55BE302B)
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
I: Found additional required dependencies: dash insserv libdb4.7 
I: Found additional base dependencies: libgcrypt11 libgpg-error0 
I: Checking component main on http://192.168.0.3:/debian...
I: Retrieving adduser
I: Validating adduser
I: Retrieving apt
I: Validating apt
I: Retrieving base-files
I: Validating base-files
I: Retrieving base-passwd
I: Validating base-passwd
I: Retrieving bash
I: Validating bash
I: Retrieving bsdmainutils

Bug#539896: binary operator expected in /usr/share/ia32-apt-get/apt-conf-defaults

2009-08-04 Thread Andrew Schulman
Package: ia32-apt-get
Version: 22
Severity: normal
Tags: patch


# ia32-apt-get install libgtk2.0-0 ia32-libgtk2.0-0
/usr/share/ia32-apt-get/apt-conf-defaults: line 15: [: amd64: binary operator 
expected
snip

A patch to fix this is attached.

Thanks,
Andrew.

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

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

Versions of packages ia32-apt-get depends on:
ii  debconf   1.5.27 Debian configuration management sy
ii  ia32-libs-tools   22 Tools for converting i386 debs for

Versions of packages ia32-apt-get recommends:
ii  fakeroot  1.12.4 Gives a fake root environment

ia32-apt-get suggests no packages.

-- debconf information:
* ia32-apt-get/allowed-packages: All
  ia32-apt-get/undo-old-sources-list:
--- apt-conf-defaults~  2009-08-04 05:59:20.0 -0400
+++ apt-conf-defaults   2009-08-04 05:59:20.0 -0400
@@ -12,7 +12,7 @@
   ARCHITECTURES=$ARCHITECTURES $(eval echo $i)
 done
 
-if [ -z $ARCHITECTURES ]; then
+if [ -z $ARCHITECTURES ]; then
   case $NATIVE_ARCH in
 (i386) ARCHITECTURES=i386 amd64;;
 (amd64) ARCHITECTURES=amd64 i386;;


Bug#533759: evince: Segfault when opening dvi files

2009-08-04 Thread Emilio Pozuelo Monfort
reassign 533759 libgs8 8.70~dfsg-1
thanks

Alessio Botta wrote:
 Creating the example I realized that this happens only if the dvi
 contains a picture. 
 
 I am attaching to this mail a latex file, the included picture in eps
 format, the produced dvi (the one causing the segfault), and the
 postscript created from that with dvips, which opens perfectly in
 evince.

Thanks. After rebuilding ghostscript with debugging symbols, I managed to get a
backtrace with useful output:

(gdb) r temp_report.dvi
Starting program: /usr/bin/evince temp_report.dvi
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 0xb5f29b90 (LWP 6063)]
[New Thread 0xb490db90 (LWP 6064)]
GPL Ghostscript 8.70: ./psi/iinit.c(98): initial_enter failed (-7), entering
/MaxBitmap in -dict:10/1123-
GPL Ghostscript 8.70: Initialization file gs_init.ps does not begin with an 
integer.
fatal internal error -100
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb5f29b90 (LWP 6063)]
0xb50c7e92 in i_unregister_root (mem=0xb56d5f0c, rp=0xb56d5f0c, cname=0x0) at
./base/gsalloc.c:1574
1574rpp = (*rpp)-next;
(gdb) bt
#0  0xb50c7e92 in i_unregister_root (mem=0xb56d5f0c, rp=0xb56d5f0c, cname=0x0)
at ./base/gsalloc.c:1574
#1  0xb4e9204c in interp (pi_ctx_p=0xb56b465c, pref=0xb5f28ca8,
perror_object=0xb5f28d70) at ./psi/interp.c:843
#2  0xb4e94311 in gs_call_interp (pi_ctx_p=0xb56b465c, pref=0xb5f28ca8,
user_errors=0, pexit_code=0xb5f28d88, perror_object=0xb5f28d70) at
./psi/interp.c:496
#3  gs_interpret (pi_ctx_p=0xb56b465c, pref=0xb5f28ca8, user_errors=0,
pexit_code=0xb5f28d88, perror_object=0xb5f28d70) at ./psi/interp.c:454
#4  0xb4e88579 in gs_main_interpret (minst=0xb56b4608, user_errors=0,
pexit_code=0xb5f28d88, perror_object=0xb5f28d70) at ./psi/imain.c:214
#5  gs_main_run_string_begin (minst=0xb56b4608, user_errors=0,
pexit_code=0xb5f28d88, perror_object=0xb5f28d70) at ./psi/imain.c:500
#6  0xb4e885ea in gs_main_run_string_with_length (minst=0xb56b4608,
str=0xb5159968 .uninstallpagedevice serverdict /.jobsavelevel get 0 eq {/quit}
{/stop} ifelse .systemvar exec, length=94, user_errors=0,
pexit_code=0xb5f28d88, perror_object=0xb5f28d70) at ./psi/imain.c:476
#7  0xb4e8869a in gs_main_run_string (minst=0xb56b4608, str=0xb5159968
.uninstallpagedevice serverdict /.jobsavelevel get 0 eq {/quit} {/stop} ifelse
.systemvar exec, user_errors=0, pexit_code=0xb5f28d88,
perror_object=0xb5f28d70) at ./psi/imain.c:466
#8  0xb4e88782 in gs_main_finit (minst=0xb56b4608, exit_status=0, code=0) at
./psi/imain.c:765
#9  0xb4e88be3 in gs_to_exit_with_code (mem=0xb56b11c8, exit_status=0, code=0)
at ./psi/imain.c:827
#10 0xb4e88c1c in gs_to_exit (mem=0xb56b11c8, exit_status=0) at 
./psi/imain.c:832
#11 0xb4e8c680 in gsapi_exit (lib=0x30b56bb4) at ./psi/iapi.c:262
#12 0xb55b8620 in spectre_gs_cleanup (gs=0xb56b2a18, flag=3) at spectre-gs.c:297
#13 0xb55b866e in spectre_gs_free (gs=0xb56b2a18) at spectre-gs.c:311
#14 0xb55b9709 in spectre_device_render (device=0xb56af950, page=0,
rc=0xb56b2a88, x=0, y=0, width=504, height=504, page_data=0xb5f28f78,
row_length=0xb5f28f74) at spectre-device.c:280
#15 0xb55b9e54 in spectre_page_render (page=0xb56b79b0, rc=0xb56b2a88,
page_data=0xb5f28f78, row_length=0xb5f28f74) at spectre-page.c:164
#16 0xb55b8155 in spectre_document_render_full (document=0xb56af140,
rc=0xb56b2a88, page_data=0xb5f28f78, row_length=0xb5f28f74) at
spectre-document.c:337
#17 0xb55e4c6f in dvi_cairo_draw_ps (dvi=0x82e6168, filename=0xb56b3ad0
/home/emilio/Desktop/exampleReport/someFigure.eps, x=176, y=181,
width=817195956, height=817195956)
at /tmp/buildd/evince-2.26.2/./backend/dvi/cairo-device.c:159
#18 0xb55f3d45 in epsf_special (dvi=0x82e6168, prefix=0xb56b51f0 PSfile,
arg=0xb56b51f8 someFigure.eps) at
/tmp/buildd/evince-2.26.2/./backend/dvi/mdvi-lib/sp-epsf.c:284
#19 0xb55f2fb6 in mdvi_do_special (dvi=0x82e6168, string=0xb56b51f0 PSfile) at
/tmp/buildd/evince-2.26.2/./backend/dvi/mdvi-lib/special.c:208
#20 0xb55e8d0e in special (dvi=0x82e6168, opcode=239) at
/tmp/buildd/evince-2.26.2/./backend/dvi/mdvi-lib/dviread.c:1543
#21 0xb55ea80d in mdvi_dopage (dvi=0x82e6168, pageno=1) at
/tmp/buildd/evince-2.26.2/./backend/dvi/mdvi-lib/dviread.c:1091
#22 0xb55e4aee in mdvi_cairo_device_render (dvi=0x82e6168) at
/tmp/buildd/evince-2.26.2/./backend/dvi/cairo-device.c:346
#23 0xb55e3a8e in dvi_document_render (document=0x83198c0, rc=0x830a140) at
/tmp/buildd/evince-2.26.2/./backend/dvi/dvi-document.c:193
#24 0xb7fb7920 in ev_document_render (document=0x83198c0, rc=0x830a140) at
/tmp/buildd/evince-2.26.2/./libdocument/ev-document.c:257
#25 0xb7f920c7 in ev_job_render_run (job=0x819d2a0) at
/tmp/buildd/evince-2.26.2/./libview/ev-jobs.c:516
#26 0xb7f8f7b1 in ev_job_run (job=0x819d2a0) at
/tmp/buildd/evince-2.26.2/./libview/ev-jobs.c:207
#27 0xb7f92e90 in ev_job_thread (data=0x0) at

Bug#532666: requesting more info

2009-08-04 Thread Bart Martens
Hello,

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=532666
Is this bug still in Adobe Flash Player version 10,0,32,18 ?

Regards,

Bart Martens



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



Bug#535548: requesting more info

2009-08-04 Thread Bart Martens
Hello,

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535548
Is this bug still in Adobe Flash Player 10,0,32,18 ?

Regards,

Bart Martens



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



Bug#532765: Bug#532761: Please include the “olsrd_quagga” plug-in.

2009-08-04 Thread Holger Levsen
Hi Florian,

On Donnerstag, 11. Juni 2009, Florian Forster wrote:
 P. S.: The current package description is missing the “olsrd_bmf” and
“olsrd_txtinfo” plug-ins.

It now reads (not yet uploaded..):

 The following plugins are available:
 .
  * httpinfo  - tiny webserver for information purposes 
  * dyn_gw- dynamically announce uplinks
  * dot_draw  - generates output (over a TCP socket) in the dot format
  * secure- secure OLSR routing with a shared key
  * nameservice   - announce hostnames and dns servers
  * bmf   - basic multicast forwarding
  * quagga- support for quagga routing


Do you have a better description for the quagga plugin?


regards,
Holger


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


Bug#539899: CVE-2009-2409: spoof certificates by using MD2 design flaws

2009-08-04 Thread Giuseppe Iuculano
Package: openssl
Severity: important
Tags: security patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

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

CVE-2009-2409[0]:
| The NSS library before 3.12.3, as used in Firefox; GnuTLS before 2.6.4
| and 2.7.4; OpenSSL 0.9.8 through 0.9.8k; and other products support
| MD2 with X.509 certificates, which might allow remote attackers to
| spoof certificates by using MD2 design flaws to generate a hash
| collision in less than brute-force time.  NOTE: the scope of this
| issue is currently limited because the amount of computation required
| is still large.

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2409
http://security-tracker.debian.net/tracker/CVE-2009-2409
Patch: http://cvs.openssl.org/chngview?cn=18381

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

iEYEARECAAYFAkp4Cc0ACgkQNxpp46476ar5xwCcCZpTP5SD4GYle1w/WBBDJ3v1
PSAAmwU4C+BHnO1HbIgK5m3MKm55D8jO
=9WpU
-END PGP SIGNATURE-



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



Bug#539900: [INTL:eu] shorewall6 debconf templates Basque translation update

2009-08-04 Thread Piarres Beobide
Package: shorewall6
Severity: wishlist
Tags: l10n patch

Hi

Attached shorewall6 debconf templates Basque translation update, please commit 
it.


thx


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

Kernel: Linux 2.6.26-2-686 (SMP w/4 CPU cores)
Locale: LANG=eu_ES.UTF-8, LC_CTYPE=eu_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
# translation of shorewall6-eu.po to Euskara
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Piarres Beobide p...@beobide.net, 2008.
msgid 
msgstr 
Project-Id-Version: shorewall6-eu\n
Report-Msgid-Bugs-To: shorewa...@packages.debian.org\n
POT-Creation-Date: 2009-03-09 01:12+\n
PO-Revision-Date: 2008-05-20 23:26+0200\n
Last-Translator: Piarres Beobide p...@beobide.net\n
Language-Team: Euskara debian-l10n-bas...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n

#. Type: note
#. Description
#: ../shorewall6.templates:2001
#| msgid No automatic restart for Shorewall
msgid No automatic restart for Shorewall6
msgstr Shorewall6 ez da automatikoki berrabiaraziko

#. Type: note
#. Description
#: ../shorewall6.templates:2001
#| msgid 
#| Shorewall will not be restarted automatically after being upgraded, to 
#| prevent changes in configuration files causing network outages.
msgid 
Shorewall6 will not be restarted automatically after being upgraded, to 
prevent changes in configuration files causing network outages.
msgstr 
Shorewall6 ez da automatikoki berrabiaraziko bertsio-berritu ondoren, sare 
isolamenduak sor ditzakeen konfigurazio aldaketak saihesteko.

#. Type: note
#. Description
#: ../shorewall6.templates:2001
#| msgid 
#| You should check Shorewall's configuration files and restart it with 
#| 'invoke-rc.d shorewall6 restart'.
msgid 
You should check Shorewall6's configuration files and restart it with 
'invoke-rc.d shorewall6 restart'.
msgstr 
Shorewall6 konfigurazioa gainbegiratu eta berau 'invoke-rc.d shorewall6 
restart' erabiliaz berrabiarazi beharko zen.

#. Type: boolean
#. Description
#: ../shorewall6.templates:3001
#| msgid Restart Shorewall?
msgid Restart Shorewall6?
msgstr Shorewall6 berrabiarazi?

#. Type: boolean
#. Description
#: ../shorewall6.templates:3001
#| msgid 
#| To avoid the risk of failures and network outages these files should be 
#| checked carefully before the firewall is restarted.
msgid 
To avoid the risk of failures and network outages, configuration files 
should be checked carefully before the firewall is restarted.
msgstr 
Errore eta sare isolamendu arriskua saihesteko konfigurazio fitxategiak 
kontu handiaz egiaztatu beharko lirateke suebakia berrabiarazi aurretik.

#. Type: boolean
#. Description
#: ../shorewall6.templates:3001
#| msgid Please choose whether you want to restart Shorewall immediately.
msgid Please choose whether you want to restart Shorewall6 immediately.
msgstr Mesedez hautatu Shorewall6 orain berrabiarazi nahi duzun ala ez.

#. Type: error
#. Description
#: ../shorewall6.templates:4001
#| msgid Invalid Shorewall configuration detected
msgid Invalid Shorewall6 configuration detected
msgstr Okerreko Shorewall6 konfigurazioa atzeman da

#. Type: error
#. Description
#: ../shorewall6.templates:4001
#| msgid Shorewall is configured to restart on upgrades.
msgid Shorewall6 is configured to restart on upgrades.
msgstr Shorewall6 bertsio-berritzean berrabiarazteko konfiguraturik dago.

#. Type: error
#. Description
#: ../shorewall6.templates:4001
#| msgid 
#| However, the current configuration for Shorewall is invalid and it will 
#| fail to restart. You should fix the program's configuration, then restart 
#| it with 'invoke-rc.d shorewall6 restart'.
msgid 
However, the current configuration for Shorewall6 is invalid and it will 
fail to restart. You should fix the program's configuration, then restart it 
with 'invoke-rc.d shorewall6 restart'.
msgstr 
Hala uneko Shorewall6 konfigurazioa baliogabea da eta huts egingo du 
berrabiarazten bada. Programaren konfigurazioa konpondu beharko duzu eta 
ondoren 'invoke-rc.d shorewall6 restart' bidez berrabiarazi.

#~ msgid 
#~ This release of Shorewall introduces some changes in the configuration 
#~ files - see /usr/share/doc/shorewall6/releasenotes.txt.gz.
#~ msgstr 
#~ Shorewall bertsio honek zenbait aldaketa ditu konfigurazio fitxategietan 
#~ - ikusi /usr/share/doc/shorewall6/releasenotes.txt.gz.


Bug#532765: Bug#532761: Please include the “olsrd_quagga” plug-in.

2009-08-04 Thread Holger Levsen
On Dienstag, 4. August 2009, Holger Levsen wrote:
 It now reads (not yet uploaded..):

  The following plugins are available:
  .
   * httpinfo  - tiny webserver for information purposes
   * dyn_gw- dynamically announce uplinks
   * dot_draw  - generates output (over a TCP socket) in the dot format
   * secure- secure OLSR routing with a shared key
   * nameservice   - announce hostnames and dns servers
   * bmf   - basic multicast forwarding
   * quagga- support for quagga routing
  * txtinfo   - display information about the OSLR node


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


Bug#539901: CVE-2009-2409: spoof certificates by using MD2 design flaws

2009-08-04 Thread Giuseppe Iuculano
Package: gnutls26
Version: 2.4.2-6+lenny1
Severity: important
Tags: security patch lenny

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

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

CVE-2009-2409[0]:
| The NSS library before 3.12.3, as used in Firefox; GnuTLS before 2.6.4
| and 2.7.4; OpenSSL 0.9.8 through 0.9.8k; and other products support
| MD2 with X.509 certificates, which might allow remote attackers to
| spoof certificates by using MD2 design flaws to generate a hash
| collision in less than brute-force time.  NOTE: the scope of this
| issue is currently limited because the amount of computation required
| is still large.

Since 2.6.4 and 2.7.4 MD2 hasn't been allowed by default in a chain, so only
the lenny version is affected.

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2409
http://security-tracker.debian.net/tracker/CVE-2009-2409


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

iEYEARECAAYFAkp4DJMACgkQNxpp46476aremACffxyiPN5YkbSlk2KOxkhEu1lH
kkEAoJYwhbLbk6BnXub0d2mOguNf84b6
=M9fX
-END PGP SIGNATURE-



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



Bug#539903: duplicity: typo (?) in --help output

2009-08-04 Thread Riccardo Stagni
Package: duplicity
Version: 0.5.16-1
Severity: minor

I interrupted a backup, then with collection-status I obtain the
following output:
--
  Warning, found incomplete backup sets, probably left from aborted session
  [...]
  Also found 0 backup sets not part of any chain,
  and 1 incomplete backup set.
  These may be deleted by running duplicity with the --cleanup option.
--

But cleanup is a command, not an option.

ciao
Riccardo


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

Kernel: Linux 2.6.30-1-686 (SMP w/2 CPU cores)
Locale: lang=it...@euro, lc_ctype=it...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages duplicity depends on:
ii  gnupg 1.4.9-4GNU privacy guard - a free PGP rep
ii  libc6 2.9-23 GNU C Library: Shared libraries
ii  librsync1 0.9.7-6rsync remote-delta algorithm libra
ii  python2.5.4-2An interactive high-level object-o
ii  python-central0.6.11 register and build utility for Pyt
ii  python-gnupginterface 0.3.2-9Python interface to GnuPG (GPG)
ii  python-pexpect2.3-1  Python module for automating inter

duplicity recommends no packages.

Versions of packages duplicity suggests:
pn  ncftp none (no description available)
pn  python-boto   none (no description available)

-- no debconf information



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



Bug#539902: grub-pc: Can't use graphical mode

2009-08-04 Thread Florent Fourcot
Package: grub-pc
Version: 1.96+20090725-1
Severity: normal


Hi,

since the new update of grub I can't use the graphical mode with a background 
image.
I think it's a regression with the close of #535026. I'm using the same 
graphical mode (1024x768x8).

Graphical card : Mobility Radeon 9600 M10
Processor : Pentium M

Regards,
Florent Fourcot.

-- Package-specific info:

*** BEGIN /proc/mounts
/dev/hda9 / ext3 rw,noatime,errors=remount-ro,data=ordered 0 0
/dev/hda6 /boot ext2 rw,sync,nosuid,nodev,noexec,noatime,errors=continue 0 0
/dev/hda8 /usr xfs ro,nodev,noatime,noquota 0 0
/dev/hda10 /home xfs rw,nodev,noatime,noquota 0 0
/dev/hda7 /var xfs rw,nosuid,nodev,noatime,noquota 0 0
/dev/hda11 /var/archives ext3 rw,noexec,errors=continue,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/hda
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=2
set root=(hd0,8)
search --no-floppy --fs-uuid --set 25ef40ce-c523-483f-8b13-68aeb53cb8fd
if loadfont /share/grub/ascii.pf2 ; then
  set gfxmode=1024x768
  insmod gfxterm
  insmod vbe
  if terminal_output.gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set root=(hd0,6)
search --no-floppy --fs-uuid --set 69da8140-9b52-4cde-955c-a3a2aa42ebb6
insmod png
if background_image /grub/moreblue-orbit-grub.png ; then
  set color_normal=black/black
  set color_highlight=magenta/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry Debian GNU/Linux, Linux 2.6.29-1-686 {
set root=(hd0,6)
search --no-floppy --fs-uuid --set 69da8140-9b52-4cde-955c-a3a2aa42ebb6
linux   /vmlinuz-2.6.29-1-686 root=/dev/hda9 ro vga=791 noapic 
hpet=force 
initrd  /initrd.img-2.6.29-1-686
}
menuentry Debian GNU/Linux, Linux 2.6.29-1-686 (recovery mode) {
set root=(hd0,6)
search --no-floppy --fs-uuid --set 69da8140-9b52-4cde-955c-a3a2aa42ebb6
linux   /vmlinuz-2.6.29-1-686 root=/dev/hda9 ro single vga=791 noapic 
hpet=force
initrd  /initrd.img-2.6.29-1-686
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
menuentry Une ISO ubuntu pour rire {
  loopback loop (hd0,10)/ubuntu.iso
  linux(loop)/casper/vmlinuz findiso=/ubuntu.iso boot=casper splash quiet 
  initrd   (loop)/casper/initrd.gz
}

### END /etc/grub.d/40_custom ###
*** END /boot/grub/grub.cfg

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

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

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]1.5.27  Debian configuration management sy
ii  grub-common  1.96+20090725-1 GRand Unified Bootloader, version 
ii  libc62.9-12  GNU C Library: Shared libraries
ii  ucf  3.0018  Update Configuration File: preserv

grub-pc recommends no packages.

Versions of packages grub-pc suggests:
ii  desktop-base  5.0.5  common files for the Debian Deskto
pn  genisoimage   none (no description available)
pn  os-prober none (no description available)

-- debconf information:
* grub-pc/linux_cmdline:
* grub-pc/chainload_from_menu.lst: true
* grub-pc/install_devices: /dev/hda



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



Bug#539744: chroot to lenny /target in debootstrap segfaults

2009-08-04 Thread Giacomo A. Catenazzi

Frans Pop wrote:


This oneliner change would fix the issue as well:
+++ b/packages/base-installer/debian/bootstrap-base.postinst
@@ -88,7 +88,7 @@ install_base_system () {
# so make a backup to be restored later
copied_fstab=true
cp /target/etc/fstab /target/etc/fstab.orig


thus this should be a mv


-   echo # UNCONFIGURED FSTAB FOR BASE SYSTEM  /target/etc/fstab
+   echo # UNCONFIGURED FSTAB FOR BASE SYSTEM  /target/etc/fstab
fi

if [ $PROTOCOL = http ]; then

And it even makes more sense than the current code...


ciao
cate



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



Bug#539904: [INTL:eu] strongswan debconf templates Basque translation update

2009-08-04 Thread Piarres Beobide
Package: strongswan
Severity: wishlist
Tags: l10n patch

Hi


Atatched strongswan  debconf templates Basque translation update, please commit 
it.

thx


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

Kernel: Linux 2.6.26-2-686 (SMP w/4 CPU cores)
Locale: LANG=eu_ES.UTF-8, LC_CTYPE=eu_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
# translation of eu.po to Euskara
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Piarres Beobide p...@beobide.net, 2009.
msgid 
msgstr 
Project-Id-Version: eu\n
Report-Msgid-Bugs-To: strongs...@packages.debian.org\n
POT-Creation-Date: 2009-05-25 14:44+0100\n
PO-Revision-Date: 2009-05-21 11:16+0200\n
Last-Translator: Piarres Beobide p...@beobide.net\n
Language-Team: Euskara debian-l10n-bas...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
Language: eu\n
Plural-Forms: nplurals=2; plural=(n != 1);\n
X-Generator: KBabel 1.11.4\n

#. Type: select
#. Choices
#: ../strongswan-starter.templates:2001
msgid earliest
msgstr abioan

#. Type: select
#. Choices
#: ../strongswan-starter.templates:2001
msgid after NFS
msgstr NFS ondoren

#. Type: select
#. Choices
#: ../strongswan-starter.templates:2001
msgid after PCMCIA
msgstr PCMCIA ondoren

#. Type: select
#. Description
#: ../strongswan-starter.templates:2002
msgid When to start strongSwan:
msgstr StrongSwan abiaraztean:

#. Type: select
#. Description
#: ../strongswan-starter.templates:2002
msgid 
StrongSwan starts during system startup so that it can protect filesystems 
that are automatically mounted.
msgstr 
StrongSwan sistema abioan abiarazten da horrela automatikoki muntatzen diren 
fitxategi-sistemak babesteko.

#. Type: select
#. Description
#: ../strongswan-starter.templates:2002
msgid 
 * earliest: if /usr is not mounted through NFS and you don't use a\n
   PCMCIA network card, it is best to start strongSwan as soon as\n
   possible, so that NFS mounts can be secured by IPSec;\n
 * after NFS: recommended when /usr is mounted through NFS and no\n
   PCMCIA network card is used;\n
 * after PCMCIA: recommended if the IPSec connection uses a PCMCIA\n
   network card or if it needs keys to be fetched from a locally running 
DNS\n
   server with DNSSec support.
msgstr 
 * abioan: /usr ez badago NFS bidez muntaturik eta PCMCIA sare txartelik\n
   erabiltzen ez baduzu, hobe da strongSwan ahalik eta azkarren\n
   abiaraztea, horrela NFS muntatzeak IPSec bidez babestu daitezke;\n
 * NFS ondoren: /usr NFS bidez muntaturik dagoenean eta PCMCIA\n
   sare txartelik erabiltzen ez bada gomendagarria;\n
 * PCMCIA ondoren: IPSec konexioak PCMCIA sare txartela bat erabiltzean\n
   edo gakoak DNSSec onartzen duen DNS zerbitzari lkokaletik eskuratu behar 
direnean\n
   gomendagarria.

#. Type: boolean
#. Description
#: ../strongswan-starter.templates:3001
msgid Restart strongSwan now?
msgstr StrongSwan orain berrabiarazi?

#. Type: boolean
#. Description
#: ../strongswan-starter.templates:3001
msgid 
Restarting strongSwan is recommended, because if there is a security fix, it 
will not be applied until the daemon restarts. However, this might close 
existing connections and then bring them back up.
msgstr 
StrongSwan berrabiaraztea gomendagarria da segurtasun konpontze bat badago 
ez bait da ezarriko deabrua berrabiarazi artean. Hala ere, honek martxan 
dauden konexioak itxi eta gero berriz abiaraziko ditu.

#. Type: boolean
#. Description
#: ../strongswan-starter.templates:3001
#| msgid 
#| If you don't restart strongSwan now, you should do so manually at the 
#| first  opportunity.
msgid 
If you don't restart strongSwan now, you should do so manually at the first 
opportunity.
msgstr 
Ez baduzu strongSwan orain berrabiarazten, eskuz egin beharko zenuke ahal 
bezain laster.

#. Type: boolean
#. Description
#: ../strongswan-starter.templates:4001
msgid Start strongSwan's IKEv1 daemon?
msgstr StrongSwan-ren IKEv1 deabrua abiarazi?

#. Type: boolean
#. Description
#: ../strongswan-starter.templates:4001
msgid 
The pluto daemon must be running to support version 1 of the Internet Key 
Exchange protocol.
msgstr 
Pluto deabrua martxan egon behar da Internet gako trukatze (IKE) 
protokoloaren lehen bertsioa onartzeko.

#. Type: boolean
#. Description
#: ../strongswan-starter.templates:5001
msgid Start strongSwan's IKEv2 daemon?
msgstr StrongSwan-ren IKEv2 deabrua abiarazi?

#. Type: boolean
#. Description
#: ../strongswan-starter.templates:5001
msgid 
The charon daemon must be running to support version 2 of the Internet Key 
Exchange protocol.
msgstr 
Charon deabrua martxan egon behar da Internet gako trukatze (IKE) 
protokoloaren lehen bertsioa onartzeko.

#. Type: boolean
#. Description
#: ../strongswan-starter.templates:6001
msgid Create an RSA public/private keypair for this host?
msgstr 

Bug#539905: RFP: libipc-cmd-perl -- Perl module; IPC::Cmd - finding and running system commands made easy

2009-08-04 Thread Galen Charlton
Package: wnpp
Severity: wishlist


* Package name: libipc-cmd-perl
  Version : 0.46
  Upstream Author : Jos Boumans k...@cpan.org
* URL : http://search.cpan.org/~kane/IPC-Cmd-0.46/
* License : Perl
  Programming Lang: Perl
  Description : Perl module; IPC::Cmd - finding and running system commands 
made easy

I request that this module be packaged for users of Perl 5.8 on Debian.  In 
particular,
this module is now a dependency of the Koha open source ILS, which itself is 
(slowly)
being packaged for Debian.

IPC::Cmd is a core module as of Perl 5.10, which is why my request applies to 
earlier
versions of Perl.

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)



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



Bug#539053: python-qt4 - Fails to build with -j

2009-08-04 Thread Jakub Wilk

* Bastian Blank wa...@debian.org, 2009-07-28, 20:08:

python-qt4 fails to build using -jX. It uses debian/tmp for several
parallel executed rules (install-arch-%).
Thanks for your report. Could you justify Severity: serious? While 
support for parallel builds is a nice thing, I believe it is not 
mandated in the Debian Policy.


--
Jakub Wilk



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



Bug#539744: chroot to lenny /target in debootstrap segfaults

2009-08-04 Thread Frans Pop
On Tuesday 04 August 2009, you wrote:
 Frans Pop wrote:
  This oneliner change would fix the issue as well:
  +++ b/packages/base-installer/debian/bootstrap-base.postinst
  @@ -88,7 +88,7 @@ install_base_system () {
  # so make a backup to be restored later
  copied_fstab=true
  cp /target/etc/fstab /target/etc/fstab.orig

 thus this should be a mv

Doesn't make any difference. The next line overwrites it.

 -   echo # UNCONFIGURED FSTAB FOR BASE SYSTEM  
 /target/etc/fstab
 +   echo # UNCONFIGURED FSTAB FOR BASE SYSTEM  
 /target/etc/fstab



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



Bug#539906: [INTL:eu] mythtv-status debconf templates Basque translation

2009-08-04 Thread Piarres Beobide
Package: mythtv-status
Severity: wishlist
Tags: l10n patch

Hi

Attached mythtv-status debconf templates Basque translation, please add it.

thx


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

Kernel: Linux 2.6.26-2-686 (SMP w/4 CPU cores)
Locale: LANG=eu_ES.UTF-8, LC_CTYPE=eu_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR em...@address, YEAR.
#
msgid 
msgstr 
Project-Id-Version: mythtv-status-debconf-eu\n
Report-Msgid-Bugs-To: and...@etc.gen.nz\n
POT-Creation-Date: 2007-12-25 13:20+1300\n
PO-Revision-Date: 2009-08-04 12:41+0200\n
Last-Translator: Piarres Beobide pi+deb...@beobide.net\n
Language-Team: Basque debian-l10n-bas...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../templates:1001
msgid MythTV backend to check:
msgstr Arakatzeko MythTV interfazea:

#. Type: string
#. Description
#: ../templates:1001
msgid 
The MythTV backend to check, you only need to change this if you want to 
check a different host.
msgstr 
Arakatzeko MythTV interfazea, hau beste ostalari batetara konektatu nahi 
baduzu bakarrik aldatu behar duzu.

#. Type: boolean
#. Description
#: ../templates:2001
msgid Update the system MOTD?
msgstr Bertsio-berritu sistema MOTD-a?

#. Type: boolean
#. Description
#: ../templates:2001
msgid 
Whether the Message of the Day should be updated on system boot and on a 
regular basis.
msgstr 
Eguneko mezua sistema abioan edo oinarri erregular batetan 
aldatu behar den. 

#. Type: boolean
#. Description
#: ../templates:2001
msgid 
To adjust how often the MOTD is updated, edit /etc/cron.d/mythtv-status.
msgstr 
MOTD noiz eguneratu behar den doitzeko, /etc/cron.d/mythtv-status editatu.

#. Type: string
#. Description
#: ../templates:3001
msgid Send email status to:
msgstr Bidali egoera posta:

#. Type: string
#. Description
#: ../templates:3001
msgid Status emails can be sent on a daily basis.
msgstr Egoera postak eguneroko oinarrian bidali daitezke

#. Type: string
#. Description
#: ../templates:3001
msgid 
By default an email is only sent if there are alerts.  You must have the 
MythTV Perl API installed for conflict alerts to be generated.
msgstr 
Lehenespenez postak alertak daudenean bakarrik bidaltzen dira. MythTV Perl 
APIa instalaturik izan behar duzu elkar-jotze alertak sortzeko.

#. Type: string
#. Description
#: ../templates:3001
msgid 
To disable set the email address to \none\.  To specify multiple email 
addresses, seperate them with a comma.
msgstr 
Desgaitzeko ezarri eposta helbidea \none\ gisa. Posta helbide anitz 
ezartzeko gakoz bidez bereizi itzazu.


Bug#539754: gs-common: dummy package or not?

2009-08-04 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On Tue, Aug 04, 2009 at 09:12:37AM +0200, Sven Joachim wrote:
On 2009-08-04 00:23 +0200, Jonas Smedegaard wrote:

 On Mon, Aug 03, 2009 at 02:44:22PM +0200, Sven Joachim wrote:
According to its description and content, gs-common is a dummy 
package, but it cannot be removed because ghostscript depends on it:

 Ghostscript packaging was cleaned up prior to Lenny, but many 
 packages still depended on the various transitional packages - some 
 of them versioned, requiring those packages to be kept around.

I understand that and I did not mean to suggest dropping gs-common now, 
but could you please explain why ghostscript *itself* has a versioned 
dependency on gs-common?  That is the sole reason why gs-common is 
still installed on my system.

I seem to recall that it was related to a corner case of ghostscript 
being auto-removed during upgrade. I cannot explain it in more detail, 
because I do not recall the actual details of the workaround being 
applied prior to Lenny release.


Kind regards,

  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iQIcBAEBCgAGBQJKeBHnAAoJECx8MUbBoAEhNuUP/iIjBQBBnGYgHzwqearoH2Vy
qjBAI8WIPunV0D4Qy2jSuUZer0mQ8cUSWmXcpogYXlt2z0vagefl0DFKgpXTVwBi
0jwz9HCxsBwb5Fi4aicPQXXdYNpeTsZX08M+Ahr+6EEouJe612Ut0bfe12w7zHrT
6lBQ3xjlaELS7DteLg2+FCxMkQ/Xbnx3jAuHPNlAxGVnnLgnQdSfULs+3qSxmexb
ZFa+k6yXfYGfe3O4WqN4eeA2YYGS65j2l6q7Yh2m8dXeaAIHV8St30/G3zRNG2S3
u8S/mozTcgmv+FBJlMF2oasSK/aY13PMc1ydiZvoZIDTvrVEP83WQq+qdslKEifx
GJMC2L8y8r7+4KeVUqTC11S0dc38tCOG3TzZCcJZm98jAkhvbiR4Vaf/b7VizCCa
StokRCVgFv7k91/g4HL6wnhLOUqAQoq7o6UbSyRAjwherKWGxALzFCsAaCss5VVl
XQIU40t2Vryn15rGz6hNAHSh1lVKLzu5NzLvsA48/iUMSsA3QNwXgHKTtbr8myVU
9O5XKCXDR0AelbQtHRsjbzg37pqCR5tns9VORmte4WLKwOkxsabSLYRxODIJbah7
UllcQ7D0dSWYRF0E15ou+oLT6sX9sqvkqxrIF7LsJiHPkqhJV+LhhGBsHL5NpJkO
b5oDcicOLWRZMqOl0JHk
=msHT
-END PGP SIGNATURE-



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



Bug#539739: AW: Bug#539739: rsyslog: The marks (-- MARK --) are not always written

2009-08-04 Thread Frédéric Massot
Michael Biebl a écrit :
 Rainer Gerhards wrote:
 The reason is because this is the way it was always done and rsyslog is 
 compatible to the past.
 
 Agreed, closing it as not-a-bug.
 
 There is basically no point in writing mark messages if you have regular 
 syslog
 messages.

Hi,

Thank you for your responses.

If you look at the extract from the log file messages, you see that
there would be a mark to 1h17. But there was none.

I have provided the log file syslog to show that rsyslog running and
that there was no problem to write on the hard disk.

And at 1h17 there were entries in the file syslog and no mark in the
file messages:

Aug  2 01:17:01 yuggoth /USR/SBIN/CRON[17604]: (root) CMD (   cd / 
run-parts --report /etc/cron.hourly)
Aug  2 01:17:03 yuggoth hddtemp[2900]: /dev/sda: MAXTOR STM3320613AS: 39 C
Aug  2 01:17:03 yuggoth hddtemp[2900]: /dev/sdb: MAXTOR STM3320613AS: 44 C
Aug  2 01:17:03 yuggoth hddtemp[2900]: /dev/sdc: MAXTOR STM3320613AS: 39 C
Aug  2 01:17:03 yuggoth hddtemp[2900]: /dev/sdd: Maxtor 6V300F0: 47 C


I have perhaps not been precise enough in my first post, and writing the
marks every 20 minutes unconditionally was a suggestion.

But I think, there would be a mark at 1h17.


Regards.
-- 
==
|  FRÉDÉRIC MASSOT   |
| http://www.juliana-multimedia.com  |
|   mailto:frede...@juliana-multimedia.com   |
===Debian=GNU/Linux===



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



Bug#539739: AW: Bug#539739: rsyslog: The marks (-- MARK --) are not always written

2009-08-04 Thread Michael Biebl
Frédéric Massot wrote:
 Michael Biebl a écrit :
 Rainer Gerhards wrote:
 The reason is because this is the way it was always done and rsyslog is 
 compatible to the past.
 Agreed, closing it as not-a-bug.

 There is basically no point in writing mark messages if you have regular 
 syslog
 messages.
 
 Hi,
 
 Thank you for your responses.
 
 If you look at the extract from the log file messages, you see that
 there would be a mark to 1h17. But there was none.

Right, because there was a regular syslog message in between.
Afaik, the mark messages work this way:
Whenever you receive a regular syslog message (doesn't matter into which log
file they go), the mark counter is reset.
So only if you do not receive any regular syslog messages, you get mark messages
in a regular 20 min intervall.

 I have provided the log file syslog to show that rsyslog running and
 that there was no problem to write on the hard disk.
 
 And at 1h17 there were entries in the file syslog and no mark in the
 file messages:
 
 Aug  2 01:17:01 yuggoth /USR/SBIN/CRON[17604]: (root) CMD (   cd / 
 run-parts --report /etc/cron.hourly)
 Aug  2 01:17:03 yuggoth hddtemp[2900]: /dev/sda: MAXTOR STM3320613AS: 39 C
 Aug  2 01:17:03 yuggoth hddtemp[2900]: /dev/sdb: MAXTOR STM3320613AS: 44 C
 Aug  2 01:17:03 yuggoth hddtemp[2900]: /dev/sdc: MAXTOR STM3320613AS: 39 C
 Aug  2 01:17:03 yuggoth hddtemp[2900]: /dev/sdd: Maxtor 6V300F0: 47 C
 
 
 I have perhaps not been precise enough in my first post, and writing the
 marks every 20 minutes unconditionally was a suggestion.
 
 But I think, there would be a mark at 1h17.

The point of the mark messages is, that in case of a failure you can check if
the syslog daemon was still operational during that time and able to write
messages. As already said, it is no point to write mark messages if you have
regular syslog messages, as this would only be unnecessary noise in the log 
files.

It seems, the only reason why you want such a regular mark message, is to make
your watchdog daemon work.
But maybe this is just the wrong approach.
Why don't you generate a a syslog message yourself and check if it shows up in
the logs within a given timeframe?

Cheers,
Michael


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#539909: dash: test -w builtin behaves differently than /usr/bin/test and bash builtin

2009-08-04 Thread Vagrant Cascadian
Package: dash
Version: 0.5.5.1-2.3
Severity: normal

when using dash's test builtin, it behaves differently than bash's builtin or
/usr/bin/test. i don't know if this is a known dash-ism, proper POSIX behavior,
or otherwise intentional.

on a read-only root filesystem over NFS: in dash, test -w /,  returns true,
in bash, the same returns false. using /usr/bin/test also returns false. 

the mount command seems to list / as rw, although in actuality the NFS server
does not allow writes on the export. i don't know how bash and /usr/bin/test
figure out that it is actually writeable or not, but clearly it's different
than dash's test builtin.

live well,
  vagrant



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



Bug#539907: memtest86+ cannot be launched with GRUB 2

2009-08-04 Thread Avi Rozen
Package: memtest86+
Version: 2.11-3
Severity: important
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


After upgrading GRUB 2 memtest86+ cannot be launched
anymore. GRUB says that the linux16 command should be used 
to boot into memtest86+ instead of the linux command.

I've attached a patch against debian/grub that fixes this
and also fixes bug #522345.

Cheers,
Avi.


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

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

memtest86+ depends on no packages.

memtest86+ recommends no packages.

Versions of packages memtest86+ suggests:
ii  grub-pc [grub]   1.96+20090725-1 GRand Unified Bootloader, version 
pn  hwtools  none  (no description available)
pn  kernel-patch-badram  none  (no description available)
pn  memtest86none  (no description available)
pn  memtesternone  (no description available)
ii  mtools   4.0.10-1Tools for manipulating MSDOS files

- -- no debconf information

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

iEYEARECAAYFAkp4E8AACgkQwK8SobAxNVnHFACfb1P0OdENnKL4mHlmtk2F1FEp
EpAAnjI32UV+sD2wYlhV3jZpQEmEdBMB
=c75n
-END PGP SIGNATURE-
Index: memtest86+-2.11/debian/grub
===
--- memtest86+-2.11.orig/debian/grub	2009-08-04 12:37:21.0 +0300
+++ memtest86+-2.11/debian/grub	2009-08-04 12:41:20.0 +0300
@@ -1,16 +1,16 @@
 #!/bin/sh
 set -e
 
-. /usr/lib/grub/update-grub_lib
+. /usr/lib/grub/grub-mkconfig_lib
 if test -e /boot/memtest86+.bin ; then
   MEMTESTPATH=$( make_system_path_relative_to_its_root /boot/memtest86+.bin )
   echo Found memtest86+ image: $MEMTESTPATH 2
   cat  EOF
 menuentry Memory test (memtest86+) {
-	linux	$MEMTESTPATH
+	linux16	$MEMTESTPATH
 }
 menuentry Memory test (memtest86+, serial console 115200) {
-	linux	$MEMTESTPATH console=ttyS0,115200n8
+	linux16	$MEMTESTPATH console=ttyS0,115200n8
 }
 EOF
 fi


Bug#493879: seahorse: Behaviour fiexed in Squeeze.

2009-08-04 Thread Frank Lin PIAT
Emilio Pozuelo Monfort wrote:
 Frank Lin PIAT wrote:

 This bugy behaviour is fixed in 2.24.1-2 (squeeze).

 Thanks, closing.

 Feel free to close your own bugs if you find they are fixed, for that mail
 -done@ with (optionally) a Version: pseudo header.

Usually, I don't close bugs affecting stable when it is fixed in testing.
I believe that it is up to the maintainer to either submit a
stable-propose-update, or to just close the bug.

Thank you for maintaining this package,

Franklin




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



Bug#539908: partman: libparted says File system alias linux-swap(new) is deprecated

2009-08-04 Thread Frans Pop
Package: partman-base
Version: 132

During an installation I get a number of lines like:
main-menu[756]: (process:5108): [0] ../../libparted/filesys.c:147
   (ped_file_system_type_get): File system alias linux-swap(new) is deprecated

Looks like this will require updates in a number of partman components
(including partman-auto recipes) if we want to be 100% consistent.

Otavio: what is the correct replacement and could you take care of this
update?



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



Bug#539879: chm2pdf: long description no sentence

2009-08-04 Thread Steve Stalcup
Sure thing!

I'll work on improving the descriptions and get a revision uploaded asap.

Thanks for the pointer!
Steve

On Tue, Aug 4, 2009 at 3:37 AM, Gerfried Fuchsrho...@debian.at wrote:
 Package: chm2pdf
 Version: 0.9.1-1.1
 Severity: minor

        Hi!

  It would be nice if the long description of your package could consist
 of full sentences[1], the snippet in the first paragraph is missing its
 subject, Convert chm to PDF files isn't really a full sentence. :)
 Furthermore, the last sentence is missing its fullstop.

  So long, and thanks for your great work nevertheless!
 Rhonda
 [1] 
 http://www.us.debian.org/doc/developers-reference/best-pkging-practices#bpp-pkg-desc



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



Bug#539096: elmerfem: FTBFS with python 2.6

2009-08-04 Thread Adam C Powell IV
Thanks for the patch.  That should actually be part of the
ElmerGUI-config.patch, and I'll make the change when python-2.6 is the
Debian default.

I'm glad to hear that it builds fine with no further changes.

-Adam
-- 
GPG fingerprint: D54D 1AEE B11C CE9B A02B  C5DD 526F 01E8 564E E4B6

Engineering consulting with open source tools
http://www.opennovation.com/


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


  1   2   3   4   5   >