Bug#338979: popularity-contest: optionally gather machine details
Package: popularity-contest Version: 1.31 Severity: wishlist It would be nice if popularity contest could optionally gather information about the computer it's running on. Here are the things I've thought of: * What vendors and models of computers run Debian. This might be useful for convincing a vendor to help support Debian on their machines. So many vendors equate what what O/S a machine is running with what O/S it was sold with, when in reality we all know people install Debian over the top of whatever the machine came with once they get it :) These details could be gathered with debconf questions. (Disclaimer: I work for HP and I want this to be able to convince my management what systems to support) * What amounts of memory and disk space a machine has. This would allow us to determine what resources the installer, packaging system, and other software have to work with. After asking permission with a debconf question, this info could be gathered from /proc. * What I/O devices a machine has. This would be useful for the kernel team to determine what drivers to support and how. After asking permission with a debconf question, this could be determined with lspci/lsusb/dmidecode. * Where on the network in relation to Debian this machine is. This would allow us to determine where mirrors are needed. We'd have to be careful on this one to not reveal too much in the info gathered where the machine is. I'm thinking gathering the number of traceroute hops to several mirrors or something like that. * What city and country the machine is located in. This could be used for cool maps and graphs and to lobby governments to support Debian. Gathered by debconf questions. * Number of users of the machine. Interesting. Might have practical uses for default daemon settings or package tuning. Probably bucketed somehow, like 1, 2-10, 10-20, 20-50, 50-100, 100-500, 500+. I guess it depends on how you define users, you can have a lot of 'users' of a website. This will need some discussion. * What the system is used for. Helpful in determining stuff for tasksel. Checkboxes of various things people use debian for, maybe including an "other" where they can put in their own use. (if particular 'other' options show up a lot they could be added in future releases). * What the system is primarily used for. Sorting for tasksel, other uses. radio buttons based on answers to the previous question * class of system. Interesting. Maybe useful for lobbying industry groups. Radio buttons of something like 'embedded device', 'desktop', 'server', 'mainframe', 'kiosk', 'cluster'. These selections will need some discussion. 'cluster' in particular might be neat because it would allow us to determine if clusters were artificially inflating other popcon numbers (a claim I've heard). Again all of these would be optional. It might be interesting to store the results in rfc822 format somewhere on the system, maybe /etc/system or something? A standard for that would be neat. We wouldn't want that abused though, need to think about that. Thanks, -- Matt Taggart [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338980: Driver fails to connect a network with 32 character long ESSID because of out-of-bound zero termination
Package: zd1211-source Version: 0.0.0.svnr23-3 Tags: patch I have AP with 32 char long ESSID. The driver fails to connect it. "Can't find desired ESSID" message is printed ~once per second. In addition, $ iwlist scanning displays in one place: "essid: " This is an obvious zero terminator out-of-bounds case. Patch that increases array sizes and memcpys by one is included. I have already reported this to the zd1211 developer community. I have compiled the kernel from 2.6.12-7. -- i.diff -u -r zd1211/src/zd1205.c zd1211-ij/src/zd1205.c --- zd1211/src/zd1205.c 2005-09-22 16:21:46.0 +0300 +++ zd1211-ij/src/zd1205.c 2005-10-26 09:53:54.0 +0300 @@ -7176,8 +7176,8 @@ U8 bssTypeToConnect; zd1205_lock(macp); if (macp->BSSInfo[val-1].cap & CAP_IBSS) { - memcpy((U8*)&mSsid,(U8*)macp->BSSInfo[val-1].ssid,34); -memcpy((U8*)&dot11DesiredSsid, &mSsid, 34); + memcpy((U8*)&mSsid,(U8*)macp->BSSInfo[val-1].ssid,34+1); +memcpy((U8*)&dot11DesiredSsid, &mSsid, 34+1); macp->BSSInfo[val-1].ssid[mSsid.buf[1]+2]=0; //printk(KERN_ERR "desired IBSS ssid=%s\n",&macp->BSSInfo[val-1].ssid[2]); mBssType=macp->cardSetting.BssType=INDEPENDENT_BSS; @@ -7185,8 +7185,8 @@ bssTypeToConnect=mBssType; zd_CmdProcess(CMD_CONNECT, &bssTypeToConnect, val); } else if (macp->BSSInfo[val-1].cap & CAP_ESS) { - memcpy((U8*)&mSsid,(U8*)macp->BSSInfo[val-1].ssid,34); -memcpy((U8*)&dot11DesiredSsid, &mSsid, 34); + memcpy((U8*)&mSsid,(U8*)macp->BSSInfo[val-1].ssid,34+1); +memcpy((U8*)&dot11DesiredSsid, &mSsid, 34+1); macp->BSSInfo[val-1].ssid[mSsid.buf[1]+2]=0; //printk(KERN_ERR "desired AP ssid=%s\n",&macp->BSSInfo[val-1].ssid[2]); mBssType=macp->cardSetting.BssType=INFRASTRUCTURE_BSS; diff -u -r zd1211/src/zdapi.h zd1211-ij/src/zdapi.h --- zd1211/src/zdapi.h 2005-09-22 16:21:45.0 +0300 +++ zd1211-ij/src/zdapi.h 2005-10-26 09:55:11.0 +0300 @@ -473,7 +473,7 @@ U8 bContinueTx; U8 bChScanning; U16IntValue[14]; -U8 CurrSsid[34]; +U8 CurrSsid[34+1]; #ifdef ZD1211B U8 LengthDiff; diff -u -r zd1211/src/zdsorts.h zd1211-ij/src/zdsorts.h --- zd1211/src/zdsorts.h2005-08-17 21:40:01.0 +0300 +++ zd1211-ij/src/zdsorts.h 2005-10-26 09:50:50.0 +0300 @@ -111,7 +111,7 @@ typedef struct { -U8 buf[34];//Max SSID Length = 32 +U8 buf[34+1]; //Max SSID Length = 32 } Element; diff -u -r zd1211/src/zdsynch.c zd1211-ij/src/zdsynch.c --- zd1211/src/zdsynch.c2005-09-22 16:21:45.0 +0300 +++ zd1211-ij/src/zdsynch.c 2005-10-26 09:57:10.0 +0300 @@ -312,7 +312,7 @@ /* Dump WPA IE */ if(pCurrBssInfo->WPAIe[1] != 0) { int ii; -u8 SSID[34]; +u8 SSID[34+1]; memcpy(SSID, (u8 *)(&pCurrBssInfo->ssid.buf[2]), pCurrBssInfo->ssid.buf[1]); SSID[pCurrBssInfo->ssid.buf[1]] = '\0';
Bug#338966: [Pkg-sysvinit-devel] Bug#338966: initscripts: "Usage" error message displays during bootup
[Petter Reinholdtsen] > I suspect it the effect is that the upgraded scripts in /etc/rcS.d/ > are not executed as they should, as they are called without 'start' > as a command line argument. I checked the old version, and luckily, only the .sh scripts are called without the 'start' argument. Try this patch: Index: /etc/init.d/rcS === --- /etc/init.d/rcS (revisjon 21) +++ /etc/init.d/rcS (arbeidskopi) @@ -46,7 +46,7 @@ ( trap - INT QUIT TSTP set start - . $i + . $i start ) ;; *) But I seriously recommend upgrading sysv-rc to the latest version and allowing it to update /etc/init.d/rcS and /etc/init.d/rc. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338868: fuser doesn't work anymore.
On Mon, Nov 14, 2005 at 02:17:02PM +1100, Craig Small wrote: > On Sun, Nov 13, 2005 at 02:22:16PM +0100, Kurt Roeckx wrote: > > It seems that fuser doesn't work anymore. While 21.6-1 returned > > all the processes, 21.8-1 doesn't return anything anymore. > > Could you give me more information about what makes it > not "work"? I have absolutely nothing to go on in your bug report. If I do: fuser /org/buildd/ssh-pipe I get: /org/buildd/ssh-pipe: while I should get: /org/buildd/ssh-pipe: 8518 /org/buildd/ssh-pipe is a socket, and it seems doing some more test shows that that only that seems to fail. Other things like executables, librarys, tcp sockets are found. Kurt -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#326014: reopen #326014
reopen 326014 retitle Incorrect use of poll in fnord for CGIs thanks Hi Norbert, Mailgraph 1.12 doesn't fix the problem described in #326014. The bug-fix for rrdtool 1.2.x mentioned in the changelog is for rrdtool 1.2.0 and 1.2.1, which don't support --slope-mode. Cheers David -- David Schweikert| phone: +41 44 632 7019 System manager ISG.EE | walk: ETH Zentrum, ETL F24.1 ETH Zurich, Switzerland | web: http://people.ee.ethz.ch/dws -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338981: oowriter: Can't deal with embedded PDF
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Package: oowriter Version: 2.0.0-2 Hi When I try to open an embedded PDF (in a MS-Word document) it opens it as text instead of launching a pdf viewer. It can only be saved as a text document which converts non printables to blanks or something similar because when I try to view it with a pdf viewer it shows only blank pages due to a bad block header and bad code table in flate stream. Exporting the entire document as PDF only exports the surrounded text, not the embedded PDF... Cheers Luk - -- Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D Fingerprint: D5AF 25FB 316B 53BB 08E7 F999 E544 DE07 9B7C 328D -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFDeEpx5UTeB5t8Mo0RAi99AJ90+eYvZsYp9GglQpulE69iybDpzgCffeJA OZlCfqRYQhaOUKan7RlYdpE= =Yc3W -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337259: debian-reference: FTBFS with new tetex-bin: Error trying to create pdflatex.fmt
Jens Seidel <[EMAIL PROTECTED]> wrote: > tetex-base (2.0.2a-2) unstable; urgency=low > > * By default, enable all hyphenation patterns in language.dat [frank] > > -- Frank Küster <[EMAIL PROTECTED]> Fri, 30 Jul 2004 12:55:50 +0200 > > Frank, I really don't understand why you think including all > hyphenanation patterns by default should be requested from teTeX > maintainers in the past. > > First of all languages.dat is a config file you knew about. Also I > remember that LaTeX was always proud to need only very little resources > such as RAM. And I also never assumed that one little project needing > minor changes would influence a large package such as tetex. debian-reference was by no means the reason for this switch. Instead, the reasons were, IIRC: - many users found it hard to find the right place for this configuration, and furthermore didn't know they needed to recreate the formats afterwards - the code which we provided to make configuration of hyphenation patterns more user-friendly turned out to be error-prone - other TeX distributions also enable all available hyphenation patterns - it was reported that although the format generation takes longer, the effect during normal LaTeX runs is very small - and for the users that want to optimize even this, language.dat is still a conffile (in fact now this has changed again, and the conffile ist /etc/texmf/language.d/00tetex.cnf) > And the most important reason was always that a config file can be > changed by users so that it was the easiest way to ensure all > requirements myself. During package build, it is not easy to do this, and also slow. Regards, Frank -- Frank Küster Inst. f. Biochemie der Univ. Zürich Debian Developer
Bug#338608: Documenting change to tetex 3.0; deprecating initex and virtex.
On Mon, Nov 14, 2005 at 04:07:48PM +0900, Atsuhito Kohda wrote: > > all. In sarge, virtex was effectively a synonym for plain TeX. > > Is this because fmt file for plain TeX is now called as > tex.fmt (but not plain.fmt which was common in old days), > and virtex is a symbolic link to tex, and a current tex binary > uses a format file of the name it is called under? Doubt it - from tex.web: == @ We have noted that there are two versions of \TeX82. One, called \.{INITEX}, @.INITEX@> has to be run first; it initializes everything from scratch, without reading a format file, and it has the capability of dumping a format file. The other one is called `\.{VIRTEX}'; it is a ``virgin'' program that needs @.VIRTEX@> to input a format file in order to get started. \.{VIRTEX} typically has more memory capacity than \.{INITEX}, because it does not need the space consumed by the auxiliary hyphenation tables and the numerous calls on |primitive|, etc. The \.{VIRTEX} program cannot read a format file instantaneously, of course; the best implementations therefore allow for production versions of \TeX\ that not only avoid the loading routine for \PASCAL\ object code, they also have a format file pre-loaded. This is impossible to do if we stick to standard \PASCAL; but there is a simple way to fool many systems into avoiding the initialization, as follows:\quad(1)~We declare a global integer variable called |ready_already|. The probability is negligible that this variable holds any particular value like 314159 when \.{VIRTEX} is first loaded.\quad(2)~After we have read in a format file and initialized everything, we set |ready_already:=314159|.\quad(3)~Soon \.{VIRTEX} will print `\.*', waiting for more input; and at this point we interrupt the program and save its core image in some form that the operating system can reload speedily.\quad(4)~When that core image is activated, the program starts again at the beginning; but now |ready_already=314159| and all the other global variables have their initial values too. The former chastity has vanished! In other words, if we allow ourselves to test the condition |ready_already=314159|, before |ready_already| has been assigned a value, we can avoid the lengthy initialization. Dirty tricks rarely pay off so handsomely. @^dirty \PASCAL@> @^system dependencies@> On systems that allow such preloading, the standard program called \.{TeX} should be the one that has \.{plain} format preloaded, since that agrees with {\sl The \TeX book}. Other versions, e.g., \.{AmSTeX}, should also @:TeXbook}{\sl The \TeX book@> @.AmSTeX@> @.plain@> be provided for commonly used formats. == > I suspect these features are not documented in the TeXbook. Correct - it's a system dependency not for mere mortals. Julian -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338911: udev 0.074-2 fails to start with linux 2.6.14
I recompiled the kernel with the missing option, reinstalled udev 0.074-2 again - udev works as exspected. The linux-images should all be checked, that this option is enabled (I do not know how this affecs older images <2.6.14 - eventually there should be a dependance of udev to the newer linux images). Uwe P.S.: @Marco: The corrupt rule does not show in syslog with 0.074-2 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#328534: Adaptec 2005S Hangs with current experiemental 2.6.13-686-smp kernel
On Sun, Nov 13, 2005 at 07:01:28PM -0800, wolftales wrote: > Jonas Smedegaard wrote: > >-BEGIN PGP SIGNED MESSAGE- > >Hash: SHA1 > > > >On Sun, 13 Nov 2005 12:38:35 -0800 > >Wolftales <[EMAIL PROTECTED]> wrote: > > > > > >>I had no luck running this with yaird as I showed below. > >> > > > >Do I understand correctly that your running kernel is 2.4.27? If so, > >then you can't install yaird as it requires sysfs on the running > >kernel. > > > >To install using yaird you must first install and boot a kernel > >between 2.6.8 (oldest kernel supported by yaird) and 2.6.12 (newest > >kernel supported by initrd-tools). > > > > > > - Jonas > > > > > >- -- > >* Jonas Smedegaard - idealist og Internet-arkitekt > >* Tlf.: +45 40843136 Website: http://dr.jones.dk/ > > > > - Enden er nær: http://www.shibumi.org/eoti.htm > >-BEGIN PGP SIGNATURE- > >Version: GnuPG v1.4.2 (GNU/Linux) > > > >iD8DBQFDd+3Dn7DbMsAkQLgRAsa1AJ4vQYbOaWfe4d8EW0b+3uJILCnPEgCfTBAs > >n/b+RK0yVDQJFKaop9A5oAg= > >=OBAT > >-END PGP SIGNATURE- > > > I can not install a 2.6 kernel because of these boot issues. The 2.4 > kernel has been the only one I can successfully boot off from. So it > appears to be a kind of a catch-22. You have two choices : 1) install 2.6.8 from sarge or 2.6.12 from etch, and then install 2.6.14 after reboot. You will be forced to do something similar because of udev anyway. 2) install initramfs-tools and then install the 2.6.14 kernel. Things are still in flux, and 2.6.14 will not enter etch until these upgrade paths are solved. Friendly, Sven Luther
Bug#338829: zeroconf shouldn't assign an adress to an already configured interface
On Mon, 2005-11-14 at 04:10, Anand Kumria wrote: > eve:[~]% ls -l `which ping` > -rwsr-xr-x 1 root root 30756 2005-10-24 04:19 /bin/ping > > Is what my machine has for the ping command, what does your have? Ok right, my ping isn't suid. I wonder how that's possible ? Anyway, I tried the ping because it was simpler, but I remember I couldn't ssh to my machine. Now I can't reproduce it. I'll try again after a long poweroff period (maybe something in dnsmasq's cache). Xav -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338978: python2.3-pylint: Depends on unavailable package python2.3-logilab-astng
tag 338978 +pending On Mon, Nov 14, 2005 at 07:09:01PM +1300, Jamie Norrish wrote: > Package: python2.3-pylint > Version: 0.8.1-1 > Severity: grave > > The new release of python2.3-pylint in unstable added a dependency on > python2.3-logilab-astng, but there is no such package in the > archive. The same appears true of the 2.2 and 2.4 versions of pylint. astng is in the NEW queue, waiting for the ftp-masters' approval. Please be patient. -- Alexandre Fayolle LOGILAB, Paris (France). http://www.logilab.com http://www.logilab.fr http://www.logilab.org signature.asc Description: Digital signature
Bug#338948: installation reports: powerpc netinst image is 235M ?
On Mon, Nov 14, 2005 at 11:16:15AM +1100, David Creelman wrote: > Package: installation-reports > > Debian-installer-version: 13/11/2005 > http://cdimage.debian.org/pub/cdimage-testing/etch_d-i/powerpc/beta1/debian-testing-powerpc-netinst.iso > uname -a: Would not boot > Date: 14/11/2005 > Method: CD > > Machine: iMac > Processor: PowerPC 2.4 Not sure about this one, could you tell us exactly what iMac model you have ? Like said, there are 3 of them, the originl CRT screen in various colors, the sunflower ones with the TFT screen on an articulated arm, and the new G5 ones with everything inside the screen iteslf. > Memory: ?? > Root Device: IDE > Root Size/partition table: Would not boot > Output of lspci and lspci -n: > > Base System Installation Checklist: > [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it > > Initial boot worked:[E ] > Configure network HW: [ ] > Config network: [ ] > Detect CD: [ ] > Load installer modules: [ ] > Detect hard drives: [ ] > Partition hard drives: [ ] > Create file systems:[ ] > Mount partitions: [ ] > Install base system:[ ] > Install boot loader:[ ] > Reboot: [ ] > > Comments/Problems: > Put CD into iMac. > iMac made CD seeking noises, but would not boot. > Download page says netinst image is ~100M, but downloaded iso is 235M ? it is 100MB on x86, but powerpc binaries are bigger, and we carry more kernel flavours (powerpc 32bit, powerpc64 64bit, apus, ...). Friendly, Sven Luther -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338982: mnemo depends on apache-common
Package: mnemo Version: 1.1-2.1 Severity: important mnemo depends on apache-common, but apache2 users need to depend it on apache2-common. -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.14 Locale: LANG=en_US, LC_CTYPE=hu_HU (charmap=ISO-8859-2) Versions of packages mnemo depends on: ii apache-common 1.3.33-6sarge1 support files for all Apache webse ii horde22.2.8-1horde web application suite ii php4-pgsql3:4.3.10-4 PostgreSQL module for php4 ii wwwconfig-common 0.0.43 Debian web auto configuration -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338983: horde2: New upstream version with security fix
Package: horde2 Version: 2.2.8-1 Severity: grave Tags: security Justification: user security hole New upstream version v2.2.9 available to fix potential XSS vulnerability due to not properly escaped error messages. -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.14 Locale: LANG=en_US, LC_CTYPE=hu_HU (charmap=ISO-8859-2) Versions of packages horde2 depends on: ii apache2 2.0.54-5next generation, scalable, extenda ii apache2-mpm-prefork [httpd] 2.0.54-5traditional model for Apache2 ii binutils 2.15-6 The GNU assembler, linker and bina ii debconf 1.4.30.13 Debian configuration management sy ii gettext 0.14.4-2GNU Internationalization utilities ii logrotate3.7-5 Log rotation utility ii make 3.80-9 The GNU version of the "make" util ii perl 5.8.4-8 Larry Wall's Practical Extraction ii php4 4:4.3.10-16 server-side, HTML-embedded scripti ii php4-cgi 4:4.3.10-16 server-side, HTML-embedded scripti ii php4-pear4:4.3.10-16 PEAR - PHP Extension and Applicati ii php4-pear-log1.6.0-1.1 Log module for PEAR ii wwwconfig-common 0.0.43 Debian web auto configuration -- debconf information excluded -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338984: incompatability of libax25 and kernel-2.4 and fbb program
Package: libax25 Version: 0.0.11-3 This lib combined with kernel-2.4 and fbb causes my pc to crash, in such way that it is inpossible to recover the correct error. But during the start of fbb there is a small hint of incompatability of the lib and/or kernel with fbb. So libax25 is still compiled with kernel-2.2 or fbb is only compiled for kernel-2.2 and the old libax25 Greetings Arjan ps this mail will also be sent for the fbb program
Bug#338985: incompatability of libax25 and kernel-2.4 and fbb program
Package: fbb Version: 7.04j-5 This lib combined with kernel-2.4 and fbb causes my pc to crash, in such way that it is inpossible to recover the correct error. But during the start of fbb there is a small hint of incompatability of the lib and/or kernel with fbb. So libax25 is still compiled with kernel-2.2 or fbb is only compiled for kernel-2.2 and the old libax25 Greetings Arjan ps this mail was also sent for the libax25
Bug#338986: tetex-bin: updmap-sys doesn't work when invoked as mktexfmt
Package: tetex-bin Version: 3.0-10.0.sarge1 Severity: important >From a mail on debian-tetex-maint: > mfai1:/home/matthias/tmp# latex tests.tex > This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) > kpathsea: Running mktexfmt latex.fmt > > Warning: fmtutil is being run as root; fmtutil-sys should probably be > used instead. If this is done by a Debian package upon installation, > upgrade, or removal, please file a bug against that package. > > fmtutil-sys: fmtutil-sys: unknown option `latex.fmt'. Try fmtutil-sys --help > for help. -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.10 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages tetex-bin depends on: ii debconf [debconf-2 1.4.30.13 Debian configuration management sy ii debianutils2.8.4 Miscellaneous utilities specific t ii dpkg 1.10.28 Package maintenance system for Deb ii ed 0.2-20The classic unix line editor ii libc6 2.3.2.ds1-22 GNU C Library: Shared libraries an ii libgcc11:3.4.3-13GCC support library ii libice64.3.0.dfsg.1-14sarge1 Inter-Client Exchange library ii libkpathsea4 3.0-10.0.sarge1 path search library for teTeX (run ii libpaper1 1.1.14-3 Library for handling paper charact ii libpng12-0 1.2.8rel-1PNG library - runtime ii libsm6 4.3.0.dfsg.1-14sarge1 X Window System Session Management ii libstdc++5 1:3.3.5-13The GNU Standard C++ Library v3 ii libt1-55.0.2-3 Type 1 font rasterizer library - r ii libx11-6 4.3.0.dfsg.1-14sarge1 X Window System protocol client li ii libxaw74.3.0.dfsg.1-14sarge1 X Athena widget set library ii libxext6 4.3.0.dfsg.1-14sarge1 X Window System miscellaneous exte ii libxmu64.3.0.dfsg.1-14sarge1 X Window System miscellaneous util ii libxpm44.3.0.dfsg.1-14sarge1 X pixmap library ii libxt6 4.3.0.dfsg.1-14sarge1 X Toolkit Intrinsics ii mime-support 3.28-1MIME files 'mime.types' & 'mailcap ii perl 5.8.4-8 Larry Wall's Practical Extraction ii sed4.1.2-8 The GNU sed stream editor ii tetex-base 3.0-10Basic library files of teTeX ii ucf1.17 Update Configuration File: preserv ii xlibs 4.3.0.dfsg.1-14sarge1 X Keyboard Extension (XKB) configu ii zlib1g 1:1.2.2-4.sarge.2 compression library - runtime -- debconf information: tetex-bin/upd_map: true * tetex-bin/cnf_name: tetex-bin/fmtutil: true tetex-bin/fmtutil-failed: tetex-bin/updmap-failed: tetex-bin/hyphen: french[=patois], ngerman[=naustrian-neue_Rechtschreibung] tetex-bin/oldcfg: true tetex-bin/use_debconf: false -- Frank Küster Inst. f. Biochemie der Univ. Zürich Debian Developer
Bug#274283: addition to apt-get man page
I agree with the submitter of #274283 that the apt-get manpage could be made more clear. Jeremy, Do you have a suggestion of what it should say instead? Thanks, -- Matt Taggart [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#317188: Manpage formatting error for apt_preferences(5)
I can't repeat the apt_preferences manpage error reported in #317188 using version 0.6.42.2 of apt on my system. Philipp, Can you try updating apt and see if the problem still exists for you? Thanks, -- Matt Taggart [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338888: [cl-debian] Bug#338888: cl-screen-sbcl: FTBFS: texi2pdf not found
tags 33 pending thanks A fixed version is in my repository at http://cl-debian.alioth.debian.org/repository/rvb/cl-screen-sbcl/ Can you please sponsor an update, Peter? Thanks, René signature.asc Description: Digital signature
Bug#334613: tetex-bin: same problem still exists
Kenward Vaughan <[EMAIL PROTECTED]> wrote: > On Sun, Nov 13, 2005 at 01:20:28PM +0100, Frank Küster wrote: >> >> It looks suspiciously as if you have > ??? I'm not investigating your behavior here, but a bug, and if I have suspicions, it's against some "things", never a user. I didn't mean to imply any criticism, but I find that I'm sometimes poor in expressing what I think in english, especially where technical and non-technical issues mix. Sorry if I upset you. > All I can say is what I've already said. I have no memory of ever > touching these files. The only time I _might_ have that I can think of > would have been with the addition of a LaTeX package from CTAN into my > local area, which I haven't done in a long time. > > I have been using Sid since I can remember (i.e. years). I know > NOTHING about the workings of (La)TeX outside of my use of it with LyX, > which I use to do all of my writing for work. The file more or less is > gibberish to me, which is why I stated that nothing was recognizable. > > I don't use experimental, and wouldn't have had any reason to try > upgrading when I wouldn't have known a reason to do so. Neither do I > understand why this problem hit me now, as I just finished updating my > system about 3 weeks ago, with no problems. I update with about that > frequency. I'm sorry, but I'm out of ideas. I trust you when you say that you didn't do these things, but I have no idea either how the old file could have gotten how it is. I have never heard of any buggy package that would do such edits. Well, there is one thing that we have learned from this report: We must put some code into the postinst script that checks for essential settings, like the fontpath thing, and either fix it or fail with a *good* error message. This is bug #338585, which I'm going to address soon. Regards, Frank -- Frank Küster Inst. f. Biochemie der Univ. Zürich Debian Developer
Bug#338689: tex-common tells me /etc/texmf/updmap.d/00updmap.cfg changed
Frank Küster <[EMAIL PROTECTED]> wrote: > Junichi Uekawa <[EMAIL PROTECTED]> wrote: > >> Hi, >> >>> > Package: tex-common >>> > Version: 0.10 >>> > >>> > tex-common seems to ask for verification on >>> > file change. >>> > I suppose it's meant to be fixed in 0.10, but it's apparently not. >>> >>> It seems as if you (or some script?) has changed the setting for >>> dvipsDownloadBase14; this setting is also false in sarge and etch, but >>> it doesn't show up in the diff. >> >> This has happened on more than one machine, and I don't remember >> changing that configuration. > > This is strange; unless I find out that the woody and sarge files differ > only in that one line, I must suspect a script from some other package. woody didn't have the file at all - so there's no explanation left. Let's keep this bug open for future reference, maybe it helps us finding the reason in the future. But I don't think we should put much effort into it now. Regards, Frank -- Frank Küster Inst. f. Biochemie der Univ. Zürich Debian Developer
Bug#329228: tetex-extra: would you consider including the "clrscode" algorithm typesetting package?
Sean Finney <[EMAIL PROTECTED]> wrote: > hi hilmar, > > On Sat, Nov 12, 2005 at 07:13:08PM +0100, Hilmar Preusse wrote: >> Sorry for late response! > > no worries. this isn't exactly an earth shattering priority :) > >> For third party software we have a policy. If anybody is willing to >> maintain the package as a separate one, please open an RfP or ITP bug >> against wnpp. > > it seems kind of silly to have a single .sty (and accompanying .pdf > documentation, maybe) file as an entirely seperate package. We can also forward the request for inclusion to Thomas Esser (the te in teTeX), but even if he accepts this will only have an effect in the next upstream release. And although it has been speculated that there should be a point release rather soon (or should have been in early fall), I get the feeling from some things Thomas recently said that he won't have time for a point release very soon. Regards, Frank -- Frank Küster Inst. f. Biochemie der Univ. Zürich Debian Developer
Bug#338995: help2man: [INTL:fr] French program translation update
On Mon, Nov 14, 2005 at 12:21:10PM +0100, Thomas Huriaux wrote: >Please find attached the French program translation update by Denis >Barbier. This file should be put as fr.po in your po directory. Applied, thanks. --bod -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#332722: you are not right
Package: nagios-common Version: 2:1.3-cvs.20050402-7 Followup-For: Bug #332722 I disagree with you. --with-file-perfdata is a superior option. :) Of cause, anyone need send perfdata to another program, to get rrd graphs. There are two way to make this. Use service_perfdata_command. Or write perfdata to named pipe and make parser read from it. The second prefered, IMHO, because launch program, especially perl or awk script give heavy load. There is not official perf parser. Some parsers need to be launched other can read from named pipe. Nagios 2.x support write to file and command. May be better instead of deside what's better, file or command, make package for nagious 2.x? :) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338990: dh-make: -Wl,-z,defs belongs into LDFLAGS not CFLAGS
Package: dh-make Version: 0.40 Severity: minor Adding -Wl,-z,defs to CFLAGS causes gcc (at least 3.3.5) to produce warnings of the form gcc: -z: linker input file unused because linking not done gcc: defs: linker input file unused because linking not done The following patch adds it to LDFLAGS instead, so that it is only used when the linker is called. The patch also moves CFLAGS and LDFLAGS to the arguments of the ./configure call making it more readable. (and it is the place configure --help suggest for those) diff -u -r dh-make-0.40.orig/dh_make dh-make-0.40/dh_make --- dh-make-0.40.orig/dh_make 2005-08-26 03:54:42.0 +0200 +++ dh-make-0.40/dh_make2005-11-14 11:09:17.0 +0100 @@ -462,7 +462,7 @@ $CONFIGURE="config.status: configure\n". "\tdh_testdir\n". "\t# Add here commands to configure the package.\n". -"\t".'CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info'."\n"; +"\t".'./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"'."\n"; $DPKG_ARCH="# These are used for cross-compiling and for saving the configure script\n". "# from having to guess our platform (since we know it already)\n". 'DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)'."\n". Hochachtungsvoll, Bernhard R. Link diff -u -r dh-make-0.40.orig/dh_make dh-make-0.40/dh_make --- dh-make-0.40.orig/dh_make 2005-08-26 03:54:42.0 +0200 +++ dh-make-0.40/dh_make2005-11-14 11:09:17.0 +0100 @@ -462,7 +462,7 @@ $CONFIGURE="config.status: configure\n". "\tdh_testdir\n". "\t# Add here commands to configure the package.\n". -"\t".'CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info'."\n"; +"\t".'./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"'."\n"; $DPKG_ARCH="# These are used for cross-compiling and for saving the configure script\n". "# from having to guess our platform (since we know it already)\n". 'DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)'."\n".
Bug#338983: horde2: New upstream version with security fix
severity 338983 important thanks Hello I assume that this applies to the sarge version as well. I'm not sure this should be considered grave as this only can occur when a fatal error occur. This is the actual fix: @@ -234,7 +234,7 @@ $errortext = _("A fatal error has occurred:") . "\n"; if (is_object($error) && method_exists($error, 'getMessage')) { -$errortext .= $error->getMessage() . "\n"; +$errortext .= htmlspecialchars($error->getMessage()) . "\n"; } $errortext .= sprintf(_("[line %s of %s]"), $line, $file); I'm not even sure that this is possible to trigger without being logged in. But still even logged in users should not be allowed to do such attacks. And even one more thing is that the error message is not from the user, or am I wrong here? So really I'm not sure that this is even possible to trigger. As the release note stated this is a potential XSS vulnerability. On Mon, Nov 14, 2005 at 09:45:39AM +0100, Soós Péter wrote: > Package: horde2 > Version: 2.2.8-1 > Severity: grave > Tags: security > Justification: user security hole > > New upstream version v2.2.9 available to fix potential XSS vulnerability > due to not properly escaped error messages. Is there a CAN number for this? I could not find that in the release notes. Thanks anyway for reporting. It is valuable to know that new versions come out with important fixes. For me and the security team: http://ftp.horde.org/pub/horde/patches/patch-horde-2.2.8-2.2.9.gz http://lists.horde.org/archives/announce/2005/000231.html Regards, // Ola > -- System Information: > Debian Release: 3.1 > Architecture: i386 (i686) > Kernel: Linux 2.6.14 > Locale: LANG=en_US, LC_CTYPE=hu_HU (charmap=ISO-8859-2) > > Versions of packages horde2 depends on: > ii apache2 2.0.54-5next generation, scalable, > extenda > ii apache2-mpm-prefork [httpd] 2.0.54-5traditional model for Apache2 > ii binutils 2.15-6 The GNU assembler, linker and > bina > ii debconf 1.4.30.13 Debian configuration management > sy > ii gettext 0.14.4-2GNU Internationalization > utilities > ii logrotate3.7-5 Log rotation utility > ii make 3.80-9 The GNU version of the "make" > util > ii perl 5.8.4-8 Larry Wall's Practical > Extraction > ii php4 4:4.3.10-16 server-side, HTML-embedded > scripti > ii php4-cgi 4:4.3.10-16 server-side, HTML-embedded > scripti > ii php4-pear4:4.3.10-16 PEAR - PHP Extension and > Applicati > ii php4-pear-log1.6.0-1.1 Log module for PEAR > ii wwwconfig-common 0.0.43 Debian web auto configuration > > -- debconf information excluded > > -- - 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#337159: elinks: Does not recover from CTRL-Z
Dear diary, on Mon, Nov 14, 2005 at 12:51:42PM CET, I got a letter where Qingning Huo <[EMAIL PROTECTED]> said that... > What you press ctrl-z to stop it, elinks catches the SIGTSTP signal, > before it sends itself a SIGSTOP signal, it arranges a child process to > send itself a SIGCONT after 1 second. Aha! Yes, the reason is that if you start multiple elinks instances, only the first one actually does stuff, and the other instances merely connect to it. So if you would suspend the first instance, all the other ones would hang up. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338927: Bug #338927: CURL does NOT continue a file transfer
Daniel Stenberg wrote: Hi I believe you, but I really need trace logs as done with -v or --trace-ascii to properly diagnose what happens in your end. Maybe u did NOT carefully red :) U can download LOG here: http://tmp.lentus.sk/logFTPappend ** Hello, no problem I can reproduce it! 1. I download 2MB portion, than CTRL+C 2. curl -C 20 ftp://debian.sh.cvut.cz/DATA/debian-cd/3.1_r0a/i386/iso-dvd/debian-31r0a-i386-binary-2.iso -O --trace-ascii logFTPappend 3. :) 3B. U can download -rw-r--r-- 1 downl downl 519K 2005-11-14 02:17 logFTPappend here: http://tmp.lentus.sk/logFTPappend 4. wget -cmv ftp://debian.sh.cvut.cz/DATA/debian-cd/3.1_r0a/i386/iso-dvd/debian-31r0a-i386-binary-2.iso works OK (it appends/continue/resumes data downloading) Maybe some misconfiguration in (transparent) proxy (SQUID) & firewall can do this??? But if so, why wget is working OK? curl 7.13.2 (i386-pc-linux-gnu) libcurl/7.13.2 OpenSSL/0.9.7e zlib/1.2.2 libidn/0.5.13 Protocols: ftp gopher telnet dict ldap http file https ftps Features: IDN IPv6 Largefile NTLM SSL libz Debian SARGE. -- Jan Kunder jan.kunderSPAgmail.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338999: subversion: Subversion book is missing in 1.2.3dfsg1-2 on amd64
Package: subversion Version: 1.2.3dfsg1-2 Severity: normal Subversion book is missing in the aforementioned package, while packages.debian.org mentions it as packaged. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.11-9-amd64-k8 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages subversion depends on: ii db4.2-util 4.2.52-18 Berkeley v4.2 Database Utilities ii libapr02.0.54-5 the Apache Portable Runtime ii libc6 2.3.5-6 GNU C Library: Shared libraries an ii libdb4.2 4.2.52-18 Berkeley v4.2 Database Libraries [ ii libexpat1 1.95.8-3 XML parsing C library - runtime li ii libldap2 2.1.30-12 OpenLDAP libraries ii libneon24 0.24.7.dfsg-2 An HTTP and WebDAV client library ii libssl0.9.80.9.8a-3 SSL shared libraries ii libsvn01.2.3dfsg1-2 shared libraries used by Subversio ii libxml22.6.22-1 GNOME XML library ii patch 2.5.9-2 Apply a diff file to an original ii zlib1g 1:1.2.3-4 compression library - runtime subversion recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338991: lexgrog: Russian translation "NAME" section
Package: man-db Version: 2.4.2-21 Severity: important Hello. lexgrog ru/man5/adduser.conf.5 ru/man5/adduser.conf.5: parse failed In the adduser.conf.5 the section "NAME" has translated in Russian. This is affected to the linda checker (lind use the lexgrog). Attached patch added the Russian translation of the word "NAME" in the lexgrog.l . -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.11.7 Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to ru_RU.UTF-8) Versions of packages man-db depends on: ii bsdmainutils6.0.17 collection of more utilities from ii debconf 1.4.36 Debian configuration management sy ii dpkg1.10.27 Package maintenance system for Deb ii groff-base 1.18.1.1-7 GNU troff text-formatting system ( ii libc6 2.3.2.ds1-21 GNU C Library: Shared libraries an ii libgdbm31.8.3-2 GNU dbm database routines (runtime -- debconf information excluded --- man-db-2.4.2.orig/src/lexgrog.l 2005-11-14 12:13:41.0 +0300 +++ man-db-2.4.2/src/lexgrog.l 2005-11-14 13:10:48.0 +0300 @@ -159,8 +159,10 @@ latin_name N[Oo][Mm][Ee][Nn] nl_name N[Aa][Aa][Mm] pl_name N[Aa][Zz][Ww][Aa] +/* UTF8 Russian */ +ru_name \320\235(\320\220|\320\260)(\320\227|\320\267)(\320\222|\320\262)(\320\220|\320\260)(\320\235|\320\275)(\320\230|\320\270)(\320\225|\320\265) sv_name N[Aa][Mm][Nn] -name ({cs_name}|{de_name}|{en_name}|{es_name}|{fi_name}|{fr_name}|{hu_name}|{it_name}|{ja_name}|{latin_name}|{nl_name}|{pl_name}|{sv_name}) +name ({cs_name}|{de_name}|{en_name}|{es_name}|{fi_name}|{fr_name}|{hu_name}|{it_name}|{ja_name}|{latin_name}|{nl_name}|{pl_name}|{ru_name}|{sv_name}) name_sec {dbl_quote}?{style_change}?{name}{style_change}?({blank}*{dbl_quote})? /* eptgrv : eqn, pic, tbl, grap, refer, vgrind */
Bug#318248: mozilla-firefox: another page where firefox segfaults on print preview or print
Package: mozilla-firefox Version: 1.0.7-1 Followup-For: Bug #318248 This page segfaults on print preview or print: http://news.com.com/2102-7355_3-5926657.html?tag=st.util.print The current Mozilla-browser in Debian print previews and prints this page fine. -- 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.14-1-686 Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Versions of packages mozilla-firefox depends on: ii debianutils 2.15.1 Miscellaneous utilities specific t ii fontconfig 2.3.2-1.1 generic font configuration library ii libatk1.0-0 1.10.3-1The ATK accessibility toolkit ii libc62.3.5-8 GNU C Library: Shared libraries an ii libfontconfig1 2.3.2-1.1 generic font configuration library ii libfreetype6 2.1.10-1FreeType 2 font engine, shared lib ii libgcc1 1:4.0.2-3 GCC support library ii libglib2.0-0 2.8.3-1 The GLib library of C routines ii libgtk2.0-0 2.6.10-1The GTK+ graphical user interface ii libidl0 0.8.5-1 library for parsing CORBA IDL file ii libjpeg626b-10 The Independent JPEG Group's JPEG ii libkrb53 1.3.6-5 MIT Kerberos runtime libraries ii libpango1.0-01.8.2-3 Layout and rendering of internatio ii libpng12-0 1.2.8rel-5 PNG library - runtime ii libstdc++6 4.0.2-3 The GNU Standard C++ Library v3 ii libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li ii libxext6 6.8.2.dfsg.1-10 X Window System miscellaneous exte ii libxft2 2.1.7-1 FreeType-based font drawing librar ii libxinerama1 6.8.2.dfsg.1-10 X Window System multi-head display ii libxp6 6.8.2.dfsg.1-10 X Window System printing extension ii libxt6 6.8.2.dfsg.1-10 X Toolkit Intrinsics ii psmisc 21.8-1 Utilities that use the proc filesy ii xlibs6.8.2.dfsg.1-10 X Window System client libraries m ii zlib1g 1:1.2.3-6 compression library - runtime mozilla-firefox recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337294: dash: Echo'ing \c breaks subsequent calls to echo
On Fri, Nov 04, 2005 at 10:51:41AM +, Gerrit Pape wrote: > > Hi Herbert, please see http://bugs.debian.org/337294, I can confirm the > problem and the fix. > > Thanks for the report, Mike. Regards, Gerrit. Thanks guys. I ended up fixing it by getting conv_escape_str to return directly whether it detected \c. This makes the code slightly smaller. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-11-14 Herbert Xu <[EMAIL PROTECTED]> + + * Fix \c spillage across echo commands. + 2005-11-13 Herbert Xu <[EMAIL PROTECTED]> * Remove unnecessary truncation in _STPUTC. diff --git a/src/bltin/printf.c b/src/bltin/printf.c --- a/src/bltin/printf.c +++ b/src/bltin/printf.c @@ -40,7 +40,7 @@ #include #include -static char*conv_escape_str(char *); +static int conv_escape_str(char *); static char*conv_escape(char *, int *); static int getchr(void); static double getdouble(void); @@ -155,11 +155,12 @@ pc: switch (ch) { case 'b': { - char *p = conv_escape_str(getstr()); + int done = conv_escape_str(getstr()); + char *p = stackblock(); *fmt = 's'; PF(start, p); /* escape if a \c was encountered */ - if (rval & 0x100) + if (done) goto out; *fmt = 'b'; break; @@ -208,7 +209,7 @@ pc: } while (gargv != argv && *gargv); out: - return (rval & ~0x100); + return rval; err: return 1; } @@ -218,7 +219,7 @@ err: * Print SysV echo(1) style escape string * Halts processing string if a \c escape is encountered. */ -static char * +static int conv_escape_str(char *str) { int ch; @@ -237,8 +238,7 @@ conv_escape_str(char *str) ch = *str++; if (ch == 'c') { /* \c as in SYSV echo - abort all processing */ - rval |= 0x100; - ch = 0; + ch = 0x100; continue; } @@ -265,9 +265,9 @@ conv_escape_str(char *str) /* Finally test for sequences valid in the format string */ str = conv_escape(str - 1, &c); ch = c; - } while (STPUTC(ch, cp), ch); + } while (STPUTC(ch, cp), (char)ch); - return stackblock(); + return ch; } /* @@ -445,8 +445,9 @@ echocmd(int argc, char **argv) do { char c; - outstr(conv_escape_str(*argv), outs); - if (rval & 0x100) + nonl += conv_escape_str(*argv); + outstr(stackblock(), outs); + if (nonl > 0) break; c = ' ';
Bug#338987: Wrong reference to fil in node program
Package: node Version: 0.3.2-4 [EMAIL PROTECTED] 10:27:35> mh vhf OSS:PI1OSS /var/ax25/mheard/mheard.dat: No such file or directory Suggestion: The mheard program of ax25-tools puts it's file in var/lib/ax25/mheard/mheard.dat and at this location the node program doesn't read. So my suggestion is put all temporary files in the place where they belong /var/cache/ax25, because it is not a library. Greetings Arjan
Bug#329228: tetex-extra: would you consider including the "clrscode" algorithm typesetting package?
On Nov 14 2005, Frank Küster wrote: > And although it has been speculated that there should be a point > release rather soon (or should have been in early fall) I'd love to have the newer version of algorithms included in a newer tetex release. I would even hurry to polish some points that I think that need further/better work. And that includes, of course, the manual. Anyway, I really hope that teTeX 3.0 gets in shape soon for entering testing (that's what I use). :-) Regards, Rogério Brito. -- Rogério Brito : [EMAIL PROTECTED] : http://www.ime.usp.br/~rbrito Homepage of the algorithms package : http://algorithms.berlios.de Homepage on freshmeat: http://freshmeat.net/projects/algorithms/
Bug#338992: shorewall: Upstream version available
Package: shorewall Version: 2.4.5-1 Severity: wishlist Current stable version of shorewall is 3.0.0. It contains numerous enhancements http://shorewall.net/pub/shorewall/3.0/shorewall-3.0.0/releasenotes.txt It would be nice to have them in Debian included. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.13-mm3 Locale: LANG=en_US, LC_CTYPE=pl_PL (charmap=ISO-8859-2) Versions of packages shorewall depends on: ii debconf [debconf-2.0] 1.4.58 Debian configuration management sy ii iproute 20041019-3 Professional tools to control the ii iptables 1.3.3-2Linux kernel 2.4+ iptables adminis Versions of packages shorewall recommends: ii wget 1.10.2-1 retrieves files from the web -- debconf information: shorewall/upgrade_20_22: shorewall/upgrade_14_20: shorewall/upgrade_to_14: shorewall/warnrfc1918: shorewall/dont_restart: * shorewall/major_release: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338993: ia32-libs: conflicts with libg2c0-dev
Package: ia32-libs Version: 1.4 Severity: grave Justification: renders package unusable Hi, Installation of the packages fails due a conflics with libg2c0-dev: (Reading database ... 261195 files and directories currently installed.) Unpacking lib32z1 (from .../lib32z1_1%3a1.2.3-6_amd64.deb) ... dpkg: error processing /var/cache/apt/archives/lib32z1_1%3a1.2.3-6_amd64.deb (--unpack): trying to overwrite `/emul/ia32-linux/usr/lib/libz.so.1', which is also in package ia32-libs Preparing to replace ia32-libs 1.4 (using .../ia32-libs_1.5_amd64.deb) ... Unpacking replacement ia32-libs ... dpkg: error processing /var/cache/apt/archives/ia32-libs_1.5_amd64.deb (--unpack): trying to overwrite `/usr/lib32', which is also in package libg2c0-dev Errors were encountered while processing: /var/cache/apt/archives/lib32z1_1%3a1.2.3-6_amd64.deb /var/cache/apt/archives/ia32-libs_1.5_amd64.deb E: Sub-process /usr/bin/dpkg returned an error code (1) A package failed to install. Trying to recover: Regards Jean-Luc -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (900, 'unstable') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.14-k8-4 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages ia32-libs depends on: ii lib32gcc1 1:4.0.2-3 GCC support library (32 bit Versio ii lsb-release 3.0-11 Linux Standard Base version report ia32-libs recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338973: unregister_netdevice: waiting for vpn0 to become free. Usage count = 23
reassign 323860 linux-image-2.6-686-smp reassign 338973 linux-image-2.6-686-smp merge 338973 323860 stop On Mon, Nov 14, 2005 at 06:11:13AM +0100, Marc Lehmann wrote: > Package: linux-image-2.6.14-2 > Version: 2.6.14-2 > Severity: important > > > The same bug as reported against earlier debian kernels (#323860) still > persists with 2.6.14, and does not happen with my own compiled kernels. please reassign in those cases. :) > This happens whenever I want to upgrade gnu virtual private ethernet and > kill it (which should free the tun interface it uses). Following ifconfig > -a or other interface-related calls hang till the machine is rebooted hard > (shutdown hangs for obvious reasons). your .config has several ethernet card enabled which are you using, please post the running lsmod? also could you try to boot the debian kernel with noapic in boot cmdline? -- maks -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338994: drbd0.7-module-source: New upstream version available (0.7.14)
Package: drbd0.7-module-source Version: 0.7.10-3 Severity: normal Hi, A new upstream version (0.7.14) is available. http://www.linbit.com/support/ Thanks, Yann Forget -- Network & System Engineer Goelaan SA, Switzerland Tel. +41-22-960 98 20 Fax +41-22-960 98 21 http://www.goelaan.ch -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.14-drdb-1 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Versions of packages drbd0.7-module-source depends on: ii debhelper 4.2.32 helper programs for debian/rules ii module-assistant 0.9sarge1 tool to make module package creati -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339000: bashism in /usr/bin/nicec
Package: nice Version: 0.9.10-1 Severity: serious Justification: Policy 10.4 POSIX specifies that trap uses signal names without the SIG prefix. bash accepts both SIGHUP and HUP but nicec claims to be a /bin/sh script so it should use trap "" HUP -- System Information: Shell: /bin/sh linked to /bin/dash -- Michał Politowski Talking has been known to lead to communication if practiced carelessly. signature.asc Description: Digital signature
Bug#318248: mozilla-firefox: saved the page and loaded it, then print preview worked
Package: mozilla-firefox Version: 1.0.7-1 Followup-For: Bug #318248 Saving the web page http://news.com.com/2102-7355_3-5926657.html?tag=st.util.print as html only then loading the saved page and doing a print preview worked fine. -- 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.14-1-686 Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Versions of packages mozilla-firefox depends on: ii debianutils 2.15.1 Miscellaneous utilities specific t ii fontconfig 2.3.2-1.1 generic font configuration library ii libatk1.0-0 1.10.3-1The ATK accessibility toolkit ii libc62.3.5-8 GNU C Library: Shared libraries an ii libfontconfig1 2.3.2-1.1 generic font configuration library ii libfreetype6 2.1.10-1FreeType 2 font engine, shared lib ii libgcc1 1:4.0.2-3 GCC support library ii libglib2.0-0 2.8.3-1 The GLib library of C routines ii libgtk2.0-0 2.6.10-1The GTK+ graphical user interface ii libidl0 0.8.5-1 library for parsing CORBA IDL file ii libjpeg626b-10 The Independent JPEG Group's JPEG ii libkrb53 1.3.6-5 MIT Kerberos runtime libraries ii libpango1.0-01.8.2-3 Layout and rendering of internatio ii libpng12-0 1.2.8rel-5 PNG library - runtime ii libstdc++6 4.0.2-3 The GNU Standard C++ Library v3 ii libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li ii libxext6 6.8.2.dfsg.1-10 X Window System miscellaneous exte ii libxft2 2.1.7-1 FreeType-based font drawing librar ii libxinerama1 6.8.2.dfsg.1-10 X Window System multi-head display ii libxp6 6.8.2.dfsg.1-10 X Window System printing extension ii libxt6 6.8.2.dfsg.1-10 X Toolkit Intrinsics ii psmisc 21.8-1 Utilities that use the proc filesy ii xlibs6.8.2.dfsg.1-10 X Window System client libraries m ii zlib1g 1:1.2.3-6 compression library - runtime mozilla-firefox recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#336470: it works for me
This bug is strange, because I think it works for me.. (sablevm 1.11.3) (contrary to kaffe, which wasn't deterministic: sometimes it works, sometimes not) -- Julien
Bug#332722: [Pkg-nagios-devel] Bug#332722: you are not right
On Mon, Nov 14, 2005 at 01:30:35PM +0300, Olleg Samoylov wrote: > Of cause, anyone need send perfdata to another program, to get rrd graphs. > There are two way to make this. Use service_perfdata_command. Or write > perfdata to named pipe and make parser read from it. > The second prefered, IMHO, because launch program, especially perl or awk > script > give heavy load. > There is not official perf parser. Some parsers need to be launched other > can read from named pipe. while i think your suggestion is more efficient (and lower-load in some situations), i think the default-perfdata approach is the most generally compatible. if you have a parser that can read from a named pipe, you could always make your service-perfdata command "cat >> pipe" which would minimize the load (not as good as it could be, but really not that bad either). i guess you might need a little more than that to make sure there aren't any race conditions, but we're still talking about a relatively small overhead for most installations. however, if we were to go the other way with file-perfdata, there would be no way to execute the external programs, so i chose with features and compatibility over pure efficiency. > Nagios 2.x support write to file and command. May be better instead of > deside what's better, file or command, make package for nagious 2.x? :) this is of course a good point... sean -- signature.asc Description: Digital signature
Bug#337881: udev: Still seeing post-inst errors with 0.074-2 on ppc
Package: udev Version: 0.074-2 Followup-For: Bug #337881 On installing (updating from 0.071-1), I get the following - my workaround currently is to downgrade to the old package: Preparing to replace udev 0.074-2 (using .../udev_0.074-2_powerpc.deb) ... Unpacking replacement udev ... Setting up udev (0.074-2) ... dpkg: error processing udev (--install): subprocess post-installation script returned error exit status 3 Errors were encountered while processing: udev - -- Package-specific info: -- /etc/udev/rules.d/: /etc/udev/rules.d/: total 0 lrwxrwxrwx 1 root root 20 2005-10-03 13:40 020_permissions.rules -> ../permissions.rules lrwxrwxrwx 1 root root 12 2005-11-09 07:47 050_hal-plugdev.rules -> ../hal.rules lrwxrwxrwx 1 root root 19 2005-10-03 13:40 cd-aliases.rules -> ../cd-aliases.rules lrwxrwxrwx 1 root root 13 2005-10-03 13:40 udev.rules -> ../udev.rules lrwxrwxrwx 1 root root 19 2005-10-03 13:40 z20_persistent.rules -> ../persistent.rules lrwxrwxrwx 1 root root 12 2005-10-03 13:40 z50_run.rules -> ../run.rules lrwxrwxrwx 1 root root 16 2005-11-09 07:25 z55_hotplug.rules -> ../hotplug.rules lrwxrwxrwx 1 root root 15 2005-11-09 08:05 z60_hdparm.rules -> ../hdparm.rules lrwxrwxrwx 1 root root 17 2005-10-03 13:40 z70_hotplugd.rules -> ../hotplugd.rules -- /sys/: /sys/block/hda/dev /sys/block/hda/hda1/dev /sys/block/hda/hda2/dev /sys/block/hda/hda3/dev /sys/block/hda/hda4/dev /sys/block/hdb/dev /sys/class/adb/adb/dev /sys/class/drm/card0/dev /sys/class/graphics/fb0/dev /sys/class/input/event0/dev /sys/class/input/event1/dev /sys/class/input/event2/dev /sys/class/input/event3/dev /sys/class/input/event4/dev /sys/class/input/mice/dev /sys/class/input/mouse0/dev /sys/class/input/mouse1/dev /sys/class/misc/agpgart/dev /sys/class/misc/apm_bios/dev /sys/class/misc/nvram/dev /sys/class/misc/pmu/dev /sys/class/misc/rtc/dev /sys/class/sound/audio/dev /sys/class/sound/controlC0/dev /sys/class/sound/dsp/dev /sys/class/sound/mixer/dev /sys/class/sound/pcmC0D0p/dev /sys/class/sound/timer/dev /sys/class/usb_device/usbdev1.1/dev /sys/class/usb_device/usbdev2.1/dev -- Kernel configuration: isapnp_init not present. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: powerpc (ppc) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.14.1 Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1) Versions of packages udev depends on: ii initscripts 2.86.ds1-4 Standard scripts needed for bootin ii libc6 2.3.5-7GNU C Library: Shared libraries an ii libselinux1 1.26-1 SELinux shared libraries ii libsepol1 1.8-1 Security Enhanced Linux policy lib ii lsb-base 3.0-11 Linux Standard Base 3.0 init scrip ii makedev 2.3.1-79 creates device files in /dev ii sed 4.1.4-4The GNU sed stream editor udev recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338053: monodevelop: Also seeing this problem
Package: monodevelop Version: 0.8-1 Followup-For: Bug #338053 I'm also seeing this bug, and also on PowerPC. Mine is a G3 iBook. Happy to test anything or provide any further information. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: powerpc (ppc) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.14.1 Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1) Versions of packages monodevelop depends on: ii gnome-icon-theme 2.10.1-2GNOME Desktop icon theme ii gnome-terminal [x-termin 2.10.0-3The GNOME 2 terminal emulator appl ii libgconf2.0-cil 2.3.92-2CLI binding for GConf 2.0, unstabl ii libgecko2.0-cil 0.11-1 CLI binding for the GtkMozEmbed li ii libglade2.0-cil 2.3.92-2CLI binding for the Glade librarie ii libglib2.0-0 2.8.3-1 The GLib library of C routines ii libglib2.0-cil 2.3.92-2CLI binding for the GLib utility l ii libgnome2.0-cil 2.3.92-2CLI binding for GNOME 2.0, unstabl ii libgtk2.0-0 2.6.10-1The GTK+ graphical user interface ii libgtk2.0-cil2.3.92-2CLI binding for the Gtk+ toolkit 2 ii libgtksourceview1.0-01.4.2-2 shared libraries for the GTK+ synt ii libgtksourceview2.0-cil 0.10-2 CLI binding for the gtksourceview ii mono-classlib-1.01.1.9.2-1 Mono class library (1.0) ii mono-jit 1.1.9.2-1 fast CLI (.NET) JIT compiler for M ii mono-mcs 1.1.9.2-1 Mono C# compiler ii monodoc-base 1.1.9-1 shared MonoDoc binaries ii monodoc-manual 1.1.9-1 compiled XML documentation from th ii pkg-config 0.20-1 manage compile and link flags for ii xterm [x-terminal-emulat 6.8.2.dfsg.1-10 X terminal emulator monodevelop recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338577: automatic build for OO clipart gallery
What do you mean exactly? There is already openclipart-openoffice.org, have you tried it? My bad, I was still using openoffice.org2 packages. After switching to openoffice.org galleries were there. Tommi -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338900: Bump severity, as lots of installations are affected
severity 338900 grave thanks Hi, This one is going to affect a lot of users, so it should probably be fixed in stable as well. Simon signature.asc Description: OpenPGP digital signature
Bug#338046: Debian Bug#338046: whizzytex: einitex unavailable from tetex and no longer functions.
Frank Küster <[EMAIL PROTECTED]> wrote: > Junichi Uekawa <[EMAIL PROTECTED]> wrote: > >> BTW, how would I find out that /var/lib/texmf/web2c/latex.fmt >> is in fact not generated from tex, but pdfetex? > > You can do that by parsing /var/lib/texmf/web2c/fmtutil.cnf (or rather > `kpsewhich --format='web2c files' fmtutil.cnf`) if you need to. I should have made that point clearer: If you are going to create per-user dumps, you should not rely on /var/lib/texmf/web2c/fmtutil.cnf being the right place to get the information. In teTeX 3.0, there's a mechanism for users to create their own fmtutil.cnf and formats, and you should really use that; it can be found with the above kpsewhich command. Regards, frank -- Frank Küster Inst. f. Biochemie der Univ. Zürich Debian Developer
Bug#339001: geximon: BadWindow (invalid Window parameter) error on remote display
Package: geximon Version: 0.7.1-1 Severity: important When geximon is started on a remote display, trying to open a menu (either with the mouse or with the keyboard) leads to the following fatal error: The program 'geximon' received an X Window System error. This probably reflects a bug in the program. The error was 'BadWindow (invalid Window parameter)'. (Details: serial 2580 error_code 3 request_code 38 minor_code 0) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.) (There's no problem on a local display in a VNC session.) -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (900, 'testing'), (900, 'stable'), (200, 'unstable') Architecture: powerpc (ppc) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12-20050829 Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1) Versions of packages geximon depends on: ii exim4-base4.54-1 support files for all exim MTA (v4 ii python2.3.5-3An interactive high-level object-o ii python2.3-gtk22.6.3-2Python bindings for the GTK+ widge Versions of packages geximon recommends: ii sudo 1.6.8p9-3 Provide limited super user privile -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337080: adduser: [INTL:ru] Updated Russian translation po and man files
2005/11/14, Marc Haber <[EMAIL PROTECTED]>: > > Lintian still reports some errors in the man page: > $ lintian adduser_3.77.0_i386.changes > E: adduser_3.77.0_i386.changes: bad-distribution-in-changes-file > UNRELEASED > /tmp/rlyA3VZcIN/source/adduser/debfiles/po > /tmp/rlyA3VZcIN/binary/adduser/unpacked > W: adduser: manpage-has-errors-from-man > usr/share/man/ru/man5/adduser.conf.5.gz /tmp/zman42YYqd:15: name expected > (got a magic token) > W: adduser: manpage-has-errors-from-man > usr/share/man/ru/man5/deluser.conf.5.gz /tmp/zmanVi4xLb:15: name expected > (got a magic token) > W: adduser: manpage-has-errors-from-man usr/share/man/ru/man8/adduser.8.gz > /tmp/zmanzNNi2i:18: name expected (got a magic token) > W: adduser: manpage-has-errors-from-man usr/share/man/ru/man8/deluser.8.gz > /tmp/zmanjZJVIs:18: name expected (got a magic token) > > This can be seen when invoking "env -i LANG=C man -l /path/to/manpage" I think, the UTF-8 man page can not be viewed in the LANG=C (it is 7-bit, right ?). I will try do something. It will be prolonged any time. Updated russian po (not for man pages) attached. Which version of lintian ? [EMAIL PROTECTED]:/host/p3/svn$ lintian -V Lintian v1.23.2 [EMAIL PROTECTED]:/host/p3/svn$ env -i LANG=C lintian -v adduser_3.77.0_i386.changes N: Processing changes file adduser_3.77.0_i386.changes ... E: adduser_3.77.0_i386.changes: bad-distribution-in-changes-file UNRELEASED N: Setting up lab in /tmp/lintian-lab.2085 ... N: Processing 1 packages... N: N: Processing binary package adduser (version 3.77.0) ... N: Removing /tmp/lintian-lab.2085 ... [EMAIL PROTECTED]:/host/p3/svn$ -- Regards, Yuri Kozlov # translation of ru.po to Russian # #Translators, if you are not familiar with the PO format, gettext #documentation is worth reading, especially sections dedicated to #this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' #Some information specific to po-debconf are available at #/usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans# #Developers do not need to manually edit POT or PO files. # Yuri Kozlov <[EMAIL PROTECTED]>, 2004. # Yuri Kozlov <[EMAIL PROTECTED]>, 2004, 2005. # msgid "" msgstr "" "Project-Id-Version: adduser-debconf\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-03-26 14:05+0100\n" "PO-Revision-Date: 2005-11-14 15:06+0300\n" "Last-Translator: Yuri Kozlov <[EMAIL PROTECTED]>\n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" #. Type: boolean #. Description #: ../templates:4 msgid "Do you want system wide readable home directories?" msgstr "ХоÑиÑе ÑделаÑÑ Ð´Ð¾Ð¼Ð°Ñние каÑалоги доÑÑÑпнÑми Ð´Ð»Ñ ÑÑÐµÐ½Ð¸Ñ Ð²Ñем в ÑиÑÑеме?" #. Type: boolean #. Description #: ../templates:4 msgid "" "Normally, home directories can be viewed by all users on the system. If you " "want to increase the security/privacy on your system, you might want your " "home directories only readable by the user. If you are unsure, enable system " "wide readable home directories." msgstr "" "ÐбÑÑно, домаÑние каÑалоги могÑÑ Ð¿ÑоÑмаÑÑиваÑÑÑÑ Ð²Ñеми полÑзоваÑелÑми ÑиÑÑемÑ. " "Ð ÑелÑÑ Ð¿Ð¾Ð²ÑÑÐµÐ½Ð¸Ñ Ð±ÐµÐ·Ð¾Ð¿Ð°ÑноÑÑи/конÑиденÑиалÑноÑÑи, Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе ÑделаÑÑ " "Ñак, ÑÑÐ¾Ð±Ñ ÑодеÑжимое домаÑÐ½Ð¸Ñ ÐºÐ°Ñалогов бÑло доÑÑÑпно ÑолÑко его владелÑÑÑ. " "ÐÑли не ÑвеÑенÑ, оÑвеÑÑÑе \"да\", Ñогда домаÑние каÑалоги бÑдÑÑ Ð´Ð¾ÑÑÑÐ¿Ð½Ñ Ð´Ð»Ñ " "ÑÑÐµÐ½Ð¸Ñ Ð²Ñем." #. Type: boolean #. Description #: ../templates:4 msgid "" "This will only affect home directories of users added with the adduser " "program later." msgstr "" "ÐÑо коÑнÑÑÑÑ ÑолÑко домаÑÐ½Ð¸Ñ ÐºÐ°Ñалогов новÑÑ Ð¿Ð¾Ð»ÑзоваÑелей (Ñ.е. коÑоÑÑе бÑдÑÑ " "Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ñ Ð² ÑиÑÑÐµÐ¼Ñ Ñ Ð¿Ð¾Ð¼Ð¾ÑÑÑ adduser позднее)." # translation of ru.po to Russian # translation of adduser_3.77_ru.po to Russian # adduser. # Copyright (C) 2000, 2004, 2005 Free Software Foundation, Inc. # Copyright (C) 2000 Peter Novodvorsky <[EMAIL PROTECTED]>. # Yuri Kozlov <[EMAIL PROTECTED]>, 2004, 2005. # msgid "" msgstr "" "Project-Id-Version: adduser_3.77_ru\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-11-13 00:21+\n" "PO-Revision-Date: 2005-11-14 15:04+0300\n" "Last-Translator: Yuri Kozlov <[EMAIL PROTECTED]>\n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" #. everyone can issue "--help" and "--version", but only root can go on #: ../adduser:9
Bug#337881: udev: Still seeing post-inst errors with 0.074-2 on ppc
On Nov 14, Nathan Robertson <[EMAIL PROTECTED]> wrote: > Unpacking replacement udev ... > Setting up udev (0.074-2) ... > dpkg: error processing udev (--install): > subprocess post-installation script returned error exit status 3 > Errors were encountered while processing: > udev This is totally useless. Please report the output of sh -ex /var/lib/dpkg/info/udev.postinst configure (Obviously after trying to install 0.074-2.) -- ciao, Marco signature.asc Description: Digital signature
Bug#337881: udev: Still seeing post-inst errors with 0.074-2 on ppc
reassign 337881 linux-2.6 severity 337881 grave retitle 337881 CONFIG_KOBJECT_UEVENT must always be defined thanks On Nov 14, Nathan Robertson <[EMAIL PROTECTED]> wrote: > Unpacking replacement udev ... > Setting up udev (0.074-2) ... > dpkg: error processing udev (--install): > subprocess post-installation script returned error exit status 3 > Errors were encountered while processing: > udev Thinking again about this, it looks like it is the same issue of #338911. There is no way to test this from user space, except actually trying to open the socket. The udev maintainer said that uevents will be unconditionally enabled in 2.6.15. In a future udev upload I will make the script report the error to the console too (look at daemon.log...). -- ciao, Marco signature.asc Description: Digital signature
Bug#338966: [Pkg-sysvinit-devel] Bug#338966: initscripts: "Usage" error message displays during bootup
On Mon, 2005-11-14 at 08:51 +0100, Petter Reinholdtsen wrote: > I checked the old version, and luckily, only the .sh scripts are > called without the 'start' argument. Try this patch: Unfortunately, I'm a relative newbie and I'm really not certain how to apply this patch. > Index: /etc/init.d/rcS > === > --- /etc/init.d/rcS (revisjon 21) > +++ /etc/init.d/rcS (arbeidskopi) > @@ -46,7 +46,7 @@ > ( > trap - INT QUIT TSTP > set start > - . $i > + . $i start > ) > ;; > *) > > > But I seriously recommend upgrading sysv-rc to the latest version and > allowing it to update /etc/init.d/rcS and /etc/init.d/rc. Hmmm... the day I updated to the latest version of initscripts, I also updated sysv-rc (via apt). According to what I see, the latest version of sysv-rc in sid is version 2.86.ds1-5. Rick -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338999: subversion: Subversion book is missing in 1.2.3dfsg1-2 on amd64
[Jean-Marie Thomas] > Subversion book is missing in the aforementioned package, while > packages.debian.org mentions it as packaged. Please explain what you mean when you say "packages.debian.org mentions it as packaged". Where is it mentioned? signature.asc Description: Digital signature
Bug#339002: ITP: cvsconnect -- CVS connection minimizer
Package: wnpp Severity: wishlist Owner: Piotr Roszatycki <[EMAIL PROTECTED]> * Package name: cvsconnect Version : 0.1 * URL : http://cvs.m17n.org/~akr/cvssuck/ * License : BSD Description : CVS connection minimizer CVSconnect enables you to do multiple CVS operations on single connection. CVSconnect sets up special environment using $CVS_RSH and $CVSROOT for the command line CVS client. In the environment, the command line CVS client reuses a connection. CVSconnect is especially designed to use with CVSsuck. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339003: greylistd: Some mail systems queue for an hour (!)
Package: greylistd Version: 0.8.3 Severity: minor I have had a couple of users report mail delivery failures, because their MTAs only queue messages for an hour. Even more irritating, they provide delay warnings every 10 minutes. e.g, bounce message received at 11.40 on 14 November 2005: > Your message was received 11:08:10 Mon, 14 November 2005. > The mail system will keep trying to deliver your message for another > 0 hours 28 minutes. Clearly this is broken behaviour, but it might be worth reducing the default greylisting period from an hour to something less. I don't know what the offending MTA is, It helpfully provides the following identification: 220 *0 0 Cheers, Doug. -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.10-1-686 Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1) Versions of packages greylistd depends on: ii debconf [debconf-2.0] 1.4.30.13 Debian configuration management sy ii python2.3.5-2An interactive high-level object-o -- debconf information: greylistd/autoconfig_notdone: greylistd/restartexim: true * greylistd/autoconfig_notdone_exim4: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#321635: acknowledged by developer (date add example for unix timestamps)
On Sun, Nov 13, 2005 at 10:33:15AM -0800, Debian Bug Tracking System wrote: > There is quite a bit of language about unix times in the info docs. The > date command is complicated enough that you pretty much can't avoid > reading the full info about it; I don't see a practical way of adding > all the nifty features onto the manpage and still have it readable. > > FYI, date currently supports date -d '@1123341579' to avoid the date -d > '01/01/1970 1123341579 seconds GMT' construct. I don't think that one more one-line example would make the manpage unreadable. Actually, where did the examples go in the original manpage? There are examples in the italian translation, but not in the LANG=C one. If the main information is kept on info, then the manpage could really be made into a quick-reference sheet. No explanations (refers to Info for that) and quick summary of commandline options and format sequences (as we have now), plus a bunch of one-line useful examples. I'm personally a fan of collecting examples, and I find manpages with examples so much more useful than manpages with just lengthy explanations. Best effects are acheived if useful ones are collected over time. Here's my previous patch to add an EXAMPLES section, integrated with the examples recovered from the (old?) Italian translation and retranslated: --- date.1 2005-08-06 17:32:59.0 +0200 +++ date.1.enrico 2005-08-06 17:34:59.720187776 +0200 @@ -178,6 +178,14 @@ .IP `-' (hyphen) do not pad the field `_' (underscore) pad the field with spaces +.SH EXAMPLES +.nf + # Print the date of two days ago + date --date ´2 days ago´ + + # Print the name of the weekday of Christmas in this year + date --date ´25 Dec´ +%j + + # Print the current day in a format that includes the complete name of the + # month, and the weekday + date ´+%B %d´ + + # Print the same, without the padding with zeros ("1" instead of "01") + date -d 1-may ´+%B %-d´ + + # Print the current date as unix timestamp + date +%s + + # Parse a unix timestamp + date -d "@1123341579" +.fi .SH AUTHOR Written by David MacKenzie. .SH "REPORTING BUGS" Do what you want with it: I'm not reopening the bug and I won't insist more than this. Ciao, Enrico -- GPG key: 1024D/797EBFAB 2000-12-05 Enrico Zini <[EMAIL PROTECTED]> signature.asc Description: Digital signature
Bug#335185: newmat licence
Robert Davies wrote: > Is this OK? Let me forward this to the appropiate debian place, I am not famillar w/ copyleft issue, Maye they'll suggest you a existing common licence that is close enough to yours. I'll come back to you when this is valided. Anyway there is a candidate debian package at : http://mentors.debian.net/debian/pool/main/n/newmat/?C=M;O=D > Conditions of use. > > I place no restrictions on the use of newmat except that I take > no liability for any problems that may arise from its use, > distribution or other dealings with it. > > I welcome its distribution as part of low cost CD-ROM collections. > > You can use it in your commercial projects. > > You can make and distribute modified or merged versions. You can > include parts of it in your own software. > > If you distribute modified or merged versions, please make it clear > which parts are mine and which parts are modified. > > For a substantially modified version, simply note that it is, in > part, derived from my software. A comment in the code will be > sufficient. > > The software is provided "as is", without warranty of any kind. > > Please understand that there may still be bugs and errors. Use at > your own risk. I take no responsibility for any errors or omissions > in this package or for any misfortune that may befall you or others > as a result of its use, distribution or other dealings with it. > > > > > > > > -- C-x C-c # http://RzR.online.FR/contact.htm # jid:rzr(a)jabber.org # signature.asc Description: PGP signature signature.asc Description: OpenPGP digital signature
Bug#338986: mktexfmt is a symlink to fmtutil, not updmap
retitle 338986 tetex-bin: fmtutil-sys doesn't work when invoked as mktexfmt stop It seems I'm getting confused by all those bugreports we get about updmap... Regards, Frank -- Frank Küster Inst. f. Biochemie der Univ. Zürich Debian Developer
Bug#339004: p3scan: child died with abnormal termsignal (11)
Package: p3scan Version: 2.1-2 Debian stable on Linux 2.4.30-ow1 (with openwall security patch): I have many entries like below: Nov 14 13:43:02 r0 p3scan[17703]: Connection from 172.25.11.118:1829 Nov 14 13:43:02 r0 p3scan[17703]: Real-server adress is 216.109.127.60:110 Nov 14 13:46:11 r0 p3scan[17703]: Cannot connect to real-server Nov 14 13:46:11 r0 p3scan[17703]: Session done (Critial abort). Mails: 0 Bytes: 0 Nov 14 13:46:11 r0 p3scan[29936]: Attention: child with pid 17703 died with abnormal termsignal (11)! This is probably a bug. Please report to the author. numprocs is now 0 One interesting thing is that all entries are for mail server 216.109.127.60:110 (yahoo.com). I don't know what the server sends, but regardless of that p3scan should not do a sig fault. -- Grzegorz Janoszka -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339005: console-common: install-keymap runs loadkeys without -q, interacts wrongly with debconf, succeeds but exits non-zero
Package: console-common Version: 0.7.49 Severity: normal - Add '-x' to the end of the first line in install-keymap - Run, say, 'install-keymap us' - The end of the output will show: + /bin/loadkeys /etc/console/boottime.kmap.gz + . /usr/share/debconf/confmodule ++ '[' '!' 1 ']' ++ '[' -z '' ']' ++ exec ++ DEBCONF_REDIR=1 ++ export DEBCONF_REDIR ++ md5sum /etc/console/boottime.kmap.gz ++ cut -f1 '-d ' + MD=7e1d5e02468a6d115be5323cf6c5be10 + db_set console-data/bootmap-md5sum 7e1d5e02468a6d115be5323cf6c5be10 + _db_cmd 'SET console-data/bootmap-md5sum' 7e1d5e02468a6d115be5323cf6c5be10 + echo 'SET console-data/bootmap-md5sum' 7e1d5e02468a6d115be5323cf6c5be10 + local 'IFS= ' + local _LINE + read -r _LINE + RET=20 Unsupported command "loading" (full line was "Loading /etc/console/boottime.kmap.gz") received from confmodule. + return 20 (This non-zero exit is a problem for use of the script from within a whiptail-based setup tool which interprets this as a failure.) Apparently loadkeys is being chatty and debconf is consuming stdout as a command channel. Other loadkey invocations in the script do use -q. Adding -q to this last invocation yields: + /bin/loadkeys -q /etc/console/boottime.kmap.gz + . /usr/share/debconf/confmodule ++ '[' '!' 1 ']' ++ '[' -z '' ']' ++ exec ++ DEBCONF_REDIR=1 ++ export DEBCONF_REDIR ++ md5sum /etc/console/boottime.kmap.gz ++ cut -f1 '-d ' + MD=7e1d5e02468a6d115be5323cf6c5be10 + db_set console-data/bootmap-md5sum 7e1d5e02468a6d115be5323cf6c5be10 + _db_cmd 'SET console-data/bootmap-md5sum' 7e1d5e02468a6d115be5323cf6c5be10 + echo 'SET console-data/bootmap-md5sum' 7e1d5e02468a6d115be5323cf6c5be10 + local 'IFS= ' + local _LINE + read -r _LINE + RET=value set + return 0 which is presumably what is actually intended (and which returns 0 on success, as expected). - Raz -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.12-1-686 Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1) Versions of packages console-common depends on: ii console-data2002.12.04dbs-49 Keymaps, fonts, charset maps, fall ii console-tools 1:0.2.3dbs-56Linux console and font utilities ii debconf 1.4.30.13Debian configuration management sy ii debianutils 2.8.4Miscellaneous utilities specific t -- debconf information: console-data/keymap/template/layout: console-data/keymap/family: qwerty console-data/keymap/powerpcadb: console-data/keymap/template/variant: console-data/keymap/ignored: console-data/keymap/full: console-data/keymap/template/keymap: console-data/keymap/policy: Don't touch keymap console-data/bootmap-md5sum: none -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337080: [Adduser-devel] Bug#337080: adduser: [INTL:ru] Updated Russian translation po and man files
On Mon, Nov 14, 2005 at 03:46:29PM +0300, Yuri Kozlov wrote: > 2005/11/14, Marc Haber <[EMAIL PROTECTED]>: > > Lintian still reports some errors in the man page: > > $ lintian adduser_3.77.0_i386.changes > > E: adduser_3.77.0_i386.changes: bad-distribution-in-changes-file > > UNRELEASED > > /tmp/rlyA3VZcIN/source/adduser/debfiles/po > > /tmp/rlyA3VZcIN/binary/adduser/unpacked > > W: adduser: manpage-has-errors-from-man > > usr/share/man/ru/man5/adduser.conf.5.gz /tmp/zman42YYqd:15: name expected > > (got a magic token) > > W: adduser: manpage-has-errors-from-man > > usr/share/man/ru/man5/deluser.conf.5.gz /tmp/zmanVi4xLb:15: name expected > > (got a magic token) > > W: adduser: manpage-has-errors-from-man usr/share/man/ru/man8/adduser.8.gz > > /tmp/zmanzNNi2i:18: name expected (got a magic token) > > W: adduser: manpage-has-errors-from-man usr/share/man/ru/man8/deluser.8.gz > > /tmp/zmanjZJVIs:18: name expected (got a magic token) > > > > This can be seen when invoking "env -i LANG=C man -l /path/to/manpage" > I think, the UTF-8 man page can not be viewed in the LANG=C (it is > 7-bit, right ?). Probably. I have been told that non-ASCII needs to be written as entities in man pages, whatever that may mean. > Updated russian po (not for man pages) attached. Committed to svn. > Which version of lintian ? Current unstable, which is 1.23.13. 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#339006: courier: Uses obsolete PostgreSQL build dependency
Package: courier Version: 0.47-12 Tag: patch Hi Stefan! courier uses an obsolete way of building the PostgreSQL backend. Please see [1] for the details and [2] for the patch. Thanks, Martin [1] http://lists.debian.org/debian-devel/2005/06/msg00500.html [2] http://people.ubuntu.com/~pitti/patches/postgresql-transition/courier.psqlng.diff -- Martin Pitthttp://www.piware.de Ubuntu Developer http://www.ubuntu.com Debian Developer http://www.debian.org In a world without walls and fences, who needs Windows and Gates? signature.asc Description: Digital signature
Bug#338984: incompatability of libax25 and kernel-2.4 and fbb program
On Mon, Nov 14, 2005 at 10:04:40AM +0100, Arjan van Schijndel wrote: > Package: libax25 > Version: 0.0.11-3 > > This lib combined with kernel-2.4 and fbb causes my pc to crash, in > such way that it is inpossible to recover the correct error. > > But during the start of fbb there is a small hint of incompatability > of the lib and/or kernel with fbb. So libax25 is still compiled with > kernel-2.2 or fbb is only compiled for kernel-2.2 and the old libax25 There are bugs in AX.25 in 2.4. You need 2.6, preferably 2.6.14. It's independent of the libax25 version. What was the error in particular? Which AX.25 driver are you using (mkiss, soundmodem, baycom, scc etc)? Hamish -- Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338984: incompatability of libax25 and kernel-2.4 and fbb program
Dear hamish, I am running my system on a pentium I and running the 2.6 kernel is not an option it to slow. But probebly the error is in the fbb program. The last time I checked the libax25 settings but it uses the headers of kernel-2.2 73, Arjan On 11/14/05, Hamish Moffatt <[EMAIL PROTECTED]> wrote: > On Mon, Nov 14, 2005 at 10:04:40AM +0100, Arjan van Schijndel wrote: > > Package: libax25 > > Version: 0.0.11-3 > > > > This lib combined with kernel-2.4 and fbb causes my pc to crash, in > > such way that it is inpossible to recover the correct error. > > > > But during the start of fbb there is a small hint of incompatability > > of the lib and/or kernel with fbb. So libax25 is still compiled with > > kernel-2.2 or fbb is only compiled for kernel-2.2 and the old libax25 > > There are bugs in AX.25 in 2.4. You need 2.6, preferably 2.6.14. > It's independent of the libax25 version. > > What was the error in particular? Which AX.25 driver are you using > (mkiss, soundmodem, baycom, scc etc)? > > Hamish > -- > Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> >
Bug#338987: Wrong reference to fil in node program
reassign 338987 ax25-tools close 338987 0.0.8-8 thanks As Bob points out, this bug has already been fixed in ax25-tools 0.0.8-8 in etch. It won't be fixed in sarge. Hamish On Mon, Nov 14, 2005 at 10:34:07AM +0100, Arjan van Schijndel wrote: > Package: node > Version: 0.3.2-4 > > [EMAIL PROTECTED] 10:27:35> mh vhf > OSS:PI1OSS /var/ax25/mheard/mheard.dat: No such file or directory > > Suggestion: > The mheard program of ax25-tools puts it's file in > var/lib/ax25/mheard/mheard.dat and at this location the node program > doesn't read. So my suggestion is put all temporary files in the place > where they belong /var/cache/ax25, because it is not a library. > > Greetings Arjan > > -- Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338987: Wrong reference to fil in node program
Dear Hamish, What is then the procedure, for doing updates. I run stable because it is stable, and my experiences from the past tell me that running testing is to risky. Greetings, arjan On 11/14/05, Hamish Moffatt <[EMAIL PROTECTED]> wrote: > reassign 338987 ax25-tools > close 338987 0.0.8-8 > thanks > > As Bob points out, this bug has already been fixed in ax25-tools > 0.0.8-8 in etch. It won't be fixed in sarge. > > Hamish > > On Mon, Nov 14, 2005 at 10:34:07AM +0100, Arjan van Schijndel wrote: > > Package: node > > Version: 0.3.2-4 > > > > [EMAIL PROTECTED] 10:27:35> mh vhf > > OSS:PI1OSS /var/ax25/mheard/mheard.dat: No such file or directory > > > > Suggestion: > > The mheard program of ax25-tools puts it's file in > > var/lib/ax25/mheard/mheard.dat and at this location the node program > > doesn't read. So my suggestion is put all temporary files in the place > > where they belong /var/cache/ax25, because it is not a library. > > > > Greetings Arjan > > > > > > -- > Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> >
Bug#338987: Wrong reference to fil in node program
On Mon, Nov 14, 2005 at 01:56:11PM +0100, Arjan van Schijndel wrote: > Dear Hamish, > > What is then the procedure, for doing updates. I run stable because it > is stable, and my experiences from the past tell me that running > testing is to risky. Hi Arjan, If you need a fix then you will have to run testing or unstable. You could work around the problem locally eg with a symlink from one location to the other, or by compiling our newer packages from source on your sarge system. Hamish -- Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338984: incompatability of libax25 and kernel-2.4 and fbb program
On Mon, Nov 14, 2005 at 02:00:42PM +0100, Arjan van Schijndel wrote: > Dear hamish, > > I am running my system on a pentium I and running the 2.6 kernel is > not an option it to slow. But probebly the error is in the fbb > program. The last time I checked the libax25 settings but it uses the > headers of kernel-2.2 If your system locks up it is not a problem in the fbb program! User programs cannot cause a lockup, only the kernel or drivers. As I said, there are known problems with AX.25 in 2.4. They have been fixed in 2.6, particularly in the latest 2.6.14. I don't think 2.6 would be any slower than 2.4 on your Pentium system. Really I don't think you have much choice, as 2.4 AX.25 is unreliable and we don't support Linux 2.2 with sarge. 73 Hamish -- Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339007: php4-mapscript: php_mapscript.so is into incorrect directory
Package: php4-mapscript Version: 4.6.1-4 Severity: grave Justification: renders package unusable I get this error because php_mapscript.so is into /usr/lib/php4/20020429: Warning: dl(): Unable to load dynamic library '/usr/lib/php4/20050606/php_mapscript.so' - /usr/lib/php4/20050606/php_mapscript.so: cannot open shared object file I have corrected this problem with a symbolic link. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.13.4 Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1) Versions of packages php4-mapscript depends on: ii debconf [debconf-2.0] 1.4.58 Debian configuration management sy ii libapache-mod-php44:4.4.0-4 server-side, HTML-embedded scripti ii libc6 2.3.5-6GNU C Library: Shared libraries an ii libcomerr21.38-2 common error description library ii libcurl3-gnutls 7.15.0-4 Multi-protocol file transfer libra ii libfreetype6 2.1.7-2.4 FreeType 2 font engine, shared lib ii libgcc1 1:4.0.2-3 GCC support library ii libgd2-xpm2.0.33-2 GD Graphics Library version 2 ii libgdal1c21.2.6-1.2 Geospatial Data Abstraction Librar ii libgnutls12 1.2.8-1the GNU TLS library - runtime libr ii libidn11 0.5.18-1 GNU libidn library, implementation ii libjpeg62 6b-10 The Independent JPEG Group's JPEG ii libkrb53 1.3.6-5MIT Kerberos runtime libraries ii libpng12-01.2.8rel-5 PNG library - runtime ii libpq48.0.3-15 PostgreSQL C client library ii libstdc++64.0.2-3The GNU Standard C++ Library v3 ii proj 4.4.9-1Cartographic projection filter and ii zlib1g1:1.2.3-4 compression library - runtime php4-mapscript recommends no packages. -- debconf information: php4/add_extension: true * php4/extension_mapscript_apache: true php4/remove_extension: true pgp06yA3ylNr4.pgp Description: PGP signature
Bug#337177: bzr-0.6/bzrlib/trace.py
merge 337177 336540 thanks On Mon, Nov 14, 2005 at 12:15:59AM -0600, Bob Tanner said > On Sunday 13 November 2005 06:21 pm, you wrote: > > > ./bzr selftest > > > No handlers could be found for logger "bzr" > > > > This is a normal notice from bzr, afaict. > > > > > * WTF ** > > > > This is the "home dir does not exist" issue, right? > > Correct. Great, thanks. -rob -- Not even if we rub the engine with cheetah blood? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337229: exim4-config: update-exim4.conf ignores dc_use_split_config if -d|--confdir is used
On Sat, Nov 05, 2005 at 10:41:11AM +1000, Ted Percival wrote: > >>When update-exim4.conf is run with the -d|--confdir option, it uses the > >>conf.d directory regardless of whether update-exim4.conf.conf has > >>dc_use_split_config set to false. > > > > Actually, it uses the setting from /etc/exim4/update-exim4.conf.conf > > in any case regardless of --confdir being used. I fixed this in svn, > > please try the attached patch. > > That didn't seem to be the case, but the patched script works properly > now, thank you. Good. > >>Furthermore update-exim4.conf dies if the conf.d directory doesn't exist > >>even though dc_use_split_config is false > > > > But it does die with a clear error message, right? > > It does. So it is not misleading. > I don't think the conf.d directory need exist if the single > configuration file is being used (dc_use_split_config='false') and vice > versa. I happen to disagree. exim4.conf.template and exim4/conf.d belong together, exim4.conf.template is generated from exim4/conf.d at package build time and at the local user's request. > One instance I can see it happening in is with one mail server I > set up, I kept different configurations in different directories, thus > to get around that message I would have to symlink (or copy) the conf.d > directory even though it was not being used. Considering that's a > workaround, it would probably be better to modify the script's behaviour > so no workaround would be necessary. However, I have changed update-exim4.conf to only flag this case as an error if split config is actually selected in svn. 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#338585: Reassigning the cloned copy
reassign 338585 tex-common 0.10 stop (I wonder whether reassigning to this version will automatically reopen it) this affects all TeX systems, and comes from refusing changes in tex-common's configuration files, therefore reassigning. -- Frank Küster Inst. f. Biochemie der Univ. Zürich Debian Developer
Bug#338984: incompatability of libax25 and kernel-2.4 and fbb program
I know there is know support, but I had an old kernel-package still on the shelve and I jused that one. It know runs oke with an old kernel, but before I upgrade I need more time. Please also check the problem in fbb, because it does a call to a kernel function which doesn't exist or does, but has the wrong input parameters. 73, Arjan On 11/14/05, Hamish Moffatt <[EMAIL PROTECTED]> wrote: > On Mon, Nov 14, 2005 at 02:00:42PM +0100, Arjan van Schijndel wrote: > > Dear hamish, > > > > I am running my system on a pentium I and running the 2.6 kernel is > > not an option it to slow. But probebly the error is in the fbb > > program. The last time I checked the libax25 settings but it uses the > > headers of kernel-2.2 > > If your system locks up it is not a problem in the fbb program! > User programs cannot cause a lockup, only the kernel or drivers. > > As I said, there are known problems with AX.25 in 2.4. They have been > fixed in 2.6, particularly in the latest 2.6.14. > > I don't think 2.6 would be any slower than 2.4 on your Pentium system. > Really I don't think you have much choice, as 2.4 AX.25 is unreliable > and we don't support Linux 2.2 with sarge. > > 73 > Hamish > -- > Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> >
Bug#339008: Missing Mapping KOI8-R
Package: libunicode-map-perl Version: 0.112-7 Severity: minor Hi! At present time there is no mapping to KOI8-R charset. It is located at ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MISC/ as KOI8-R.TXT It is usual charset at russian linux servers/workstations, so I think it is a good idea to add this mapping to this package. -- WBW, AmadiS, System administrator of IP-COM -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339009: O: lua50 -- Lua 5.0.2
Package: wnpp Version: N/A; reported 2005-11-14 Severity: normal I have no time to continue looking after the Lua packages. They have languished unloved now for some time and have a few open bugs against them, at least one of which is serious (a rebuild is needed against readline 5) I am so busy with work that even simple maintenance is a pain and thus would appreciate it if someone would take the packages over. They're very light work and rarely need changing. The software doesn't get many updates. Thanks, Daniel. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339010: wajig uses a deprecated option for tail
Package: wajig Version: 2.0.30 Severity: normal After doing an update, wajig counts new packages to present some stats. It uses tail with a deprecated syntax: tail -|+N, while it should use tail -n -|+N, so it doesnt work with the current version. (tail (GNU coreutils) 5.93) Attached patch solve this. -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable') Architecture: powerpc (ppc) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.14 Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15) Versions of packages wajig depends on: ii apt 0.6.42.3 Advanced front-end for dpkg ii python2.3.5-3An interactive high-level object-o ii python-apt0.6.14 Python interface to libapt-pkg wajig recommends no packages. -- no debconf information --- commands.py 2005-11-05 06:23:03.0 +0100 +++ commands.py.new 2005-11-14 14:40:51.0 +0100 @@ -358,7 +358,7 @@ # the download archive, if there is any there. # lscmd = "/bin/ls " + archives -lscmd += " | egrep '^" + pkg + "_' | sort | tail -1" +lscmd += " | egrep '^" + pkg + "_' | sort | tail -n -1" matches = perform.execute(lscmd, pipe=True) debpkg = matches.readline().strip() # --- changes.py 2005-11-05 06:23:03.0 +0100 +++ changes.py.new 2005-11-14 14:40:10.0 +0100 @@ -169,7 +169,7 @@ "| egrep '^(Package|Version):' " +\ "| tr '\n' ' '" +\ "| perl -p -e 's|Package: |\n|g; s|Version: ||g'" +\ - "| sort | tail +2 | sed 's| $||' > " + available_file + "| sort | tail -n +2 | sed 's| $||' > " + available_file # Use langC in the following since it uses a grep. perform.execute(command, noquiet=True, langC=True) # root is not required. os.rename(temporary_file, previous_file)
Bug#338973: unregister_netdevice: waiting for vpn0 to become free. Usage count = 23
On Mon, Nov 14, 2005 at 11:35:27AM +0100, Maximilian Attems <[EMAIL PROTECTED]> wrote: > please reassign in those cases. :) ok! :) > > This happens whenever I want to upgrade gnu virtual private ethernet and > > kill it (which should free the tun interface it uses). Following ifconfig > > -a or other interface-related calls hang till the machine is rebooted hard > > (shutdown hangs for obvious reasons). > > your .config has several ethernet card enabled which are you using, > please post the running lsmod? Hmm, what would ethernet cards have to do with the issue? Anyways, the lsmod is below. > also could you try to boot the debian kernel with noapic in boot cmdline? This is hard to do (it's a production server), and since it's highly unlikely for an arp cache bug on a virtual tunnel device to be caused by interrupt problems, I'd rather avoid it unless it's really necessary for further analysing the bug (which seems to be pretty obvious now)? Module Size Used by reiserfs 282096 4 xfs 591772 6 exportfs6368 1 xfs autofs420772 1 ipt_REDIRECT2048 2 iptable_nat 8036 1 ip_nat 20148 2 ipt_REDIRECT,iptable_nat ip_conntrack 56412 2 iptable_nat,ip_nat nfnetlink 6680 2 ip_nat,ip_conntrack ipt_TOS 2464 15 iptable_mangle 2880 1 ipt_REJECT 6016 4 iptable_filter 3008 1 ip_tables 22048 6 ipt_REDIRECT,iptable_nat,ipt_TOS,iptable_mangle,ipt_REJECT,iptable_filter pdc202xx_old 11520 0 [permanent] pdc202xx_new9568 0 [permanent] tun12320 1 w83781d34660 0 hwmon_vid 2688 1 w83781d i2c_isa 4960 1 w83781d i2c_viapro 8304 0 i2c_core 22656 3 w83781d,i2c_isa,i2c_viapro 3c59x 43368 0 8139too29664 0 mii 5728 2 3c59x,8139too dmfe 22780 0 de2104x22944 0 de4x5 54144 0 tulip 52576 0 ipv6 278688 18 genrtc 9448 0 unix 30192 27 ext3 146344 1 jbd62100 1 ext3 mbcache10180 1 ext3 ide_disk 19200 23 ide_generic 1376 0 [permanent] via82cxxx 14140 0 [permanent] generic 4516 0 [permanent] ide_core 135372 6 pdc202xx_old,pdc202xx_new,ide_disk,ide_generic,via82cxxx,generic evdev 9760 0 mousedev 12100 0 -- The choice of a -==- _GNU_ ==-- _ generation Marc Lehmann ---==---(_)__ __ __ [EMAIL PROTECTED] --==---/ / _ \/ // /\ \/ / http://schmorp.de/ -=/_/_//_/\_,_/ /_/\_\ XX11-RIPE -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339012: debootstrap: /usr/bin/mail installed without package, doesn't work.
Package: debootstrap Version: 0.3.3 Severity: normal Hi, I've installed a sid chroot using debootstrap (unstable on sarge), and wasn't able to send bug reports from within using reportbug (that's my actual problem). Digging a bit into it, I found out that: 1. /usr/bin/mail is installed but not through dpkg: $ dpkg -S /usr/bin/mail dpkg: /usr/bin/mail not found. 2. a dependency is missing: $ mail -s testchroot [EMAIL PROTECTED] mail: error while loading shared libraries: liblockfile.so.1: cannot open shared object file: No such file or directory 3. after installation of liblockfile1, mail doesn't complain anymore and seems to work, though something is still wrong, but I think that's another story. Thanks, Eric -- System Information: Debian Release: 3.1 APT prefers stable APT policy: (990, 'stable'), (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12-5.99.sarge1 Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8) Versions of packages debootstrap depends on: ii binutils 2.15-6 The GNU assembler, linker and bina ii wget 1.9.1-12 retrieves files from the web debootstrap recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339013: updated Korean translation for 'popularity-contest'
Package: popularity-contest Tags: l10n Updated Korean translation. Thanks. -- Sunjae Park(daréhanl) We choose to go to the moon and do the other things, not because they are easy, but because they are hard. - John F. Kennedy - # Sunjae Park <[EMAIL PROTECTED]>, 2005. # Changwoo Ryu <[EMAIL PROTECTED]>, 2005. # # msgid "" msgstr "" "Project-Id-Version: popularity-contest\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-07-04 08:46+0200\n" "PO-Revision-Date: 2005-11-14 23:12+0900\n" "Last-Translator: Sunjae Park <[EMAIL PROTECTED]>\n" "Language-Team: Korean <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit" #. Type: boolean #. Description #: ../templates:4 msgid "Participate in the Debian Package Popularity Contest?" msgstr "ë°ë¹ì í¨í¤ì§ ì¸ê¸° í¬íì ì°¸ì¬íìê² ìµëê¹?" #. Type: boolean #. Description #: ../templates:4 msgid "" "You can have your system anonymously supply the Debian developers with " "statistics about your most used Debian packages. This information " "influences decisions such as which packages should go on the first Debian CD." msgstr "" "ê°ì¥ ë§ì´ ì°ë ë°ë¹ì 꾸ë¬ë¯¸ì ëí íµê³ë¥¼ ìµëª ì´ë©ì¼ë¡ ë°ë¹ì ê°ë°ìë¤ìê²" "ë³´ë¼ ì ììµëë¤. ì´ ì ë³´ë ì´ë¤ 꾸ë¬ë¯¸ë¥¼ 첫 ë²ì§¸ ë°ë¹ì CDì ë£ì ê²" "ì¸ê°ì ê°ì ê²°ì ì íë ë° ì´ì©í©ëë¤." #. Type: boolean #. Description #: ../templates:4 msgid "" "If you choose to participate, the automatic submission script will run once " "every week, sending statistics to the Debian developers." msgstr "" "ì°¸ê°íìê² ëë©´, 매 주ë§ë¤ ìëì¼ë¡ ì¤í¬ë¦½í¸ë¥¼ ì¤íí´ì ë°ë¹ì ê°ë°ìë¤ìê² " "íµê³ ì 보를 ì ì¶í©ëë¤." #. Type: boolean #. Description #: ../templates:4 msgid "" "You can always change your mind after making this decision: \"dpkg-" "reconfigure popularity-contest\"" msgstr "" "ì´ ê²°ì ì ëí´ ì¸ì ë ì§ ë§ìì ë°ê¿ ì ììµëë¤: \"dpkg-reconfigure " "popularity-contest\"" #. Type: note #. Description #: ../templates:17 msgid "Generating unique host identifier failed" msgstr "í¸ì¤í¸ ê³ ì ID를 ë§ëë ë° ì¤í¨íìµëë¤" #. Type: note #. Description #: ../templates:17 msgid "" "The install script could not generate a unique host identifier. This is a " "fatal error, as all hosts submitting information need to have an unique " "identifier." msgstr "" "ì¤ì¹ ì¤í¬ë¦½í¸ìì í¸ì¤í¸ ê³ ì ID를 ë§ë¤ ì ììµëë¤. ì¹ëª ì ì¸ ì¤ë¥ë¡, ì 보를 " "ì ì¶íë 모ë í¸ì¤í¸ë ê³ ì ID를 ê°ì§ê³ ìì´ì¼ í©ëë¤." #. Type: note #. Description #: ../templates:17 msgid "" "Please report this problem as a bug against the popularity-contest package, " "and include information about your configuration." msgstr "" "ì´ ë¬¸ì 를 popularity-contest í¨í¤ì§ì ë²ê·¸ë¡ ìë ¤ 주ììì¤. ê·¸ë¦¬ê³ ì¤ì ì ë³´" "를 í¬í¨í´ 주ììì¤." #. Type: boolean #. Description #: ../templates:28 msgid "Use HTTP to submit reports?" msgstr "HTTP를 ì¬ì©íì¬ ê²°ê³¼ë¥¼ ë³´ê³ í ê¹ì?" #. Type: boolean #. Description #: ../templates:28 msgid "If you do not want to use HTTP, email is used instead." msgstr "HTTP를 ì¬ì©íì§ ìì¼ë©´ ì´ë©ì¼ì ëì ì¬ì©í©ëë¤."
Bug#339011: Korean 'shadow' translation
Package: shadow Tags: l10n Updated Korean translation. Thanks. -- Sunjae Park(daréhanl) We choose to go to the moon and do the other things, not because they are easy, but because they are hard. - John F. Kennedy - # Changwoo Ryu <[EMAIL PROTECTED]>, 2004. # Sunjae Park <[EMAIL PROTECTED]>, 2005. # # msgid "" msgstr "" "Project-Id-Version: shadow-templates\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-10-22 08:58+0200\n" "PO-Revision-Date: 2005-11-14 22:53+0900\n" "Last-Translator: Sunjae Park <[EMAIL PROTECTED]>\n" "Language-Team: Korean <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit" #. Type: password #. Description #: ../passwd.templates:21 msgid "Root password:" msgstr "ë£¨í¸ ì´ì ê¸:" #. Type: password #. Description #: ../passwd.templates:21 msgid "" "You need to set a password for 'root', the system administrative account. A " "malicious or unqualified user with root access can have disastrous results, " "so you should take care to choose a root password that is not easy to guess. " "It should not be a word found in dictionaries, or a word that could be " "easily associated with you." msgstr "" "ì´ì 'root'ì ì´ì ê¸ì ì¤ì í´ì¼ í©ëë¤. 루í¸(root)ë ìì¤í ê´ë¦¬ìì ê³ì ì ë" "ë¤. ì ì ìë ì¬ì©ìë ì 모르ë ì¬ì©ìê° ë£¨í¸ ê¶íì ê°ê² ëë©´ ìì¤í ì" "í° í¼í´ë¥¼ ì í ì ììµëë¤. ë°ë¼ì ë£¨í¸ ì´ì ê¸ì ì¤ì í ë ì´ì ê¸ì ì½ê² ì측í" "ì§ ëª»íëë¡ ì ê²½ì ì¨ì¼ í©ëë¤. ì¬ì ì ìë ë¨ì´ë¥¼ ì¬ì©íë©´ ì ëê³ , ë³¸ì¸ ì " "ìì ë³´ì ê´ë ¨í´ì ì½ê² ì측í ì ìë ì´ì ê¸ì ì¬ì©í´ìë ì ë©ëë¤ (ë³ëª ë°" "ì). ì¢ì ì´ì ê¸ì ê¸ì, ì«ì, 기í¸ë¥¼ ìì´ì ë§ë¤ê³ ì 기ì ì¼ë¡ ë°ê¾¸ë ê² ì¢ìµ" "ëë¤. ë£¨í¸ ì´ì ê¸ì ë£¨í¸ ì¬ì©ìë¡ 'passwd' íë¡ê·¸ë¨ì ì¤íí´ì ë°ê¿ ì ììµë" "ë¤." #. Type: password #. Description #: ../passwd.templates:21 msgid "Note that you will not be able to see the password as you type it." msgstr "ì´ì ê¸ì ì ë ¥í ë ì ë ¥í ê¸ìë ë³´ì´ì§ ììµëë¤." #. Type: password #. Description #: ../passwd.templates:35 msgid "" "Please enter the same root password again to verify that you have typed it " "correctly." msgstr "ì ëë¡ ì ë ¥íëì§ íì¸í기 ìí´ ë£¨í¸ ì´ì ê¸ì íë² ë ì ë ¥íììì¤." #. Type: boolean #. Description #: ../passwd.templates:42 msgid "Create a normal user account now?" msgstr "ì¼ë° ì¬ì©ì ê³ì ì ì§ê¸ ë§ë¤ê¹ì?" #. Type: boolean #. Description #: ../passwd.templates:42 msgid "" "It's a bad idea to use the root account for normal day-to-day activities, " "such as the reading of electronic mail, because even a small mistake can " "result in disaster. You should create a normal user account to use for those " "day-to-day tasks." msgstr "" "ì주 íë ì¼ë°ì ì¸ (ì를 ë¤ì´ ì ìë©ì¼ ì½ê¸°) ì»´í¨í° ìì ììë ë£¨í¸ ê³ì ì ì°" "ì§ ìë ê² ì¢ìµëë¤. ë£¨í¸ ê³ì ììë ì주 ìì ì¤ì ë문ì í° í¼í´ê° ë°ìí ì" "ë ì기 ë문ì ëë¤. ì¼ë°ì ì¸ ìì ì ì¬ì©í ì¼ë° ì¬ì©ì ê³ì ì ì§ê¸ ë§ë¤ ì ì" "ìµëë¤." #. Type: boolean #. Description #: ../passwd.templates:42 msgid "" "Note that you may create it later (as well as any additional account) by " "typing 'adduser ' as root, where is an user name, like " "'imurdock' or 'rms'." msgstr "" "ëì¤ì ë£¨í¸ ì¬ì©ìë¡ 'adduser <ì¬ì©ìì´ë¦>'ì ì¤íí´ì ê³ì ì ë§ë¤ ìë ììµ" "ëë¤. ì¬ê¸°ì <ì¬ì©ìì´ë¦>ì 'imurdock'ì´ë 'rms'ê°ì ê³ì ëª ì ëë¤." #. Type: string #. Description #: ../passwd.templates:54 msgid "Full name for the new user:" msgstr "ìë¡ ë§ë¤ ì¬ì©ìì ì±ëª ì ì ë ¥íììì¤:" #. Type: string #. Description #: ../passwd.templates:54 msgid "" "A user account will be created for you to use instead of the root account " "for non-administrative activities." msgstr "" "ê´ë¦¬ì ê´ê³ìë íëì ë£¨í¸ ê³ì ëì ì¬ì©í ì¬ì©ì ê³ì ì ë§ëëë¤. ìë¡ ë§" "ë¤ ê³ì ì ì¬ì©ì ì´ë¦ì ì ë ¥íììì¤" #. Type: string #. Description #: ../passwd.templates:54 msgid "" "Please enter the real name of this user. This information will be used for " "instance as default origin for emails sent by this user as well as any " "program which displays or uses the user's real name. Your full name is a " "reasonable choice." msgstr "" "ì´ ì¬ì©ìì ì¤ì ì´ë¦ì ì ë ¥íììì¤. ì´ ì ë³´ë ì¬ì©ìê° ë³´ë¸ ì´ë©ì¼ì" "기본 ì´ë¦ì ì§ì íë¤ë ì§ ì¬ì©ìì íë¡ê·¸ë¨ìì ì¬ì©ìì ì¤ì ì´ë¦ì" "ì¶ë ¥í ë ì¬ì©ë©ëë¤. ì±ëª ì ì¬ì©íë ê²ë ì¢ìµëë¤." #. Type: string #. Description #: ../passwd.templates:65 msgid "Username for your account:" msgs
Bug#337159: elinks: Does not recover from CTRL-Z
On Mon, Nov 14, 2005 at 01:11:24PM +0100, Petr Baudis wrote: > Dear diary, on Mon, Nov 14, 2005 at 12:51:42PM CET, I got a letter > where Qingning Huo <[EMAIL PROTECTED]> said that... > > What you press ctrl-z to stop it, elinks catches the SIGTSTP signal, > > before it sends itself a SIGSTOP signal, it arranges a child process to > > send itself a SIGCONT after 1 second. > > Aha! Yes, the reason is that if you start multiple elinks instances, > only the first one actually does stuff, and the other instances merely > connect to it. So if you would suspend the first instance, all the other > ones would hang up. > Well, that makes sense. So what is the real reason of this bug, elinks is somehow confused whether it is at foreground? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337277: ITP: link-grammar -- Carnegie Mellon University's link grammar parser
Ken Bloom wrote: > Package: wnpp > Severity: wishlist > Owner: Ken Bloom <[EMAIL PROTECTED]> > > > * Package name: link-grammar > Version : 4.1b > Upstream Author : Daniel Sleator <[EMAIL PROTECTED]> > Davy Temperley <[EMAIL PROTECTED]> > John Lafferty <[EMAIL PROTECTED]> > * URL : http://www.link.cs.cmu.edu/link/index.html > * License : BSD > Description : Carnegie Mellon University's link grammar parser for > English > > In Selator, D. and Temperly, D. "Parsing English with a Link Grammar" > (1991), the authors defined a new formal grammatical system called a > "link grammar". A sequence of words is in the language of a link > grammar if there is a way to draw "links" between words in such a way > that the local requirements of each word are satisfied, the links do > not cross, and the words form a connected graph. The authors encoded > English grammar into such a system, and wrote this program to parse > English using this grammar. > . > This package can be used for linguistic parsing for information > retrieval or extraction from natural language documents. Abiword also > uses it as a grammar checker. > > *** end description *** > > I am not a DD, and I will need a sponsor to upload this package. > I am a graduate student in the Lingusitic Cognition Laboratory in the > Computer Science Department at Illinois Institute of Technology, and > as such this package is useful to me. If anyone who sees this is > interested in sponsoring my uploads, please email me. > > --Ken Bloom Packages for i386 and amd64 and sources are now available at http://lingcog.iit.edu/~bloom/link-grammar/ --Ken Bloom -- I usually have a GPG digital signature included as an attachment. See http://www.gnupg.org/ for info about these digital signatures. signature.asc Description: OpenPGP digital signature
Bug#339014: Updated Korean translation for console-data
Package: console-data Tags: l10n Corrected a few fuzzy messages. -- Sunjae Park(daréhanl) We choose to go to the moon and do the other things, not because they are easy, but because they are hard. - John F. Kennedy - # console-data # Changwoo Ryu <[EMAIL PROTECTED]>, 2004. # Sunjae Park <[EMAIL PROTECTED]>, 2005. # # msgid "" msgstr "" "Project-Id-Version: console-data\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-11-14 06:19-0700\n" "PO-Revision-Date: 2005-11-14 23:09+0900\n" "Last-Translator: Sunjae Park <[EMAIL PROTECTED]>\n" "Language-Team: Korean <[EMAIL PROTECTED]>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "by" msgstr "벨ë¼ë£¨ìì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "bg" msgstr "ë¶ê°ë¦¬ì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "croat" msgstr "í¬ë¡ìí°ì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "cz-lat2" msgstr "ì²´ì½" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "sg-latin1" msgstr "ì¤ìì¤ ë ì¼ì´" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "de-latin1-nodeadkeys" msgstr "ë ì¼ (ë°ëí¤ ìì)" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "dk-latin1" msgstr "ë´ë§í¬" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "us" msgstr "미êµ" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "uk" msgstr "ìêµ" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "dvorak" msgstr "ëë³´ë½" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "et" msgstr "ìì¤í ëì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "la-latin1" msgstr "ë¼í´ ìë©ë¦¬ì¹´" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "es" msgstr "ì¤íì¸ì´" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "fi-latin1" msgstr "íëë" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "fr-latin9" msgstr "íëì¤ (ì ë¡ ê¸°í¸ í¬í¨)" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 msgid "fr-latin1" msgstr "íëì¤" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "be2-latin1" msgstr "벨기ì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "cf" msgstr "ìºëë¤ íëì¤ì´" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "fr_CH-latin1" msgstr "ì¤ìì¤ íëì¤ì´" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "gr" msgstr "gr" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "hebrew" msgstr "íë¸ë¦¬ì´" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "hu" msgstr "íê°ë¦¬ì´" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "is-latin1" msgstr "ìì´ì¬ëë" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "it" msgstr "ì´í리ì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "lt" msgstr "리í¬ìëì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "lv-latin4" msgstr "ë¼í¸ë¹ì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "jp106" msgstr "ì¼ë³¸ (106í¤)" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "mk" msgstr "ë§ì¼ëëì" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "no-latin1" msgstr "ë ¸ë¥´ì¨ì´" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-at.templates:3 msgid "nl" msgstr "ë¤ëëë" #. Type: select #. Choices #: ../console-keymaps-acorn.templates:3 ../console-keymaps-a
Bug#339015: samba: NT_STATUS_ACCESS_DENIED when trying to print via cups
Package: samba Version: 3.0.14a-3 Severity: important Hi I have two samba servers with attached printers (epsonSC880 and hp895cxi). Both have been printing fine (from Debian and Windows clients) for several months however, in the last few weeks this machine with the HP printer wouldn't print. I can print a test page from the server itself but clients can't seem to access the printer. I've had a number of attempts to troubleshoot the problem without success. I've compared the smb.conf files of both and they are configured broadly in the same manner. Access to the shares on the server work OK, it is only printing that presents a problem. If I delete the printer on a windows client and reinstall, it prints but if I reboot the client, it stops working again. Using the cups web interface on a Debian client I've deleted and reinstalled the printer and it reports that the printer is successfully installed and is 'idle, ready to print'. However, trying to print gives the error above. On the samba site I found this: [WHATSNEW-3-0-21rc1.txt] ... the python bindings. * BUG 1864: Add sd->type field to security descriptor Python representation. * Return an error if a Netapp filer returns NT_STATUS_ACCESS_DENIED when trying to return the security descriptor for a file. * BUG 1884: Fixes for the Python bindings to use the value of the desired ... http://de.samba.org/samba/ftp/rc/WHATSNEW-3-0-21rc1.txt 11/11/05, 212069 bytes Which I guess may be related. The printer section of the smb.conf is as follows: ## Printing ## # If you want to automatically load your printer list rather # than setting them up individually then you'll need this load printers = yes # lpr(ng) printing. You may wish to override the location of the # printcap file ; printing = bsd ; printcap name = /etc/printcap # CUPS printing. See also the cupsaddsmb(8) manpage in the # cupsys-client package. printing = cups printcap name = cups # When using [print$], root is implicitly a 'printer admin', but # you can # also give this right to other users to add drivers and set # printer # properties ; printer admin = @ntadmin and the printer share: [printers] comment = All Printers browseable = yes printable = yes public = yes create mode = 0700 guest ok = yes guest only = yes use client driver = yes path = /tmp If you need anything else, let me know. The 'Epson' server is unaffected and they are both running the same software. Thanks Clive -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.8-2-686 Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1) Versions of packages samba depends on: ii debconf [debconf-2.0] 1.4.30.13 Debian configuration management sy ii libacl12.2.23-1 Access control list shared library ii libattr1 2.4.16-1 Extended attribute shared library ii libc6 2.3.2.ds1-22 GNU C Library: Shared libraries an ii libcomerr2 1.37-2sarge1 common error description library ii libcupsys2-gnutls101.1.23-10 Common UNIX Printing System(tm) - ii libkrb53 1.3.6-2sarge2 MIT Kerberos runtime libraries ii libldap2 2.1.30-8 OpenLDAP libraries ii libpam-modules 0.76-22 Pluggable Authentication Modules f ii libpam-runtime 0.76-22 Runtime support for the PAM librar ii libpam0g 0.76-22 Pluggable Authentication Modules l ii libpopt0 1.7-5 lib for parsing cmdline parameters ii logrotate 3.7-5 Log rotation utility ii netbase4.21 Basic TCP/IP networking system ii samba-common 3.0.14a-3 Samba common files used by both th -- debconf information: samba/nmbd_from_inetd: * samba/run_mode: daemons samba/log_files_moved: samba/tdbsam: false * samba/generate_smbpasswd: false -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338046: Debian Bug#338046: whizzytex: einitex unavailable from tetex and no longer functions.
On 13.11.05 Frank Küster ([EMAIL PROTECTED]) wrote: > Hilmar Preusse <[EMAIL PROTECTED]> wrote: Hi, > > I guess a much better idea is to use the interface provide by > > fmtutil if you need additional formats. In the "Debian TeX > > policy" (from tex-common) we mention that. In the Version as of > > 18th of July it is not written clearly how to use it. This needs > > work, if not done yet. I'll have a look at that. > > I'm not sure that fmtutil is the method of choice here - remember > that whizzytex users dump a format for each file they edit. > Sorry didn't know that! I just thought: Just another format generating package. H. -- "... the Mayo Clinic, named after its founder, Dr. Ted Clinic ..." -- Dave Barry http://www.hilmar-preusse.de.vu/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339016: hb_standby: man page of hb_standby is misleading
Package: heartbeat-2 Version: 2.0.2-5 Severity: normal File: hb_standby Hi, The example in the man page of hb_standby is misleading. The resource are called drbd0 / drbd1, however there are called r0, r1 in /etc/drbd.conf. This was corrected on http://wiki.linux-ha.org/hb_5fstandby See also http://wiki.linux-ha.org/GettingStarted_2fDRBD where it is specified that "web above (the parameter to datadisk or drbddisk) is the resource name you chose for the resource section in drbd.conf, not the device (unless you chose to give your resources device names...)". So the example should read nodea drbddisk::r0 Filesystem::/dev/drbd0::/local/groups::ext3 10.0.0.1 smb nodeb drbddisk::r1 Filesystem::/dev/drbd1::/local/ldap::ext3 10.0.0.2 ldap Thanks, Yann -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.14-drdb-1 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Versions of packages heartbeat-2 depends on: ii adduser3.63 Add and remove users and groups ii iproute20041019-3Professional tools to control the ii iputils-ping 3:20020927-2 Tools to test the reachability of ii libbz2-1.0 1.0.2-7 high-quality block-sorting file co ii libc6 2.3.5-6 GNU C Library: Shared libraries an ii libglib2.0-0 2.8.3-1 The GLib library of C routines ii libltdl3 1.5.20-2 A system independent dlopen wrappe ii libnet11.1.2.1-2 library for the construction and h ii libopenipmi0 2.0.2-2 Intelligent Platform Management In ii libsensors31:2.9.2-4 library to read temperature/voltag ii libsnmp9 5.2.1.2-4 NET SNMP (Simple Network Managemen ii libssl0.9.80.9.8a-2 SSL shared libraries ii libuuid1 1.37-2sarge1 universally unique id library ii libwrap0 7.6.dbs-8 Wietse Venema's TCP wrappers libra ii libxml22.6.22-1 GNOME XML library ii python 2.3.5-2 An interactive high-level object-o ii zlib1g 1:1.2.2-4.sarge.2 compression library - runtime -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339017: fbpanel man page: config file path wrong
Package: fbpanel Version: 4.1-2 the man page says that the default configuration is at PREFIX/share/fbpanel in fact it seems to be at /etc/fbpanel. I am using Ubuntu 5.10, but I believe that this bug has come from upstream. I shall report in malone aswell. ___ Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail http://uk.messenger.yahoo.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339018: runit: leaves /sbin/runit.old if purged after upgrade
Package: runit Version: 1.3.1-1 Testing runit with piuparts, the upgrade test from sarge to etch to sid gives the following error: 1m44.5s ERROR: Package purging left files on system: /sbin/runit.old The preinst script seems to create the link, but there isn't anything to remove it. -- i++; /* TODO: make this pre-increment - more efficient */ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339019: [patch] Bug in Smokeping.pm: URL should contain $cgivar
Package: smokeping Version: 1.38-3 Severity: normal Tags: patch Hello Smokeping has a little bug in Smokeping.pm. It is triggered when the smokeping host is reachable not by its hostname but e.g. due to ProxyPass by a different hostname. In this case the $cgiurl that can be set in the config should be used but sadly is not used. The following patch solves the problem: --- old/lib/Smokeping.pm.orig 2005-03-13 13:58:57.0 +0100 +++ new/lib/Smokeping.pm2005-11-14 15:49:48.867229239 +0100 @@ -866,7 +866,7 @@ { menu => target_menu($cfg->{Targets}, [EMAIL PROTECTED], #copy this because it gets changed - ($q->script_name() || '')."?target="), + $cfg->{General}->{cgiurl}."?target="), title => $tree->{title}, remark => ($tree->{remark} || ''), overview => get_overview( $cfg,$q,$tree,$open ), bye, -christian- -- System Information: Debian Release: 3.1 Architecture: i386 (i686) Kernel: Linux 2.6.8-2-686 Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-15) (ignored: LC_ALL set to [EMAIL PROTECTED]) Versions of packages smokeping depends on: ii echoping5.2.0-2 A small test tool for TCP servers ii fping 2.4b2-to-ipv6-10 sends ICMP ECHO_REQUEST packets to ii librrds-perl1.0.49-1 Time-series data storage and displ pn libsnmp-session-perl Not found. ii perl [libdigest-md5-per 5.8.4-8 Larry Wall's Practical Extraction ii speedy-cgi-perl 2.22-1 speed up perl scripts by making th -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#331178: NMU in delayed queue
user [EMAIL PROTECTED] usertag 331178 + nmu-in-delayed-queue usertag 331178 - intend-to-nmu stop I've uploaded an NMU to the delayed queue, using the following patch. If you would like to prevent this upload from hitting unstable, you can upload a MU within the next 7 days. diff -urN gambas-1.0.3.orig/debian/changelog gambas-1.0.3/debian/changelog --- gambas-1.0.3.orig/debian/changelog 2005-11-14 07:35:54.0 -0700 +++ gambas-1.0.3/debian/changelog 2005-11-14 07:38:48.0 -0700 @@ -1,3 +1,11 @@ +gambas (1.0.3-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Add a missing include directive to avoid an implicitly converted return pointer +from htmlParseDoc() (Closes: #331178) + + -- dann frazier <[EMAIL PROTECTED]> Mon, 14 Nov 2005 07:37:48 -0700 + gambas (1.0.3-1.1) unstable; urgency=low * Non-maintainer upload. diff -urN gambas-1.0.3.orig/src/lib/xml/libxml/CXMLDocument.c gambas-1.0.3/src/lib/xml/libxml/CXMLDocument.c --- gambas-1.0.3.orig/src/lib/xml/libxml/CXMLDocument.c 2004-10-11 06:20:51.0 -0600 +++ gambas-1.0.3/src/lib/xml/libxml/CXMLDocument.c 2005-11-14 07:37:39.0 -0700 @@ -29,6 +29,7 @@ #include #include #include +#include #include "main.h" #include "CXMLDocument.h" -- dann frazier <[EMAIL PROTECTED]> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#207874: libkpathsea3: cannot upgrade when /usr/doc symlink to /usr/share/doc
On 30.08.03 Tim Connors ([EMAIL PROTECTED]) wrote: Hi, > The -e flag means that when rm -f returns 1 in libkpathsea3.postinst > when it can't rm the directory (because /usr/doc/tetex-lib is a > direcory, not a symlink, because I have symlinked /usr/share/doc back > to the old /usr/doc (which I prefer)). This breaks no other packages, > so I presume it is a libkpathsea3 bug. > > A simple workaround for me was just to remove the -e flag to sh. > > #!/bin/sh > > if [ "$1" = "configure" ]; then > ldconfig > fi > > rm -f /usr/doc/tetex-lib > > That bug has the tag wontfix. Another simple approach would be to remove the offending code now and then close that bug. The tetex-lib -> libkpathsea transition should be over for a while now: tetex-bin (1.0.7+2807-6) unstable; urgency=low * rename tetex-lib to libkpathsea3 (closes: #69421, #78741) -- Christoph Martin uni-mainz.de> Sun, 10 Dec 2000 16:46:55 +0100 H. -- sigmentation fault -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#337185: 'man pinfo' typos: "specifing" and "usualy"
package pinfo tag 337185 + fixed-upstream tag 337185 + pending thanks Hi! > Found a few typos in '/usr/share/man/man1/pinfo.1.gz', see attached '.diff'. Thansk for you report! I've committed the fix to upstream svn (rev 270), so it should be in the next release. -- Kind regards, ++ | Bas Zoetekouw | GPG key: 0644fab7 | || Fingerprint: c1f5 f24c d514 3fec 8bf6 | | [EMAIL PROTECTED], [EMAIL PROTECTED] | a2b1 2bae e41f 0644 fab7 | ++ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338935: ocaml-ssl - FTBFS: Fatal error: the file install is not a bytecode executable file
reassign 338935 ocaml-findlib thanks Bastian Blank wrote: > Package: ocaml-ssl > Version: 0.3.1-2 > Severity: serious > > There was an error while trying to autobuild your package: > > >>Automatic build of ocaml-ssl_0.3.1-2 on debian01 by sbuild/s390 69 > > [...] > >>make[2]: Entering directory `/build/buildd/ocaml-ssl-0.3.1/src' >>/usr/bin/ocamlfind install ssl META ssl.mli ssl_threads.mli ssl.cmi >>ssl_threads.cmi ssl.cma ssl_threads.cma libssl_stubs.a libssl_threads_stubs.a >>dllssl_stubs.so dllssl_threads_stubs.so >>Fatal error: the file install is not a bytecode executable file >>make[2]: *** [install] Error 2 >>make[2]: Leaving directory `/build/buildd/ocaml-ssl-0.3.1/src' >>make[1]: *** [install] Error 2 >>make[1]: Leaving directory `/build/buildd/ocaml-ssl-0.3.1' >>make: *** [install] Error 2 >>** >>Build finished at 20051113-2151 >>FAILED [dpkg-buildpackage died] Right. Apparently the problem is that ocamlfind is stripped on non-native archs also (and thus there's no bytecode...). Regards, Samuel. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339021: unzip: incorrectly converts cyrillic file names from Windows-created ZIPs
Package: unzip Version: 5.52-3 Severity: important Tags: patch l10n Problem: ZIP-files created on Windows have cyrillic file names encoded in CP866 codepage. unzip incorrectly converts them as being CP850 to CP1252 and renders cyrillic filenames to be unreadable. Example: $ unzip -l pikalov1.zip Archive: pikalov1.zip Length Date TimeName 3103866 11-09-05 19:43 05. ╩╚╪║╞ ╫╞М©╪А╢, ╩╚╪║╞.mp3 3193521 11-09-05 19:43 01. Х╫я║ ты ╪╚╝ ╚╩АСч©╝.mp3 3451644 11-09-05 19:43 02. ЪАЗА║щ ты ╪╚╢, ЪАЗА║щ.mp3 2819472 11-09-05 19:43 03.ьу Сы ъА║©, ъА║©.mp3 3375333 11-09-05 19:43 04. е©ъЩ╪╚ ╛ ╪Атяс©.mp3 --- 15943836 5 files I think this greately affects interoperability with other systems. It seems it also affects graphical front archiver tools like file-roller. Known solution: There is a patch in russian distro Altlinux, that adds `smart' filename encoding detection based on locale as well as command line switches to specify file name encoding explicitely. The details are available here (in Russian): https://bugzilla.altlinux.ru/show_bug.cgi?id=4871 I attach their patch to this bug report (it is for 5.50, yet it works for me with 5.52). Example is below: $ ~/tmp/unzip-5.52/unzip -l pikalov1.zip Archive: pikalov1.zip Length Date TimeName 3103866 11-09-05 19:43 05. Я помню любимая, помню.mp3 3193521 11-09-05 19:43 01. Клен ты мой опавший.mp3 3451644 11-09-05 19:43 02. Шаганэ ты моя, Шаганэ.mp3 2819472 11-09-05 19:43 03.Эх вы сани, сани.mp3 3375333 11-09-05 19:43 04. Письмо к матери.mp3 --- 15943836 5 files -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.8-2-686 Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R) Versions of packages unzip depends on: ii libc6 2.3.5-6GNU C Library: Shared libraries an unzip recommends no packages. -- no debconf information diff -Nur unzip-5.50.orig/unix/unix.c unzip-5.50/unix/unix.c --- unzip-5.50.orig/unix/unix.c 2002-01-22 01:54:42 +0300 +++ unzip-5.50/unix/unix.c 2004-07-27 22:42:19 +0400 @@ -29,6 +29,9 @@ #define UNZIP_INTERNAL #include "unzip.h" +#include +#include + #ifdef SCO_XENIX # define SYSNDIR #else /* SCO Unix, AIX, DNIX, TI SysV, Coherent 4.x, ... */ @@ -1524,3 +1527,89 @@ } } #endif /* QLZIP */ + + +typedef struct { +char *local_charset; +char *archive_charset; +} CHARSET_MAP; + +/* A mapping of local <-> archive charsets used by default to convert filenames + * of DOS/Windows Zip archives. Currently very basic. */ +static CHARSET_MAP dos_charset_map[] = { +{ "ANSI_X3.4-1968", "CP850" }, +{ "ISO-8859-1", "CP850" }, +{ "CP1252", "CP850" }, +{ "CP1251", "CP866" }, +{ "KOI8-R", "CP866" }, +{ "KOI8-U", "CP866" }, +{ "ISO-8859-5", "CP866" } +}; + +char OEM_CP[MAX_CP_NAME] = ""; +char ISO_CP[MAX_CP_NAME] = ""; + +/* Try to guess the default value of OEM_CP based on the current locale. + * ISO_CP is left alone for now. */ +void init_conversion_charsets() +{ +const char *local_charset; +int i; + +/* Make a guess only if OEM_CP not already set. */ +if(*OEM_CP == '\0') { + local_charset = nl_langinfo(CODESET); + for(i = 0; i < sizeof(dos_charset_map)/sizeof(CHARSET_MAP); i++) + if(!strcasecmp(local_charset, dos_charset_map[i].local_charset)) { + strncpy(OEM_CP, dos_charset_map[i].archive_charset, + sizeof(OEM_CP)); + break; + } +} +} + +/* Convert a string from one encoding to the current locale using iconv(). + * Be as non-intrusive as possible. If error is encountered during covertion + * just leave the string intact. */ +static void charset_to_intern(char *string, char *from_charset) +{ +iconv_t cd; +char *s, *d, *buf; +size_t slen, dlen, buflen; +const char *local_charset; + +if(*from_charset == '\0') + return; + +buf = NULL; +local_charset = nl_langinfo(CODESET); + +if((cd = iconv_open(local_charset, from_charset)) == (iconv_t)-1) +return; + +slen = dlen = buflen = strlen(string); +s = string; +d = buf = malloc(buflen + 1); +if(!d) + goto cleanup; + +if(iconv(cd, &s, &slen, &d, &dlen) == (size_t)-1) + goto cleanup; +strncpy(string, buf, buflen); + +cleanup: +free(buf); +iconv_close(cd); +} + +/* Convert a string from OEM_CP to the current locale charset. */ +inline void oem_intern(char *string) +{ +charset_to_intern(string, OEM_CP); +} + +/* Convert a string from ISO_CP to the current locale charset. */ +inline void iso_intern(char *string) +{ +charset_to_intern(string, ISO_CP); +} diff -Nur unzip-5.50.orig/unix/unxcfg.h
Bug#339022: firefox: remote and local Firefox session not separated
Package: firefox Version: firefox Severity: normal Hi, thank you for maintaining the Firefox packages. We love you guys! Today I opened a remote xterm via "ssh -X $IP xterm". From the xterm I called firefox. I was amazed to find out that FF came up with my local bookmarks and starting page. It turned out that FF was running locally, not remotely. Upon closer inspection it became clear that whenever an FF process is already running locally, calling the process remotely still launches FF locally. The opposite is also true. I quit all FF processes and called it remotely which succeeded. Launching it from a local console then does nothing but open another remote FF process. Konqueror behaves sanely in this respect so I assume it has to do with FF itself. Best regards Rolf -- 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_US.utf8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#339023: initscripts: umountroot fails if / is bind-mounted somewhere
Subject: initscripts: umountroot fails if / is bind-mounted somewhere Package: initscripts Version: 2.86.ds1-5 Severity: wishlist Tags: patch I ran into a subtle problem with my amd64 computer which drove me crazy for a while, until I tracked it down. Upon shutdown or reboot, the root filesystem would not be unmounted nor be remounted readonly, with the result that I always had a dirty root filesystem. It was not a big issue, since it always had time to settle and write buffers to disk, but it was annoying. I finally found out that this was due to having the root director bind-mounted by default on a chroot cage (I run an amd64 bit system and have a chrooted i386 installation for compatibility reasons). Upon shutting down, when trying to umount the root filesystem umountroot found the line saying //ia32/amd64nonebind0 3 and tried to umount that instead of the root filesystem, which remained mounted rw. Since in the sid version of mount it is possible to specify that the command must be applied only to filesystems mounted with (or without) some given options, I solved my problem by replacing the line mount -n -o remount,ro / in the umountroot script with mount -n -O no bind -o remount,ro / With the above, the root filesystem may have been bind-mounted any number of times and it will cause no problems, since the bind mounts have been umounted already at this stage and the "-O no bind" options tell mount to ignore any entries referring to bind mounts. While this is a rather peculiar problem, it is one which is common to any people who bind-mount the root filesystem anywhere, and is trivial to fix with no side-effects, with the one-liner above. It would also be nice to come up with a solution which works on sarge as well as with sid, but I did not dig into it since I run sid... best regards Giacomo -- 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.14-turion64-jak Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL set to it_IT.UTF-8) Versions of packages initscripts depends on: ii coreutils 5.93-2 The GNU core utilities ii dpkg 1.13.11package maintenance system for Deb ii e2fsprogs 1.38-2 ext2 file system utilities and lib ii libc6 2.3.5-7GNU C Library: Shared libraries an ii lsb-base 3.0-11 Linux Standard Base 3.0 init scrip ii util-linux2.12p-8Miscellaneous system utilities initscripts recommends no packages. -- no debconf information -- _ Giacomo Mulas <[EMAIL PROTECTED]> _ OSSERVATORIO ASTRONOMICO DI CAGLIARI Str. 54, Loc. Poggio dei Pini * 09012 Capoterra (CA) Tel. (OAC): +39 070 71180 248 Fax : +39 070 71180 222 Tel. (UNICA): +39 070 675 4916 _ "When the storms are raging around you, stay right where you are" (Freddy Mercury) _ -- Il messaggio e' stato analizzato alla ricerca di virus o contenuti pericolosi da MailScanner, ed e' risultato non infetto. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#338639: Debian INSTALL REPORT
On Fri, Nov 11, 2005 at 05:15:34PM +, ptb wrote: > Package: installation-reports > > INSTALL REPORT > > Debian-installer-version: got the image> 2005 Oct (12) from Steve McIntyre - binary > -z386 2xDVD > > uname -a: > Linux debian3-1r0a 2.6.8-2-386 #1 Thu May 19 17:40:50 JST 2005 i686 GNU/Linux > > Date: 2005 Nov. 9 Wednesday > > Method: How did you install? From DVD using the two DVDs. > After a couple of earlier part-failures, this time I skipped > the last steps and went straight to 'finish the base > install', after which I rebooted with nothing added. > > What did you boot off? If network install, from where? > Proxied? Just from the hard drive. > > Machine: > SOYO 6BA+ IV-2BA5 > > Processor: PENTIUM III 100 X 4.5 = 450MHz Id. 0673H > > Memory: 256MHz SDRAM (passed Memtest86 v.1.60) > > Root Device: Maxtor 41.1Gb > GE040L0 IDE HDD > > Root Size/partition table: Feel free to paste the full partition > table, with notes on which partitions are mounted where. > > 2005_November_11_Friday___14:45:31z > > # sfdisk -l > Disk /dev/hda: 79656 cylinders, 16 heads, 63 sectors/track > Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0 > >Device Boot Start End #cyls#blocks Id System > /dev/hda1 0+ 1 2- 16033+ 6 FAT16 > /dev/hda2 * 2 181 1801445850 83 Linux > /dev/hda3182 235 54 433755 82 Linux swap / Solaris > /dev/hda423649974762 382507655 Extended > /dev/hda5236+355 120-963868+ 6 FAT16 > /dev/hda6356+ 1255 900- 7229218+ 83 Linux > /dev/hda7 1256+ 1375 120-963868+ 83 Linux > /dev/hda8 1376+ 1675 300- 2409718+ 83 Linux > /dev/hda9 1676+ 2575 900- 7229218+ 83 Linux > /dev/hda10 2576+ 2935 360- 2891668+ 83 Linux > /dev/hda11 2936+ 3295 360- 2891668+ 83 Linux > /dev/hda12 3296+ 4195 900- 7229218+ 83 Linux > /dev/hda13 4196+ 4997 802- 6442033+ 83 Linux > > Disk /dev/hdc: 8940 cylinders, 15 heads, 63 sectors/track > Units = cylinders of 483840 bytes, blocks of 1024 bytes, counting from 0 > >Device Boot Start End #cyls#blocks Id System > /dev/hdc1 * 0+ 19992000-944968+ 6 FAT16 > /dev/hdc2 200059994000189 83 Linux > /dev/hdc3 6000893929401389150 83 Linux > /dev/hdc4 0 - 0 00 Empty > > df -a > Filesystem 1K-blocks Used Available Use% Mounted on > /dev/hda2 1445772102764 1343008 8% / > proc 0 0 0 - /proc > sysfs0 0 0 - /sys > devpts 0 0 0 - /dev/pts > tmpfs 128480 0128480 0% /dev/shm > /dev/hda9 7228956 32840 7196116 1% /0A > /dev/hda10 2891552 32840 2858712 2% /0B > /dev/hda11 2891552 32840 2858712 2% /0C > /dev/hda5 963616 0963616 0% /DOSTOOLS > /dev/hda12 7228956 32840 7196116 1% /RESERVED > /dev/hda8 2409584 32848 2376736 2% /home > /dev/hda6 7228956713128 6515828 10% /usr > /dev/hda7 963804152044811760 16% /var > usbfs0 0 0 - /proc/bus/usb > > fstab > # /etc/fstab: static file system information. > # > # > proc/proc procdefaults0 0 > /dev/hda2 / reiserfs notail 0 1 > /dev/hda9 /0A reiserfs defaults0 2 > /dev/hda10 /0B reiserfs defaults0 2 > /dev/hda11 /0C reiserfs defaults0 2 > /dev/hda5 /DOSTOOLS vfatdefaults0 2 > /dev/hda12 /RESERVED reiserfs defaults0 2 > /dev/hda8 /home reiserfs defaults0 2 > /dev/hda6 /usrreiserfs defaults0 2 > /dev/hda7 /varreiserfs defaults0 2 > /dev/hda3 noneswapsw 0 0 > /dev/hdb/media/cdrom0 iso9660 ro,user,noauto 0 0 > /dev/fd0/media/floppy0 autorw,user,noauto 0 0 > /dev/fd1/media/floppy1 autorw,user,noauto 0 0 > > #/etc/mtab > /dev/hda2 / reiserfs rw,notail 0 0 > proc /proc proc rw 0 0 > sysfs /sys sysfs rw 0 0 > devpts /dev/pts devpts rw,gid=5,mode=620 0 0 > tmpfs /dev/shm tmpfs rw 0 0 > /dev/hda9 /0A reiserfs rw 0 0 > /dev/hda10 /0B reiserfs rw 0 0 > /dev/hda11 /0C reiserfs rw 0 0 > /dev/hda5 /DOSTOOLS vfat rw 0 0 > /dev/hda12 /RESERVED reiserfs rw 0 0 > /dev/hda8 /home reiserfs rw 0 0 > /dev/hda6 /usr reiserfs rw 0 0 > /dev/h
Bug#339024: apt-move: complains about EOF on /tmp/MOVE_xxx/movefiles-fifo1
Package: apt-move Version: 4.2.24-1 Severity: normal Hi, The command apt-move update return the following: [EMAIL PROTECTED] % apt-move update ~/paquets-debian/cache Moving files... unexpected eof encountered on /tmp/MOVE_gPSaM7/movefiles-fifo1 xargs: md5sum a termin? son ex?cution par le signal 13 Unknown error: domove: 1. attached my conf file. This used to work few days ago... runig the script with set -x gives these (last) lines: + mkdir /tmp/MOVE_q5m3Nh/movefiles/deb /tmp/MOVE_q5m3Nh/movefiles/dsc + [ yes ] + xargs -r md5sum + awk -f /usr/share/apt-move/cmpbignum.awk -f /usr/share/apt-move/cmpversion.awk -f /usr/share/apt-move/getdist.awk -f /usr/share/apt-move/move4 /tmp/MOVE_q5m3Nh/movefiles/deb /tmp/MOVE_q5m3Nh/movefiles-fifo1 /tmp/MOVE_q5m3Nh/movefiles-skip1 /tmp/MOVE_q5m3Nh/movefiles-pkg no + xargs -r stat -L -c %s unexpected eof encountered on /tmp/MOVE_q5m3Nh/movefiles-fifo1 + err=1 + set +e + CHILDREN= + [ -n ] + wait + rm -rf /tmp/MOVE_q5m3Nh + [ ] + getout domove 1 + [ ] + printerr domove 1 + echo Unknown error: domove: 1. Unknown error: domove: 1. + GETOUT=yes + exit 1 regards Jean-Luc -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (900, 'unstable') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.14-k8-4 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages apt-move depends on: ii apt [libapt-pkg-libc6.3-6-3.1 0.6.42.3 Advanced front-end for dpkg ii bc1.06-17The GNU bc arbitrary precision cal ii dash 0.5.2-8The Debian Almquist Shell ii libc6 2.3.5-7GNU C Library: Shared libraries an ii libgcc1 1:4.0.2-3 GCC support library ii libstdc++64.0.2-3The GNU Standard C++ Library v3 Versions of packages apt-move recommends: ii apt 0.6.42.3 Advanced front-end for dpkg -- no debconf information # Configuration file for the apt-move script. # # You should modify the following configuration to suit your system. # See the apt-move(8) manpage for information about these settings. # # The defaults for this file are simply the settings I currently use. # Configuration for apt-move script -- # The sites in ``/etc/apt/sources.list'' that you wish to mirror. APTSITES="/all/" # The absolute path to your debian directory (top of your local mirror). # This MUST appear as the first entry of your sources.list if you use # sync or mirror. LOCALDIR=/mirrors/debian # The default distribution (see the apt-move(8) manpage for details) DIST=unstable # The package types you want to mirror. # Possible values are: binary, source, and both (use only one). PKGTYPE=binary # The full (absolute) path to your local cache of package files. The default # will work for the apt-get packages, unless you've reconfigured apt. FILECACHE=/home/jean-luc/paquets-debian/cache # The full (absolute) path to your local cache of Packages files. The # default will work for the apt-get Packages, unless you've reconfigured apt. LISTSTATE=/var/lib/apt/lists # Do you want apt-move to delete obsolete files from your mirror? (yes/no) DELETE=yes # Maximum percentage of files to delete during a normal run. MAXDELETE=20 # Set this to yes if you wish to keep the originals for move/movefile. COPYONLY=no # Set this to 'none gzip' to get uncompressed Packages/Sources files. PKGCOMP=gzip # Set this to yes to make apt-move generate Contents files. CONTENTS=no # Set this to key name to be used for signing Release files. SIGNINGKEY= # End Configuration --