Bug#379701: Please add entry for Seagate Barracuda 7200.9
Package: hddtemp Version: 0.3-beta15-15 Severity: wishlist Tags: patch -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi could you please include attached patch to support Seagate Barracuda 7200.9? Thanks - -- Michal Čihař | http://cihar.com | http://blog.cihar.com - -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (99, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-1-686 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages hddtemp depends on: ii debconf [debconf-2.0]1.5.2 Debian configuration management sy ii grep 2.5.1.ds2-5 GNU grep, egrep and fgrep ii libc62.3.6-15GNU C Library: Shared libraries ii sed 4.1.5-1 The GNU sed stream editor hddtemp recommends no packages. - -- debconf information: * hddtemp/SUID_bit: true * hddtemp/interface: 127.0.0.1 * hddtemp/daemon: true * hddtemp/syslog: 0 * hddtemp/port: 7634 -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQFExbtA3DVS6DbnVgQRAjq6AKDlDHE3Cc5RiV01vHaezJfKNNn8nwCfRq9D VXUZCkyWEZEknBv/Tr8sdbc= =mYlY -END PGP SIGNATURE- --- /etc/hddtemp.db.dpkg-dist 2006-07-20 22:58:41.0 +0200 +++ /etc/hddtemp.db 2006-07-25 08:31:53.0 +0200 @@ -293,6 +290,7 @@ "ST3160021A" 194 C "Seagate Barracuda 7200.7 - ST3160021A" "ST3160023(A|AS)" 194 C "Seagate Barracuda V ST3160023A and AS (160Gb, ATA100 or Serial ATA)" "ST3160827AS" 194 C "Seagate Barracuda 7200.7 160GB (Serial ATA)" +"ST3160812A" 194 C "Seagate Barracuda 7200.9 160GB" "ST3200021A" 194 C "Seagate Barracuda 7200.7 Plus 200GB" "ST3200822(A|AS)" 194 C "Seagate Barracuda 7200.7 Plus 200GB (PATA or SATA)" "ST3200826A"194 C "Seagate Barracuda 7200.8 200Gb"
Bug#379702: pdmenu: FTBFS on GNU/kFreeBSD (outdated config.sub/config.guess)
Package: pdmenu Version: 1.2.88 Severity: important Hi, thanks for adjusting Build-Dependencies. Unfortunately, I forgot to ask about update of config.sub/config.guess in autoconf subdir. A version is needed from last year, which is available in the autotools-dev packages that are in current sarge, and sid. Thanks in advance and sorry for the inconvenience. Petr -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#377699: rebuilds for gcc-3.4 and gcc-4.1
On Tue, Jul 25, 2006 at 02:16:49AM +0200, Aurelien Jarno wrote: > > As requested by Roger Leigh, I tried to rebuild glibc with either gcc-3.4 > > and gcc-4.1 on one of my m68ks. Both failed. > > You can find both compressed logs attached... > > - glibc-build.log.bz2 : gcc-3.4 > > - glibc-gcc41.log.bz2 : gcc-4.1 > Could you please give a try with older binutils? Currently I'm quite busy. Can you give me an exact version and download url for the needed binutils and building instructions again? This would be very helpful for me. Otherwise I could give you an account on vivaldi to do it your self (building that is, installing binutils would be still my task ;).. -- Ciao...//Fon: 0381-2744150 Ingo \X/ SIP: [EMAIL PROTECTED] gpg pubkey: http://www.juergensmann.de/ij/public_key.asc -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379703: collectd: will not upgrade if not running
Package: collectd Version: 3.10.0-1 Preparing to replace collectd 3.10.0-1 (using .../collectd_3.10.1-2_i386.deb) ... Stopping Statistics collection daemon: collectdinvoke-rc.d: initscript collectd, action "stop" failed. dpkg: warning - old pre-removal script returned error exit status 1 dpkg - trying script from the new package instead ... Stopping Statistics collection daemon: collectdinvoke-rc.d: initscript collectd, action "stop" failed. dpkg: error processing /var/cache/apt/archives/collectd_3.10.1-2_i386.deb (--unpack): subprocess new pre-removal script returned error exit status 1 -- Michał Politowski Talking has been known to lead to communication if practiced carelessly. signature.asc Description: Digital signature
Bug#379676: ITP: vbindiff -- visual binary diff, visually compare binary files
--- Nico Golde <[EMAIL PROTECTED]> escribió: > Is it able to show assembler code like bindiff by sabre labs > is doing? Not really, it doesn't do any interpretation of the contents apart from ASCII and EBCDIC, just a comparison of the binary data in a visual way. __ LLama Gratis a cualquier PC del Mundo. Llamadas a fijos y móviles desde 1 céntimo por minuto. http://es.voice.yahoo.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379620: bobcat: FTBFS (amd64): no matching function for call to 'min(unsigned int, size_t)'
tags 379620 +patch thanks Hello, with the attached patch 'bobcat' can be compiled on unstable. Regards Andreas Jochens diff -urN ../tmp-orig/bobcat-1.10.0/string/unescape.cc ./string/unescape.cc --- ../tmp-orig/bobcat-1.10.0/string/unescape.cc2005-12-18 21:16:55.0 + +++ ./string/unescape.cc2006-07-25 06:35:14.0 + @@ -7,7 +7,7 @@ unsigned handleOctal(String *dest, String const &src, unsigned pos) { -unsigned const nOct = 3;// need exactly 3 octals +size_t const nOct = 3; // need exactly 3 octals unsigned pos2 = min(pos + nOct, src.find_first_not_of("01234567", pos)); @@ -28,7 +28,7 @@ unsigned handleHex(String *dest, String const &src, unsigned pos) { -unsigned const nHex = 2;// need exactly 2 hex digits +size_t const nHex = 2; // need exactly 2 hex digits ++pos; // skip the 'x' unsigned pos2 = min(pos + nHex, -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379617: vnc4server: Does not include XInputExtension - realvnc.com says it should
Hi On Mon, Jul 24, 2006 at 11:27:21AM -0500, Luigi Bai wrote: > >I am honesty not sure why it's important, but it causes ksycoca to >complain loudly, and other KDE applications are unhappy as well. I'm >using GNOME on VNC until this gets "fixed". Please see Thanks, I'll look at this. Regards, // Ola >[1]http://www.realvnc.com/products/free/4.1/release-notes.html >for the release notes on 4.1.1 on Unix, where they say that the >XInputExtension is enabled by default. A quick Google search on VNC >and XInputExtension shows mailing list discussions of this issue going >back to 2000. >I'm sorry - I'm showing I'm not much of an eX11pert... >Luigi > >On 7/24/06, Ola Lundqvist <[EMAIL PROTECTED] > wrote: > > Hi > What is XInputExtension and why is that important? > Regards, > // Ola > On Mon, Jul 24, 2006 at 10:12:35AM -0500, Luigi Bai wrote: > > Package: vnc4server > > Version: 4.1.1+X4.3.0-10 > > Severity: important > > > > > > The documentation for RealVNC 4.1.1 at [3]http://www.realvnc.com > suggests > > that support for the XInputExtension is now compiled in by > default. > > However, the vnc4server does not include that extension in > xdpyinfo, and > > kdebase applications generate this erorr in the file (and some > don't > > run): > > > > Xlib: extension "XInputExtension" missing on display ":2.0" > > > > > > -- System Information: > > Debian Release: testing/unstable > > APT prefers testing > > APT policy: (500, 'testing'), (500, 'stable') > > Architecture: i386 (i686) > > Shell: /bin/sh linked to /bin/bash > > Kernel: Linux 2.4.30.laptop.01 > > Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) > > > > Versions of packages vnc4server depends on: > > ii libc62.3.6-15GNU C Library: > Shared libraries > > ii libgcc1 1:4.1.1-5 GCC support library > > ii libice6 1:1.0.0-3 X11 Inter-Client > Exchange library > > ii libsm6 1:1.0.0-4 X11 Session > Management library > > ii libstdc++6 4.1.1-5 The GNU Standard C++ > Library v3 > > ii libx11-6 2:1.0.0-7 X11 client-side > library > > ii libxext6 1:1.0.0-4 X11 miscellaneous > extension librar > > ii libxtst6 1:1.0.1-3 X11 Testing -- > Resource extension > > ii vnc4-common [vnc-common] 4.1.1+X4.3.0-10 Virtual network > computing server s > > ii x11-common 1:7.0.22 X Window System > (X.Org) infrastruc > > ii xbase-clients1:7.1.ds-2 miscellaneous X > clients > > ii zlib1g 1:1.2.3-13 compression library > - runtime > > > > Versions of packages vnc4server recommends: > > ii xfonts-base 1:1.0.0-3 standard fonts for X > > > > -- no debconf information > > > > > -- > - Ola Lundqvist --- > / [4] [EMAIL PROTECTED] Annebergsslingan > 37 \ > | [EMAIL PROTECTED] 654 65 > KARLSTAD | > | +46 (0)54-10 14 30 +46 (0)70-332 1551 | > | [6]http://www.opal.dhs.org UIN/icq: 4912500 > | > \ gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9 / > --- > > Referenser > >1. http://www.realvnc.com/products/free/4.1/release-notes.html >2. mailto:[EMAIL PROTECTED] >3. http://www.realvnc.com/ >4. mailto:[EMAIL PROTECTED] >5. mailto:[EMAIL PROTECTED] >6. http://www.opal.dhs.org/ -- - Ola Lundqvist --- / [EMAIL PROTECTED] Annebergsslingan 37 \ | [EMAIL PROTECTED] 654 65 KARLSTAD | | +46 (0)54-10 14 30 +46 (0)70-332 1551 | | http://www.opal.dhs.org UIN/icq: 4912500 | \ gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9 / --- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379610: (bacula-wxconsole: restore mode "dir" parsing error)
Seems to have been be patched upstream ... see http://bugs.bacula.org/bug_view_advanced_page.php?bug_id=338 I guess there's no point in hoping this will get fixed for stable. So you can probably close this bug. cheers -h -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379673: ITP: pybridge-common -- A free online bridge game. (common files)
On Tuesday 25 July 2006 06:46, Thomas Viehmann wrote: > Hi David, > > David Watson wrote: > > * Package name: pybridge-common > > are you planning to ship three different *source* packages? > If so, why? > (ITPs are filed per source package, but on a first glance, a single > source package with multiple binaries should be more appropriate.) I am only planning on one source package, I thought it was an ITP per binary package. The other bugs have been closed now after someone else let me know that an ITP is per source package. Thanks -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379704: :abbr working weirdly
Package: jabref Version: 2.0.1+2.1b2-3 Severity: minor I use [title:abbr] to generate part of my BibTexKey field, according to http://ftp.math.utah.edu/pub/bibnet/faq2.html. I don't so much mind that :abbr inludes every initial letter, but there's cetainly a problem when it comes to special formatting: {B}azaar [force capitalisation] --> Ba Developer's --> D's hyphen-ated --> ha If this is unintentional, maybe it could be fixed. Maybe this is intentional. Then it would be awesome if you'd consider adding another abbreviation method that ideally only took the capital letters... -- System Information: Debian Release: testing/unstable APT prefers stable APT policy: (700, 'stable'), (600, 'testing'), (98, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.17-1-686 Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Versions of packages jabref depends on: ii sun-j2re1.5 [j2re1.5] 1.5.0+update07 Java(TM) 2 RE, Standard Edition, S jabref recommends no packages. -- no debconf information -- Please do not send copies of list mail to me; I read the list! .''`. martin f. krafft <[EMAIL PROTECTED]> : :' :proud Debian developer and author: http://debiansystem.info `. `'` `- Debian - when you have better things to do than fixing a system signature.asc Description: Digital signature (GPG/PGP)
Bug#379706: g++-4.1: segfaults building boost 1.33.1-5
Package: g++-4.1 Version: 4.1.1-9 hi, the latest upload of boost, 1.33.1-5, fails to build from source on arm because of a segfault of g++-4.1. ... gcc-C++-action bin/boost/libs/wave/build/libboost_wave.a/gcc/debug/threading-multi/instantiate_cpp_literalgrs.o set -e "g++" -c -Wall -ftemplate-depth-255 -D_REENTRANT -g -O0 -fno-inline -pthread-I"bin/boost/libs/wave/build" -I"/build/buildd/boost-1.33.1" -I "/build/buildd/boost-1.33.1" -o "bin/boost/libs/wave/build/libboost_wave.a/gcc/debug/threading-multi/instantiate_cpp_literalgrs.o" "/build/buildd/boost-1.33.1/libs/wave/build/../src/instantiate_cpp_literalgrs.cpp" "/usr/bin/objcopy" --set-section-flags .debug_str=contents,debug "bin/boost/libs/wave/build/libboost_wave.a/gcc/debug/threading-multi/instantiate_cpp_literalgrs.o" /build/buildd/boost-1.33.1/boost/spirit/core/primitives/impl/numerics.ipp: In static member function 'static bool boost::spirit::impl::extract_int::f(ScannerT&, T&, size_t&) [with ScannerT = const boost::spirit::scanner >, T = unsigned int, int Radix = 16, unsigned int MinDigits = 1u, int MaxDigits = 8, Accumulate = boost::spirit::impl::positive_accumulate<16>]': /build/buildd/boost-1.33.1/boost/spirit/core/primitives/impl/numerics.ipp:307: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See http://gcc.gnu.org/bugs.html> for instructions. For Debian GNU/Linux specific bug reporting instructions, see . ...failed gcc-C++-action bin/boost/libs/wave/build/libboost_wave.a/gcc/debug/threading-multi/instantiate_cpp_literalgrs.o... ... full build log is at http://buildd.debian.org/fetch.php?&pkg=boost&ver=1.33.1-5&arch=arm&stamp=1153567444&file=log&as=raw i'm unable to dig further in the bug because no arm machine is currently available. regards domenico -[ Domenico Andreoli, aka cavok --[ http://people.debian.org/~cavok/gpgkey.asc ---[ 3A0F 2F80 F79C 678A 8936 4FEE 0677 9033 A20E BC50 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379705: can not input chinese in gnome-terminal when two more tabs
Package: gnome-terminalVersion: 2.14.2Package:fcitxVersion:3.2.1Package:libvte4Version:1:0.12.2-1kernel version:2.6.15libc6 version:2.3.6-15Distro:debian-testingIf I use gnome-terminal with two more tabs, then I can't input chinese in command line, vim and so on.But with only one tab, theneverything is ok. BTW:with two more tabs, I can copy chinese and paste, it's ok! I think this may be concerned with libvte4Steps to reproduce the problem:1. start gnome-terminal 2. start two more tags3. Press CRTL-SPACE to switch into chinese input, input anything to find what's wrong with gnome-terminal
Bug#366099: dash: Debconf templates do not follow Developer's Reference recommendations
On Mon, Jul 24, 2006 at 06:15:38PM +0200, Christian Perrier wrote: > Quoting Gerrit Pape ([EMAIL PROTECTED]): > > --- > > Template: dash/sh > > Type: boolean > > Default: false > > _Description: Install dash as /bin/sh? > > Bash is the default /bin/sh on a Debian system. However, since our policy > > s/our/the Debian > > This is actually the only small glitch I see. this is probably what I > spotted when I reported this bug. Thanks, I'll make that change. Regards, Gerrit. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#359098: runit-run: Default "getty"s not always welcome
On Mon, Jul 24, 2006 at 04:15:33PM +0200, Gilles Sadowski wrote: > Hi. > > > > Of course, from my point of view, The sysadmin should be > > > given the opportunity to refuse the automatic creation of > > > the services. Could it be possible to add the necessary > > > configuration in the install scripts? > > > > Hi Gilles, I can understand your concern, but I'm currently not sure how > > to solve this conflict. The vserver environment doesn't need the > > getties, sure, but they also don't hurt that much. OTOH a non-virtual > > system that installs runit-run, and by accident doesn't provide any > > getty service, is a real pain as there's no possibility to login locally > > to a console. Users might even think the system didn't boot up > > correctly. > > Couldn't you just provide an option to not install the getties, accompanied > by a strong warning, and possibly, make the user acknowledge the danger by > having him type something like "Do as I say!", as they do when one tries to > uninstall "essential" packages? Hmm, I'll see what I can do, need to think about it. Regards, Gerrit. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379485: preseed exim4 template for desktop+laptop class to local delivery
On Tue, Jul 25, 2006 at 06:54:42AM +0200, Christian Perrier wrote: > I'm not sure about this bug report. It implicitely suggest that the > default configuration should be "Local delivery only". I don't > remember about your exact plans in that matter, but either this is > planned and the bug can be merged with other bugs suggesting this if > there are someor this is not planned/wished and the bug should > probably be marked as "wontfix". Having used the installer in the past weeks a few times, I am disturbed myself that exim4 is among the last packages that still ask questions on installation. Additionally, the level of the questions is _much_ higher than the other installer questions. So there is no doubt that something will happen in this regard. I am just not sure what is the best solution here. Since the installer people are heavily pushing, and every decision taken will be _WRONG_ for some people, causing mail loss, I'll probably throw a dice and ignore all error reports that complain about my choice. Greetings Marc -- - Marc Haber | "I don't trust Computers. They | Mailadresse im Header Mannheim, Germany | lose things."Winona Ryder | Fon: *49 621 72739834 Nordisch by Nature | How to make an American Quilt | Fax: *49 621 72739835 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379695: e2fsprogs: mkfs indicates badblocks option that is not in man page
On Tue, Jul 25, 2006 at 12:08:26AM -0400, Jeff Abrahamson wrote: > Package: e2fsprogs > Version: 1.39-1 > > $ mkfs -c -v /dev/sdc1 > ... > Running command: badblocks -b 1024 -X -s /dev/sdc1 500440 > ... > > And ps confirms that this is what was run: > > 4708 pts/15 R+ 0:00 badblocks -b 1024 -X -s /dev/sdc1 500440 > > But "man badblocks" doesn't indicate a -X option for badblocks. That's because -X is only intended to be used by mke2fs. - Ted -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379561: MySQL setup for Wordpress
Hi, I think the best solution would be to recommend mysql-server instead of suggesting it. In this way, aptitude will install it by default, unless the system administrator explicitly tells aptitude to not install recommended packages. About the mysql automatic setup, dbconfig-common is a good choice. I have no time to put togheter a patch now, but if you think it is worth using it I'll help as I can. Thanks, -- Fabio Tranchitella <[EMAIL PROTECTED]>.''`. Proud Debian GNU/Linux developer, admin and user.: :' : `. `'` http://people.debian.org/~kobold/ `- _ 1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564 signature.asc Description: Questa è una parte del messaggio firmata digitalmente
Bug#168848: look no more
Do anot ignore me plebase, I found your email somewhere and now deacided to write you. I am cominag to your place in few weeks and thoaught we can meet each other. Leta me know if you do not mind. I am a nice pretty girl. Don't reply tao this email. b Email me direclty at [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379712: uucpsend: FTBFS: bashisms
Package: uucpsend Version: 1.1-2.1 Severity: important Hello, There was a problem while autobuilding your package: > Automatic build of uucpsend_1.1-2.1 on avidan by sbuild/i386 0.49 > Build started at 20060724-2013 > ** ... > for d in debian/tmp/usr/lib/news/bin debian/tmp/etc/news > debian/tmp/usr/man/man{5,8}; \ > do \ > if [ ! -d $d ]; then install -m 755 -o root -g root -d $d ; fi; \ > done > install -m 755 -o root -g root -s uucpsend debian/tmp/usr/lib/news/bin > install -m 644 -o news -g news uucpsend.ctl debian/tmp/etc/news > install -m 644 -o root -g root uucpsend.8 debian/tmp/usr/man/man8 > install -m 644 -o root -g root uucpsend.ctl.5 debian/tmp/usr/man/man5 > make[1]: Leaving directory `/build/buildd/uucpsend-1.1' > mv debian/tmp/usr/man debian/tmp/usr/share/man > gzip -9f debian/tmp/usr/share/man/man?/* > gzip: debian/tmp/usr/share/man/man?/*: No such file or directory > make: *** [binary-arch] Error 1 > ** > Build finished at 20060724-2014 > FAILED [dpkg-buildpackage died] > -- -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379135: please include mysqli extension
Hello As linking against libmysqlclient14 was an issue to this bug before I just want to confirm that we do not have any other mysql library than libmysqlclient15 from MySQL 5.0 in Etch/unstable anymore. And I too, would like to hear what the plans regarding php5-mysqli are :) thanks, -christian- P.S.: Laurent, when merging bugs please write a line or two, some of our users find it unpolite as they don't know what's going on with their bug :) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379709: python-docutils: problems with the postinst script
Package: python-docutils Version: 0.4-3 Severity: normal -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (990, 'testing'), (101, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-686-smp Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages python-docutils depends on: ii python2.3.5-11 An interactive high-level object-o ii python-central0.5.1 register and build utility for Pyt ii python-roman 0.4-3 A module for generating/analyzing python-docutils recommends no packages. -- no debconf information Errors were encountered while processing: python-docutils E: Sub-process /usr/bin/dpkg returned an error code (1) A package failed to install. Trying to recover: Setting up python-docutils (0.4-3) ... Compiling /usr/lib/python2.4/site-packages/docutils/languages/ja.py ... Sorry: LookupError: ("no codec search functions registered: can't find encoding",) Compiling /usr/lib/python2.4/site-packages/docutils/languages/zh_cn.py ... Sorry: LookupError: ("no codec search functions registered: can't find encoding",) Compiling /usr/lib/python2.4/site-packages/docutils/parsers/rst/languages/ja.py ... Sorry: LookupError: ("no codec search functions registered: can't find encoding",) Compiling /usr/lib/python2.4/site-packages/docutils/parsers/rst/languages/zh_cn.py ... Sorry: LookupError: ("no codec search functions registered: can't find encoding",) Compiling /usr/lib/python2.4/site-packages/docutils/parsers/rst/languages/zh_tw.py ... Sorry: LookupError: ("no codec search functions registered: can't find encoding",) pycentral: pycentral pkginstall: error byte-compiling files (151) pycentral pkginstall: error byte-compiling files (151) dpkg: error processing python-docutils (--configure): subprocess post-installation script returned error exit status 1 Errors were encountered while processing: python-docutils -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379713: libapache-mod-limitipconn: FTBFS: bashisms
Package: libapache-mod-limitipconn Version: 0.04-3 Severity: serious Hello, There was a problem while autobuilding your package: > Automatic build of libapache-mod-limitipconn_0.04-3 on avidan by sbuild/i386 > 0.49 > Build started at 20060724-2108 > ** ... > if [ -d apache-build ]; then > rm -rf apache-build > fi > mkdir apache-build > pushd apache-build > /bin/sh: pushd: not found > make: *** [debian/build-stamp] Error 127 > ** > Build finished at 20060724-2109 > FAILED [dpkg-buildpackage died] > -- -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379708: bogl-bterm: Graceful exit on SIGTERM
Package: bogl-bterm Version: 0.1.18-1.1 Tags: patch I found this patch in the ubuntu version of usplash, and discovered that it is missing in the debian version. It is also introduced in the ubuntu version of bogl with this changelog entry: bogl (0.1.18-1.1ubuntu3) breezy; urgency=low * Fix build with new dpkg-architecture * Add a SIGTERM signal handler which allows for a graceful exit, restoring the vt state -- Matt Zimmerman <[EMAIL PROTECTED]> Wed, 7 Sep 2005 15:59:03 -0700 The patch make sense to me, so I thought it best to submit it to bts. I also include the patch to make sure main() return will a known exit value. diff -ur usplash-0.3-4/bogl/bterm.c bogl-0.1.18/bterm.c --- usplash-0.3-4/bogl/bterm.c 2006-06-20 12:11:13.0 +0200 +++ bogl-0.1.18/bterm.c 2004-07-22 12:39:42.0 +0200 @@ -64,7 +64,6 @@ static int child_pid = 0; static struct termios ttysave; -static int quit = 0; /* This first tries the modern Unix98 way of getting a pty, followed by the * old-fashioned BSD way in case that fails. */ @@ -140,11 +139,6 @@ signal(SIGCHLD, sigchld); } -void sigterm(int sig) -{ - quit = 1; -} - void spawn_shell(int ptyfd, int ttyfd, const char *command) { fflush(stdout); @@ -294,7 +288,6 @@ spawn_shell(ptyfd, ttyfd, command == NULL ? "/bin/sh" : command); signal(SIGHUP, reload_font); - signal(SIGTERM, sigterm); ntio = ttysave; ntio.c_lflag &= ~(ECHO|ISIG|ICANON|XCASE); @@ -311,9 +304,6 @@ for (;;) { fd_set fds; int max = 0; - -if (quit) - break; if(pending) { @@ -331,10 +321,6 @@ if (ptyfd > max) max = ptyfd; ret = select(max+1, &fds, NULL, NULL, &tv); - -if (quit) - break; - if (bogl_refresh) { /* Handle VT switching. */ if (bogl_refresh == 2) @@ -374,6 +360,4 @@ } } } - - return 0; } -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379711: masqmail: FTBFS: bashisms
Package: masqmail Version: 0.2.21-1.1 Severity: important Hello, There was a problem while autobuilding your package: > Automatic build of masqmail_0.2.21-1.1 on avidan by sbuild/i386 0.49 > Build started at 20060724-1927 > ** ... > install -d > /build/buildd/masqmail-0.2.21/debian/masqmail/usr/share/masqmail/tpl > install -m 644 tpl/failmsg.tpl > /build/buildd/masqmail-0.2.21/debian/masqmail/usr/share/masqmail/tpl > install -m 644 tpl/failmsg.tpl.{de,fr,it} > /build/buildd/masqmail-0.2.21/debian/masqmail/usr/share/masqmail/tpl > install: cannot stat `tpl/failmsg.tpl.{de,fr,it}': No such file or directory > make[3]: *** [/build/buildd/masqmail-0.2.21/debian/masqmail/usr/share/tpl] > Error 1 > make[3]: Leaving directory `/build/buildd/masqmail-0.2.21' > make[2]: *** [install-am] Error 2 > make[2]: Leaving directory `/build/buildd/masqmail-0.2.21' > make[1]: *** [install-recursive] Error 1 > make[1]: Leaving directory `/build/buildd/masqmail-0.2.21' > make: *** [install] Error 2 > ** > Build finished at 20060724-1928 > FAILED [dpkg-buildpackage died] -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379118: Depends for wordpress
Hi, please modify the depends line as follow: Depends: apache2 | httpd, php5 | php4 | libapache2-mod-php4, php4-mysql | php5-mysql This will install apache2 by default. The bug is caused by apt, which if needs to install a package in order to satisfy a dependency always choosee the first option when a or-block is in the dependency. In your case, the first block install apache, then php5 depends on "libapache2-mod-php5 | libapache-mod-php5", which trigger in apache2. Cheers, -- Fabio Tranchitella <[EMAIL PROTECTED]>.''`. Proud Debian GNU/Linux developer, admin and user.: :' : `. `'` http://people.debian.org/~kobold/ `- _ 1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564 signature.asc Description: Questa è una parte del messaggio firmata digitalmente
Bug#379710: gnump3d: Missing dependency netbase
Package: gnump3d Severity: important Version: 2.9.8-2 Hello, While trying to setup a minimal vserver for "gnump3d" I found that "gnump3d" would give an error about not being able to open the port. On further investigation it turned out that the IO::Socket::INET call was giving up as it was unable to open "/etc/protocols" which is in package "netbase". Now "IO::Socket::INET" is in "perl-base" so perhaps this bug should be against "perl-base". However, since "perl" is used for a number of things it may not be right to ask for "perl-base" to depend on "netbase" since the support for INET sockets is but one of the many features of "perl-base". On the other hand "gnump3d" will not work with this particular feature so "netbase" probably ought to be in the dependency list for "gnump3d". Thanks and regards, Kapil. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (990, 'testing'), (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-2-686 Locale: LANG=en_IN.UTF-8, LC_CTYPE=en_IN.UTF-8 (charmap=UTF-8) signature.asc Description: Digital signature
Bug#379707: isoqlog: 2.2.1 is out and there is a beta
Package: isoqlog Version: 2.2-0.3 Severity: wishlist Hi, version 2.2.1 kis out, and there is even a beta. These versions are very old, but include bugfixes. Is there a chance to see them in debian one day ? thanks you :) kaouete -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (990, 'testing'), (400, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16.20-walter Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages isoqlog depends on: ii debconf [debconf-2.0] 1.5.2 Debian configuration management sy ii libc6 2.3.6-15 GNU C Library: Shared libraries isoqlog recommends no packages. -- debconf information excluded -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379437: xserver-xorg-video-ati: Fails to detect Radeon X800 (on Amd64)
On Sun, 2006-07-23 at 15:59 +0100, James Lynn wrote: > Package: xserver-xorg-video-ati > Version: 1:6.5.8.0-1 > Severity: normal > > *** Please type your report below this line *** I've just installed > debian testing for the first time on a new machine with a PCIe Radeon > X800, and the xserver fails to start, reporting 'No devices > detected'. The video card works in text mode. Does it work if you override the PCI ID to one of the X800s supported by the driver (listed below)? For those that have a two character code in the list, the PCI ID is the concatenation of the character ASCII codes, e.g. for the first one in the list (JH), you'd have to put ChipId 0x4a48 in Section "Device" for driver "ati" / "radeon". > ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP), > ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP), > ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP), > ATI Radeon Mobility 9800 (M18) JN (AGP), > ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 SE (R420) (AGP), > ATI Radeon AIW X800 VE (R420) JT (AGP), > ATI Radeon X800 (R423) UH (PCIE), > ATI Radeon X800PRO (R423) UI (PCIE), > ATI Radeon X800LE (R423) UJ (PCIE), > ATI Radeon X800SE (R423) UK (PCIE), > ATI FireGL V5100 (R423) UQ (PCIE), > ATI FireGL unknown (R423) UR (PCIE), > ATI FireGL unknown (R423) UT (PCIE), > ATI Radeon X800XT (R423) 5D57 (PCIE), ATI FireGL V7100 (R423) (PCIE), > ATI Mobility FireGL V5100 (M28) (PCIE), > ATI Mobility Radeon X800 (M28) (PCIE), > ATI Mobility Radeon X800 XT (M28) (PCIE), > ATI Radeon X800 (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE), > ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 XTP (R430) (PCIE), -- Earthling Michel Dänzer | http://tungstengraphics.com Libre software enthusiast | Debian, X and DRI developer
Bug#379118: Depends for wordpress
Il giorno mar, 25/07/2006 alle 10.22 +0200, Fabio Tranchitella ha scritto: > Hi, > > please modify the depends line as follow: > > Depends: apache2 | httpd, php5 | php4 | libapache2-mod-php4, php4-mysql > | php5-mysql Hi again, sorry but I forgot to invert php4-mysql and php5-mysql for the same reason. By default, we install php5 so we need php5-mysql | php4-mysql. -- Fabio Tranchitella <[EMAIL PROTECTED]>.''`. Proud Debian GNU/Linux developer, admin and user.: :' : `. `'` http://people.debian.org/~kobold/ `- _ 1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564 signature.asc Description: Questa è una parte del messaggio firmata digitalmente
Bug#365254: please send us a backtrace
tags 365254 - unreproducible thanks Hi Antono, back again on this bug report of yours (vim crashing under xfce). The next step for us is to understand whether the bug is in vim or xfce, a good hint in this direction would be given by having a backtrace of the crash. Since I don't have an xfce environment at hand, could you please run vim within gdb and send us the output of a 'bt' after the crash? Many thanks in advance, Cheers. -- Stefano Zacchiroli -*- Computer Science PhD student @ Uny Bologna, Italy [EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/ If there's any real truth it's that the entire multidimensional infinity of the Universe is almost certainly being run by a bunch of maniacs. -!- signature.asc Description: Digital signature
Bug#379716: trackballs: FTBFS: buid-dep on xlibmesa-glu-dev not available
Package: trackballs Version: 1.1.1-3 Severity: serious Hello, There was a problem while autobuilding your package: > Automatic build of trackballs_1.1.1-3 on avidan by sbuild/i386 0.49 > Build started at 20060725-0047 > ** > Checking available source versions... > Fetching source files... > Reading package lists... > Building dependency tree... > Need to get 6044kB of source archives. > Get:1 http://ftp.fr.debian.org sid/main trackballs 1.1.1-3 (dsc) [786B] > Get:2 http://ftp.fr.debian.org sid/main trackballs 1.1.1-3 (tar) [6025kB] > Get:3 http://ftp.fr.debian.org sid/main trackballs 1.1.1-3 (diff) [18.0kB] > Fetched 6044kB in 10s (597kB/s) > Download complete and in download only mode > ** Using build dependencies supplied by package: > Build-Depends: debhelper (>= 4.1.76), binutils (>= 2.12.90.0.9), > guile-1.6-dev, xlibmesa-gl-dev | libgl-dev, xlibmesa-glu-dev | libglu-dev, > libsdl1.2-dev, libsdl-ttf2.0-dev, libsdl-mixer1.2-dev, libsdl-image1.2-dev > ** Filtered missing central deps that are dependencies of or provide > build-deps: > zlib1g-dev (>= 1:1.2.1) > Checking for already installed source dependencies... > debhelper: already installed (5.0.37.3 >= 4.1.76 is satisfied) > binutils: already installed (2.17-1 >= 2.12.90.0.9 is satisfied) > guile-1.6-dev: missing > xlibmesa-gl-dev: missing > libgl-dev: missing > xlibmesa-glu-dev: missing > libglu-dev: missing > libsdl1.2-dev: missing > libsdl-ttf2.0-dev: missing > libsdl-mixer1.2-dev: missing > libsdl-image1.2-dev: missing > Checking for source dependency conflicts... > Reading package lists... > Building dependency tree... > E: Package xlibmesa-glu-dev has no installation candidate > Package xlibmesa-glu-dev is not available, but is referred to by another > package. > This may mean that the package is missing, has been obsoleted, or > is only available from another source > apt-get failed. > Package installation failed > Trying to reinstall removed packages: > Trying to uninstall newly installed packages: > Source-dependencies not satisfied; skipping trackballs > ** > Finished at 20060725-0048 > Build needed 00:00:00, 0k disk space -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#374195: Can't do anything: "terminate called after throwing an instance of 'std::logic_error'"
On Thu, Jun 29, 2006 at 03:43:44PM +0300, Marius Vollmer wrote: > I have seen this bug in version 0.6.42.3 and in my case the > "terminate" output was due to a bug in DPkgPM::Go. That function > fails to parse status outputs from dpkg that span more than one line. > > Specifically, this dpkg output causes DPkgPM::Go to crash (two lines): > > status: big : error : Package is in a very bad inconsistent state - you should > reinstall it before attempting a removal. > > Note the second line that starts with a space. DPkgPM::Go can't deal > with that; it doesn't expect continuation lines at all. Concretely, > it is not checking that the call to TokSplitString actually has found > the expected fields. (Bad boy! Go to bed without dinner!) > > Using dpkg --force-remove-reinstreq just gets rid of the problematic > package and thus the bug is not triggered anymore. > > Fixing the crash by simply ignoring the second line is of course the > easy and wrong solution. DPkgPM::Go should be able to deal with > continuation lines like this. Thanks for your bugreport and the detailed analysis. I'm in the middle of catching up with the bugreports after being on vacation and commited the easy and wrong solution for now (because it has to be added anyway to make it a bit more robust against bogus data). I think dpkg should be patched to strip out the \n from the messages that it sends over the status pipe. The GUI frontends that use those messages will not make a lot of use from those "\n" anyway. I attached a patch for dpkg to strip out the \n when it sends errors over the status pipe. Comments welcome. Cheers, Michael -- Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo diff -Nru /tmp/ZTgF8wNNud/dpkg-1.13.22ubuntu4/src/errors.c /tmp/uECXKIITPT/dpkg-1.13.22ubuntu5/src/errors.c --- /tmp/ZTgF8wNNud/dpkg-1.13.22ubuntu4/src/errors.c2006-01-18 09:30:03.0 +0100 +++ /tmp/uECXKIITPT/dpkg-1.13.22ubuntu5/src/errors.c2006-07-25 10:47:10.0 +0200 @@ -54,6 +54,7 @@ void print_error_perpackage(const char *emsg, const char *arg) { struct error_report *nr; + char *striped_emsg, *c; fprintf(stderr, _("%s: error processing %s (--%s):\n %s\n"), DPKG, arg, cipaction->olong, emsg); @@ -68,11 +69,18 @@ } else varbufreset(status); - r= varbufprintf(status, "status: %s : %s : %s\n", arg, "error",emsg); + /* when using the pipe, replace the '\n' with ' ' */ + striped_emsg = strdup(emsg); + if(!striped_emsg) + ohshit("Can't allocate memory"); + for(c = striped_emsg; *c; c++) if(*c == '\n') *c = ' '; + r= varbufprintf(status, "status: %s : %s : %s\n", arg, "error", +striped_emsg); while (pipef) { write(pipef->fd, status->buf, r); pipef= pipef->next; } + free(striped_emsg); }
Bug#379717: cpuburn: FTBFS: bashisms
Package: cpuburn Version: 1.4-21 Severity: important Hello, There was a problem while autobuilding your package: > Automatic build of cpuburn_1.4-21 on avidan by sbuild/i386 0.49 > Build started at 20060725-0152 > ** ... > /usr/bin/fakeroot debian/rules binary-arch > dh_testdir > dh_testroot > dh_clean -k > dh_installdirs > cp /build/buildd/cpuburn-1.4/debian/overrides > /build/buildd/cpuburn-1.4/debian/cpuburn/usr/share/lintian/overrides/cpuburn > cp /build/buildd/cpuburn-1.4/burn{P5,P6,K6,K7,BX,MMX} > /build/buildd/cpuburn-1.4/debian/cpuburn/usr/bin > cp: cannot stat `/build/buildd/cpuburn-1.4/burn{P5,P6,K6,K7,BX,MMX}': No such > file or directory > make: *** [install] Error 1 > ** > Build finished at 20060725-0152 > FAILED [dpkg-buildpackage died] > -- -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379687: [Pkg-xfce-devel] Bug#379687: xfce4-mcs-plugins: missing versioned conflicts/replaces
This one time, at band camp, Yves-Alexis Perez said: > On Tue, 2006-07-25 at 00:23 +0100, Stephen Gran wrote: > > Package: xfce4-mcs-plugins > > Version: 4.3.90.2-1 > > Severity: serious > > > > Preparing to replace xfce4-mcs-plugins 4.3.90.1-1 > > (using .../xfce4-mcs-plugins_4.3.90.2-1_i386.deb) ... > > Unpacking replacement xfce4-mcs-plugins ... > > dpkg: error > > processing /var/cache/apt/archives/xfce4-mcs-plugins_4.3.90.2-1_i386.deb > > (--unpack): > > trying to overwrite > > `/usr/share/icons/hicolor/48x48/apps/xfce-filemanager.png', which is > > also in package xfce4-panel > > > > By the way, I assumed that the conflicts was between xfce4-mcs-plugins > 4.3.90.2 and xfce4-panel 4.3.90.1 (because xfce4-panel 4.3.90.2 doesnt > provide xfce-filemanager.png currently). But xfce4-panel should have > been removed by libxfce4util4 installation. > > Which was the xfce4-panel version currently installed ? 2006-07-25 00:19:24 upgrade xfce4-panel 4.3.90.1-3 4.3.90.2-1 Thanks again, -- - | ,''`.Stephen Gran | | : :' :[EMAIL PROTECTED] | | `. `'Debian user, admin, and developer | |`- http://www.debian.org | - signature.asc Description: Digital signature
Bug#379718: primaxscan: FTBFS: bashisms
Package: primaxscan Version: 0.93beta3-6 Severity: important Hello, There was a problem while autobuilding your package: > Automatic build of primaxscan_0.93beta3-6 on avidan by sbuild/i386 0.49 > Build started at 20060725-0240 > ** ... > debian/rules build > dh_testdir > # Add here commands to configure the package. > cp -f /usr/share/misc/config.{guess,sub} /build/buildd/primaxscan-0.93beta3 > cp: cannot stat `/usr/share/misc/config.{guess,sub}': No such file or > directory > make: *** [configure-stamp] Error 1 > ** > Build finished at 20060725-0240 > FAILED [dpkg-buildpackage died] > -- -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379728: slapd: upgrade to 2.3.24-2 hangs
Package: slapd Version: 2.3.24-1 Severity: grave Justification: renders package unusable I cant upgrade to 2.3.24-2... Installing new version of config file /etc/default/slapd ... Installing new version of config file /etc/init.d/slapd ... It hangs here, and after 10mins I have aborted it dpkg: error processing slapd (--configure): subprocess post-installation script killed by signal (Interrupt) Errors were encountered while processing: slapd -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (990, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-1-k7 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to de_DE.UTF-8) Versions of packages slapd depends on: ii coreutils [fileutils] 5.96-5 The GNU core utilities ii debconf [debconf-2.0] 1.5.2Debian configuration management sy ii libc6 2.3.6-15 GNU C Library: Shared libraries ii libdb4.24.2.52+dfsg-0.1 Berkeley v4.2 Database Libraries [ ii libiodbc2 3.52.4-3 iODBC Driver Manager ii libldap-2.3-0 2.3.24-1 OpenLDAP libraries ii libltdl31.6-0+1.5a-4 A system independent dlopen wrappe ii libperl5.8 5.8.8-6 Shared Perl library ii libsasl22.1.19.dfsg1-0.2 Authentication abstraction library ii libslp1 1.2.1-5 OpenSLP libraries ii libssl0.9.8 0.9.8b-2 SSL shared libraries ii libwrap07.6.dbs-9Wietse Venema's TCP wrappers libra ii perl [libmime-base64-pe 5.8.8-6 Larry Wall's Practical Extraction ii psmisc 22.2-1 Utilities that use the proc filesy Versions of packages slapd recommends: ii db4.2-util 4.2.52+dfsg-0.1 Berkeley v4.2 Database Utilities ii libsasl2-modules2.1.19.dfsg1-0.2 Pluggable Authentication Modules f -- debconf information: * slapd/password2: (password omitted) slapd/internal/adminpw: (password omitted) * slapd/password1: (password omitted) slapd/fix_directory: true * shared/organization: chaos slapd/upgrade_slapcat_failure: * slapd/backend: BDB * slapd/allow_ldap_v2: true * slapd/no_configuration: false * slapd/move_old_database: true slapd/suffix_change: false slapd/slave_databases_require_updateref: * slapd/dump_database_destdir: /var/backups/slapd-VERSION slapd/autoconf_modules: true * slapd/domain: chaos slapd/password_mismatch: slapd/invalid_config: true slapd/upgrade_slapadd_failure: * slapd/dump_database: always slapd/migrate_ldbm_to_bdb: false * slapd/purge_database: true -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379720: vdr-plugin-bitstreamout: FTBFS: error: 'fls' was not declared in this scope
Package: vdr-plugin-bitstreamout Version: 0.85-5 Severity: serious Hello, There was a problem while autobuilding your package: > Automatic build of vdr-plugin-bitstreamout_0.85-5 on avidan by sbuild/i386 > 0.49 > Build started at 20060725-0359 > ** ... > debian/rules build > test -d debian/patched || install -d debian/patched > dpatch apply-all > applying patch 90_APIVERSION to ./ ... ok. > dpatch cat-all >>patch-stampT > mv -f patch-stampT patch-stamp > dh_testdir > touch configure-stamp > dh_testdir > /usr/bin/make all CXXARCH= VDRDIR=/usr/include/vdr LIBDIR=. > make[1]: Entering directory `/build/buildd/vdr-plugin-bitstreamout-0.85' > make[1]: Leaving directory `/build/buildd/vdr-plugin-bitstreamout-0.85' > make[1]: Entering directory `/build/buildd/vdr-plugin-bitstreamout-0.85' > bitstreamout Version 0.85 > g++ -O2 -Wall -Woverloaded-virtual -pthread -fPIC -fPIC -DPIC -c > -DPLUGIN_NAME_I18N='"bitstreamout"' -D_GNU_SOURCE -I/usr/include/vdr/include > -I../../../../DVB/include bitstreamout.c > /usr/include/asm-generic/bitops/fls64.h: In function 'int fls64(__u64)': > /usr/include/asm-generic/bitops/fls64.h:10: error: 'fls' was not declared in > this scope > /usr/include/asm-generic/bitops/fls64.h:11: error: 'fls' was not declared in > this scope > make[1]: *** [bitstreamout.o] Error 1 > make[1]: Leaving directory `/build/buildd/vdr-plugin-bitstreamout-0.85' > make: *** [build-stamp] Error 2 > ** > Build finished at 20060725-0359 > FAILED [dpkg-buildpackage died] > -- -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379725: problem upgrading hyperestraier, (upgrade fails)
Package: hyperestraier Version: 1.3.3-1 Severity: important Fails to upgrade with error message: "Errors were encountered while processing: /var/cache/apt/archives/hyperestraier_1.3.3-1_i386.deb localepurge: Disk space freed in /usr/share/locale: 2160K E: Sub-process /usr/bin/dpkg returned an error code (1) A package failed to install. Trying to recover: ..." A similar problem existed with upgrading to 1.2.5-1, and it persisted. I have kept the package on hold and not retried the upgrade. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379727: RFP: xaralx -- General purpose vector graphics software
Package: wnpp Severity: wishlist * Package name: xaralx Version : 0.6+svn Upstream Author : Xara Group <[EMAIL PROTECTED]> * URL : http://www.xaraxtreme.org * License : GPL Programming Lang: C++ Description : General purpose vector graphics software Xara LX is a port of the Xara Xtreme graphics software to GNU/Linux. Xara is easy to use and has a very highly compressed graphics format. This version is completely compatible with Xara files from the Windows version and has most of the drawing features. Please note that at the moment there is no official stable release and as such this program may be unstable. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-2-k7 Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379724: cbmlink: FTBFS: bashisms
Package: cbmlink Version: 0.9.6-1 Severity: important Hello, There was a problem while autobuilding your package: > Automatic build of cbmlink_0.9.6-1 on avidan by sbuild/i386 0.49 > Build started at 20060725-0450 > ** ... > touch build-arch-stamp > dh_testdir > cd cbmsrc && ./build.sh > eval: 1: xa: not found > make: *** [build-indep-stamp] Error 127 > ** > Build finished at 20060725-0450 > FAILED [dpkg-buildpackage died] > -- -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379726: cryptsetup: luksAddKey asks for unlock-passpharse twice
Package: cryptsetup Version: 2:1.0.3-3 Severity: minor "cryptsetup luksAddKey" will ask you for the passphrase of an existing key ... twice. The second time is unnecessary. Mind, that I am not talking about the passphrase for the *new* key, where asking for verification makes perfect sense. TIA, -- Robbe -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379721: xen-3.0: FTBFS: bashisms
Package: xen-3.0 Version: 3.0.2+hg9697-1 Severity: important Hello, There was a problem while autobuilding your package: > Automatic build of xen-3.0_3.0.2+hg9697-1 on avidan by sbuild/i386 0.49 > Build started at 20060725-0410 > ** ... > CFLAGS="-O2 -fomit-frame-pointer -DNDEBUG -m32 -march=i686 -Wall > -Wstrict-prototypes -Wdeclaration-after-statement > -D__XEN_INTERFACE_VERSION__=0x00030101" python setup.py build > running build > running build_py > creating build > creating build/lib > creating build/lib/grub > copying src/GrubConf.py -> build/lib/grub > copying src/__init__.py -> build/lib/grub > creating build/lib/grub/fsys > copying src/fsys/__init__.py -> build/lib/grub/fsys > running build_scripts > creating build/scripts-2.3 > copying and adjusting src/pygrub -> build/scripts-2.3 > changing mode of build/scripts-2.3/pygrub from 644 to 755 > make[2]: Leaving directory > `/build/buildd/xen-3.0-3.0.2+hg9697/debian/build/build-tools/tools/pygrub' > /usr/bin/make ioemu > make[2]: Entering directory > `/build/buildd/xen-3.0-3.0.2+hg9697/debian/build/build-tools/tools' > [ -f ioemu/config-host.h ] || \ > (cd ioemu; ./configure --prefix=usr) > ./configure: 239: Syntax error: Bad fd number > make[2]: *** [ioemu] Error 2 > make[2]: Leaving directory > `/build/buildd/xen-3.0-3.0.2+hg9697/debian/build/build-tools/tools' > make[1]: *** [all] Error 2 > make[1]: Leaving directory > `/build/buildd/xen-3.0-3.0.2+hg9697/debian/build/build-tools/tools' > make: *** [debian/stamps/build-tools] Error 2 > ** > Build finished at 20060725-0420 > FAILED [dpkg-buildpackage died] > -- -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379708: bogl-bterm: Graceful exit on SIGTERM
On Tue, Jul 25, 2006 at 10:10:58AM +0200, Petter Reinholdtsen wrote: > diff -ur usplash-0.3-4/bogl/bterm.c bogl-0.1.18/bterm.c > --- usplash-0.3-4/bogl/bterm.c 2006-06-20 12:11:13.0 +0200 > +++ bogl-0.1.18/bterm.c 2004-07-22 12:39:42.0 +0200 > @@ -64,7 +64,6 @@ > > static int child_pid = 0; > static struct termios ttysave; > -static int quit = 0; This patch looks reversed. -- - mdz -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379722: bobcat: FTBFS: INSTALL.cf: not found
Package: bobcat Version: 1.10.0-2 Severity: serious Hello, There was a problem while autobuilding your package: > Automatic build of bobcat_1.10.0-2 on avidan by sbuild/i386 0.49 > Build started at 20060725-0858 > ** ... > debian/rules build > test -d debian/patched || install -d debian/patched > dpatch apply-all > applying patch 01_fix_yodl_macro to ./ ... ok. > dpatch cat-all >>patch-stampT > mv -f patch-stampT patch-stamp > dh_testdir > # Add here commands to configure the package. > touch configure-stamp > dh_testdir > # Add here commands to compile the package. > ./make/man > .: 3: INSTALL.cf: not found > make: *** [build-stamp] Error 2 > ****** > Build finished at 20060725-0859 > FAILED [dpkg-buildpackage died] -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379723: cryptsetup: luksDelKey is too eager
Package: cryptsetup Version: 2:1.0.3-3 Severity: wishlist It can be very easy to delete a vital key with "cryptsetup luksDelKey". I have not checked whether it will delete the last key, but even if you have two, one of them may be unusable (passphrase forgotten), you want to delete this one, but actually delete the one where you know the passphrase ... ouch! I would suggest a query for one of the *other* keys, so the above situation can not happen. TIA, -- Robbe -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379719: cryptsetup: keymap change should be more prominently documented
Package: cryptsetup Version: 2:1.0.3-3 My passphrase for / includes characters that are on different positions in the us and de keyboard layouts. What I did before was "loadkeys us" before setting up the key (so that the passphrase "Härdeman" would actually become "H'rdeman", as the key labeled "ä" would generate a "'" in us). With the new fix for #376393 I could no longer use this passphrase (because entering "Härdeman" would no longer result in the correct "H'rdeman"). It is not usually catastrophic, because most keys that can be generated by a us keyboard are somehow possible to get on an international keyboard, but it's quite a bother to find them. It would have been easier if this were documented outside the changelog, e.g. in NEWS.Debian. TIA, -- Robbe
Bug#379690: lftp: mirror -c gets stalled
Here is a patch to fix the problem. -- Alexander. Index: FileCopy.cc === RCS file: /home/lav/cvsroot/lftp/src/FileCopy.cc,v retrieving revision 1.125 diff -u -p -r1.125 FileCopy.cc --- FileCopy.cc 4 Jul 2006 05:15:35 - 1.125 +++ FileCopy.cc 25 Jul 2006 08:28:37 - @@ -58,6 +58,9 @@ ResDecl max_redir("xfer:max-redirect // FileCopy #define super SMTask +#define set_state(s) do { state=(s); \ + Log::global->Format(11,"FileCopy(%p) enters state %s\n", this, #s); } while(0) + int FileCopy::Do() { int m=STALL; @@ -70,7 +73,7 @@ int FileCopy::Do() switch(state) { pre_INITIAL: - state=INITIAL; + set_state(INITIAL); m=MOVED; case(INITIAL): if(remove_target_first && !put->FileRemoved()) @@ -114,7 +117,7 @@ int FileCopy::Do() get->Suspend(); put->Resume(); - state=PUT_WAIT; + set_state(PUT_WAIT); m=MOVED; /* fallthrough */ case(PUT_WAIT): @@ -137,7 +140,7 @@ int FileCopy::Do() get->Resume(); get->StartTransfer(); RateReset(); - state=DO_COPY; + set_state(DO_COPY); m=MOVED; /* fallthrough */ case(DO_COPY): { @@ -336,7 +339,7 @@ int FileCopy::Do() put->Resume(); put_eof_pos=put->GetRealPos(); debug((10,"copy: waiting for put confirmation\n")); - state=CONFIRM_WAIT; + set_state(CONFIRM_WAIT); m=MOVED; case(CONFIRM_WAIT): if(put->Error()) @@ -344,7 +347,7 @@ int FileCopy::Do() /* check if put position is correct */ if(put_eof_pos!=put->GetRealPos() || put->GetSeekPos()==FILE_END) { -state=DO_COPY; +set_state(DO_COPY); return MOVED; } @@ -361,7 +364,7 @@ int FileCopy::Do() get->Empty(); get->PutEOF(); get->Resume(); - state=GET_DONE_WAIT; + set_state(GET_DONE_WAIT); m=MOVED; end_time=now; put->Suspend(); @@ -377,12 +380,12 @@ int FileCopy::Do() if(!get->Done()) return m; debug((10,"copy: get is finished - all done\n")); - state=ALL_DONE; + set_state(ALL_DONE); get->Suspend(); return MOVED; pre_GET_INFO_WAIT: - state=GET_INFO_WAIT; + set_state(GET_INFO_WAIT); m=MOVED; case(GET_INFO_WAIT): if(get->Error()) @@ -401,7 +404,7 @@ void FileCopy::Init() { get=0; put=0; - state=INITIAL; + set_state(INITIAL); max_buf=0x1; cont=false; error_text=0; @@ -976,7 +979,7 @@ void FileCopyPeerFA::WantSize() struct stat st; if(!strcmp(session->GetProto(),"file") && stat(dir_file(session->GetCwd(),file),&st)!=-1) - size=st.st_size; + SetSize(st.st_size); else super::WantSize(); } @@ -1685,7 +1688,7 @@ void FileCopyPeerFDStream::WantSize() stat(stream->full_name,&st); if(st.st_size!=NO_SIZE) - size=st.st_size; + SetSize(st.st_size); else super::WantSize(); }
Bug#379715: freesci: FTBFS: bashisms
Package: freesci Version: 0.3.5-2 Severity: important Hello, There was a problem while autobuilding your package: > Automatic build of freesci_0.3.5-2 on avidan by sbuild/i386 0.49 > Build started at 20060725-0027 > ** ... > sed 's,/usr/local/share/games/freesci,/usr/share/freesci,' \ > < > /build/buildd/freesci-0.3.5/build//freesci-0.3.5//conf/freesci-setup \ > > > /build/buildd/freesci-0.3.5//debian/freesci/usr/games/freesci-setup > mkdir -p -m 0755 > /build/buildd/freesci-0.3.5//debian/freesci/usr/share/freesci/ > mv /build/buildd/freesci-0.3.5//debian/freesci/usr/share/games/freesci/* \ > /build/buildd/freesci-0.3.5//debian/freesci/usr/share/freesci/ > rm -rf /build/buildd/freesci-0.3.5//debian/freesci/usr/share/games/ > mkdir -p -m0755 > /build/buildd/freesci-0.3.5//debian/freesci/usr/share/doc/freesci > install -m0644 > /build/buildd/freesci-0.3.5/build//freesci-0.3.5//{AUTHORS,NEWS,README,THANKS,TODO} > \ > > /build/buildd/freesci-0.3.5//debian/freesci/usr/share/doc/freesci > install: cannot stat > `/build/buildd/freesci-0.3.5/build//freesci-0.3.5//{AUTHORS,NEWS,README,THANKS,TODO}': > No such file or directory > make: *** [install-arch] Error 1 > ****** > Build finished at 20060725-0031 > FAILED [dpkg-buildpackage died] -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#379697: stardict failed to make PowerWord dictionaries work
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 reopen #361667 merge #361667 #379697 severity #361667 wishlist thanks manphiz wrote: > The current stardict cannot make use of the PowerWord dictionaries > provided at the official stardict site at this URL: > > http://stardict.sourceforge.net/Dictionaries_PowerWord.php The current stardict package in sid is 2.4.7. > A hand-made stardict 2.4.8 from the official site can handle this > correctly. > I wish an upgrade to version 2.4.8 will take place soon to fixed this > problem. Yes, KingSoft PowerWord support were added in 2.4.8 in upstream, so this should be a wishlist. - -Andrew -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFExdzEnQYz4bYlCYURAlkbAJ9S/6FPaLe+KU/IsbOSwLwnl+Ek7ACgnDTs ATq1xZ4ueO5Fv/mqwgA9xLs= =uabQ -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379714: modxslt: FTBFS: libtool: link: `/usr/lib/libgcrypt.la' is not a valid libtool archive
Package: modxslt Version: 2004112100-3.1 Severity: serious Hello, There was a problem while autobuilding your package: > Automatic build of modxslt_2004112100-3.1 on avidan by sbuild/i386 0.49 > Build started at 20060724-2127 > ** ... > ranlib .libs/libmodxslt0.a > creating libmodxslt0.la > /bin/sed: can't read /usr/lib/libgcrypt.la: No such file or directory > libtool: link: `/usr/lib/libgcrypt.la' is not a valid libtool archive > make[1]: *** [libmodxslt0.la] Error 1 > make[1]: Leaving directory `/build/buildd/modxslt-2004112100/lib' > make: *** [build-stamp] Error 2 > ** > Build finished at 20060724-2128 > FAILED [dpkg-buildpackage died] -- Julien Danjou .''`. Debian Developer : :' : http://julien.danjou.info `. `' http://people.debian.org/~acid `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD signature.asc Description: Digital signature
Bug#357439: amaya_wx-9.51-1_i386.deb from Amaya website works on Debian
On Mon, 2006-07-24 at 15:50 +0100, Regis Boudin wrote: > > The package in Debian uses shared libraries for wxWidgets and libGL. > In most cases, the installed packages for libGL are libgl1-mesa-dri and > libgl1-mesa-glx by default. The DRI version is buggy and gives rendering > bugs on ATI radeon cards. When people disable DRI (or don't have it > available), it reverts to GLX rendering, where this bug appears. If you > install libgl1-mesa-swx11, miracle, no more crash, rendering is fine, only > painfully slow. > Use another OpenGL library (say, the Nvidia proprietary one), everything > is fine. > > All this would point to a bug in libgl1-mesa-glx, hence CC'ing debian-x > and Michel more specifically in case he has some more ideas since a couple > of month ago. > > Also, for the record, having read about some rendering bugs fixed with DRI > on radeon when using the mesa packages from experimental, I tried them. > The crash is still present with GLX, using DRI gives yet another creative > way to not work : The screen freezes except the mouse cursor can move, > keys don't seem to work at all, and the only way to get to a usable state > was to ssh to the machine and kill amaya. Sounds like a hardware lockup. Most likely a bug in the libgl1-mesa-dri driver, maybe in the radeon DRM. > The problem seems to be definitely with OpenGL. I thought about > reassigning this bug the libgl1-mesa-glx, but I have so many different > ways to see the thing crash or do strange things, I suspect there might > actually be a problem in Amaya (or wxWidgets) doing nasty things with > OpenGL. Michel, it would be nice to have your opinion about it. No matter how nasty things amaya may do, it should not lead to the symptoms described here but be handled via the GL API error mechanisms. It sounds like there's several bugs in libgl1-mesa-dri and at least another one in libgl1-mesa-glx or xserver-xorg-core (it works with indirect GLX here with development versions of all components; that and the fact that libgl1-mesa-glx from experimental doesn't seem to make a difference makes me suspect the GLX errors are actually X server bugs). -- Earthling Michel Dänzer | http://tungstengraphics.com Libre software enthusiast | Debian, X and DRI developer
Bug#379718: primaxscan: FTBFS: bashisms
Hi Thanks correction uploaded now. Regards, // Ola On Tue, Jul 25, 2006 at 10:37:02AM +0200, Julien Danjou wrote: > Package: primaxscan > Version: 0.93beta3-6 > Severity: important > > Hello, > > There was a problem while autobuilding your package: > > > Automatic build of primaxscan_0.93beta3-6 on avidan by sbuild/i386 0.49 > > Build started at 20060725-0240 > > ** > ... > > debian/rules build > > dh_testdir > > # Add here commands to configure the package. > > cp -f /usr/share/misc/config.{guess,sub} /build/buildd/primaxscan-0.93beta3 > > cp: cannot stat `/usr/share/misc/config.{guess,sub}': No such file or > > directory > > make: *** [configure-stamp] Error 1 > > ****** > > Build finished at 20060725-0240 > > FAILED [dpkg-buildpackage died] > > -- > > -- > Julien Danjou > .''`. Debian Developer > : :' : http://julien.danjou.info > `. `' http://people.debian.org/~acid > `- 9A0D 5FD9 EB42 22F6 8974 C95C A462 B51E C2FE E5CD -- - Ola Lundqvist --- / [EMAIL PROTECTED] Annebergsslingan 37 \ | [EMAIL PROTECTED] 654 65 KARLSTAD | | +46 (0)54-10 14 30 +46 (0)70-332 1551 | | http://www.opal.dhs.org UIN/icq: 4912500 | \ gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9 / --- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379734: mantis: undefined function db_field_names
Package: mantis Version: 0.19.4-3.1 Severity: normal Hello, At the upgrade process I saw the following: > Richte mantis ein (0.19.4-3.1) ... > PHP Warning: mime_magic: type regexBEGIN[[:space:]]*[{] > application/x-awk invalid in Unknown on line 0 > I: Using password from existing config file. > I: Restarting webservers: apache2 If I click on "Manage" I receive now: Fatal error: Call to undefined function: db_field_names() in /usr/share/mantis/gui/manage_user_page.php on line 33 regards, maletin. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15-1-686 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages mantis depends on: ii apache2 2.0.55-4next generation, scalable, extenda ii apache2-mpm-prefork [httpd] 2.0.55-4traditional model for Apache2 ii debconf [debconf-2.0]1.5.2 Debian configuration management sy ii grep 2.5.1.ds2-5 GNU grep, egrep and fgrep ii libapache-mod-php4 4:4.4.2-1.1 server-side, HTML-embedded scripti ii libapache2-mod-php4 4:4.4.2-1.1 server-side, HTML-embedded scripti ii libphp-adodb 4.72-0.1The 'adodb' database abstraction l ii makepasswd 1.10-3 Generate and encrypt passwords ii mysql-client-5.0 [mysql-clie 5.0.22-3mysql database client binaries ii php4-cgi 4:4.4.2-1.1 server-side, HTML-embedded scripti ii php4-cli 4:4.4.2-1.1 command-line interpreter for the p ii php4-mysql 4:4.4.2-1.1 MySQL module for php4 ii wwwconfig-common 0.0.46 Debian web auto configuration Versions of packages mantis recommends: ii mysql-server 5.0.22-3 mysql database server (current ver ii mysql-server-5.0 [mysql-serve 5.0.22-3 mysql database server binaries pn php4-ldap (no description available) -- debconf information: * mantis/title: Mantis * mantis/url: *** * mantis/bounce: *** * mantis/db_autoupdate: false * mantis/ldap: false mantis/ldap_server: localhost mantis/version: * mantis/from: *** * mantis/show_version: true mantis/root_mysql: root * mantis/signup: true * mantis/admin: *** * mantis/username: mantis * mantis/webmaster: *** * mantis/purge_db: false mantis/dn: dn= * mantis/mysql_port: 3306 * mantis/webserver: apache2 * mantis/app_configure: false * mantis/language: german * mantis/mysql_server: localhost * mantis/database: bugtracker mantis/organisation: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#374986: DRM deadlooping(?) with Radeon X800 GTO and X.org 7.0
#include * Michel Dänzer [Fri, Jul 21 2006, 05:40:17PM]: I am Cc'ing to LKML now. See below about xf86-video-ati git. Summary: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=374986 since 2.6.17-rcSomething X seems to fail at startup, hangs in a kind of loop while doing 4582 rt_sigaction(SIGCHLD, {SIG_DFL}, {0x2b6d039cdd30, [INT RT_25], SA_RESTORER|SA_INTERRUPT|SA_ONESHOT|0x31f25d8, 0x2b6d039cd9e8}, 8) = ? ERESTARTNOINTR (To be restarted) >From what I can see, previous versions did not support my card at all while in the current, /dev/dri* seems to be opened successfully before the problem occurs: 4555 write(0, "drmOpenByBusid: Searching for Bu"..., 53) = 53 4555 geteuid() = 0 4555 write(0, "drmOpenDevice: node name is /dev"..., 43) = 43 4555 stat("/dev/dri", {st_mode=S_IFDIR|0755, st_size=40, ...}) = 0 4555 stat("/dev/dri/card0", 0x7fff6e5857f0) = -1 ENOENT (No such file or directory) 4555 unlink("/dev/dri/card0") = -1 ENOENT (No such file or directory) 4555 mknod("/dev/dri/card0", S_IFCHR|0666, makedev(226, 0)) = 0 4555 chown("/dev/dri/card0", 0, 0) = 0 4555 chmod("/dev/dri/card0", 0666) = 0 4555 open("/dev/dri/card0", O_RDWR)= 7 It does not fail if dri X module is not loaded. > > Ok, tried that. Compiled, packages created, installed, uncommented dri > > module in xorg, restarted X -> got deadloop as usual :-( > > I'm afraid there's been a misunderstanding; Mesa is only involved when > starting a 3D application, so it's not relevant to your original > problem. As I pointed out before, Robert is seeing a different problem. > One thing you have in common though is that you should report your > problems upstream. :) > > Eduard, if you still feel adventurous, you could try current > xf86-video-ati git as well. Maybe there have been other changes that > helped r300 DRI stability. I fetched this one: git clone git://anongit.freedesktop.org/git/mesa/drm.git/ mesa and installed compiled libs over the libs from the Debian package. Has not changed anything, unfortunately. Eduard. -- TV ist Zeitverschwendung * micsch muss auch nochmal seine TV-Karte einbauen
Bug#376227: Unknown error executing gpgv
On Fri, Jun 30, 2006 at 10:51:28PM -0400, Ambrose Li wrote: > Package: apt > Version: 0.6.44.2 > Severity: normal Thanks for your bugreport. > apt-get update produces the following error message: > > W: GPG error: http://security.debian.org stable/updates Release: > Unknown error executing gpgv > W: You may want to run apt-get update to correct these problems > > (The given suggestion, for obvious reasons, cannot possibly be right.) [..] I assume the bugreport is about the fact that gpg fails with a unknown error and not the error message itself? If so, can you please run: # apt-get update -o Debug::pkgAcquire::Auth=true -o Debug::Acquire::gpgv=true and attach the result to this bugreport? Thanks, Michael -- Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken
On Fri, Jul 21, 2006 at 02:07:49PM +0200, Kay Sievers wrote: > > The solution is to replace ENV{BUS} by ENV{PHYSDEVBUS} in > > bluez-pcmcia-support.udev and to correspondingly change $DEVPATH to > > $PHYSDEVPATH in bluetooth.sh, i. e. revert to the solution I sent in > > #351106. > > ENV{BUS} never existed, so it can't work. The PHYDEV* values are > deprecated and and should better not be used. They will not go away > soon, but if that can be solved without them, it would be nice. > PHYSDEVBUS is just the subsystem of the parent device, which can > probably be matched with BUS=="pcmcia". I've modified the rules file, it is available at http://svn.debian.org/wsvn/pkg-bluetooth/bluez-utils/trunk/debian/bluez-pcmcia-support.udev?op=file&rev=0&sc=0 and the bluetooth.sh invoked on RUN available at http://svn.debian.org/wsvn/pkg-bluetooth/bluez-utils/trunk/debian/bluetooth.sh?op=file&rev=0&sc=0 what about the change from DEVPATH to PHYSDEVPATH Felix proposed in bluetooth.sh? Felix: do you mind trying the first file to see if it works for you? thanks in advance, filippo -- Filippo Giunchedi - http://esaurito.net PGP key: 0x6B79D401 random quote follows: UNIX IS user friendly, it is just selective who his friends are. signature.asc Description: Digital signature
Bug#51865: spending time with you
Hi there lovely, I was searching the net few days ago. I am new to this thing. and saw your profile. I decided to email you cause I found you attractive. I might come down to your city ian few weeks. Let me know if we can meet each other in person. I am attractive girl. I am sure you won't regret it. Reply to my personal email at [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#373899: Corrections
The cupsys version is of course 1.2.1-4 and not 1.2.4. udev version is 0.093-1 kernel is 2.6.17.6 I looked a bit closer at the behaviour today. When I switch on the printer, usblp module is loaded and the device /dev/usb/lp0 is created with access rights drw-rw root lp. When I print a test page from the cupsys admin webpage on hp:/usb/hp_color_LaserJet_2550_series?serial=00CNFDD05275, I get "open print channel failed" and /dev/usb/lp0 vanishes immediately. -- Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
Bug#379118: Depends for wordpress
On 2006-07-25T10:22+0200 Fabio Tranchitella wrote: > This will install apache2 by default. The bug is caused by apt, which > if needs to install a package in order to satisfy a dependency always > choosee the first option when a or-block is in the dependency. In your > case, the first block install apache, then php5 depends on > "libapache2-mod-php5 | libapache-mod-php5", which trigger in apache2. Hmmm, that's silly. Because if someone does: apt-get install wordpress apache2 Shouldn't it check that apache2 is selected and fulfils the httpd dependency condition, and hence apache isn't required to be installed? With your suggestion, now apache2 becomes default. Sooner or later someone is going to file a bug moaning that apache2 was installed even though he has another httpd server. Or am I wrong? :) signature.asc Description: Digital signature
Bug#379733: 'default saved' does not use the number set with grub-set-default
Package: grub Version: 0.97-12 Severity: important I'm not able to change default menu entry with the help of 'grub-set-default N' command. It creates/updates /boot/grub/default file, but grub seems to ignore it, and use item #0 (the one saved with 'savedefault' during previous boot) instead. This makes grub-set-default unusable for setting up fail-safe booting. See below the output of related commands. se:~# grub-set-default 1 se:~# cat /boot/grub/default 1 # # # # # # # # # # # WARNING: If you want to edit this file directly, do not remove any line # from this file, including this warning. Using `grub-set-default\' is # strongly recommended. se:~# cat /boot/grub/menu.lst # menu.lst - See: grub(8), info grub, update-grub(8) #grub-install(8), grub-floppy(8), #grub-md5-crypt, /usr/share/doc/grub #and /usr/share/doc/grub-doc/. ## default num # Set the default entry to the entry number NUM. Numbering starts from 0, and # the entry number 0 is the default if the command is not used. # # You can specify 'saved' instead of a number. In this case, the default entry # is the entry saved with the command 'savedefault'. default saved ## timeout sec # Set a timeout, in SEC seconds, before automatically booting the default entry # (normally the first entry defined). timeout 3 # Pretty colours color cyan/blue white/blue ## password ['--md5'] passwd # If used in the first section of a menu file, disable all interactive editing # control (menu entry editor and command-line) and entries protected by the # command 'lock' # e.g. password topsecret # password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/ # password topsecret # # examples # # title Windows 95/98/NT/2000 # root (hd0,0) # makeactive # chainloader +1 # # title Linux # root (hd0,1) # kernel/vmlinuz root=/dev/hda2 ro # # # Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST ### BEGIN AUTOMAGIC KERNELS LIST ## lines between the AUTOMAGIC KERNELS LIST markers will be modified ## by the debian update-grub script except for the default options below ## DO NOT UNCOMMENT THEM, Just edit them to your needs ## ## Start Default Options ## ## default kernel options ## default kernel options for automagic boot options ## If you want special options for specific kernels use kopt_x_y_z ## where x.y.z is kernel version. Minor versions can be omitted. ## e.g. kopt=root=/dev/hda1 ro ## kopt_2_6_8=root=/dev/hdc1 ro ## kopt_2_6_8_2_686=root=/dev/hdc2 ro # kopt=root=/dev/hda2 ro ## default grub root device ## e.g. groot=(hd0,0) # groot=(hd0,1) ## should update-grub create alternative automagic boot options ## e.g. alternative=true ## alternative=false # alternative=true ## should update-grub lock alternative automagic boot options ## e.g. lockalternative=true ## lockalternative=false # lockalternative=false ## additional options to use with the default boot option, but not with the ## alternatives ## e.g. defoptions=vga=791 resume=/dev/hda5 # defoptions=vga=773 ## should update-grub lock old automagic boot options ## e.g. lockold=false ## lockold=true # lockold=false ## altoption boot targets option ## multiple altoptions lines are allowed ## e.g. altoptions=(extra menu suffix) extra boot options ## altoptions=(single-user) single # altoptions=(recovery mode) single ## controls how many kernels should be put into the menu.lst ## only counts the first occurence of a kernel, not the ## alternative kernel options ## e.g. howmany=all ## howmany=7 # howmany=all ## should update-grub create memtest86 boot option ## e.g. memtest86=true ## memtest86=false # memtest86=true ## should update-grub adjust the value of the default booted system ## can be true or false # updatedefaultentry=false ## ## End Default Options ## title Debian GNU/Linux, kernel 2.6.16-2-686-smp root(hd0,1) kernel /boot/vmlinuz-2.6.16-2-686-smp root=/dev/hda2 ro vga=773 initrd /boot/initrd.img-2.6.16-2-686-smp savedefault boot title Debian GNU/Linux, kernel 2.6.16-2-686-smp (recovery mode) root(hd0,1) kernel /boot/vmlinuz-2.6.16-2-686-smp root=/dev/hda2 ro single initrd /boot/initrd.img-2.6.16-2-686-smp savedefault boot ### END DEBIAN AUTOMAGIC KERNELS LIST # This is a divider, added to separate the menu items below from the Debian # ones. title Other operating systems: root # This entry automatically added by the Debian installer for a non-linux OS # on /dev/hda1 title Microsoft Windows 2000 Advanced Server root(hd0,0) savedefault makeactive chainloader +1 total 196 se:~# ls -l /boot/grub -rw-r--r-- 1 root root191 2006-07-25 12:51 default -rw-r--r-- 1 root root 15 2005-10-21 22:09 device.map -rw-r--r-- 1 root root 7776 2005-10-21 22:09 e2fs_stage1_5 -rw-r--r-- 1 root root 7504 2005-10-21 22:09 fat_stage1_5
Bug#379732: popularity-contest: Fails to upload using http
Package: popularity-contest Version: 1.33 Severity: grave Justification: renders package unusable Can no longer upload popcon result by http (which as the default method probably means few other people are able to either). I added the -d option to the uploader and ran it a few times (with several different results): [EMAIL PROTECTED]:/etc/cron.weekly# ./popularity-contest Failed to upload, answer '' [EMAIL PROTECTED]:/etc/cron.weekly# ./popularity-contest Failed to upload, answer ' 302 Found Found The document has moved http://www.debian.org/distrib/ftplist";>here. Apache/1.3.33 Server at gluck.debian.org Port 80 ' [EMAIL PROTECTED]:/etc/cron.weekly# ./popularity-contest timeout in popcon-upload Richard. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-2-686-smp Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Versions of packages popularity-contest depends on: ii debconf [debconf-2.0] 1.5.2 Debian configuration management sy ii dpkg 1.13.22package maintenance system for Deb Versions of packages popularity-contest recommends: ii cron 3.0pl1-95 management of regular background p ii exim4 4.62-2 metapackage to ease exim MTA (v4) ii exim4-daemon-light [mail-tran 4.62-2 lightweight exim MTA (v4) daemon pn mime-construct (no description available) -- debconf information: popularity-contest/hostid-failed: * popularity-contest/participate: true popularity-contest/use-http: true -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379118: Depends for wordpress
Il giorno mar, 25/07/2006 alle 18.06 +0900, Kai Hendry ha scritto: > Hmmm, that's silly. Because if someone does: > apt-get install wordpress apache2 > > Shouldn't it check that apache2 is selected and fulfils the httpd > dependency condition, and hence apache isn't required to be installed? It should, but apt does not. Try the following commands: apt-get install wordpress apache2 libapache2-mod-php5 php5-mysql (this doesn't work as expected) apt-get install apache2 libapache2-mod-php5 php5-mysql wordpress (this works as expectd) > With your suggestion, now apache2 becomes default. Sooner or later > someone is going to file a bug moaning that apache2 was installed even > though he has another httpd server. Or am I wrong? :) You are wrong: if he already has another http server with php4 or php5, everything is ok. This only affects the case when the dependency is not satisfied by already installed packages (which includes the ones you specified in the command-line of apt-get **before** wordpress). Take care, -- Fabio Tranchitella <[EMAIL PROTECTED]>.''`. Proud Debian GNU/Linux developer, admin and user.: :' : `. `'` http://people.debian.org/~kobold/ `- _ 1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564 signature.asc Description: Questa è una parte del messaggio firmata digitalmente
Bug#379729: /etc/cron.daily/doodle reports an error : Invoke with query terms
Package: doodle Version: 0.6.5-3 Severity: normal The con reports that : /etc/cron.daily/doodle: Invoke with query terms to search for! There must be some problem... maybe that script is just for doodled ? Hope this helps. Best regards -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-2-686 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages doodle depends on: ii adduser 3.87 Add and remove users and groups ii libdoodle10.6.5-3Desktop Search Engine (Library) doodle recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379708: bogl-bterm: Graceful exit on SIGTERM
[Matt Zimmerman] > This patch looks reversed. Right. It is. Damned, I should not send patches early in the morning. :) I do not send a new one to avoid cluttering the bug story. Please apply using patch -R. :) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379731: Outdated description: map is now built
Package: predict Severity: normal Tags: patch -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The description is now oudated because now map is compiled, ate least from 2.2.2-1 changelog: * add clients/map as predict-map to predict-gsat package now that xforms is in main Attached is the patch to remove the part: === The upstream predict sources include a front-end called 'map', but it is not included in the Debian package both because it requires the non-free xforms library, and because the name is too generic. .. === from debian/control. Please apply it. Cheers, Luca - -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-1-686 Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQFExeKjRqobajv7n7MRAoXwAKCbwMelB+7bO7gfazwvDsLXYqkwqACeJHNs Mu80B/KD4qniOcgFHSIT8NM= =dym3 -END PGP SIGNATURE- --- debian/control~ 2006-07-25 11:12:37.0 +0200 +++ debian/control 2006-07-25 11:13:02.0 +0200 @@ -16,10 +16,6 @@ Description: Satellite Tracking Program azimuth and elevation to help in manual antenna pointing, or optical observation of satellites. . - The upstream predict sources include a front-end called 'map', but it is not - included in the Debian package both because it requires the non-free xforms - library, and because the name is too generic. - . The 'ntp' package is suggested because accurate satellite tracking depends on precise knowledge of ground station time and location.
Bug#379730: dbconfig-common asks for database password on upgrade even if no upgrades included in package
Package: dbconfig-common Severity: normal hi, on package upgrade dbconfig-common asks for the database-administrators password even if the newer package does not include any upgrades for the database. I think this is a useless debconf question which can be omnitted, though. bye, - michael -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#376014: python-apt: Bring back the examples.
On Thu, Jun 29, 2006 at 02:00:15PM -0300, Gustavo Franco wrote: > Package: python-apt > Version: 0.6.18 > Severity: wishlist Thanks for your bugreport and sorry for the late reply. > During the Python transition, Raphael (buxy) uploaded an NMU but forgot > to move the 'dh_installexamples' call to the binary-arch target, as you > can see in his diff[0]. The result is that the python-apt package contains > no examples in 0.6.18. Could you fix this in our next upload, please? I added it to my bzr repository and it will be part of the next upload. Cheers, Michael -- Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337578: ITP: slim -- simple login manager: Any news?
Hello, just to say that there is a new version of slim available (1.2.5) which does restart the X server on logout, so you can remove your warning and update your package :). Btw, do you have a (vague should be enough) estimation as to when it will be accepted and available for unstable ? Thanks in advance _ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#217782: patch available since ages...
Package: mailman Followup-For: Bug #217782 FYI: http://sourceforge.net/tracker/index.php?func=detail&aid=759841&group_id=103&atid=100103 I successfully applied it to sarge version (2.1.5), please verify if it is currently applied into 2.1.8 and close the bug just in case, or produce a debian-specific patch: this issue is quite important ... -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-2-686 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379737: cryptsetup: cannot handle UTF-8 in passphrase
Package: cryptsetup Version: 2:1.0.3-3 (Last report for today, I promise!) This issue is related to the keymap troubles. If you luksAddKey in an UTF-8 environment entering "ä" in the passphrase will result in the two bytes 0xc3 and 0xa4. When you later reenter this "ä" during the initram/initrd phase, the console is not (yet) in Unicode mode, so it only results in the single byte 0xe4 ... the passphrases will not match. I am unsure how to solve this. Canonising all passphrases before hashing is a nice option, but this may involve largish tables unsuitable for an initrd. Maybe the console should be switched to Unicode mode akin to loading the right keymap? TIA, -- Robbe
Bug#296103: Workaround patch
On Sat, Jul 01, 2006 at 02:36:48AM -0500, Luis Rodrigo Gallardo Cruz wrote: > package apt > tags 296103 +patch > thanks > > Seeing that the bus is a problem with external data, apt can't really do much > more > than improving its error message. I propose the following patch. [..] Thanks for your bugreport and patch. I applied it to my bzr repository. Thanks, Michael -- Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#374986: DRM deadlooping(?) with Radeon X800 GTO and X.org 7.0
Please test ATI video driver stable branch from xf86-video-ati 'ati-1-0-branch' from git://git.freedesktop.org/git/xorg/driver/xf86-video-ati This has a number of fixes necessary for some cards. If X only fails occasionally that is unusual... Dave. Summary: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=374986 since 2.6.17-rcSomething X seems to fail at startup, hangs in a kind of loop while doing 4582 rt_sigaction(SIGCHLD, {SIG_DFL}, {0x2b6d039cdd30, [INT RT_25], SA_RESTORER|SA_INTERRUPT|SA_ONESHOT|0x31f25d8, 0x2b6d039cd9e8}, 8) = ? ERESTARTNOINTR (To be restarted) From what I can see, previous versions did not support my card at all while in the current, /dev/dri* seems to be opened successfully before the problem occurs: 4555 write(0, "drmOpenByBusid: Searching for Bu"..., 53) = 53 4555 geteuid() = 0 4555 write(0, "drmOpenDevice: node name is /dev"..., 43) = 43 4555 stat("/dev/dri", {st_mode=S_IFDIR|0755, st_size=40, ...}) = 0 4555 stat("/dev/dri/card0", 0x7fff6e5857f0) = -1 ENOENT (No such file or directory) 4555 unlink("/dev/dri/card0") = -1 ENOENT (No such file or directory) 4555 mknod("/dev/dri/card0", S_IFCHR|0666, makedev(226, 0)) = 0 4555 chown("/dev/dri/card0", 0, 0) = 0 4555 chmod("/dev/dri/card0", 0666) = 0 4555 open("/dev/dri/card0", O_RDWR)= 7 It does not fail if dri X module is not loaded. > > Ok, tried that. Compiled, packages created, installed, uncommented dri > > module in xorg, restarted X -> got deadloop as usual :-( > > I'm afraid there's been a misunderstanding; Mesa is only involved when > starting a 3D application, so it's not relevant to your original > problem. As I pointed out before, Robert is seeing a different problem. > One thing you have in common though is that you should report your > problems upstream. :) > > Eduard, if you still feel adventurous, you could try current > xf86-video-ati git as well. Maybe there have been other changes that > helped r300 DRI stability. I fetched this one: git clone git://anongit.freedesktop.org/git/mesa/drm.git/ mesa and installed compiled libs over the libs from the Debian package. Has not changed anything, unfortunately. Eduard. -- TV ist Zeitverschwendung * micsch muss auch nochmal seine TV-Karte einbauen - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379637: closing or cloning
On Tue, Jul 25, 2006 at 02:33:36AM -0700, Debian Bug Tracking System wrote: > Processing commands for [EMAIL PROTECTED]: > > > severity 379637 wishlist > Bug#379637: Package: installation-reports > Severity set to `wishlist' from `normal' IMHO was the installation succesfull and could this BR be closed. The request for updating the manual is reasonable, but I think that is allready on a todo list. Enabling bootlog would mean re-assigning to the sysinit package. HtH GSt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#378993: atftpd: Support for named pipes / FIFO
Am Montag, 24. Juli 2006 12:17 schrieb Olaf Dabrunz: > I see. > > And I guess opsi will take care the pipe is only created when that > specific machine needs to boot over the network, e.g. when you want to > install or reinstall it. exactly > > It would be good to have this information in the manpage of atftpd. I > would suggest including the following: > > - a description of the FIFO feature ("you can use named pipes/FIFOs > in addition to files") > - how to use it ("it can be used on the tftp server side to tell the > clients (separately, if you want) to boot from network or to boot > from their fallback boot method") > - your example > - it may or may not be a good idea to mention that opsi uses this > feature ("opsi uses this to provide...") > > A patch that contains both the documentation and the code would be much > easier to consider. here it is. > > Regards, best regards, -- Jan Schneider uib umwelt informatik büro gmbh Bonifaziusplatz 1B 55118 Mainz Tel. 06131 / 27561-20 Fax 06131 / 27561-22 E-Mail: [EMAIL PROTECTED] Internet: www.uib.de diff -urN atftpd-0.7.dfsg/atftpd.8 atftpd-0.7.dfsg-fifo/atftpd.8 --- atftpd-0.7.dfsg/atftpd.8 2004-02-13 05:03:12.0 +0100 +++ atftpd-0.7.dfsg-fifo/atftpd.8 2006-07-25 11:31:11.0 +0200 @@ -240,6 +240,35 @@ specification. Note that this is not the same as RFC2090. PXE compliant boot implements mtftp, not RFC2090. +.SH FIFO +The atftpd server provides the ability to communicate with other +processes using named pipes / FIFOs. In addition to files you can +place FIFOs into the specified root directory which atftpd will open +for reading on a client request and serve the content to the client. +This feature can be used on the tftp server side to tell the clients +(separately, if you want) to boot from network or to boot from their +fallback boot method. + +\fBExample\fR + + #!/usr/bin/perl + use POSIX; + my $pipe = "/tftpboot/linux/pxelinux.cfg/01-00-01-02-03-04-05"; + # create fifo + POSIX::mkfifo($pipe, 0644) or +die("cannot create Pipe $pipe: $!\\n"); + # open pipe + sysopen(FIFO, $pipe, O_WRONLY, 0644); + # write boot configuration + print FIFO "default linux\\r\\n"; + print FIFO "label linux\\r\\n"; + print FIFO " kernel vmlinuz\\r\\n"; + print FIFO " append ramdisk_size=64000 init=/etc/init initrd=initrd\\r\\n"; + close(FIFO); + # delete pipe + unlink($pipe); + + .SH SEE ALSO .BR inetd (8), hosts_access (5), libpcre (7), RFC1350, RFC2090, RFC2347, RFC2348, RFC2349 and pxespec.pdf. diff -urN atftpd-0.7.dfsg/tftp_def.h atftpd-0.7.dfsg-fifo/tftp_def.h --- atftpd-0.7.dfsg/tftp_def.h 2004-02-13 04:16:09.0 +0100 +++ atftpd-0.7.dfsg-fifo/tftp_def.h 2006-06-26 11:32:04.0 +0200 @@ -33,6 +33,9 @@ #define S_TIMEOUT 5 /* Server timout. */ #define NB_OF_RETRY 5 +#define FIFO_MAX_SIZE 16384 /* Maximum bytes to read from a named pipe */ + + /* definition to use tftp_options structure */ #define OPT_FILENAME 0 #define OPT_MODE 1 diff -urN atftpd-0.7.dfsg/tftpd_file.c atftpd-0.7.dfsg-fifo/tftpd_file.c --- atftpd-0.7.dfsg/tftpd_file.c 2004-02-18 03:21:47.0 +0100 +++ atftpd-0.7.dfsg-fifo/tftpd_file.c 2006-07-04 11:42:11.0 +0200 @@ -429,6 +429,9 @@ int prev_file_pos = 0; int temp = 0; + char *fifo_buf = NULL; + int fifo_len = -1; + /* look for mode option */ if (strcasecmp(data->tftp_options[OPT_MODE].value, "netascii") == 0) { @@ -498,6 +501,33 @@ /* To return the size of the file with tsize argument */ fstat(fileno(fp), &file_stat); + if (S_ISFIFO (file_stat.st_mode)) + { + fifo_buf = (char *) malloc(sizeof(char)*FIFO_MAX_SIZE); + + if (fifo_buf == NULL) + { + logger(LOG_ERR, "memory allocation failure"); + return ERR; + } + + /* Reading from named pipe into buffer */ + fifo_len = fread( fifo_buf, 1, sizeof(char)*FIFO_MAX_SIZE, fp ); + if (fifo_len < 0) + { + logger(LOG_ERR, "error reading from named pipe %s", filename); + fclose(fp); + free(fifo_buf); + return ERR; + } + else if (fifo_len >= FIFO_MAX_SIZE) + { + logger(LOG_WARNING, "buffer limit reached while reading from pipe"); + } + file_stat.st_size = fifo_len; + logger(LOG_DEBUG, "Read %d bytes from pipe", fifo_len); + } + /* tsize option */ if ((opt_get_tsize(data->tftp_options) > -1) && !convert) { @@ -714,14 +744,39 @@ break; case S_SEND_DATA: timeout_state = state; + if (fifo_len > -1 && fifo_buf != NULL) + { +/* fifo_buf contains data from pipe */ +if (fifo_len >= data->data_buffer_size - 4) +{ + data_size = data->data_buf
Bug#378855: coreutils: sleep 0.01 should work in any locale
Stepan Koltsov <[EMAIL PROTECTED]> wrote: > Package: coreutils > Version: 5.0.90-3 > > sleep accepts float delay argument > > LANG=C sleep 0.01 works fine > LANG=ru_RU.UTF-8 sleep 0,01 works too > LANG=ru_RU.UTF-8 sleep 0.01 fails, but should work, to write scripts easier Thanks for the report. This is fixed in coreutils-5.1.0 (2003-12-21) and newer. >From the NEWS file: ** Bug fixes printf, seq, tail, and sleep now parse floating-point operands and options in the C locale. POSIX requires this for printf. That means scripts must always use ".", not ",". -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379728: slapd: upgrade to 2.3.24-2 hangs
This one time, at band camp, Christoph Kaminski said: > I cant upgrade to 2.3.24-2... > > Installing new version of config file /etc/default/slapd ... > Installing new version of config file /etc/init.d/slapd ... > > It hangs here, and after 10mins I have aborted it > > dpkg: error processing slapd (--configure): > subprocess post-installation script killed by signal (Interrupt) > Errors were encountered while processing: > slapd > > * slapd/dump_database_destdir: /var/backups/slapd-VERSION > * slapd/dump_database: always Can you add set -x as the second line in /var/lib/dpkg/info/slapd.postinst, and run dpkg --configure -a I assume what's happening is that it's running slapcat and that's taking a long time for some reason (out of disk space? something else? not sure yet). Take care, -- - | ,''`.Stephen Gran | | : :' :[EMAIL PROTECTED] | | `. `'Debian user, admin, and developer | |`- http://www.debian.org | - signature.asc Description: Digital signature
Bug#379738: quodlibet: need to be able to run with real-time priority
Package: quodlibet Version: 0.21.1-1 Severity: wishlist Hi, about the only feature missing from quodlibet that I use in xmms is the ability to run with realtime priority. At present, I get some skips/jumps when playing tracks and shifting window focus or disk intensive activity. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17 Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Versions of packages quodlibet depends on: ii exfalso 0.21.1-1 audio tag editor for GTK+ ii gstreamer0.10-plugins-base0.10.9-1 GStreamer plugins from the "base" ii gstreamer0.10-plugins-good0.10.3-2 GStreamer plugins from the "good" ii gstreamer0.10-plugins-ugly0.10.3-2 GStreamer plugins from the "ugly" ii python2.3.5-11 An interactive high-level object-o ii python-central0.5.1 register and build utility for Pyt ii python-gst0.100.10.4-4 generic media-playing framework (P Versions of packages quodlibet recommends: ii gstreamer0.10-alsa0.10.9-1 GStreamer plugin for ALSA ii gstreamer0.10-gnomevfs0.10.9-1 GStreamer plugin for GnomeVFS ii python-feedparser 4.1-4 Universal Feed Parser for Python ii quodlibet-ext 0.21.1-1 extensions for the Quod Libet audi -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379735: freeze while removing a snapshot
Package: lvm2 Version: 2.01.04-5 Severity: important Creating a snapshot with lvcreate -s works fine. Removing the volume with lvremove causes the system to freeze. I solved the problem with backporting lvm2, version 2.02.06-2, from etch to sarge. The pv is on a linux-softraid device, I'm using kernel 2.6.17.5 and libc6 2.3.2.ds1-22sarge3. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379227: dash: echo truncates at \0
forwarded 379227 upstream quit On Sat, Jul 22, 2006 at 12:48:38PM +0200, A Mennucc wrote: > hi > > here are the examples > > $ bash -c 'echo -n -e "A\0102C\00D\0E" | hexdump -c' > 000 A B C \0 D \0 E > 007 > > $ /bin/echo -n -e "A\0102C\00D\0E" | hexdump -c > 000 A B C \0 D \0 E > 007 > > $ zsh -c 'echo -n -e "A\0102C\00D\0E" | hexdump -c' > 000 A B C \0 D \0 E > 007 > > $ dash -c 'echo -n "A\0102C\00D\0E" | hexdump -c' > 000 A B C > 003 > > and also > > $ dash -c 'echo -n "ABC\0DEFGH" | hexdump -c' > 000 A B C > 003 > > As you see, dash 's builtin echo truncates the output at the first \0 Hi Herbert, I can confirm this bug, but don't have a patch yet. It doesn't only affect echo, it seems. Thanks, Gerrit. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#257556: transfig: Fails to export some images to anything
Hello, Sorry, but for some reason I don't seem to have gotten the question (and don't see a way to check whether bts didn't send it or my mail system lost it). The image was indeed created by xfig. Version from unstable at the time of the original post. - Jan Hudec `Bulb' <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379736: invalid reference to nc's proxy feature
Package: openssh-client Version: 1:4.3p2-2 Severity: minor the ssh_config manpage says under ProxyCommand: This directive is useful in conjunction with nc(1) and its proxy support. For example, the following directive would connect via an HTTP proxy at 192.0.2.0: ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p Debian's netcat does not support -X, nor can I find an upstream version that does. -- Please do not send copies of list mail to me; I read the list! .''`. martin f. krafft <[EMAIL PROTECTED]> : :' :proud Debian developer and author: http://debiansystem.info `. `'` `- Debian - when you have better things to do than fixing a system signature.asc Description: Digital signature (GPG/PGP)
Bug#376415: ITP: uulib -- uulib parser and pretty print combinator library for Haskell
Hi, It might be a good idea to rename the source package to haskell-uulib to avoid confusion with uulib from uudeview and libconvert-uulib-perl. Thanks, Matej -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379688: reboot needed a powercylce
On Mon, Jul 24, 2006 at 08:59:01PM -0300, facundo wrote: > Package: installation-reports Thank you for your feedback. > Comments/Problems: > > a) did not reboot, but switching off and then on it all started ok Please tell more about the "did not reboot". Now that computer is installed. Does the reboot command work properly? I'm asking because I wonder if it is hardware related. Cheers Geert Stappers -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379739: openoffice.org: Debian missing from About dialog
Package: openoffice.org Version: 2.0.3-2 Severity: minor The About dialog (menu: Help -> About) says: "This product has been created by [blank] based on OpenOffice.org." Presumably, the blank should be "Debian" or "The Debian Project" or "The Debian OpenOffice.org Packaging Team" or something similar. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-1-686 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages openoffice.org depends on: ii openoffice.org-base 2.0.3-2OpenOffice.org office suite - data ii openoffice.org-calc 2.0.3-2OpenOffice.org office suite - spre ii openoffice.org-core 2.0.3-2OpenOffice.org office suite archit ii openoffice.org-draw 2.0.3-2OpenOffice.org office suite - draw ii openoffice.org-impress2.0.3-2OpenOffice.org office suite - pres ii openoffice.org-java-common2.0.3-2OpenOffice.org office suite Java s ii openoffice.org-math 2.0.3-2OpenOffice.org office suite - equa ii openoffice.org-writer 2.0.3-2OpenOffice.org office suite - word openoffice.org recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379742: mirror() and getstore() produce incorrect output when target doesn't exist
Package: libwww-perl Version: 5.805-1 Severity: normal Hi there, When running mirror() or getstore() with a target directory that doesn't exist, they return 500, when they should return the HTTP response code. Attached is a small script that shows this effect. I'm not sure if the perl module or the documentation should be updated to explain this, but it's currently confusing for users. Cheers, Neil -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12-1-686 Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1) Versions of packages libwww-perl depends on: pn libdigest-md5-perl (no description available) ii libhtml-parser-perl 3.54-1 A collection of modules that parse ii libhtml-tree-perl 3.19.01-2 represent and create HTML syntax t ii libnet-perl 1:1.19-3 Implementation of Internet protoco ii liburi-perl 1.35-2 Manipulates and accesses URI strin ii perl [libmime-base64-perl]5.8.8-4Larry Wall's Practical Extraction ii perl-modules [libnet-perl]5.8.8-4Core Perl modules Versions of packages libwww-perl recommends: ii libcompress-zlib-perl 1.41-1 Perl module for creation and manip pn libhtml-format-perl(no description available) ii libmailtools-perl 1.74-0.1 Manipulate email in perl programs -- debconf-show failed -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379741: tk-brief omits \IhrSchreiben{} tag in tk-brief.tex
Package: tk-brief Version: 5.6-6 Severity: normal -- System Information Debian Release: 3.0 Architecture: i386 Kernel: Linux mliss 2.4.26-2-686 #1 Mon May 17 22:19:48 EST 2004 i686 Locale: LANG=C, [EMAIL PROTECTED] Versions of packages tk-brief depends on: ii aterm [x-terminal-emula 0.4.2-3 Afterstep XVT - a VT102 emulator f ii rxvt [x-terminal-emulat 1:2.6.4-6VT102 terminal emulator for the X ii tetex-extra 1.0.2+20011202-2 extra teTeX library files ii tk8.3 8.3.3-8 The Tk toolkit for TCL and X11 v8. ii tk8.3 [wish]8.3.3-8 The Tk toolkit for TCL and X11 v8. ii wterm [x-terminal-emula 6.2.9-4 An rxvt based, color xterm replace ii xterm 4.2.1-2 X terminal emulator ii xterm [x-terminal-emula 4.2.1-2 X terminal emulator version 5.6-6, version 5.9-1 If the tag \MeinZeichen{} is present, the tag \IhrSchreiben{} will be omitted from tk-brief.tex, thus it's content will be lost. Quote from .tkbrief.conf: Iz(do_it)| 0 Iz(wert)| Ihr_S(do_it)| 1 Ihr_S(wert)| 25.07.2006 Mein_Z(do_it)| 1 Mein_Z(wert)| 08/15 uz| 0 briefstyle| g-brief german| 1 sprache| Deutsch class_list| g-brief g-brief regards, Mirko Liss -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379743: cynthiune.app: FTBFS (amd64): CynthiuneHeaderCell.m:100: internal compiler error: in simplify_subreg, at simplify-rtx.c:3807
Package: cynthiune.app Version: 0.9.5-3 Severity: serious Tags: patch When building 'cynthiune.app' on amd64/unstable, I get the following internal compiler error: CynthiuneController.m:517: warning: '_OBJC_INSTANCE_8' defined but not used Compiling file CynthiuneFadingTextField.m ... CynthiuneFadingTextField.m:107: warning: '_OBJC_INSTANCE_0' defined but not used Compiling file CynthiuneHeaderCell.m ... CynthiuneHeaderCell.m: In function '-[CynthiuneHeaderCell drawInteriorWithFrame:inView:]': CynthiuneHeaderCell.m:100: internal compiler error: in simplify_subreg, at simplify-rtx.c:3807 Please submit a full bug report, with preprocessed source if appropriate. See http://gcc.gnu.org/bugs.html> for instructions. For Debian GNU/Linux specific bug reporting instructions, see . Preprocessed source stored into /tmp/ccnrMNrN.out file, please attach this to your bugreport. make[2]: *** [shared_obj/CynthiuneHeaderCell.o] Error 1 make[1]: *** [Cynthiune.all.app.variables] Error 2 make[1]: Leaving directory `/cynthiune.app-0.9.5' make: *** [build-stamp] Error 2 With the attached workaround patch 'cynthiune.app' can be compiled on amd64 using gcc-4.1. Regards Andreas Jochens diff -urN ../tmp-orig/cynthiune.app-0.9.5/CynthiuneHeaderCell.m ./CynthiuneHeaderCell.m --- ../tmp-orig/cynthiune.app-0.9.5/CynthiuneHeaderCell.m 2006-03-21 07:52:16.0 + +++ ./CynthiuneHeaderCell.m 2006-07-25 10:10:58.0 + @@ -65,10 +65,11 @@ pointA = 0.0; pointB = arrowSize.height; } + NSPoint p = NSMakePoint(0, pointA); - [bezier moveToPoint: RelativePoint (NSMakePoint(0, pointA), refPoint)]; + [bezier moveToPoint: RelativePoint (p, refPoint)]; [bezier lineToPoint: RelativePoint (NSMakePoint(arrowSize.width / 2, pointB), refPoint)]; [bezier lineToPoint: RelativePoint (NSMakePoint(arrowSize.width, pointA), refPoint)]; - [bezier lineToPoint: RelativePoint (NSMakePoint(0, pointA), refPoint)]; + [bezier lineToPoint: RelativePoint (p, refPoint)]; [bezier closePath]; [bezier fill]; } @@ -90,9 +91,9 @@ { NSDivideRect (cellFrame, &arrowFrame, &remainingFrame, arrowWidth + arrowOffset, NSMaxXEdge); - refPoint = RelativePoint (NSMakePoint (0, (cellFrame.size.height - - arrowHeight) / 2), -arrowFrame.origin); + NSPoint p = NSMakePoint (0, (cellFrame.size.height + - arrowHeight) / 2); + refPoint = RelativePoint (p, arrowFrame.origin); [self _drawArrowOfSize: NSMakeSize (arrowWidth, arrowHeight) flipped: [controlView isFlipped] atReferencePoint: refPoint]; -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337578: ITP: slim -- simple login manager: Any news?
Hello, The latest release of slim basically adds xauth-support which was a requirement for acceptance for everybody i have spoken to. I have a package of slim 1.2.5 (even patched to support PAM) ready for upload but I'm unsure if it's such a good idea considering this bug: http://developer.berlios.de/bugs/?func=detailbug&bug_id=7535&group_id=2663 pgpgTABj9fA2P.pgp Description: PGP signature
Bug#379527: sgt-puzzles: help of puzzles not working
* Ben Hutchings <[EMAIL PROTECTED]> [2006-07-25 00:59]: > This looks like a dupe of #355146. Which version of libgnome do you > have installed? 2.14.1-2 - so it doesn't seem to be solved with libgnome2 version 2.14.0-2 like stated in that bugreport... Thanks for remembering that report, I haven't seen it referenced in sgt-puzzles. So, should the other report be re-opened, and this one stay with sgt-puzzles about that the help files shouldn't stay in /usr/share/doc - see policy 12.3. about it. Though the program doesn't require the help files available it is quite annoying when one presses the help button repeatedly just to find out that it doesn't work, at all. So long, Alfie -- And at that moment the cobblestones came up to meet him. This is usually a poetic way of saying that someone felt flat on their face. In this case, the cobblestones really came up to meet him. -- Terry Pratchett, "Reaper Man" signature.asc Description: Digital signature
Bug#379734: mantis: undefined function db_field_names
Hello Martin, > At the upgrade process I saw the following: > > Richte mantis ein (0.19.4-3.1) ... > > PHP Warning: mime_magic: type regexBEGIN[[:space:]]*[{] > > application/x-awk invalid in Unknown on line 0 > > I: Using password from existing config file. > > I: Restarting webservers: apache2 > > If I click on "Manage" I receive now: > Fatal error: Call to undefined function: db_field_names() in > /usr/share/mantis/gui/manage_user_page.php on line 33 Thanks, I'll check this out. Thijs signature.asc Description: This is a digitally signed message part
Bug#379744: python-goopy: no python file in this package
Package: python-goopy Version: 0.1-1.1 Severity: grave Justification: renders package unusable $ dpkg -L python-goopy /. /usr /usr/share /usr/share/doc /usr/share/doc/python-goopy /usr/share/doc/python-goopy/functional_docs.html /usr/share/doc/python-goopy/copyright /usr/share/doc/python-goopy/changelog.Debian.gz $ -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-1-em64t-p4-smp Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) -- no debconf information -- LI Daobing -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken
On Tuesday 25 July 2006 11:12, Filippo Giunchedi wrote: > I've modified the rules file, it is available at > http://svn.debian.org/wsvn/pkg-bluetooth/bluez-utils/trunk/debian/bluez-pcm >cia-support.udev?op=file&rev=0&sc=0 > > and the bluetooth.sh invoked on RUN available at > http://svn.debian.org/wsvn/pkg-bluetooth/bluez-utils/trunk/debian/bluetooth >.sh?op=file&rev=0&sc=0 > > what about the change from DEVPATH to PHYSDEVPATH Felix proposed in > bluetooth.sh? > > Felix: do you mind trying the first file to see if it works for you? It's working, but only if PHYSDEVPATH is used in bluetooth.sh. Kind regards, Felix -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379403: Further note
Having tried my PCMCIA card I found that kbluetoothd is only "blinded" using my USB bluetooth dongle. Strange... Kind regards, Felix -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#366624: Bug 366624 - size mismatch
Hello, we have run in exactly this problem of mixing ubuntu and debian packages. On delivering a wrong package you get a "size mismatch" error on "apt-get [dist-]upgrade". Is there a new version available yet? We would like to test it, too, if possible. How will you fix this problem? Thanks, Gert -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379706: g++-4.1: segfaults building boost 1.33.1-5
Domenico Andreoli writes: > Package: g++-4.1 > Version: 4.1.1-9 > > hi, > > the latest upload of boost, 1.33.1-5, fails to build from source on > arm because of a segfault of g++-4.1. [...] > Please submit a full bug report, > with preprocessed source if appropriate. > See http://gcc.gnu.org/bugs.html> for instructions. > For Debian GNU/Linux specific bug reporting instructions, > see . that is strange. Look at the binary versions of g++-4.1_ (no version), and the outdated binutils version. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379745: python-scientific: Scientific.Geometry.Vector is not copy construtable
Package: python-scientific Version: 2.4.9-6 Severity: normal In [2]:from Scientific.Geometry import Vector In [3]:a = Vector(1.0, 2.0, 3.0) In [4]:b = Vector(a) In [5]:`a` Out[5]:'Vector(1.0,2.0,3.0)' In [6]:`b` --- exceptions.IndexErrorTraceback (most recent call last) /home/nichloas/ /usr/lib/python2.3/site-packages/Scientific/Geometry/VectorModule.py in __repr__(self) 61 62 def __repr__(self): ---> 63 return 'Vector(%s,%s,%s)' % (`self.array[0]`,\ 64 `self.array[1]`,`self.array[2]`) 65 IndexError: index out of bounds In [7]: -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.17-1-em64t-p4-smp Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages python-scientific depends on: hi python2.3.5-11 An interactive high-level object-o hi python-central0.5.1 register and build utility for Pyt hi python-netcdf 2.4.9-6A netCDF interface for Python hi python-numeric-ext24.2-5 Extension modules for Numeric Pyth hi python2.4 2.4.3-7An interactive high-level object-o Versions of packages python-scientific recommends: hi python-tk 2.4.3-1Tkinter - Writing Tk applications -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#378839: [Pkg-bluetooth-maintainers] Bug#378839: bluez-pcmcia-support: udev support broken
On Tuesday 25 July 2006 11:12, Filippo Giunchedi wrote: > what about the change from DEVPATH to PHYSDEVPATH Felix proposed in > bluetooth.sh? Hi again, MANFID=`cat /sys/$PHYSDEVPATH/manf_id`","`cat /sys/$PHYSDEVPATH/card_id` and MANFID=`cat /sys/$DEVPATH/device/manf_id`","`cat /sys/$DEVPATH/device/card_id` seem to be equivalent in this setting. I don't know if either one is prefered or deprecated, but I would now prefer the latter since it's simpler: $DEVPATH -> /class/tty/ttyS2 $PHYSDEVPATH -> /devices/pci:00/:00:1e.0/:06:01.0/0.0 (on insertion of a SPHINX card) Kind regards, Felix -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379746: sylpheed-claws-gtk2: all popup windows should be TRANSIENT windows
Package: sylpheed-claws-gtk2 Version: 2.3.1cvs84-1 Severity: normal Right now all child-windows of sylpheed claws appear in random positions. Some windows like preferences window, new-email window are placed in the center of the screen. This is usually good if you have main window maximized. Some windows like Help->About, and this window with progress bar are placed in non controlled way, and this looks ugly. I was checking almost all SC windows with: $ xprop |grep TRANSIENT and It seems that Transient is not used at all. There are ready to use methods for this in gtk and they should be used for all SC windows. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-2-686 Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2) Versions of packages sylpheed-claws-gtk2 depends on: ii libaspell15 0.60.4-4 GNU Aspell spell-checker runtime l ii libc6 2.3.6-15 GNU C Library: Shared libraries ii libcompfaceg1 1:1.5.2-3 Compress/decompress images for mai ii libetpan8 0.46-1 mail handling library ii libglib2.0-0 2.10.3-1 The GLib library of C routines ii libgnomeprint2.2-02.12.1-3 The GNOME 2.2 print architecture - ii libgnomeprintui2.2-0 2.12.1-3 GNOME 2.2 print architecture User ii libgtk2.0-0 2.8.18-1 The GTK+ graphical user interface ii libldap2 2.1.30-12 OpenLDAP libraries ii libpango1.0-0 1.12.3-1 Layout and rendering of internatio ii libpisock80.11.8-24 Library for communicating with a P ii libssl0.9.8 0.9.8b-2 SSL shared libraries ii libstartup-notification0 0.8-2 library for program launch feedbac Versions of packages sylpheed-claws-gtk2 recommends: ii aspell-en [aspell-dictionar 6.0-0-5 English dictionary for GNU Aspell ii aspell-pl [aspell-dictionar 20060504-1 Polish dictionary for aspell ii metamail2.7-50 implementation of MIME ii sylpheed-claws-gtk2-i18n2.3.1cvs84-1 Locale data for Sylpheed-Claws GTK pn sylpheed-claws-scripts (no description available) ii xfonts-100dpi 1:1.0.0-2100 dpi fonts for X ii xfonts-100dpi-transcoded1:1.0.0-2100 dpi fonts for X (transcoded fr ii xfonts-75dpi1:1.0.0-2100 dpi fonts for X ii xfonts-75dpi-transcoded 1:1.0.0-275 dpi fonts for X (transcoded fro -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#379747: Regression: tables stopped working in g-brief-de
Package: lyx-common Version: 1.4.1-2 Severity: normal I'm writing all my letters with lyx (thanks for providing it!), including my invoicing. For this purpose I use the template g-brief-de with tables. This used to work fine until version 1.4.1-1 or 1.4.1-2. I'll attach an example lyx file generated with lyx/stable. It generates PDFs with lyx/stable, it doesn't with lyx/unstable. Sometimes I get no response at all, sometimes I got the attached error message. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (150, 'testing'), (100, 'stable'), (50, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.16-2-k7 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Versions of packages lyx-common depends on: ii perl 5.8.8-4Larry Wall's Practical Extraction ii python2.3.5-11 An interactive high-level object-o ii tetex-bin 3.0-17 The teTeX binary files Versions of packages lyx-common recommends: ii groff 1.18.1.1-12 GNU troff text-formatting system ii imagemagick7:6.2.4.5-0.8 Image manipulation programs ii libtiff-tools 3.8.2-5 TIFF manipulation and conversion t ii lyx-qt 1.4.1-2 High Level Word Processor - Qt fro ii lyx-xforms 1.4.1-2 High Level Word Processor - XForms ii mime-support 3.37-1MIME files 'mime.types' & 'mailcap ii psutils1.17-23 A collection of PostScript documen ii tetex-extra3.0-19Additional library files of teTeX -- no debconf information #LyX 1.3 created this file. For more info see http://www.lyx.org/ \lyxformat 221 \textclass g-brief-de \begin_preamble %%\lochermarke \faltmarken \fenstermarken \trennlinien %% \klassisch \end_preamble \language german \inputencoding latin2 \fontscheme default \graphics default \paperfontsize default \spacing single \papersize Default \paperpackage a4 \use_geometry 0 \use_amsmath 0 \use_natbib 0 \use_numerical_citations 0 \paperorientation portrait \secnumdepth 3 \tocdepth 3 \paragraph_separation indent \defskip medskip \quotes_language polish \quotes_times 2 \papercolumns 1 \papersides 1 \paperpagestyle default \layout Name Thomas Hartkens \layout Unterschrift Thomas Hartkens \layout Strasse Edmund-Siemers-Allee 25 \layout Zusatz \layout Ort 20434 Hamburg \layout Land \layout RetourAdresse \layout Telefon +49 40 333 \layout Telefax \layout Telex \layout EMail [EMAIL PROTECTED] \layout HTTP www.hartkens.de/thomas \layout Bank \layout BLZ \layout Konto \layout Adresse Hans Beispiel \newline Teststrasse 34 \newline 26871 Musterberg \layout Betreff Musterbrief \layout Postvermerk EINSCHREIBEN \layout MeinZeichen \layout IhrZeichen TH \layout IhrSchreiben \layout Anlagen \layout Verteiler \layout Datum \begin_inset ERT status Collapsed \layout Brieftext \backslash today \end_inset \layout Anrede Sehr geehrter Herr Beispiel, \layout Gruss Mit freundlichen Grüßen, \layout Brieftext seit der siebten Mieterhöhung im laufenden Jahr konnte ich keinen Zahlungseingan g von Ihnen mehr verbuchen. Ich bitte Sie Ihren Verpflichtungen schnellstens nachzukommen, da ich mich sonst gezwungen sehe, Ihre Miete ein weiteres mal anzuheben. \layout Brieftext \begin_inset Tabular \begin_inset Text \layout Brieftext 1 \end_inset \begin_inset Text \layout Brieftext 2 \end_inset \begin_inset Text \layout Brieftext 3 \end_inset \begin_inset Text \layout Brieftext 4 \end_inset \end_inset \the_end lyx-bug-1.png Description: PNG image
Bug#379495: Fixing patch
tags 379495 + patch thanks Hi, Due to xorg transition and consequent FHS re-working, the forms.h is no longer in /usr/X11R6/include/X11, but it has been moved to /usr/include/X11/forms.h The attached patch correct the include path. If no other errors are present, this should fix the FTBFS. At the moment I can't test in a pbuilder chroot, so you should better check it by yourself before upload. Cheers, Luca -- .''`. ** Debian GNU/Linux ** | Luca Bruno : :' : The Universal O.S.| luca.br(AT)uno.it `. `'` | GPG Key ID: 3BFB9FB3 `- http://www.debian.org | Proud Debian GNU/Linux User predict-ftbfs.patch Description: Binary data pgpoXo8ZMmWAt.pgp Description: PGP signature