Bug#507857: [php-maint] Bug#507857: php5/ext/zip: ZipArchive::extractTo() Directory Traversal Vulnerability

2008-12-04 Thread sean finney
hi raphael,

On Thu, Dec 04, 2008 at 09:11:06PM -0600, Raphael Geissert wrote:
> 
> SE-2008-06.txt[1]:
> > [...] it
> >   was discovered that ZipArchive::extractTo() does not flatten
> >   the filenames stored inside the zip archives.

i think there's already another bug about this, or at least a similar CVE.

I would argue that this is not a vulnerability in PHP at all, but poor
application coding for any app that uses this library and does not check
for such things.

perhaps PHP could provide better support for handling such exotic/malicious
archives, but i would see that more of a feature request than a security hole.


sean


signature.asc
Description: Digital signature


Bug#507769: [Pkg-samba-maint] Bug#507769: smbfs: mount.cifs set the setgid bit of regular files by default

2008-12-04 Thread Frederic Mothe

Christian Perrier a écrit :

What are the permissions on the mounting directory ?


You are right, the setgid bit was set:
drwxr-sr-x 2 mothe mothe 4096 déc  4 14:26 montages/

There is no bug, i am sorry for the disturbance.
Thank you for your help,
Frederic




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



Bug#506741: wireshark: DoS caused by sending a SMTP request with large content

2008-12-04 Thread Joost Yervante Damad
On Wednesday 03 December 2008 21:53:49 Steffen Joeris wrote:
> Please go ahead.
>
> Next time a debdiff would be nice, but I do not have a problem to filter it
> out of the upload for testing-security.

Here is a debdiff. I have to re-upload, I assumed I didn't have to do a -sa 
upload, but apparently thats needed.

Joost


