Bug#439389: dependency changes break other packages

2007-08-25 Thread Sune Vuorela
On Friday 24 August 2007, Christoph Pfister wrote:
> Most of the dependencies were turned into "Recommends:" beginning with
> version 1.1.7-2. This renders the package unusable for almost
> (possibly that there's exception; but I can't imagine any) every user
> of the library; except for those people who install the recommended
> packages by default.

A quick quote from policy about Depends:

  The `Depends' field should be used if the depended-on package is
  required for the depending package to provide a significant
  amount of functionality.

(7.2)

I think the set of most used plugins falls into this category. "a significant 
amount of functionality".

I haven't been able to use xine for anything with only the depends installed.

/Sune
-- 
I cannot reset the POP3mail terminale of the forward from Office 5.6, how does 
it work?

From the file menu within Office you either can't click a OpenGL prompt, or 
can't telnet on the clock of the URL on the 47-inch IDE processor.


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


Bug#439447: traceroute-nanog: alternative needed due to traceroute update

2007-08-25 Thread Daniel Kobras
On Sat, Aug 25, 2007 at 09:53:50AM +0200, Daniel Baumann wrote:
> traceroute as of version 2.0.8~rc1-1 is providing a traceroute-nanog
> binary, now using Debian alternatives. traceroute-nanog needs to switch
> as well. Please make sure using a priority higher than 100.

Okay. You need to conflict with traceroute-nanog (<= 6.3.10-3) though.

Regards,

Daniel.



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



Bug#439440: pyg: debian/rules should generate md5sums control file

2007-08-25 Thread Cosimo Alfarano

On 25 Aug 2007, at 7:27, Ben Finney wrote:

The attached patch changes the 'debian/rules' file to generate the
'md5sums' file for this package, and causes the above command to run
cleanly (with no output).


thanks Ben!



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



Bug#438851: [Crm114-general] Unintelligible mailreaver error message

2007-08-25 Thread martin f krafft
also sprach Bill Y <[EMAIL PROTECTED]> [2007.08.24.1635 +0100]:
> Have they cut out some text on you?

Urks. That was my fault. For some reason, the way I do procmail
logging cut out the lines, due to the leading space. This is the
full message:

 ERROR: maillib.crm broke.  Here's the error\: 
ERROR: 
/usr/bin/crm: *WARNING* 
 Tried to fork your minion, but it failed. Your system may have run out of proce
ss slots
I'll try to keep working.
This happened at line 1123 of file /usr/share/crm114/mailreaver.crm

So even though I cannot imagine that the system has run out of
process slots, the problem seems to be not with crm114. Sorry for
the false alarm.

Anyway, is there something crm114 could do, like retry? As it
stands, it just returns UNKNOWN/0, which is not ideal.

-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
"even a stopped clock gives the right time twice a day."
-- orbital


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


Bug#439512: debian-installer: doubled serial console lines in /etc/securetty

2007-08-25 Thread Ferenc Wágner
Package: debian-installer
Severity: minor

Hi,

After serial console netboot Etch installation /etc/securetty ends
like this:

# serial console added by debian-installer
tts/0
ttyS0

However, those entries are already present in the file, at the very top.
It doesn't seem to cause a problem in itself, but can become dangerous
if the administrator removes only one (pair) of the entries and thinks
s/he disabled root login over the serial console.

I think it's better to remove this append from the installer.

Thanks,
Feri.

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


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



Bug#439447: traceroute-nanog: alternative needed due to traceroute update

2007-08-25 Thread Daniel Baumann
Daniel Kobras wrote:
> Okay. You need to conflict with traceroute-nanog (<= 6.3.10-3) though.

jup.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Bug#439384: race condition in Maildir writing

2007-08-25 Thread martin f krafft
also sprach Julien BLACHE <[EMAIL PROTECTED]> [2007.08.24.1843 +0100]:
> Obvious typo.

Updated patch, which also actually includes the code I was testing
with:

--- /tmp/Maildir.py.orig2007-08-25 11:22:45.0 +0100
+++ /usr/share/python-support/offlineimap/offlineimap/folder/Maildir.py 
2007-08-25 11:29:37.0 +0100
@@ -146,7 +146,8 @@
 # Otherwise, save the message in tmp/ and then call savemessageflags()
 # to give it a permanent home.
 tmpdir = os.path.join(self.getfullname(), 'tmp')
-messagename = None
+file = fd = None
+messagename = tmpmessagename = None
 attempts = 0
 while 1:
 if attempts > 15:
@@ -159,19 +160,25 @@
socket.gethostname(),
uid,
md5.new(self.getvisiblename()).hexdigest())
-if os.path.exists(os.path.join(tmpdir, messagename)):
-time.sleep(2)
-attempts += 1
-else:
+tmpmessagename = messagename.split(',')[0]
+try:
+fd = os.open(os.path.join(tmpdir, tmpmessagename),
+os.O_WRONLY + os.O_CREAT + os.O_EXCL)
+file = os.fdopen(fd, 'w')
+ui.debug('maildir', 'savemessage: using temporary name %s' % 
tmpmessagename)
 break
-tmpmessagename = messagename.split(',')[0]
-ui.debug('maildir', 'savemessage: using temporary name %s' % 
tmpmessagename)
-file = open(os.path.join(tmpdir, tmpmessagename), "wt")
+except OSError, e:
+if e.errno == 17:
+time.sleep(2)
+attempts += 1
+continue
+raise
+
 file.write(content)
 
 # Make sure the data hits the disk
 file.flush()
-os.fsync(file.fileno())
+os.fsync(fd)
 
 file.close()
 if rtime != None:

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


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


Bug#439513: gthumb doesn't display EXIF informations for RAW files

2007-08-25 Thread Yves-Alexis Perez
Package: gthumb
Version: 3:2.10.5-1
Severity: wishlist

Hi,

this morning I downloaded some pictures from my camera, some of them
were CR2 raw canon files. I was pleased to see that now, gthumb could
display them correctly (I don't know since which version, but it's
really great). However, gthumb doesn't display EXIF informations from
CR2 files, while exiv2 tool manage to extract them, and they are correct
(and gthumb correctly extract EXIF informations for jpg files).

It'd be nice to have EXIF enabled even for RAW files, now that they are
supported.

Regards and thanks for your time,
--
Yves-Alexis Perez


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

Kernel: Linux 2.6.22-1-powerpc
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 gthumb depends on:
ii  gconf2  2.18.0.1-3   GNOME configuration database syste
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libbonobo2-02.18.0-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.18.0-5 The Bonobo UI library
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1+b2  The Cairo 2D vector graphics libra
ii  libexif12   0.6.16-2 library to parse EXIF files
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libgconf2-4 2.18.0.1-3   GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.0-2 The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented display
ii  libgnomeui-02.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.18.1-3+b1GNOME Virtual File System (runtime
ii  libgphoto2-22.4.0-2  gphoto2 digital camera library
ii  libgphoto2-port02.4.0-2  gphoto2 digital camera port librar
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libiptcdata01.0.2-2  Library to parse IPTC metadata
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.17.5-1 Layout and rendering of internatio
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libtiff43.8.2-7  Tag Image File Format (TIFF) libra
ii  libusb-0.1-42:0.1.12-7   userspace USB programming library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.29.dfsg-1GNOME XML library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  scrollkeeper0.3.14-13A free electronic cataloging syste
ii  shared-mime-info0.22-2   FreeDesktop.org shared MIME databa
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

gthumb recommends no packages.

-- no debconf information


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



Bug#439061: Works with winoption's tray

2007-08-25 Thread Michal Wrobel
Hello,
I've got same problem with gtk apps (Exaile) and QT (kadu, psi, skype). 
It works fine with winoption's tray options like
XMMS_Player.xmms.tray: Exclusive

Greetz,
Michal Wróbel



Bug#363061: [tex-live] texlive license

2007-08-25 Thread Frank Küster
Barbara Beeton <[EMAIL PROTECTED]> wrote:

> On Sat, 18 Aug 2007, Karl Berry wrote:
>
> [...]
>
> I asked Barbara Beeton at the AMS about taking care of the pcatcode
> madness, in hopes we can get a free version shortly.  I'm sure they did
> not intend the current situation.
>
> the current situation was absolutely not
> intended.  the person who now maintains
> amsrefs will change the license information
> for pcatcode to lppl, and the new version
> will be posted as soon as i've been told
> that the change has been made.
>
> the rest of amsrefs will be modified similarly,
> as will all ams-latex files, effective with
> the next regular update, expected (probably)
> sometime in 2008.

Thanks for the news.  Will the 2008 update also contain clarifications
of the amslatex license itself[1], or will that not be sorted out in
time? 

Thanks for your work, 
Frank


[1] as we discussed earlier, the main license text has ambiguous wording
regarding modifications, and there are a couple of files under unclear
licenses. 

-- 
Frank Küster
Debian Developer (teTeX/TeXLive)



Bug#439205: texlive-latex-base: upgrading package fails

2007-08-25 Thread Frank Küster
Bernd Zeimetz <[EMAIL PROTECTED]> wrote:

> Hi,
>>> Setting up texlive-base-bin (2007-13) ...
>>> sed: -e expression #1, char 25: unterminated `s' command
>>> dpkg: error processing texlive-base-bin (--configure):
>>>  subprocess post-installation script returned error exit status 1
>>> 
>>
>> This is strange. I have tested the sed expression even in real life
>> installations several times.
>>
>> What is your shell, dash by chance?
>>
>>   
>
> I'm at the froscon at the moment and can't test it at the machine where
> the error happened, but I'm pretty sure I'm using dash as sh.

I have no time for testing either, but one thing that looks suspicious
to me is that the expression is not quoted at all:

-   sed -i -e s/^$format[[:space:]].*/$modified_line/ $new_cfg
+   sed -i -e "s/^$format[[:space:]].*/$modified_line/" $new_cfg

