Bug#425799: marked as done (libc6-i386 tries to overwrite /lib32 symlink made by ncurses)
Your message dated Thu, 24 May 2007 08:47:30 +0200 with message-id <[EMAIL PROTECTED]> and subject line libc6-i386 tries to overwrite /lib32 symlink made by ncurses has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: libc6-i386 Version: 2.5-9 Severity: serious Preparing to replace libc6-i386 2.5-8 (using .../libc6-i386_2.5-9_amd64.deb) ... Unpacking replacement libc6-i386 ... dpkg: error processing /var/cache/apt/archives/libc6-i386_2.5-9_amd64.deb (--unpack): trying to overwrite `/lib32', which is also in package lib32ncurses5 The problem here is that lib32ncurses5 5.6-1 is still installed, and it provides the same symlink... If I let this install fail, and dpkg -i lib32ncurses5 5.6-3, which removes the symlink, then try this again, it all works. -Josh -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.21 (SMP w/2 CPU cores; PREEMPT) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libc6-i386 depends on: pn libc6 (no description available) libc6-i386 recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- This was fixed as of ncurses 5.6-3. -- Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist Email: [EMAIL PROTECTED] Internet: http://people.panthera-systems.net/~daniel-baumann/ --- End Message ---
Bug#425802: spampd: 2.30-17 pulled in by apt-get update; apt-get upgrade ; ; it fails to run w/ syntax error, et al
Package: spampd Version: 2.30-17 Severity: grave Justification: renders package unusable When apt-get tried to start the daemon, it failed with an error indicating a missing } or ]. I found an obvious missing } in a function, added it, but then it complained that $homedir was global but had to be an a package namespace. Adding a my $homdir line where the other neighbor variables are declared silenced that error but replaced it with further errors. (It appears $homedir needs to be a ref to a string rather than a string...) I forced a download to -16 but manually downloading the deb and invoking dkpg --install on it. That version works. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.16.33-vpsX (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 spampd depends on: ii adduser 3.102 Add and remove users and groups ii dpkg 1.14.3 package maintenance system for Deb ii libnet-server-perl0.94-1 An extensible, general perl server ii lsb-base 3.1-23.1 Linux Standard Base 3.1 init scrip ii perl 5.8.8-7Larry Wall's Practical Extraction ii spamassassin 3.2.0-1Perl-based spam filter using text spampd recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#421582: marked as done ([CVE-2007-2459] buffer overflow when reading 8-bit compressed BMP files)
Your message dated Thu, 24 May 2007 06:32:02 + with message-id <[EMAIL PROTECTED]> and subject line Bug#421582: fixed in libimager-perl 0.58-1 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: libimager-perl Version: 0.50-1 Severity: grave Tags: security patch Justification: user security hole I'm the upstream maintainer for the Imager perl module. The BMP reader in Imager 0.56 and earlier can cause a memory overflow in a malloced() buffer when reading an 8-bit/pixel compressed image where a literal or RLE run overflows the scan-line boundary. This typically causes the program to exit with a glibc bug, but it may also be possible to corrupt the memory arena in such a way as to execute arbitrary code, though I don't see how. At the very least this could be a denial of service. I've attached a patch that should apply to Imager 0.45 through 0.56 (with some fuzz). I've released Imager 0.57 to CPAN which fixes this issue. -- System Information: Debian Release: 4.0 APT prefers testing APT policy: (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-4-686 Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages libimager-perl depends on: ii libc6 2.3.6.ds1-13 GNU C Library: Shared libraries ii libfreetype6 2.2.1-5FreeType 2 font engine, shared lib ii libjpeg62 6b-13 The Independent JPEG Group's JPEG ii libpng12-01.2.15~beta5-1 PNG library - runtime ii libt1-5 5.1.0-2Type 1 font rasterizer library - r ii libtiff4 3.8.2-7Tag Image File Format (TIFF) libra ii libungif4g4.1.4-4shared library for GIF images ii perl 5.8.8-7Larry Wall's Practical Extraction ii perl-base [perlapi-5.8.8] 5.8.8-7The Pathologically Eclectic Rubbis ii zlib1g1:1.2.3-13 compression library - runtime libimager-perl recommends no packages. -- no debconf information Index: bmp.c === --- bmp.c (revision 1210) +++ bmp.c (working copy) @@ -916,6 +916,13 @@ } } else if (packed[0]) { + if (x + packed[0] > xsize) { + /* this file is corrupt */ + myfree(line); + i_push_error(0, "invalid data during decompression"); + i_img_destroy(im); + return NULL; + } line[0] = packed[1] >> 4; line[1] = packed[1] & 0x0F; for (i = 0; i < packed[0]; i += 2) { @@ -958,6 +965,13 @@ default: count = packed[1]; + if (x + count > xsize) { + /* this file is corrupt */ + myfree(line); + i_push_error(0, "invalid data during decompression"); + i_img_destroy(im); + return NULL; + } size = (count + 1) / 2; read_size = (size+1) / 2 * 2; if (ig->readcb(ig, packed, read_size) != read_size) { @@ -1113,6 +1127,13 @@ } } if (packed[0]) { + if (x + packed[0] > xsize) { + /* this file isn't incomplete, it's corrupt */ + myfree(line); + i_push_error(0, "invalid data during decompression"); + i_img_destroy(im); + return NULL; + } memset(line, packed[1], packed[0]); i_ppal(im, x, x+packed[0], y, line); x += packed[0]; @@ -1147,6 +1168,14 @@ default: count = packed[1]; + if (x + count > xsize) { + /* runs shouldn't cross a line boundary */ + /* this file isn't incomplete, it's corrupt */ + myfree(line); + i_push_error(0, "invalid data during decompression"); + i_img_destroy(im); + return NULL; + } read_size = (count+1) / 2 * 2; if (ig->readcb(ig, line, read_size) != read_size) { myfree(line); --- End Message --- --- Begin Message --- Source: libimager-perl Source-Version: 0.58-1 We believe that the bug you reported is fixed in the latest version of libimager-perl, which is due to be installed in the Debian FTP archive: libimager-perl_0.58-1.diff.gz to pool/main/libi/libimager-perl/libimager-perl_0.58-1.diff.gz libimager-perl_0.58-1.dsc to pool/main/libi/libimager-perl/libimager-perl_0.58-1.dsc libimager-perl_0.58-1_i386.deb to pool/main/libi/libimager-perl/libimager-perl_0.58-1_i386.deb libimager-perl_0.58.orig.tar.gz to pool/main/libi/libimager-perl/libimager-perl_0.58.orig.tar.gz A summary of the changes between this version and t
Bug#421582: libimager-perl 0.58 is now in incoming
Hey Tony, Two things, I noticed the other day that you picked up a Sourceforge project for libimager-perl (sf.net/projects/imager-perl). I know these things because I approved the request :) Are you going to be moving development there, or just using that as a backup? Secondly, does the update need to be applied to the stable release? If so, I can begin that process. Please let me know. -Jay Bonci [EMAIL PROTECTED] signature.asc Description: This is a digitally signed message part
Processed: Re: Bug#425799: libc6-i386 tries to overwrite /lib32 symlink made by ncurses
Processing commands for [EMAIL PROTECTED]: > reassign 425799 lib32ncurses5 Bug#425799: libc6-i386 tries to overwrite /lib32 symlink made by ncurses Bug reassigned from package `libc6-i386' to `lib32ncurses5'. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#424813: marked as done (php-compat: affected by php4-removal)
Your message dated Thu, 24 May 2007 06:17:02 + with message-id <[EMAIL PROTECTED]> and subject line Bug#424813: fixed in php-compat 1.5.0-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: php-compat Severity: serious User: [EMAIL PROTECTED] Usertags: php4-removal This package has been identified as affected by the removal of php4 in debian. As php4 will soon be removed, it is very important that we: - update the dependencies of all applicable packages to coexist with php5 - remove source and/or binary packages which have no use without php4 for more information on what may need to be done, please see http://wiki.debian.org/PHP4Removal if you have any questions, please contact the debian php maintainers [EMAIL PROTECTED] thanks! --- End Message --- --- Begin Message --- Source: php-compat Source-Version: 1.5.0-2 We believe that the bug you reported is fixed in the latest version of php-compat, which is due to be installed in the Debian FTP archive: php-compat_1.5.0-2.diff.gz to pool/main/p/php-compat/php-compat_1.5.0-2.diff.gz php-compat_1.5.0-2.dsc to pool/main/p/php-compat/php-compat_1.5.0-2.dsc php-compat_1.5.0-2_all.deb to pool/main/p/php-compat/php-compat_1.5.0-2_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. Thomas Goirand <[EMAIL PROTECTED]> (supplier of updated php-compat 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.7 Date: Fri, 18 May 2007 12:34:40 +0800 Source: php-compat Binary: php-compat Architecture: source all Version: 1.5.0-2 Distribution: unstable Urgency: low Maintainer: Thomas Goirand <[EMAIL PROTECTED]> Changed-By: Thomas Goirand <[EMAIL PROTECTED]> Description: php-compat - Provides missing functionality for older versions of PHP Closes: 424813 Changes: php-compat (1.5.0-2) unstable; urgency=low . * Removed php4 dependency as php4 will soon be removed (Closes: #424813) Files: 4ac0205a6a19fbd459d4adb4e49a4e21 575 web optional php-compat_1.5.0-2.dsc 6da9f97269c6c802a1b033d65dda2d0d 2437 web optional php-compat_1.5.0-2.diff.gz 3d86bc01d8870370226189004c5fe166 48384 web optional php-compat_1.5.0-2_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVSlQ+C5cwEsrK54RAjKxAKCMCibVhazBjRq3PFXx+/66s52FoQCdG1BY Pi6B/1LY6oMIgubUOOXWYgo= =vjhv -END PGP SIGNATURE- --- End Message ---
Bug#425799: libc6-i386 tries to overwrite /lib32 symlink made by ncurses
reassign 425799 lib32ncurses5 thanks Joshua Kwan a écrit : > Package: libc6-i386 > Version: 2.5-9 > Severity: serious > > Preparing to replace libc6-i386 2.5-8 (using .../libc6-i386_2.5-9_amd64.deb) > ... > Unpacking replacement libc6-i386 ... > dpkg: error processing > /var/cache/apt/archives/libc6-i386_2.5-9_amd64.deb (--unpack): > trying to overwrite `/lib32', which is also in package lib32ncurses5 > > The problem here is that lib32ncurses5 5.6-1 is still installed, and > it provides the same symlink... If I let this install fail, and dpkg -i > lib32ncurses5 5.6-3, which removes the symlink, then try this again, it > all works. This is a bug in lib32ncurses5, not in libc6-i386. -- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' [EMAIL PROTECTED] | [EMAIL PROTECTED] `-people.debian.org/~aurel32 | www.aurel32.net -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425799: libc6-i386 tries to overwrite /lib32 symlink made by ncurses
Package: libc6-i386 Version: 2.5-9 Severity: serious Preparing to replace libc6-i386 2.5-8 (using .../libc6-i386_2.5-9_amd64.deb) ... Unpacking replacement libc6-i386 ... dpkg: error processing /var/cache/apt/archives/libc6-i386_2.5-9_amd64.deb (--unpack): trying to overwrite `/lib32', which is also in package lib32ncurses5 The problem here is that lib32ncurses5 5.6-1 is still installed, and it provides the same symlink... If I let this install fail, and dpkg -i lib32ncurses5 5.6-3, which removes the symlink, then try this again, it all works. -Josh -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.21 (SMP w/2 CPU cores; PREEMPT) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libc6-i386 depends on: pn libc6 (no description available) libc6-i386 recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425781: Upgrade fails
Hi Daniel, one more thing, you seem to have not taken some conf file changes, the md5sums of your conf files are not correct: On Don, 24 Mai 2007, Daniel Leidert wrote: > e95ae4d6b002ade290425bd74a175a83 /etc/texmf/texmf.d/45TeXinputs.cnf > 15cd7cfba075d781fa71dfd994ca72ce /etc/texmf/texmf.d/65BibTeX.cnf > 7952e5392660042fb4b84e67a3b85463 /etc/texmf/texmf.d/85Misc.cnf > e3b19f249b562f21556a3ea2abc17678 /etc/texmf/texmf.d/95NonPath.cnf Here I have different md5sums. Another question, can you tell me the output of: kpsewhich -progname=pdfetex -show-path .tex Does it contain :/etc/texmf/tex/generic//: ? Best wishes Norbert --- Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena Debian Developer <[EMAIL PROTECTED]> Debian TeX Group gpg DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 --- Arthur felt at a bit of a loss. There was a whole Galaxy of stuff out there for him, and he wondered if it was churlish of him to complain to himself that it lacked just two things: the world he was born on and the woman he loved. --- Douglas Adams, The Hitchhikers Guide to the Galaxy -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425781: Upgrade fails
On Don, 24 Mai 2007, Daniel Leidert wrote: > ! I can't find file `modes'. > l.3 \input modes > ! I can't find file `pdftexconfig.tex'. > l.2 \input pdftexconfig.tex Do you have /etc/texmf/metafont/misc/modes.mf /etc/texmf/tex/generic/config/pdftexconfig.tex ? Best wishes Norbert --- Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena Debian Developer <[EMAIL PROTECTED]> Debian TeX Group gpg DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 --- WIKE (vb.) To rip a piece of sticky plaster off your skin as fast as possible in the hope that it will (a) show how brave you are, and (b) not hurt. --- Douglas Adams, The Meaning of Liff -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425738: madwifi: several DOS-able holes
Hi Bernd and security team, On Thu, 24 May 2007 02:28:12 am Bernd Zeimetz wrote: > Package: madwifi > Version: 0.9.3 > Severity: critical > Tags: security > > Hi, I was wondering how long it would take for someone to file a bug. 0.9.3-2 was uploaded to unstable[0] before the vulnerabilities were made public by the team at madwifi.org. It contained the pertinent patches. > > although I'm pretty sure you know about those issues, it won't be bad to > have them listed in the bugtracker. In case Etch is affected, too, > please get the fixes into r1. > > http://madwifi.org/ticket/1270 > http://madwifi.org/ticket/1335 > http://madwifi.org/ticket/1334 Last time madwifi vulnerabilities were discussed with the security team[1] there was a strong indication that non-free was not cared for[2]. I didn't know how much truth there was to that at the time as there was no further action required then. This time further action could be taken as there do exist security flaws in the madwifi package shipped with etch. The debian security FAQ states[3] that the security team generally don't care for contrib or non-free but they may be influenced into passing on required changes if handed to them on a silver platter by the maintainer or some other developer. A debdiff is attached that would fix the security concerns in madwifi stable version 1:0.9.2+r1842.20061207-2. Below is a brief description of the security concerns taken from the 0.9.3.1 madwifi release announcement, there are no known CVE id's at this time. 1. Remote DoS: insufficient input validation (beacon interval) The beacon interval information that is gathered while scanning for Access Points is not properly validated. This could be exploited from remote to cause a DoS due to a "division by zero" exception. See also: http://madwifi.org/ticket/1270 2. Remote DoS: insufficient input validation (Fast Frame parsing) The code which parses fast frames and 802.3 frames embedded therein does not properly validate the size parameters in such frames. This could be exploited from remote to cause a DoS due to a NULL-pointer dereference. See also: http://madwifi.org/ticket/1335 3. Local DoS: insufficient input validation (WMM parameters) A restricted local user could pass invalid data to two ioctl handlers, causing a DoS due to access being made to invalid addresses. Chances are that this issue also might allow read and/or write access to kernel memory; this has not yet been verified. See also: http://madwifi.org/ticket/1334 I've tested the resulting debian package and it does not change behaviour in ways that will make the end user unhappy as far as I can see. Hopefully it also conforms to guidelines set out in the debian reference for targetting security related fixes to the stable branch. Thanks, Kel. [0] http://packages.qa.debian.org/m/madwifi/news/20070522T134706Z.html [1] http://lists.alioth.debian.org/pipermail/pkg-madwifi-maintainers/2007-April/000626.html [2] http://lists.alioth.debian.org/pipermail/pkg-madwifi-maintainers/2007-April/000634.html [3] http://www.debian.org/security/faq#contrib [4] http://madwifi.org/wiki/Releases/0.9.3.1 diff -u madwifi-0.9.2+r1842.20061207/debian/patches/00list madwifi-0.9.2+r1842.20061207/debian/patches/00list --- madwifi-0.9.2+r1842.20061207/debian/patches/00list +++ madwifi-0.9.2+r1842.20061207/debian/patches/00list @@ -1,0 +2,3 @@ +01_secfix-0.9.3-sizecheck-take3 +02_secfix-0.9.3-wmmparams-take2 +03_secfix-0.9.3-beacon_interval_range diff -u madwifi-0.9.2+r1842.20061207/debian/control madwifi-0.9.2+r1842.20061207/debian/control --- madwifi-0.9.2+r1842.20061207/debian/control +++ madwifi-0.9.2+r1842.20061207/debian/control @@ -2,7 +2,7 @@ Section: non-free/net Priority: optional Maintainer: Debian madwifi team <[EMAIL PROTECTED]> -Uploaders: Loic Minier <[EMAIL PROTECTED]>, Kel Modderman <[EMAIL PROTECTED]>, Matt Brown <[EMAIL PROTECTED]>, Alex Wallis <[EMAIL PROTECTED]> +Uploaders: Loic Minier <[EMAIL PROTECTED]>, Kel Modderman <[EMAIL PROTECTED]>, Matt Brown <[EMAIL PROTECTED]>, Alex Wallis <[EMAIL PROTECTED]> Build-Depends: cdbs, debhelper (>= 5.0.37), bzip2, dpatch Standards-Version: 3.7.2 diff -u madwifi-0.9.2+r1842.20061207/debian/changelog madwifi-0.9.2+r1842.20061207/debian/changelog --- madwifi-0.9.2+r1842.20061207/debian/changelog +++ madwifi-0.9.2+r1842.20061207/debian/changelog @@ -1,3 +1,19 @@ +madwifi (1:0.9.2+r1842.20061207-3) stable-security; urgency=high + + * Backport upstream security fixes: +- Remote DoS: insufficient input validation (beacon interval) + debian/patches/03_secfix-0.9.3-beacon_interval_range.dpatch + http://madwifi.org/ticket/1270 +- Remote DoS: insufficient input validation (Fast Frame parsing) + debian/patches/01_secfix-0.9.3-sizecheck-take3.dpatch + http://madwifi.org/ticket/1335 +- Local DoS: insufficient input validation (WMM parameters) + debian/patches/02_secfix-0.9.3-wmmparams-take2.dpatch + http://madw
Bug#425785: glibc_2.6~20070518-2(sparc/experimental): FTBFS
> | rm -f > /build/buildd/glibc-2.6~20070518/build-tree/sparc-sparc64/elf/ld.so.lds > | nm -u /build/buildd/glibc-2.6~20070518/build-tree/sparc-sparc64/elf/ld.so | > cmp -s /dev/null - > | make[3]: *** > [/build/buildd/glibc-2.6~20070518/build-tree/sparc-sparc64/elf/ld.so] Error 1 % nm -u /build/buildd/glibc-2.6~20070518/build-tree/sparc-sparc64/elf/ld.so U U U U __thread_self -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425785: glibc_2.6~20070518-2(sparc/experimental): FTBFS
Package: glibc Version: 2.6~20070518-2 Severity: serious Hi, your package failed to from source. | Automatic build of glibc_2.6~20070518-2 on odin by sbuild/sparc 98-farm | Build started at 20070523-2327 | ** | Checking available source versions... | Fetching source files... | Reading package lists... | Building dependency tree... | Need to get 15.8MB of source archives. | Get:1 http://sinclair.farm.ftbfs.de experimental/main glibc 2.6~20070518-2 (dsc) [2365B] | Get:2 http://sinclair.farm.ftbfs.de experimental/main glibc 2.6~20070518-2 (tar) [15.1MB] | Get:3 http://sinclair.farm.ftbfs.de experimental/main glibc 2.6~20070518-2 (diff) [726kB] | Fetched 15.8MB in 3s (4133kB/s) | Download complete and in download only mode | ** Using build dependencies supplied by package: | Build-Depends: gettext, make (>= 3.80-1), dpkg-dev (>= 1.13.5), bzip2, lzma, file, quilt, autoconf, sed (>= 4.0.5-4), gawk, debhelper (>= 5.0), linux-libc-dev [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64], mig (>= 1.3-2) [hurd-i386], hurd-dev (>= 20020608-1) [hurd-i386], gnumach-dev [hurd-i386], kfreebsd-kernel-headers [kfreebsd-i386 kfreebsd-amd64], binutils (>= 2.17cvs20070426-1), gcc-4.0 [hurd-i386], gcc-4.1 (>= 4.1.2-5) [!hurd-i386], gcc-4.1 (>= 4.1.2-6) [hppa], gcc-4.1-multilib [amd64 i386 kfreebsd-amd64 powerpc ppc64 s390 sparc], libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], libc6-dev-i386 [amd64], libc6-dev-powerpc [ppc64], libc6-dev-sparc64 [sparc], libc6-dev-s390x [s390], libc0.1-dev-i386 [kfreebsd-amd64] | Build-Depends-Indep: perl, po-debconf (>= 1.0) | Checking for already installed source dependencies... | gettext: already installed (0.16.1-1) | make: already installed (3.81-3 >= 3.80-1 is satisfied) | dpkg-dev: already installed (1.14.2 >= 1.13.5 is satisfied) | bzip2: already installed (1.0.3-6) | lzma: missing | Using default version 4.43-7 (Priority: 990) | file: already installed (4.20-5) | quilt: already installed (0.46-2) | autoconf: already installed (2.61-4) | sed: already installed (4.1.5-1 >= 4.0.5-4 is satisfied) | gawk: already installed (1:3.1.5.dfsg-4) | debhelper: already installed (5.0.49 >= 5.0 is satisfied) | linux-libc-dev: missing | Using default version 2.6.21-2 (Priority: 990) | binutils: already installed (2.17cvs20070426-4 >= 2.17cvs20070426-1 is satisfied) | gcc-4.1: already installed (4.1.2-8 >= 4.1.2-5 is satisfied) | gcc-4.1-multilib: missing | Using default version 4.1.2-8 (Priority: 990) | libc6-dev-sparc64: already installed (2.5-7) | Checking for source dependency conflicts... | /usr/bin/sudo /usr/bin/apt-get --purge $CHROOT_OPTIONS -q -y install lzma linux-libc-dev gcc-4.1-multilib | Reading package lists... | Building dependency tree... | The following packages will be REMOVED: | linux-kernel-headers* | The following NEW packages will be installed: | gcc-4.1-multilib linux-libc-dev lzma | 0 upgraded, 3 newly installed, 1 to remove and 35 not upgraded. | Need to get 851kB/897kB of archives. | After unpacking 6124kB disk space will be freed. | Get:1 http://sinclair.farm.ftbfs.de sid/main linux-libc-dev 2.6.21-2 [728kB] | Get:2 http://sinclair.farm.ftbfs.de sid/main lzma 4.43-7 [123kB] | Fetched 851kB in 0s (3187kB/s) | dpkg: linux-kernel-headers: dependency problems, but removing anyway as you request: | libc6-dev depends on linux-libc-dev | linux-kernel-headers; however: | Package linux-libc-dev is not installed. | Package linux-kernel-headers is to be removed. | (Reading database ... 18403 files and directories currently installed.) | Removing linux-kernel-headers ... | Selecting previously deselected package gcc-4.1-multilib. | (Reading database ... 16799 files and directories currently installed.) | Unpacking gcc-4.1-multilib (from .../gcc-4.1-multilib_4.1.2-8_sparc.deb) ... | Selecting previously deselected package linux-libc-dev. | Unpacking linux-libc-dev (from .../linux-libc-dev_2.6.21-2_sparc.deb) ... | Selecting previously deselected package lzma. | Unpacking lzma (from .../archives/lzma_4.43-7_sparc.deb) ... | Setting up gcc-4.1-multilib (4.1.2-8) ... | Setting up linux-libc-dev (2.6.21-2) ... | Setting up lzma (4.43-7) ... | Checking correctness of source dependencies... | Toolchain package versions: libc6-dev_2.5-7 linux-kernel-headers_=*=PROVIDED=*= gcc-4.1_4.1.2-8 g++-4.1_4.1.2-8 binutils_2.17cvs20070426-4 libstdc++6-4.1-dev_4.1.2-8 libstdc++6_4.2-20070516-1 | -- | gpg: Signature made Mon May 21 03:27:03 2007 CEST using DSA key ID AB963370 | gpg: Can't check signature: public key not found | dpkg-source: extracting glibc in glibc-2.6~20070518 | dpkg-source: unpacking glibc_2.6~20070518.orig.tar.gz | dpkg-source: applying /home/buildd/build/glibc_2.6~20070518-2.diff.gz | dpkg-buildpackage: source package is glibc | dpkg-buildpackage: sourc
Bug#425784: glibc_2.6~20070518-2(hppa/experimental): FTBFS: "Lowlevel primitives for ld.so not implemented"
Package: glibc Version: 2.6~20070518-2 Severity: serious Hi, your package failed to build from source. | Automatic build of glibc_2.6~20070518-2 on meitner by sbuild/hppa 98-farm | Build started at 20070524-0014 | ** | Checking available source versions... | Fetching source files... | Reading package lists... | Building dependency tree... | Need to get 15.8MB of source archives. | Get:1 http://ftp.de.debian.org experimental/main glibc 2.6~20070518-2 (dsc) [2365B] | Get:2 http://ftp.de.debian.org experimental/main glibc 2.6~20070518-2 (tar) [15.1MB] | Get:3 http://ftp.de.debian.org experimental/main glibc 2.6~20070518-2 (diff) [726kB] | Fetched 15.8MB in 1m34s (168kB/s) | Download complete and in download only mode | ** Using build dependencies supplied by package: | Build-Depends: gettext, make (>= 3.80-1), dpkg-dev (>= 1.13.5), bzip2, lzma, file, quilt, autoconf, sed (>= 4.0.5-4), gawk, debhelper (>= 5.0), linux-libc-dev [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64], mig (>= 1.3-2) [hurd-i386], hurd-dev (>= 20020608-1) [hurd-i386], gnumach-dev [hurd-i386], kfreebsd-kernel-headers [kfreebsd-i386 kfreebsd-amd64], binutils (>= 2.17cvs20070426-1), gcc-4.0 [hurd-i386], gcc-4.1 (>= 4.1.2-5) [!hurd-i386], gcc-4.1 (>= 4.1.2-6) [hppa], gcc-4.1-multilib [amd64 i386 kfreebsd-amd64 powerpc ppc64 s390 sparc], libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], libc6-dev-i386 [amd64], libc6-dev-powerpc [ppc64], libc6-dev-sparc64 [sparc], libc6-dev-s390x [s390], libc0.1-dev-i386 [kfreebsd-amd64] | Build-Depends-Indep: perl, po-debconf (>= 1.0) | Checking for already installed source dependencies... | gettext: missing | Using default version 0.16.1-1 (Priority: 500) | make: already installed (3.81-3 >= 3.80-1 is satisfied) | dpkg-dev: already installed (1.14.3 >= 1.13.5 is satisfied) | bzip2: missing | Using default version 1.0.3-7 (Priority: 500) | lzma: missing | Using default version 4.43-7 (Priority: 500) | file: missing | Using default version 4.20-8 (Priority: 500) | quilt: missing | Using default version 0.46-2 (Priority: 500) | autoconf: missing | Using default version 2.61-4 (Priority: 500) | sed: already installed (4.1.5-2 >= 4.0.5-4 is satisfied) | gawk: missing | Using default version 1:3.1.5.dfsg-4 (Priority: 500) | debhelper: missing | Using default version 5.0.49 (Priority: 500) | linux-libc-dev: missing | Using default version 2.6.21-2 (Priority: 500) | binutils: already installed (2.17cvs20070426-6 >= 2.17cvs20070426-1 is satisfied) | gcc-4.1: already installed (4.1.2-8 >= 4.1.2-5 is satisfied) | gcc-4.1: already installed (4.1.2-8 >= 4.1.2-6 is satisfied) | Checking for source dependency conflicts... | /usr/bin/sudo /usr/bin/apt-get --purge $CHROOT_OPTIONS -q -y install gettext bzip2 lzma file quilt autoconf gawk debhelper linux-libc-dev | Reading package lists... | Building dependency tree... | The following extra packages will be installed: | diffstat gettext-base html2text intltool-debian libmagic1 m4 po-debconf | Suggested packages: | autoconf2.13 autobook autoconf-archive gnu-standards autoconf-doc dh-make | cvs gettext-doc procmail graphviz | Recommended packages: | automaken curl wget lynx libmail-sendmail-perl libcompress-zlib-perl | The following packages will be REMOVED: | linux-kernel-headers* | The following NEW packages will be installed: | autoconf bzip2 debhelper diffstat file gawk gettext gettext-base html2text | intltool-debian libmagic1 linux-libc-dev lzma m4 po-debconf quilt | 0 upgraded, 16 newly installed, 1 to remove and 0 not upgraded. | Need to get 1077kB/6397kB of archives. | After unpacking 12.6MB of additional disk space will be used. | WARNING: The following packages cannot be authenticated! | gawk libmagic1 file gettext-base m4 autoconf bzip2 html2text gettext | intltool-debian po-debconf debhelper diffstat linux-libc-dev lzma quilt | Authentication warning overridden. | Get:1 http://ftp.de.debian.org sid/main bzip2 1.0.3-7 [269kB] | Get:2 http://ftp.de.debian.org sid/main linux-libc-dev 2.6.21-2 [661kB] | Get:3 http://ftp.de.debian.org sid/main lzma 4.43-7 [147kB] | Fetched 1077kB in 10s (99.1kB/s) | dpkg: linux-kernel-headers: dependency problems, but removing anyway as you request: | libc6-dev depends on linux-libc-dev | linux-kernel-headers; however: | Package linux-libc-dev is not installed. | Package linux-kernel-headers is to be removed. | (Reading database ... 9603 files and directories currently installed.) | Removing linux-kernel-headers ... | Selecting previously deselected package gawk. | (Reading database ... 8392 files and directories currently installed.) | Unpacking gawk (from .../gawk_1%3a3.1.5.dfsg-4_hppa.deb) ... | Selecting previously deselected package libmagic1. | Unpacking libmagic1 (from .../libmagic1_4.20-8_hppa.deb) ... | Selecting previously deselected package file. | Unpacking file (from .../archives/file_4.20-8_hppa.deb) ... | Selec
Processed: block 425605 with 425486
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > block 425605 with 425486 Bug#425486: libpoppler-qt-dev: misses a qt header => creates FTBFSes Bug#425605: kdegraphics - FTBFS: error: poppler-link-qt3.h: No such file or directory Was not blocked by any bugs. Blocking bugs of 425605 added: 425486 > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#424955: marked as done (kdeedu: FTBFS with new boost libraries)
Your message dated Thu, 24 May 2007 03:20:38 +0200 with message-id <[EMAIL PROTECTED]> and subject line Bug#424955: kdeedu: FTBFS with new boost libraries has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: kdeedu Version: 4:3.5.6-2 Severity: serious Just a note that kdeedu fails to build with the new boost version 1.34.0: ... checking boost/shared_ptr.hpp usability... yes checking boost/shared_ptr.hpp presence... yes checking for boost/shared_ptr.hpp... yes configure: WARNING: Kig needs the Python and Boost.Python libraries and their headers installed for its Python scripting support. One of both was not found, or the versions were incompatible, and Python scripting will be disabled. ... touch debian/stamp-man-pages test -e obj-i486-linux-gnu/kig/scripting/libscripting.la make: *** [common-build-arch] Error 1 I'll probably look into fixing this, if necessary, while I'm doing packaging for the upcoming kde 3.5.7 release. -- Daniel Schepler --- End Message --- --- Begin Message --- Version: 4:3.5.7-1 On Fri, May 18, 2007 at 09:46:55AM +0200, Sune Vuorela wrote: > tag 424955 +pending > thanks > > On Friday 18 May 2007, Daniel Schepler wrote: > > Package: kdeedu > > Version: 4:3.5.6-2 > > Severity: serious > > > > Just a note that kdeedu fails to build with the new boost version 1.34.0: > > Fixed in commit 6232 to pkg-kde svn. Will be uploaded when 3.5.7 is released > next week. KDE 3.5.7 is already in unstable, but we forgot close this bug in the changelog: kdeedu (4:3.5.7-1) unstable; urgency=low +++ Changes by Sune Vuorela: * New upstream version. - fix issues with accented chars in ktouch. (Closes: #360985) - kwordquiz desktop file is now installed the right place. - patch upstream build system regarding boost. It doesn't find the debian boost version. Thanks to Daniel Schepler for doing the nice checks in debian/rules to catch this. +++ Changes by Daniel Schepler: * debian/control: Add kgeography to the kdeedu metapackage. -- Sune Vuorela <[EMAIL PROTECTED]> Wed, 16 May 2007 12:29:33 +0200 Closing! Ana --- End Message ---
Processed: [bts-link] source package gcalctool
Processing commands for [EMAIL PROTECTED]: > # > # bts-link upstream status pull for source package gcalctool > # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html > # > user [EMAIL PROTECTED] Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]). > # remote status report for #423946 > # * http://bugzilla.gnome.org/show_bug.cgi?id=439985 > # * remote status changed: ASSIGNED -> RESOLVED > # * remote resolution changed: (?) -> FIXED > # * closed upstream > tags 423946 + fixed-upstream Bug#423946: gcalctool: storage registers lose data There were no tags set. Tags added: fixed-upstream > usertags 423946 - status-ASSIGNED Bug#423946: gcalctool: storage registers lose data Usertags were: status-ASSIGNED. Usertags are now: . > usertags 423946 + status-RESOLVED resolution-FIXED Bug#423946: gcalctool: storage registers lose data There were no usertags set. Usertags are now: resolution-FIXED status-RESOLVED. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425781: Upgrade fails
Package: texlive-base Version: 2007-7 Severity: grave -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Todays upgrade failed. The "log" is attached. I guess, the issue is caused in texlive-base-bin, but I'm not sure (and no expert for tex packages), so I leave it here for the moment. Regards, Daniel ## List of ls-R files - -rw-r--r-- 1 root users 1391 2007-05-24 00:23 /var/lib/texmf/ls-R lrwxrwxrwx 1 root root 29 2007-04-16 01:05 /usr/share/texmf/ls-R -> /var/lib/texmf/ls-R-TEXMFMAIN lrwxrwxrwx 1 root root 27 2007-05-24 00:16 /usr/share/texmf-texlive/ls-R -> /var/lib/texmf/ls-R-TEXLIVE lrwxrwxrwx 1 root root 27 2007-05-24 00:16 /usr/share/texmf-texlive/ls-R -> /var/lib/texmf/ls-R-TEXLIVE ## Config files lrwxrwxrwx 1 root root 20 2007-04-16 01:05 /usr/share/texmf/web2c/texmf.cnf -> /etc/texmf/texmf.cnf - -rw-r--r-- 1 root root 4627 2007-05-24 00:23 /var/lib/texmf/web2c/fmtutil.cnf - -rw-r--r-- 1 root root 7268 2007-05-24 00:23 /var/lib/texmf/web2c/updmap.cfg - -rw-r--r-- 1 root root 4819 2007-05-24 00:23 /var/lib/texmf/tex/generic/config/language.dat ## Files in /etc/texmf/web2c/ insgesamt 0 ## md5sums of texmf.d 25bf3a257a0bedb5c67349c3eaff74af /etc/texmf/texmf.d/05TeXMF.cnf 3b2d2ef73d731db452ed1bfdf8eabd4b /etc/texmf/texmf.d/05TeXMF.cnf.dpkg-old 5f7f6652cc8b8071c9e4ea6ba9e9f0a1 /etc/texmf/texmf.d/15Plain.cnf e95ae4d6b002ade290425bd74a175a83 /etc/texmf/texmf.d/45TeXinputs.cnf 9411ee616c8423f4f3c32359dee74795 /etc/texmf/texmf.d/45TeXinputs.cnf.dpkg-old ea33127256c6a9f37145ae5b16fdb80c /etc/texmf/texmf.d/55Fonts.cnf 15cd7cfba075d781fa71dfd994ca72ce /etc/texmf/texmf.d/65BibTeX.cnf 9da7c1c7b1eaf06f941af91f48a23068 /etc/texmf/texmf.d/75DviPS.cnf 731d2c9ebf22e8f636f7bad7858ee6d2 /etc/texmf/texmf.d/75DviPS.cnf.dpkg-old 7952e5392660042fb4b84e67a3b85463 /etc/texmf/texmf.d/85Misc.cnf 743d1cefb4f11e48cd8cad1092c1c8ff /etc/texmf/texmf.d/85Misc.cnf.dpkg-old 92e13107fe95c3f681df94e0235d0e45 /etc/texmf/texmf.d/90tex4ht.cnf 7e8f87acdeba48edac16d851c77b9e75 /etc/texmf/texmf.d/90TeXDoc.cnf e3b19f249b562f21556a3ea2abc17678 /etc/texmf/texmf.d/95NonPath.cnf 5e42201ef8b41fe090b6facdc7e71497 /etc/texmf/texmf.d/95NonPath.cnf.dpkg-old - -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (850, 'unstable'), (700, 'testing'), (550, 'stable'), (110, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.20.3 (PREEMPT) Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash Versions of packages texlive-base depends on: ii texlive-base-bin 2007-8 TeX Live: Essential binaries ii texlive-common2007-7 TeX Live: Base component ii texlive-doc-base 2007-3 TeX Live: Base documentation Versions of packages texlive-base recommends: pn dvipdfmx (no description available) pn lmodern(no description available) Versions of packages tex-common depends on: ii debconf 1.5.13 Debian configuration management sy ii ucf 3.001 Update Configuration File: preserv Versions of packages texlive-base is related to: pn tetex-base (no description available) pn tetex-bin (no description available) pn tetex-extra(no description available) - -- debconf information: tex-common/check_texmf_wrong: tex-common/check_texmf_missing: tex-common/singleuser: false -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVMDXm0bx+wiPa4wRAlVeAJ9ycHj7bA/uGA45JGq7wRp/LHDofwCfbAEe vLfzTTHIa7WEL5jrIZyNEII= =3FoU -END PGP SIGNATURE- fmtutil: running `mf-nowin -ini -jobname=mf -progname=mf -translate-file=cp227.tcx mf.ini' ... This is METAFONT, Version 2.71828 (Web2C 7.5.6) (INIMF) (/usr/share/texmf-texlive/web2c/cp227.tcx) (/usr/share/texmf-texlive/metafont/config/mf.ini (/usr/share/texmf-texlive/metafont/base/plain.mf Preloading the plain base, version 2.71: preliminaries, basic constants and mathematical macros, macros for converting from device-independent units to pixels, macros and tables for various modes of operation, macros for drawing and filling, macros for proof labels and rules, macros for character and font administration, and a few last-minute items.)kpathsea: Running mktexmf modes ! I can't find file `modes'. l.3 \input modes Please type another input file name: ! Emergency stop. l.3 \input modes Transcript written on mf.log. Error: `mf-nowin -ini -jobname=mf -progname=mf -translate-file=cp227.tcx mf.ini' failed fmtutil: running `pdftex -ini -jobname=etex -progname=etex -translate-file=cp227.tcx *etex.ini' ... This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) (INITEX) %&-line parsing enabled
Bug#417121: can you reproduce with a later kernel?
hey Subhashis, Can you attempt to reproduce this bug with the 2.6.21 kernel in sid? It would be good to know if this still exists in recent kernels before forwarding this upstream. If you can reproduce, please include the entire output of 'dmesg' in your follow-up. -- dann frazier -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425075: sylpheed-claws-gtk2: Quits with error about plugin after first use
tags 425075 moreinfo unreproducible thanks Hi, On Fri, 18 May 2007 23:28:42 +0100 Richard Thrippleton <[EMAIL PROTECTED]> wrote: > Package: sylpheed-claws-gtk2 > Version: 2.6.0-1.1 > Severity: grave > Justification: renders package unusable > > After initially encountering the error, I removed all .sylpheed* files > from my home directory, and started sylpheed-claws-gtk2. After configuring > it with name, address, servers etc., an "Error" dialogue popped up containg > "Sylpheed-Claws has detected a configured mailbox, but could not load it. > It is probably provided by an out-of-date external plugin. Please > reinstall the plugin and try again." with no more details. After clicking > Close (no other options in the dialogue), the program quit. > Just to be doubly sure, I reproduced this again with no sylpheed related > configuration in my home directory. I appear not to have any other > sylpheed-related packages installed (such as plugins). I've installed a plain etch system and didn't found any problem installing sylpheed-claws-gtk2. Are you setting your Mail (or equivalent) directory to a Maildir folder by chance? Please send me the output of «ls -la ~/Mail» (or Mail equivalent if you renamed it). regards, -- Ricardo Mones http://people.debian.org/~mones «Your society will be sought by people of taste and refinement.» signature.asc Description: PGP signature
Bug#425742: gnome-session: completely breaks desktop
On Mi, 2007-05-23 at 22:06 +0200, Josselin Mouette wrote: > Le mercredi 23 mai 2007 à 19:36 +0200, Julien Langer a écrit : > > With gnome-session 2.18.0-2 gnome refuses to start. It hangs during > the > > startup with the splash screen. > > Also most other X software cannot be started while gnome-session is > > hanging. > > It seems like gnome-session is blocking /tmp/.ICE-unix/ since > the > > strace of most other programs I tried to start looks like the > following: > > > > connect(10, {sa_family=AF_FILE, path=/tmp/.ICE-unix/9497}, 21) = 0 > > fcntl64(10, F_SETFD, FD_CLOEXEC)= 0 > > write(10, 0100, 8)= 8 > > read(10, > > > > I also noticed that this doesn't seem to happen with all user > accounts on my > > machine. > > Could you send us your .gnome2/session file? Does it help if you move > it > away? > I did not have a session file since I never saved one and disabled the automatic save feature in gnome-session-settings. And that also seems to be the problem, -2 refuses to start when no session file is present. I just saved one with -1 and now -2 also starts. However -2 should also work without a session file. Interestingly with the created session file the splash screen doesn't disappear anymore (only when left clicked. This did not happen without a session file in -1) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425454: cowbuilder deletes bind-mounted directories in some cases
I can actually reproduce this: mkdir /tmp/bindmount touch /tmp/bindmount/some_file cowbuilder --login --basepath /var/cache/pbuilder/base-lenny.cow --bindmounts /tmp/bindmount Then close the terminal (KDE konsole in my case) and the file /tmp/bindmount/some_file will be deleted I guess something gets a SIGHUP and doesn't handle it correctly. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#423462: Bug#425700: sendmail_8.14.1-4(ia64/unstable): FBTFS: >= has no left operand
merge 425595 423462 thanks On Wed, May 23, 2007 at 08:03:47AM -0700, Richard A Nelson wrote: > On Wed, 23 May 2007, Martin Michlmayr wrote: > >* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2007-05-23 06:48]: > >>> from editmap.c:41: > >>>../../include/sm/conf.h:1478:27: error: operator '>=' has no left operand > >>>../../include/sm/conf.h:1527:27: error: operator '>=' has no left operand > >This is because of headers, see #425595 > Yes, a user reported this, so I added (and it is in -4) > Build-Depends: make (>> 3.79.1-14), m4, patch, debhelper (>= 4.1.68), > linux-kernel-headers > Ah > Package: linux-libc-dev > Source: linux-2.6 > Version: 2.6.21-2 > Replaces: linux-kernel-headers, linux-libc-headers > Provides: linux-kernel-headers > Conflicts: linux-kernel-headers, linux-libc-headers > So, the mess gets worse - postfix, sendmail, gcj, and a plethor of other > packages :( > In general, I agree with Steve's comment about user code and the linux/* > header space. Well, waldi disagrees and he usually has no problem breaking userspace use of kernel headers when it's the right thing to do ;), so I think this change in linux-libc-dev is going to be reverted. > However, I don't see a workaround for sendmail/postfix - who are looking > not at the running kernel, but for a working feature set indication... And > there is not current API that I am aware of that provides this, other > than the headers :( Yes, I understand that the linux/* header set may > not match the extant kernel :( Right. > I have a few possible fixes: > Can we get linux-libc-dev to *NOT* provide linux-kernel-headers ? I don't see any reason that it would hurt for l-l-d to drop the provides:, but that won't help you anyway because l-k-h is deprecated and will be going away as soon as l-l-d is fully on its feet. > Although, I think the *BEST* idea would be for linux-libc-dev to > actually define LINUX_VERSION_CODE to the lowest level of kernel that is > supported (now, what - 2.6.18?). Yep. Cheers, -- Steve Langasek Give me a lever long enough and a Free OS Debian Developer to set it on, and I can move the world. [EMAIL PROTECTED] http://www.debian.org/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#411863: marked as done (octave2.9 eats up all memory)
Your message dated Wed, 23 May 2007 23:36:21 +0200 with message-id <[EMAIL PROTECTED]> and subject line Bug was fixed in 2.9.9 packages has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: octave2.9 Version: 2.9.9-8 Severity: important Tags: fixed-upstream The following one-liner in Octave 2.9 uses up all memory until the OOM killer kicks in: inline ("[x]") The patch from https://www.cae.wisc.edu/pipermail/bug-octave/2006-October/000903.html fixes this. A more complicated example from octave2.9-forge's unit tests has the same problem: === clear all A=[ 1, 4, 2, 5,54,55,61,62; 3, 6, 3, 1,58,53,67,65; 3, 6, 3, 1,58,53,67,65; 3, 6, 3, 1,58,53,67,65; 23,42,42,42,99,99,99,99; 27,42,42,42,99,99,99,99; 23,22,26,25,99,99,99,99; 22,22,24,22,99,99,99,99]; first_eq=inline("(A(1,1,:)!=(54*ones(1,1,[size(A),1](3(:)","A"); === This means the unit tests can't be run on the buildds. Thomas -- System Information: Debian Release: 4.0 APT prefers unstable APT policy: (700, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-4-686 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Versions of packages octave2.9 depends on: ii atlas3-base [liblapack.s 3.6.0-20.6 Automatically Tuned Linear Algebra ii atlas3-sse2 [liblapack.s 3.6.0-20.6 Automatically Tuned Linear Algebra ii fftw33.1.2-1 library for computing Fast Fourier ii lapack3 [liblapack.so.3] 3.0.2531a-6 library of linear algebra routines ii libc62.3.6.ds1-12GNU C Library: Shared libraries ii libgcc1 1:4.1.1-21 GCC support library ii libgfortran1 4.1.1-21Runtime library for GNU Fortran ap ii libglpk0 4.11-2 linear programming kit (shared lib ii libhdf5-serial-1.6.5-0 [ 1.6.5-3 Hierarchical Data Format 5 (HDF5) ii libncurses5 5.5-5 Shared libraries for terminal hand ii libpcre3 6.7-1 Perl 5 Compatible Regular Expressi ii libreadline5 5.2-2 GNU readline and history libraries ii libstdc++6 4.1.1-21The GNU Standard C++ Library v3 ii libufsparse 1.2-7 collection of libraries for comput ii refblas3 [libblas.so.3] 1.2-8 Basic Linear Algebra Subroutines 3 ii texinfo 4.8.dfsg.1-4Documentation system for on-line i ii zlib1g 1:1.2.3-13 compression library - runtime octave2.9 recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- Package: octave2.9 Version: 2.9.9-9 thanks This bug was fixed in an upload to experimental and later on in uploads for unstable. Thomas --- End Message ---
Processed: Re: Bug#417593: Do not install scrollkeeper files.
Processing commands for [EMAIL PROTECTED]: > found 417593 3:2.10.2-3 Bug#417593: Do not install scrollkeeper files. Bug marked as found in version 3:2.10.2-3. > severity 417593 serious Bug#417593: Do not install scrollkeeper files. Severity set to `serious' from `important' > stop Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425680: samba: The security fix for CVE-2007-2446 broke Samba
Quoting Daniel Franganillo ([EMAIL PROTECTED]): > Subject: samba: The security fix for CVE-2007-2446 broke Samba > Package: samba > Version: 3.0.24-6 > Severity: grave > Justification: renders package unusable > > This is a copy of a bug opened upstream. A patch is avaliable for > 3.0.25 but not for 3.0.24 on etch. > It happens on i386, and alpha. 3.0.24-etch2 suffers from the bug too. Thanks for taking care to report it. I working on building samba 3.0.24-6etch3 and will pass it on to the security team. signature.asc Description: Digital signature
Bug#415667: marked as done (ksudoku - FTBFS: trying to create local folder /srv: Permission denied)
Your message dated Wed, 23 May 2007 20:32:16 + with message-id <[EMAIL PROTECTED]> and subject line Bug#415667: fixed in ksudoku 0.4-1.1 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: ksudoku Version: 0.4-1 Severity: serious There was an error while trying to autobuild your package: > Automatic build of ksudoku_0.4-1 on lxdebian.bfinv.de by sbuild/s390 98 [...] > -- Installing /build/buildd/ksudoku-0.4/debian/ksudoku/usr/bin/ksudoku > CMake Error: Error in cmake code at > /build/buildd/ksudoku-0.4/src/cmake_install.cmake:31: > FILE cannot create directory: > /build/buildd/ksudoku-0.4/debian/ksudoku/usr/trying to create local folder > /srv: Permission denied > trying to create local folder /srv: Permission denied > trying to create local folder /srv: Permission denied > /usr/share/applications/kde. Maybe need administrative privileges. > Current CMake stack: > /build/buildd/ksudoku-0.4/cmake_install.cmake;/build/buildd/ksudoku-0.4/src/cmake_install.cmake > make[1]: *** [install] Error 255 > make[1]: Leaving directory `/build/buildd/ksudoku-0.4' > make: *** [install] Error 2 > ** > Build finished at 20070319-2324 > FAILED [dpkg-buildpackage died] --- End Message --- --- Begin Message --- Source: ksudoku Source-Version: 0.4-1.1 We believe that the bug you reported is fixed in the latest version of ksudoku, which is due to be installed in the Debian FTP archive: ksudoku_0.4-1.1.diff.gz to pool/main/k/ksudoku/ksudoku_0.4-1.1.diff.gz ksudoku_0.4-1.1.dsc to pool/main/k/ksudoku/ksudoku_0.4-1.1.dsc ksudoku_0.4-1.1_i386.deb to pool/main/k/ksudoku/ksudoku_0.4-1.1_i386.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. Sune Vuorela <[EMAIL PROTECTED]> (supplier of updated ksudoku 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.7 Date: Thu, 17 May 2007 13:16:00 +0200 Source: ksudoku Binary: ksudoku Architecture: source i386 Version: 0.4-1.1 Distribution: unstable Urgency: low Maintainer: Ryan Schultz <[EMAIL PROTECTED]> Changed-By: Sune Vuorela <[EMAIL PROTECTED]> Description: ksudoku- sudoku puzzle generator/solver Closes: 415667 Changes: ksudoku (0.4-1.1) unstable; urgency=low . * Non-maintainer upload. * Fix build and clean to actually do it the way it is supposed with cmake - like a seperate builddir. This also makes building twice actually giving the same diff.gz. * Set $HOME to a place where we can write. Make sure to remove it in clean. Fixes FTBFS on buildds where $HOME doesn't exist. (Closes: 415667) Files: a788873a726d0767dff4a3acb7eb7b9e 601 games optional ksudoku_0.4-1.1.dsc 30b55bd88dc74fb631311ea7b4d742e3 3982 games optional ksudoku_0.4-1.1.diff.gz 24eac0f66ad84809291fec2d981e4d4f 200736 games optional ksudoku_0.4-1.1_i386.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGTKHNJdKMxZV9WM8RAjEoAJ9ZBr3OBCZQOJZjfzKF1ovKDVcZZQCg50x3 ybT+PwKqtBSX2cEOppodkKA= =r00R -END PGP SIGNATURE- --- End Message ---
Bug#421140: fix for FTBFS
Hello! Attached is a fix for this bug (texlive dep change). -- Kees Cook@outflux.net diff -u libgtkada2-2.8.1/debian/control libgtkada2-2.8.1/debian/control --- libgtkada2-2.8.1/debian/control +++ libgtkada2-2.8.1/debian/control @@ -2,7 +2,7 @@ Section: libs Priority: optional Maintainer: Ludovic Brenta <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.2.13), gnat (>= 4.1), libglade2-dev, libpopt-dev, libgnomeui-dev, libglu1-xorg-dev | libglu1-mesa-dev, perl, texinfo, quilt, tetex-bin +Build-Depends: debhelper (>= 4.2.13), gnat (>= 4.1), libglade2-dev, libpopt-dev, libgnomeui-dev, libglu1-xorg-dev | libglu1-mesa-dev, perl, texinfo, quilt, texlive, texlive-generic-recommended Standards-Version: 3.7.2 Package: libgtkada2-dev
Bug#425752: accerciser: Can't install because of scrollkeeper files
On Wed, May 23, 2007 at 10:10:05PM +0200, Josselin Mouette <[EMAIL PROTECTED]> wrote: > clone 425752 -1 > reassign -1 gthumb > retitle -1 gthumb: package contains scrollkeeper files > thanks > > Le mercredi 23 mai 2007 à 20:57 +0200, Mike Hommey a écrit : > > Package: accerciser > > Version: 0.1.2-7 > > Severity: serious > > Justification: File conflict > > > > Installing accerciser fails with the following error: > > Unpacking accerciser (from .../accerciser_0.1.2-7_i386.deb) ... > > dpkg: error processing /var/cache/apt/archives/accerciser_0.1.2-7_i386.deb > > (--unpack): > > trying to overwrite `/var/lib/scrollkeeper/C/scrollkeeper_cl.xml', which > > is also in package gthumb > > dpkg-deb: subprocess paste killed by signal (Broken pipe) > > Errors were encountered while processing: > > /var/cache/apt/archives/accerciser_0.1.2-7_i386.deb > > E: Sub-process /usr/bin/dpkg returned an error code (1) > > Thanks for your report. This spots a similar bug in gthumb, BTW. Which was #417593 ;) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425742: gnome-session: completely breaks desktop
Le mercredi 23 mai 2007 à 19:36 +0200, Julien Langer a écrit : > With gnome-session 2.18.0-2 gnome refuses to start. It hangs during the > startup with the splash screen. > Also most other X software cannot be started while gnome-session is > hanging. > It seems like gnome-session is blocking /tmp/.ICE-unix/ since the > strace of most other programs I tried to start looks like the following: > > connect(10, {sa_family=AF_FILE, path=/tmp/.ICE-unix/9497}, 21) = 0 > fcntl64(10, F_SETFD, FD_CLOEXEC)= 0 > write(10, 0100, 8)= 8 > read(10, > > I also noticed that this doesn't seem to happen with all user accounts on my > machine. Could you send us your .gnome2/session file? Does it help if you move it away? -- .''`. : :' : We are debian.org. Lower your prices, surrender your code. `. `' We will add your hardware and software distinctiveness to `-our own. Resistance is futile. signature.asc Description: Ceci est une partie de message numériquement signée
Bug#425752: accerciser: Can't install because of scrollkeeper files
clone 425752 -1 reassign -1 gthumb retitle -1 gthumb: package contains scrollkeeper files thanks Le mercredi 23 mai 2007 à 20:57 +0200, Mike Hommey a écrit : > Package: accerciser > Version: 0.1.2-7 > Severity: serious > Justification: File conflict > > Installing accerciser fails with the following error: > Unpacking accerciser (from .../accerciser_0.1.2-7_i386.deb) ... > dpkg: error processing /var/cache/apt/archives/accerciser_0.1.2-7_i386.deb > (--unpack): > trying to overwrite `/var/lib/scrollkeeper/C/scrollkeeper_cl.xml', which is > also in package gthumb > dpkg-deb: subprocess paste killed by signal (Broken pipe) > Errors were encountered while processing: > /var/cache/apt/archives/accerciser_0.1.2-7_i386.deb > E: Sub-process /usr/bin/dpkg returned an error code (1) Thanks for your report. This spots a similar bug in gthumb, BTW. -- .''`. : :' : We are debian.org. Lower your prices, surrender your code. `. `' We will add your hardware and software distinctiveness to `-our own. Resistance is futile. signature.asc Description: Ceci est une partie de message numériquement signée
Processed: Re: Bug#425752: accerciser: Can't install because of scrollkeeper files
Processing commands for [EMAIL PROTECTED]: > clone 425752 -1 Bug#425752: accerciser: Can't install because of scrollkeeper files Bug 425752 cloned as bug 425765. > reassign -1 gthumb Bug#425765: accerciser: Can't install because of scrollkeeper files Bug reassigned from package `accerciser' to `gthumb'. > retitle -1 gthumb: package contains scrollkeeper files Bug#425765: accerciser: Can't install because of scrollkeeper files Changed Bug title to `gthumb: package contains scrollkeeper files' from `accerciser: Can't install because of scrollkeeper files'. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#411953: Author has removed invariant section
The latest version of this manual has no invariant section. You are now free to modify all 314 pages of this manual, including the half a page that previously made it non-free. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: severity of 420081 is grave
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.9.26 > severity 420081 grave Bug#420081: jabber: stops responding as soon as s2s is used Severity set to `grave' from `important' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#399271: oke doke
Thanks for tracking these down, I'll upload a fix soon. -- -><- Nick Rusnov -><- http://nick.industrialmeats.com -><- [EMAIL PROTECTED]/[EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425752: accerciser: Can't install because of scrollkeeper files
Package: accerciser Version: 0.1.2-7 Severity: serious Justification: File conflict Installing accerciser fails with the following error: Unpacking accerciser (from .../accerciser_0.1.2-7_i386.deb) ... dpkg: error processing /var/cache/apt/archives/accerciser_0.1.2-7_i386.deb (--unpack): trying to overwrite `/var/lib/scrollkeeper/C/scrollkeeper_cl.xml', which is also in package gthumb dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/accerciser_0.1.2-7_i386.deb E: Sub-process /usr/bin/dpkg returned an error code (1) I think something similar to what is proposed in #417593 would be the best solution. Mike -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.21-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 accerciser depends on: pn at-spi (no description available) ii gconf22.18.0.1-3 GNOME configuration database syste pn ipython(no description available) ii python2.4.4-6An interactive high-level object-o ii python-glade2 2.10.4-2 GTK+ bindings: Glade support ii python-gnome2 2.18.2-1 Python bindings for the GNOME desk ii python-gnome2-desktop 2.18.0-2 Python bindings for the GNOME desk ii python-gtk2 2.10.4-2 Python bindings for the GTK+ widge ii python-pyorbit2.14.2-2 A Python language binding for the ii python-support0.6.4 automated rebuilding support for p accerciser recommends no packages. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425744: marked as done (libcrypt-openssl-rsa-perl: missing dependency on libcrypt-openssl-bignum-perl)
Your message dated Wed, 23 May 2007 18:47:03 + with message-id <[EMAIL PROTECTED]> and subject line Bug#425744: fixed in libcrypt-openssl-rsa-perl 0.24-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: libcrypt-openssl-rsa-perl Version: 0.24-1 Severity: serious Justification: Must depend on required packages -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I detected this error when starting the new spamassassin: [7028] error: Can't locate Crypt/OpenSSL/Bignum.pm in @INC (@INC contains: /usr/share/perl5 /etc/perl /usr/local/lib/per l/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl) at /u sr/lib/perl5/Crypt/OpenSSL/RSA.pm line 17. The RSA.pm module requires the Bignum package at line 17: BEGIN { eval { require Crypt::OpenSSL::Bignum; }; } Installing the libcrypt-openssl-bignum-perl package fixed the error, so I suggest adding the bignum package to the dependencies. Thanks, Bastian - -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.21treasure2 (PREEMPT) Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Shell: /bin/sh linked to /bin/bash Versions of packages libcrypt-openssl-rsa-perl depends on: ii libc6 2.5-8 GNU C Library: Shared libraries ii libssl0.9.8 0.9.8e-5 SSL shared libraries libcrypt-openssl-rsa-perl recommends no packages. - -- no debconf information -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVH+WeBwlBDLsbz4RArxrAKDIO7n3tqGzycEiE/1W1gCsrSEnZQCgwjet 1hTj5+9JB1iziqP9V86wOlU= =alSG -END PGP SIGNATURE- --- End Message --- --- Begin Message --- Source: libcrypt-openssl-rsa-perl Source-Version: 0.24-2 We believe that the bug you reported is fixed in the latest version of libcrypt-openssl-rsa-perl, which is due to be installed in the Debian FTP archive: libcrypt-openssl-rsa-perl_0.24-2.diff.gz to pool/main/libc/libcrypt-openssl-rsa-perl/libcrypt-openssl-rsa-perl_0.24-2.diff.gz libcrypt-openssl-rsa-perl_0.24-2.dsc to pool/main/libc/libcrypt-openssl-rsa-perl/libcrypt-openssl-rsa-perl_0.24-2.dsc libcrypt-openssl-rsa-perl_0.24-2_i386.deb to pool/main/libc/libcrypt-openssl-rsa-perl/libcrypt-openssl-rsa-perl_0.24-2_i386.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. Luk Claes <[EMAIL PROTECTED]> (supplier of updated libcrypt-openssl-rsa-perl 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.7 Date: Wed, 23 May 2007 20:03:22 +0200 Source: libcrypt-openssl-rsa-perl Binary: libcrypt-openssl-rsa-perl Architecture: source i386 Version: 0.24-2 Distribution: unstable Urgency: high Maintainer: Luk Claes <[EMAIL PROTECTED]> Changed-By: Luk Claes <[EMAIL PROTECTED]> Description: libcrypt-openssl-rsa-perl - Perl module providing basic RSA functionality Closes: 425744 Changes: libcrypt-openssl-rsa-perl (0.24-2) unstable; urgency=high . * Add dependency on libcrypt-openssl-bignum-perl (Closes: #425744). Files: 111888937aee41f2b75dba56e2c47390 664 perl optional libcrypt-openssl-rsa-perl_0.24-2.dsc 24d86ec17a76641f091f6af797132ecc 1821 perl optional libcrypt-openssl-rsa-perl_0.24-2.diff.gz bcc7ae480b94be5689433e612fce9df9 29608 perl optional libcrypt-openssl-rsa-perl_0.24-2_i386.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVIj45UTeB5t8Mo0RAi8wAKDA1iFISfamEO0CwOEJcjzN+tU5QgCgzTjS ra8ppjbUm0RwZIGjDp0YCPU= =8zBU -END PGP SIGNATURE- --- End Message ---
Processed: severity of 425672 is grave
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > severity 425672 grave Bug#425672: icedove: Can't send any emails, can't open compose message window Severity set to `grave' from `normal' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: severity of 425559 is grave
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > severity 425559 grave Bug#425559: Not possible to compose in Icedove 2 Severity set to `grave' from `normal' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: severity of 425552 is grave
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > severity 425552 grave Bug#425552: Scrolling doesn't work in Icedove 2 Severity set to `grave' from `normal' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: severity of 425479 is grave
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > severity 425479 grave Bug#425479: Symlinks still aren't fixed Severity set to `grave' from `serious' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425744: libcrypt-openssl-rsa-perl: missing dependency on libcrypt-openssl-bignum-perl
Package: libcrypt-openssl-rsa-perl Version: 0.24-1 Severity: serious Justification: Must depend on required packages -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I detected this error when starting the new spamassassin: [7028] error: Can't locate Crypt/OpenSSL/Bignum.pm in @INC (@INC contains: /usr/share/perl5 /etc/perl /usr/local/lib/per l/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl) at /u sr/lib/perl5/Crypt/OpenSSL/RSA.pm line 17. The RSA.pm module requires the Bignum package at line 17: BEGIN { eval { require Crypt::OpenSSL::Bignum; }; } Installing the libcrypt-openssl-bignum-perl package fixed the error, so I suggest adding the bignum package to the dependencies. Thanks, Bastian - -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.21treasure2 (PREEMPT) Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Shell: /bin/sh linked to /bin/bash Versions of packages libcrypt-openssl-rsa-perl depends on: ii libc6 2.5-8 GNU C Library: Shared libraries ii libssl0.9.8 0.9.8e-5 SSL shared libraries libcrypt-openssl-rsa-perl recommends no packages. - -- no debconf information -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVH+WeBwlBDLsbz4RArxrAKDIO7n3tqGzycEiE/1W1gCsrSEnZQCgwjet 1hTj5+9JB1iziqP9V86wOlU= =alSG -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425742: gnome-session: completely breaks desktop
Package: gnome-session Version: 2.18.0-2 Severity: critical Justification: breaks the whole system With gnome-session 2.18.0-2 gnome refuses to start. It hangs during the startup with the splash screen. Also most other X software cannot be started while gnome-session is hanging. It seems like gnome-session is blocking /tmp/.ICE-unix/ since the strace of most other programs I tried to start looks like the following: connect(10, {sa_family=AF_FILE, path=/tmp/.ICE-unix/9497}, 21) = 0 fcntl64(10, F_SETFD, FD_CLOEXEC)= 0 write(10, 0100, 8)= 8 read(10, I also noticed that this doesn't seem to happen with all user accounts on my machine. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.21 (SMP w/2 CPU cores; PREEMPT) Locale: LANG=en_GB.ISO-8859-15, [EMAIL PROTECTED] (charmap=ISO-8859-15) Shell: /bin/sh linked to /bin/bash Versions of packages gnome-session depends on: ii gconf2 2.18.0.1-3 GNOME configuration database syste ii gnome-control-center1:2.18.1-1 utilities to configure the GNOME d ii libatk1.0-0 1.18.0-2 The ATK accessibility toolkit ii libbonobo2-02.18.0-2 Bonobo CORBA interfaces library ii libc6 2.5-8GNU C Library: Shared libraries ii libdbus-1-3 1.0.2-5 simple interprocess messaging syst ii libdbus-glib-1-20.73-2 simple interprocess messaging syst ii libesd-alsa0 [libesd0] 0.2.36-3 Enlightened Sound Daemon (ALSA) - ii libgconf2-4 2.18.0.1-3 GNOME configuration database syste ii libglib2.0-02.12.12-1The GLib library of C routines ii libgnome-desktop-2 2.18.1-1 Utility library for loading .deskt ii libgnome-keyring0 0.8.1-2 GNOME keyring services library ii libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file ii libgnomeui-02.18.1-2 The GNOME 2 libraries (User Interf ii libgtk2.0-0 2.10.12-2The GTK+ graphical user interface ii libice6 1:1.0.3-2X11 Inter-Client Exchange library ii liborbit2 1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB ii libpango1.0-0 1.16.4-1 Layout and rendering of internatio ii libsm6 2:1.0.3-1X11 Session Management library ii libwrap07.6.dbs-13 Wietse Venema's TCP wrappers libra ii libx11-62:1.0.3-7X11 client-side library ii libxau6 1:1.0.3-2X11 authorisation library ii libxrandr2 2:1.2.1-1X11 RandR extension library Versions of packages gnome-session recommends: ii dbus 1.0.2-5simple interprocess messaging syst ii desktop-base 4.0.2 common files for the Debian Deskto ii gnome-panel 2.18.1-2 launcher and docking facility for ii metacity 1:2.18.2-3 A lightweight GTK2 based Window Ma ii nautilus 2.18.1-3 file manager and graphical shell f -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#420322: xchat-gnome: FTBFS: db2omf: Could not construct the OMF subject element
On Wed, 2007-05-23 at 18:45 +0200, Sven Arvidsson wrote: > A bug in older versions of gnome-doc-utils when building with > scrollkeeper disabled. > http://bugzilla.gnome.org/show_bug.cgi?id=427939 ...and it looks like this was worked around some time ago in the Ubuntu package: * debian/rules: - don't change the build directory to workaround a gnome-doc-utils bug -- Cheers, Sven Arvidsson http://www.whiz.se PGP Key ID 760BDD22 signature.asc Description: This is a digitally signed message part
Bug#425669: unable to stat `./usr/lib/wine/wineboot.exe.so' (which I was about to install)
Ove Kaaven пишет: I don't know... invalid argument to stat while running dpkg-deb... I'm not sure under what conditions this would normally occur, but it sounds more related to your filesystem than a problem with the package. Are you sure this isn't just a problem on your side? I got it from different ftp mirrors (ftp.task.gda.pl and ftp.debian.org). Result the same. Sound more related to filesystem of primary debian file server. -- Olleg smime.p7s Description: S/MIME Cryptographic Signature
Bug#425076: marked as done (deluge-torrent: FTBFS with new boost libraries)
Your message dated Wed, 23 May 2007 17:02:03 + with message-id <[EMAIL PROTECTED]> and subject line Bug#425076: fixed in deluge-torrent 0.5.0-3 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: deluge-torrent Version: 0.5.0-2 Severity: serious Tags: sid From my pbuilder build log: ... g++ -pthread -shared -Wall -g -O2 -DNDEBUG build/temp.linux-i686-2.4/src/deluge_core.o build/temp.linux-i686-2.4/libtorrent/src/alert.o build/temp.linux-i686-2.4/libtorrent/src/allocate_resources.o build/temp.linux-i686-2.4/libtorrent/src/bt_peer_connection.o build/temp.linux-i686-2.4/libtorrent/src/entry.o build/temp.linux-i686-2.4/libtorrent/src/escape_string.o build/temp.linux-i686-2.4/libtorrent/src/file.o build/temp.linux-i686-2.4/libtorrent/src/http_tracker_connection.o build/temp.linux-i686-2.4/libtorrent/src/identify_client.o build/temp.linux-i686-2.4/libtorrent/src/ip_filter.o build/temp.linux-i686-2.4/libtorrent/src/peer_connection.o build/temp.linux-i686-2.4/libtorrent/src/piece_picker.o build/temp.linux-i686-2.4/libtorrent/src/policy.o build/temp.linux-i686-2.4/libtorrent/src/session.o build/temp.linux-i686-2.4/libtorrent/src/session_impl.o build/temp.linux-i686-2.4/libtorrent/src/sha1.o build/temp.linux-i686-2.4/libtorrent/src/stat.o build/temp.linux-i686-2.4/libtorrent/src/storage.o build/temp.linux-i686-2.4/libtorrent/src/torrent.o build/temp.linux-i686-2.4/libtorrent/src/torrent_handle.o build/temp.linux-i686-2.4/libtorrent/src/torrent_info.o build/temp.linux-i686-2.4/libtorrent/src/tracker_manager.o build/temp.linux-i686-2.4/libtorrent/src/udp_tracker_connection.o build/temp.linux-i686-2.4/libtorrent/src/web_peer_connection.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/closest_nodes.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/dht_tracker.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/find_data.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/node.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/node_id.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/refresh.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/routing_table.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/rpc_manager.o build/temp.linux-i686-2.4/libtorrent/src/kademlia/traversal_algorithm.o -lboost_filesystem -lboost_date_time -lboost_program_options -lboost_regex -lboost_serialization -lboost_thread -lz -lpthread -o build/lib.linux-i686-2.4/deluge/deluge_core.so /usr/bin/ld: cannot find -lboost_filesystem collect2: ld returned 1 exit status error: command 'g++' failed with exit status 1 make: *** [build-stamp2.4] Error 1 -- Daniel Schepler --- End Message --- --- Begin Message --- Source: deluge-torrent Source-Version: 0.5.0-3 We believe that the bug you reported is fixed in the latest version of deluge-torrent, which is due to be installed in the Debian FTP archive: deluge-torrent_0.5.0-3.diff.gz to pool/main/d/deluge-torrent/deluge-torrent_0.5.0-3.diff.gz deluge-torrent_0.5.0-3.dsc to pool/main/d/deluge-torrent/deluge-torrent_0.5.0-3.dsc deluge-torrent_0.5.0-3_i386.deb to pool/main/d/deluge-torrent/deluge-torrent_0.5.0-3_i386.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. Adam Cécile (Le_Vert) <[EMAIL PROTECTED]> (supplier of updated deluge-torrent 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.7 Date: Tue, 22 May 2007 17:54:27 +0200 Source: deluge-torrent Binary: deluge-torrent Architecture: source i386 Version: 0.5.0-3 Distribution: unstable Urgency: low Maintainer: Adam Cécile (Le_Vert) <[EMAIL PROTECTED]> Changed-By: Adam Cécile (Le_Vert) <[EMAIL PROTECTED]> Description: deluge-torrent - A Bittorrent client written in Python/PyGTK Closes: 425076 Changes: deluge-torrent (0.5.0-3) unstable; urgency=low . * Merge upstream patch to fix FTBFS with libboost 1.34 (Closes: #425076). * Now build-depend on libboost*-dev (>= 1.34). * EPOLL is now always turned on, checking at build-time is non-sense and produce FTBFS with linux-libc-dev. Files: ba1bcda580bc174bbc8a8cb62fffbcab 924 net optional
Bug#420322: xchat-gnome: FTBFS: db2omf: Could not construct the OMF subject element
On Sat, 2007-04-21 at 18:24 +0200, Adeodato Simó wrote: > Hi. During an archive rebuild your xchat-gnome package failed to build > with the following error: > > Making all in help > make[3]: Entering directory `/build/user/xchat-gnome-0.13/debian/build/help' > xsltproc -o xchat-gnome-C.omf --stringparam db2omf.basename xchat-gnome > --stringparam db2omf.format 'docbook' --stringparam db2omf.dtd "-//OASIS//DTD > DocBook XML V4.1.2//EN" --stringparam db2omf.lang C --stringparam > db2omf.omf_dir "/usr/share/omf" --stringparam db2omf.help_dir > "/usr/share/gnome/help" --stringparam db2omf.omf_in > "`pwd`//build/user/xchat-gnome-0.13/./help/xchat-gnome.omf.in" > `/usr/bin/pkg-config --variable db2omf gnome-doc-utils` > /build/user/xchat-gnome-0.13/./help/C/xchat-gnome.xml > warning: failed to load external entity > "/build/user/xchat-gnome-0.13/debian/build/help//build/user/xchat-gnome-0.13/./help/xchat-gnome.omf.in" > db2omf: Could not construct the OMF subject element. > Add a subject element to > /build/user/xchat-gnome-0.13/debian/build/help//build/user/xchat-gnome-0.13/./help/xchat-gnome.omf.in. > make[3]: *** [xchat-gnome-C.omf] Error 10 > make[3]: Leaving directory `/build/user/xchat-gnome-0.13/debian/build/help' > > The full log is available at: > > > http://people.debian.org/~lucas/logs/2007/04/rebuild.sid.i386.20070416/xchat-gnome_1:0.13-1_sid32.buildlog > > Thanks. Hi, I think this is the same as this problem, http://mail.gnome.org/archives/evolution-list/2007-April/msg00128.html A bug in older versions of gnome-doc-utils when building with scrollkeeper disabled. http://bugzilla.gnome.org/show_bug.cgi?id=427939 -- Cheers, Sven Arvidsson http://www.whiz.se PGP Key ID 760BDD22 signature.asc Description: This is a digitally signed message part
Processed: setting package to dpkg dpkg-dev dselect, tagging 425641
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > package dpkg dpkg-dev dselect Ignoring bugs not assigned to: dselect dpkg-dev dpkg > tags 425641 + pending Bug#425641: dpkg-dev: dpkg-shlibdeps generates wrong vars when -dRecommends -dDepends is used There were no tags set. Tags added: pending > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425738: madwifi: several DOS-able holes
Package: madwifi Version: 0.9.3 Severity: critical Tags: security Hi, although I'm pretty sure you know about those issues, it won't be bad to have them listed in the bugtracker. In case Etch is affected, too, please get the fixes into r1. http://madwifi.org/ticket/1270 http://madwifi.org/ticket/1335 http://madwifi.org/ticket/1334 Thanks & cheers, Bernd -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425680:
Hi, I opened the bug just because upstream didnt offered a solution or patch for the 3.0.24 branch. And I have to point (again) that im using etch (stable) in about 5 machines, and all of them right now are vulnerable to the CVE's. If I update samba to 3.0.24-etch{1,2} I can surely say goodbye to my monthly income :) Regards. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425065: marked as done (texlive-bin: FTBFS with new poppler)
Your message dated Wed, 23 May 2007 16:02:25 + with message-id <[EMAIL PROTECTED]> and subject line Bug#425065: fixed in texlive-bin 2007-8 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: texlive-bin Version: 2007-7 Severity: serious From my pbuilder build log: ... make[4]: Entering directory `/tmp/buildd/texlive-bin-2007/build/source/Work/texk/web2c/pdftexdir' c++ -g -O2 -DHAVE_CONFIG_H -I. -I../../../../texk/web2c/pdftexdir -I../.. -I../../../../texk/web2c/pdftexdir/../.. -I/usr/include/poppler -I../../../libs/obsdcompat -I../../../libs/obsdcompat/.. -I../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat -I../../../../texk/web2c/pdftexdir/../../../libs/obsdcompat/.. -c ../../../../texk/web2c/pdftexdir/pdftoepdf.cc ../../../../texk/web2c/pdftexdir/pdftoepdf.cc: In function 'void initDictFromDict(PdfObject&, Dict*)': ../../../../texk/web2c/pdftexdir/pdftoepdf.cc:214: error: cannot convert 'UGooString*' to 'char*' for argument '1' to 'char* copyString(char*)' ../../../../texk/web2c/pdftexdir/pdftoepdf.cc: In function 'void copyDictEntry(Object*, int)': ../../../../texk/web2c/pdftexdir/pdftoepdf.cc:293: error: cannot convert 'UGooString*' to 'char*' for argument '1' to 'void copyName(char*)' ... make[4]: *** [pdftoepdf.o] Error 1 make[4]: Leaving directory `/tmp/buildd/texlive-bin-2007/build/source/Work/texk/web2c/pdftexdir' make[3]: *** [pdftexdir/libpdf.a] Error 2 make[3]: Leaving directory `/tmp/buildd/texlive-bin-2007/build/source/Work/texk/web2c' make[2]: *** [all] Error 1 make[2]: Leaving directory `/tmp/buildd/texlive-bin-2007/build/source/Work/texk' make[1]: *** [all] Error 1 make[1]: Leaving directory `/tmp/buildd/texlive-bin-2007/build/source/Work' make: *** [build-stamp] Error 2 -- Daniel Schepler --- End Message --- --- Begin Message --- Source: texlive-bin Source-Version: 2007-8 We believe that the bug you reported is fixed in the latest version of texlive-bin, which is due to be installed in the Debian FTP archive: libkpathsea-dev_2007-8_i386.deb to pool/main/t/texlive-bin/libkpathsea-dev_2007-8_i386.deb libkpathsea4_2007-8_i386.deb to pool/main/t/texlive-bin/libkpathsea4_2007-8_i386.deb texlive-base-bin_2007-8_i386.deb to pool/main/t/texlive-bin/texlive-base-bin_2007-8_i386.deb texlive-bin_2007-8.diff.gz to pool/main/t/texlive-bin/texlive-bin_2007-8.diff.gz texlive-bin_2007-8.dsc to pool/main/t/texlive-bin/texlive-bin_2007-8.dsc texlive-extra-utils_2007-8_i386.deb to pool/main/t/texlive-bin/texlive-extra-utils_2007-8_i386.deb texlive-font-utils_2007-8_i386.deb to pool/main/t/texlive-bin/texlive-font-utils_2007-8_i386.deb texlive-lang-indic_2007-8_i386.deb to pool/main/t/texlive-bin/texlive-lang-indic_2007-8_i386.deb texlive-metapost_2007-8_i386.deb to pool/main/t/texlive-bin/texlive-metapost_2007-8_i386.deb texlive-music_2007-8_i386.deb to pool/main/t/texlive-bin/texlive-music_2007-8_i386.deb texlive-omega_2007-8_i386.deb to pool/main/t/texlive-bin/texlive-omega_2007-8_i386.deb texlive-xetex_2007-8_i386.deb to pool/main/t/texlive-bin/texlive-xetex_2007-8_i386.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. Norbert Preining <[EMAIL PROTECTED]> (supplier of updated texlive-bin 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.7 Date: Mon, 21 May 2007 14:17:19 +0200 Source: texlive-bin Binary: texlive-extra-utils libkpathsea-dev libkpathsea4 texlive-xetex texlive-lang-indic texlive-omega texlive-font-utils texlive-metapost texlive-base-bin texlive-music Architecture: source i386 Version: 2007-8 Distribution: unstable Urgency: low Maintainer: Debian TeX Maintainers <[EMAIL PROTECTED]> Changed-By: Norbert Preining <[EMAIL PROTECTED]> Description: libkpathsea-dev - TeX Live: path search library for TeX (development part) libkpathsea4 - TeX Live: path search library for TeX (runtime part) texlive-base-bin - TeX Live: Essential binaries texlive-extra-utils - TeX Live: TeX auxiliary programs texlive-font-utils - TeX Live: TeX font-related programs texlive-lang-indic - TeX Live: Indic texlive
Bug#425641: dpkg-dev: dpkg-shlibdeps generates wrong vars when -dRecommends -dDepends is used
Hi, On Wed, 2007-05-23 at 01:25:54 +0200, Sune Vuorela wrote: > Package: dpkg-dev > Version: 1.14.3 > Severity: critical > Justification: breaks unrelated software > whit dpkg-dev 1.14.3, we get different output: > > $ cat libkcal2b.substvars > KDE-Version3=4:3.5.7 > KDE-Version2=4:3.5 > KDE-Next-Version3=4:3.5.8 > KDE-Next-Version2=4:3.6 > shlibs:Recommends=kaddressbook (>= 4:3.5.7), kdelibs4c2a (>= 4:3.5.7-1), > libacl1 (>= 2.2.11-1), libart-2.0-2 (>= 2.3.18), libattr1 (>= 2.4.4-1), > libaudio2, libc6 (>= 2.5-5), libfam0, libfontconfig1 (>= 2.4.0), > libfreetype6 (>= 2.2), libgcc1 (>= 1:4.2-20070516), libice6 (>= > 1:1.0.0), libidn11 (>= 0.5.18), libjpeg62, libkdepim1a (>= 4:3.5.6), > libktnef1 (>= 4:3.5.6), libpng12-0 (>= 1.2.13-4), libqt3-mt (>= > 3:3.3.7), libsm6, libstdc++6 (>= 4.2-20070516), libx11-6, libxcursor1 > (>> 1.1.2), libxext6, libxft2 (>> 2.1.1), libxi6, libxinerama1, > libxrandr2 (>= 2:1.2.0), libxrender1, libxt6, zlib1g (>= 1:1.2.1) > > note the lack of shlibs:Depends - and that all content from > shlibs:Depends now is placed in shlibs:Recommends. Bah. This is a regression introduced when applying the patch from bug #421290, I've fixed it locally, and I'm firing a build of kdepim to make sure everything is fine this time. Sorry about the mess... I'll try to upload before today's dinstall run. regards, guillem -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425727: icedove: cannot compose new or open existing messages
Package: icedove Version: 2.0.0.0-3 Severity: grave Justification: renders package unusable I cannot compose new email or reply-to or forward existing messages. I get a popup error message that says "An error occurred while creating a message compose window. Please try again." when attempting to do any of the above tasks. Second, the default text color was set to the same color as the background color so no text would appear in the preview window. I changed the text color to black in preferences and the text now appears in the preview pane. Third, when I open a message the header and message do not appear in the new window. I am also experiencing the 425438 bug. I cannot connect to gmail. The error message window says ssl has been disabled. All of this occurred after running apt-get upgrade last night (5-21-2007). I ran into the 425390 bug first and then the rest of this after working around it. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.20-1-k7 (SMP w/1 CPU core) Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash Versions of packages icedove depends on: ii debianutils 2.18.2 Miscellaneous utilities specific t ii fontconfig 2.4.2-1.2generic font configuration library ii libatk1.0-0 1.18.0-2 The ATK accessibility toolkit ii libc6 2.5-8GNU C Library: Shared libraries ii libcairo2 1.4.6-1 The Cairo 2D vector graphics libra ii libfontconfig1 2.4.2-1.2generic font configuration library ii libfreetype62.2.1-5 FreeType 2 font engine, shared lib ii libgcc1 1:4.2-20070516-1 GCC support library ii libglib2.0-02.12.12-1The GLib library of C routines ii libgtk2.0-0 2.10.12-2The GTK+ graphical user interface ii libjpeg62 6b-13The Independent JPEG Group's JPEG ii libnspr4-0d 4.6.6-3 NetScape Portable Runtime Library ii libnss3-0d 3.11.5-3 Network Security Service libraries ii libpango1.0-0 1.16.4-1 Layout and rendering of internatio ii libpng12-0 1.2.15~beta5-2 PNG library - runtime ii libstdc++6 4.2-20070516-1 The GNU Standard C++ Library v3 ii libx11-62:1.0.3-7X11 client-side library ii libxcursor1 1:1.1.8-2X cursor management library ii libxext61:1.0.3-2X11 miscellaneous extension librar ii libxfixes3 1:4.0.3-2X11 miscellaneous 'fixes' extensio ii libxft2 2.1.12-2 FreeType-based font drawing librar ii libxi6 1:1.0.1-4X11 Input extension library ii libxinerama11:1.0.2-1X11 Xinerama extension library ii libxrandr2 2:1.2.1-1X11 RandR extension library ii libxrender1 1:0.9.2-1X Rendering Extension client libra ii libxt6 1:1.0.5-3X11 toolkit intrinsics library ii psmisc 22.5-1 Utilities that use the proc filesy ii zlib1g 1:1.2.3-15 compression library - runtime icedove recommends no packages. -- debconf information: * icedove/browser: GNOME -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425010: marked as done (mantis: Config file with CLEAR PASSWORD is world-wide readable!!)
Your message dated Wed, 23 May 2007 15:32:03 + with message-id <[EMAIL PROTECTED]> and subject line Bug#425010: fixed in mantis 1.0.7+dfsg-1 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: mantis Version: 1.0.6+dfsg-4.1 Severity: grave After an upgrade of Mantis, the config file /etc/mantis/config_db.php is world-wide readable and contains the clear password of my SQL database!!! Please urgently fix this as it creates a very big security hole. The previous versions of Mantis was smarter: -rw-r- 1 root www-data 1887 2007-05-18 11:27 config.php ^^^ I've 'chgrp www-data' and 'chmod 640' the new file /etc/mantis/config_db.php and it's working. Thanks. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.20-1-vserver-686 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages mantis depends on: ii apache 1.3.34-4.1 versatile, high-performance HTTP s ii apache2 2.2.3-4 Next generation, scalable, extenda ii apache2-mpm-prefork [apache 2.2.3-4+b1 Traditional model for Apache HTTPD ii dbconfig-common 1.8.33 common framework for packaging dat ii debconf 1.5.13 Debian configuration management sy ii libapache2-mod-php5 5.2.2-1+b1 server-side, HTML-embedded scripti ii libphp-adodb4.94-1 The 'adodb' database abstraction l ii libphp-phpmailer1.73-3 full featured email transfer class ii php4-cli6:4.4.6-2+b1 command-line interpreter for the p ii php4-mysql 6:4.4.6-2+b1 MySQL module for php4 ii php5-cli5.2.2-1+b1 command-line interpreter for the p ii php5-mysql 5.2.2-1+b1 MySQL module for php5 mantis recommends no packages. -- debconf information: mantis/dbconfig-reinstall: false * mantis/dbconfig-install: true * mantis/remote/newhost: localhost mantis/title: Mantis * mantis/url: http://localhost/mantis/ mantis/upgrade-backup: true mantis/internal/skip-preseed: false mantis/install-error: abort mantis/internal/reconfiguring: false mantis/dbconfig-remove: * mantis/bounce: [EMAIL PROTECTED] * mantis/db_autoupdate: true * mantis/ldap: false mantis/ldap_server: localhost mantis/version: mantis/from: [EMAIL PROTECTED] mantis/show_version: true mantis/root_mysql: root mantis/passwords-do-not-match: mantis/signup: true * mantis/admin: [EMAIL PROTECTED] * mantis/mysql/admin-user: root * mantis/remote/port: * mantis/username: mantis mantis/purge: false * mantis/webmaster: [EMAIL PROTECTED] * mantis/dbconfig-upgrade: false mantis/remove-error: abort * mantis/remote/host: localhost * mantis/purge_db: true * mantis/db/app-user: mantis * mantis/mysql/method: tcp/ip mantis/dn: dn= mantis/mysql_port: 3306 * mantis/webserver: apache * mantis/db/dbname: bugtracker * mantis/database-type: mysql mantis/upgrade-error: abort * mantis/app_configure: true mantis/language: english * mantis/mysql_server: localhost * mantis/database: bugtracker mantis/organisation: -- ,''`. : :' : Cyril Bouthors `. `' Debian.org `- pgp35ZPWkKpgs.pgp Description: PGP signature --- End Message --- --- Begin Message --- Source: mantis Source-Version: 1.0.7+dfsg-1 We believe that the bug you reported is fixed in the latest version of mantis, which is due to be installed in the Debian FTP archive: mantis_1.0.7+dfsg-1.diff.gz to pool/main/m/mantis/mantis_1.0.7+dfsg-1.diff.gz mantis_1.0.7+dfsg-1.dsc to pool/main/m/mantis/mantis_1.0.7+dfsg-1.dsc mantis_1.0.7+dfsg-1_all.deb to pool/main/m/mantis/mantis_1.0.7+dfsg-1_all.deb mantis_1.0.7+dfsg.orig.tar.gz to pool/main/m/mantis/mantis_1.0.7+dfsg.orig.tar.gz 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. Patrick Schoenfeld <[EMAIL PROTECTED]> (supplier of updated mantis package) (This message was generated automatically at their request; if you believe that there is a problem with
Bug#424818: marked as done (php-image-barcode: affected by php4-removal)
Your message dated Wed, 23 May 2007 15:32:06 + with message-id <[EMAIL PROTECTED]> and subject line Bug#424818: fixed in php-image-barcode 1.0.4-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: php-image-barcode Severity: serious User: [EMAIL PROTECTED] Usertags: php4-removal This package has been identified as affected by the removal of php4 in debian. As php4 will soon be removed, it is very important that we: - update the dependencies of all applicable packages to coexist with php5 - remove source and/or binary packages which have no use without php4 for more information on what may need to be done, please see http://wiki.debian.org/PHP4Removal if you have any questions, please contact the debian php maintainers [EMAIL PROTECTED] thanks! --- End Message --- --- Begin Message --- Source: php-image-barcode Source-Version: 1.0.4-2 We believe that the bug you reported is fixed in the latest version of php-image-barcode, which is due to be installed in the Debian FTP archive: php-image-barcode_1.0.4-2.diff.gz to pool/main/p/php-image-barcode/php-image-barcode_1.0.4-2.diff.gz php-image-barcode_1.0.4-2.dsc to pool/main/p/php-image-barcode/php-image-barcode_1.0.4-2.dsc php-image-barcode_1.0.4-2_all.deb to pool/main/p/php-image-barcode/php-image-barcode_1.0.4-2_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. Thomas Goirand <[EMAIL PROTECTED]> (supplier of updated php-image-barcode 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.7 Date: Fri, 18 May 2007 12:32:28 +0800 Source: php-image-barcode Binary: php-image-barcode Architecture: source all Version: 1.0.4-2 Distribution: unstable Urgency: low Maintainer: Thomas Goirand <[EMAIL PROTECTED]> Changed-By: Thomas Goirand <[EMAIL PROTECTED]> Description: php-image-barcode - Barcode generation Closes: 424818 Changes: php-image-barcode (1.0.4-2) unstable; urgency=low . * Removed php4 dependency as php4 will soon be removed (Closes: #424818) Files: 12a19a619c85f18271c92a080e9ccbd0 603 web optional php-image-barcode_1.0.4-2.dsc 91965aea2b331331e84ec7236290258b 2543 web optional php-image-barcode_1.0.4-2.diff.gz 2c587a6a0e5f6c4d345176d128244a65 16110 web optional php-image-barcode_1.0.4-2_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVF2U+C5cwEsrK54RAooUAKCrLvzzh/otctUi731dnKg9+bZ+vwCdH3Dp PSbm/b1g09AdrxoV60xRLVk= =+c45 -END PGP SIGNATURE- --- End Message ---
Bug#408822: marked as done (mantis: reinstall fails)
Your message dated Wed, 23 May 2007 15:32:02 + with message-id <[EMAIL PROTECTED]> and subject line Bug#408822: fixed in mantis 1.0.7+dfsg-1 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: mantis Version: 1.0.6+dfsg-4.1 Severity: normal The command %apt-get --reinstall install mantis with this version reinstalling over the same version seems to call the preinst script with an argument of "upgrade". That script fails if the file /etc/mantis/config.php does not exist -- which it does not in this version of mantis. If "upgrade" is supposed to be called in this case, then the fix is to move the conditional (the test for existence of /etc/mantis/config.php) into the main case...esac so that it will skip the call to sed when the file doesn't exist. -- System Information: Debian Release: 4.0 APT prefers testing APT policy: (990, 'testing'), (500, 'unstable') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-6-corax-1 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages mantis depends on: ii apache2 2.2.3-3.2 Next generation, scalable, extenda ii apache2-mpm-worker [apache2] 2.2.3-3.2 High speed threaded model for Apac ii dbconfig-common 1.8.29 common framework for packaging dat ii debconf 1.5.11 Debian configuration management sy ii libapache-mod-php46:4.4.4-8 server-side, HTML-embedded scripti ii libphp-adodb 4.93a-1The 'adodb' database abstraction l ii libphp-phpmailer 1.73-2 full featured email transfer class ii php4-cli 6:4.4.4-8 command-line interpreter for the p ii php4-mysql6:4.4.4-8 MySQL module for php4 ii php5-cli 5.2.0-8command-line interpreter for the p ii php5-mysql5.2.0-8MySQL module for php5 mantis recommends no packages. -- debconf information: * mantis/dbconfig-reinstall: false * mantis/dbconfig-install: false mantis/remote/newhost: mantis/upgrade-backup: true mantis/internal/skip-preseed: false mantis/install-error: abort mantis/internal/reconfiguring: true mantis/dbconfig-remove: * mantis/bounce: [EMAIL PROTECTED] mantis/from: [EMAIL PROTECTED] mantis/passwords-do-not-match: * mantis/admin: [EMAIL PROTECTED] mantis/mysql/admin-user: root mantis/remote/port: mantis/purge: false * mantis/webmaster: [EMAIL PROTECTED] mantis/dbconfig-upgrade: true mantis/remove-error: abort mantis/remote/host: mantis/db/app-user: mantis mantis/mysql/method: unix socket * mantis/webserver: apache2 mantis/db/dbname: mantis mantis/database-type: mysql mantis/upgrade-error: abort --- End Message --- --- Begin Message --- Source: mantis Source-Version: 1.0.7+dfsg-1 We believe that the bug you reported is fixed in the latest version of mantis, which is due to be installed in the Debian FTP archive: mantis_1.0.7+dfsg-1.diff.gz to pool/main/m/mantis/mantis_1.0.7+dfsg-1.diff.gz mantis_1.0.7+dfsg-1.dsc to pool/main/m/mantis/mantis_1.0.7+dfsg-1.dsc mantis_1.0.7+dfsg-1_all.deb to pool/main/m/mantis/mantis_1.0.7+dfsg-1_all.deb mantis_1.0.7+dfsg.orig.tar.gz to pool/main/m/mantis/mantis_1.0.7+dfsg.orig.tar.gz 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. Patrick Schoenfeld <[EMAIL PROTECTED]> (supplier of updated mantis 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.7 Date: Wed, 23 May 2007 15:33:14 +0200 Source: mantis Binary: mantis Architecture: source all Version: 1.0.7+dfsg-1 Distribution: unstable Urgency: low Maintainer: Patrick Schoenfeld <[EMAIL PROTECTED]> Changed-By: Patrick Schoenfeld <[EMAIL PROTECTED]> Description: mantis - web-based bug tracking system Closes: 408819 408822 408823 412115 414796 415158 420639 420841 425010 425034 Changes: mantis (1.0.7+dfsg-1) unstable; urgency=low . * New upstream release - Includes some security fixes - Includes some minor bug fixes (Closes: #415158
Bug#424812: marked as done (php-auth-http: affected by php4-removal)
Your message dated Wed, 23 May 2007 15:32:04 + with message-id <[EMAIL PROTECTED]> and subject line Bug#424812: fixed in php-auth-http 2.1.6-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: php-auth-http Severity: serious User: [EMAIL PROTECTED] Usertags: php4-removal This package has been identified as affected by the removal of php4 in debian. As php4 will soon be removed, it is very important that we: - update the dependencies of all applicable packages to coexist with php5 - remove source and/or binary packages which have no use without php4 for more information on what may need to be done, please see http://wiki.debian.org/PHP4Removal if you have any questions, please contact the debian php maintainers [EMAIL PROTECTED] thanks! --- End Message --- --- Begin Message --- Source: php-auth-http Source-Version: 2.1.6-2 We believe that the bug you reported is fixed in the latest version of php-auth-http, which is due to be installed in the Debian FTP archive: php-auth-http_2.1.6-2.diff.gz to pool/main/p/php-auth-http/php-auth-http_2.1.6-2.diff.gz php-auth-http_2.1.6-2.dsc to pool/main/p/php-auth-http/php-auth-http_2.1.6-2.dsc php-auth-http_2.1.6-2_all.deb to pool/main/p/php-auth-http/php-auth-http_2.1.6-2_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. Thomas Goirand <[EMAIL PROTECTED]> (supplier of updated php-auth-http 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.7 Date: Fri, 18 May 2007 12:40:20 +0800 Source: php-auth-http Binary: php-auth-http Architecture: source all Version: 2.1.6-2 Distribution: unstable Urgency: low Maintainer: Thomas Goirand <[EMAIL PROTECTED]> Changed-By: Thomas Goirand <[EMAIL PROTECTED]> Description: php-auth-http - HTTP authentication Closes: 424812 Changes: php-auth-http (2.1.6-2) unstable; urgency=low . * Removed php4 dependency as php4 will soon be removed (Closes: #424812) Files: 50d6b64bda2507c921d30abb82447393 586 web optional php-auth-http_2.1.6-2.dsc 1ae42d215e91070f81a00c50717e3a0f 2480 web optional php-auth-http_2.1.6-2.diff.gz f6668f26d6d991faac75044637a68e2b 9630 web optional php-auth-http_2.1.6-2_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVF0w+C5cwEsrK54RAr8BAJ49qvsgTv41/4ooL9Ega62P0k53LgCeM0K7 6ODN42j8x7PG8mL9+hGs5Po= =5H/C -END PGP SIGNATURE- --- End Message ---
Bug#424826: marked as done (php-xml-rss: affected by php4-removal)
Your message dated Wed, 23 May 2007 15:32:07 + with message-id <[EMAIL PROTECTED]> and subject line Bug#424826: fixed in php-xml-rss 0.9.10-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: php-xml-rss Severity: serious User: [EMAIL PROTECTED] Usertags: php4-removal This package has been identified as affected by the removal of php4 in debian. As php4 will soon be removed, it is very important that we: - update the dependencies of all applicable packages to coexist with php5 - remove source and/or binary packages which have no use without php4 for more information on what may need to be done, please see http://wiki.debian.org/PHP4Removal if you have any questions, please contact the debian php maintainers [EMAIL PROTECTED] thanks! --- End Message --- --- Begin Message --- Source: php-xml-rss Source-Version: 0.9.10-2 We believe that the bug you reported is fixed in the latest version of php-xml-rss, which is due to be installed in the Debian FTP archive: php-xml-rss_0.9.10-2.diff.gz to pool/main/p/php-xml-rss/php-xml-rss_0.9.10-2.diff.gz php-xml-rss_0.9.10-2.dsc to pool/main/p/php-xml-rss/php-xml-rss_0.9.10-2.dsc php-xml-rss_0.9.10-2_all.deb to pool/main/p/php-xml-rss/php-xml-rss_0.9.10-2_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. Thomas Goirand <[EMAIL PROTECTED]> (supplier of updated php-xml-rss 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.7 Date: Fri, 18 May 2007 12:39:10 +0800 Source: php-xml-rss Binary: php-xml-rss Architecture: source all Version: 0.9.10-2 Distribution: unstable Urgency: low Maintainer: Thomas Goirand <[EMAIL PROTECTED]> Changed-By: Thomas Goirand <[EMAIL PROTECTED]> Description: php-xml-rss - RSS parser Closes: 424826 Changes: php-xml-rss (0.9.10-2) unstable; urgency=low . * Removed php4 dependency as php4 will soon be removed (Closes: #424826) Files: 2b45ff09c08a75136353906d4dcb7aca 581 web optional php-xml-rss_0.9.10-2.dsc 8f719845bb01f3aecb54f21d487fc780 2461 web optional php-xml-rss_0.9.10-2.diff.gz 1240c882f548ca52226f4f6e579eea15 8584 web optional php-xml-rss_0.9.10-2_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVFzz+C5cwEsrK54RAiYVAJ95ds1Yz2W2lhQU7dajiTpHP7TzzQCgqBCX oXih0XoJAX1Phpbf0UdN4CA= =9Qtu -END PGP SIGNATURE- --- End Message ---
Bug#424816: marked as done (php-config: affected by php4-removal)
Your message dated Wed, 23 May 2007 15:32:05 + with message-id <[EMAIL PROTECTED]> and subject line Bug#424816: fixed in php-config 1.10.9-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: php-config Severity: serious User: [EMAIL PROTECTED] Usertags: php4-removal This package has been identified as affected by the removal of php4 in debian. As php4 will soon be removed, it is very important that we: - update the dependencies of all applicable packages to coexist with php5 - remove source and/or binary packages which have no use without php4 for more information on what may need to be done, please see http://wiki.debian.org/PHP4Removal if you have any questions, please contact the debian php maintainers [EMAIL PROTECTED] thanks! --- End Message --- --- Begin Message --- Source: php-config Source-Version: 1.10.9-2 We believe that the bug you reported is fixed in the latest version of php-config, which is due to be installed in the Debian FTP archive: php-config_1.10.9-2.diff.gz to pool/main/p/php-config/php-config_1.10.9-2.diff.gz php-config_1.10.9-2.dsc to pool/main/p/php-config/php-config_1.10.9-2.dsc php-config_1.10.9-2_all.deb to pool/main/p/php-config/php-config_1.10.9-2_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. Thomas Goirand <[EMAIL PROTECTED]> (supplier of updated php-config 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.7 Date: Fri, 18 May 2007 12:37:42 +0800 Source: php-config Binary: php-config Architecture: source all Version: 1.10.9-2 Distribution: unstable Urgency: low Maintainer: Thomas Goirand <[EMAIL PROTECTED]> Changed-By: Thomas Goirand <[EMAIL PROTECTED]> Description: php-config - Your configuration's swiss-army knife Closes: 424816 Changes: php-config (1.10.9-2) unstable; urgency=low . * Removed php4 dependency as php4 will soon be removed (Closes: #424816) Files: 6893467fdb19ce5c7e0eb237f3b483c5 578 web optional php-config_1.10.9-2.dsc 5e506bb832164299bf8c2dfa65d47a25 2624 web optional php-config_1.10.9-2.diff.gz c8947a1b2b1948611598ae52a5f40680 25916 web optional php-config_1.10.9-2_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVF1l+C5cwEsrK54RAgJXAKCI7B3w2139TIycyybOM+57IkQWwwCeO+15 v8gsElRvQPAPn6jKcAgyBfQ= =RzPq -END PGP SIGNATURE- --- End Message ---
Processed: Marking 425680 as forwarded
Processing commands for [EMAIL PROTECTED]: > forwarded 425680 https://bugzilla.samba.org/show_bug.cgi?id=4637 Bug#425680: samba: The security fix for CVE-2007-2446 broke Samba Noted your statement that Bug has been forwarded to https://bugzilla.samba.org/show_bug.cgi?id=4637. > kthxbye Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425700: sendmail_8.14.1-4(ia64/unstable): FBTFS: >= has no left operand
On Wed, 23 May 2007, Martin Michlmayr wrote: * [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2007-05-23 06:48]: from editmap.c:41: ../../include/sm/conf.h:1478:27: error: operator '>=' has no left operand ../../include/sm/conf.h:1527:27: error: operator '>=' has no left operand This is because of headers, see #425595 Yes, a user reported this, so I added (and it is in -4) Build-Depends: make (>> 3.79.1-14), m4, patch, debhelper (>= 4.1.68), linux-kernel-headers Ah Package: linux-libc-dev Source: linux-2.6 Version: 2.6.21-2 Replaces: linux-kernel-headers, linux-libc-headers Provides: linux-kernel-headers Conflicts: linux-kernel-headers, linux-libc-headers So, the mess gets worse - postfix, sendmail, gcj, and a plethor of other packages :( In general, I agree with Steve's comment about user code and the linux/* header space. However, I don't see a workaround for sendmail/postfix - who are looking not at the running kernel, but for a working feature set indication... And there is not current API that I am aware of that provides this, other than the headers :( Yes, I understand that the linux/* header set may not match the extant kernel :( Worse, some of the items tested for (does flock() work) aren't exactly the kinds of things you *would* have in capabilities string - even if we actually had one. A few examples from sendmail, with annotations: # if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,19)) # define SM_CONF_SHM 1 /* Shared memory broke before this */ # if LINUX_VERSION_CODE < 66399 #define HASFLOCK0 /* flock(2) is broken after 0.99.13 */ # if (LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0)) # define HASFLOCK 1 /* flock(2) fixed after 1.3.95 */ # else /* (LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0)) */ # define HASFLOCK 0 /* flock(2) is broken (again) after 2.4.0 */ # if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,0,0)) # ifndef HASURANDOMDEV #define HASURANDOMDEV 1 /* 2.0 (at least) has linux/drivers/char/random.c */ The list goes on, but the idea is that, however unfortunate, sometimes a system application needs to know what it can expect from the kernel, and the library: #else /* (GLIBC_VERSION >= 0x201) */ # include /* IPv6 support */ #if (GLIBC_VERSION >= 0x201 && !defined(NEEDSGETIPNODE)) /* Have APIs in , but no support in glibc */ # define NEEDSGETIPNODE 1 I have a few possible fixes: Can we get linux-libc-dev to *NOT* provide linux-kernel-headers ? Although, I think the *BEST* idea would be for linux-libc-dev to actually define LINUX_VERSION_CODE to the lowest level of kernel that is supported (now, what - 2.6.18?). For sendmail, postfix, and I'm sure some of the others, the only remaining alternative (and I've not yet tried it) is for the maintainer to add -DLINUX_VERSION_CODE=<2.6.18 in decimal format> This alternative is going to bite us in the future, if we again have an issue like flock() breaking on certain kernels. -- Rick Nelson shaleh: I am not, despite your implication, God -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425721: enigmail is not compatible with icedove-2.0.0.0-3
Package: enigmail Version: 0.94.2-1 Severity: grave --- Please enter the report below this line. --- As far as I can see, enigmail version 0.95 is compatible with icedove v. 2.0.0.0, however it is only available for amd64 architecture and no other architectures. Thanks, --- System information. --- Architecture: i386 Kernel: Linux 2.6.20 Debian Release: lenny/sid 500 unstable ftp.de.debian.org 500 testing security.debian.org 500 testing ftp.de.debian.org 500 stable security.debian.org --- Package information. --- Depends (Version) | Installed ==-+- thunderbird | OR icedove | 2.0.0.0-3 OR iceape-mailnews | OR seamonkey-mailnews | libc6 (>= 2.5-5) | 2.5-8 libgcc1 (>= 1:4.2-20070516) | 1:4.2-20070516-1 libnspr4-0d (>= 1.8.0.10) | 4.6.6-3 libstdc++6 (>= 4.2-20070516) | 4.2-20070516-1 gnupg | 1.4.6-2 -- Key ID = 0xE024A6F3 Key fingerprint = C9A1 2E1E 1E10 6514 2E7D 8934 08C6 B43F E024 A6F3 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: severity of 425703 is important
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.9.26 > severity 425703 important Bug#425703: linux-image-2.6.18-4-xen-686: xen kernel oopses on removing the netloop module Severity set to `important' from `critical' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425716: tdb-dev: Fails to open "previous" databases
Package: tdb-dev Version: 1.1.0-1 Severity: grave Justification: renders package unusable Hi, The latest `libtdb' from SID fails to open databases created by the version previously available in SID (whichever that was), i.e., `tdb_open ()' returns NULL. This can be checked by simply running `tdbdump' on the database. For your convenience, I've put a database that reproduces the problem on-line: http://www.laas.fr/~lcourtes/tmp/failing-tdb-database.tdb SHA1: c2c892e4e466092c74ffb923975056840ffcf43b Thanks, Ludovic. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: powerpc (ppc) Kernel: Linux 2.6.18-4-powerpc-smp (SMP w/2 CPU cores) Locale: LANG=C, LC_CTYPE=fr_FR (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash Versions of packages tdb-dev depends on: ii libc6-dev 2.5-7 GNU C Library: Development Librari ii libtdb1 1.1.0-1Trivial Database - shared library tdb-dev recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#400879: libapache2-mod-auth-mysql still missing in etch
Julien> I think it's because the bug was not closed in the Julien> 4.3.9-3 changelog and nobody looked at. Julien> Closing it right now. I don't understand this message... Is it supposed to mean that the PROBLEM is fixed, or that the BUG REPORT has been closed? I am still trying this today (2007-05-23) and there's still no libapache2-mod-auth-mysql to be found. Is there a plan to fix this package, or alternatively, are there instructions for etch users to authenticate using a different mechanism (like dbd or pam or something)? Or am I forced to "upgrade" to lenny? Currently, my web server is hanging out in the breeze with no authentication. Thanks for your help. Alan Porter -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425703: linux-image-2.6.18-4-xen-686: xen kernel oopses on removing the netloop module
Package: linux-image-2.6.18-4-xen-686 Version: 2.6.18.dfsg.1-12 Severity: critical Justification: breaks the whole system On a running xen machine, I tried the command: rmmod netloop. This is an obvious issue that I should not do that, however this module should not be unloaded. Result: kernel panic and restart of machine. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.18-4-xen-686 (SMP w/4 CPU cores) Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash Versions of packages linux-image-2.6.18-4-xen-686 depends on: ii initramfs-tools 0.87btools for generating an initramfs ii linux-modules-2.6.18-4- 2.6.18.dfsg.1-12 Linux 2.6.18 modules on i686 Versions of packages linux-image-2.6.18-4-xen-686 recommends: ii libc6-xen 2.5-7 GNU C Library: Shared libraries [X -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425702: can't make it to play any .mpc files
Package: mpc123 Version: 0.2.1-1 Severity: grave Hi, I've tried to play some .mpc file without any success. Neither of the options seems to work. All file are OK, I can play them on other players. P.S. I've attached strace output. Regards, rjc -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: powerpc (ppc) Kernel: Linux 2.6.21-1-powerpc Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages mpc123 depends on: ii libao20.8.6-4Cross Platform Audio Output Librar ii libc6 2.5-8 GNU C Library: Shared libraries ii libmpcdec31.2.2-1Musepack (MPC) format library mpc123 recommends no packages. -- no debconf information execve("/usr/bin/mpc123", ["mpc123", "file.mpc"], [/* 26 vars */]) = 0 brk(0) = 0x10015000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3001e000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY) = 3 fstat64(3, {st_mode=S_IFREG|0644, st_size=192621, ...}) = 0 mmap(NULL, 192621, PROT_READ, MAP_PRIVATE, 3, 0) = 0x3003 close(3)= 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/usr/lib/libao.so.2", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\24\0\0\0\1\0\0!\220"..., 512) = 512 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3001f000 fstat64(3, {st_mode=S_IFREG|0644, st_size=22372, ...}) = 0 mmap(0xffda000, 87308, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xffda000 mprotect(0xffdf000, 65536, PROT_NONE) = 0 mmap(0xffef000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5000) = 0xffef000 close(3)= 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/usr/lib/libmpcdec.so.3", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\24\0\0\0\1\0\0 \360"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=59164, ...}) = 0 mmap(0xffab000, 123956, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xffab000 mprotect(0xffb9000, 65536, PROT_NONE) = 0 mmap(0xffc9000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe000) = 0xffc9000 close(3)= 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libc.so.6", O_RDONLY)= 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\24\0\0\0\1\0\1\360"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0755, st_size=1400924, ...}) = 0 mmap(0xfe33000, 1472304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xfe33000 mprotect(0xff84000, 61440, PROT_NONE) = 0 mmap(0xff93000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15) = 0xff93000 mmap(0xff98000, 10032, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xff98000 close(3)= 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libdl.so.2", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\24\0\0\0\1\0\0\v"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=13832, ...}) = 0 mmap(0xfe0f000, 77976, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xfe0f000 mprotect(0xfe12000, 61440, PROT_NONE) = 0 mmap(0xfe21000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0xfe21000 close(3)= 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/libpthread.so.0", O_RDONLY) = 3 read(3, "\177ELF\1\2\1\0\0\0\0\0\0\0\0\0\0\3\0\24\0\0\0\1\0\0LP"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0755, st_size=120492, ...}) = 0 mmap(0xfdd6000, 16, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xfdd6000 mprotect(0xfdec000, 61440, PROT_NONE) = 0 mmap(0xfdfb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0xfdfb000 mmap(0xfdfd000, 4700, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xfdfd000 close(3)= 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x3002 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x30021000 mprotect(0xfdfb000, 4096, PROT_READ)= 0 mprotect(0xfe21000, 4096, PROT_READ)= 0 mprotect(0xff93000, 4096, PROT_READ)= 0 munmap(0x3003, 192621) = 0 set_tid_address(0x30020568) = 27172 socket_subcall(0x30020570, 0xc, 0x7f9b2900, 0x7f9b2900, 0x3000, 0x2e450, 0xffec, 0xf
Bug#425700: sendmail_8.14.1-4(ia64/unstable): FBTFS: >= has no left operand
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2007-05-23 06:48]: > > from editmap.c:41: > > ../../include/sm/conf.h:1478:27: error: operator '>=' has no left operand > > ../../include/sm/conf.h:1527:27: error: operator '>=' has no left operand This is because of headers, see #425595 -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425700: sendmail_8.14.1-4(ia64/unstable): FBTFS: >= has no left operand
Package: sendmail Version: 8.14.1-4 Severity: serious There was an error while trying to autobuild your package: > Automatic build of sendmail_8.14.1-4 on caballero by sbuild/ia64 98 > Build started at 20070523-0123 [...] > ** Using build dependencies supplied by package: > Build-Depends: make (>> 3.79.1-14), m4, patch, debhelper (>= 4.1.68), > linux-kernel-headers, libdb4.5-dev, libldap2-dev, libwrap0-dev, > liblockfile-dev, libsasl2-dev, libssl-dev [...] > In file included from ../../include/sm/config.h:23, > from ../../include/sm/gen.h:20, > from editmap.c:14: > ./sm_os.h:33:27: error: operator '>=' has no left operand > In file included from ../../sendmail/conf.h:230, > from ../../include/sendmail/sendmail.h:24, > from editmap.c:41: > ../../include/sm/conf.h:1478:27: error: operator '>=' has no left operand > ../../include/sm/conf.h:1527:27: error: operator '>=' has no left operand A full build log can be found at: http://buildd.debian.org/build.php?arch=ia64&pkg=sendmail&ver=8.14.1-4 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: severity of 425695 is important
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.9.26 > severity 425695 important Bug#425695: linux-image-2.6.18-4-xen-686: machine stops responding on P III Xeon 3GHz Severity set to `important' from `critical' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425695: linux-image-2.6.18-4-xen-686: machine stops responding on P III Xeon 3GHz
Package: linux-image-2.6.18-4-xen-686 Version: 2.6.18.dfsg.1-12 Severity: critical Justification: breaks the whole system [ cut here ] kernel BUG at drivers/xen/core/evtchn.c:481! invalid opcode: [#1] SMP Modules linked in: xt_physdev bridge netloop iptable_filter ip_tables x_tables ipv6 ide_disk psmouse i2c_i801 serio_raw parport_pc parport i2c_core serial_core e7xxx_edac edac_mc rtc floppy pcspkr shpchp pci_hotplug evdev sg ext3 jbd mbcache dm_mirror dm_snapshot dm_mod sd_mod ide_cd cdrom uhci_hcd e1000 megaraid_mbox megaraid_mm aic79xx scsi_transport_spi scsi_mod piix generic ide_core usbcore thermal processor fan CPU:1 EIP:0061:[]Not tainted VLI EFLAGS: 00010046 (2.6.18-4-xen-686 #1) EIP is at retrigger+0x1f/0x35 eax: ebx: 0208 ecx: 0036 edx: f55f6000 esi: c0318920 edi: 011d ebp: esp: c039feb0 ds: 007b es: 007b ss: 0069 Process xenwatch (pid: 17, ti=c039e000 task=c0ea7550 task.ti=c039e000) Stack: c013b259 c0318920 011d c0318948 c013afaf ecf912c0 ecf912c0 c02170e0 c02174c0 c021064f 0010 020c 020b ecb20576 c02e67a4 ee4be000 0002 Call Trace: [] check_irq_resend+0x41/0x48 [] enable_irq+0x72/0x87 [] __netif_up+0xb/0x13 [] netif_map+0x247/0x26f [] xs_talkv+0xe3/0x128 [] xenbus_read+0x34/0x3b [] xenbus_scanf+0x18/0x4d [] frontend_changed+0x29f/0x4a8 [] otherend_changed+0x74/0x79 [] xenwatch_handle_callback+0x12/0x44 [] xenwatch_thread+0x105/0x11b [] autoremove_wake_function+0x0/0x2d [] xenwatch_thread+0x0/0x11b [] kthread+0xc0/0xeb [] kthread+0x0/0xeb [] kernel_thread_helper+0x5/0xb Code: ee 85 f6 75 96 58 5a 5b 5e 5f 5d c3 0f b7 0c 85 40 b8 37 c0 8b 15 84 19 2d c0 85 c9 74 1d 0f a3 8a 80 08 00 00 19 c0 85 c0 75 08 <0f> 0b e1 01 b2 1a 2b c0 f0 0f ab 8a 00 08 00 00 b8 01 00 00 00 EIP: [] retrigger+0x1f/0x35 SS:ESP 0069:c039feb0 P III Xeon. 3GB RAM -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-4-xen-686 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Versions of packages linux-image-2.6.18-4-xen-686 depends on: ii initramfs-tools 0.85ftools for generating an initramfs ii linux-modules-2.6.18-4- 2.6.18.dfsg.1-12 Linux 2.6.18 modules on i686 Versions of packages linux-image-2.6.18-4-xen-686 recommends: ii libc6-xen 2.5-7 GNU C Library: Shared libraries [X -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#416951: (pas de sujet)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, Sorry for the delay but I had to deal with many other packages first. Now libtunepimp transition is done and I consider uploading picard to unstable... Did you managed to reproduce this bug ? Do you have experienced any other kind of issues with picard ? Regards, Adam. -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFGVCnBHNb/igTI5bsRArCZAKCVo8bM+X8C20ZuhuB+Pz7+nc3jUACfXOqV BXejiz0fMmbJjUzjvO33a7s= =XSBU -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#421100: marked as done (spampd: Process doesn't discard environment upon user switch)
Your message dated Wed, 23 May 2007 11:32:02 + with message-id <[EMAIL PROTECTED]> and subject line Bug#421100: fixed in spampd 2.30-17 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: spampd Version: 2.30-16 Severity: normal I installed spampd the other day just to see that it tried to access some files in my user directory. After spending some time looking for the reason and then askinf formorer for a hint we found that the server process still had my user environment set despite running as user spampd. It used my environment because I started it using sudo. Further tests revealed that it works on root's environment if started by root. This causes some functionality to fail, e.g. pyzor and razor. Also it loses uncritical data with Bayes and auto-whitelisting failing too. Finally the seemingly simple solution of fixing the permissions of root's .spamassassin directory creates some serious security concerns. Some similar bug was reported a longer time ago and to fix it a config opention was included. However, this option is disabled by default, which doesn't really help. IMO the bug should be fixed and not worked around anyway. Formorer already developed a patch that I'm testing since last night. It seems to me that it fixes the problem completely. So expect a patch submitted here pretty soon. Michael -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.20-1-686 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages spampd depends on: ii adduser 3.102 Add and remove users and groups ii dpkg 1.13.25package maintenance system for Deb pn libnet-server-perl (no description available) ii lsb-base 3.1-23.1 Linux Standard Base 3.1 init scrip ii perl 5.8.8-7Larry Wall's Practical Extraction pn spamassassin (no description available) spampd recommends no packages. --- End Message --- --- Begin Message --- Source: spampd Source-Version: 2.30-17 We believe that the bug you reported is fixed in the latest version of spampd, which is due to be installed in the Debian FTP archive: spampd_2.30-17.diff.gz to pool/main/s/spampd/spampd_2.30-17.diff.gz spampd_2.30-17.dsc to pool/main/s/spampd/spampd_2.30-17.dsc spampd_2.30-17_all.deb to pool/main/s/spampd/spampd_2.30-17_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. Sven Mueller <[EMAIL PROTECTED]> (supplier of updated spampd 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.7 Date: Tue, 22 May 2007 19:15:09 +0200 Source: spampd Binary: spampd Architecture: source all Version: 2.30-17 Distribution: unstable Urgency: low Maintainer: Sven Mueller <[EMAIL PROTECTED]> Changed-By: Sven Mueller <[EMAIL PROTECTED]> Description: spampd - spamassassin based SMTP/LMTP proxy daemon Closes: 395355 421100 Changes: spampd (2.30-17) unstable; urgency=low . * Add patch to fix multi-destination LMTP (Closes: #395355) Thanks for the patch and for testing it go to: Vladislav Kurz <[EMAIL PROTECTED]> * Document problems with SpamAssassin's auto-whitelist plugin and the default filesystem storage. (Related to: bug #413753) * Apply patch by Alexander Wirt to introduce a parameter which sets a proper home directory and also cleans up the environment before backgrounding. (Closes: #421100) Files: 2570ed898607642d993a7e4e6e45d7c3 563 mail optional spampd_2.30-17.dsc 0cb7ff19af1e7e3cd133462a6b89edcb 16654 mail optional spampd_2.30-17.diff.gz 06dc52e7dda67a08d1eca07e58f08008 55026 mail optional spampd_2.30-17_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGUyYbDcs5RBTUBgsRAlRFAJ9KylYoh/lfygvDd7Gqhd2qOjVx1QCdE4bB /LSspLYOMSRf0n0yS7R5APg= =xLnk -END PGP SIGNATURE- --- End Message ---
Bug#425694: kaya: uninstallable (dependency on g++-4.0)
Package: kaya Severity: serious The following packages have unmet dependencies. kaya: Depends: g++-4.0 but it is not installable -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: severity of 419049 is important
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > severity 419049 important Bug#419049: shutdown of interfaces before network services are shut down causes data loss Severity set to `important' from `grave' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425617: marked as done (gnome-sudoku crashes unless python-gnome2 is installed)
Your message dated Wed, 23 May 2007 11:02:04 + with message-id <[EMAIL PROTECTED]> and subject line Bug#425617: fixed in gnome-games 1:2.18.1-3 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: gnome-games Version: 2.18.0-2 After upgrading to gnome-games 2.18.0-2, I tried starting gnome-sudoku. It failed with the following messages: Traceback (most recent call last): File "/usr/games/gnome-sudoku", line 20, in ? from gnome_sudoku.gnome_sudoku import start_game File "/var/lib/python-support/python2.4/gnome_sudoku/gnome_sudoku.py", line 8, in ? import gnome, gnome.ui, pango ImportError: No module named gnome Installing python-gnome2 fixed the problem for me, so I guess gnome-games should depend on it. Sincerely, Torbjörn Andersson --- End Message --- --- Begin Message --- Source: gnome-games Source-Version: 1:2.18.1-3 We believe that the bug you reported is fixed in the latest version of gnome-games, which is due to be installed in the Debian FTP archive: gnome-cards-data_2.18.1-3_all.deb to pool/main/g/gnome-games/gnome-cards-data_2.18.1-3_all.deb gnome-games-data_2.18.1-3_all.deb to pool/main/g/gnome-games/gnome-games-data_2.18.1-3_all.deb gnome-games-servers_2.18.1-3_amd64.deb to pool/main/g/gnome-games/gnome-games-servers_2.18.1-3_amd64.deb gnome-games_2.18.1-3.diff.gz to pool/main/g/gnome-games/gnome-games_2.18.1-3.diff.gz gnome-games_2.18.1-3.dsc to pool/main/g/gnome-games/gnome-games_2.18.1-3.dsc gnome-games_2.18.1-3_amd64.deb to pool/main/g/gnome-games/gnome-games_2.18.1-3_amd64.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. Josselin Mouette <[EMAIL PROTECTED]> (supplier of updated gnome-games 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.7 Date: Wed, 23 May 2007 12:06:45 +0200 Source: gnome-games Binary: gnome-games-servers gnome-cards-data gnome-games-data gnome-games Architecture: source amd64 all Version: 1:2.18.1-3 Distribution: unstable Urgency: low Maintainer: Josselin Mouette <[EMAIL PROTECTED]> Changed-By: Josselin Mouette <[EMAIL PROTECTED]> Description: gnome-cards-data - data files for the GNOME card games gnome-games - games for the GNOME desktop gnome-games-data - data files for the GNOME games gnome-games-servers - GGZ gaming zone servers for the GNOME games Closes: 425617 Changes: gnome-games (1:2.18.1-3) unstable; urgency=low . * Depend on python-gnome2 (closes: #425617). Files: dd9a2bac9738d4e256c8eef1b63490aa 1339 gnome optional gnome-games_2.18.1-3.dsc 0963690aed876a8f55a8d940689f9b68 80755 gnome optional gnome-games_2.18.1-3.diff.gz a8c2bf572ecb914f45a0e88f11d20f48 6987746 gnome optional gnome-games-data_2.18.1-3_all.deb ada6232efebbc2c82b95c1bc2fa8507c 262560 gnome optional gnome-cards-data_2.18.1-3_all.deb 3efa5522bae5fabae882668d4c00a1bf 934056 gnome optional gnome-games_2.18.1-3_amd64.deb b2b09ffe99588c417575f74dfd3b4ad9 263480 gnome optional gnome-games-servers_2.18.1-3_amd64.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVBqSrSla4ddfhTMRAnIcAKCHGXOwq2W0zDsa2IcYhv4YSt8vRACg+DS8 9filKZMX/rKAOtrNXjwLxQs= =7MlB -END PGP SIGNATURE- --- End Message ---
Bug#423732: dialog --tailbox not functional (fwd)
On Wed, 23 May 2007, Andrey J. Melnikoff (TEMHOTA) wrote: Hi Thomas Dickey! On Mon, May 14, 2007 at 06:19:45AM -0400, Thomas Dickey wrote next: On Mon, 14 May 2007, Santiago Vila wrote: Hello. Received this from the Debian BTS. I've increased the severity to "serious" to avoid this package to enter testing, as it's a regression. I'll investigate this evening (thanks) Still no go - file re-readed ONLY after I press Left/Right key. Up/Down keys - only refresh screen and nothing. up/down keys don't do anything, haven't done anything in tailbox in any previous version. That's a wishlist item which you should report separately. -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425625: marked as done (CVE-2007-2754: integer overflow and heap-based buffer overflow vulnerability in freetype)
Your message dated Wed, 23 May 2007 10:47:03 + with message-id <[EMAIL PROTECTED]> and subject line Bug#425625: fixed in freetype 2.2.1-6 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: libfreetype6 Version: 2.2.1-5 Severity: grave Tags: security patch Justification: user security hole A vulnerability has been found in freetype. CVE-2007-2754: "Integer signedness error in truetype/ttgload.c in Freetype 2.3.4 and earlier might allow remote attackers to execute arbitrary code via a crafted TTF image with a negative n_points value, which leads to an integer overflow and heap-based buffer overflow." A patch is at [1]. Please mention the CVE id in the changelog. [1] http://cvs.savannah.nongnu.org/viewvc/freetype2/src/truetype/ttgload.c?root=freetype&r1=1.177&r2=1.178 --- End Message --- --- Begin Message --- Source: freetype Source-Version: 2.2.1-6 We believe that the bug you reported is fixed in the latest version of freetype, which is due to be installed in the Debian FTP archive: freetype2-demos_2.2.1-6_i386.deb to pool/main/f/freetype/freetype2-demos_2.2.1-6_i386.deb freetype_2.2.1-6.diff.gz to pool/main/f/freetype/freetype_2.2.1-6.diff.gz freetype_2.2.1-6.dsc to pool/main/f/freetype/freetype_2.2.1-6.dsc libfreetype6-dev_2.2.1-6_i386.deb to pool/main/f/freetype/libfreetype6-dev_2.2.1-6_i386.deb libfreetype6-udeb_2.2.1-6_i386.udeb to pool/main/f/freetype/libfreetype6-udeb_2.2.1-6_i386.udeb libfreetype6_2.2.1-6_i386.deb to pool/main/f/freetype/libfreetype6_2.2.1-6_i386.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. Steve Langasek <[EMAIL PROTECTED]> (supplier of updated freetype 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.7 Date: Wed, 23 May 2007 03:26:25 -0700 Source: freetype Binary: freetype2-demos libfreetype6-udeb libfreetype6 libfreetype6-dev Architecture: source i386 Version: 2.2.1-6 Distribution: unstable Urgency: high Maintainer: Steve Langasek <[EMAIL PROTECTED]> Changed-By: Steve Langasek <[EMAIL PROTECTED]> Description: freetype2-demos - FreeType 2 demonstration programs libfreetype6 - FreeType 2 font engine, shared library files libfreetype6-dev - FreeType 2 font engine, development files libfreetype6-udeb - FreeType 2 font engine for the debian-installer (udeb) Closes: 425625 Changes: freetype (2.2.1-6) unstable; urgency=high . * High-urgency upload for security fix. * Remove spurious patch file from the package diff, sigh. * Add debian/patches-freetype/CVE-2007-2754_ttgfload to address CVE-2007-2754, a bug allowing execution of arbitrary code via a crafted TTF image by way of an integer overflow. Closes: #425625. Files: d806d4123e6d8ff8c775284a71c57ab0 786 libs optional freetype_2.2.1-6.dsc 143375cf09b19c9273e859171b66dfe6 30991 libs optional freetype_2.2.1-6.diff.gz 23d68b244ebef79fdc394de17824768e 343124 libs optional libfreetype6_2.2.1-6_i386.deb c678a6b95b8855753d4d0d769d42e380 640060 libdevel optional libfreetype6-dev_2.2.1-6_i386.deb 8e6021e29c466c01b877ba644f33cd5a 133848 utils optional freetype2-demos_2.2.1-6_i386.deb de5e69699190fcf5b1d2af74b4fe19df 236920 debian-installer extra libfreetype6-udeb_2.2.1-6_i386.udeb Package-Type: udeb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGVBoEKN6ufymYLloRAls7AKCsnGhX+7teWTeUBb+bDvHaGyB6egCffiFK 7kJIU1W+5AwSA6iFrDEjT1s= =tZLq -END PGP SIGNATURE- --- End Message ---
Bug#421969: texlive-base-bin: Huge number of etex and pdfetex sub-processes created
Norbert Preining <[EMAIL PROTECTED]> wrote: > On Mit, 23 Mai 2007, Frank Küster wrote: >> Does this happen generally when old xmltex configuration files are >> present in a TeX Live 2007 installation? In this case we should do >> something about it... > > Well, stable has 1.9-11.1 which ships etc/texmf/fmt.d/40xmltex.cnf > without magic comment and without list file, so it will be included by > update-fmtutil. It has this home made "mv 40xmltex.cnf 40xmltex.cnf.disable" thing in postrm. I didn't remember, but found out because upgrading from etch with xmltex's conffiles to sid and the packages on people.debian.org works fine. > Same testings 1.9-11.2. > > I guess we should add code to texlive-base-bin or texlive-common, but > how? I'm not sure what's the receipe to reproduce the bug, therefore I'm unsure what we need to do. If we need to take action, and given the sad state of xmltex as it was before, I suggest we take the freedom to rename any xmltex conffile to $file.disabled in texlive-common's postinst if the package is in state rc. I'm just not sure how to find that out properly. Regards, Frank -- Dr. Frank Küster Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich Debian Developer (teTeX/TeXLive)
Processed: severity of 425617 is grave
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > severity 425617 grave Bug#425617: gnome-sudoku crashes unless python-gnome2 is installed Severity set to `grave' from `normal' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425680:
The URL of the bug upstream: https://bugzilla.samba.org/show_bug.cgi?id=4637 regards. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: tagging 425668
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.10.4 > tags 425668 sid Bug#425668: redhat-cluster-modules-2.6.18-4-686: Package uninstallable There were no tags set. Tags added: sid > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425680: samba: The security fix for CVE-2007-2446 broke Samba
Subject: samba: The security fix for CVE-2007-2446 broke Samba Package: samba Version: 3.0.24-6 Severity: grave Justification: renders package unusable This is a copy of a bug opened upstream. A patch is avaliable for 3.0.25 but not for 3.0.24 on etch. It happens on i386, and alpha. 3.0.24-etch2 suffers from the bug too. I'm using Gentoo (the stable tree) and Debian Etch. The recent update that fixes three security bugs has broken my samba domain. I'm able to login in the domain but when accessing the share of a machine which is not the PDC, the sharing machine denies my access. "smbclient -L with my user" against that sharig machine returns me NT_STATUS_NO_LOGON_SERVERS. If I try smbclient against the PDC, the PDC returns me the list of shares. The problem seems to be the fix for CVE-2007-2446. If I recompile the samba package without that fix in my Gentoo boxes, the whole domain works perfectly. The same goes for the Debian machines, if I downgrade the version to the non fixed. Gentoo: Samba 3.0.24-r2 Debian: 3.0.24-6etch1 The log on the sharing machine: [2007/05/18 11:29:36, 0] auth/auth_domain.c:domain_client_validate(246) domain_client_validate: unable to validate password for user rafa in domain CRIPTODOMINIO to Domain controller DILMUN. Error was NT_STATUS_UNSUCCESSFUL. -- System Information: Debian Release: 4.0 APT prefers stable APT policy: (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-4-686 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Versions of packages samba depends on: ii debconf 1.5.11 Debian configuration management sy ii libacl1 2.2.41-1Access control list shared library ii libattr1 2.4.32-1Extended attribute shared library ii libc62.3.6.ds1-13GNU C Library: Shared libraries ii libcomer 1.39+1.40-WIP-2006.11.14+dfsg-2 common error description library ii libcupsy 1.2.7-4 Common UNIX Printing System(tm) - ii libgnutl 1.4.4-3 the GNU TLS library - runtime libr ii libkrb53 1.4.4-7etch1MIT Kerberos runtime libraries ii libldap2 2.1.30-13.3 OpenLDAP libraries ii libpam-m 0.79-4 Pluggable Authentication Modules f ii libpam-r 0.79-4 Runtime support for the PAM librar ii libpam0g 0.79-4 Pluggable Authentication Modules l ii libpopt0 1.10-3 lib for parsing cmdline parameters ii logrotat 3.7.1-3 Log rotation utility ii lsb-base 3.1-23.1Linux Standard Base 3.1 init scrip ii netbase 4.29Basic TCP/IP networking system ii procps 1:3.2.7-3 /proc file system utilities ii samba-co 3.0.24-6Samba common files used by both th ii zlib1g 1:1.2.3-13 compression library - runtime Versions of packages samba recommends: pn smbldap-tools (no description available) -- debconf information excluded -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#421969: texlive-base-bin: Huge number of etex and pdfetex sub-processes created
Yes, once more sorry about following up on that bug. I just thought it was related... I will try to remove (and purge) xmltex ! -- Pierre Norbert Preining wrote: On Mit, 23 Mai 2007, Ralf Stubner wrote: I guess we can close this bug? Do you agree? Careful; Pierre posted to a (probably unrelated) existing bug. Uups, right. Thanks. Best wishes Norbert --- Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena Debian Developer <[EMAIL PROTECTED]> Debian TeX Group gpg DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 --- BARSTIBLEY A humorous device such as a china horse or small naked porcelain infant which jocular hosts use of piss water into your Scotch with. --- Douglas Adams, The Meaning of Liff
Bug#425669: unable to stat `./usr/lib/wine/wineboot.exe.so' (which I was about to install)
Olleg Samoylov wrote: Package: wine Version: 0.9.31-1 Severity: grave Package wine_0.9.32-1_amd64.deb is broken: # /usr/share/mc/extfs/deb run # /srv/ftp/mirror/debian/pool/main/w/wine/wine_0.9.32-1_amd64.deb INSTALL Installing /srv/ftp/mirror/debian/pool/main/w/wine/wine_0.9.32-1_amd64.deb (Reading database ... 167543 files and directories currently installed.) Preparing to replace wine 0.9.31-1 (using .../w/wine/wine_0.9.32-1_amd64.deb) ... Unpacking replacement wine ... dpkg: error processing /srv/ftp/mirror/debian/pool/main/w/wine/wine_0.9.32-1_amd64.deb (--install): unable to stat `./usr/lib/wine/wineboot.exe.so' (which I was about to install): Invalid argument dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /srv/ftp/mirror/debian/pool/main/w/wine/wine_0.9.32-1_amd64.deb I don't know... invalid argument to stat while running dpkg-deb... I'm not sure under what conditions this would normally occur, but it sounds more related to your filesystem than a problem with the package. Are you sure this isn't just a problem on your side? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425596: marked as done (ncurses: FTBFS on amd64: debian/tmp/usr/lib32/libncurses.so not found)
Your message dated Wed, 23 May 2007 07:47:03 + with message-id <[EMAIL PROTECTED]> and subject line Bug#425596: fixed in ncurses 5.6-3 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: ncurses Version: 5.6-2 Severity: serious Hi, Your package is failing to build with the following error: dh_movefiles -s dh_movefiles: debian/tmp/usr/lib32/libncurses.so not found (supposed to put it in lib32ncurses5-dev) dh_movefiles: debian/tmp/usr/lib32/libform.so not found (supposed to put it in lib32ncurses5-dev) dh_movefiles: debian/tmp/usr/lib32/libmenu.so not found (supposed to put it in lib32ncurses5-dev) [...] Kurt --- End Message --- --- Begin Message --- Source: ncurses Source-Version: 5.6-3 We believe that the bug you reported is fixed in the latest version of ncurses, which is due to be installed in the Debian FTP archive: lib64ncurses5-dev_5.6-3_i386.deb to pool/main/n/ncurses/lib64ncurses5-dev_5.6-3_i386.deb lib64ncurses5_5.6-3_i386.deb to pool/main/n/ncurses/lib64ncurses5_5.6-3_i386.deb libncurses5-dbg_5.6-3_i386.deb to pool/main/n/ncurses/libncurses5-dbg_5.6-3_i386.deb libncurses5-dev_5.6-3_i386.deb to pool/main/n/ncurses/libncurses5-dev_5.6-3_i386.deb libncurses5_5.6-3_i386.deb to pool/main/n/ncurses/libncurses5_5.6-3_i386.deb libncursesw5-dbg_5.6-3_i386.deb to pool/main/n/ncurses/libncursesw5-dbg_5.6-3_i386.deb libncursesw5-dev_5.6-3_i386.deb to pool/main/n/ncurses/libncursesw5-dev_5.6-3_i386.deb libncursesw5_5.6-3_i386.deb to pool/main/n/ncurses/libncursesw5_5.6-3_i386.deb ncurses-base_5.6-3_all.deb to pool/main/n/ncurses/ncurses-base_5.6-3_all.deb ncurses-bin_5.6-3_i386.deb to pool/main/n/ncurses/ncurses-bin_5.6-3_i386.deb ncurses-term_5.6-3_all.deb to pool/main/n/ncurses/ncurses-term_5.6-3_all.deb ncurses_5.6-3.diff.gz to pool/main/n/ncurses/ncurses_5.6-3.diff.gz ncurses_5.6-3.dsc to pool/main/n/ncurses/ncurses_5.6-3.dsc 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. Daniel Baumann <[EMAIL PROTECTED]> (supplier of updated ncurses 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.7 Date: Wed, 23 May 2007 08:59:00 +0200 Source: ncurses Binary: ncurses-base lib64ncurses5 libncursesw5-dev libncursesw5-dbg ncurses-bin libncurses5 libncursesw5 libncurses5-dev ncurses-term lib32ncurses5-dev lib32ncurses5 libncurses5-dbg lib64ncurses5-dev Architecture: source i386 all Version: 5.6-3 Distribution: unstable Urgency: low Maintainer: Daniel Baumann <[EMAIL PROTECTED]> Changed-By: Daniel Baumann <[EMAIL PROTECTED]> Description: lib64ncurses5 - Shared libraries for terminal handling (64-bit) lib64ncurses5-dev - Developer's libraries for ncurses (64-bit) libncurses5 - Shared libraries for terminal handling libncurses5-dbg - Debugging/profiling libraries for ncurses libncurses5-dev - Developer's libraries and docs for ncurses libncursesw5 - Shared libraries for terminal handling (wide character support) libncursesw5-dbg - Debugging/profiling libraries for ncurses libncursesw5-dev - Developer's libraries for ncursesw ncurses-base - Descriptions of common terminal types ncurses-bin - Terminal-related programs and man pages ncurses-term - Additional terminal type definitions Closes: 425596 Changes: ncurses (5.6-3) unstable; urgency=low . * Really reverting ia32 library directory rename (Closes: #425596). Files: f86d98ef8d26a98ac5651d0c39c59522 910 libs standard ncurses_5.6-3.dsc 9f1c1ce8100a529438293d31ef4240e1 37110 libs standard ncurses_5.6-3.diff.gz 7b27d43682f233905b2d84d9aa1f309e 311406 libs required libncurses5_5.6-3_i386.deb b63eed4efc22c171dd07e438e500ac54 1422822 libdevel optional libncurses5-dev_5.6-3_i386.deb 883728058995709d57c420c6afe312fe 1469914 libdevel extra libncurses5-dbg_5.6-3_i386.deb e575c8ae58b4b73a9a526ae796187a05 332126 libs important libncursesw5_5.6-3_i386.deb 868820b75ebd34b71b59f0c1994122d7 445444 libdevel optional libncursesw5-dev_5.6-3_i386.deb 7347f6b07b8d97628b1f265704e12750 1643466 libdevel extra libncursesw5-dbg_5.6-3_i386.deb 7f4751a66c91f3ea544a9b5297e109ab 333080
Bug#421969: texlive-base-bin: Huge number of etex and pdfetex sub-processes created
On Mit, 23 Mai 2007, Frank Küster wrote: > Does this happen generally when old xmltex configuration files are > present in a TeX Live 2007 installation? In this case we should do > something about it... Well, stable has 1.9-11.1 which ships etc/texmf/fmt.d/40xmltex.cnf without magic comment and without list file, so it will be included by update-fmtutil. Same testings 1.9-11.2. I guess we should add code to texlive-base-bin or texlive-common, but how? Best wishes Norbert --- Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena Debian Developer <[EMAIL PROTECTED]> Debian TeX Group gpg DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 --- WHISSENDINE (n.) The noise which occurs (often by night) in a strange house, which is too short and too irregular for you ever to be able to find out what it is and where it comes from. --- Douglas Adams, The Meaning of Liff -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#421969: texlive-base-bin: Huge number of etex and pdfetex sub-processes created
Norbert Preining <[EMAIL PROTECTED]> wrote: > Ok, so I suppose the following: > - you (once, some time ago) had xmltex installed > - then you removed it, but didn't purge it, so the config files did > remain > - upgrading swapped fmtutil into an endless loop because it tried to > update the xmltex format (older versions were buggy) even if it is not > installed, this goes into an infinite loop. > - you installed the new xmltex version which fixes these problems > > Now you can remove (or purge) xmltex. > > I guess we can close this bug? Do you agree? (nothing to close) Does this happen generally when old xmltex configuration files are present in a TeX Live 2007 installation? In this case we should do something about it... Regards, Frank -- Dr. Frank Küster Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich Debian Developer (teTeX/TeXLive)
Bug#398091: marked as done (Broken dependencies : phpapi-20051025 (unstable))
Your message dated Wed, 23 May 2007 07:32:04 + with message-id <[EMAIL PROTECTED]> and subject line Bug#398091: fixed in xcache 1.2.0-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: php5-xcache Version: 1.0-4.1 Severity: grave # aptitude install php5-xcache Reading package lists... Done Building dependency tree... Done Reading extended state information Initializing package states... Done Reading task descriptions... Done Building tag database... Done The following packages are BROKEN: php5-xcache 0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 58.5kB of archives. After unpacking 225kB will be used. The following packages have unmet dependencies: php5-xcache: Depends: phpapi-20051025 which is a virtual package. Resolving dependencies... Unable to resolve dependencies! Giving up... Abort. # aptitude show phpapi-20051025 No current or candidate version found for phpapi-20051025 Package: phpapi-20051025 State: not a real package -- System Information: Debian Release: 4.0 APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.18.1-petris Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Versions of packages php5-xcache depends on: ii libapache2-mod-php5 [phpapi- 5.1.6-6 server-side, HTML-embedded scripti ii libc62.3.6.ds1-7 GNU C Library: Shared libraries ii php5-cgi [phpapi-20051025] 5.1.6-6 server-side, HTML-embedded scripti ii php5-cli [phpapi-20051025] 5.1.6-6 command-line interpreter for the p php5-xcache recommends no packages. -- no debconf information --- End Message --- --- Begin Message --- Source: xcache Source-Version: 1.2.0-2 We believe that the bug you reported is fixed in the latest version of xcache, which is due to be installed in the Debian FTP archive: php5-xcache_1.2.0-2_i386.deb to pool/main/x/xcache/php5-xcache_1.2.0-2_i386.deb xcache_1.2.0-2.diff.gz to pool/main/x/xcache/xcache_1.2.0-2.diff.gz xcache_1.2.0-2.dsc to pool/main/x/xcache/xcache_1.2.0-2.dsc 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. Michal ÄihaÅ <[EMAIL PROTECTED]> (supplier of updated xcache 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.7 Date: Wed, 23 May 2007 09:15:24 +0200 Source: xcache Binary: php5-xcache Architecture: source i386 Version: 1.2.0-2 Distribution: unstable Urgency: low Maintainer: Michal ÄihaÅ <[EMAIL PROTECTED]> Changed-By: Michal ÄihaÅ <[EMAIL PROTECTED]> Description: php5-xcache - Fast, stable PHP opcode cacher Closes: 389318 389586 397432 398091 398244 Changes: xcache (1.2.0-2) unstable; urgency=low . * You should check opened bugs before upload. * Acknowledge NMU, thanks Steve (Closes: #389318). * Current version seems to build fine (Closes: #398244). * We depend on current PHP API (Closes: #398091). * Default xcache.ini for PHP is also installed since previous upload (Closes: #397432). * No reference PHP4 as there is no PHP4 package anymore (Closes: #389586). Files: c3534ec845205aee9f0453153db1b44c 664 web optional xcache_1.2.0-2.dsc 0df7d2d0c12c92e6ee9672114a13a6de 4539 web optional xcache_1.2.0-2.diff.gz dfec809cf6474178e9fab6078f827196 71066 web optional php5-xcache_1.2.0-2_i386.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGU+t53DVS6DbnVgQRAnoYAJ9ROLRWvkOrDMPZuxyAAqZYVK8YxgCfdECL +x5WdYllQSdRSRyhhpd9M7w= =X7Ae -END PGP SIGNATURE- --- End Message ---
Bug#389318: marked as done (xcache_1.0-4(ia64/unstable): FTBFS: compiler errors)
Your message dated Wed, 23 May 2007 07:32:04 + with message-id <[EMAIL PROTECTED]> and subject line Bug#389318: fixed in xcache 1.2.0-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xcache Version: 1.0-4 Severity: serious There was an error while trying to autobuild your package: > Automatic build of xcache_1.0-4 on caballero by sbuild/ia64 85 > Build started at 20060922-0746 [...] > ** Using build dependencies supplied by package: > Build-Depends: debhelper (>= 4.2), php4-dev, php5-dev [...] > /build/buildd/xcache-1.0/build-php4/processor_real.c: In function > 'xc_restore_HashTable_zval_ptr': > /build/buildd/xcache-1.0/build-php4/processor_real.c:13505: error: 'zval_ptr' > undeclared (first use in this function) > /build/buildd/xcache-1.0/build-php4/processor_real.c:13518: warning: implicit > declaration of function 'xc_restore_zval_ptr' > /build/buildd/xcache-1.0/build-php4/processor_real.c:13522: error: expected > expression before ')' token > /build/buildd/xcache-1.0/build-php4/processor_real.c:13548: error: expected > expression before ')' token > /build/buildd/xcache-1.0/build-php4/processor_real.c:13560: error: expected > expression before ')' token > /build/buildd/xcache-1.0/build-php4/processor_real.c: At top level: > /build/buildd/xcache-1.0/build-php4/processor_real.c:14888: error: expected > declaration specifiers or '...' before 'zval_ptr' > /build/buildd/xcache-1.0/build-php4/processor_real.c:14888: warning: type > defaults to 'int' in declaration of 'zval_ptr' > /build/buildd/xcache-1.0/build-php4/processor_real.c:14888: error: expected > ';', ',' or ')' before '*' token > /build/buildd/xcache-1.0/build-php4/processor_real.c: In function > 'xc_restore_zend_op_array': > /build/buildd/xcache-1.0/build-php4/processor_real.c:17122: warning: unused > variable 'i' > make[1]: *** [processor.lo] Error 1 > make[1]: Leaving directory `/build/buildd/xcache-1.0/build-php4' > make: *** [build-php4-stamp] Error 2 A full build log can be found at: http://buildd.debian.org/build.php?arch=ia64&pkg=xcache&ver=1.0-4 --- End Message --- --- Begin Message --- Source: xcache Source-Version: 1.2.0-2 We believe that the bug you reported is fixed in the latest version of xcache, which is due to be installed in the Debian FTP archive: php5-xcache_1.2.0-2_i386.deb to pool/main/x/xcache/php5-xcache_1.2.0-2_i386.deb xcache_1.2.0-2.diff.gz to pool/main/x/xcache/xcache_1.2.0-2.diff.gz xcache_1.2.0-2.dsc to pool/main/x/xcache/xcache_1.2.0-2.dsc 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. Michal ÄihaÅ <[EMAIL PROTECTED]> (supplier of updated xcache 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.7 Date: Wed, 23 May 2007 09:15:24 +0200 Source: xcache Binary: php5-xcache Architecture: source i386 Version: 1.2.0-2 Distribution: unstable Urgency: low Maintainer: Michal ÄihaÅ <[EMAIL PROTECTED]> Changed-By: Michal ÄihaÅ <[EMAIL PROTECTED]> Description: php5-xcache - Fast, stable PHP opcode cacher Closes: 389318 389586 397432 398091 398244 Changes: xcache (1.2.0-2) unstable; urgency=low . * You should check opened bugs before upload. * Acknowledge NMU, thanks Steve (Closes: #389318). * Current version seems to build fine (Closes: #398244). * We depend on current PHP API (Closes: #398091). * Default xcache.ini for PHP is also installed since previous upload (Closes: #397432). * No reference PHP4 as there is no PHP4 package anymore (Closes: #389586). Files: c3534ec845205aee9f0453153db1b44c 664 web optional xcache_1.2.0-2.dsc 0df7d2d0c12c92e6ee9672114a13a6de 4539 web optional xcache_1.2.0-2.diff.gz dfec809cf6474178e9fab6078f827196 71066 web optional php5-xcache_1.2.0-2_i386.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGU+t53DVS6DbnVgQRAnoYAJ9ROLRWvkOrDMPZuxyAAqZYVK8YxgCfdECL +x5WdYllQSdRSRyhhpd9M7w= =X7Ae -END PGP SIGNATURE- --- End Message ---
Bug#398244: marked as done (xcache - FTBFS: AUTOCHECK ERROR: ==== calc zend_brk_cont_element =================)
Your message dated Wed, 23 May 2007 07:32:04 + with message-id <[EMAIL PROTECTED]> and subject line Bug#398244: fixed in xcache 1.2.0-2 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: xcache Version: 1.0-4.1+b1 Severity: serious There was an error while trying to autobuild your package: > Automatic build of xcache_1.0-4.1+b1 on debian-31.osdl.marist.edu by > sbuild/s390 85 [...] > AUTOCHECK INFO: runtime autocheck Disabled (optimized build) > AUTOCHECK INFO: zend_compiled_variable: processor looks good > AUTOCHECK INFO: zend_try_catch_element: processor looks good > AUTOCHECK ERROR: calc zend_brk_cont_element = > AUTOCHECK expected: start,cont,brk,parent > AUTOCHECK missing : start > AUTOCHECK INFO: HashTable: processor looks good > AUTOCHECK INFO: zval: processor looks good > AUTOCHECK INFO: zend_arg_info: processor looks good > AUTOCHECK ERROR: calc zend_property_info = > AUTOCHECK expected: flags,name,name_length,h,doc_comment,doc_comment_len,ce > AUTOCHECK missing : ce > AUTOCHECK INFO: zend_class_entry: processor looks good > AUTOCHECK INFO: znode: processor looks good > AUTOCHECK INFO: zend_op: processor looks good > AUTOCHECK INFO: zend_op_array: processor looks good > AUTOCHECK INFO: xc_funcinfo_t: processor looks good > AUTOCHECK INFO: xc_classinfo_t: processor looks good > AUTOCHECK INFO: xc_entry_data_php_t: processor looks good > AUTOCHECK INFO: xc_entry_data_var_t: processor looks good > AUTOCHECK INFO: xc_entry_t: processor looks good > AUTOCHECK ERROR: store zend_brk_cont_element = > AUTOCHECK ERROR: store zend_property_info = > AUTOCHECK ERROR: restore zend_brk_cont_element = > AUTOCHECK ERROR: restore zend_property_info = > AUTOCHECK ERROR: dprint zend_brk_cont_element = > AUTOCHECK ERROR: dprint zend_property_info = > AUTOCHECK ERROR: dasm zend_brk_cont_element = > AUTOCHECK ERROR: dasm zend_property_info = > AUTOCHECK ERROR: asm zend_brk_cont_element = > AUTOCHECK ERROR: asm zend_property_info = > make[1]: *** [processor.out] Error 1 > make[1]: Leaving directory `/build/buildd/xcache-1.0/build-php5' > make: *** [build-php5-stamp] Error 2 > ** > Build finished at 2006-0508 > FAILED [dpkg-buildpackage died] --- End Message --- --- Begin Message --- Source: xcache Source-Version: 1.2.0-2 We believe that the bug you reported is fixed in the latest version of xcache, which is due to be installed in the Debian FTP archive: php5-xcache_1.2.0-2_i386.deb to pool/main/x/xcache/php5-xcache_1.2.0-2_i386.deb xcache_1.2.0-2.diff.gz to pool/main/x/xcache/xcache_1.2.0-2.diff.gz xcache_1.2.0-2.dsc to pool/main/x/xcache/xcache_1.2.0-2.dsc 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. Michal ÄihaÅ <[EMAIL PROTECTED]> (supplier of updated xcache 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.7 Date: Wed, 23 May 2007 09:15:24 +0200 Source: xcache Binary: php5-xcache Architecture: source i386 Version: 1.2.0-2 Distribution: unstable Urgency: low Maintainer: Michal ÄihaÅ <[EMAIL PROTECTED]> Changed-By: Michal ÄihaÅ <[EMAIL PROTECTED]> Description: php5-xcache - Fast, stable PHP opcode cacher Closes: 389318 389586 397432 398091 398244 Changes: xcache (1.2.0-2) unstable; urgency=low . * You should check opened bugs before upload. * Acknowledge NMU, thanks Steve (Closes: #389318). * Current version seems to build fine (Closes: #398244). * We depend on current PHP API (Closes: #398091). * Default xcache.ini for PHP is also installed since previous upload (Closes: #397432). * No reference PHP4 as there is no PHP4 package anymore (Closes: #389586). Files: c3534ec845205aee9f0453153db1b44c 664 web optional xcache_1.2.0-2.dsc 0df7d2d0c12c92e6ee9672114a13a6de 4539 web optional xcache_1.2.0-
Bug#425669: unable to stat `./usr/lib/wine/wineboot.exe.so' (which I was about to install)
Package: wine Version: 0.9.31-1 Severity: grave Package wine_0.9.32-1_amd64.deb is broken: # /usr/share/mc/extfs/deb run # /srv/ftp/mirror/debian/pool/main/w/wine/wine_0.9.32-1_amd64.deb INSTALL Installing /srv/ftp/mirror/debian/pool/main/w/wine/wine_0.9.32-1_amd64.deb (Reading database ... 167543 files and directories currently installed.) Preparing to replace wine 0.9.31-1 (using .../w/wine/wine_0.9.32-1_amd64.deb) ... Unpacking replacement wine ... dpkg: error processing /srv/ftp/mirror/debian/pool/main/w/wine/wine_0.9.32-1_amd64.deb (--install): unable to stat `./usr/lib/wine/wineboot.exe.so' (which I was about to install): Invalid argument dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /srv/ftp/mirror/debian/pool/main/w/wine/wine_0.9.32-1_amd64.deb -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.18-4-amd64 (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 Versions of packages wine depends on: ii debconf [debconf-2.0]1.5.13 Debian configuration management sy ii libwine 0.9.32-1Windows API Implementation (Librar ii xbase-clients1:7.1.ds1-2 miscellaneous X clients Versions of packages wine recommends: ii msttcorefonts 2.0Installer for Microsoft TrueType c ii wine-utils0.9.32-1 Windows API Implementation (Utilit -- debconf information excluded -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#421969: texlive-base-bin: Huge number of etex and pdfetex sub-processes created
On Mit, 23 Mai 2007, Ralf Stubner wrote: > > I guess we can close this bug? Do you agree? > > Careful; Pierre posted to a (probably unrelated) existing bug. Uups, right. Thanks. Best wishes Norbert --- Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena Debian Developer <[EMAIL PROTECTED]> Debian TeX Group gpg DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 --- BARSTIBLEY A humorous device such as a china horse or small naked porcelain infant which jocular hosts use of piss water into your Scotch with. --- Douglas Adams, The Meaning of Liff -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#425668: redhat-cluster-modules-2.6.18-4-686: Package uninstallable
Package: redhat-cluster-modules-2.6.18-4-686 Severity: grave Justification: renders package unusable Hi, This package can't be installed : $ apt-get install redhat-cluster-modules-2.6.18-4-686 Reading package lists... Done Building dependency tree... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. Since you only requested a single operation it is extremely likely that the package is simply not installable and a bug report against that package should be filed. The following information may help to resolve the situation: The following packages have unmet dependencies: redhat-cluster-modules-2.6.18-4-686: Depends: linux-modules-2.6.18-4-686 but it is not installable E: Broken packages Christian -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (900, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.21.1 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages redhat-cluster-modules-2.6.18-4-686 depends on: pn linux-modules-2.6.18-4-686 (no description available) redhat-cluster-modules-2.6.18-4-686 recommends no packages. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#421969: texlive-base-bin: Huge number of etex and pdfetex sub-processes created
Norbert Preining wrote: > I guess we can close this bug? Do you agree? Careful; Pierre posted to a (probably unrelated) existing bug. cheerio ralf
Bug#424833: marked as done (php4-apache2-mod-bt: affected by php4-removal)
Your message dated Wed, 23 May 2007 07:02:03 + with message-id <[EMAIL PROTECTED]> and subject line Bug#424833: fixed in mod-bt 0.0.19+p4.2340-1 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: php4-apache2-mod-bt Severity: serious User: [EMAIL PROTECTED] Usertags: php4-removal This package has been identified as affected by the removal of php4 in debian. As php4 will soon be removed, it is very important that we: - update the dependencies of all applicable packages to coexist with php5 - remove source and/or binary packages which have no use without php4 for more information on what may need to be done, please see http://wiki.debian.org/PHP4Removal if you have any questions, please contact the debian php maintainers [EMAIL PROTECTED] thanks! --- End Message --- --- Begin Message --- Source: mod-bt Source-Version: 0.0.19+p4.2340-1 We believe that the bug you reported is fixed in the latest version of mod-bt, which is due to be installed in the Debian FTP archive: libapache2-mod-bt-dev_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libapache2-mod-bt-dev_0.0.19+p4.2340-1_i386.deb libapache2-mod-bt_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libapache2-mod-bt_0.0.19+p4.2340-1_i386.deb libapache2-modbt-perl_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libapache2-modbt-perl_0.0.19+p4.2340-1_i386.deb libbttracker-utils_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libbttracker-utils_0.0.19+p4.2340-1_i386.deb libbttracker0-dev_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libbttracker0-dev_0.0.19+p4.2340-1_i386.deb libbttracker0_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libbttracker0_0.0.19+p4.2340-1_i386.deb libbtutil-utils_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libbtutil-utils_0.0.19+p4.2340-1_i386.deb libbtutil0-dev_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libbtutil0-dev_0.0.19+p4.2340-1_i386.deb libbtutil0_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libbtutil0_0.0.19+p4.2340-1_i386.deb libnet-bittorrent-libbt-tracker-perl_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/libnet-bittorrent-libbt-tracker-perl_0.0.19+p4.2340-1_i386.deb mod-bt_0.0.19+p4.2340-1.diff.gz to pool/main/m/mod-bt/mod-bt_0.0.19+p4.2340-1.diff.gz mod-bt_0.0.19+p4.2340-1.dsc to pool/main/m/mod-bt/mod-bt_0.0.19+p4.2340-1.dsc mod-bt_0.0.19+p4.2340.orig.tar.gz to pool/main/m/mod-bt/mod-bt_0.0.19+p4.2340.orig.tar.gz php5-apache2-mod-bt_0.0.19+p4.2340-1_i386.deb to pool/main/m/mod-bt/php5-apache2-mod-bt_0.0.19+p4.2340-1_i386.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. Tyler 'Crackerjack' MacDonald <[EMAIL PROTECTED]> (supplier of updated mod-bt 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.7 Date: Thu, 17 May 2007 16:27:31 +0100 Source: mod-bt Binary: libbtutil0-dev libbttracker-utils libbttracker0 libapache2-mod-bt libbttracker0-dev php5-apache2-mod-bt libbtutil-utils libbtutil0 libapache2-mod-bt-dev libapache2-modbt-perl libnet-bittorrent-libbt-tracker-perl Architecture: source i386 Version: 0.0.19+p4.2340-1 Distribution: unstable Urgency: low Maintainer: Tyler 'Crackerjack' MacDonald <[EMAIL PROTECTED]> Changed-By: Tyler 'Crackerjack' MacDonald <[EMAIL PROTECTED]> Description: libapache2-mod-bt - BitTorrent tracker for the Apache2 web server libapache2-mod-bt-dev - Header files for mod_bt libapache2-modbt-perl - Perl bindings for mod_bt libbttracker-utils - BitTorrent Tracker Library - Utility Programs libbttracker0 - BitTorrent Tracker Library libbttracker0-dev - BitTorrent Tracker library - Development files libbtutil-utils - BitTorrent utility programs libbtutil0 - BitTorrent utility library libbtutil0-dev - BitTorrent utility library - Development files libnet-bittorrent-libbt-tracker-perl - Perl bindings for libbttracker php5-apache2-mod-bt - PHP bindings for mod_bt Closes: 424833 Changes: mod-bt (0.0.19+p4.2340-1) unstable; urgency=low . * Remove php4 package (Closes: #424833) Files: 725c43ce8911031b28cbc967446dad7e 992 net optional mod-bt_0.0.19+
Bug#421969: texlive-base-bin: Huge number of etex and pdfetex sub-processes created
Hi Pierre, On Die, 22 Mai 2007, Pierre Barbier de Reuille wrote: > Version: 2007-7 > > While trying to upgrade this package, a huge number of etex and pdfetex This is strange as there is no pdfetex anymore (well, as a link). I only can imagine that you have some old package (like xmltex, passivetex, jadetex, etc) installed and not upgraded to the latest version. Did (or do) you have some files in /etc/texmf/fmt.d/ which mentions something else then texlive (and 00tex.cnf)? On Die, 22 Mai 2007, Pierre Barbier de Reuille wrote: > time). However, I did not get xmltex installed ! I installed the latest > version of xmltex and now it seems to be working properly. Ok, so I suppose the following: - you (once, some time ago) had xmltex installed - then you removed it, but didn't purge it, so the config files did remain - upgrading swapped fmtutil into an endless loop because it tried to update the xmltex format (older versions were buggy) even if it is not installed, this goes into an infinite loop. - you installed the new xmltex version which fixes these problems Now you can remove (or purge) xmltex. I guess we can close this bug? Do you agree? Best wishes Norbert --- Dr. Norbert Preining <[EMAIL PROTECTED]>Università di Siena Debian Developer <[EMAIL PROTECTED]> Debian TeX Group gpg DSA: 0x09C5B094 fp: 14DF 2E6C 0307 BE6D AD76 A9C0 D2BF 4AA3 09C5 B094 --- ABERYSTWYTH (n.) A nostalgic yearning which is in itself more pleasant than the thing being yearned for. --- Douglas Adams, The Meaning of Liff -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]