diff -u wireshark-1.0.2/debian/changelog wireshark-1.0.2/debian/changelog
--- wireshark-1.0.2/debian/changelog
+++ wireshark-1.0.2/debian/changelog
@@ -1,3 +1,10 @@
+wireshark (1.0.2-3+lenny3) testing-security; urgency=high
+
+  * Fix DoS attack (upstream svn rev 24988-24989 and 24993-24994)
+(Closes: #506741)
+
+ -- Joost Yervante Damad <[EMAIL PROTECTED]>  Wed, 03 Dec 2008 20:00:34 +0100
+
 wireshark (1.0.2-3+lenny2) testing-proposed-updates; urgency=high
 
   * Fix CVE-2008-4680 to CVE-2008-4685 (Closes: #503589)
diff -u wireshark-1.0.2/debian/patches/00list wireshark-1.0.2/debian/patches/00list
--- wireshark-1.0.2/debian/patches/00list
+++ wireshark-1.0.2/debian/patches/00list
@@ -16 +16,2 @@
-24_backport_postdissector
\ No newline at end of file
+24_backport_postdissector
+25_DoS_20081124.dpatch
only in patch2:
unchanged:
--- wireshark-1.0.2.orig/debian/patches/25_DoS_20081124.dpatch
+++ wireshark-1.0.2/debian/patches/25_DoS_20081124.dpatch
@@ -0,0 +1,1242 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## DoS_20081124.dpatch by  <[EMAIL PROTECTED]>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
[EMAIL PROTECTED]@
+diff -urNad lenny~/epan/dissectors/packet-smtp.c lenny/epan/dissectors/packet-smtp.c
+--- lenny~/epan/dissectors/packet-smtp.c	2008-07-10 19:39:23.0 +0200
 lenny/epan/dissectors/packet-smtp.c	2008-12-03 20:16:03.0 +0100
+@@ -101,10 +101,6 @@
+ 	"DATA fragments"
+ };
+ 
+-/* Define media_type/Content type table */
+-static dissector_table_t media_type_dissector_table;
+-
+-
+ static  dissector_handle_t imf_handle = NULL;
+ 
+ /*
+@@ -175,10 +171,11 @@
+ struct smtp_request_val *request_val;
+ const guchar*line;
+ guint32 code;
+-int linelen;
++int linelen = 0;
+ gintlength_remaining;
+ gbooleaneom_seen = FALSE;
+ gintnext_offset;
++gintloffset;
+ gbooleanis_continuation_line;
+ int cmdlen;
+ fragment_data   *frag_msg = NULL;
+@@ -221,21 +218,6 @@
+  * longer than what's in the buffer, so the "tvb_get_ptr()" call
+  * won't throw an exception.
+  */
+-linelen = tvb_find_line_end(tvb, offset, -1, &next_offset,
+-  smtp_desegment && pinfo->can_desegment);
+-if (linelen == -1) {
+-  /*
+-   * We didn't find a line ending, and we're doing desegmentation;
+-   * tell the TCP dissector where the data for this message starts
+-   * in the data it handed us, and tell it we need one more byte
+-   * (we may need more, but we'll try again if what we get next
+-   * isn't enough), and return.
+-   */
+-  pinfo->desegment_offset = offset;
+-  pinfo->desegment_len = 1;
+-  return;
+-}
+-line = tvb_get_ptr(tvb, offset, linelen);
+ 
+ frame_data = p_get_proto_data(pinfo->fd, proto_smtp);
+ 
+@@ -271,6 +253,42 @@
+ 
+   }
+ 
++  if(request) {
++	frame_data = se_alloc(sizeof(struct smtp_proto_data));
++
++	frame_data->conversation_id = conversation->index;
++	frame_data->more_frags = TRUE;
++
++	p_add_proto_data(pinfo->fd, proto_smtp, frame_data);	
++
++  }
++
++loffset = offset;
++while (tvb_offset_exists(tvb, loffset)) {
++
++linelen = tvb_find_line_end(tvb, loffset, -1, &next_offset,
++  smtp_desegment && pinfo->can_desegment);
++if (linelen == -1) {
++
++  if(offset == loffset) {
++  /*
++   * We didn't find a line ending, and we're doing desegmentation;
++   * tell the TCP dissector where the data for this message starts
++   * in the data it handed us, and tell it we need one more byte
++   * (we may need more, but we'll try again if what we get next
++   * isn't enough), and return.
++   */
++  pinfo->desegment_offset = loffset;
++  pinfo->desegment_len = 1;
++  return;
++  }
++  else {
++	linelen = tvb_length_remaining(tvb, loffset);
++	next_offset = loffset + linelen;
++  }
++}
++line = tvb_get_ptr(tvb, loffset, linelen);
++
+   /*
+* Check whether or not this packet is an end of message packet
+* We should look for CRLF.CRLF and they may be split.
+@@ -286,16 +304,16 @@
+ 	 * .CRLF at the begining of the same packet.
+ 	 */
+ 
+-	if ((request_val->crlf_seen && tvb_strneql(tvb, offset, ".\r\n", 3) == 0) ||
+-	tvb_strneql(tvb, offset, "\r\n.\r\n", 5) == 0) {
++	if ((request_val->crlf_seen && tvb_strneql(tvb, loffset, ".\r\n", 3) == 0) ||
++	tvb_strneql(tvb, loffset, "\r\n.\r\n", 5)

Bug#507810: installation-report

2008-12-04 Thread Christian Perrier
Quoting jeff cliff ([EMAIL PROTECTED]):
> Package: installation-reports
> 
> Boot method: Unetbootin
> Image version: Debian Stable x64 netinst
> Date: Thu Dec 4 16:00:00 UTC
> 
> Machine: Dell PowerEdge 840 Workstation/Server
> Processor: Quad-Core Intel Xeon X3210 @ 2.13GHz
> Memory: 2GB
> Partitions: didn't get that far however there are two hard disks
> involved, and one already has a windows ntfs partition, and the other is
> unformatted.

Sounds like the kernel does not like your system. One obvious thing to try 
is the etch-and-a-half installer, which uses and installs a more recent 
kernel than the original Etch release. See [1] for further info.

Alternatively, you could try the Lenny Release Candidate RC1 images[2]
if you're OK to install the "not yet stable" version of Debian (namely
Lenny) on this machine.

[1] http://www.debian.org/releases/etch/etchnhalf
http://www.debian.org/releases/etch/debian-installer/etchnhalf

[2] http://www.debian.org/devel/debian-installer



signature.asc
Description: Digital signature


Bug#507864: installation-reports: xorg misconfigured

2008-12-04 Thread summer
Package: installation-reports
Severity: important

Onboard video:
[EMAIL PROTECTED]:~$ lspci -nvv -s 01:00.0
01:00.0 0300: 1106:7205 (rev 01) (prog-if 00 [VGA controller])
Subsystem: 1043:8118
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- 
SERR- 

[EMAIL PROTECTED]:~$ 


The video and monitor are capable of 1280x1024, the monitor being the limiting 
factor.
Xorg runs at 800x600.

-- Package-specific info:

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/lenny_di_rc1/i386/iso-cd/debian-testing-i386-netinst.iso
 size=157091840
Date: 

Machine: Whitebox socket A Sempron by ASUS
Partitions: 


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [o ]
Detect network card:[o ]
Configure network:  [o ]
Detect CD:  [o ]
Load installer modules: [o ]
Detect hard drives: [o ]
Partition hard drives:  [o ]
Install base system:[o ]
Clock/timezone setup:   [ ]
User/password setup:[o ]
Install tasks:  [o ]
Install boot loader:[o ]
Overall install:[o ]

Comments/Problems:

I wish to try preseeding as it didn't go well for me in xubuntu 8.10. This was 
just a test install, to see what happened and so I can get the kind of preseed 
file I want.
To this end I chose maximum automation - priority=crit etc.

I was going to read the preseed docs from this machine, but it's not very 
usable.




-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to [EMAIL PROTECTED]

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
DISTRIB_RELEASE="5.0 (lenny) - installer build 20081029"
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
umame -a: Linux Bilby 2.6.26-1-486 #1 Thu Oct 9 14:22:52 UTC 2008 i686 unknown
lspci -knn: 00:00.0 Host bridge [0600]: VIA Technologies, Inc. VT8378 [KM400/A] 
Chipset Host Bridge [1106:3205]
lspci -knn: 00:01.0 PCI bridge [0604]: VIA Technologies, Inc. VT8237/VX700 PCI 
Bridge [1106:b198]
lspci -knn: 00:10.0 USB Controller [0c03]: VIA Technologies, Inc. VT82x 
UHCI USB 1.1 Controller [1106:3038] (rev 80)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:10.1 USB Controller [0c03]: VIA Technologies, Inc. VT82x 
UHCI USB 1.1 Controller [1106:3038] (rev 80)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:10.2 USB Controller [0c03]: VIA Technologies, Inc. VT82x 
UHCI USB 1.1 Controller [1106:3038] (rev 80)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:10.3 USB Controller [0c03]: VIA Technologies, Inc. USB 2.0 
[1106:3104] (rev 82)
lspci -knn: Kernel driver in use: ehci_hcd
lspci -knn: Kernel modules: ehci-hcd
lspci -knn: 00:11.0 ISA bridge [0601]: VIA Technologies, Inc. VT8235 ISA Bridge 
[1106:3177]
lspci -knn: 00:11.1 IDE interface [0101]: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE [1106:0571] (rev 06)
lspci -knn: Kernel driver in use: VIA_IDE
lspci -knn: Kernel modules: via82cxxx
lspci -knn: 00:11.5 Multimedia audio controller [0401]: VIA Technologies, Inc. 
VT8233/A/8235/8237 AC97 Audio Controller [1106:3059] (rev 50)
lspci -knn: 00:12.0 Ethernet controller [0200]: VIA Technologies, Inc. VT6102 
[Rhine-II] [1106:3065] (rev 74)
lspci -knn: Kernel driver in use: via-rhine
lspci -knn: Kernel modules: via-rhine
lspci -knn: 01:00.0 VGA compatible controller [0300]: VIA Technologies, Inc. 
KM400/KN400/P4M800 [S3 UniChrome] [1106:7205] (rev 01)
lsmod: Module  Size  Used by
lsmod: ufs63620  0 
lsmod: qnx47684  0 
lsmod: ntfs  180416  0 
lsmod: dm_mod 45384  0 
lsmod: md_mod 65940  0 
lsmod: xfs   446836  0 
lsmod: reiserfs  187008  0 
lsmod: jfs   148060  0 
lsmod: ext3  103432  1 
lsmod: jbd35092  1 ext3
lsmod: vfat8832  0 
lsmod: fat39964  1 vfat
lsmod: ext2   52616  0 
lsmod: mbcache 6656  2 ext3,ext2
lsmod: via_rhine  18184  0 
lsmod: mii 4864  1 via_rhine
lsmod: nls_utf81664  2 
lsmod: isofs  27684  0 
lsmod: nls_base6528  6 ntfs,jfs,vfat,fat,nls_utf8,is

Bug#402340: Confirming solution

2008-12-04 Thread Jonny Noog
Package: eclipse
Followup-For: Bug #402340


Ah, multimedia... Makes more sense now. I can confirm that installing
xulrunner from debian-multimedia appears to resolve this issue with the
integrated browser on Lenny.

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

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

Versions of packages eclipse depends on:
ii  eclipse-jdt   3.2.2-6.1  Java Development Tools plug-ins
fo
ii  eclipse-pde   3.2.2-6.1  Plug-in Development Environment
to
ii  eclipse-source3.2.2-6.1  Eclipse source code plug-ins
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-4  The GTK+ graphical user
interface
ii  zenity2.22.1-2   Display graphical dialog boxes
fro

Versions of packages eclipse recommends:
ii  eclipse-gcj   3.2.2-6.1  Native Eclipse run with GCJ

eclipse suggests no packages.

-- no debconf information


Bug#500852: closed by Micah Anderson <[EMAIL PROTECTED]> (Bug#500852: fixed in puppet 0.24.6-1)

2008-12-04 Thread Jayen Ashar
thanks for fixing this.  i also ran into trouble tidying up directories 
containing empty files.  specifying size=0, age=0 wouldn't actually 
include every possible file.


--jayen

Debian Bug Tracking System wrote:

This is an automatic notification regarding your Bug report
which was filed against the puppet package:

#500852: Tidy must specify size, age, or both

It has been closed by Micah Anderson <[EMAIL PROTECTED]>.

Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Micah Anderson <[EMAIL 
PROTECTED]> by
replying to this email.






Subject:
Bug#500852: fixed in puppet 0.24.6-1
From:
Micah Anderson <[EMAIL PROTECTED]>
Date:
Sun, 30 Nov 2008 01:47:09 +
To:
[EMAIL PROTECTED]

To:
[EMAIL PROTECTED]


Source: puppet
Source-Version: 0.24.6-1

We believe that the bug you reported is fixed in the latest version of
puppet, which is due to be installed in the Debian FTP archive:

puppet_0.24.6-1.diff.gz
  to pool/main/p/puppet/puppet_0.24.6-1.diff.gz
puppet_0.24.6-1.dsc
  to pool/main/p/puppet/puppet_0.24.6-1.dsc
puppet_0.24.6-1_all.deb
  to pool/main/p/puppet/puppet_0.24.6-1_all.deb
puppet_0.24.6.orig.tar.gz
  to pool/main/p/puppet/puppet_0.24.6.orig.tar.gz
puppetmaster_0.24.6-1_all.deb
  to pool/main/p/puppet/puppetmaster_0.24.6-1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Micah Anderson <[EMAIL PROTECTED]> (supplier of updated puppet package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 29 Nov 2008 13:59:25 -0500
Source: puppet
Binary: puppet puppetmaster
Architecture: source all
Version: 0.24.6-1
Distribution: experimental
Urgency: low
Maintainer: Puppet Package Maintainers <[EMAIL PROTECTED]>
Changed-By: Micah Anderson <[EMAIL PROTECTED]>
Description: 
 puppet - centralised configuration management for networks

 puppetmaster - centralised configuration management control daemon
Closes: 498284 49 500848 500852 502163 502163 504624 506129
Changes: 
 puppet (0.24.6-1) experimental; urgency=low

 .
   * New upstream release (Closes: #506129, #504624, #502163)
   * Distribute filebucket binary (Closes: #49)
   * Fix missing check for START variable in defaults files (Closes: #498284)
   * Fix maintainer scripts so that they do not ignore errors (set -e)
   * Fix maintainer scripts so they don't have prepended paths (thanks lintian)
   * Cherry-pick fixes from upstream:
 - comparison of String with 0 failed (Closes: #500848)
 - filename cannot handle ++ (Closes: #502163)
 - tidy must specify size, age or both (Closes: #500852)
Checksums-Sha1: 
 6a93dcc6c55289fe72515bdc75b6afbdeebdfc7c 1270 puppet_0.24.6-1.dsc

 2deaf43934c149430dec46d97af17aa4afc41442 894124 puppet_0.24.6.orig.tar.gz
 e8cb43a5eb34db3c2026b0ef2630328cbba0b7b7 12485 puppet_0.24.6-1.diff.gz
 7b543097bc38384bcb32c8103e4a8e68e94cf63e 478206 puppet_0.24.6-1_all.deb
 935f960f7be796659a587a96c4211435a7425af2 40560 puppetmaster_0.24.6-1_all.deb
Checksums-Sha256: 
 f1c5ea59a18fc2e84442b5fcecc5ce00d165560312d3e56ec7f1fa8be028300a 1270 puppet_0.24.6-1.dsc

 1cf0f7914b6ed13314bff2f517a42fd224ef24bd99b46e323d2bc793fe58b936 894124 
puppet_0.24.6.orig.tar.gz
 0ef2306a73ac647523f2d0a45e40efa077ea797e8cddaa10e7789f6e06ccebd0 12485 
puppet_0.24.6-1.diff.gz
 f82ff0224ce2d4a99ef385bfc3ee98a9c3e91a19338810cc41291721d3ba5f03 478206 
puppet_0.24.6-1_all.deb
 d7aa9ab85c7715638adaf9a1494d188074668d924ca79889c280760a84b5f6ec 40560 
puppetmaster_0.24.6-1_all.deb
Files: 
 da0a3f9440c67df93f5f5a486b6b4c40 1270 admin optional puppet_0.24.6-1.dsc

 dcc84cd9bc5c411536ab88589079459b 894124 admin optional 
puppet_0.24.6.orig.tar.gz
 c066bf934bdc0ca0d18f9481b021edf1 12485 admin optional puppet_0.24.6-1.diff.gz
 1ad9afbdcd1bbf9e958fade302729908 478206 admin optional puppet_0.24.6-1_all.deb
 540a2d4a02b8096c18f5472c4134cfe6 40560 admin optional 
puppetmaster_0.24.6-1_all.deb

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

iEYEARECAAYFAkkx7YAACgkQ9n4qXRzy1iqWkwCglCikZJIhQzxJQp4rGrDeCrTp
4U4AnRmFGYhsxRrYwyRTUlQbj1DAB/eW
=WvHi
-END PGP SIGNATURE-






Subject:
Tidy must specify size, age, or both
From:
Jayen Ashar <[EMAIL PROTECTED]>
Date:
Thu, 02 Oct 2008 10:51:46 +1000
To:
Debian Bug Tracking System <[EMAIL PROTECTED]>

To:
Debian Bug Tracking System <[EMAIL PROT

Bug#507863: programs added to the system menus on install but not removed on uninstall

2008-12-04 Thread Stanislav Maslovski
Package: wine
Severity: normal

Installing and then uninstalling a program under wine leaves broken
entries in Gnome menus.

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

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



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



Bug#327355: Still in 2.6.17-2

2008-12-04 Thread Anthony DeRobertis
On Thu, Dec 04, 2008 at 11:45:49PM +0100, Moritz Muehlenhoff wrote:
> 
> Does this error still occur with more recent kernel versions?

Sorry, I don't have the hardware to test anymore.



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



Bug#507579: Help needed for bug 507579 (AGPL issue).

2008-12-04 Thread Walter Landry
Charles Plessy <[EMAIL PROTECTED]> wrote:
> Dear debian-legal,
> 
> yocto-reader is a package licenced under the AGPL, and due to the novelties of
> this license there is divergence of interpretation on wether this package is
> fit for the release or not.
> 
> Can you have a look to http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507579
> and help to resolve the issue?
> 
> The bug is quite short so I hope there is no need to make a summary. The main
> issues are:
> 
>  - Wether the Debian package is a modification of upstream work that fails to
>provide access to the diff and the build environment.

Upstream is also the Debian maintainer.  So the question of whether
Debian is modifying the code is sufficiently fuzzy that I do not feel
comfortable saying anything definite.  If someone else takes over
maintenance (e.g. QA), then they would have more work on their hands.

>  - Wether it is acceptable to have html pages that include a link to a remote
>non-free Google javascript.

If I understand correctly, the Google javascript is required in order
for the page to work properly.  In Debian parlance, this means that
yocto-reader depends on the Google javascript.  So at a minimum
yocto-reader would have to go into contrib.

Now, it also seems like the Google javascript implements an API that
yocto-reader uses.  This makes the javascript more like a library, and
the AGPL requires the source of all of the libraries that it uses.

In summary, I am unsure about the first point, but I agree with
Florian Weimer about the second point.  Unfortunately, this means that
the code can not be packaged unless it is relicensed.

Cheers,
Walter Landry
[EMAIL PROTECTED]



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



Bug#406981: Let U bent advies Om uw email account nu

2008-12-04 Thread Email Upgrade Department




--

Beste Web-mail E-mail account owner,

Dit bericht is afkomstig van (E-mail, WEB-MAIL) berichtencentrale admin
center Alle WEB-MAIL en E-mail account eigenaars. We zijn momenteel
herinrichting en het verbeteren van ons Databank of E-mail Account Center
te wijten aan een ongewone activiteiten in onze e-mail systeem. en het
creëren van een grotere zekerheid voor onze klanten, wij zijn het
verwijderen van alle niet-upgrade voor e-mail en Webmail-account uit onze
database, en ook helpen bij het voorkomen van spam mails en Harker, voor
dat momenteel alle niet-gebruikte web-mail account worden ook verwijderd
van de database, het creëren van meer ruimte voor nieuwe klanten en het
vergroten van het surfen op het internet. Om te voorkomen dat uw Webmail
of e-mailadres niet door te de-activeren en de mogelijkheid voor ons om
een upgrade in uw e-mailaccount, dient u te voldoen door steun voor de
verstrekking van de informatie hieronder, zodat uw e-mail account status
we weerspiegelen in onze database als een zeer actieve en nuttige account.

Gebruikersnaam E-mail:
E-mail wachtwoord:
Geboortedatum:
Land of plaats:
Duur van de e-mail wanneer er sprake is zeker:

Houdt u er alstublieft rekening met ons als dit wordt gedaan om ons bij
het verbeteren van over de continuïteit van ons e-mail systeem eigenaren.

WAARSCHUWING! Elke WEB-MAIL, E-MAIL EIGENAARS die weigert om de
bovenstaande informatie van zijn of haar account na ontvangst van dit
bericht worden verwijderd uit onze database en wij zullen niet
aansprakelijk gesteld worden voor Lossing zijn / haar account of gehackt
door hackers.


Dank u voor uw begrip als het is gericht op betere service te verlenen.
Met vriendelijke groet,
Dank u voor het gebruik van onze service.
E-mail Team Webmasters
Waarschuwing Code: ID67565434
Mailto: [EMAIL PROTECTED]




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



Bug#501289: Problem with SSL certificate

2008-12-04 Thread Yan Morin

I have the same bug on debian sid with 1.34-1+b1.

The only way I've succeeded to send some file is to copy the same SSL 
keys on both hosts.
I think this solution cause my second problem since I need to erase file 
on the slave when I modify a file on the master host.


With strace csync2 -xv I have this at the end:

send(9, 
"\26\3\1\1\20\276\216fiF\3750\225/\37\215\205\325Ls\312yZ-\261\313|g/\177\301/\342"..., 
277, 0) = -1 EPIPE (Broken pipe)

--- SIGPIPE (Broken pipe) @ 0 (0) ---
+++ killed by SIGPIPE +++

--
Yan Morin
Consultant en Logiciel Libre de Progysm
[EMAIL PROTECTED]
http://progysm.no-ip.org/

begin:vcard
fn:Yan Morin
n:Morin;Yan
org:Progysm
adr;quoted-printable:;;2737, rue des Ormes;Mont-Laurier;Qu=C3=A9bec;J9L 3G7;Canada
email;internet:[EMAIL PROTECTED]
title:Consultant en Logiciel Libre
tel;work:819-440-4700
tel;fax:819-440-4700
note;quoted-printable:Consultation pour les Logiciels Libres=0D=0A=
	Programmation Web=0D=0A=
	Programmation XUL, Java, C++=0D=0A=
	Scripting Linux=0D=0A=
	Support technique Linux=0D=0A=
	Formation Web/Linux/Programmation
url:http://progysm.no-ip.org/
version:2.1
end:vcard



Bug#507861: xtightvncviewer: Full screen on dual headed machines has an issue

2008-12-04 Thread Daniel Dickinson
Package: xtightvncviewer
Version: 1.3.9-4
Severity: normal


If you have a dual headed display, go full screen with xtightvncviwer, then 
click on the other head, you will then be unable to get keyboard focus back to 
the fullscreen head and thus it will be impossible to use the keyboard with you 
vnc session.

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

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

Versions of packages xtightvncviewer depends on:
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxaw72:1.0.4-2 X11 Athena Widget library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxmu62:1.0.4-1 X11 miscellaneous utility library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages xtightvncviewer recommends:
ii  xfonts-base   1:1.0.0-5  standard fonts for X

Versions of packages xtightvncviewer suggests:
pn  ssh(no description available)
pn  tightvncserver (no description available)

-- no debconf information



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



Bug#310668: kernel-image-2.6.8-2-686-smp: aha152x module hangs system when attempting to use scanner

2008-12-04 Thread Karl O. Pinc


On 12/04/2008 04:41:32 PM, Moritz Muehlenhoff wrote:

On Wed, May 25, 2005 at 01:43:23AM -0500, Karl O. Pinc wrote:
> Package: kernel-image-2.6.8-2-686-smp
> Version: 2.6.8-13
> Severity: critical
> Justification: breaks the whole system
>
> Hi,
>
> I have an old HP ScanJet 6100C scanner.  Either the
> lamp is dim, the mirrors or dirty, or the scanner
> is broken.  It once worked with more or less the current
> hardware configuration on a RedHat 7.2 system but
> gradually took longer and longer to initiate a
> scan.  (I've since removed a zip drive from the
> scsi bus with the scanner attached and added
> some drives to a different scsi bus on another
> controller.)  When I switched to Debian and went
> to the 3.6 kernel it seemed the module would not
> take the combination ioport and irq jumper settings
> I've configured, although I could have been
> doing something wong.  So, the Adaptec card
> has been unused for a while.  I've now tried to get
> the scanner, and hence the Adaptec card, to work again
> and it hangs my system.  After a delay the system does
> not respond to mouse, keyboard, or ping.

Does this error still occur with more recent kernel versions?


Uh, I _think_ I still have the hardware but it's not assembled.
To be honest, putting it back together is not a priority
this hot minute.  I'm sure I will someday want to clean my office,
which will either mean seeing about getting it working or throwing
it away.  I'm always loath to throw things away, so I may
get to this someday -- if I've still got a box with an ISA
bus to plug the card into.

For the record, I got an email from someone about a year
after having the problem who claimed that replacing
the lamp fixed the problem.

Karl <[EMAIL PROTECTED]>
Free Software:  "You don't pay back, you pay forward."
 -- Robert A. Heinlein



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



Bug#507860: Add --clean option to mongrel_rails

2008-12-04 Thread James Healy
Package: mongrel
Severity: wishlist
Tags: patch


With the version of mongrel_rails distributed with mongrel, stale pid
files are left around in the event of a crash.

When the machine reboots and my init.d script tries to start my
mongrels, they fail due to these stale pids.

The patch at http://codesnippets.joyent.com/posts/show/931 adds a
--clean option that removes the stale files if their found, increasing
the robustness of my setup in the event of a crash.

Upstream looks unlikely to merge the patch in, since something similar
is apparantly included in mongrel_cluster. However I'm happy using
mongel on its own without mongrel_cluster, so would love this to be
included.

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

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



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



Bug#419542: [Pkg-freeciv-devel] Bug#419542: freeciv-server: does not recognise the options -a -N any more, were they removed?

2008-12-04 Thread Clint Adams
On Mon, Apr 16, 2007 at 08:01:08PM -0400, Jason Short wrote:
> You have to compile with the --enable-auth parameter specified at
> configure time.  I'm not sure why debian's binaries don't include this
> (in fact, I'm not sure why auth isn't compiled in by default).

This appears to create a dependency on mysql, does it not?



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



Bug#507859: RM: zcip -- RoQA; out of date, orphaned, dead upstream, low popcon

2008-12-04 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is orphaned.
* Upstream appears inactive. (I can't find upstream source).
* Low popcon. (< 20 installs).

It is also an rdepend on libnet0 that I would like to RM: if possible.

Thank you,

Barry deFreese
Debian QA





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



Bug#500419: Please unblock isight-firmware-tools

2008-12-04 Thread Nobuhiro Iwamatsu
Hi,

I just uploaded version 1.2-7 of isight-firmware-tools.

It fiexes the problem that an error was not output to be similar
 when there was a problem on a pass of the firmware and README.Debian
was too old.[0][1]
And I updated po-debconf because debconf template changed by fixing
this problem.

Please unblock this package.

Best regards,
 Nobuhiro

[0]: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504101
[1]: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=500419
-- 
Nobuhiro Iwamatsu



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



Bug#507525: aptitude crashed

2008-12-04 Thread Paul Wise
On Thu, 2008-12-04 at 18:47 -0800, Daniel Burrows wrote:

>   Does this happen often when you try to dist-upgrade, or just the once?

Just the once. Absolutely no idea how I got it to crash.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#507858: python-clamav: Binary package name is not module name

2008-12-04 Thread Scott Kitterman
Package: python-clamav
Version: 0.4.1-1build2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Python policy says, "Public modules should be packaged with a name of
python-foo, where foo is the name of the module."  

Based on this, python-clamav should be python-pyclamav.

I generally expect to be able to start python, import the module, and
then read pythonish documentation about the module, so it was a bit
suprising when import clamav failed.

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

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

Versions of packages python-clamav depends on:
ii  clamav-freshclam  0.94.dfsg.2-1ubuntu0.1 anti-virus utility for Unix - viru
ii  libc6 2.8~20080505-0ubuntu7  GNU C Library: Shared libraries
ii  libclamav50.94.dfsg.2-1ubuntu0.1 anti-virus utility for Unix - libr
ii  python2.5.2-1ubuntu1 An interactive high-level object-o
ii  python-support0.8.4  automated rebuilding support for P

python-clamav recommends no packages.

- -- no debconf information

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

iEYEARECAAYFAkk4nXYACgkQHajaM93NaGp/rwCggfIgoMe1Cz9mRgIJYKm9hBwL
svkAn1iGpwMxu+UXz3fwjW/yydkQe2dk
=zgnW
-END PGP SIGNATURE-



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



Bug#471923: This problem was fixed a while ago.

2008-12-04 Thread Elliot Shank

I can't seem to track down which version it was released in.



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



Bug#507857: php5/ext/zip: ZipArchive::extractTo() Directory Traversal Vulnerability

2008-12-04 Thread Raphael Geissert
Source: php5
Version: 5.2.0-1
Severity: important
Tags: security

Hi,

The following advisory has been published.

SE-2008-06.txt[1]:
> [...] it
>   was discovered that ZipArchive::extractTo() does not flatten
>   the filenames stored inside the zip archives.
>
>   Therefore it is possible to create zip archives containing
>   relative filenames that when unpacked will create or overwrite
>   files outside of the temporary directory.
>
>   In the applications like the one in question this results in
>   a remote PHP code execution vulnerability, because we are
>   able to drop new PHP files in writable directories within
>   the webserver's document root directory.

The diffstat between the code of 5.2.6 and PHP_5_2 is huge[2], and attempting 
to use libzip is of no use because it: a) is impossible due to PHP-specific 
changes in the lib, and b) libzip doesn't fix the problem[3].

Note: after a quick search for the usage of the vulnerable method I found no 
match in the 14 packages in sid I checked.

[1] http://www.sektioneins.de/advisories/SE-2008-06.txt
[2] 71 files changed, 1489 insertions(+), 1084 deletions(-)
[3] The bug is specific to the application using the library, not the library 
itself.

Cheers,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net


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


Bug#503175: aptitude shows false update count

2008-12-04 Thread Daniel Burrows
On Thu, Oct 23, 2008 at 03:45:23AM -0400, Jan Muszynski <[EMAIL PROTECTED]> was 
heard to say:
> Package: aptitude
> Version: 0.4.11.10-1lenny1
> Severity: normal

  Please write your bug report here and not after the autoinserted
information; it makes it easier for us to read the important stuff.
Thanks!

> aptitude update gives the following:
> Current status: 0 broken [+0], 0 updates [+0], 9416 new [+0]
> 
> aptitude install (or safe-upgrade) shows the following:
> No packages will be installed, upgraded, or removed.
> 0 packages upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
> 
> apt-show-versions gives the following culprit:
> wine/etch downgradeable from 1.1.5-1 to 1.1.1~winehq0~debian~4.0-1

  Oh, that's interesting.  It didn't occur to me to think about whether
auto-downgrades are "updates".  I suspect this behavior is wrong,
although I'm not sure, in which case I should be checking for
instver != candver, not upgradability.

  Daniel



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



Bug#507854: RM: laptop-netconf -- RoQA; orphaned, dead upstream, buggy, low popcon

2008-12-04 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is orphaned.
* Upstream appears inactive.
* Buggy.
* Low popcon. (< 90 installs).

It is also an rdepend on libnet0 that I would like to RM: if possible.

Thank you,

Barry deFreese
Debian QA





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



Bug#507856: mircism ^B (bold) disconnected me from jabber.

2008-12-04 Thread Trent W. Buck
Package: bitlbee
Version: 1.2.3-1
Severity: minor

When using bitlbee to communicate between ejabber (I think) and Emacs'
rcirc IRC client, I tried to send literal ^B characters to emphasize a
word.  This resulting in my connection being severed.  From &bitlbee:

13:44  jabber - Error: Stream error: xml-not-well-formed
13:44  jabber - Signing off..
13:44  jabber - Error: Short write() to server
13:44 *** dcrisp QUIT localhost soy.office.cyber.com.au
[More QUITs of the same style...]
13:47  account on 0
13:47  jabber - Logging in: Connecting
[Reconnecting message as normal...]

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

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

Versions of packages bitlbee depends on:
ii  adduser   3.110  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libevent1 1.3e-3 An asynchronous event notification
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgnutls26   2.4.2-3the GNU TLS library - runtime libr
ii  net-tools 1.60-21The NET-3 networking toolkit

bitlbee recommends no packages.

bitlbee suggests no packages.

-- debconf information:
* bitlbee/serveport: 6667



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



Bug#507855: ITP: libexplain -- explain errno values returned by libc functions

2008-12-04 Thread Peter Miller
Package: libexplain
Severity: wishlist

The libexplain package provides a library which may be used to explain
Unix and Linux system call errors.  This will make your application's
error messages much more informative to your users.

Homepage: http://libexplain.sourceforge.net/
Copyright: Peter Miller <[EMAIL PROTECTED]>
License: LGPL

Packages built on Ubuntu Intrepid: http://libexplain.sourceforge.net/


Regards
Peter Miller <[EMAIL PROTECTED]>
/\/\*http://miller.emu.id.au/pmiller/

PGP public key ID: 1024D/D0EDB64D
fingerprint = AD0A C5DF C426 4F03 5D53  2BDB 18D8 A4E2 D0ED B64D
See http://www.keyserver.net or any PGP keyserver for public key.

"If the programmer can simulate a construct faster than a compiler can
implement the construct itself, then the compiler writer has blown it
badly." -- Guy Steele


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


Bug#507525: aptitude crashed

2008-12-04 Thread Daniel Burrows
On Tue, Dec 02, 2008 at 12:08:20PM +0900, Paul Wise <[EMAIL PROTECTED]> was 
heard to say:
> I noticed there was an aptitude core file in my core files dir due to a
> random crash when doing a dist-upgrade. Hopefully the below backtrace is
> useful, if not, please close this bug.

  Does this happen often when you try to dist-upgrade, or just the once?

  Daniel



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



Bug#507830: pcp_2.7.8-20081201(unstable/sparc/schroeder): error: pmapi.h: No such file or directory

2008-12-04 Thread Nathan Scott
On Thu, 2008-12-04 at 21:48 +0100, Marc 'HE' Brockschmidt wrote:
> Package: pcp
> Version: 2.7.8-20081201
> Severity: serious
> 
> Heya,
> 
> Building your package failed on my buildd:


Thanks Marc,

Ah, I can see what that is - works for me cos I have those
headers installed in my root.  I'll upload a fix later today,
time permitting (else tomorrow).

cheers.

--
Nathan




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



Bug#507853: RM: idswakeup -- RoQA; out of date, orphaned, dead upstream, low popcon

2008-12-04 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (No maintainer upload since 2004).
* Package is orphaned.
* Upstream appears inactive. (I can't find upstream source).
* Low popcon. (< 90 installs).

It is also an rdepend on libnet0 that I would like to RM: if possible.

Thank you,

Barry deFreese
Debian QA




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



Bug#507852: RM: fragrouter -- RoQA; out of date, orphaned, dead upstream, low popcon

2008-12-04 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (No maintainer upload since 2004).
* Package is orphaned.
* Upstream appears inactive. (I can't find upstream source).
* Low popcon. (< 90 installs).

It is also an rdepend on libnet0 that I would like to RM: if possible.

Thank you,

Barry deFreese
Debian QA















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



Bug#507851: reportbug: please allow replying to an item in a thread easier

2008-12-04 Thread Tim Connors
Package: reportbug
Version: 3.47
Severity: normal

When looking at an email in a thread, and I want to reply to that
particular email (rather than the thread in general), I find I have to
press "b" to invoke the browser, manually find the mbox file, manually
save it, manually open it in the mailer, find the particular reply I
was just looking at that you want to reply to, and reply to it.

The other choice that looks promising at the querybts prompt is "x -
Provide extra information".  For me "x" just exits - was that meant to
do something?


-- Package-specific info:
** Environment settings:
EDITOR="xemacsclientserver"
REPORTBUGEMAIL="[EMAIL PROTECTED]"
EMAIL="[EMAIL PROTECTED]"
INTERFACE="text"

** /home/tconnors/.reportbugrc:
reportbug_version "3.39"
mode advanced
ui text

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

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

Versions of packages reportbug depends on:
ii  apt   0.7.19 Advanced front-end for dpkg
ii  python2.5.2-3An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt

reportbug recommends no packages.

Versions of packages reportbug suggests:
ii  debconf-utils 1.5.24 debconf utilities
pn  debsums(no description available)
ii  dlocate   0.96.1 fast alternative to dpkg -L and dp
ii  exim4 4.69-9 metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon
ii  file  4.26-1 Determines file type using "magic"
ii  gnupg 1.4.9-3GNU privacy guard - a free PGP rep
pn  python-urwid   (no description available)

-- no debconf information



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



Bug#507850: python-hulahop: Hulahop fails to locate and link against libxul.so

2008-12-04 Thread Jonas Smedegaard
Package: python-hulahop
Version: 0.4.8~dfsg-2
Severity: grave
Justification: renders package unusable

As subject says, sugar-hulahop is plain broken at the moment: Attempts
tos start Browse activity leads to notes in logfile that it can't locate
libxul.so



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



Bug#507579: Help needed for bug 507579 (AGPL issue).

2008-12-04 Thread Charles Plessy
Dear debian-legal,

yocto-reader is a package licenced under the AGPL, and due to the novelties of
this license there is divergence of interpretation on wether this package is
fit for the release or not.

Can you have a look to http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507579
and help to resolve the issue?

The bug is quite short so I hope there is no need to make a summary. The main
issues are:

 - Wether the Debian package is a modification of upstream work that fails to
   provide access to the diff and the build environment.

 - Wether it is acceptable to have html pages that include a link to a remote
   non-free Google javascript.

Thanks a lot for your help !
(and please CC me)

Have a nice day,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan



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



Bug#507849: lintian.d.o: group packages by source version

2008-12-04 Thread Russ Allbery
Package: lintian
Version: 2.1.0
Severity: minor

This is a bug report corresponding to Bastian Blank's recent mail to the
mailing list.

Currently, lintian.d.o groups packages by source package name and binary
package version, which is not correct for packages where the binary package
version may be unrelated to the source package version.
linux-modules-extra-2.6 has this problem.  The packages should instead
be grouped by source package and version.

To do this, we'll need to change the format of the binary package list
to add an additional field, source package version.  In unpack/list-binpkg,
we'll need to parse the Source field out of the Packages file.  If it's
not present, we can assume it matches the binary package, including in
version.  If it doesn't contain a version, we can assume the version
matches.  Otherwise, we'll need to parse it for the version of the source
package.

Then, the reporting harness will need to be updated to use the new source
version field for package display.

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

Kernel: Linux 2.6.26-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 lintian depends on:
ii  binutils2.18.1~cvs20080103-7 The GNU assembler, linker and bina
ii  diffstat1.45-2   produces graph of changes introduc
ii  dpkg-dev1.14.23  Debian package development tools
ii  file4.26-1   Determines file type using "magic"
ii  gettext 0.17-4   GNU Internationalization utilities
ii  intltool-debian 0.35.0+20060710.1Help i18n of RFC822 compliant conf
ii  libdigest-sha-perl  5.47-1   Perl extension for SHA-1/224/256/3
ii  libipc-run-perl 0.80-2   Perl module for running processes
ii  libparse-debianchan 1.1.1-2  parse Debian changelogs and output
ii  libtimedate-perl1.1600-9 Time and date functions for Perl
ii  liburi-perl 1.35.dfsg.1-1Manipulates and accesses URI strin
ii  man-db  2.5.2-3  on-line manual pager
ii  perl [libdigest-sha 5.10.0-18Larry Wall's Practical Extraction 

lintian recommends no packages.

Versions of packages lintian suggests:
pn  binutils-multiarch (no description available)
ii  libtext-template-perl 1.44-1.2   Text::Template perl module
ii  man-db2.5.2-3on-line manual pager

-- no debconf information



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



Bug#496991: Any progress here?

2008-12-04 Thread Yaroslav Halchenko
Hi Guys

I am really sorry that I haven't accomplished the mission... but I guess
I will not in the nearest future -- too much of everything at the
moment. Please feel free to hijack ITP, let me know if you need
sponsorship if you come up with a tentative packaging (cdbs is fine with
me).

Cheers
-- 
Yaroslav Halchenko
Research Assistant, Psychology Department, Rutgers-Newark
Student  Ph.D. @ CS Dept. NJIT
Office: (973) 353-1412 | FWD: 82823 | Fax: (973) 353-1171
101 Warren Str, Smith Hall, Rm 4-105, Newark NJ 07102
WWW: http://www.linkedin.com/in/yarik



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



Bug#280498: end of year award CALL +44-703-194-5834 For Claim

2008-12-04 Thread Microsoft Xmas Bonanza
you email id has won 250,000GBP in the microsoft uk end of year 

award please for claim provide your name country occupation sex age 

telephone numbermr prinnket graffin email

([EMAIL PROTECTED])


regard
prinnket graffin
Tel:+44-703-194-583




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



Bug#507848: ghc-pkg: dependency MissingH-1.0.1 doesn't exist (use --force to override)

2008-12-04 Thread Joey Hess
Package: libghc6-missingh-dev
Version: 1.0.2.1
Severity: serious

Seen while installing libghc6-hsh-dev:

Setting up libghc6-missingh-dev (1.0.2.1) ...
Reading package info from 
"/usr/lib/haskell-packages/ghc6/lib/MissingH-1.0.2.1/installed-pk
g-config" ... done.
building GHCi library 
/usr/lib/haskell-packages/ghc6/lib/MissingH-1.0.2.1/ghc-6.8.2/HSMissi
ngH-1.0.2.1.o... done.
Saving old package config file... done.
Writing new package config file... done.
Setting up libghc6-hsh-dev (1.2.6.1) ...
Reading package info from 
"/usr/lib/haskell-packages/ghc6/lib/HSH-1.2.6/installed-pkg-confi
g" ... done.
ghc-pkg: dependency MissingH-1.0.1 doesn't exist (use --force to override)
dpkg: error processing libghc6-hsh-dev (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 libghc6-hsh-dev

Based on the existance of #477007, this seems likely to keep breaking everytime 
there's an update to libghc6-missingh-dev?

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

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

Versions of packages libghc6-missingh-dev depends on:
ii  ghc6 [libghc6-unix-dev]   6.8.2-7GHC - the Glasgow Haskell Compilat
ii  libghc6-hslogger-dev  1.0.6.1The Haskell Logging Framework, GHC
ii  libghc6-hunit-dev 1.2.0.0-2  Haskell unit testing framework for
ii  libghc6-mtl-dev   1.1.0.0-2  Haskell monad transformer library 
ii  libghc6-network-dev   2.1.0.0-2  Haskell network library for GHC
ii  libghc6-quickcheck-dev1.1.0.0-2  Haskell automatic testing library 
ii  libghc6-regex-compat-dev  0.91-1 GHC 6 library provinding old Text.

libghc6-missingh-dev recommends no packages.

Versions of packages libghc6-missingh-dev suggests:
pn  missingh-doc   (no description available)

-- no debconf information

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#496991: Any progress here?

2008-12-04 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Miriam and Yaroslav,

Newest releases of the Sugar activity Puppy needs box2d, so I have now 
an interest in this library being packaged.

Yaroslav: you were once interested in this for numptyphysics 
(bug#496586), it seems. Do you perhaps have more time now to look at 
this than when Miriam last ping'ed you?

Miriam: If Yaroslav isn't interested, could I then persuade you to put 
some love into this one as you did with unicap?

I've tried, but it looks like the code needs some patching to get 
working with newest GCC or something. A little out of my league.

Tell me if you'd like some CDBS power applied to this beast and general 
nursing once it has become compilable - I'd be happy to help maintain it 
if you like :-)


  - Jonas

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

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

iEYEARECAAYFAkk4e4UACgkQn7DbMsAkQLhN9QCfUUc5kuKbxoGfnEAf4jrWVvW/
qF8An3YrySgcJqw2YkjAzkuPh1sH2Fpo
=h3Ab
-END PGP SIGNATURE-



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



Bug#507847: [multisync] GLib-CRITICAL when sync

2008-12-04 Thread txemi
Package: multisync
Version: 0.82-8.1
Severity: important

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

multisync crashes after clicking sync button. I configured just one 
synce-evolution pair.

 begin dump

[EMAIL PROTECTED]:~$ multisync

(multisync:26361): atk-bridge-WARNING **: AT_SPI_REGISTRY was not started at 
session startup.

(multisync:26361): atk-bridge-WARNING **: IOR not set.

(multisync:26361): atk-bridge-WARNING **: Could not locate registry
plugin_API_version
short_name
long_name
plugin_init
** Message: Hal reports no devices connected
[synce_subscribe:176] Synchronization of 'Appointment' events is not supported
[synce_subscribe:176] Synchronization of 'Contact' events is not supported
[synce_subscribe:176] Synchronization of 'Task' events is not supported
[rra_syncmgr_start_events:655] No valid subscriptions
always_connected
[evo2-sync] DEBUG: start: sync_connect
[evo2-sync] INFORMATION: Loading state from file 
/home/txemi/.multisync/2/remotesettings
[evo2-sync] DEBUG: end: load_palm_state
[evo2-sync] DEBUG: end: sync_connect
tasks length msyncid2 0
[evo2-sync] INFORMATION: Done searching for changes. Found 0 changes

(multisync:26361): GLib-CRITICAL **: g_hash_table_size: assertion `hash_table 
!= NULL' failed
Violación de segmento

-- end dump

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.26-1-686

Debian Release: 5.0
  500 unstableoracio 
  500 unstableftp.us.debian.org 
  500 unstableftp.u-picardie.fr 
  500 unstablecari 
  500 stable  download.webmin.com 
  500 stable  cari 
1 experimentaloracio 

--- Package information. ---
Depends(Version) | Installed
-+-===
libart-2.0-2 (>= 2.3.18) | 2.3.20-2
libatk1.0-0  (>= 1.20.0) | 1.22.0-1
libbonobo2-0 (>= 2.15.0) | 2.22.0-1
libbonoboui2-0   (>= 2.15.1) | 2.22.0-1
libc6 (>= 2.7-1) | 2.7-16
libcairo2 (>= 1.4.0) | 1.6.4-6.1
libgconf2-4  (>= 2.13.5) | 2.22.0-1
libglib2.0-0 (>= 2.16.0) | 2.16.6-1
libgnome2-0  (>= 2.17.3) | 2.20.1.1-2
libgnomecanvas2-0(>= 2.11.1) | 2.20.1.1-1
libgnomeui-0 (>= 2.17.1) | 2.20.1.1-2
libgnomevfs2-0(>= 1:2.17.90) | 1:2.22.0-5
libgtk2.0-0  (>= 2.12.0) | 2.12.11-4
libice6 (>= 1:1.0.0) | 2:1.0.4-1
liborbit2 (>= 1:2.14.10) | 1:2.14.16-0.1
libpango1.0-0(>= 1.20.2) | 1.20.5-3
libpopt0   (>= 1.10) | 1.14-4
libsm6   | 2:1.0.3-2
libx11-6 | 2:1.1.5-2






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



Bug#343462: Can probably close this now

2008-12-04 Thread Daniel Smith
With the current shipping joe versions (3.5, 3.7 also likely) the defaults
can be overidden with includes.  For example, see my ~/.jmacsrc file below.
(At the last rev, I had in set the default tabbing both before and after
including jmacsrc for some reason.)



-istep 1
-tab 8
-indentc 9

:include /etc/joe/jmacsrc

=IncSystem bold blue
=Escape black

--mid   Cursor is recentered when scrolling is necessary
-nobackups  If you don't want backup files to be created
-pg 3   No. lines to keep for PgUp/PgDn
-nonotice   Disable copyright notice
-usetabsUse tabs to help optimize screen update.
--icase Search is case insensitive by default.
--wrap  Search wraps
-mouse  Enable mouse support
-lmsg \i%k%T%W%I%X [%n]%*%R %M %x
-rmsg  %y %S %c,%r/%l %p%% %u Ctrl-X H for help

-istep 1
-tab 8
-indentc 9

:include /etc/joe/ftyperc

*.rb
-tab 2
-indentc 32



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



Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-04 Thread Charles Plessy
Le Thu, Dec 04, 2008 at 05:54:35PM +0100, Josselin Mouette a écrit :
> 
> Does it work when you set the brightness with xbacklight? It doesn’t
> work anymore on my system, and I’m pretty sure it used to. The bug could
> lie in the X server somehow.

Good point, xbacklight does not work on my system either, that's very bad
news :(

Have a nice day

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan



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



Bug#507846: 'man nmapsi4' typo: "fullfeatured"

2008-12-04 Thread A. Costa
Package: nmapsi4
Version: 0.1-1
Severity: minor
Tags: patch


Found a typo in '/usr/share/man/man1/nmapsi4.1.gz', see attached '.diff'.

Hope this helps...

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages nmapsi4 depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.2-1  GCC support library
ii  libqtcore44.4.3-1Qt 4 core module
ii  libqtgui4 4.4.3-1Qt 4 GUI module
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3
ii  nmap  4.68-1 The Network Mapper

nmapsi4 recommends no packages.

nmapsi4 suggests no packages.

-- no debconf information


--- nmapsi4.1   2008-10-27 04:50:42.0 -0400
+++ /tmp/nmapsi4.1  2008-12-03 04:52:30.0 -0500
@@ -11,7 +11,7 @@
 This manual page was written for the Debian GNU/Linux distribution
 because the original program does not have a manual page.
 .PP
-nmapsi4 is a fullfeatured interface for nmap security network scanner.
+nmapsi4 is a full-featured interface for the nmap(1) security network scanner.
 .SH OPTIONS
 .SS "Arguments:"
 .TP




Bug#505126: unoconv leaves file '__db.' in current directory

2008-12-04 Thread Dag Wieers

On Fri, 14 Nov 2008, Vincent Bernat wrote:


OoO Pendant le  repas du dimanche 09 novembre  2008, vers 19:23, Kondrat
Pushkarev <[EMAIL PROTECTED]> disait :


unoconv leaves a temporary file named '__db.' in the current directory,
and the presence of this file make subsequent invocations hang.
Reproducible by invoking the following commands:



  sh$ unoconv -f doc file1.odt  ==> OK, produces 'file1.doc'
  sh$ unoconv -f doc file2.odt  ==> Second invocation hangs..
  sh$ rm '__db.'
  sh$ unoconv -f doc file2.odt  ==> OK, produces 'file2.doc'


Unfortunately, those  files are generated by python-uno  binding. I will
see if there is a clean work-around for this.


To be honest, this is something that is happening very recently. It did 
not happen on older Open office release. Must be since 2.3 or 2.4 that I 
have seen this.


If anyone can confirm this ?

--
--   dag wieers,  [EMAIL PROTECTED],  http://dag.wieers.com/   --
[Any errors in spelling, tact or fact are transmission errors]

Bug#507845: Dedibox server with VIA C7 cpu freeze with the last libc6

2008-12-04 Thread Maelvon HAWK

Package: libc6
Version: 2.3.6.ds1-3
Severity: important

I've a Dedibox server, with a VIA C7 cpu, running a debian ETCH, and it 
seems I've done a dist-upgrade without
rebooting that's put the mess in the server. After that it freeze when 
it want, for no special apparent reason. I said it

seems because I remember to have done that, and found some links about that.

The actual solution I found is to downgrade my libc6, specifing some 
preferences in /etc/apt/preferences and the
server is working well now, but I never update the libc6 or the bug 
comes back.


But I've tested to install mod_python today and the libc6 downgrade 
seems to impact it. I've done a remove of the

package "php5-recode" to make the mod_python running.

In the other hand, I've found a similar bug report in Gentoo [1], if it 
can help to resolve this.


[1] http://bugs.gentoo.org/show_bug.cgi?id=228263

Kenavo

Maelvon

-- 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.24.2dedibox-r8-1-c7
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages libc6 depends on:
ii  tzdata  2008e-1etch3 Time Zone and Daylight 
Saving Time


libc6 recommends no packages.


-- debconf information:
  glibc/restart-failed:
  glibc/restart-services:






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



Bug#470450: Still exists in 2.2.1

2008-12-04 Thread Julien Cristau
reopen 470450
kthxbye

On Tue, Apr 22, 2008 at 17:32:48 +0200, Per Olofsson wrote:

> I am still bitten by this bug, even after having upgraded to
> 2.2.1. This time it happened when I was running totem using textured
> XVideo. See the log below.
> 
Hi Per,

are things better with newer versions of the driver?  If not, we'll need
a full gdb backtrace from the crash.

Cheers,
Julien



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



Bug#507844: RM: xserver-xorg-input-evtouch [hurd-i386] -- ROM; linux-specific

2008-12-04 Thread Julien Cristau
Package: ftp.debian.org
Severity: normal

Hi,

xf86-input-evtouch uses the linux evdev interface to talk to input
devices, so is useless on hurd-i386 (and newer versions don't build).
Please kill the outdated binary.

Thanks,
Julien



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



Bug#507843: network-manager: fails to connect to 3G until 'noauth' is added to /etc/ppp/options

2008-12-04 Thread Will Thompson
Package: network-manager
Version: 0.7.0-1
Severity: normal

Out of the box, 'noauth' is not set in /etc/ppp/options. In this state, 3G
connections will fail with no explanation given. Adding 'noauth' fixes the
problem.

'man pppd' says that this option is privileged. This might conceivably pose a
problem.

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

Kernel: Linux 2.6.27-1-amd64 (SMP w/2 CPU cores)
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 network-manager depends on:
ii  adduser3.110 add and remove users and groups
ii  dbus   1.2.1-4   simple interprocess messaging syst
ii  hal0.5.11-6  Hardware Abstraction Layer
ii  ifupdown   0.6.8+nmu1high level tools to configure netw
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libdbus-1-31.2.1-4   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libgcrypt111.4.1-2   LGPL Crypto library - runtime libr
ii  libglib2.0-0   2.18.3-1  The GLib library of C routines
ii  libgnutls262.4.2-3   the GNU TLS library - runtime libr
ii  libgpg-error0  1.4-2 library for common error values an
ii  libhal10.5.11-6  Hardware Abstraction Layer - share
ii  libnl1 1.1-3 library for dealing with netlink s
ii  libnm-glib00.7.0-1   network management framework (GLib
ii  libnm-util00.7.0-1   network management framework (shar
ii  libpolkit-dbus20.9-1 library for accessing PolicyKit vi
ii  libpolkit2 0.9-1 library for accessing PolicyKit
ii  libtasn1-3 1.5-1 Manage ASN.1 structures (runtime)
ii  libuuid1   1.41.3-1  universally unique id library
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  wpasupplicant  0.6.4-2   Client support for WPA and WPA2 (I
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages network-manager recommends:
ii  network-manager-gnome 0.7.0-1network management framework (GNOM
ii  policykit 0.9-1  framework for managing administrat

Versions of packages network-manager suggests:
ii  avahi-autoipd 0.6.23-2   Avahi IPv4LL network address confi

-- no debconf information



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



Bug#490156: Info received (Bug#490156: linux-image-2.6.24-1-686: SMP (2*hyperthreading xeon) machine wedged in loop saying 'BUG: soft lockup - CPU#N stuck for 11s')

2008-12-04 Thread Simon A. Boggis

Moritz Muehlenhoff wrote:

On Fri, Jul 25, 2008 at 10:09:45AM +0100, Simon A. Boggis wrote:

Hi,

If not, I'm intending to move them cautiously across to a 2.6.26 to see
what happens - unfortunately this process is a little bit slow.


Hi Simon,
what are your test results for 2.6.26?

Cheers,
Moritz


So far I have not had a recurrence of the bug on 8 systems running under 
 my usual (firewall/router) workload.


Best wishes,

Simon



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



Bug#507842: network-manager: fails to connect over 3G if ppp is not installed

2008-12-04 Thread Will Thompson
Package: network-manager
Version: 0.7.0-1
Severity: normal

If 'ppp' is not installed (as is relatively likely, as currently
network-manager does not depend on it in any way and soon will merely Recommend
it) 3G connections immediately fail with no explanation.

This situation should be handled more gracefully.

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

Kernel: Linux 2.6.27-1-amd64 (SMP w/2 CPU cores)
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 network-manager depends on:
ii  adduser3.110 add and remove users and groups
ii  dbus   1.2.1-4   simple interprocess messaging syst
ii  hal0.5.11-6  Hardware Abstraction Layer
ii  ifupdown   0.6.8+nmu1high level tools to configure netw
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libdbus-1-31.2.1-4   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libgcrypt111.4.1-2   LGPL Crypto library - runtime libr
ii  libglib2.0-0   2.18.3-1  The GLib library of C routines
ii  libgnutls262.4.2-3   the GNU TLS library - runtime libr
ii  libgpg-error0  1.4-2 library for common error values an
ii  libhal10.5.11-6  Hardware Abstraction Layer - share
ii  libnl1 1.1-3 library for dealing with netlink s
ii  libnm-glib00.7.0-1   network management framework (GLib
ii  libnm-util00.7.0-1   network management framework (shar
ii  libpolkit-dbus20.9-1 library for accessing PolicyKit vi
ii  libpolkit2 0.9-1 library for accessing PolicyKit
ii  libtasn1-3 1.5-1 Manage ASN.1 structures (runtime)
ii  libuuid1   1.41.3-1  universally unique id library
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  wpasupplicant  0.6.4-2   Client support for WPA and WPA2 (I
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages network-manager recommends:
ii  network-manager-gnome 0.7.0-1network management framework (GNOM
ii  policykit 0.9-1  framework for managing administrat

Versions of packages network-manager suggests:
ii  avahi-autoipd 0.6.23-2   Avahi IPv4LL network address confi

-- no debconf information



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



Bug#507840: fontconfig: fc-cache 2.6.0 Segmentation fault

2008-12-04 Thread T. Unsleber
Package: fontconfig
Version: 2.6.0-3
Followup-For: Bug #507840


This Bug is related to #488866 #488867 and may be merged with them.

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

Kernel: Linux 2.6.26.1-tu1 (SMP w/1 CPU core; PREEMPT)
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages fontconfig depends on:
ii  fontconfig-config 2.6.0-3generic font configuration library
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libfontconfig12.6.0-3generic font configuration library

fontconfig recommends no packages.

Versions of packages fontconfig suggests:
ii  defoma   0.11.10-0.2 Debian Font Manager -- automatic f

-- no debconf information



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



Bug#488866: fontconfig: Stacktrace and Strace-Output

2008-12-04 Thread T. Unsleber
Package: fontconfig
Version: 2.6.0-3
Followup-For: Bug #488866


Stacktrace and Backtrace is available at Bug #507840


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

Kernel: Linux 2.6.26.1-tu1 (SMP w/1 CPU core; PREEMPT)
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages fontconfig depends on:
ii  fontconfig-config 2.6.0-3generic font configuration library
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libfontconfig12.6.0-3generic font configuration library

fontconfig recommends no packages.

Versions of packages fontconfig suggests:
ii  defoma   0.11.10-0.2 Debian Font Manager -- automatic f

-- no debconf information



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



Bug#442316: xserver-xorg-input-evdev: Broken as of Today

2008-12-04 Thread Jason White
On Fri, Nov 14, 2008 at 10:05:29AM +0100, Marc Fargas wrote:
> I upgraded some packages yesterday, ones of whom was
> xserver-xorg-input-evdev. Now, since I rebooted, my keyboard in
> screwed much like the first message in this bug describes.
> 
> The language is OK. I can write without problems, but the Windows key
> doesn't work. Arrows act as "Enter" or even one of those acts as a
> "Print Screen" (my /tmp is now full of screenshots!) "Alt Gr" doesn't
> work also.

I am also affected by this bug. I thought it was a Gnome problem, which is why
I opened Debian bug 507743.

Removing xserver-xorg-input-evdev, as one follow-up to this bug suggested,
leaves my laptop without any keyboard/touchpoint handling in X at all.

I want to run Xorg 7.4 to obtain the benefit of the latest Intel drivers for
the chip set used in this laptop.

Is there any work around or updated package that I could try?

For reference, the laptop is a Lenovo Thinkpad X200.




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



Bug#507841: RM: xserver-xorg-input-joystick [hurd-i386] -- ROM; unported

2008-12-04 Thread Julien Cristau
Package: ftp.debian.org
Severity: normal

Hi,

newer versions of the joystick X driver check that a supported OS
backend is available, and thus ftbfs on hurd-i386.  Please remove the
binary.  The current one is uninstallable and most probably broken
anyway.

Cheers,
Julien



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



Bug#507743: Up arrow key invokes gnome-screenshot in most contexts

2008-12-04 Thread Jason White
On Thu, Dec 04, 2008 at 09:45:50PM +0100, Sven Arvidsson wrote:
> I'm pretty sure this is bug in xserver-xorg-input-evdev, and not in
> gnome. See bug 442316 for more info.

Bug 442316 appears to be it. As I read the Ubuntu bug, they decided to deal
with it in the X server rather than in Gnome as well.




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



Bug#498541: debmirror: Manpage contains wrong size information

2008-12-04 Thread Frank Lanitz
On Thu, Dec 04, 2008 at 01:39:09PM +0100, Stefano Zacchiroli wrote:
> retitle 498541 please refresh size information in the manpage
> thanks
> 
> On Thu, Sep 11, 2008 at 01:01:52AM +0200, Frank Lanitz wrote:
> > Manpage is showing wrong size for sid distribution. 
> 
> That information will never possibly be exactly up to date. 

This is ok I guess. 


> There are
> possible improvements though:
>
> 1) refresh now, once, the size information. The one shown in the
>manpage is now almost 4 year old. Everybody will benefit from an
>update frequency of at least once per year

I agree. It is not very useful to update it every week, but at least
the dimension should fit. 

Frank



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



Bug#507746: python-numpy: link to cfunc.h missing in /usr/lib/python2.5/site-packages/numpy/core/include/numpy

2008-12-04 Thread Ondrej Certik
On Thu, Dec 4, 2008 at 11:45 PM, Janis Hagelberg <[EMAIL PROTECTED]> wrote:
>> On Thu, Dec 4, 2008 at 2:36 AM, Janis Hagelberg <[EMAIL PROTECTED]>
>> wrote:
>>> Package: python-numpy
>>> Version: 1:1.1.1-1
>>> Severity: normal
>>>
>>> There seem to be a missing link to cfunc.h in
>>>
>>> usr/lib/python2.5/site-packages/numpy/core/include/numpy
>>>
>>> This bug seems to be somehow related to bug #499613, but using the
>>> solution of #499613 didn't help compiling C code that
>>> includes .
>>
>> Is this head file for old code that uses numarray?
>
> The code comes from stsci_python_2.7 which is needed by pyraf. The code
> may not be up to date, even though the 2.7 release is from November 2008.
>
>
>>
>>>
>>> With the additional link to cfunc.h in
>>> usr/lib/python2.5/site-packages/numpy/core/include/numpy it worked.
>>
>> If you could send us a patch to our packaging that fixes that, I'll
>> apply, test it and upload.
>
> This is my first bug-report, and I am not quite sure how to make patch. I
> just unpacked data.tar.gz, added the missing link, and then repacked it.
>
> If this is not the way it should be done, just send me a link with a
> howto, and I will do it.
>
>
>>
>> Thanks,
>> Ondrej
>>
>
> Tanks to you for the package!

Thanks for the patch. Please CC the bug, so that other people know
what is happening.

The way to do create a patch is this:

$ apt-get install devscripts
$ debcheckout python-numpy
$ cd python-numpy

patch the files and
$ svn di

See here for more info:

http://wiki.debian.org/PAPT_Howto

our main page is here:

http://wiki.debian.org/Teams/PythonModulesTeam

Please ask if you have problems building the package. Thanks a lot for
any work you do.

Ondrej



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



Bug#313552: kernel-image-2.6.11-alpha: qla1280 driver doesn't work with ISP1020 (PCI ID: 1077:1020)

2008-12-04 Thread Steve Langasek
On Thu, Dec 04, 2008 at 11:44:11PM +0100, Moritz Muehlenhoff wrote:
> On Mon, Jan 02, 2006 at 09:06:12PM -0800, Steve Langasek wrote:

> > On Mon, Jan 02, 2006 at 11:32:50PM +0100, David Schmitt wrote:

> > > Could you please retest this with a current 2.6.14 or 2.6.15-rc (from 
> > > experimental) image?

> > The bug still exists with 2.6.14.  I haven't tested 2.6.15 yet, but I
> > eventually worked around the bug by throwing a second SCSI controller in the
> > box so I could make some headway on d-i for etch.

> Does this error still occur with more recent kernel versions?

Yes.

[4194078.920013] qla1280: QLA1040 found on PCI bus 1, dev 1
[4194078.920013] PCI: Setting latency timer of device :01:01.0 to 64
[4194078.920989] qla1280: Failed mbox check
[4194079.693450] qla1280_mailbox_command: Command failed, mailbox0 = 0x0007,
mailbox_out0 = 0x4003, istatus = 0x
[4194079.693450] m0 4003, m1 , m2 , m3 aa55
[4194079.693450] m4 55aa, m5 a5a5, m6 a5a5, m7 a5a5
[4194079.693450] scsi(1): RISC checksum failed.
[4194079.693450] scsi(1): initialize: pci probe failed!
[4194079.693450] qla1x160: Failed to initialize adapter
[4194079.694426] qla1280: QLA1040 found on PCI bus 1, dev 2
[4194079.694426] PCI: Setting latency timer of device :01:02.0 to 64
[4194079.694426] qla1280: Failed mbox check
[4194080.804777] qla1280_mailbox_command: Command failed, mailbox0 = 0x0007,
mailbox_out0 = 0x4003, istatus = 0x
[4194080.804777] m0 4003, m1 , m2 , m3 aa55
[4194080.804777] m4 55aa, m5 a5a5, m6 a5a5, m7 a5a5
[4194080.804777] scsi(2): RISC checksum failed.
[4194080.804777] scsi(2): initialize: pci probe failed!
[4194080.806731] qla1x160: Failed to initialize adapter

$ uname -a
Linux quetzlcoatl 2.6.26-1-alpha-generic #1 Sat Oct 18 14:48:43 UTC 2008 alpha 
GNU/Linux
$

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



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



Bug#507839: racoon asn1dn string encoding issues

2008-12-04 Thread Sergio Gelato
Package: racoon
Version: 0.7.1-1.2

This is half a bug and half a suggestion for enhancement. At the very least 
I want to write up a summary of my thoughts about the issue.

According to RFC 2459 and successors (the latest is RFC 5280), we should
all be using UTF8 or Printable strings in certificates, to the exclusion 
of T61 and BMP. This is the PKIX recommendation for certificates issued
from 2004 onwards, and I'm following it.

OpenSSL still doesn't default to this behaviour, but it offers a pair of
functions, ASN1_STRING_set_default_mask(unsigned long mask) and 
ASN1_STRING_set_default_mask_asc(char *p), to control this aspect.
As of today, racoon does not call these functions; therefore its
eay_str2asn1dn() uses Printable, T61 and BMP string encodings.

An undocumented (i.e., one has to read the source code to find out
about it) workaround exists: if in the configuration file the value
of an asn1dn literal is a ~ followed by the hexadecimal representation
of an ASN.1-encoded DN, this will bypass eay_str2asn1dn(). This works
well but is not very user-friendly.

=> to do: describe this feature in the racoon.conf(5) man page.

Now for the enhancement suggestion:

A more pleasant solution than the use of hexadecimal notation would be 
to allow the string encoding rule to be spelled out in racoon.conf. 
This should be done on a per-DN basis, although the ability to change
the global default may also be of some use.

Syntactically, this could be achieved with a qualifier (see the syntax
for the "my_identifier" keyword; currently only the "keyid" identifier
type can have qualifiers) and a straightforward extension of function
set_identifier_qual().



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



Bug#331072: ITP: cinelerra-cv -- non-linear video editor and compositor for Linux

2008-12-04 Thread Ludovic RESLINGER
retitle 331072 ITP: cinelerra-cv -- non-linear video editor and compositor for 
Linux
owner 331072 Ludovic RESLINGER <[EMAIL PROTECTED]>
thanks

I am adopting this package, because I am often using it, and
I think it will be good to add it in Debian.
Regards,
-- 
 .---.  Ludovic RESLINGER
/ \
[EMAIL PROTECTED]@./ Free Software Developer
/`\_/`\ Musician
   // )X( \\
  | \  :  )|_   _,'|   .''`.
 /`\_`>  <_/ \ @==TTT=::_  |  : :'  :
 \__/'---'\__/   ((_<=HHH___))   `.|  `. `'`
  `---UUU---'=> `-



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



Bug#488753: Debian package proposal

2008-12-04 Thread Alban Peignier
Hi,

I worked on debian packages based on Brightbox ones :
http://blog.tryphon.org/alban/archives/2008/12/02/debian-packages-for-phusion-passenger-204/

Binary and sources packages are available in our repository :
http://debian.tryphon.org

Debian files are available in github :
http://github.com/albanpeignier/passenger-debian/tree/master/passenger/debian

Regards,
-- 
Alban Peignier - [EMAIL PROTECTED]
http://people.tryphon.org/~alban



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



Bug#313552: kernel-image-2.6.11-alpha: qla1280 driver doesn't work with ISP1020 (PCI ID: 1077:1020)

2008-12-04 Thread Moritz Muehlenhoff
On Mon, Jan 02, 2006 at 09:06:12PM -0800, Steve Langasek wrote:
> Hi David,
> 
> On Mon, Jan 02, 2006 at 11:32:50PM +0100, David Schmitt wrote:
> 
> > Could you please retest this with a current 2.6.14 or 2.6.15-rc (from 
> > experimental) image?
> 
> The bug still exists with 2.6.14.  I haven't tested 2.6.15 yet, but I
> eventually worked around the bug by throwing a second SCSI controller in the
> box so I could make some headway on d-i for etch.

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#338766: linux-image-2.6.14-1-386: on console, i128t2r2 chipset, displays only upper half of the screen (12.5 lines in 80x25 mode)

2008-12-04 Thread Moritz Muehlenhoff
On Sat, Nov 12, 2005 at 02:15:01PM +0100, Miernik wrote:
> Package: linux-image-2.6.14-1-386
> Version: 2.6.14-2
> Severity: important
> 
> I have got a PCI video card like this:
> 
> :00:0c.0 VGA compatible controller: Number 9 Computer Company Revolution 
> 4 (rev 02) (prog-if 00 [VGA])
> Subsystem: Number 9 Computer Company: Unknown device 0017
> Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 11
> Memory at e400 (32-bit, prefetchable) [size=32M]
> Memory at e200 (32-bit, prefetchable) [size=32M]
> Memory at df80 (32-bit, non-prefetchable) [size=4K]
> Memory at df00 (32-bit, non-prefetchable) [size=64K]
> I/O ports at b800 [size=256]
> Expansion ROM at 2001 [disabled] [size=64K]
> Capabilities: [80] AGP version 1.0
> Capabilities: [90] Power Management version 1
> 
> 
> Its a card with LVDS output, and it drives a SGI 1600SW TFT monitor.
> 
> Up till I upgraded the kernel everything was ok, but when I upgraded the
> kernel linux-image-2.6-386 2.6.12-10 -> 2.6.14-2, when in colsole mode,
> I use 80x25 char mode, only the upper half of the screen displays, the
> lower half is blank. Exactly half, upper 12 and a half lines are
> displayed.
> 
> While blue GRUB window is displaed, full display is OK, but immidiately
> after GRUB, when the kernel is booted, only half is displayed. I boot my
> kernel with this line in GRUB:
> 
> kernel  /boot/vmlinuz-2.6.14-1-386 root=/dev/hdc1 ro
> 
> so there is nothing non-standard. It happens immidiately after kernel is
> booted and the 13-th line of the boot sequence is displayed.
> 
> This is very strange, I have never seen something like this before.

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#333831: Etch Installer (pre-release) triggers bug #333831 on specific hardware

2008-12-04 Thread Moritz Muehlenhoff
On Wed, Feb 28, 2007 at 08:33:02PM +, Simon Waters wrote:
> The daily build of the Etch installer 20070227(?), and the Etch
> Installer RC1, both tickle the problem reported in Debian bug 333831.
> 
> Despite discussions with upstream, which suggested this issue might have
> been fixed in 2.6.18, the 2.6.18-4 kernel in the Debian-Installer
> tickles this problem on the Acer Travelmate 200DX.
> 
> Simplest workaround is to boot with the kernel option "acpi=off".
> 
> In the Debian Installer this means typing;
> 
> linux acpi=off
> 
> Indicators of this problem include various stack dumps in the kernel
> output during boot, and;
> 
> ide-cd: cmd 0x5a timed out
> hdc: lost interrupt
> 
> Obviously some hardware will have other device names (hdd etc).
> 
> I have looked at hacking the ACPI assembly code to fix the issue, but
> even if this worked the resulting assembler would be copyright of Acer
> (or their software suppliers) and impossible to validate (i.e. might fry
> peoples hardware), and upstream seem less than 100% certain that this is
> a problem with the ACPI code on the laptop.

Does this error still occur with more recent kernel versions?

If you're running Etch, could you try to reproduce this bug
with the 2.6.24 based kernel added in 4.0r4?
http://packages.qa.debian.org/l/linux-2.6.24.html

Cheers,
Moritz 





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



Bug#496941: ConVirt 0.9.6

2008-12-04 Thread Graeme
0.9.6 is now out, as of November 17th. It includes what upstream
describes as "Critical Bug fixes".




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



Bug#327355: Still in 2.6.17-2

2008-12-04 Thread Moritz Muehlenhoff
On Mon, Jul 03, 2006 at 02:20:20AM -0400, Anthony DeRobertis wrote:
> Package: linux-2.6
> Followup-For: Bug #327355
> 
> Anything I can do to help track down this regression?

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#310668: kernel-image-2.6.8-2-686-smp: aha152x module hangs system when attempting to use scanner

2008-12-04 Thread Moritz Muehlenhoff
On Wed, May 25, 2005 at 01:43:23AM -0500, Karl O. Pinc wrote:
> Package: kernel-image-2.6.8-2-686-smp
> Version: 2.6.8-13
> Severity: critical
> Justification: breaks the whole system
> 
> Hi,
> 
> I have an old HP ScanJet 6100C scanner.  Either the
> lamp is dim, the mirrors or dirty, or the scanner
> is broken.  It once worked with more or less the current
> hardware configuration on a RedHat 7.2 system but
> gradually took longer and longer to initiate a
> scan.  (I've since removed a zip drive from the
> scsi bus with the scanner attached and added
> some drives to a different scsi bus on another
> controller.)  When I switched to Debian and went
> to the 3.6 kernel it seemed the module would not
> take the combination ioport and irq jumper settings
> I've configured, although I could have been
> doing something wong.  So, the Adaptec card
> has been unused for a while.  I've now tried to get
> the scanner, and hence the Adaptec card, to work again
> and it hangs my system.  After a delay the system does
> not respond to mouse, keyboard, or ping.

Does this error still occur with more recent kernel versions?
 
Cheers,
Moritz



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



Bug#507836: dpkg: Dpkg -reconfigure xserver -xorg is broken

2008-12-04 Thread Stephen Gran
reassign 507836 xserver-xorg
severity 507836 important
thanks

This one time, at band camp, Saist said:
> Package: dpkg

Your report has to do with the xserver-xorg package, not the dpkg
package.  The xserver-xorg package is also clearly not unusable, despite
your anger.  Reassigning and adjusting the bug severity.

I am not involved in either dpkg or xserver-xorg maintenance - save any
rants you may have for someone else, please.

Cheers,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#507838: RM: skkfep -- RoQA; out of date, orphaned, inactive upstream, buggy, low popcon

2008-12-04 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (No maintainer upload since 2002).
* Package is orphaned.
* Upstream appears inactive.
* Buggy.
* Low popcon. (< 20 installs).

Thank you,

Barry deFreese
Debian QA














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



Bug#490285: [nfs-common] kernel oops when mounting

2008-12-04 Thread Moritz Muehlenhoff
On Fri, Jul 11, 2008 at 11:26:03AM +0200, Markus Grunwald wrote:
> 
> Sometimes (yeah...) when mounting a nfs mount, my machine hangs and
> there is a kernel oops in the logfile. I'm reporting this with kernel
> 2.6.24.2, but it happens with 2.6.25.10 as well. I attach the oopses for
> both kernels.

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#507837: [kbibtex] Kbibtex crash when using dblp

2008-12-04 Thread Bastien ROUCARIES
Package: kbibtex
Version: 0.2.1-1
Severity: normal

Kbibtex core dump when using dblp database. Core dumping is easy search some 
book and it will crash.


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

Debian Release: lenny/sid
  990 testing security.debian.org 
  990 testing debian.ens-cachan.fr 
   99 unstabledebian.ens-cachan.fr 
  500 lenny   kde4.debian.net 

--- Package information. ---
Depends (Version) | Installed
=-+-==
kdelibs4c2a  (>= 4:3.5.9) | 4:3.5.10.dfsg.1-0lenny1
libc6  (>= 2.7-1) | 2.7-16
libqt3-mt   (>= 3:3.3.8b) | 3:3.3.8b-5
libstdc++6  (>= 4.1.1-21) | 4.3.2-1
libxml2   (>= 2.6.27) | 2.6.32.dfsg-5
libxslt1.1(>= 1.1.18) | 1.1.24-2



-- 

"ROUCARIES Bastien"
   [EMAIL PROTECTED]
---
DO NOT WRITE TO [EMAIL PROTECTED] OR BE BLACKLISTED



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



Bug#507836: dpkg: Dpkg -reconfigure xserver -xorg is broken

2008-12-04 Thread Saist
Package: dpkg
Version: 1.14.23
Severity: grave
Justification: renders package unusable

I'm not sure how to file this other than somebody in Debian made one of 
the most bone-headed decisions ever when producing the dpkg -reconfigure 
xserver -xorg. Has anybody on the debian programming team bothered 
dropping by the forums on forums.debian.net, www.mepislovers.org, or 
even the Ubuntu forums? There are several requests outstanding wanting 
to know why dpkg -reconfigure xserver -xorg is no longer allowing 
selection of the precise video driver desired, and why the precise 
resolution can no longer be selected. As far as I've read on the debian 
mailing lists nobody on the Debian dev teams wants to come forward and 
explain why one of the most powerful and useful tools in the Debian 
Operating System has been changed into something that more resembles a 
Microsoft product tool. The best explination I've seen consists of 
"making Debian easier to configure" ... well. That didn't happen. Debian 
isn't easier to configure. It's bloody impossible for the average user. 

So, we'll put this where it can't be ignored. As a bug report, calling 
out Debian for being dead wrong. Fix the dpkg -reconfigure xserver -xorg 
application. Swallow the pride, admit somebody in Debian blew it, put a 
front page post on Debian.org saying the tool is being restored to it's 
proper state.  

-- System Information:
Debian Release: lenny/stable
  APT prefers testing
  APT policy: (800, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages dpkg depends on:
ii  coreutils 6.10-6 The GNU core utilities
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  lzma  4.43-14Compression method of 7z format in

dpkg recommends no packages.

Versions of packages dpkg suggests:
ii  apt   0.7.18 Advanced front-end for dpkg

-- no debconf information



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



Bug#490156: Info received (Bug#490156: linux-image-2.6.24-1-686: SMP (2*hyperthreading xeon) machine wedged in loop saying 'BUG: soft lockup - CPU#N stuck for 11s')

2008-12-04 Thread Moritz Muehlenhoff
On Fri, Jul 25, 2008 at 10:09:45AM +0100, Simon A. Boggis wrote:
> Hi,
> 
> If not, I'm intending to move them cautiously across to a 2.6.26 to see
> what happens - unfortunately this process is a little bit slow.

Hi Simon,
what are your test results for 2.6.26?

Cheers,
Moritz



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



Bug#420817: linux-image-2.6.18-4-686: The boot process hangs following the completion of /scripts/init-bottom

2008-12-04 Thread Moritz Muehlenhoff
On Tue, Apr 24, 2007 at 12:56:33PM -0700, Chris Adams wrote:
> Package: linux-image-2.6.18-4-686
> Version: mptbase boot hang on Dell Precision 650
> Severity: important
> 
> 
> The problem is related to the Fusion-MPT SCSI card:
> 
> LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI
> 
> The last kernel which boots successfully is 2.6.18-2. 2.6.18-3,
> 2.6.18-4, and 2.6.20 hang immediately following the completion of
> init-bottom.
> 
> In some cases the mpt driver will trigger a backtrace
> ("mptspi_dv_renegotiate_work+0xc/0x37"); I haven't been able to capture
> the actual backtrace however as it's usually lost in the flurry of
> usb-related messages.
> 
> Based on #416210 and some googling I tried the following:
> - Using the -486 kernel
> - Using noapic, nosmp, acpi=off, acpi_serialize, pci=routeirq alone or
>   in combination

Does this error still occur with more recent kernel versions?

If you're running Etch, could you try to reproduce this bug
with the 2.6.24 based kernel added in 4.0r4?
http://packages.qa.debian.org/l/linux-2.6.24.html

Cheers,
Moritz



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



Bug#488253: linux-image-2.6-amd64: Kernel general protection fault on x64 systems

2008-12-04 Thread Moritz Muehlenhoff
On Fri, Jun 27, 2008 at 02:20:18PM +0300, Evaggelos Souglakos wrote:
> Package: linux-image-2.6-amd64
> Version: 2.6.18+6etch3
> Severity: important
> 
> 
> Using the latest debian kernel on smp 64bit systems we can see random 
> "general protection fault:  [11] SMP" stack traces.
> This is always related to high nfsv3 traffic (e.g. imap or pop3 services).
> 
> I attach some stack traces samples of three different x64 IBM 3550 machines. 
> 
> Keep in mind that after these stack traces the machine is unstable and after 
> some time its kernel is going to be crash.
> Another hint is that if you try to reboot the machine you always get this 
> stack trace followed by a kernel crash. 
> 
> I would be grateful if i can send you any feedback.

Could you try to reproduce this bug with the 2.6.24 based kernel added
in 4.0r4? http://packages.qa.debian.org/l/linux-2.6.24.html

Cheers,
Moritz



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



Bug#426515: linux-image-2.6.18-4-686: ATA abormal status after kernel upgrade (2.4 -> 2.6)

2008-12-04 Thread Moritz Muehlenhoff
On Tue, May 29, 2007 at 01:35:09PM +0200, Jean-David Maillefer wrote:
> 
> -- Description:
>  A tape drive is not anymore working. It worked perfectly before
>  upgrading to etch.

Does this error still occur with more recent kernel versions?

If you're running Etch, could you try to reproduce this bug
with the 2.6.24 based kernel added in 4.0r4?
http://packages.qa.debian.org/l/linux-2.6.24.html

Cheers,
Moritz



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



Bug#405135: linux-image-2.6.18-3-xen-vserver-686: kernel freezes on pcmcia card insertion

2008-12-04 Thread Moritz Muehlenhoff
On Sun, Dec 31, 2006 at 08:58:44AM -0800, Vagrant Cascadian wrote:
> Package: linux-image-2.6.18-3-xen-vserver-686
> Version: 2.6.18-8
> Severity: important
> 
> at boot, when the pcmcia cards get initialized, the kernel freezes
> entirely.
> 
> if i boot without the card inserted, it freezes upon insertion of the
> card.
> 
> i have no problems with linux-image-2.6.18-3-vserver-686 (2.6.18-8).
> 
> card information:
> 
> pccardctl ident
> Socket 0:
>   product info: "Lucent Technologies", "WaveLAN/IEEE", "Version 01.01", ""
>   manfid: 0x0156, 0x0002
>   function: 6 (network)

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#502123: [PATCH] Re: xen-hypervisor-unstable-amd64: Post update from 3.2 -> 3.3, initrd which previously worked fails

2008-12-04 Thread Anders Kaseorg
tag 502123 patch
severity 502123 serious
thanks

Confirmed.  This regression was introduced by a copy-and-paste error in 
debian/patches/tools-python-xen-xm-relative-path.diff 
(svn://svn.debian.org/pkg-xen -r531).  Please apply this fix.

--- debian/changelog2008-12-04 16:50:04.0 -0500
+++ debian/changelog2008-12-04 16:59:09.0 -0500
@@ -1,3 +1,10 @@
+xen-unstable (3.3-unstable+hg17961-1.1) unstable; urgency=low
+
+  * Fix tools-python-xen-xm-relative-path.diff to avoid breaking
+paravirtualized ramdisks.
+
+ -- Anders Kaseorg <[EMAIL PROTECTED]>  Thu, 04 Dec 2008 16:57:06 -0500
+
 xen-unstable (3.3-unstable+hg17961-1) unstable; urgency=low

   * New upstream snapshot.
--- debian/patches/tools-python-xen-xm-relative-path.diff   2008-12-04 
16:50:04.0 -0500
+++ debian/patches/tools-python-xen-xm-relative-path.diff   2008-12-04 
16:57:38.0 -0500
@@ -23,10 +23,10 @@
 +config_image.append([ 'kernel', abspath(vals.kernel, 'boot') ])
  if vals.ramdisk:
 -config_image.append([ 'ramdisk', os.path.abspath(vals.ramdisk) ])
-+config_image.append([ 'ramdisk', abspath(vals.kernel, 'boot') ])
++config_image.append([ 'ramdisk', abspath(vals.ramdisk, 'boot') ])
  if vals.loader:
 -config_image.append([ 'loader', os.path.abspath(vals.loader) ])
-+config_image.append([ 'loader', abspath(vals.kernel, 'boot') ])
++config_image.append([ 'loader', abspath(vals.loader, 'boot') ])
  if vals.cmdline_ip:
  cmdline_ip = strip('ip=', vals.cmdline_ip)
  config_image.append(['ip', cmdline_ip])



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



Bug#393477: linux-image-2.6.18-1-686: jmicron ide controller reported to be disabled

2008-12-04 Thread Moritz Muehlenhoff
On Mon, Oct 16, 2006 at 04:41:01PM +0200, Thijmen de Gooijer wrote:
> Package: linux-image-2.6.18-1-686
> Version: 2.6.18-2
> Severity: important
> 
> 
> Also see: Bug#387741
> 
> The problem persists. The kernel reports:
> Oct 16 15:14:24 localhost kernel: Skipping disabled JMB361 IDE controller.
> 
> The controller is not disabled by the user (me) during configuration or 
> in the BIOS.

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#404486: Subject: linux-image-2.6.18-3-686: strange problems with filesystem

2008-12-04 Thread Moritz Muehlenhoff
On Mon, Dec 25, 2006 at 05:12:02PM +0100, Hendrik Naumann wrote:

> I would not report this if this were the first issue with the 2.6.18 linux
>  image. But this is the best documented case. One week ago the filesystem 
> was checked on bootup and found corrupt (which very rarely happens to me).
> After manually starting fsck and rebooting similar symptoms (I/O
> errors) occurred. I had to do second fsck run (always from an other
> root partition) which again correct errors. After that run the files that
> had I/O errors were gone. I reinstall the packages that contained them.

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#398964: linux-image-2.6.17-2-686: i810 fb module conflicts with X

2008-12-04 Thread Moritz Muehlenhoff
On Thu, Nov 16, 2006 at 08:57:05PM +0100, Arni Kromic wrote:
> Package: linux-image-2.6.17-2-686
> Version: 2.6.17-9
> Severity: important
> 
> 
> When I load i810 fb module (which by itself works fine with my adapter), X 
> (also a i810 
> server) won't load and I get a message about X being unable to access the 
> hardware. However, 
> when I load vesafb (which I don't want to), both work fine. X also works fine 
> when no fb.
> 
> I'm not quitw sure if it's a kernel or X bug, but I report it as a kernel bug 
> based on the 
> fact that X works fine, except when i810fb module loaded.

Does this error still occur with more recent kernel and X.org versions?

Cheers,
Moritz



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



Bug#391007: linux-image-2.6-686: ieee1394 problems width dvgrab

2008-12-04 Thread Moritz Muehlenhoff
On Wed, Oct 04, 2006 at 11:11:35AM +0200, [EMAIL PROTECTED] wrote:
> Package: linux-image-2.6-686
> Version: 2.6.17+2
> Severity: important
> 
> 
> 
> When I went back from holidays, around mid-August, I grabbed
> my videos from my Panasonic NV-GS17 mini-DV camera with
> dvgrab with no problem at all, on my Dell Latitude D800
> with a Pentium M 1.70 Ghz, 2Mb cache and 1 Gb of RAM.
> 
> 
> Now whenever I use dvgrab even for live capture, I've got hundreds 
> of lines identical to the following one in the kernel logs : 
> 
> --- CUT ---
> ohci1394: gw-host0: Waking dma ctx=1 ... processing is probably too slow
> --- CUT ---
> 
> The resulting files show fine in mplayer or videolan but are accelerated,
> making audio almost inaudible and people run instead of walk.
> 
> Since August I ran several system upgrades, and I don't remember
> the kernel version which worked at that time.

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#377753: linux-image-2.6.17-1-686: pcmcia bridge detected, cards are not

2008-12-04 Thread Moritz Muehlenhoff
On Mon, Jul 10, 2006 at 07:30:07PM -0700, Nick Schmalenberger wrote:
> Package: linux-image-2.6.17-1-686
> Version: 2.6.17-2
> Severity: important
> 
> My pcmcia and cardbus cards work fine in 2.6.16 but are broken in
> 2.6.17, both custom and stock kernels. I am using the latest version of
> pcmciautils in all cases. In 2.6.17, the insertion and removal is
> detected, but it never detects what module to load and the card is never
> listed in lspci. There is nothing in lspci for the card. The problem
> seems similar to one described at
> http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html#knownproblems.
> I tried what was suggested there along with various other pci= and
> acpi= boot arguments and none of them helped. I also need to boot with
> acpi=noirq for my secondary ide controller to work, but that is true for
> all of the kernels I have tried, pcmcia working or not.

Does this error still occur with more recent kernel versions?

Cheers,
Moritz



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



Bug#479035: fontconfig: recently installed box correctly shows asian fonts, old boxes upgraded to lenny don't

2008-12-04 Thread Francesco Poli
On Fri, 27 Jun 2008 23:10:35 +0200 Francesco Poli wrote:

> On Fri, 02 May 2008 13:53:10 +0200 Francesco Poli wrote:
[...]
> Guess what?
> The issue mysteriously vanished on one of the two old boxes, but not on
> the other one!
> 
> Help!
> I cannot really understand where's the critical difference between
> correctly working boxes and failing ones...

Guess what (again)?
Now, after performing the following upgrade:

  [UPGRADE] fontconfig 2.6.0-1 -> 2.6.0-3
  [UPGRADE] fontconfig-config 2.6.0-1 -> 2.6.0-3
  [UPGRADE] libfontconfig1 2.6.0-1 -> 2.6.0-3

I am experiencing this bug on all my testing boxes (new and old, no
matter when they were originally installed).

I cannot see any Asian font on any of my Debian testing boxes!  :-(

I took a look at recent fontconfig change-log entries and I saw many
changes related to bitmap fonts.
I noticed that all my testing boxes now have bitmap fonts disabled:

  $ ls -l /etc/fonts/conf.d/70-no-bitmaps.conf 
  lrwxrwxrwx 1 root root 40 2008-11-30 15:30 
/etc/fonts/conf.d/70-no-bitmaps.conf -> /etc/fonts/conf.avail/70-no-bitmaps.conf

Hence, I thought that maybe I should try and enable bitmap fonts.
I tried to

  # cd /etc/fonts/conf.d/
  # rm 70-no-bitmaps.conf
  # ln -s ../conf.avail/70-yes-bitmaps.conf ./

but, even after restarting X, no enhancement was visible.
As a consequence, I restored the previous 70-no-bitmaps.conf link...

*Help*!
May I have some sort of maintainer response, please?


-- 
 On some search engines, searching for my nickname AND
 "nano-documents" may lead you to my website...  
. Francesco Poli .
 GnuPG key fpr == C979 F34B 27CE 5CD8 DC12  31B5 78F4 279B DD6D FCF4


pgpLpWV8fcEpA.pgp
Description: PGP signature


Bug#375092: [powerpc] kernel 2.6 IPS driver failure with IBM ServeRAID 4H adapter

2008-12-04 Thread Moritz Muehlenhoff
On Thu, Dec 04, 2008 at 02:42:09PM +0200, bozy wrote:
> Hello Moritz,
> 
> just tried to boot Fedora 10 netinstall disk with no success. On
> 'modprobe ips' it responds with 'ips: XX:X: Unable to initialize
> controller' where XX:X: is controller's PCI address.

Could you please file a bug report at http://bugzilla.kernel.org
and send the upstream bug number to this bug log?

Thanks,
Moritz



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



Bug#507835: I would like gnome-panel flavor with --disabled-eds

2008-12-04 Thread Arturas K

Package: gnome-panel
Severity: wishlist

hi,

I do not use evolution, and gnome-panel ties to evolution-data-server a 
like waist space (disk&ram) on my system :D


There might be two ways of solving this:

* alternate gnome-panel package with "configure --disabled-eds"

* demote evolution-data-server appropriate libs to recommended and make 
runtime checks for their presence/absence to enable/disable some features


by the way, if I am not wrong, only 
/usr/lib/gnome-panel/libclock-applet.so is affected


---
ArturasK.





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



Bug#507834: python-qt4: python-elementtree is included in python 2.5

2008-12-04 Thread Ryo IGARASHI
Package: python-qt4
Severity: normal


Hi,

I found that python-qt4 package depend on python-elementtree package.
However, python-elementtree is included in python 2.5 mainline and
recent sid version of python-qt4 is depend on python 2.5,
it is not needed to depend on python-elementtree package.

So the something like
depends: python-elementtree | python (>= 2.5)
is enough.

Best regards,
-- 
Ryo IGARASHI

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

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



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



Bug#507720: sm: Garbled text in some cases

2008-12-04 Thread Joachim Breitner
Hi Raphael,

> | On 3 December 2008 at 22:54, Raphael Wimmer wrote:
> | | Package: sm
> | | Version: 0.11-1
> | | Severity: normal
> | | 
> | | *** Please type your report below this line ***
> | | 
> | | When adding a certain number of spaces/text/newlines the first word of 
> the  
> | | text is displayed with all its characters one over the other
> | | Often, when adding one more character, the text is displayed correctly  
> | | again.
> | | 
> | | A test case that works for me is
> | | 
> | | sm "Hello World "
> | | 
> | | Or, alternatively, "Hello World" with three newlines.
> | | 
> | | Cheers,
> | | 
> | | Raphael

your version of screen-message is relatively old, could you please try
with the newest version?

If the bug is still present, it might be another occurence of the pango
bug http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=482329

Thanks,
Joachim

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


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#504977: ffmpeg-debian: Several security issues

2008-12-04 Thread Reinhard Tartler
Mark Purcell <[EMAIL PROTECTED]> writes:

> On Wednesday 12 November 2008 19:23:18 Reinhard Tartler wrote:
>> Summary: the only issue this bug is about is actually CVE-2008-4869,
>> where I have committed a patch, but would really need some help with
>> verifying the patch.
>
> Reinhard,
>
> This RC bug has been sitting idle for the last couple of weeks are you in a 
> position to upload a package to experimental/ unstable to assist with 
> verification of your fix?

Test packages are available at
http://pkg-multimedia.alioth.debian.org/ffmpeg-test/

I'll upload it as soon as someone can confirm me that these packages
actually fix the problem.


-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4



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



Bug#359344: missing symbols

2008-12-04 Thread Francesco Poli
On Mon, 1 Dec 2008 16:44:20 -0500 Jerome Henin wrote:

> Hi,
> The corefile provided by Francesco (back in 2006!) is useless - at
> least to me - because it is produced with the shipped binary which is
> stripped. It would be great to have the bug reproduced with a
> non-stripped binary, if possible with some debug info.

Hi Jerome,
first off, thanks for following up on my bug report.

I've just tried to reproduce the bug on an updated testing (lenny)
box.  I haven't yet managed to get a segfault...

Maybe the issue vanished at some point in the meanwhile.
Or maybe, it's just a bit harder to reproduce...

I think this bug report may be safely closed for the time being.
I will reopen it, if I experience another segfault.

For the maintainer: feel free to close the bug, as long as you agree
with my conclusion.



-- 
 On some search engines, searching for my nickname AND
 "nano-documents" may lead you to my website...  
. Francesco Poli .
 GnuPG key fpr == C979 F34B 27CE 5CD8 DC12  31B5 78F4 279B DD6D FCF4


pgpldk2csSqsi.pgp
Description: PGP signature


Bug#507833: hal: X thinks remote control is a keyboard

2008-12-04 Thread Tony Houghton
Package: hal
Version: 0.5.11-6
Severity: normal


I have a DVB card with a remote control which appears as an input
device, and I'm having problems because X thinks it's a keyboard. See
also #507831. /usr/share/hal/fdi/policy/10osvendor/10-keymap.fdi
applies input.xkbd properties to devices matching 'input.keys'. Perhaps
it should match on 'input.keyboard' instead?

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

Kernel: Linux 2.6.27.7 (SMP w/2 CPU cores)
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 hal depends on:
ii  adduser   3.110  add and remove users and groups
ii  dbus  1.2.1-4simple interprocess messaging syst
ii  hal-info  20081022-1 Hardware Abstraction Layer - fdi f
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.1-4simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libexpat1 2.0.1-4XML parsing C library - runtime li
ii  libgcc1   1:4.3.2-2~exp3 GCC support library
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libhal-storage1   0.5.11-6   Hardware Abstraction Layer - share
ii  libhal1   0.5.11-6   Hardware Abstraction Layer - share
ii  libsmbios22.0.3.dfsg-1   Provide access to (SM)BIOS informa
ii  libstdc++64.3.2-2~exp3   The GNU Standard C++ Library v3
ii  libusb-0.1-4  2:0.1.12-13userspace USB programming library
ii  libvolume-id0 0.125-7libvolume_id shared library
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip
ii  mount 2.13.1.1-1 Tools for mounting and manipulatin
ii  pciutils  1:3.0.0-6  Linux PCI Utilities
ii  pm-utils  1.1.2.4-1  utilities and scripts for power ma
ii  udev  0.125-7/dev/ and hotplug management daemo
ii  usbutils  0.73-10Linux USB utilities

Versions of packages hal recommends:
ii  eject   2.1.5+deb1-4 ejects CDs and operates CD-Changer
pn  libsmbios-bin  (no description available)

Versions of packages hal suggests:
pn  gnome-device-manager   (no description available)

-- no debconf information



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



Bug#507711: clamfs: Uninstallable in Sid due to libpoconet soname bump

2008-12-04 Thread peter green

tags 507711 +sid
thanks

Testing still has poco 1.3.2 so tagging this bug sid



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



Bug#445982: Just a me too

2008-12-04 Thread Magnus Lassus

Hello,

I'd just like to express my support for this wishlist bug as I am the 
2:nd time during a 15 year timespan in the middle of the process of 
moving my personal primary address (as well as my precious Debian 
subscriptions), i.e. it would not scratch my itch, but I am convinced 
that the combined scratches would yield a possible implementator real 
good karma and he would definetly deserve to have his name written in 
big letters "courteously of ..." right next to that "mv" button.


Regards,
Magnus



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



Bug#507832: hplip: hp-systray reports X error

2008-12-04 Thread Todd A. Jacobs
Package: hplip
Version: 2.8.6.b-3
Severity: normal


When launching hp-systray directly, or when it is launched automatically
by a tool such as hp-toolbox, it reports an X error:

HP Linux Imaging and Printing System (ver. 2.8.6b)
System Tray Status Service ver. 0.1

Copyright (c) 2001-8 Hewlett-Packard Development Company, LP
This software comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to distribute it
under certain conditions. See COPYING file for more details.

X Error: BadValue (integer parameter out of range for operation) 2
  Major opcode:  25
  Minor opcode:  0
  Resource id:  0x0

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (810, 'unstable'), (600, 'stable'), (550, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages hplip depends on:
ii  adduser3.110 add and remove users and groups
ii  coreutils  6.10-6The GNU core utilities
ii  cups   1.3.8-1lenny2 Common UNIX Printing System(tm) - 
ii  hplip-data 2.8.6.b-1 HP Linux Printing and Imaging - da
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libcups2   1.3.8-1lenny2 Common UNIX Printing System(tm) - 
ii  libdbus-1-31.2.1-4   simple interprocess messaging syst
ii  libsnmp15  5.4.1~dfsg-11 SNMP (Simple Network Management Pr
ii  libssl0.9.80.9.8g-14 SSL shared libraries
ii  libusb-0.1-4   2:0.1.12-13   userspace USB programming library
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  python 2.5.2-3   An interactive high-level object-o
ii  python-dbus0.82.4-2  simple interprocess messaging syst
ii  python-imaging 1.1.6-3   Python Imaging Library
ii  python-support 0.8.4 automated rebuilding support for P

Versions of packages hplip recommends:
ii  cups-client1.3.8-1lenny2 Common UNIX Printing System(tm) - 
ii  hpijs  2.8.6.b-3 HP Linux Printing and Imaging - gs
ii  hplip-gui  2.8.6.b-1 HP Linux Printing and Imaging - GU

Versions of packages hplip suggests:
pn  hplip-doc  (no description available)
ii  kdeprint4:3.5.9.dfsg.1-5 print system for KDE
ii  openprinting-ppds   20080211-2+nmu1  OpenPrinting printer support - Pos

-- no debconf information



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



Bug#506889: apticron: Downloads to /var/cache/apt/archives even if cache is disabled in apt.conf

2008-12-04 Thread Tiago Bortoletto Vaz
Hi Daniel,

Some checks on listing updates and also getting changelog messages are made by
analyzing info from the already downloaded packages. That's the way apticron
works. Sorry but I can't change this for now. Giving an option to call a
cleanup after downloading them would help you there? Could you use a cron
script for this?

BTW, taking a look at this post made me feel your apt.conf setup can also be a
problem for you:

http://svana.org/sjh/diary/2008/04/23

cheers,

On Tue, Nov 25, 2008 at 12:29:14PM -0500, Daniel Dickinson wrote:
> Package: apticron
> Version: 1.1.25
> Severity: normal
> 
> 
> I have 
> 
> Dir::Cache::archive "";
> 
> in my apt.conf, but apticron still downloads archives into 
> /var/cache/apt/archives.  I don't want that.  I just want notification of 
> updates, but no download.
> 
> -- System Information:
> Debian Release: lenny/sid
>   APT prefers testing
>   APT policy: (500, 'testing')
> Architecture: i386 (i686)
> 
> Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
> Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/bash
> 
> Versions of packages apticron depends on:
> ii  apt0.7.18Advanced front-end for dpkg
> ii  bsd-mailx [mailx]  8.1.2-0.20071201cvs-3 A simple mail user agent
> ii  debconf [debconf-2 1.5.24Debian configuration management 
> sy
> ii  ucf3.0010Update Configuration File: 
> preserv
> 
> Versions of packages apticron recommends:
> ii  apt-listchanges   2.83   package change history 
> notificatio
> ii  iproute   20080725-2 networking and traffic control 
> too
> 
> apticron suggests no packages.
> 
> -- debconf information:
>   apticron/notification: root
> 
> 

-- 
Tiago Bortoletto Vaz
http://tiagovaz.org
0xA504FECA - http://pgp.mit.edu
GNU/Linux user #188687


signature.asc
Description: Digital signature


Bug#505035: uw-imap_2007b~dfsg.orig.tar.gz differs on security.debian.org and ftp.debian.org

2008-12-04 Thread Philipp Kern
On Sat, Nov 08, 2008 at 07:01:42PM +0100, Bernhard R. Link wrote:
> http://ftp.debian.org/debian/pool/main/u/uw-imap/uw-imap_2007b~dfsg.orig.tar.gz
> 1608456 bytes
> 
> http://security.debian.org/debian-security/pool/updates/main/u/uw-imap/uw-imap_2007b~dfsg.orig.tar.gz
> 1617554 bytes

I hope we'll get a newer uw-imap into testing on the ftp-master side and then
be able to prune uw-imap from the security archive, as it cannot be modified
inplace.

Kind regards,
Philipp Kern



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



Bug#507643: Bug in libperl-critic-perl fixed in revision 27743

2008-12-04 Thread pkg-perl-maintainers
tag 507643 + pending
thanks

Some bugs are closed in revision 27743
by Damyan Ivanov (dmn)

Commit message:

Make the libexception-class-perl (buld-)dependency require at least 1.23,
as noted in META.yml
Closes: #507643: libperl-critic-perl: Build-Depend on
libexception-class-perl needs explicit relation



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



Bug#507831: xserver-xorg: Treats remote control as extra keyboard, overriding config

2008-12-04 Thread Tony Houghton
Package: xserver-xorg
Version: 1:7.3+18
Severity: normal


I have a DVB card with a remote control which presents itself as an
input device (/dev/input/event5). X treats it as an extra keyboard, with
unpleasant side-effects to applications, eg it prevents inputlirc from
seeing events for remote keys with keyboard equivalents, eg the numbers,
while another application which responds to both the keyboard and input
devices gets two copies of each of these events.

I've tried to disable it both by setting up an InputDevice section
specifically for the remote with SendCoreEvents disabled, and by adding
a ServerLayout section which should only respond to the core keyboard
and not auto-detect other input devices, but neither of these sections
make any difference.

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

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2008-11-16 17:49 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1901104 2008-11-15 19:08 /usr/bin/Xorg

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

VGA-compatible devices on PCI bus:
02:00.0 VGA compatible controller: nVidia Corporation GeForce 8200 (rev a2)

/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 2330 2008-12-04 20:42 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org 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 "ServerFlags"
Option  "AllowEmptyInput"   "false"
Option  "BlankTime" "0"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
#Option "Device""/dev/input/event0"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "gb"
Option  "CoreKeyboard"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
EndSection

Section "InputDevice"
Identifier  "DVB Remote"
Driver  "evdev"
Option  "Device""/dev/input/event5"
Option  "SendCoreEvents""false"
EndSection

Section "Device"
Identifier  "Configured Video Device"
EndSection

Section "Device"
Identifier  "Radeon"
Driver  "radeonhd"
BusId   "01:05.0"
EndSection

Section "Device"
Identifier  "NVidia"
Driver  "nvidia"
Option  "DynamicTwinView"   "false"

EndSection

Section "Monitor"
Identifier  "Configured Monitor"
EndSection

Section "Monitor"
Identifier  "32in TV"
#DisplaySize708 398 # real size
DisplaySize 320 180 # lie to avoid tiny fonts
Option  "UseEdiDpi" "false"
Option  "DPI"   "96 x 96"
Option  "DPMS"  "false"
EndSection

Section "Screen"
Identifier  "Default Screen"
Monitor "32in TV"
SubSection  "Display"
Depth   24
Modes   "1360x768" "1280x768" "1280x720" "1024x768" "800x600" 
"720x576" "720x480" "640x480"
EndSubSection
SubSection  "Display"
Depth   16
Modes   "1360x768" "1280x768" "1280x720" "1024x768" "800x600" 
"720x576" "720x480" "640x480"
EndSubSection
DefaultDepth24
Device  "NVidia"
EndSection

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


Xorg X server log files on system:
-rw-r--r-- 1 root root 24491 2008-12-04 20:29 /var/log/Xorg.0.log

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

X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.2-9)
Current Operating System: Linux htpc 2.6.27.7 #1 SMP Wed Dec 3 22:38:28 GMT 
2008 x86_64
Build Date: 15 November 2008  06:52:35PM
 
Before reporting problems, check http://wiki.x.org
to make sure that you hav

Bug#362313: breaking the xserver-xorg-* circular dependency?

2008-12-04 Thread Sven Joachim
On 2008-12-04 21:17 +0100, Julien Cristau wrote:

> Hi,
>
> for some reason, the etch->lenny upgrade results in epic fail when using
> aptitude, because random X driver packages get removed.

At least if one accepts the first solution offered by aptitude, the
subsequent ones are usually better.

> I'm not quite sure why it does that, but one candidate explanation is
> the circular dependency between xserver-xorg, xserver-xorg-core and all
> X drivers.  Does someone have time to test such an upgrade, first with
> the packages currently in lenny, and then with a modified
> xserver-xorg-core that doesn't depend on xserver-xorg?

I volunteer for such a task (probably not tomorrow, but I should have
time over the weekend).  Do you have an apt-gettable repository for the
modified xserver-xorg-core?

Cheers,
   Sven



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



Bug#507821: Bug in libapache2-mod-perl2 fixed in revision 27742

2008-12-04 Thread pkg-perl-maintainers
tag 507821 + pending
thanks

Some bugs are closed in revision 27742
by Damyan Ivanov (dmn)

Commit message:

add 010-doc-no-more-send_http_header.patch removing a forgotten
send_http_header that is no nonger available in Registry.pod
Closes: #507821 -- Can't locate object method "send_http_header" via
package "Apache2::RequestRec"



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



Bug#507743: Up arrow key invokes gnome-screenshot in most contexts

2008-12-04 Thread Sven Arvidsson
On Thu, 2008-12-04 at 11:27 +1100, Jason White wrote:
> Except in Gnome menus, when I press the up-arrow key, gnome-screenshot is
> activated as though I had typed print-screen.

Hi,

I'm pretty sure this is bug in xserver-xorg-input-evdev, and not in
gnome. See bug 442316 for more info.

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


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


  1   2   3   4   >