Second, a '/' in the comment part of $modified line will prematurely end
the expression (that's probably not the problem here).

Bernd, if you come to testing it on your system, editing
/var/lib/dpkg/info/texlive-base-bin.postinst and adding a "set -x" line
at the beginning (and maybe "set +x" after the case statement with the
sed expression) might be helpful.

Regards, Frank
-- 
Frank Küster
Debian Developer (teTeX/TeXLive)



Bug#409684: other behaviour also reasonable?

2007-08-25 Thread Jeremy S Bygott
Dear Julien,

First, please understand that I like this software! I just hoped to make it 1% 
more friendly to use. (For a few people, my scenario could be a big deal.)

> This is the expected behaviour, you'll keep getting the click through
> until XSane saves its .rc file, which it doesn't do when it encounters
> an error while opening the scanner.

If you *like* this behaviour, then we must accept it. Okay.

It is not the only reasonable behaviour, I think.

When the user first accepts the licence (for version n), you could
- create the .sane/xsane directory (if necessary)
- store a minimal .rc file (recording that version number n was accepted)

When user next runs xsane (version n), the licence would be skipped.

Do you dislike this *in theory*? (If it's too much trouble for too little 
reward, I would understand, of course.)

Best regards,

Jeremy

PS: I have read and understood your reasons for the click through (132679). I 
hesitate to suggest anything further on this delicate topic, but...

At the moment, you display the same text twice!

The top part is essentially the GPL no-warranty clause. The scroll-box was for 
the whole GPL (a few years ago) but now it is also essentially just the GPL 
no-warranty clause. 

So, you could change the top part into a short explanation of *why* you 
require the user to accept the GPL no-warranty clause. Mention the lack of 
hardware protection; refer to a file in /usr/share/doc or so.

(Then maybe you can even close #132679 once and for all... ?)



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



Bug#439205: texlive-latex-base: upgrading package fails

2007-08-25 Thread Norbert Preining
On Sam, 25 Aug 2007, Frank Küster wrote:
> - sed -i -e s/^$format[[:space:]].*/$modified_line/ $new_cfg
> + sed -i -e "s/^$format[[:space:]].*/$modified_line/" $new_cfg

Hi Frank,

you did remove the " in change 2578 ... in texlive-base-bin.postinst.pre.

with the log message 
fix the expected :-( syntax typos/thinkos
...

Best wishes

Norbert

---
Dr. Norbert Preining <[EMAIL PROTECTED]>Vienna University of Technology
Debian Developer <[EMAIL PROTECTED]> Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
TIGHARRY (n.)
The accomplice or 'lure' who gets punters to participate in the three
card trick on London streets by winning an improbable amount of money
very easily.
--- Douglas Adams, The Meaning of Liff


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



Bug#438917: mirror submission for debian.dcc.fc.up.pt

2007-08-25 Thread Simon Paillard
Hello,

Thanks for submitting your Debian mirror.
Before we can include it in the list of mirrors, some details must be
fixed :

On Mon, Aug 20, 2007 at 06:06:30PM +, LabCC wrote:
> Submission-Type: new
> Site: debian.dcc.fc.up.pt
> Type: leaf
> Archive-http: /debian/

The local trace file should have the same name as the site name (so here
debian.dcc.fc.up.pt)

> CDImage-http: /debian-cd/

Please respect the same tree as cdimage.debian.org, by putting iso in a
iso-cd or iso-dvd directory and not in a jigdo* directory.
Otherwise the Debian users may have difficulties to find CD images.

> Security-http: /debian-security/
> Mirrors-from: ftp.nl.debian.org
> Archive-architecture: amd64 i386 ia64 powerpc 

Check that again, because
http://debian.dcc.fc.up.pt/debian/dists/unstable/ and for example
http://debian.dcc.fc.up.pt/debian/pool/main/i/iceweasel/ lists many
other architectures.

Please note that if you mirrored many architectures, excluding them
afterwards at the rsync level will not remove them from your mirror.
You have to delete them by hand.

Please use the last anonftpsync script at
http://debian.org/mirrors/anonftpsync that does atomic updates and
correctly excludes architectures-specific files.

> Maintainer: LabCC <[EMAIL PROTECTED]>
> Country: PT Portugal
> Location: Porto, Campo Alegre
> Sponsor: Departamento de Ciência de Computadores da Faculdade de Ciências da 
> Universidade do Porto http://dcc.fc.up.pt

Comments about the available bandwidth, and the frequency update are
welcome.

Don't forget to reply to the bug once these details will be fixed.

Thanks for mirroring Debian and best regards,

-- 
Simon Paillard



Bug#439514: Teaching spam and ham is broken

2007-08-25 Thread Juhapekka Tolvanen

Package: crm114
Version: 20070810-1
Severity: important


If I try to teach my spam and ham to crm-114, I get these errors every
time:

% crm114-learnspam.sh
**
1 / 1

 ERROR: maillib.crm broke.  Here's the error\: 
ERROR: 
/usr/bin/crm: *ERROR* 
 For some reason, I was unable to read-open the file named  :*:cf_filename:
 Sorry, but this program is very sick and probably should be killed off.
This happened at line 717 of file /home/juhtolv/.crm114/mailreaver.crm
(runtime system location: crm_expr_file_io.c(151) function crm_expr_input)
X-CRM114-Version: 20070810-BlameTheSegfault ( TRE 0.7.5 (LGPL) ) MR-E02DBA3A 
X-CRM114-CacheID: sfid-20070825_061756_796681_B3A72D79 
X-CRM114-Notice: Please train this message. 

% crm114-learnnonspam.sh
**
1 / 1

 ERROR: maillib.crm broke.  Here's the error\: 
ERROR: 
/usr/bin/crm: *ERROR* 
 For some reason, I was unable to read-open the file named  :*:cf_filename:
 Sorry, but this program is very sick and probably should be killed off.
This happened at line 717 of file /home/juhtolv/.crm114/mailreaver.crm
(runtime system location: crm_expr_file_io.c(151) function crm_expr_input)
X-CRM114-Version: 20070810-BlameTheSegfault ( TRE 0.7.5 (LGPL) ) MR-E02DBA3A 
X-CRM114-CacheID: sfid-20070825_091824_017815_1A8DBC03 
X-CRM114-Notice: Please train this message. 


Those scripts and my ~/.crm114/mailfilter.cf should be attached.
/home/juhtolv/.crm114/mailreaver.crm is a symlink pointing to
/usr/share/crm114/mailreaver.crm .


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (1100, 'testing'), (990, 'stable'), (500, 
'testing-proposed-updates'), (500, 'proposed-updates'), (101, 'testing'), (99, 
'unstable')
Architecture: i386 (i686)

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

Versions of packages crm114 depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libtre4   0.7.5-1regexp matching library with appro

Versions of packages crm114 recommends:
ii  metamail  2.7-52 implementation of MIME

-- debconf-show failed

-- 
Juhapekka "naula" Tolvanen * http colon slash slash iki dot fi slash juhtolv
"Sou sa, ima mo ore wa mitsukerarenai sonzai no imi ga, dakara motto motto
motto motto motto kono karada ni imi wo kizamitsukeru: 'Tada waratte,
fuminijireba ii.'"   Dir en grey


crm114-learnspam.sh
Description: Bourne shell script


crm114-learnnonspam.sh
Description: Bourne shell script
#  mailfilter.cf  -- Config file for mailfilter, mailreaver, mailtrainer
#  
#You MUST edit the fileds for "Secret Password", "mime decoder", and
#"cache_dupe_command".  Just those THREE things.  
#
# Changes to all other values are optional.
#
#Many of the options here have two or three alternatives; for your
# convenience, we have put all of the reasonable alternatives 
#  on sequential lines.  Uncomment the one you want, and leave the
#   others commented out.  If you leave more than one uncommented, the
#   last one is the one that's used.  Don't do that; it's ugly.
#
#   After you edit this file, don't forget to edit 'rewrites.mfp' 

# ->>>  You MUST set the following correctly! <<<---
#
#If you leave it as "DEFAULT-PASSWORD", you will not be able to 
#access the mail-to-myself commanding system, as "DEFAULT-PASSWORD"
#is specifically _disabled_ as a legal password.  Just pick something, eh?
#
:spw: /DEFAULT_PASSWORD/

# - If you want a verbose startup, turn this on.  Note that this is
#  - intentionally _after_ the password is set, so a verbose startup
#   - will not reveal your password.  
#
# juhtolv: This adds stuff before all headers. Not good.
#:verbose_startup: /SET/
:verbose_startup: //

#
# ->>>  You MUST set the following correctly! <<<---
#
# --- Some mail systems do mime decoding with "mimencode -d" or "-u".
# --- Others (such as Red Hat 8.0) use "mewdecode" .
# --- Yet others (such as Fedora Core 3) use "openssl base64 -d" .
# --- Yet Others (i.e. *BSDs) can use "base64" .
# --- See which one is on your system and use that one- comment
# --- the others out.  If you can't figure out what your base64 mime
# --- decoder is, or don't want mime decoding, set :do_base64: to /no/
# --- but expect a significant accuracy decrease if you do this.
#
#:do_base64: /no/
:do_base64: /yes/
#
#:mime_decoder: /mewdecode/
#:mime_decoder: /mimencode -d/
#:mime_decoder: /mimencode -u/
#:mime_decoder: /base64 -d/
:mime_decoder: /openssl base64 -d/
#:mime_decoder: /normalizemime/


# ->>>  You MUST set the following correctly! <<<---
#
#--- Linux (and Unix) systems use "hardli

Bug#439515: kdelibs4-dev: Missing Replaces on kdelibs4c2a

2007-08-25 Thread Sven Joachim
Package: kdelibs4-dev
Version: 4:3.5.7.dfsg.1-5
Severity: serious

There was an error in today's "aptitude safe-upgrade" (sorry for the
German):

,
| Vorbereiten zum Ersetzen von kdelibs4-dev 4:3.5.7.dfsg.1-4 (durch 
.../kdelibs4-dev_4%3a3.5.7.dfsg.1-
| 5_i386.deb) ...
| Entpacke Ersatz für kdelibs4-dev ...
| dpkg: Fehler beim Bearbeiten von 
/var/cache/apt/archives/kdelibs4-dev_4%3a3.5.7.dfsg.1-5_i386.deb (--unpack):
|  Versuche, »/usr/share/man/man1/kconfig_compiler.1.gz« zu überschreiben, 
welches auch in Paket kdelibs4c2a ist
| dpkg-deb: Unterprozess paste mit Signal (Datenübergabe unterbrochen (broken 
pipe)) getötet
| Vorbereiten zum Ersetzen von kdelibs4c2a 4:3.5.7.dfsg.1-4 (durch 
.../kdelibs4c2a_4%3a3.5.7.dfsg.1-5_i386.deb) ...
| Entpacke Ersatz für kdelibs4c2a ...
| Fehler traten auf beim Bearbeiten von:
|  /var/cache/apt/archives/kdelibs4-dev_4%3a3.5.7.dfsg.1-5_i386.deb
| E: Sub-process /usr/bin/dpkg returned an error code (1)
`

A subsequent "aptitude install kdelibs4-dev" succeeded.  Looks like a
"Replaces: kdelibs4c2a (<= 4:3.5.7.dfsg.1-4)" is missing from the
package.


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

Kernel: Linux 2.6.22.5
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 kdelibs4-dev depends on:
ii  hspell  1.0-3Hebrew spell checker and morpholog
ii  kdelibs4c2a 4:3.5.7.dfsg.1-5 core libraries and binaries for al
ii  libacl1-dev 2.2.42-1 Access control list static librari
ii  libart-2.0-dev  2.3.19-3 Library of functions for 2D graphi
ii  libarts1-dev1.5.7-2  development files for the aRts sou
ii  libasound2-dev  1.0.14a-2ALSA library development files
ii  libaspell-dev   0.60.5-1 Development files for applications
ii  libattr1-dev1:2.4.32-1.2 Extended attribute static librarie
ii  libavahi-client-dev 0.6.21-1 Development files for the Avahi cl
ii  libavahi-qt3-dev0.6.21-1 Development headers for the Avahi 
ii  libbz2-dev  1.0.3-7  high-quality block-sorting file co
ii  libcupsys2-dev  1.3.0-3  Common UNIX Printing System(tm) - 
ii  libgamin-dev [libfam-de 0.1.8-2  Development files for the gamin cl
ii  libidn11-dev1.0-0Development files GNU libidn, impl
ii  libjasper-dev [libjaspe 1.900.1-3Development files for the JasPer J
ii  libkrb5-dev 1.6.dfsg.1-6 Headers and development libraries 
ii  liblualib50-dev 5.0.3-3  Extension library for Lua 5.0: sta
ii  libopenexr-dev  1.2.2-4.4development files for the OpenEXR 
ii  libpcre3-dev7.2-1Perl 5 Compatible Regular Expressi
ii  libqt3-mt-dev   3:3.3.7-7Qt development files (Threaded)
ii  libsasl2-dev2.1.22.dfsg1-14  Development files for SASL authent
ii  libssl-dev  0.9.8e-6 SSL development libraries, header 
ii  libtiff4-dev3.8.2-7  Tag Image File Format library (TIF
ii  libxml2-dev 2.6.29.dfsg-1Development files for the GNOME XM
ii  libxml2-utils   2.6.29.dfsg-1XML utilities
ii  libxslt1-dev1.1.21-2 XSLT processing library - developm

kdelibs4-dev recommends no packages.

-- no debconf information


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



Bug#439516: speex: Inconsistency in preprocessor API

2007-08-25 Thread Mikael Magnusson
Package: speex
Version: 1.2~beta2-2
Severity: important

The preprocessor API has been updated in 1.2beta2, and it seems
buggy to me. Both SPEEX_PREPROCESS_GET_PROB_START and
SPEEX_PREPROCESS_GET_PROB_CONTINUE only returns either 0 or 32767.

I'm including a small test program which results in the following
output which doesn't look correct for version 1.2~beta2-2:

speex 1.1.12-3
--
$ ./speex_preprocess
OK: Prob start 30
OK: Prob continue 7


speex1 1.2~beta2-2
-
./speex_preprocess
ERROR: Prob start 32767
ERROR: Prob continue 32767

/Mikael

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

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

#define DEFAULT_PROB_START 20
#define DEFAULT_PROB_CONTINUE 7

/* 

speex 1.1.12-3
--

$ ./speex_preprocess
OK: Prob start 30
OK: Prob continue 7


speex1 1.2~beta2-2
-

./speex_preprocess
ERROR: Prob start 32767
ERROR: Prob continue 32767

 */

int main()
{
SpeexPreprocessState *st = NULL;
int i;
int len = 1024;
int rate = 8000;

st = speex_preprocess_state_init(len,rate);
i=DEFAULT_PROB_START;
speex_preprocess_ctl(st, SPEEX_PREPROCESS_SET_PROB_START, &i);
i=DEFAULT_PROB_CONTINUE;
speex_preprocess_ctl(st, SPEEX_PREPROCESS_SET_PROB_CONTINUE, &i);

i = -1;
speex_preprocess_ctl(st, SPEEX_PREPROCESS_GET_PROB_START, &i);
fprintf(stderr, "%s: Prob start %d\n",
	(i==DEFAULT_PROB_START)?"OK":"ERROR", i);

i = -1;
speex_preprocess_ctl(st, SPEEX_PREPROCESS_GET_PROB_CONTINUE, &i);
fprintf(stderr, "%s: Prob continue %d\n",
	(i==DEFAULT_PROB_CONTINUE)?"OK":"ERROR", i);

speex_preprocess_state_destroy(st);
return 0;
}


Bug#439517: mpd should start earlier

2007-08-25 Thread kaerast
Package: mpd
Version: 0.13.0-1
Severity: normal

MPD should start earlier on system boot to give packages such as
mpdscribble and lastmp time to connect.  In rc2.d the following startup
scripts are relevent:

S20lastmp
S20lastfmsubmitd
S30mpd
S31mpdscribble

Clearly mpd needs to start before lastmp and lastfmsubmitd, and the time
between mpd starting and mpdscribble starting is often not long enough
to give mpdscribble a chance of connecting.

MPD should therefore be given a much lower value in order to start
earlier.

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

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

Versions of packages mpd depends on:
ii  adduser  3.104   add and remove users and groups
ii  libao2   0.8.8-3 Cross Platform Audio Output Librar
ii  libasound2   1.0.14a-2   ALSA library
ii  libaudiofile00.2.6-7 Open-source version of SGI's audio
ii  libavahi-client3 0.6.21-1Avahi client library
ii  libavahi-common3 0.6.21-1Avahi common library
ii  libc62.6.1-1+b1  GNU C Library: Shared libraries
ii  libfaad0 2.5-4+b1freeware Advanced Audio Decoder - 
ii  libflac8 1.1.4-3+b1  Free Lossless Audio Codec - runtim
ii  libid3tag0   0.15.1b-10  ID3 tag reading library from the M
ii  libjack0 0.103.0-6   JACK Audio Connection Kit (librari
ii  libmad0  0.15.1b-2.1 MPEG audio decoder library
ii  libmikmod2   3.1.11-a-6  A portable sound library
ii  libmpcdec3   1.2.2-1 Musepack (MPC) format library
ii  libogg0  1.1.3-2 Ogg Bitstream Library
ii  libpulse00.9.6-1 PulseAudio client libraries
ii  libshout32.2.2-1 MP3/Ogg Vorbis broadcast streaming
ii  libspeex11.1.12-3The Speex Speech Codec
ii  libtheora0   0.0.0.alpha7.dfsg-2 The Theora Video Compression Codec
ii  libvorbis0a  1.2.0.dfsg-2The Vorbis General Audio Compressi
ii  libvorbisenc21.2.0.dfsg-2The Vorbis General Audio Compressi
ii  libvorbisfile3   1.2.0.dfsg-2The Vorbis General Audio Compressi
ii  zlib1g   1:1.2.3.3.dfsg-5compression library - runtime

mpd recommends no packages.

-- no debconf information



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



Bug#439518: pvmove: No extents available for allocation

2007-08-25 Thread Marc Lehmann
Package: lvm2
Version: 2.02.26-1+b1
Severity: normal


   # pvmove /dev/sdc1:128000-179199 /dev/sdc1:0-51199
 No extents available for allocation

yet those pe's are free and allocatable:

  --- Physical volume ---
  PV Name   /dev/sdc1
  VG Name   vg_cerebro
  PV Size   1.82 TB / not usable 3.78 MB
  Allocatable   yes 
  PE Size (KByte)   4096
  Total PE  476826
  Free PE   128000
  Allocated PE  348826
  PV UUID   s0VNvS-U4li-n4Nq-LEcS-BF7X-2Wel-uT3ALa
   
  --- Physical Segments ---
  Physical extent 0 to 127999:
FREE
  Physical extent 128000 to 179199:
Logical volume  /dev/vg_cerebro/fswd
Logical extents 297626 to 348825
  Physical extent 179200 to 476825:
Logical volume  /dev/vg_cerebro/fswd
Logical extents 0 to 297625

  VG Access read/write
  VG Status resizable
  Total PE  715239
  Alloc PE / Size   587239 / 2.24 TB
  Free  PE / Size   128000 / 500.00 GB

neither do these commands work, but fail with the same error message.

  pvmove /dev/sdc1:128000-179199 /dev/sdc1
  pvmove /dev/sdc1:128000-179199

I successfully moved pe's from this pv to another pv just before, so I
assume it has something to do with pvmove not allocating pes from the
source volume (but according to the docs this is supported).

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

Versions of packages lvm2 depends on:
hi  libc6 2.6-2  GNU C Library: Shared libraries
ii  libdevmapper1.02.12:1.02.20-2The Linux Kernel Device Mapper use
ii  libncurses5   5.6+20070716-1 Shared libraries for terminal hand
ii  libreadline5  5.2-2  GNU readline and history libraries
ii  libselinux1   2.0.15-2   SELinux shared libraries
ii  libsepol1 2.0.3-1Security Enhanced Linux policy lib

lvm2 recommends no packages.

-- debconf information:
  lvm2/kernel:
  lvm2/snapshots:


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



Bug#436703: #436703: /sbin/shutdown fails to properly spindown drive

2007-08-25 Thread Roland Stigge

tag 436703 patch
thanks

Hi,

I'm attaching a patch that fixes it. It basically follows 
http://linux-ata.org/shutdown.html and skips the drive shutdown when the 
respective /sys/block/sdX/device/scsi_disk:*/manage_start_stop exists 
(leaving it for the kernel to do).


After fixing, contact [EMAIL PROTECTED] We still have a chance 
of Debian being the first in the list supporting this new kernel 
"feature". ;)


bye,
  Roland
--- 67_init_hddown.dpatch.orig	2007-08-25 13:22:06.0 +0200
+++ 67_init_hddown.dpatch	2007-08-25 13:22:09.0 +0200
@@ -8,7 +8,15 @@
 @DPATCH@
 --- sysvinit-2.86.ds1/src/hddown.c	2004-06-09 14:47:45.0 +0200
 +++ sysvinit-2.86.ds1-new/src/hddown.c	2006-01-16 18:05:48.0 +0100
-@@ -25,18 +25,17 @@
+@@ -12,6 +12,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #ifdef __linux__
+ 
+@@ -25,18 +26,17 @@
  /*
   *	Find all IDE disks through /proc.
   */
@@ -29,7 +37,7 @@
  		if (strncmp(d->d_name, "hd", 2) != 0)
  			continue;
  		buf[0] = 0;
-@@ -50,21 +49,58 @@
+@@ -50,21 +50,67 @@
  		}
  		fclose(fp);
  		snprintf(buf, sizeof(buf), DEV_BASE "/%s", d->d_name);
@@ -50,14 +58,23 @@
 + */
 +static int find_scsidisks(const char **dev, int maxdev, int *count)
 +{
-+	if (*count < maxdev) dev[(*count)++] = DEV_BASE "/sda";
-+	if (*count < maxdev) dev[(*count)++] = DEV_BASE "/sdb";
-+	if (*count < maxdev) dev[(*count)++] = DEV_BASE "/sdc";
-+	if (*count < maxdev) dev[(*count)++] = DEV_BASE "/sdd";
-+	if (*count < maxdev) dev[(*count)++] = DEV_BASE "/sde";
-+	if (*count < maxdev) dev[(*count)++] = DEV_BASE "/sdf";
-+	if (*count < maxdev) dev[(*count)++] = DEV_BASE "/sdg";
-+	if (*count < maxdev) dev[(*count)++] = DEV_BASE "/sdh";
++#define MAX_SCSI_DISKS 8
++#define DEV_NAME (DEV_BASE "/sdX")
++#define DEV_NAME_SIZE sizeof(DEV_NAME)
++	static char devnames[MAX_SCSI_DISKS][DEV_NAME_SIZE];
++	int i;
++	glob_t gl;
++	char pattern[] =
++		"/sys/block/sdX/device/scsi_disk:*/manage_start_stop";
++
++	for (i = 0; i < MAX_SCSI_DISKS; i++) {
++		memcpy(devnames[i], DEV_NAME, DEV_NAME_SIZE);
++		devnames[i][DEV_NAME_SIZE - 2] = pattern[13] = 'a' + i;
++		if (glob(pattern, 0, NULL, &gl) == 0) /* found */
++			globfree(&gl);
++		else
++		if (*count < maxdev) dev[(*count)++] = devnames[i];
++	}
 +
 +	return 0;
 +}
@@ -94,7 +111,7 @@
  {
  #ifndef WIN_STANDBYNOW1
  #define WIN_STANDBYNOW1 0xE0
-@@ -74,9 +110,8 @@
+@@ -74,9 +120,8 @@
  #endif
  	unsigned char args1[4] = {WIN_STANDBYNOW1,0,0,0};
  	unsigned char args2[4] = {WIN_STANDBYNOW2,0,0,0};
@@ -105,7 +122,7 @@
  		return -1;
  
  	if (ioctl(fd, HDIO_DRIVE_CMD, &args1) &&
-@@ -87,22 +122,37 @@
+@@ -87,22 +132,37 @@
  }
  
  /*


Bug#439519: RFP: openvpn-web-gui -- OpenVPN webinterface with certificate handling for clients

2007-08-25 Thread Daniel Knabl
Package: wnpp
Severity: wishlist


* Package name: openvpn-web-gui
  Version : 0.3.2b
  Upstream Author : Mikhail Levin <[EMAIL PROTECTED]>
* URL : http://sourceforge.net/projects/openvpn-web-gui/
* License : (None Listed)
  Programming Lang: PHP
  Description : OpenVPN webinterface with certificate handling for clients

OpenVPN Web GUI is a Web interface to OpenVPN server. It shows VPN
connections, openvpn/openssl configuration, and provides client certificate
management. Project is being written on PHP 5 with-openssl and Smarty.


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



Bug#409684: other behaviour also reasonable?

2007-08-25 Thread Julien BLACHE
Jeremy S Bygott <[EMAIL PROTECTED]> wrote:

Hi,

>> This is the expected behaviour, you'll keep getting the click through
>> until XSane saves its .rc file, which it doesn't do when it encounters
>> an error while opening the scanner.
>
> If you *like* this behaviour, then we must accept it. Okay.

It's not that I like it, it's just that it's working the way it was
designed/written to work...

> When the user first accepts the licence (for version n), you could
> - create the .sane/xsane directory (if necessary)
> - store a minimal .rc file (recording that version number n was accepted)

There's unfortunately no such thing as a "minimal" rc file, otherwise
I would have gone this way long ago already :|

> Do you dislike this *in theory*? (If it's too much trouble for too little 
> reward, I would understand, of course.)

That's really how it should work, but you'll probably find out that it
won't be easy to achieve, if memory serves me well.

> PS: I have read and understood your reasons for the click through (132679). I 
> hesitate to suggest anything further on this delicate topic, but...

I'm always open to suggestions on this topic as long as the suggestion
isn't "just drop the thing", which goes against the author's will.

> The top part is essentially the GPL no-warranty clause. The scroll-box was 
> for 
> the whole GPL (a few years ago) but now it is also essentially just the GPL 
> no-warranty clause. 

I suspect it's done that way so that the user can't go and tell "oh, I
didn't see the no warranty clause" just because s/he hasn't scrolled
down...

> (Then maybe you can even close #132679 once and for all... ?)

I'd like to close it, but I'd get a new one in no time, over and over
again. As long as it's there, people know that this has been discussed
and can read the discussion and rationale for the current status.

That saves time for everybody :)

JB.

-- 
 Julien BLACHE - Debian & GNU/Linux Developer - <[EMAIL PROTECTED]> 
 
 Public key available on  - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 


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



Bug#439512: debian-installer: doubled serial console lines in /etc/securetty

2007-08-25 Thread Otavio Salvador
Ferenc Wágner <[EMAIL PROTECTED]> writes:

> However, those entries are already present in the file, at the very top.
> It doesn't seem to cause a problem in itself, but can become dangerous
> if the administrator removes only one (pair) of the entries and thinks
> s/he disabled root login over the serial console.
>
> I think it's better to remove this append from the installer.

I see two possible solutions for it. One is to remove the original
ones from login package and let d-i to set it. Other is to use
something line the bellow patch to avoid duplicating it.

I hadn't test it myself but if people has no problems with it, I'll
test it and go with it.

diff --git a/packages/finish-install/finish-install.d/90console b/packages/finish-install/finish-install.d/90console
index 2fd6e2f..fd2a38d 100755
--- a/packages/finish-install/finish-install.d/90console
+++ b/packages/finish-install/finish-install.d/90console
@@ -5,6 +5,14 @@ log() {
 	logger -t finish-install "$@"
 }
 
+avoid_duplication() {
+	if ! grep -q "$1" "$2"; then
+		echo "" >> "$2"
+		echo "# serial console added by debian-installer" >> "$2"
+		echo "$1" >> "$2"
+	fi
+}		
+
 # Since this script is running with debconf, 'tty' does
 # not give reliable answers about what sort of terminal
 # we have.  The stdin of /sbin/debian-installer seems
@@ -39,11 +47,9 @@ case "$console" in
 		/target/etc/event.d/tty1 > /target/etc/event.d/$console
 	fi
 
-	echo "" >> /target/etc/securetty
-	echo "# serial console added by debian-installer" >> /target/etc/securetty
-	echo "$rawconsole" >> /target/etc/securetty
+	avoid_duplication "$rawconsole" /target/etc/securetty
 	if [ -n "$console" ] && [ "$console" != "$rawconsole" ]; then
-		echo "$console" >> /target/etc/securetty
+		avoid_duplication "$console" /target/etc/securetty
 	fi
 	;;
 esac

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://otavio.ossystems.com.br
-
"Microsoft sells you Windows ... Linux gives
 you the whole house."


Bug#438851: [Crm114-general] Unintelligible mailreaver error message

2007-08-25 Thread Bill Y

   From: martin f krafft <[EMAIL PROTECTED]>

   > Have they cut out some text on you?

   Urks. That was my fault. For some reason, the way I do procmail
   logging cut out the lines, due to the leading space. This is the
   full message:

ERROR: maillib.crm broke.  Here's the error\:=20
   ERROR:=20
   /usr/bin/crm: *WARNING*=20
Tried to fork your minion, but it failed. Your system may have run out of =
   proce
   ss slots
   I'll try to keep working.
   This happened at line 1123 of file /usr/share/crm114/mailreaver.crm

   So even though I cannot imagine that the system has run out of
   process slots, the problem seems to be not with crm114. Sorry for
   the false alarm.

   Anyway, is there something crm114 could do, like retry? As it
   stands, it just returns UNKNOWN/0, which is not ideal.

Yes, it's possible to catch it with a TRAP statement and retry.

Point; this is a perfect object example of why crm114 C lib routines should
never VERIFY or ASSERT but rather check and then use *error routines, so
that TRAP can catch problems.

Now, assuming your friends didn't edit mailreaver too heavily, your
fault above is during the creation of the reavercache - the directory
of messages that mailreaver uses for training; that's done by
executing the bash "mkdir" command.  So, it's actually possible
(although strange except in very wierd circumstances) that you actually
did run out of process slots.

Is this on a very heavily loaded mailserver being gang-banged by
a lot of spammers, and launching a CRM114 on each and every incoming
mail?

  - Bill Yerazunis


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



Bug#438618: isync: refers to a non existing mailbox

2007-08-25 Thread Oswald Buddenhagen
On Sat, Aug 18, 2007 at 12:54:07PM +0200, Nicolas Évrard wrote:
> I think my .mbsyncrc file is correct
>
it's not.

> MaildirStore mirror
> Path /home/nicoe/Maildir2/
> 
remove Path and add Inbox ~/Maildir2

an RTFM right away saves the day ...


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



Bug#439520: linux-image-2.6.18-5-686: Unable to connect with VPNC from HOME LAN

2007-08-25 Thread Steinar Bang
Package: linux-image-2.6.18-5-686
Version: 2.6.18.dfsg.1-13etch1
Severity: important

The debian machine functions as a gateway between my home LAN (using a
10.10.10.* private network), and the outside world.  When the gateway
was using sarge and a 2.4 kernel, VPNC from inside clients worked
without a hitch.

When I upgraded to etch, I was no longer able to connect to the work
LAN using vpnc clients in my home LAN.  I am able to connect when
plugging my VPNC client machine on the outside of the debian gateway.

I am also able to connect from the inside using Cisco's VPN client,
using the same protocol (the work VPN gateway is a Cisco box).

When I sniff all NICs on the gateway using Wireshark, I see the
following traffic when connecting with the Cisco client:

1. A 914 bytes ISAKMP package on UDP port 500, with source the client
   machine (with a 10.10.10.* address), and destination the VPN gw at
   the workplace

2. A 588 byes IP package with source my home network's gateway's external
  address, and destination the VPN gw at the work place

3. A 503 bytes ISAKMP package on UDP port 500, with the work VPN gw as
   source and my home network's gateway's external address as the
   destination 

4. A 503 bytes ISAKMP package on UDP port 500, with the work VPN gw as
   source, and the client machine's 10.10.10.* address as the
   destination

When I do the same sniffing on an VPNC attempted connect, all I see,
is: 

1. A 1330 bytes ISAKMP package on UDP port 500, with the client's
   10.10.10.* address as source, and the workplace VPN gw as
   destination 

and there it appearently stops...

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages linux-image-2.6.18-5-686 depends on:
ii  coreutils 5.97-5.3   The GNU core utilities
ii  debconf [debconf-2.0] 1.5.11 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.85h  tools for generating an initramfs
ii  module-init-tools 3.3-pre4-2 tools for managing Linux kernel mo

Versions of packages linux-image-2.6.18-5-686 recommends:
ii  libc6-i686 2.3.6.ds1-13etch2 GNU C Library: Shared libraries [i

-- debconf information:
  linux-image-2.6.18-5-686/postinst/create-kimage-link-2.6.18-5-686: true
  linux-image-2.6.18-5-686/postinst/old-system-map-link-2.6.18-5-686: true
  linux-image-2.6.18-5-686/preinst/elilo-initrd-2.6.18-5-686: true
  linux-image-2.6.18-5-686/postinst/bootloader-test-error-2.6.18-5-686:
  linux-image-2.6.18-5-686/postinst/depmod-error-2.6.18-5-686: false
  linux-image-2.6.18-5-686/preinst/already-running-this-2.6.18-5-686:
  linux-image-2.6.18-5-686/preinst/bootloader-initrd-2.6.18-5-686: true
  linux-image-2.6.18-5-686/postinst/old-dir-initrd-link-2.6.18-5-686: true
  linux-image-2.6.18-5-686/postinst/old-initrd-link-2.6.18-5-686: true
  linux-image-2.6.18-5-686/preinst/failed-to-move-modules-2.6.18-5-686:
  linux-image-2.6.18-5-686/preinst/abort-install-2.6.18-5-686:
  linux-image-2.6.18-5-686/prerm/would-invalidate-boot-loader-2.6.18-5-686: true
  linux-image-2.6.18-5-686/postinst/bootloader-error-2.6.18-5-686:
* linux-image-2.6.18-5-686/preinst/lilo-initrd-2.6.18-5-686: false
  linux-image-2.6.18-5-686/preinst/overwriting-modules-2.6.18-5-686: true
  shared/kernel-image/really-run-bootloader: true
  linux-image-2.6.18-5-686/postinst/depmod-error-initrd-2.6.18-5-686: false
  linux-image-2.6.18-5-686/prerm/removing-running-kernel-2.6.18-5-686: true
  linux-image-2.6.18-5-686/preinst/initrd-2.6.18-5-686:
  linux-image-2.6.18-5-686/preinst/lilo-has-ramdisk:
  linux-image-2.6.18-5-686/postinst/kimage-is-a-directory:
  linux-image-2.6.18-5-686/preinst/abort-overwrite-2.6.18-5-686:


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



Bug#401355: new syncml and new opensync

2007-08-25 Thread A Mennucc
hi

as you probably know, opensync has a syncml plugin; version 0.21
though,  needs libsyncml 0.4.3 to build and run (ABI+API change)
(this, according to  http://www.opensync.org/wiki/opensync-0.21-notes )

What about uploading new packages *syncml4.3* (or 4.4 , if it works)
so that the new opensync can be uploaded as well?

a.

-- 
Andrea Mennucc
 "E' un mondo difficile. Che vita intensa!" (Tonino Carotone)


signature.asc
Description: Digital signature


Bug#439457: rggobi: FTBFS: error: too few arguments to function 'klass->createWithVars'

2007-08-25 Thread Dirk Eddelbuettel

tags 439457 pending
quit

We're waiting for the CRAN archive to provide the matching rggobi for the new
ggobi released this week.  Upstream has it, we just haven't gotten it yet.

Dirk

On 25 August 2007 at 09:55, Lucas Nussbaum wrote:
| Package: rggobi
| version: 2.1.5-2
| Severity: serious
| User: [EMAIL PROTECTED]
| Usertags: qa-ftbfs-20070823 qa-ftbfs
| Justification: FTBFS on i386
| 
| Hi,
| 
| During a rebuild of all packages in sid, your package failed to build on i386.
| 
| Relevant part:
| gcc-4.2 -std=gnu99 -I/usr/share/R/include -I/usr/share/R/include -g 
-DUSE_EXT_PTR=1 -D_R_=1 -I/usr/include/ggobi -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
   -fpic  -g -O2 -c brush.c -o brush.o
| gcc-4.2 -std=gnu99 -I/usr/share/R/include -I/usr/share/R/include -g 
-DUSE_EXT_PTR=1 -D_R_=1 -I/usr/include/ggobi -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
   -fpic  -g -O2 -c colorSchemes.c -o colorSchemes.o
| gcc-4.2 -std=gnu99 -I/usr/share/R/include -I/usr/share/R/include -g 
-DUSE_EXT_PTR=1 -D_R_=1 -I/usr/include/ggobi -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
   -fpic  -g -O2 -c conversion.c -o conversion.o
| gcc-4.2 -std=gnu99 -I/usr/share/R/include -I/usr/share/R/include -g 
-DUSE_EXT_PTR=1 -D_R_=1 -I/usr/include/ggobi -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
   -fpic  -g -O2 -c data.c -o data.o
| gcc-4.2 -std=gnu99 -I/usr/share/R/include -I/usr/share/R/include -g 
-DUSE_EXT_PTR=1 -D_R_=1 -I/usr/include/ggobi -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
   -fpic  -g -O2 -c dataset.c -o dataset.o
| gcc-4.2 -std=gnu99 -I/usr/share/R/include -I/usr/share/R/include -g 
-DUSE_EXT_PTR=1 -D_R_=1 -I/usr/include/ggobi -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12
   -fpic  -g -O2 -c display.c -o display.o
| display.c: In function 'RS_GGOBI_createDisplay':
| display.c:35: warning: passing argument 3 of 'klass->createWithVars' makes 
integer from pointer without a cast
| display.c:35: warning: passing argument 4 of 'klass->createWithVars' from 
incompatible pointer type
| display.c:35: warning: passing argument 5 of 'klass->createWithVars' from 
incompatible pointer type
| display.c:35: error: too few arguments to function 'klass->createWithVars'
| display.c:37: warning: passing argument 2 of 'klass->create' makes integer 
from pointer without a cast
| display.c:37: warning: passing argument 3 of 'klass->create' from 
incompatible pointer type
| display.c:37: warning: passing argument 4 of 'klass->create' from 
incompatible pointer type
| display.c:37: error: too few arguments to function 'klass->create'
| make[1]: *** [display.o] Error 1
| make[1]: Leaving directory `/build/user/rggobi-2.1.5/src'
| chmod: cannot access 
`/build/user/rggobi-2.1.5/debian/r-cran-rggobi/usr/lib/R/site-library/rggobi/libs/*':
 No such file or directory
| ERROR: compilation failed for package 'rggobi'
| ** Removing 
'/build/user/rggobi-2.1.5/debian/r-cran-rggobi/usr/lib/R/site-library/rggobi'
| make: *** [R_any_arch] Error 1
| 
| The full build log is available from
| http://people.debian.org/~lucas/logs/2007/08/23
| 
| About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
| of the Grid'5000 platform, using a clean chroot containing a sid i386
| environment.  Internet was not accessible from the build systems.
| 
| -- 
| | Lucas Nussbaum
| | [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| | jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |
| 

-- 
Three out of two people have difficulties with fractions.


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



Bug#439512: debian-installer: doubled serial console lines in /etc/securetty

2007-08-25 Thread Otavio Salvador
Otavio Salvador <[EMAIL PROTECTED]> writes:

> diff --git a/packages/finish-install/finish-install.d/90console 
> b/packages/finish-install/finish-install.d/90console
> index 2fd6e2f..fd2a38d 100755
> --- a/packages/finish-install/finish-install.d/90console
> +++ b/packages/finish-install/finish-install.d/90console
> @@ -5,6 +5,14 @@ log() {
>   logger -t finish-install "$@"
>  }
>  
> +avoid_duplication() {
> + if ! grep -q "$1" "$2"; then
> + echo "" >> "$2"
> + echo "# serial console added by debian-installer" >> "$2"
> + echo "$1" >> "$2"
> + fi
> +}

In my final version of patch I've used write_console() to be clearer.

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://otavio.ossystems.com.br
-
"Microsoft sells you Windows ... Linux gives
 you the whole house."


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



Bug#439521: tremulous hangs when focus changes to another window

2007-08-25 Thread stan ioan-eugen
Package: tremulous
Version: 1.1.0-4
Severity: important

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

I like playing tremulous and staying online with pidgin, but my system hangs if 
I switch to another window when playinng tremulous.

If I play tremulous and receive a message from pidgin my system will hang. that 
is kind of frustrating. The problem can be reproduced on my system like this: 

1. open tremulous (in window mode so I can see the other windows, but sistem 
hangs when playng in fullscreen mode too).
2. pres the tile key ~ to get the console. this frees the mouse from trmulous.
3. click on any window on screen and i get a frozen desktop image and a 
repeating soun in my speakers.
4. strangely, when i press the power down button the system powers down normaly 
(i think) but the image remains until halt.

Also, Alt+tab is not working.

The problem i noticed here doesn't seem to appear on my friend whos runing 
fedora 6 x86_64.

I can send all the configuration files. ask for what you need.

i hava an ati radeon x700 mobility, using radeon driver for xorg. I have dri 
enabled.

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

Debian Release: lenny/sid
  500 testing www.debian-multimedia.org 
  500 testing security.debian.org 
  500 testing ftp.ro.debian.org 
  500 testing download.tuxfamily.org 
  500 etchdebian.beryl-project.org 

--- Package information. ---
Depends (Version) | Installed
=-+-==
libc6  (>= 2.5-5) | 2.6.1-1+b1
libopenal0a   | 1:0.0.8-6
libsdl1.2debian (>= 1.2.10-1) | 1.2.11-9
tremulous-data   (>= 1.1.0-1) | 1.1.0-2



signature.asc
Description: Aceast fragment din mesaj este semnat digital


Bug#439522: xserver-xorg-video-intel: Not more than 640x680 on i845 (regression)

2007-08-25 Thread Daniel Baumann
Package: xserver-xorg-video-intel
Severity: important

Hi,

xserver-xorg-video-intel fails to display more than 640x680 on Intel
845GL Brookdale-G mainboards with i845 on-board graphic chips, whereas
xserver-xorg-video-i810 did previously work well.

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Bug#439524: rhythmbox: focus problems in gnome-audio-profiles-properties

2007-08-25 Thread Jö Fahlke
Package: rhythmbox
Version: 0.10.1-1+b1
Severity: normal

When started from rhythmbox, gnome-audio-profiles-properties has focus
problems.  When started directly from the command line, these problem
don't occur.

The problem is as follows: When I select to edit one of the audio
profiles in gnome-audio-profiles-properties' main window, the new
window that opens does not receive keyboard or mouse input, even
though the window manager tells me that it has focus.  Clicking
the close button on the titlebar of the new window has no effect.
When I press escape (with apparent focus in the new window) the main
window closes, and from that point on the new window reacts to
keyboard and mouse.

You can start gnome-audio-profiles-properties from rhythmbox by
clicking the "Edit" button in the "Library" tab in the preferences
dialog.

Thanks for your work,
Jö.

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

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages rhythmbox depends on:
ii  dbus1.1.1-3  simple interprocess messaging syst
ii  gconf2  2.18.0.1-3   GNOME configuration database syste
ii  gnome-icon-theme2.18.0-3 GNOME Desktop icon theme
ii  gstreamer0.10-alsa [gst 0.10.14-2GStreamer plugin for ALSA
ii  gstreamer0.10-gnomevfs  0.10.14-2GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins-b 0.10.14-2GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-g 0.10.6-1 GStreamer plugins from the "good" 
ii  gstreamer0.10-plugins-u 0.10.6-1 GStreamer plugins from the "ugly" 
ii  gstreamer0.10-x 0.10.14-2GStreamer plugins for X11 and Pang
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libavahi-client30.6.20-2 Avahi client library
ii  libavahi-common30.6.20-2 Avahi common library
ii  libavahi-glib1  0.6.20-2 Avahi glib integration library
ii  libbonobo2-02.18.0-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.18.0-5 The Bonobo UI library
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.18.0.1-3   GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.12.13-1The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome-media0 2.18.0-2+b1  runtime libraries for the GNOME me
ii  libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented display
ii  libgnomeui-02.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.18.1-2   GNOME Virtual File System (runtime
ii  libgnutls13 1.6.3-1  the GNU TLS library - runtime libr
ii  libgpod20.5.2-2  a library to read and write songs 
ii  libgstreamer-plugins-ba 0.10.14-2GStreamer libraries from the "base
ii  libgstreamer0.10-0  0.10.14-1Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libhal1 0.5.9.1-2Hardware Abstraction Layer - share
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  liblircclient0  0.8.0-12 LIRC client library
ii  libmusicbrainz4c2a  2.1.5-1  Second generation incarnation of t
ii  libnautilus-burn4   2.18.2-1 Nautilus Burn Library - runtime ve
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to a n
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.16.5-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsexy20.1.11-2 collection of additional GTK+ widg
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsoup2.2-8  

Bug#439523: dhclient does not send message via dbus resulting in networkmanager timeout

2007-08-25 Thread Bernd Porr

Package: dhcp-client
Version: 3.0.4-13
Linux bockwurst 2.6.18-4-686 #1 SMP Wed May 9 23:03:12 UTC 2007 i686 
GNU/Linux

Libc Version: 2.3.6.ds1-13etch2
eth1: Firmware determined as Intersil 1.3.6
eth1: Ad-hoc demo mode supported
eth1: IEEE standard IBSS ad-hoc mode supported
eth1: WEP supported, 104-bit key
eth1: Station name "Prism  I"
eth1: ready
eth1: orinoco_pci at :02:05.0

Problem description: the network manager starts dhclient and waits for 
45secs and then gives up (timeout). The dhclient gets a proper IP 
address but this event is not transmitted via dbus to the network 
manager. Log below (solution after log):


-Orig log--
Aug 25 12:22:37 bockwurst NetworkManager:   Activation (eth1) 
Beginning DHCP transaction.
Aug 25 12:22:37 bockwurst NetworkManager:   Activation (eth1) 
Stage 3 of 5 (IP Configure Start) complete.
Aug 25 12:22:37 bockwurst NetworkManager:   DHCP daemon state is 
now 12 (successfully started) for interface eth1
Aug 25 12:22:42 bockwurst dhclient: DHCPDISCOVER on eth1 to 
255.255.255.255 port 67 interval 1

Aug 25 12:22:42 bockwurst dhclient: DHCPOFFER from 192.168.19.1
Aug 25 12:22:42 bockwurst dhclient: DHCPREQUEST on eth1 to 
255.255.255.255 port 67Aug 25 12:22:42 bockwurst dhclient: DHCPACK from 
192.168.19.1
Aug 25 12:22:42 bockwurst dhclient: bound to 192.168.19.117 -- renewal 
in 41115 seconds.

Aug 25 12:22:47 bockwurst kernel: eth1: no IPv6 routers present
Aug 25 12:23:01 bockwurst /USR/SBIN/CRON[27483]: (mail) CMD (  if [ -x 
/usr/lib/exim/exim3 -a -f /etc/exim/exim.conf ]; then 
/usr/lib/exim/exim3 -q ; fi)
Aug 25 12:23:22 bockwurst NetworkManager:   Device 'eth1' DHCP 
transaction took too long (>45s), stopping it.
Aug 25 12:23:22 bockwurst dhclient: There is already a pid file 
/var/run/dhclient.eth1.pid with pid 27465
Aug 25 12:23:22 bockwurst dhclient: killed old client process, removed 
PID file
Aug 25 12:23:22 bockwurst dhclient: DHCPRELEASE on eth1 to 192.168.19.1 
port 67
Aug 25 12:23:23 bockwurst NetworkManager:   Activation (eth1) 
Stage 4 of 5 (IP Configure Timeout) scheduled...
Aug 25 12:23:23 bockwurst NetworkManager:   DHCP daemon state is 
now 14 (normal exit) for interface eth1
Aug 25 12:23:23 bockwurst NetworkManager:   DHCP daemon state is 
now 14 (normal exit) for interface eth1
Aug 25 12:23:23 bockwurst NetworkManager:   Activation (eth1) 
Stage 4 of 5 (IP Configure Timeout) started...
Aug 25 12:23:23 bockwurst NetworkManager:   Activation (eth1) 
failure scheduled...

---
Solution: add the missing dbus message to /etc/dhclient-script:

  if [ -n "${dhc_dbus}" ]; then
/usr/bin/dbus-send \
   --system \
   --dest=com.redhat.dhcp \
   --type=method_call \
   /com/redhat/dhcp/$interface \
   com.redhat.dhcp.set \
   'string:'"`env | /bin/egrep -v '^(PATH|SHLVL|_|PWD|dhc_dbus)\='`";
   if (( ( dhc_dbus & 31 ) == 31 )); then
   exit 0;
   fi;
  fi;

which I've placed directly after the command "make_resolv_conf" in the 
script. Don't know if that the best place but it works. This script has 
been taken from:

http://mail.gnome.org/archives/networkmanager-list/2005-July/msg00038.html

Here's the log output after having added the lines above:

Aug 25 13:10:09 bockwurst NetworkManager:   Retrieved the 
following IP4 configuration from the DHCP daemon:

Aug 25 13:10:09 bockwurst NetworkManager: address 192.168.19.50
Aug 25 13:10:09 bockwurst NetworkManager: netmask 255.255.255.0
Aug 25 13:10:09 bockwurst NetworkManager: broadcast 192.168.19.255
Aug 25 13:10:09 bockwurst NetworkManager: gateway 192.168.19.1
Aug 25 13:10:09 bockwurst NetworkManager: nameserver 192.168.20.5
Aug 25 13:10:09 bockwurst NetworkManager: nameserver 192.168.19.1
Aug 25 13:10:09 bockwurst NetworkManager: domain name 'OFFSHORE'
Aug 25 13:10:09 bockwurst NetworkManager:   Activation (eth1) 
Stage 5 of 5 (IP Configure Commit) scheduled...
Aug 25 13:10:09 bockwurst NetworkManager:   Activation (eth1) 
Stage 4 of 5 (IP Configure Get) complete.
Aug 25 13:10:09 bockwurst NetworkManager:   Activation (eth1) 
Stage 5 of 5 (IP Configure Commit) started...
Aug 25 13:10:09 bockwurst dhclient: bound to 192.168.19.50 -- renewal in 
39236 seconds.
Aug 25 13:10:10 bockwurst NetworkManager:   Activation (eth1) 
successful, device activated.
Aug 25 13:10:10 bockwurst NetworkManager:  [1188043810.550022] 
nm_dbus_signal_filter(): NetworkManagerInfo triggered update of wireless 
network 'offshore3'
Aug 25 13:10:10 bockwurst NetworkManager:  [1188043810.550498] 
nm_dbus_signal_filter(): NetworkManagerInfo triggered update of wireless 
network 'offshore3'
Aug 25 13:10:10 bockwurst NetworkManager:  [1188043810.550897] 
nm_dbus_signal_filter(): NetworkManagerInfo triggered update of wireless 
network 'offshore3'
Aug 25 13:10:10 bockwurst NetworkManager:  [1188043810.551297] 
nm_dbus_signal_filter(): N

Bug#439525: symlink in /usr/lib/lua/5.1/

2007-08-25 Thread Enrico Tassi
Package: libgv-lua
Version: 2.12-4
Severity: normal

--- Please enter the report below this line. ---
Lua is available in debian in two versions, 5.0 and 5.1.

Since your binding is linked with 5.1 I suggest you to put this fact in
the description of the package.

Then, if you 'require "gv"' from lua, it looks for a gv.so that defines
a function luaopen_gv in /usr/lib/lua/5.1/ so I suggest you to put a
symlink here.

Cheers

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

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.it.debian.org 
  500 testing security.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-
libc6 (>= 2.6-1) | 2.6.1-1
libgcc1  (>= 1:4.2-20070516) | 1:4.2.1-4
libgraphviz3 (>= 2.12-4) | 2.12-4
liblua5.1-0  | 5.1.2-3
libstdc++6 (>= 4.2-20070516) | 4.2.1-4


-- 
Enrico Tassi


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



Bug#439210: Display corruption with EXA

2007-08-25 Thread Jos van Wolput

Hi Michel,

There is something strange with this EXA problem. After booting and login the 
screen always looks corrupted
but sometimes it becomes clear after restarting X. This behaviour seems 
unpredictable.
I also started glxgears in a corrupted screen which suddenly  became clear, 
first only the terminal running glxgears
and then the whole screen!
Anyway I now add an Xorg.0.log after a "clear" login.
I compared the "good" and the "bad" logs. The only differences are found in 
some memory addrsesses.

Jos
--
website: http://homepages.onsneteindhoven.nl/~wolput
-
Debian GNU/Linux: the Universal Operating System


X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: Linux Debian (xorg-server 2:1.3.0.0.dfsg-12)
Current Operating System: Linux 5-33-ftth 2.6.22-1-686 #1 SMP Sun Jul 29 14:37:42 UTC 2007 i686
Build Date: 09 August 2007
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Aug 25 10:28:51 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Intel Corporation 82852/855GM Integrated Graphics Device"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "Synaptics Touchpad"
(WW) Including the default font path /usr/share/fonts/X11/misc,/usr/share/fonts/X11/cyrillic,/usr/share/fonts/X11/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi,/usr/share/fonts/X11/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType.
(**) FontPath set to:
	unix/:7100,
	/usr/share/fonts/X11/misc:unscaled,
	/usr/share/fonts/X11/misc:scaled,
	/usr/share/fonts/X11/100dpi:unscaled,
	/usr/share/fonts/X11/75dpi:unscaled,
	/usr/share/fonts/X11/100dpi:scaled,
	/usr/share/fonts/X11/75dpi:scaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/cyrillic,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	/usr/share/fonts/truetype,
	/usr/local/share/fonts,
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/cyrillic,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Extension "Composite" is enabled
(**) Extension "RENDER" is enabled
(**) Extension "DAMAGE" is enabled
(**) Extension "XFIXES" is enabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81e5140
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.3
	X.Org Video Driver: 1.2
	X.Org XInput driver : 0.7
	X.Org Server Extension : 0.3
	X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
	compiled for 1.3.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 1.2
(++) using VT number 9

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,3580 card 1584,9022 rev 02 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 8086,3584 card 1584,9022 rev 02 class 08,80,00 hdr 00
(II) PCI: 00:00:3: chip 8086,3585 card 1584,9022 rev 02 class 08,80,00 hdr 80
(II) PCI: 00:02:0: chip 8086,3582 card 1584,9500 rev 02 class 03,00,00 hdr 80
(II) PCI: 00:02:1: chip 8086,3582 card 1584,9500 rev 02 class 03,80,00 hdr 80
(II) PCI: 00:1d:0: chip 8086,24c2 card 1584,9022 rev 03 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1584,9022 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1584,9022 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1584,9022 rev 03 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card , rev 83 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24cc card , rev 03 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24ca card 1584,9022 rev 03 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 1584,9022 rev 03 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1584,8401 rev 03 class 04,01,00 hdr 00
(II) PCI: 01:03:0: chip 104c,ac50 card c000, rev 02 class 06,07,00 hdr 02
(II) PCI: 01:07:0: chip 8086,4220 card 8086,2702 rev 05 class 02,80,00 hdr 00
(II) PCI: 01:0a:0: chip 104c,8023 card 1584,7000 rev 00 class 0c,00,10 hdr 00
(II) PCI: 01:0c:0: chip 10ec,8139 card 1584,9700 rev 10 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Intel Bridge workaround enabled
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is 

Bug#439522: xserver-xorg-video-intel: Not more than 640x680 on i845 (regression)

2007-08-25 Thread Brice Goglin
Daniel Baumann wrote:
> xserver-xorg-video-intel fails to display more than 640x680 on Intel
> 845GL Brookdale-G mainboards with i845 on-board graphic chips, whereas
> xserver-xorg-video-i810 did previously work well.
>   

Please use the 'reportbug' tool when reporting bugs, it will take care
of including all information we need. As a workaround, please send the
_whole_ output of /usr/share/bug/xserver-xorg/script 3>&1.

What do you mean by "fails to display" ? It refuses the mode? You get a
blank screen? Are other modes available (look at the output of xrandr)?
Did you try to change the mode with something like with xrandr --output
VGA --mode 800x600? Please also send the output of xrandr.

Thanks,
Brice



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



Bug#401355: new syncml and new opensync

2007-08-25 Thread Michael Banck
On Sat, Aug 25, 2007 at 02:26:35PM +0200, A Mennucc wrote:
> hi
> 
> as you probably know, opensync has a syncml plugin; version 0.21
> though,  needs libsyncml 0.4.3 to build and run (ABI+API change)
> (this, according to  http://www.opensync.org/wiki/opensync-0.21-notes )
> 
> What about uploading new packages *syncml4.3* (or 4.4 , if it works)
> so that the new opensync can be uploaded as well?

I'm part of the opensync packaging team, we're currently waiting for a
0.4x release (which is finally considered usable by upstream).

But yeah, I could update libsyncml, however there was talk about ABI
breakage which needs to be investigated first.


Michael


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



Bug#439473: reassigning to gimp

2007-08-25 Thread Bernd Zeimetz
reassign 439473 libgimp2.0-dev
retitle 439473 libgimp2.0-dev: #include  fails with g++
found 439473 2.4.0~rc1-4
thanks

Although I'm not sure if this is a bug in the recent g++ (same issue for
4.2 btw), or in gimp - I'm reassigning it to libgimp2.0-dev. It
definitely stops to build properly after upgrading to the 2.4.0~rc1-4
package.

0 [EMAIL PROTECTED]:/tmp$ cat foo.c
#include 
#include 
#include 

int main() { return 1; }
0 [EMAIL PROTECTED]:/tmp$ gcc -o ../foo foo.c -I/usr/include/CImg -Wall -g -O2
`/usr/bin/gimptool-2.0 --cflags`
/usr/bin/ld: cannot open output file ../foo: Permission denied
collect2: ld returned 1 exit status
1 [EMAIL PROTECTED]:/tmp$
1 [EMAIL PROTECTED]:/tmp$
1 [EMAIL PROTECTED]:/tmp$
1 [EMAIL PROTECTED]:/tmp$
1 [EMAIL PROTECTED]:/tmp$ cat foo.c
#include 
#include 
#include 

int main() { return 1; }
0 [EMAIL PROTECTED]:/tmp$ gcc -o foo foo.c -I/usr/include/CImg -Wall -g -O2
`/usr/bin/gimptool-2.0 --cflags`
0 [EMAIL PROTECTED]:/tmp$ g++ -o foo foo.c -I/usr/include/CImg -Wall -g -O2
`/usr/bin/gimptool-2.0 --cflags`
foo.c:5: error: expected `}' at end of input
1 [EMAIL PROTECTED]:/tmp$ dpkg -s gcc-4.1 | grep Version
Version: 4.1.2-15
0 [EMAIL PROTECTED]:/tmp$ dpkg -s g++-4.1 | grep Version
Version: 4.1.2-15
0 [EMAIL PROTECTED]:/tmp$ dpkg -s libgimp2.0-dev | grep Version
Version: 2.4.0~rc1-4
0 [EMAIL PROTECTED]:/tmp$ 


-- 
Bernd Zeimetz
<[EMAIL PROTECTED]> 



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



Bug#439529: O: dact -- Multi-algorithm compression

2007-08-25 Thread Tommaso Moroni
Package: wnpp
Severity: normal

Since I am retiring from the project, I am orphaning this package.

Regards,
Tommaso Moroni


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



Bug#439532: O: mrename -- A tool for easy and automatic renaming of many files

2007-08-25 Thread Tommaso Moroni
Package: wnpp
Severity: normal

Since I am retiring from the project, I am orphaning this package.

Regards,
Tommaso Moroni


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



Bug#439528: O: contest -- The linux kernel responsiveness benchmark

2007-08-25 Thread Tommaso Moroni
Package: wnpp
Severity: normal

Since I am retiring from the project, I am orphaning this package.

Regards,
Tommaso Moroni


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



Bug#439533: O: opensched -- Tool for project management

2007-08-25 Thread Tommaso Moroni
Package: wnpp
Severity: normal

Since I am retiring from the project, I am orphaning this package.

Regards,
Tommaso Moroni


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



Bug#439534: O: postgresql-autodoc -- utility to create PostrgreSQL database schema overview in HTML, DOT and XML

2007-08-25 Thread Tommaso Moroni
Package: wnpp
Severity: normal

Since I am retiring from the project, I am orphaning this package.

Regards,
Tommaso Moroni


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



Bug#204641: ifupdown: Please include zeroconf support

2007-08-25 Thread Anthony L. Awtrey
Any chance of seeing this patch included? It seems useful to me and I
actually needed this capability in a mapping scheme I've set up.

Tony


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



Bug#439530: O: kguitar -- Stringed instrument tablature editor for KDE

2007-08-25 Thread Tommaso Moroni
Package: wnpp
Severity: normal

Since I am retiring from the project, I am orphaning this package.

Regards,
Tommaso Moroni


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



Bug#439531: O: knights -- A chess interface for the K Desktop Environment

2007-08-25 Thread Tommaso Moroni
Package: wnpp
Severity: normal

Since I am retiring from the project, I am orphaning this package.

Regards,
Tommaso Moroni


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



Bug#439535: git-buildpackage: git-pbuilder should use "$@", not "$*"

2007-08-25 Thread Jari Aalto
Package: git-buildpackage
Version: 0.3.3
Severity: minor

Instead of this:

  pdebuild --debbuildopts "$*"

Use this, for safer command line handling:

  pdebuild --debbuildopts "$@"

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

Kernel: Linux 2.6.22-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US)
Shell: /bin/sh linked to /bin/dash

Versions of packages git-buildpackage depends on:
ii  devscripts   2.10.7  Scripts to make the life of a Debi
ii  git-core 1:1.5.2.4-1 fast, scalable, distributed revisi
ii  python   2.4.4-6 An interactive high-level object-o
ii  python-support   0.6.4   automated rebuilding support for p

git-buildpackage recommends no packages.

-- no debconf information


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



Bug#439536: kde: KDE dependency error

2007-08-25 Thread Chris Thomas

Package: kde
Version: 5:47
Severity: normal

The KDE metapackage declares a "recommends" dependency on
x-window-system-core, but not on xorg. Thus, one can install KDE (using
e.g. apt-get install kde) without installing X, resulting in a system with a
window manager but no X server. KDE should declare a "depends"
dependency on xorg.



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

Versions of packages kde depends on:
ii  kde-amusements  5:47 the K Desktop Environment 
games an
ii  kde-core5:47 the K Desktop Environment 
core mod
ii  kdeaccessibility4:3.5.5-2accessibility packages from 
the of
ii  kdeaddons   4:3.5.5-1add-on plugins and applets 
provide
ii  kdeadmin4:3.5.5-4system administration tools 
from t
ii  kdeartwork  4:3.5.5-1themes, styles and more 
from the o
ii  kdegraphics 4:3.5.5-3etch1   graphics apps from the 
official KD
ii  kdemultimedia   4:3.5.5-2multimedia apps from the 
official
ii  kdenetwork  4:3.5.5-5network-related apps from 
the offi
ii  kdepim  4:3.5.5.dfsg.1-6 Personal Information 
Management ap
ii  kdeutils4:3.5.5-3general purpose utilities 
from the
ii  kdewebdev   4:3.5.5-1web development apps from 
the offi


kde recommends no packages.

-- no debconf information


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



Bug#439537: package "file" doesn't recognize OpenSSH/OpenSSL keys

2007-08-25 Thread Nicolas Collignon
Package: file
Version: 4.17-4
Severity: normal

Program "file" doesn't recognize correctly OpenSSH/OpenSSL public &
private keys :

$ file .ssh/id_*
.ssh/id_dsa: ASCII text
.ssh/id_dsa.pub: ASCII text, with very long lines
.ssh/id_rsa: ASCII text
.ssh/id_rsa.pub: ASCII text, with very long lines

With the attached patch applyed , we now get this :

$ file .ssh/id_*
.ssh/id_dsa: PEM DSA private key
.ssh/id_dsa.pub: OpenSSH DSA public key
.ssh/id_rsa: PEM RSA private key
.ssh/id_rsa.pub: OpenSSH RSA public key

Attached patch targets /etc/magic but may be changed to /usr/share/file/magic.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.18.3

Versions of packages file depends on:
ii  libc6 2.6.1-1GNU C Library: Shared libraries
ii  libmagic1  4.17-4 File type determination library us
3a4,14
> #--
> # OpenSSH / OpenSSL keys/certificates
> # from Nicolas Collignon <[EMAIL PROTECTED]>
> 0	string	SSH\ PRIVATE\ KEY		OpenSSH RSA1 private key
> >28	string	>\0version %s
> 0	string	ssh-rsa\ 			OpenSSH RSA public key
> 0	string	ssh-dss\ 			OpenSSH DSA public key
> 0	string 	-BEGIN\ CERTIFICATE-	PEM certificate
> 0	string 	-BEGIN\ CERTIFICATE\ REQ	PEM certificate request
> 0	string 	-BEGIN\ RSA\ PRIVATE	PEM RSA private key
> 0	string 	-BEGIN\ DSA\ PRIVATE	PEM DSA private key


Bug#439355: libnss-ldapd: the library file should go in /lib not /usr/lib

2007-08-25 Thread Arthur de Jong
On Fri, 2007-08-24 at 08:24 -0400, Simon Raven wrote:
> add --libdir=/lib to the ./configure run in debian/rules and it fixes
> this. applications expect to see libnss_* to be in /lib,
> not /usr/lib . also, this defeats the purpose of the software if /usr
> happens to be mounted from NFS or on a separate local partition, or
> other situations.

Do you have any references or use case for this? When I initially set up
the package I investigated this and found no compelling reason to keep
it in /lib.

Glibc seems to be fine with NSS modules in /usr/lib (since some other
modules do this). If /usr is unavailable (which Glibc also handles fine
it seems) the changes are high that the LDAP server is also not
available (yet) (either /usr isn't mounted yet because of networking or
slapd hasn't started (resides on /usr). The only problem here I can see
is if Glibc does not handle the appearance of a NSS module during the
lifetime of a process (haven't checked this).

Also placing the NSS module in /lib will not get you name resolution any
earlier because nslcd (the connection daemon) is in /usr/sbin and uses
libraries in /usr/lib.

> footnote: also, please see the sed bug in the libnss-ldap package's
> bug reports, seems this package suffers from this bug. this bug makes
> the postinst fail miserably (poor thing, heh), making it fail to
> install.

I assume that you are referring to #375108. I have recently updated the
postinst to be more resilient against the use of funky characters and
have just made some other enhancements to handle any character that
could cause problems with sed.

These fixes will be in the upcoming release.

-- 
-- arthur - [EMAIL PROTECTED] - http://people.debian.org/~adejong --


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


Bug#439538: neverball: Please add a desktop file

2007-08-25 Thread Daniel Baumann
Package: neverball
Severity: wishlist

Hi,

please add a desktop file.

Thanks,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Bug#439473: reassigning to gimp

2007-08-25 Thread Bernd Zeimetz
Sorry for the upper part of the cut& paste - the important part is this one:

> 1 [EMAIL PROTECTED]:/tmp$ cat foo.c
> #include 
> #include 
> #include 
>
> int main() { return 1; }
> 0 [EMAIL PROTECTED]:/tmp$ gcc -o foo foo.c -I/usr/include/CImg -Wall -g -O2
> `/usr/bin/gimptool-2.0 --cflags`
> 0 [EMAIL PROTECTED]:/tmp$ g++ -o foo foo.c -I/usr/include/CImg -Wall -g -O2
> `/usr/bin/gimptool-2.0 --cflags`
> foo.c:5: error: expected `}' at end of input
> 1 [EMAIL PROTECTED]:/tmp$ dpkg -s gcc-4.1 | grep Version
> Version: 4.1.2-15
> 0 [EMAIL PROTECTED]:/tmp$ dpkg -s g++-4.1 | grep Version
> Version: 4.1.2-15
> 0 [EMAIL PROTECTED]:/tmp$ dpkg -s libgimp2.0-dev | grep Version
> Version: 2.4.0~rc1-4
> 0 [EMAIL PROTECTED]:/tmp$ 
>
>
>   


-- 
Bernd Zeimetz
<[EMAIL PROTECTED]> 



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



Bug#439462: potential solutions

2007-08-25 Thread Matt Domsch
Matt T, thanks for pointing this out.

The solution being employed by other distributions is based on udev,
and twofold.

1) include a udev rule to create persistent ethernet device naming.
   The first time a new MAC address is detected, add a rule to a udev
   rule file(e.g. 70-persistent-net-devices.rules) with the new
   entry.  If such exist, then it renames devices based on their MAC
   address to the name specified in the rule.  Udev 013 and higher can
   rename ethernet devices themselves via such rules.

2) include a udev rule and new application I wrote, biosdevname
   (http://linux.dell.com/files/biosdevname) which is called after
   70-persistent-net-devices.rules (so existing persistent names
   remain), but before other net-device-naming rules.  biosdevname
   uses various explicit data from SMBIOS, or heuristics otherwise, to
   name net devices based on what BIOS expects them to be named.

Both are necessary to solve this properly.  For dist-upgrades, you
want to be sure your 70-persistent-net-devices.rules file exists, so
the kernel name given (correct or incorrect from your POV) doesn't
matter - the only thing that matters is what is in the rules file.
Absent the rules file, you want biosdevname invoked via udev rules.
Absent that, fall back to whatever your normal net naming rules would
be, either udev or kernel-provided.

I'm actively working with Fedora/RH and OpenSuSE/SLE to implement the
above strategy.  I would expect Debian and derivatives to do
likewise.  This is being actively discussed on the
[EMAIL PROTECTED] mailing list, the home of udev.

Thanks,
Matt

-- 
Matt Domsch
Linux Technology Strategist, Dell Office of the CTO
linux.dell.com & www.dell.com/linux


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



Bug#439473: reassigning to gimp

2007-08-25 Thread Bernd Zeimetz

and for the funny part - it builds if you add the missing }:

0 [EMAIL PROTECTED]:/tmp$ g++ -o foo foo.c -I/usr/include/CImg -Wall -g -O2
`/usr/bin/gimptool-2.0 --cflags`
0 [EMAIL PROTECTED]:/tmp$ cat foo.c
#include 
#include 
#include 

}
int main() { return 1; }




-- 
Bernd Zeimetz
<[EMAIL PROTECTED]> 



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



Bug#439537: package "file" doesn't recognize OpenSSH/OpenSSL keys

2007-08-25 Thread Daniel Baumann
Nicolas Collignon wrote:
> Package: file
> Version: 4.17-4

note that this will be applied to the sid version as it's a 'cosmetic'
defect.

> With the attached patch applyed , we now get this :
> 
> $ file .ssh/id_*
> .ssh/id_dsa: PEM DSA private key
> .ssh/id_dsa.pub: OpenSSH DSA public key
> .ssh/id_rsa: PEM RSA private key
> .ssh/id_rsa.pub: OpenSSH RSA public key

thanks, updated package is on the way...

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Bug#439539: libsepol1: libsepol doesn't work on arm

2007-08-25 Thread Erik Johansson
Package: libsepol1
Version: 1.14-2
Severity: important

libsepol uses a static unsigned char buffer to read data into when
reading from file (private.h: next_entry). The pointer to this buffer
is returned and is later casted to a uint32_t pointer (module.c:
module_package_read_offsets).

The problem with this is that the pointer is not 4-bytes align
resulting in the address being used to read the first 4 bytes is not
xxxD but xxxC so the 4 bytes read will be a random byte and
then the first three bytes from the file. This means that the magic
number in selinux module files doesn't match and selinux is effectivly
unusable on arm.

The patch below fixes the problem. Please consider releasing an
updated version to etch since selinux is not usable without it.

Thanks,
Erik Johansson

--- private.h~  2006-06-29 20:21:13.0 +0200
+++ private.h   2007-08-25 15:12:14.0 +0200
@@ -36,7 +36,7 @@
 /* Reading from a policy "file". */
 static inline void *next_entry(struct policy_file *fp, size_t bytes)
 {
-   static unsigned char buffer[BUFSIZ];
+   static unsigned char buffer[BUFSIZ] __attribute__ ((aligned));
size_t nread;
 
if (bytes > sizeof buffer)


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: arm (armv5tel)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-5-ixp4xx
Locale: LANG=en_DK.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)

Versions of packages libsepol1 depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries

libsepol1 recommends no packages.

-- no debconf information


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



Bug#439520: linux-image-2.6.18-5-686: Unable to connect with VPNC from HOME LAN

2007-08-25 Thread Bastian Blank
tags 439520 moreinfo
severity 439520 normal
thanks

On Sat, Aug 25, 2007 at 02:28:13PM +0200, Steinar Bang wrote:
> I am also able to connect from the inside using Cisco's VPN client,
> using the same protocol (the work VPN gateway is a Cisco box).

No, it is usualy not the same. The Cisco client defaults to NAT
traversal.

> When I sniff all NICs on the gateway using Wireshark, I see the
> following traffic when connecting with the Cisco client:

You sniffed on the wrong interface, use the external.

> 1. A 914 bytes ISAKMP package on UDP port 500, with source the client
>machine (with a 10.10.10.* address), and destination the VPN gw at
>the workplace

10.10.10.* is not routable, either you missed to describe parts of your
setup (a NAT box) or you have much more problems.

Bastian

-- 
Superior ability breeds superior ambition.
-- Spock, "Space Seed", stardate 3141.9


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



Bug#439522: xserver-xorg-video-intel: Not more than 640x680 on i845 (regression)

2007-08-25 Thread Daniel Baumann
Brice Goglin wrote:
> Please use the 'reportbug' tool when reporting bugs, it will take care
> of including all information we need. As a workaround, please send the
> _whole_ output of /usr/share/bug/xserver-xorg/script 3>&1.

didn't know that. output is attached.

> What do you mean by "fails to display" ? It refuses the mode?

it refuses the mode and, whatever is written in xorg.conf, only displays
640x680.

> Are other modes available (look at the output of xrandr)?
> Did you try to change the mode with something like with xrandr --output
> VGA --mode 800x600? Please also send the output of xrandr.

attached.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/
Contents of /var/lib/x11/X.roster:
xserver-xorg

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

X server symlink status:
lrwxrwxrwx 1 root root 13 2007-08-21 17:14 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1736632 2007-08-09 19:39 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1694 2007-08-25 15:43 /etc/X11/xorg.conf

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

Section "Files"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"ch"
EndSection

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

Section "Device"
	Identifier	"Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
	Driver		"intel"
	Option		"UseFBDev"		"true"
EndSection

Section "Monitor"
	Identifier	"Standardbildschirm"
	Option		"DPMS"
	HorizSync	31-61
	VertRefresh	56-75
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
	Monitor		"Standardbildschirm"
	DefaultDepth	16
	SubSection "Display"
		Modes		"1024x768"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 37673 2007-08-25 14:46 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 39647 2007-08-25 15:43 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: Linux Debian (xorg-server 2:1.3.0.0.dfsg-12)
Current Operating System: Linux debian 2.6.21-2-686 #1 SMP Wed Jul 11 03:53:02 UTC 2007 i686
Build Date: 09 August 2007
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Aug 25 15:43:38 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Standardbildschirm"
(**) |   |-->Device "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
	Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
	Entry deleted from font path.
(==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(WW) Open ACPI failed (/var/run/

Bug#424176: Updated version in Kanotix

2007-08-25 Thread Jan Luebbe
Joerg Schirottke <[EMAIL PROTECTED]> has built an updated package for
Kanotix:

http://kanotix.com/files/thorhammer/updates/em8300/



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



Bug#439540: xterm locks up when I run who -a

2007-08-25 Thread Justin Piszcz

Package: xterm
Version: 229-1

Running: Debian Testing
Kernel: 2.6.22

Running who -a freezes the terminal window, see below:

ca   + pts/18   2007-08-18 18:42 00:036240 (:1.0)
   pts/19   2007-08-25 09:59  6244 id=p19   term=0 
exit=2
ca   + pts/20   2007-08-18 18:42  old 6248 (:1.0)
ca   + pts/21   2007-08-18 18:42  old 6252 (:1.0)
bob  + pts/23   2007-08-03 13:46  old 3107 (xx)
bob  + pts/24   2007-08-25 10:07   .  1717 (xxx.)
   l4:0 2007-08-10 19:32 0 id=:Ô
   ^ it stops
 printing here

Running the same command with rxvt works fine.

Justin.

Bug#439539: Upstream fix

2007-08-25 Thread Eric Paris
Upstream found a very similar report in the last couple weeks.  I like
this fix a lot than the one already committed upstream and I'll probably
poke to have this one taken and the old one reverted.  I just don't know
if __attribute__ ((aligned)) is portable enough compared to just putting
the buffer on the stack

http://marc.info/?l=selinux&m=118771670724456&w=2

-Eric



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



Bug#439496: unmerge

2007-08-25 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

unmerge 439496
reassign 439496 swing-layout
thanks

Hi,

how is "unzip not found" (so a missing build-dep on unzip) related to
the Java errors in gjdoc?

Regards,

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

iD8DBQFG0Dun+FmQsCSK63MRAgiEAJwPSxs7mvlwdzufLqntNqYbfcBx4gCeOaQs
flhtGJlMCtcYLJ2aS/lduM4=
=kghN
-END PGP SIGNATURE-


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



Bug#439541: Can't install bc, error code 1

2007-08-25 Thread Patrick Matthäi

Package: bc
Version: 1.06.94-1
Severity: serious


Hello,

the newest bc version isn't installable on my 32 bit Debian Sid.

Preparing to replace bc 1.06-20 (using 
.../archives/bc_1.06.94-1_i386.deb) ...

Unpacking replacement bc ...
dpkg: error processing /var/cache/apt/archives/bc_1.06.94-1_i386.deb 
(--unpack):
failed to install updated files list file for package bc: Operation not 
permitted

Errors were encountered while processing:
/var/cache/apt/archives/bc_1.06.94-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


Regards,
   Patrick Matthäi



Bug#439542: Renders only a couple characters per page in InDesign CS generated PDFs

2007-08-25 Thread EspeonEefi
Package: evince
Version: 0.8.3-1
Severity: normal

Evince renders just a couple elements and/or characters per page, 
usually those in the top left corner, for all of the PDFs of the issues 
of The Tech generated with InDesign CS. You can test this with all of 
the PDF links from http://www-tech.mit.edu/V126/ and the PDF links from 
http://www-tech.mit.edu/V125/ from issue 29 (July 6, 2005) and later.

All of these PDFs were generated with Adobe InDesign CS on a PowerPC OS 
X machine. All of them were also postprocessed a bit by Adobe Acrobat, 
either 6 or 7, also on PowerPC OS X. I gave give you more details about 
their generation if that will help.

Note that Xpdf seems to render them just fine.

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

Kernel: Linux 2.6.22-1-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 evince depends on:
ii  gconf2  2.18.0.1-3   GNOME configuration database syste
ii  gnome-icon-theme2.18.0-3 GNOME Desktop icon theme
ii  gs-esp [gs] 8.15.3.dfsg.1-1  The Ghostscript PostScript interpr
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libbonobo2-02.18.0-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.18.0-5 The Bonobo UI library
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libdjvulibre15  3.5.19-3 Runtime support for the DjVu image
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.18.0.1-3   GNOME configuration database syste
ii  libglade2-0 1:2.6.2-1library to load .glade files at ru
ii  libglib2.0-02.14.0-2 The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented display
ii  libgnomeui-02.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.18.1-3+b1GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libkpathsea42007-13  TeX Live: path search library for 
ii  libnautilus-extension1  2.18.3-3 libraries for nautilus components 
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.16.5-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpoppler-glib10.5.4-6.1PDF rendering library (GLib-based 
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.1-4  The GNU Standard C++ Library v3
ii  libtiff43.8.2-7  Tag Image File Format (TIFF) libra
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.29.dfsg-1GNOME XML library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

evince recommends no packages.

-- no debconf information


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



Bug#439543: (Без темы)

2007-08-25 Thread Tsendrovsky Vladislav
Package: linux-kernel-headers
Version: 2.6.18-7

Kernel 2.6.18 for 486
when i compiled this file (module.c)

#include 
#include 

int init_module()
{
  return 0;
}

void cleanup_module()
{
}

gcc -Wall -DLINUX -D__KERNEL__ -DMODULE -c module.c

I had very many compilation errors from module.h and files included in module.h 
and kernel.h:



gcc -Wall -DLINUX -D__KERNEL__ -DMODULE -c module.c
In file included from /usr/include/asm-generic/bitops/fls64.h:5,
 from /usr/include/asm-i486/bitops.h:408,
 from /usr/include/asm/bitops.h:8,
 from /usr/include/linux/bitops.h:9,
 from /usr/include/linux/kernel.h:15,
 from module.c:1:
/usr/include/asm-generic/bitops/fls.h:13: error: redefinition of flsтАЩ
/usr/include/asm-i486/bitops.h:394: error: previous definition of тАШflsтАЩ was 
here
In file included from module.c:1:
/usr/include/linux/kernel.h:114: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/linux/kernel.h:115: error: format string argument not a string type
/usr/include/linux/kernel.h:116: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/linux/kernel.h:118: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/linux/kernel.h:119: error: format string argument not a string type
/usr/include/linux/kernel.h:120: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
In file included from /usr/include/asm/string.h:8,
 from /usr/include/linux/string.h:21,
 from /usr/include/linux/bitmap.h:8,
 from /usr/include/linux/cpumask.h:86,
 from /usr/include/asm-i486/processor.h:22,
 from /usr/include/asm/processor.h:8,
 from /usr/include/asm-i486/thread_info.h:16,
 from /usr/include/asm/thread_info.h:8,
 from /usr/include/linux/thread_info.h:21,
 from /usr/include/linux/preempt.h:9,
 from /usr/include/linux/spinlock.h:56,
 from /usr/include/linux/capability.h:45,
 from /usr/include/linux/sched.h:44,
 from /usr/include/linux/module.h:9,
 from module.c:2:
/usr/include/asm-i486/string.h:43: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/asm-i486/string.h: In function тАШstrncpyтАЩ:
/usr/include/asm-i486/string.h:57: error: тАШcountтАЩ undeclared (first use in 
this function)
/usr/include/asm-i486/string.h:57: error: (Each undeclared identifier is 
reported only once
/usr/include/asm-i486/string.h:57: error: for each function it appears in.)
/usr/include/asm-i486/string.h: At top level:
/usr/include/asm-i486/string.h:79: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/asm-i486/string.h: In function тАШstrncatтАЩ:
/usr/include/asm-i486/string.h:96: error: тАШcountтАЩ undeclared (first use in 
this function)
/usr/include/asm-i486/string.h: At top level:
/usr/include/asm-i486/string.h:124: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/asm-i486/string.h: In function тАШstrncmpтАЩ:
/usr/include/asm-i486/string.h:142: error: тАШcountтАЩ undeclared (first use in 
this function)
/usr/include/asm-i486/string.h: At top level:
/usr/include/asm-i486/string.h:188: error: expected тАШ=тАЩ, тАШ,тАЩ, тАШ;тАЩ, 
тАШasmтАЩ or тАШ__attribute__тАЩ before тАШstrlenтАЩ
/usr/include/asm-i486/string.h:203: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/asm-i486/string.h: In function тАШ__memcpyтАЩ:
/usr/include/asm-i486/string.h:216: error: тАШnтАЩ undeclared (first use in 
this function)
/usr/include/asm-i486/string.h: At top level:
/usr/include/asm-i486/string.h:225: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/asm-i486/string.h: In function тАШ__constant_memcpyтАЩ:
/usr/include/asm-i486/string.h:228: error: тАШnтАЩ undeclared (first use in 
this function)
/usr/include/asm-i486/string.h: At top level:
/usr/include/asm-i486/string.h:326: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/asm-i486/string.h:331: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/asm-i486/string.h: In function тАШmemchrтАЩ:
/usr/include/asm-i486/string.h:335: error: тАШcountтАЩ undeclared (first use in 
this function)
/usr/include/asm-i486/string.h: At top level:
/usr/include/asm-i486/string.h:349: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/usr/include/asm-i486/string.h: In function тАШ__memset_genericтАЩ:
/usr/include/asm-i486/string.h:356: error: тАШcountтАЩ undeclared (first use in 
this function)
/usr/include/asm-i486/string.h: At top level:
/usr/include/asm-i486/string.h:369: error: expected declaration specifiers or 
тАШ...тАЩ before тАШsize_tтАЩ
/u

Bug#439525: symlink in /usr/lib/lua/5.1/

2007-08-25 Thread Cyril Brulebois
Enrico Tassi <[EMAIL PROTECTED]> (25/08/2007):
> Lua is available in debian in two versions, 5.0 and 5.1.

Yup, I'm aware of that.

> Since your binding is linked with 5.1 I suggest you to put this fact
> in the description of the package.

Actually, I was hoping to be able to build bindings against both
versions, so as to limit the number of binary packages.

> Then, if you 'require "gv"' from lua, it looks for a gv.so that
> defines a function luaopen_gv in /usr/lib/lua/5.1/ so I suggest you to
> put a symlink here.

Or I can move the .so there, and see whether that helps. Thanks for your
input, I'll dig into it rather soonish.

Cheers,

-- 
Cyril Brulebois


pgpc59MiTIy8K.pgp
Description: PGP signature


Bug#439408: (no subject)

2007-08-25 Thread Patryk Cisek
On Friday 24 August 2007 22:38:19 Arnt Karlsen wrote:
> > ..now, kadu users appear to lose their contact lists between sessions
> > or instances, the info is saved to:
> > ~/.kadu/kadu.conf.xml.backup.2007.08.18.21.32.02 etc timestamps, but
> > these backups are not accessible to kadu, I hear.
Kadu produces ~/.kadu/kadu.conf.xml.backup.whatever on segfaults, so some bug 
causes it to crash on your machine. When it happens you can just 
copy /kadu.conf.xml.backup.whatever to ~/.kadu/kadu.conf, but It would be 
much better if you could recompile Kadu with --enable-debug passed to 
configure script, try to reproduce the bug and mail the backtrace to me, so I 
can figure out what happend. 

Steps you would have to take:
1) Install all packages needed to compile Kadu (as root):
apt-get build-dep kadu

2) Fetch the sources:
apt-get source kadu

3) Unpack it:
dpkg-source -x kadu_0.5.0-4.dsc

4) Unpack upstream's kadu tarball:
tar xfj kadu-0.5.0/kadu-0.5.0.tar.bz2

5) Compile and install:
cd kadu
./configure --enable-debug --with-existing-libgadu --prefix=~/kadu 
make
make install

6) try it out:
~/kadu/bin/kadu

When it segfaults just mail the backtrace to me (by copy-pasting from the 
console output). Without it I can't figure out what causes these segfaults.

-- 
Patryk Cisek


pgp5AYSxPtSpO.pgp
Description: PGP signature


Bug#439541: Can't install bc, error code 1

2007-08-25 Thread John Hasler
> the newest bc version isn't installable on my 32 bit Debian Sid.

It installs ok on my 32 bit Sid, both de novo and as an upgrade.  It also
passes piuparts.
-- 
John Hasler 
[EMAIL PROTECTED]
Elmwood, WI USA


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



Bug#439544: bsfilter: Please remove Recommends: on libdb3-ruby1.8 | libdb2-ruby1.8

2007-08-25 Thread Luis Rodrigo Gallardo Cruz
Package: bsfilter
Version: 1:1.0.15-1
Severity: normal

libdb2-ruby1.8 has been removed from the archive. libdb3-ruby1.8 has
not, but libdb3 has, making libdb3-ruby1.8 uninstallable, and likely
to be removed soon.

Please remove those useless recommends.


signature.asc
Description: Digital signature


Bug#439205: texlive-latex-base: upgrading package fails

2007-08-25 Thread Frank Küster
Norbert Preining <[EMAIL PROTECTED]> wrote:

> On Sam, 25 Aug 2007, Frank Küster wrote:
>> -sed -i -e s/^$format[[:space:]].*/$modified_line/ $new_cfg
>> +sed -i -e "s/^$format[[:space:]].*/$modified_line/" $new_cfg
>
> Hi Frank,
>
> you did remove the " in change 2578 ... in texlive-base-bin.postinst.pre.
>
> with the log message 
>   fix the expected :-( syntax typos/thinkos

I see.  However, I don't think the quotes where the typo/thinko, that
was format vs. $format.  I guess I removed the quotes for testing
purposes, but we should add them again.

Regards, Frank

-- 
Frank Küster
Debian Developer (teTeX/TeXLive)



Bug#439545: aswiki: Please upgrade Recommends: on libdb3-ruby1.8

2007-08-25 Thread Luis Rodrigo Gallardo Cruz
Package: aswiki
Version: 1.0.4-4
Severity: normal

libdb3 has been removed from the archive, making libdb3-ruby1.8
uninstalable and likely to be removed soon. Please upgrade the
recommendation to a more uptodate version of the db library, such as
libdb4.2-ruby1.8 or libdb4.3-ruby1.8

signature.asc
Description: Digital signature


Bug#439523: correct version: 2.0pl5-11

2007-08-25 Thread Bernd Porr
Sorry. I did a query about the version 3 accidently. I'm running the 
version 2 of the dhclient.


bockwurst:/home/bp1# dpkg-query -W dhcp-client
dhcp-client 2.0pl5-11
bockwurst:/home/bp1#

/Bernd
--
www:http://www.berndporr.me.uk/
http://www.linux-usb-daq.co.uk/
Mobile: +44 (0)7840 340069
Work:   +44 (0)141 330 5237
University of Glasgow
Department of Electronics & Electrical Engineering
Room 519, Rankine Building, Oakfield Avenue,
Glasgow, G12 8LT


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



Bug#439205: texlive-latex-base: upgrading package fails

2007-08-25 Thread Norbert Preining
On Sam, 25 Aug 2007, Frank Küster wrote:
> was format vs. $format.  I guess I removed the quotes for testing
> purposes, but we should add them again.

Already done in the depot.

Best wishes

Norbert

---
Dr. Norbert Preining <[EMAIL PROTECTED]>Vienna University of Technology
Debian Developer <[EMAIL PROTECTED]> Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
UTTOXETER (n.)
A small but immensely complex mechanical device which is essentially
the 'brain' of a modern coffee vending machine, and which enables the
machine to take its own decisions.
--- Douglas Adams, The Meaning of Liff


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



Bug#424923: Debian bug followup (Re: bug 424923)

2007-08-25 Thread Sven Arvidsson
On Fri, 2007-08-24 at 21:21 -0400, A. Costa wrote:
> When the 'abiword' file is missing, 'Desktop/SpaceMonger.exe' starts OK.
> When the 'abiword' file is present, 'Desktop/SpaceMonger.exe' fails as
> per Bug#424923.  

Great, I can reproduce this behaviour myself now!

> The file is attached, it might be worth pointing out the garbage
> characters on line #4, and line #15 looks guilty...
> 
>   % nl -b a ~/.local/share/applications/abiword-usercustom.desktop | grep 
> '[^1]4\|15'
>  4  Name[ja]=AbiWord 
> 15  MimeType=application/x-executable;

Yes, as you pointed out in the other mail, this is the japanese
translation, you probably don't have the correct fonts installed.

> Questions that come to mind:  if 'abiword-usercustom.desktop' is what
> causes it, then what caused that this unfavorable mutation?  Are the
> garbage characters normal?  Why should 'nautilus' properties for
> 'Desktop/SpaceMonger.exe' show 'wine'?

The -usercustom.desktop files are created when you manually add an
application to a mimetype it doesn't support. Maybe you added it by
mistake sometime in the past?

I have added the steps necessary to reproduce the bug in the upstream
report; https://bugs.freedesktop.org/show_bug.cgi?id=6320 I will leave
it to them to figure out why Nautilus didn't list abiword and why it
gave a warning.

Thank you for the fast replies to my questions and the detailed answers,
it made it much easier to figure this one out. 

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


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


Bug#439546: gnuplot-nox complains about msising x11 drivers

2007-08-25 Thread Bas Zoetekouw
Package: gnuplot-nox
Version: 4.2.0-4
Severity: normal

When using gnuplot-nox from a script, it complains about msising X11
drivers:

| *** X11 output driver not found, switching to dumb terminal!
| *** If you want to use the X11 output, please install the gnuplot-x11 package.

As I'm only using a postscript terminal, and I have explicitly
installed gnuplot-nox instead of gnuplot-x11, I think gnuplot should
not complain about this.  The complains are pretty annoying in
scripts.  Maybe you could change this warning to only be displayed in
interactive mode?


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

Kernel: Linux 2.6.22.1 (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 gnuplot-nox depends on:
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.1-4GCC support library
ii  libgd2-xpm  2.0.35.dfsg-1GD Graphics Library version 2
ii  libglib2.0-02.12.13-1The GLib library of C routines
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libpango1.0-0   1.16.5-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libstdc++6  4.2.1-4  The GNU Standard C++ Library v3
ii  libwxbase2.6-0  2.6.3.2.1.5  wxBase library (runtime) - non-GUI
ii  libwxgtk2.6-0   2.6.3.2.1.5  wxWidgets Cross-platform C++ GUI t
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

gnuplot-nox recommends no packages.

-- no debconf information


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



Bug#389007: Regression: Radeon 9200 powers off Apple Cinema Display connected via DVI

2007-08-25 Thread Brice Goglin
On Fri, Aug 10, 2007 at 08:29:10AM +0200, Brice Goglin wrote:
> 
> > NoDDC set to true or false has no effect.  The monitor is powered off
> > with all combination of this option with either or both of the PanelSize
> > and MonitorLayout commented out.
> >
> > NoDDC set to true or false with both PanelSize and MonitorLayout
> > enabled result in a working monitor.
> >   
> 
> This bug should be forwarded in the upstream bugzilla to get good care,
> especially if it still does not work with latest 1:6.6.193-1 in
> experimental.
> 
> Before I do so, you could test the randr-1.2 branch of the upstream git
> repository in case it helps.

Hi Roger,

The randr-1.2 branch has been merged, it is now available in Debian in
xserver-xorg-video-ati 1:6.7.191-1 (in experimental). Please let me
know whether it helps.

If not, does xrandr report that the cinema display is connected? Are any
modes detected? Please the xrandr output and the new Xorg.0.log.

Brice



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



Bug#439547: muse-el: FTBFS: "emacs: command not found" with xemacs21

2007-08-25 Thread Tatsuya Kinoshita
Package: muse-el
Version: 3.11-1
Severity: serious

muse-el's Build-Depends-Indep includes `emacs22 | emacsen', but
when xemacs21 is installed and other emacsen are not installed,
muse-el fails to build from the source, because the source uses the
`emacs' command which is not provided by xemacs21.


[...]
touch configure-stamp
dh_testdir
# Comply with Debian vote 2006-1
# makeinfo muse.texi
# makeinfo --html --output=html muse.texi
# Add here commands to compile the package.
/usr/bin/make examples
make[1]: Entering directory `/tmp/buildd/muse-el-3.11'
(cd examples && /usr/bin/make)
make[2]: Entering directory `/tmp/buildd/muse-el-3.11/examples'
Generating HTML for QuickStart.muse...
EMACS=emacs SITEFLAG=--no-site-file ../scripts/publish html QuickStart.muse
../scripts/publish: line 4: emacs: command not found
make[2]: *** [QuickStart.html] Error 127
make[2]: Leaving directory `/tmp/buildd/muse-el-3.11/examples'
make[1]: *** [examples] Error 2
make[1]: Leaving directory `/tmp/buildd/muse-el-3.11'
make: *** [build-stamp] Error 2


Please use `emacs' or `emacs | emacs22 | emacs21' in
Build-Depends-Indep to use the `emacs' command at build time.

Also, I've noticed:

- In debian/rules, binary-indep doesn't work.  Please use binary-indep
  instead of binary-arch to build `Architecture: all' package.
- In the dependency, xemacs21 (>= 1.4.14) is funny and meaningless.
  Please remove it.

Thanks,
--
Tatsuya Kinoshita


pgp4FZtUpyboC.pgp
Description: PGP signature


Bug#439285: [Pbuilder-maint] Bug#439285: pbuilder login does not create a login shell

2007-08-25 Thread Ben Hutchings
On Fri, 2007-08-24 at 08:07 +0900, Junichi Uekawa wrote:
> Hi,
> 
> > pbuilder login does:
> > 
> > ${CHROOTEXEC} bin/bash
> > 
> > This starts bash as a normal interactive shell, not a login shell.
> > This means that it can, for example, be suspended, with unpleasant
> > results.  bash's exec command allows setting the invoked program's 0th
> > argument with the -a option, so it would be possible to start a login
> > shell with:
> > 
> > (${CHROOTEXEC} bin/bash -c 'exec -a -bash bin/bash')
> 
> Hmm.. is adding '--login' option not enough?

The use of the "-" prefix is more general so if you wanted to support
alternate login shells in future you could use something like:

(${CHROOTEXEC} bin/bash -c "exec -a -$SHELL $SHELL")

But so long as pbuilder always runs bash, the --login option would be
more understandable.

Ben.

-- 
Ben Hutchings
All extremists should be taken out and shot.


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


Bug#439542: Renders only a couple characters per page in InDesign CS generated PDFs

2007-08-25 Thread Sven Arvidsson
reassign 439542 libpoppler-glib1 0.5.4-6.1
forcemerge 435913 439542
thanks

On Sat, 2007-08-25 at 10:37 -0400, EspeonEefi wrote:
> Evince renders just a couple elements and/or characters per page, 
> usually those in the top left corner, for all of the PDFs of the issues 
> of The Tech generated with InDesign CS. You can test this with all of 
> the PDF links from http://www-tech.mit.edu/V126/ and the PDF links from 
> http://www-tech.mit.edu/V125/ from issue 29 (July 6, 2005) and later.
> 
> All of these PDFs were generated with Adobe InDesign CS on a PowerPC OS 
> X machine. All of them were also postprocessed a bit by Adobe Acrobat, 
> either 6 or 7, also on PowerPC OS X. I gave give you more details about 
> their generation if that will help.
> 
> Note that Xpdf seems to render them just fine.

Hi,

I'm pretty sure this is upstream bug
https://bugs.freedesktop.org/show_bug.cgi?id=8399

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


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


Bug#439182: editing miscalculates non-ascii width

2007-08-25 Thread Thomas Dickey
On Thu, Aug 23, 2007 at 09:05:18AM +0800, Dan Jacobson wrote:
> Package: lynx-cur
> Version: 2.8.7dev7-1
> Severity: minor
> 
> Edit a mixed wide and narrow page like
> $ lynx 
> 'http://radioscanningtw.jidanni.org/index.php?title=User:Jidanni&action=edit&uselang=en'
> in xterm.
> 
> Note how the cursor position is miscalculated... Perhaps it is
> counting UTF-8 characters as three columns due to their being three
> bytes long here, instead of considering their correct display width
> here: two columns.
> 
> The effect is the cursor ends up waiting several characters beyond the
> end of each line.

yes, I'm aware of that - all of the input handling assumes single-byte
characters.  (juggling with other programs of course), it's what I'd
like to fix for 2.8.7...
 
> Perhaps w3m's approach is better: don't try and instead leave it to an
> external editor.

it's doable (see dialog, where I did), but rather complicated in lynx because
of all of the conflicting chunks of existing code I'd like to keep.

-- 
Thomas E. Dickey <[EMAIL PROTECTED]>
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#439181: klibc ia64 test results

2007-08-25 Thread maximilian attems
clone 439181 -1
retitle 439181 ia64 works only static
severity 439181 important
tags 439181 help
stop

On Wed, 22 Aug 2007, dann frazier wrote:

> 1.5-3: segfaults
> 1.5-2: works

thanks a lot for your nice matrice,
although 01-ia64-static.diff was still applied on install
we no longer passed the arch and thus shared binaries got
installed, i'll upload with urgency high 1.5.6-2 soonest

verified that static still work with linux-libc-dev build change:
[EMAIL PROTECTED]:~/src/klibc-1.5.6$ ./usr/utils/static/uname -a
Linux merulo 2.6.18-dsa-mckinley #1 SMP Wed Jun 6 15:22:48 MDT 2007 ia64 ia64

-- 
maks


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



Bug#439522: xserver-xorg-video-intel: Not more than 640x680 on i845 (regression)

2007-08-25 Thread Brice Goglin
Daniel Baumann wrote:
>> What do you mean by "fails to display" ? It refuses the mode?
>> 
>
> it refuses the mode and, whatever is written in xorg.conf, only displays
> 640x680.
>   

Your xorg.conf uses the old syntax, you are now using a randr-1.2-aware
driver, the way to select a mode has changed, see below.

> Section "Device"
>   Identifier  "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset 
> Integrated Graphics Device"
>   Driver  "intel"
>   Option  "UseFBDev"  "true"
> EndSection
>   

(your log says that UseFBDev is ignored)

> Section "Monitor"
>   Identifier  "Standardbildschirm"
>   Option  "DPMS"
>   HorizSync   31-61
>   VertRefresh 56-75
> EndSection
>   

You should drop HorizSync and VertRefresh.

> Section "Screen"
>   Identifier  "Default Screen"
>   Device  "Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset 
> Integrated Graphics Device"
>   Monitor "Standardbildschirm"
>   DefaultDepth16
>   SubSection "Display"
>   Modes   "1024x768"
>   EndSubSection
> EndSection
>   

You should drop the Modes line, it's probably ignored with your
server/driver.

> (II) intel(0): Modeline "640x350"x70.1   25.18  640 688 784 800  350 410 412 
> 449 -hsync +vsync (31.5 kHz)
> (II) intel(0): Modeline "1024x768"x74.9   82.00  1024 1088 1192 1360  768 771 
> 775 805 -hsync +vsync (60.3 kHz)
> (II) intel(0): Modeline "1024x768"x69.8   75.25  1024 1080 1184 1344  768 771 
> 775 802 -hsync +vsync (56.0 kHz)
> (II) intel(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 
> 777 806 -hsync -vsync (56.5 kHz)
> (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 
> 777 806 -hsync -vsync (48.4 kHz)
> (II) intel(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 
> 775 798 -hsync +vsync (47.8 kHz)
> (II) intel(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 
> 666 +hsync +vsync (48.1 kHz)
> (II) intel(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 
> 625 +hsync +vsync (46.9 kHz)
> (II) intel(0): Modeline "800x600"x74.9   49.00  800 840 920 1040  600 603 607 
> 629 -hsync +vsync (47.1 kHz)
> (II) intel(0): Modeline "800x600"x72.0   47.00  800 840 920 1040  600 603 607 
> 628 -hsync +vsync (45.2 kHz)
> (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 
> 628 +hsync +vsync (37.9 kHz)
> (II) intel(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 
> 624 -hsync +vsync (37.4 kHz)
> (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 
> 625 +hsync +vsync (35.2 kHz)
> (II) intel(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 
> 500 -hsync -vsync (37.5 kHz)
> (II) intel(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 491 
> 520 -hsync -vsync (37.9 kHz)
> (II) intel(0): Modeline "640x480"x74.8   30.75  640 664 728 816  480 483 487 
> 504 -hsync +vsync (37.7 kHz)
> (II) intel(0): Modeline "640x480"x71.9   29.50  640 664 728 816  480 483 487 
> 503 -hsync +vsync (36.2 kHz)
> (II) intel(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 
> 525 -hsync -vsync (31.5 kHz)
> (II) intel(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 
> 449 -hsync +vsync (31.5 kHz)
> (II) intel(0): Output VGA connected
> (II) intel(0): Output VGA using initial mode 640x350
>   

There seem to be plenty of video modes that are available.

> Screen 0: minimum 320 x 200, current 640 x 350, maximum 1024 x 1024
> VGA connected 640x350+0+0 (normal left inverted right) 304mm x 228mm
>640x35070.1*+
>1024x768   74.9 69.8 70.1 60.0 59.9  
>800x60072.2 75.0 74.9 72.0 60.3 59.9 56.2  
>640x48075.0 72.8 74.8 71.9 60.0  
>720x40070.1  
>   


What does *exactly* happen if you do
xrandr --output VGA --mode 800x600
? or 1024x768 ?
What kind of monitor is connected to which port?

Brice



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



Bug#439393: hex-a-hop: Latest (unreleased) version crashes on map screen

2007-08-25 Thread Yuri Kozlov
The same crash (load save1.dat file, goto map, make fast moving mouse
from the left to the right so that the map do scroll):
(gdb) bt
#0  0x2b383cc2007b in raise () from /lib/libc.so.6
#1  0x2b383cc2184e in abort () from /lib/libc.so.6
#2  0x2b383cc566e9 in __fsetlocking () from /lib/libc.so.6
#3  0x2b383cc5d253 in mallopt () from /lib/libc.so.6
#4  0x2b383cc5d2de in free () from /lib/libc.so.6
#5  0x2b383c4d4f79 in SDL_FreeSurface () from /usr/lib/libSDL-1.2.so.0
#6  0x00402e9f in PrintC_Pango (x=,
y=247, width=40, text_utf8=)
at gfx.cpp:225
#7  0x00405453 in PrintC (split=false, x=600, y=247, width=80,
string=)
at hex_puzzzle.cpp:434
#8  0x0040576b in PrintC (split=false, x=600, y=247,
string=) at hex_puzzzle.cpp:456
#9  0x0041279b in HexPuzzle::Render (this=0x55f760) at
hex_puzzzle.cpp:2700
#10 0x0040321d in main () at gfx.cpp:377

-- 
Regards,
Yuri Kozlov


save1.dat
Description: MOPAC data 


Bug#179271: Wanna meet?

2007-08-25 Thread Monroe Watts

Hi,

I'm Brianna and would like to be your friend.
Hope you don't mind to drop me an email at
[EMAIL PROTECTED] and we keep in touch ok?

Miss ya :)



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



Bug#439549: Missing man page slave link for gnome-text-editor alternative

2007-08-25 Thread EspeonEefi
Package: vim-gnome
Version: 1:7.1-056+2
Severity: normal

vim-gnome provides vim.gnome as an alternative for gnome-text-editor,
but it does not provide a slave link for gnome-text-editor.1.gz, the man
page. Thus, when gnome-text-editor is set to vim.gnome,
/usr/share/man/man1/gnome-text-editor.1.gz becomes a dangling symlink.

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

Kernel: Linux 2.6.22-1-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 vim-gnome depends on:
ii  libart-2.0-2  2.3.19-3   Library of functions for 2D graphi
ii  libatk1.0-0   1.18.0-2   The ATK accessibility toolkit
ii  libbonobo2-0  2.18.0-2   Bonobo CORBA interfaces library
ii  libbonoboui2-02.18.0-5   The Bonobo UI library
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libcairo2 1.4.10-1   The Cairo 2D vector graphics libra
ii  libfontconfig12.4.2-1.2  generic font configuration library
ii  libgconf2-4   2.18.0.1-3 GNOME configuration database syste
ii  libglib2.0-0  2.14.0-2   The GLib library of C routines
ii  libgnome-keyring0 0.8.1-2GNOME keyring services library
ii  libgnome2-0   2.18.0-4   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.14.0-3   A powerful object-oriented display
ii  libgnomeui-0  2.18.1-2   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-01:2.18.1-3+b1  GNOME Virtual File System (runtime
ii  libgpmg1  1.19.6-25  General Purpose Mouse - shared lib
ii  libgtk2.0-0   2.10.13-1  The GTK+ graphical user interface 
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libncurses5   5.6+20070812-1 Shared libraries for terminal hand
ii  liborbit2 1:2.14.7-0.1   libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.16.5-1   Layout and rendering of internatio
ii  libpopt0  1.10-3 lib for parsing cmdline parameters
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxcursor1   1:1.1.8-2  X cursor management library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxfixes31:4.0.3-2  X11 miscellaneous 'fixes' extensio
ii  libxi62:1.1.2-1  X11 Input extension library
ii  libxinerama1  1:1.0.2-1  X11 Xinerama extension library
ii  libxrandr22:1.2.1-1  X11 RandR extension library
ii  libxrender1   1:0.9.2-1  X Rendering Extension client libra
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library
ii  vim-common1:7.1-056+2Vi IMproved - Common files
ii  vim-gui-common1:7.1-056+2Vi IMproved - Common GUI files
ii  vim-runtime   1:7.1-056+2Vi IMproved - Runtime files

vim-gnome recommends no packages.

-- no debconf information


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



Bug#439550: libmtp6: trying to overwrite `/etc/udev/rules.d/libmtp.rules', which is also in package libmtp5

2007-08-25 Thread Michael Prokop
Package: libmtp6
Version: 0.2.1-1
Severity: grave
Justification: renders package unusable


When upgrading mtp-tools, which has a broken Depends-line BTW:

| Depends: libmtp6 (= 0.2.1-1), libc6 (>= 2.6-1), libmtp6, libusb-0.1-4 (>= 
2:0.1.12)
   ^^^^^^

and unpacking libmtp6 during upgrade:

[...]
Unpacking libmtp6 (from .../libmtp6_0.2.1-1_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/libmtp6_0.2.1-1_i386.deb 
(--unpack):
 trying to overwrite `/etc/udev/rules.d/libmtp.rules', which is also in package 
libmtp5
Preparing to replace mtp-tools 0.1.5-2 (using .../mtp-tools_0.2.1-1_i386.deb) 
...
Unpacking replacement mtp-tools ...
Errors were encountered while processing:
 /var/cache/apt/archives/libmtp6_0.2.1-1_i386.deb
[...]

regards,
-mika-


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



Bug#438851: [Crm114-general] Unintelligible mailreaver error message

2007-08-25 Thread martin f krafft
also sprach Bill Y <[EMAIL PROTECTED]> [2007.08.25.1253 +0100]:
> Now, assuming your friends didn't edit mailreaver too heavily, your

They didn't.

> Is this on a very heavily loaded mailserver being gang-banged by
> a lot of spammers, and launching a CRM114 on each and every
> incoming mail?

No. crm114 gets spawned about twice a minute.

Would it be possible to implement the trap and retry?

-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
micro$oft could shit in a box, and most people would buy it.


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


Bug#437365: tipa-doc: include symlinks in /usr/share/tetex/doc

2007-08-25 Thread Rafael Laboissiere
[Cc:ing to debian-tex-maint]

* Julian Gilbey <[EMAIL PROTECTED]> [2007-08-12 01:27]:

> Package: tipa-doc
> Version: 2:1.3-8
> 
> There should be symlinks to the tipa documentation from somewhere in
> /usr/share/texmf/doc so that texdoc finds the documentation correctly.

texdoc is in tetex-bin and thought that teTeX is being deprecated in favour
of TeXLive.  If I am wrong, I would like to know whether there are any
guidelines or policy for adding the symlinks mentioned in this bug report.

-- 
Rafael


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



Bug#439551: ITP: libj2ssh-java -- a Java API for the SSH protocol.

2007-08-25 Thread Kumar Appaiah
Package: wnpp
Severity: wishlist
Owner: Kumar Appaiah <[EMAIL PROTECTED]>

* Package name: libj2ssh-java
  Version : 0.2.9
  Upstream Author : Lee David Painter and contributors.
* URL : http://sshtools.sourceforge.net
* License : GPL
  Programming Lang: Java
  Description : a Java API for the SSH protocol.

 J2SSH is an object-orientated Java implementation of the SSH version 2
 protocol. It provides a rich, powerful, and extensible SSH API that
 enables developers to gain access to SSH servers and to develop entire
 SSH client/server frameworks. The API library provides a
 fully-featured SSH2 implementation specifically designed for
 cross-platform development. Higher level components, representing both
 the standard SSH client and SSH servers, are provided which implement
 the protocol specification for user sessions and port forwarding. The
 specification currently supports public key and password
 authentication and a full implementation of the SFTP protocol.


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

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


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



Bug#436509: I cannot burn anything with Brasero.

2007-08-25 Thread Sven Arvidsson
On Tue, 2007-08-07 at 23:59 +0200, Aljaž Prusnik wrote:
> I cannot burn anything with Brasero. It gives me the following error
> everytime I try to burn a CD/DVD (doesn't matter what kind):
> 
> Session error : the drive can't be locked (Extracting audio from CD)

Hi,

I forwarded this bug report to the upstream developers, it would be
great if you could track it and answer any questions they might have;
http://bugzilla.gnome.org/show_bug.cgi?id=469667

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


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


Bug#437978: monotone-server: Incorrect user and group on /var/run/monotone/

2007-08-25 Thread Berg, Michael
Ludovic Brenta wrote:
> I investigated the problem but the postinst script explicitly sets the
> owner of /var/run/monotone to monotone:monotone.
> 
> It may be that the problem was due to the monotone user not being
> present for some reason.
> 
> Please try again with 0.36-1 (which I just uploaded) and tell us if
> the problem is gone.  Zack has made some changes to the postinst
> script in this release to correct several problems, one of which may
> be the cause for this bug.

I'm still experiencing the problem.  I purged my install of monotone-server
and installed the new 0.36 package.

$ ls -ld /var/run/monotone
drwxr-xr-x 2 root   root  6 2007-08-24 11:19 monotone

- Michael


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



Bug#435514: mirror submission for ftp.cse.yzu.edu.tw

2007-08-25 Thread Simon Paillard
Dear Wang,

On Wed, Aug 01, 2007 at 10:05:22AM +, Cheng-Yu, Wang wrote:
> Package: mirrors
> Severity: wishlist
> 
> Submission-Type: new

Thanks for submitting your Debian mirror.
There are some details you must fix before we can include your mirror in
the list.

> Site: ftp.cse.yzu.edu.tw
> Aliases: ftp.oss.tw
> Type: leaf
> Archive-ftp: /pub/Linux/debian/debian/
> Archive-http: /pub/Linux/debian/debian/

It seems you don't use anonftpsync, the recommended script (see
http://www.debian.org/mirrors/ftpmirror for the howto and
ttp://www.debian.org/mirrors/anonftpsync for the script).
This script implements atomic updates so that the mirror can be used by
users even during its update.

Moreover, it takes care of the generation of the local trace file, which
is missing on your mirror.
Just indicate in the anonftpsync configuration the name of your mirror
"ftp.cse.yzu.edu.tw" and it will be ok.

> CDImage-ftp: /pub/Linux/debian/debian-cd/
> CDImage-http: /pub/Linux/debian/debian-cd/

Unless your sync of 4.0_r1 is not finished, you should be able to remove
http://ftp.cse.yzu.edu.tw/pub/Linux/debian/debian-cd/4.0_r0/

> Mirrors-from: ftp.tw.debian.org

http://ftp.cse.yzu.edu.tw/pub/Linux/debian/debian/project/trace/ seems a
bit outdated (two days behind).
You should update the mirror at least once a day (after the end of the
sync your upstream mirror, just check the date of its local trace file),
or up to twice a day.
You may consider using push mirroring with ftp.tw.debian.org, we can
provide you the contact.

> Archive-architecture: ALL 
> Maintainer: Cheng-Yu, Wang <[EMAIL PROTECTED]>
> Country: TW Taiwan
> Location: Taoyuan,Taiwan
> Sponsor: Department of Computer Science and Engineering at University of Yuan 
> Ze http://www.cse.yzu.edu.tw

Comments about the available bandwidth and the update frequency are
welcome.

Please don't forget to reply to the bug when the move to anonftpsync and
thus the local trace file will be ok.

Thanks for mirroring Debian and best regards,

-- 
Simon Paillard


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



Bug#439552: critical etch security bug, unknown package

2007-08-25 Thread Aidan Reilly
Package: gdm
Version: 2.16.4

Hi, I'm not sure what package this bug applies to -
possibly gdm, or maybe nautilus, or maybe something
else.

Description:
I set the computer to the log in screen by selecting
'switch user'; I saw it return to the log in screen,
as expected.  When I returned to the computer approx.
1/2 an hour later, my session had resumed, i.e. my
desktop was visible instead of the log in screen (I
have no auto log in set or anything like that). 
(Expected situation would be to see the log in
screen).
This might be related to the last action I did before
logging out: I tried to connect to an ssh server with
nautilus.  This was taking a very long time, so I left
the Nautilus window open and logged out.  When I came
back, the Nautilus window was visible but had crashed
(it was displaying a 'this application is not
responding' prompt).  After clicking 'force quit' my
desktop was visible and usable, without having entered
by password at all.

Configuration info:
I'm running Debian Etch, i386 version.  I've got the
standard 'Desktop' setup and very little else - there
was nothing running at the time of the crash apart
from the Nautilus window, standard Gnome apps (panel
etc.) and an Apache server (running as a separate
user).

Please let me know if you need any other information.

Regards,

Aidan


  ___ 
Want ideas for reducing your carbon footprint? Visit Yahoo! For Good  
http://uk.promotions.yahoo.com/forgood/environment.html


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



Bug#439509: (gimp: crashes with a segmentation fault when loading)

2007-08-25 Thread Alexis Lamiable
I finally managed to launch gimp, by removing ~/.gimp*. Removing
only .gimp2.3 or .gimp2.4 didn't work when I tried before.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Bug#439478: libpam-unix2: FTBFS: unmet b-dep in unstable: libpam0g-dev(inst 0.79-4 ! >= wanted 0.81)

2007-08-25 Thread Lucas Nussbaum
reopen 439478
thanks

On 25/08/07 at 08:31 -0700, Ivan Kohler wrote:
> On Sat, Aug 25, 2007 at 10:29:28AM +0200, Lucas Nussbaum wrote:
> > Package: libpam-unix2
> > version: 2.1-4
> > Severity: serious
> > User: [EMAIL PROTECTED]
> > Usertags: qa-ftbfs-20070823 qa-ftbfs
> > Justification: FTBFS on i386
> > 
> > Hi,
> > 
> > During a rebuild of all packages in sid, your package failed to build on 
> > i386.
> > 
> > Relevant part:
> > ** Using build dependencies supplied by package:
> > Build-Depends: debhelper (>= 4.0.0), libpam0g-dev (>= 0.81), autoconf, 
> > libtool, libxcrypt-dev, dpatch
> > Checking for already installed source dependencies...
> > debhelper: missing
> > Using default version 5.0.53
> 
> > libpam0g-dev: missing
> > Default version of libpam0g-dev not sufficient, no suitable version found. 
> > Skipping for now, maybe there are alternatives.
> >
> > [...]
> >
> > After installing, the following source dependencies are still unsatisfied:  
> >  
> > libpam0g-dev(inst 0.79-4 ! >= wanted 0.81)
> > Source-dependencies not satisfied; skipping libpam-unix2
> 
> Please fix your build scripts to not report FTBFS errors on packages 
> that have not had their Build-Deps fulfilled in the first place.  
> Thanks.

That's exactly the problem: the package can't be built in unstable,
because you build-depend on an unavailable package (to be precise: an
unavailable version of an available package).
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


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



Bug#433739: offlineimap - FTBFS: /bin/bash: man: command not found

2007-08-25 Thread Lucas Nussbaum
On 25/08/07 at 11:33 +0200, Ana Guerrero wrote:
> On Mon, Aug 06, 2007 at 10:29:29PM +0200, Lucas Nussbaum wrote:
> > reopen 433739
> > found 433739 5.99.2
> > thanks
> > 
> > On 29/07/07 at 05:58 +0200, Cyril Brulebois wrote:
> > > tag 433739 patch
> > > thanks
> > > 
> > > Michael Ablassmeier <[EMAIL PROTECTED]> (19/07/2007):
> > > >  > mv offlineimap.html manual.html
> > > >  > man -t -l offlineimap.1 > manual.ps
> > > >  > /bin/bash: man: command not found
> > > 
> > > It looks like this is actually no longer a problem, the FTBFS is now
> > > caused by a missing ps2pdf. Build-Depending additionally on gs or
> > > gs-common solves this; tagging accordingly.
> > 
> > Hi,
> > 
> > I'm sorry, but I'm still able to reproduce the original problem:
> > 
> > docbook2html -u offlineimap.sgml
> > Using catalogs: /etc/sgml/catalog
> > Using stylesheet: /usr/share/docbook-utils/docbook-utils.dsl#html
> > Working on: /build/user/offlineimap-5.99.2/offlineimap.sgml
> > Done.
> > mv offlineimap.html manual.html
> > man -t -l offlineimap.1 > manual.ps
> > /bin/bash: man: command not found
> > make[1]: *** [doc] Error 127
> > make[1]: Leaving directory `/build/user/offlineimap-5.99.2'
> > make: *** [build-stamp] Error 2
> 
> 
> I have found something interesting here.
> It builds fine for me on AMD64. But I'm using cowbuilder and it already
> has man-db (package that provides man) installed by default.
> 
> Removing man-db from the cowbuilder enviroment, i can reproduce the problem.
> 
> So, adding a b-d on man-db solves this problem, but on the other hand, i 
> wonder
> whether this is a problem with cowbuilder.

Hi ana,

It is only guaranteed that build-essential (+deps) and Essential: yes packages
are installed. So my chroots only have those installed. Maybe cowbuilder
creates its chroot with debootstrap, and doesn't run debfoster to clean
it up after it, like piuparts does?
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


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



Bug#435835: mirror submission for cesium.di.uminho.pt

2007-08-25 Thread Simon Paillard
Dear Ruben,

On Fri, Aug 03, 2007 at 02:05:41PM +, Ruben Fonseca wrote:
> Package: mirrors
> Severity: wishlist
> 
> Submission-Type: new

Thanks for submitting your Debian mirror.
There are some details you must fix before we can include your mirror in
the list.

> Site: cesium.di.uminho.pt
> Type: leaf
> Archive-ftp: /pub/debian/
> Archive-http: /pub/debian/
> Archive-rsync: debian/
> Mirrors-from: ftp.ch.debian.org
> Archive-architecture: ALL 
> Maintainer: Ruben Fonseca <[EMAIL PROTECTED]>
> Country: PT Portugal
> Location: Universidade do Minho

In the Location field, the city is expected (Braga ?)
We can put Universidade do Minho  as the sponsor together with its
website.

> Comment: The mirror is a full /debian mirror. It runs on HTTP, FTP and RSYNC, 
> on a 1.5TiB RAID5 array, with a 1GiB line to the world. It currently updates 
> every hour. 

Every hour is way too often !
See http://www.debian.org/mirrors/ftpmirror#when

Don't update more often than twice a day, otherwise it overloads the
remote upstream mirror for nothing.

Just check the local trace file of ftp.ch.debian.org to determine the
two moments in the day when you can launch the sync.

Moreover, if you don't use anonftpsync yet (the strongly recommended
script), please switch to it since it allows almost atomic updates of
mirrors. Without it, you mirror is not usable during updates.

Don't forget to reply to the bug when these details will be fixed.

Thanks for mirroring Debian and best regards.

-- 
Simon Paillard


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



Bug#439551: ITP: libj2ssh-java -- a Java API for the SSH protocol.

2007-08-25 Thread Stefano Zacchiroli
On Sat, Aug 25, 2007 at 09:24:34PM +0530, Kumar Appaiah wrote:
>   Description : a Java API for the SSH protocol.

What you're packaging is actually I library (I guess) rather than an
API. So please describe it as something like "a Java library for the SSH
protocol", and apply similar changes to the long description.

An API is just a part of a library ...

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Bug#431098: Blender crash with 7.0.1-1 version

2007-08-25 Thread Aurélien PROVIN
I upgraded to 7.0.1-1 but blender crash again.

With gdb:

#0  0xb74a6e7d in ?? () from /usr/lib/dri/radeon_dri.so
#1  0x0018 in ?? ()
#2  0x092f06d8 in ?? ()
#3  0x0020 in ?? ()
#4  0xb7e1a8dc in ?? () from /usr/lib/libGL.so.1
#5  0x080c6b15 in ?? ()
#6  0xb8a0c74a in ?? ()
#7  0x080c6b1d in ?? ()
#8  0xbff773f4 in ?? ()
#9  0x0001 in ?? ()
#10 0x in ?? ()

I tried to install libgl1-mesa-dri-dbg due to get debug symbols in gdb but
X doesn't start... I can just do "Ctrl Alt BackSpace" and "Ctrl Alt Sup"
to restart my laptop.

tail Xorg.0.log :

(II) Initializing built-in extension XEVIE
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: Searching for BusID pci::01:05.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports pci::01:05.0

Backtrace:






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



Bug#439553: icedove-displayquota display the current status of your IMAP quota on icedove | thunderbird

2007-08-25 Thread Carlos Alberto
Package: wnpp
Severity: wishlist
Owner: Carlos Silombria <[EMAIL PROTECTED]>

* Package name : icedove-displayquota
* Version: 0.1.10.2
* Upstream Author  : Arnaud Abelard <[EMAIL PROTECTED]>
* URL:
https://addons.mozilla.org/en-US/thunderbird/addon/881
* License   : GPL
* Description  : (follows)

This extension will display the current status of your IMAP quota in
thunderbird's statusbar and will warn you when you reach a
configurable limit...


This extension will display the current status of your IMAP quota in
thunderbird's statusbar and will warn you when you reach a
configurable limit.

 - It will only work if your mail server has an IMAP quota set.

 - It only works with IMAP quotas and servers advertizing the quota
status via IMAP (the IMAP GETQUOTA command). Some mail servers have
disk quotas and will send email when your mailbox reach its quota.
That's not a real IMAP quota system and the imap server might not
advertize it.


# Silverdog
# GNU/Linux User #368130
# Debian on linux 2.6.22.1
# http://silverdog.com.ve
# "En linux no preguntes si se puede
# hacer, pregunta como se hace"
# Caracas Venezuela
# Key fingerprint = CA0F 0DC5 01F9 D752 4079  4F3E 900A 05B1 090B D7BD



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



<    1   2   3   4   >