Bug#345117: scribus should recommend python-imaging-tk
* C. Scott Ananian <[EMAIL PROTECTED]> [2005-12-26 20:22:59 -0500]: > Package: scribus > Version: 1.2.2.1.dfsg+cvs20050829-1 > Severity: normal > > The FontSample script included with Scribus wants the python-imaging-tk > package installed in order to display a font preview; thus the scribus > package should Suggests: it. > --scott Scott, Thank you for the report. I will add the appropriate Suggests on the next upload. Regards, Alex > -- 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.15-rc5 > Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) > > Versions of packages scribus depends on: > ii gs-esp 8.15.1.dfsg.1-1 The Ghostscript PostScript > interpr > ii gs-gpl 8.15-4 The GPL Ghostscript PostScript > int > ii libart-2.0-2 2.3.17-1Library of functions for 2D > graphi > ii libc62.3.5-9 GNU C Library: Shared libraries > an > ii libcupsys2 1.1.23-14 Common UNIX Printing System(tm) > - > ii libfreetype6 2.1.10-1FreeType 2 font engine, shared > lib > ii libgcc1 1:4.0.2-5 GCC support library > ii libice6 6.8.2.dfsg.1-11 Inter-Client Exchange library > ii libjpeg626b-11 The Independent JPEG Group's > JPEG > ii liblcms1 1.13-1 Color management library > ii libpng12-0 1.2.8rel-5 PNG library - runtime > ii libqt3-mt3:3.3.5-3 Qt GUI Library (Threaded runtime > v > ii libsm6 6.8.2.dfsg.1-11 X Window System Session > Management > ii libstdc++6 4.0.2-5 The GNU Standard C++ Library v3 > ii libtiff4 3.7.4-1 Tag Image File Format (TIFF) > libra > ii libx11-6 6.8.2.dfsg.1-11 X Window System protocol client > li > ii libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous > exte > ii libxml2 2.6.22-2GNOME XML library > ii python-tk2.3.5-3 Tkinter - Writing Tk > applications > ii python2.32.3.5-9 An interactive high-level > object-o > ii xlibs6.8.2.dfsg.1-11 X Window System client libraries > m > ii zlib1g 1:1.2.3-9 compression library - runtime > > Versions of packages scribus recommends: > ii gsfonts-x11 0.17Make Ghostscript fonts available > t > ii xfonts-scalable 6.8.2.dfsg.1-11 scalable fonts for X > > -- no debconf information > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#345120: ITP: ksalup -- Enhanced port of Winpopup for KDE
Package: wnpp Severity: wishlist * Package name : ksalup Upstream Author : Emmanul Zurmely <[EMAIL PROTECTED]> * URL : http://ksalup.sourceforge.net/ * License : GPL Description : Enhanced port of Winpopup for KDE KSalup is an enhanced port of Winpopup for KDE. It also allows the user to send and receive Winpopup messages over a local network (LAN). . KSalup supports two protocols : . Communication with a computer running Winpopup or using the NetBios protocol over TCP sending and receiving messages through Samba. . Communication with computers on a local subnet, using the Netbios protocol over UDP, compatible with almost all of the current softwares (Kurupop, Pipo p, Salup, Windows NT, ...)
Bug#345119: jabber-yahoo: gaim-sha.[hc] not 64-bit clean
Package: jabber-yahoo Severity: important Tags: sarge patch this might be specific to the amd64 architecture, but i figure it's a problem on any platform where sizeof(long) = 8. in migrating my jabber server from woody on 386 (using personal backports) to sarge on amd64, the yahoo transport broke. using a constant seed, peppering the code with printfs, and comparing the output on both platforms, i traced the problem to the sha algorithm in gaim-sha.[hc]. in the current jabber-yahoo version, the GAIM_SHA_CTX struct uses unsigned longs (32 bits on 386, 64 bits on AMD64). the latest/last version in gaim cvs uses guint32 (from glib), which i presume is explicitly 32 bits regardless of platform. plus gaim's version includes proper copyright attribution and explicit licensing. doing nothing more than using gaim's sha.h and appending "gaim_" or "GAIM_" where necessary to match the original version fixed the problem. thanks for maintaining jabber-yahoo. diff -urNp jabber-yahoo-2.3.2/debian/changelog jabber-yahoo-2.3.2.fix/debian/changelog --- jabber-yahoo-2.3.2/debian/changelog 2005-12-28 07:24:49.449918147 + +++ jabber-yahoo-2.3.2.fix/debian/changelog 2005-12-28 07:24:16.695029112 + @@ -1,3 +1,10 @@ +jabber-yahoo (2.3.2-1.1) stable; urgency=low + + * make gaim-sha.[hc] work on AMD64 by using glib's 32-bit type +http://cvs.sourceforge.net/viewcvs.py/*checkout*/gaim/gaim/src/Attic/sha.h + + -- Corey Wright <[EMAIL PROTECTED]> Wed, 28 Dec 2005 01:20:32 -0600 + jabber-yahoo (2.3.2-1) unstable; urgency=low * new upstream version (Closes: #258255) diff -urNp jabber-yahoo-2.3.2/gaim-sha.h jabber-yahoo-2.3.2.fix/gaim-sha.h --- jabber-yahoo-2.3.2/gaim-sha.h 2003-09-28 17:30:47.0 + +++ jabber-yahoo-2.3.2.fix/gaim-sha.h 2005-12-28 07:09:40.966517000 + @@ -1,22 +1,41 @@ -/* -#if (SIZEOF_INT == 4) -typedef unsigned int uint32; -#elif (SIZEOF_SHORT == 4) -typedef unsigned short uint32; -#else -typedef unsigned int uint32; -#endif HAVEUINT32 */ +/* + * The contents of this file are subject to the Mozilla Public + * License Version 1.1 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS + * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or + * implied. See the License for the specific language governing + * rights and limitations under the License. + * + * The Original Code is SHA 180-1 Reference Implementation (Compact version) + * + * The Initial Developer of the Original Code is Paul Kocher of + * Cryptography Research. Portions created by Paul Kocher are + * Copyright (C) 1995-9 by Cryptography Research, Inc. All + * Rights Reserved. + * + * Contributor(s): + * + */ +#ifndef _GAIM_SHA_H_ +#define _GAIM_SHA_H_ + +#include -int strprintsha(char *dest, int *hashval); - typedef struct { - unsigned long H[5]; - unsigned long W[80]; - int lenW; - unsigned long sizeHi,sizeLo; + guint32 H[5]; + guint32 W[80]; + int lenW; + guint32 sizeHi; + guint32 sizeLo; } GAIM_SHA_CTX; - + +int strprintsha(char *dest, int *hashval); void gaim_shaInit(GAIM_SHA_CTX *ctx); void gaim_shaUpdate(GAIM_SHA_CTX *ctx, unsigned char *dataIn, int len); void gaim_shaFinal(GAIM_SHA_CTX *ctx, unsigned char hashout[20]); void gaim_shaBlock(unsigned char *dataIn, int len, unsigned char hashout[20]); + +#endif /* _GAIM_SHA_H_ */
Bug#127778: not really a bug...
severity 127778 wishlist tags 127778 +wontfix thanks Using a positive value for the 'use' size of a holdingdisk definition in amanda.conf will indeed cause that amount of space to be used if available and needed for the current run, regardless of what "leftovers" may be on disk from previous runs. Nothing in the docs suggests otherwise. A reasonable workaround for preventing complete filesystem consumption is to specify a negative value for the 'use' size instead. This will cause Amanda to believe it can use whatever space is on the disk less that amount, in effect ensuring that a certain minimum amount of free space is left open. It is clearly a best practice to use a distinct filesystem/partition on the Amanda server for the holdingdisk space, in which case a value of 0 will allow Amanda to consume the entire filesystem if desired... or a negative number can be specified to ensure there's always a little free space available. Implementing the suggested changes would be a redefinition of upstream behavior, and after more than 3 years, I'm still not so inclined. Downgrading this bug to wishlist and tagging it wontfix to reflect that fact. Bdale -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#37078: bts procmail 2
Included is a second-attempt procmail config file which also handles control bot messages. -- Clear skies, Justin # This handles initial submissions ("Thank you for the problem # report...") and also followups ("Thank you for the additional # information..."). :0 * ^From: [EMAIL PROTECTED] \(Debian Bug Tracking System\)$ * ^Subject: Bug#\/[0-9]* |echo |mail "[EMAIL PROTECTED]" # This handles bug reports on which I've had an effect via the control # bot. :0 * ^To: Justin Pryzby <[EMAIL PROTECTED]>$ * ^From: [EMAIL PROTECTED] \(Debian Bug Tracking System\)$ * ^Subject: Processed: |grep -Eo '^Bug#[0-9]+:' |sed -e 's/^Bug#//' -e 's/:$/[EMAIL PROTECTED]/ ' |tr '\n' ',' |sed -e 's/^/To: /' -e 's/,$/\n/' |sendmail -t :0 * ^From: [EMAIL PROTECTED] * ^Subject: Please confirm subscription to [EMAIL PROTECTED] * ^Reply-To: \/[EMAIL PROTECTED] |echo |mail "$MATCH" :0 * ^From: [EMAIL PROTECTED] * ^Subject: Subscription to [EMAIL PROTECTED] successful$ Mail/bug_subscription_success
Bug#300760: changelog best practice
I agree with the sentiment which I think Bastian Blank is expressing. It is a documented best-practice to document what change caused each bug to be closed. http://www.us.debian.org/doc/manuals/developers-reference/ch-pkgs.en.html#s-upload-bugfix The idea is that bug reporters will get ample information in the 'close' message, rather than just a note that 'a bug you reported was fixed'. If the bugs were all fixed because of the "new upstream release", I would have expected the close entries to be indented below the comment for that release. Furthermore, since you are the upstream author, it should be simple to provide more information. -- Clear skies, Justin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#226139: seems easy to fix
tags 226139 +pending thanks It appears that if you don't explicitly tell it to do otherwise, Amanda will use the value of AMANDA_TMPDIR as the place to write debugging logs. There is a configure option to redirect these elsewhere, and I'll use it to push them to /var/log/amanda which is clearly a better place. In the process of researching this, I found and fixed a couple of typos in the latest source with respect to the handling of the AMANDA_DBGDIR constant, which suggests to me that this option to redirect the debugging logs is rarely used... Fixes are in my CVS for the next upload. Bdale -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#344478: slocate: does not work, "fatal error: set_path_head: path_head len <= 0: 0"
This is due to the slocate database format changing, and me forgetting to force a remove of the database upon upgrade. The next upload will fix this. A workaround is to just execute: /etc/cron.daily/slocate This will recreate the database and all should be good. Kevin- -- Kevin Lindsay <[EMAIL PROTECTED]> PGP Key Id: 746C51F4 signature.asc Description: Digital signature
Bug#345118: gstreamer0.10-plugins-base: Package doesn't install
Package: gstreamer0.10-plugins-base Version: 0.10.0-3 Severity: grave Justification: renders package unusable Unpacking gstreamer0.10-plugins-base (from /gstreamer0.10-plugins-base_0.10.0-3_i386.deb) ... dpkg: error processing /var/cache/apt/archives/gstreamer0.10-plugins-base_0.10.0-3_i386.deb (--unpack): trying to overwrite `/usr/lib/gstreamer-0.10/libgstadder.so', which is also in package gstreamer0.10-misc dpkg-deb: subprocess paste killed by signal (Broken pipe) Errors were encountered while processing: /var/cache/apt/archives/gstreamer0.10-plugins-base_0.10.0-3_i386.deb -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.9-1-k7 Locale: LANG=en_US.ISO-8859-1, [EMAIL PROTECTED] (charmap=ISO-8859-15) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#344754: fails to load ide-disk, doesn't find hdd
maximilian attems wrote: > could you try the attached hook file, > please place it under /usr/share/initramfs-tools/scripts/init-premount/ > and recreate the initramfs: update-initramfs -u > > hope it works, Yes, works ok here too. -- see shy jo signature.asc Description: Digital signature
Bug#345117: scribus should recommend python-imaging-tk
Package: scribus Version: 1.2.2.1.dfsg+cvs20050829-1 Severity: normal The FontSample script included with Scribus wants the python-imaging-tk package installed in order to display a font preview; thus the scribus package should Suggests: it. --scott -- 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.15-rc5 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) Versions of packages scribus depends on: ii gs-esp 8.15.1.dfsg.1-1 The Ghostscript PostScript interpr ii gs-gpl 8.15-4 The GPL Ghostscript PostScript int ii libart-2.0-2 2.3.17-1Library of functions for 2D graphi ii libc62.3.5-9 GNU C Library: Shared libraries an ii libcupsys2 1.1.23-14 Common UNIX Printing System(tm) - ii libfreetype6 2.1.10-1FreeType 2 font engine, shared lib ii libgcc1 1:4.0.2-5 GCC support library ii libice6 6.8.2.dfsg.1-11 Inter-Client Exchange library ii libjpeg626b-11 The Independent JPEG Group's JPEG ii liblcms1 1.13-1 Color management library ii libpng12-0 1.2.8rel-5 PNG library - runtime ii libqt3-mt3:3.3.5-3 Qt GUI Library (Threaded runtime v ii libsm6 6.8.2.dfsg.1-11 X Window System Session Management ii libstdc++6 4.0.2-5 The GNU Standard C++ Library v3 ii libtiff4 3.7.4-1 Tag Image File Format (TIFF) libra ii libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li ii libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte ii libxml2 2.6.22-2GNOME XML library ii python-tk2.3.5-3 Tkinter - Writing Tk applications ii python2.32.3.5-9 An interactive high-level object-o ii xlibs6.8.2.dfsg.1-11 X Window System client libraries m ii zlib1g 1:1.2.3-9 compression library - runtime Versions of packages scribus recommends: ii gsfonts-x11 0.17Make Ghostscript fonts available t ii xfonts-scalable 6.8.2.dfsg.1-11 scalable fonts for X -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#345116: ant: NullPointerException in XSLT with gij-4.1
Package: ant Version: 1.6.5-3 Severity: normal Tags: experimental Using libgcj7 4.1-0exp4 (experimental) I experience a NullPointerException when running the following rule: The interesting part of the exception is: java.lang.NullPointerException at gnu.xml.transform.ApplyTemplatesNode.clone (libgcj.so.7) at gnu.xml.transform.LiteralNode.clone (libgcj.so.7) at gnu.xml.transform.Template.clone (libgcj.so.7) at gnu.xml.transform.Stylesheet.clone (libgcj.so.7) at gnu.xml.transform.TemplatesImpl.newTransformer (libgcj.so.7) at org.apache.tools.ant.taskdefs.optional.TraXLiaison.createTransformer (TraXLiaison.java:228) where TraXLiaison.java:228 is the following line of code: transformer = templates.newTransformer(); I've written a simple testcase based on TraXLiaison.java to test whether the problem is in libgcj7, but for me it worked fine. Because this involved experimental packages, reproducing the problem is not entirely trivial. I've attached a full ant.log generated: $ ant --execdebug -l ant.log -v -d eclipse-plugin exec "/usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0//bin/java" -classpath "/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/xmlParserAPIs.jar:/usr/share/java/xercesImpl.jar" -Dant.home="/usr/share/ant" -Dant.library.dir="/usr/share/ant/lib" org.apache.tools.ant.launch.Launcher -cp "/home/nicholas/sable/soot/polyglot/trunk/lib/polyglot.jar:/home/nicholas/sable/soot/polyglot/trunk/lib/java_cup.jar:/home/nicholas/sable/soot/jasmin/trunk/lib/jasminclasses-2.1.1.jar:." "-l" "ant.log" "-v" "-d" "eclipse-plugin" except that because "java-1.4.2-gcj-4.1.../bin/java" is in a custom package, you'll need to replace it with "gij-wrapper-4.1" which works just as well and produces the same output. I'm using libgcj7 because it's the first release after the classpath 0.19 merge. Earlier versions don't have the gnu.xml.transform.Stylesheet class causing a failure much earlier. Thanks, Nick Lewycky -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.13.1 Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8) Versions of packages ant depends on: ii gij [java-virtual-machine]4:4.0.2-2 The GNU Java bytecode interpreter ii gij-3.3 [java1-runtime] 1:3.3.6-7 The GNU Java bytecode interpreter ii gij-4.0 [java1-runtime] 4.0.2-5j2 The GNU Java bytecode interpreter ii gij-4.1 [java1-runtime] 4.1-0exp4 The GNU Java bytecode interpreter ii j2re1.4 [java2-runtime] 1.4.1 Sun JDK v1.4.1 ii libxerces2-java 2.6.2-3Validating XML parser for Java wit ii sablevm [java1-runtime] 1.11.3-2 Free implementation of Java Virtua Versions of packages ant recommends: ii ant-optional 1.6.5-3Java based build tool like make - ii gcj-4.1 [java-compiler] 4.1-0exp4 The GNU compiler for Java(TM) ii jikes 1:1.22-3 Fast Java compiler adhering to lan ii jikes-sablevm [java-compiler] 1.11.3-2 Wrapper for jikes using classes fr -- debconf-show failed Adding reference: ant.PropertyHelper Detected Java version: 1.5 in: /usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0/jre Detected OS: Linux Adding reference: ant.ComponentHelper Setting ro project property: ant.version -> Apache Ant version 1.6.5 compiled on October 1 2005 Setting ro project property: ant.file -> /home/nicholas/sable/soot/trunk/build.xml Adding reference: ant.projectHelper Adding reference: ant.parsing.context Adding reference: ant.targets
Bug#345115: allows me to subscribe myself to a given bug multiple times
Package: bugs.debian.org, lists.debian.org Version: 20051229 Severity: minor b.d.o appears to allow me to subscribe multiple times to a given bug. For its own sake, and for a convenience to myself, it should either check before adding me again, and do nothing if I am already subscribed, or something to the effect of |sort -u. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#345040: linux-image-2.6.15-rc5-686: No console after logging out from Gnome/X in IBM Thinkpad T43
Jonas Smedegaard wrote: > On Thu, 29 Dec 2005 00:37:36 +0800 > LUK ShunTim <[EMAIL PROTECTED]> wrote: > > >>>This happens on a IBM Thinkpad T43 with the non-free ATI driver fglrx >>>8.20.8-1. > > > I believe not only non-free, but also unsupported. > > If possible then try switching to a driver provided with Debian and see > if the problem persists. If it does then we need to solve the problem, > if not then file a bug whereever you found your unsupported driver. > > > - Jonas > Thanks Jonas, but this driver is provided by debian, now. http://packages.debian.org/unstable/x11/fglrx-driver I'm not really competent enough to judge whether this problem is related to the kernel or the driver (or both) but I did not run into this problem with the older 2.6.12 kernel (driver compiled from same source using m-a). I looked at various logs and that's what I found. If it's not related to the kernel, I can file it against the driver. Thanks very much again, ST -- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#199094: Private Invite From Kitty Please join us
Private Invite Please join this site so that that we can chat live http://www.sexyhotstars.com Thanks Kitty -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#152152: Heather Is looking for you
Private Invite Please join this site so that that we can chat live http://www.sexyhotbod.com Thanks Heather -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#344032: bbdb also broken with vm under newest emacs
As a follow-up to the this bug report, now that this version of emacs21 is in testing, my mail setup also broke. Thanks to Roland for the snipped of how he fixed his setup for gnus, the following at the top of ~/.vm did the trick for me with vm: ; 28 Dec 2005 bbdb breakage after today's emacs upgrade: (setq load-path (cons (concat "/usr/share/emacs21/site-lisp/bbdb") load-path)) (setq load-path (cons (concat "/usr/share/emacs/site-lisp/bbdb/lisp") load-path)) (provide 'bbdb/load-path) (load-library "bbdb") (load-library "bbdb-com") (load-library "bbdb-vm") (provide 'bbdb-autoloads) ;; ;(bbdb-insinuate-vm) (bbdb-initialize 'vm) Regards, Dirk -- Hell, there are no rules here - we're trying to accomplish something. -- Thomas A. Edison -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#345112: (no subject)
mysql and openssh also have this problem. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#344594: RFS: gmysqlcc -- GTK+ client for mysql databases
Sorry for the late! Laszlo Boszormenyi wrote: It looks good, but I have some points: - please close your ITP from debian/changelog; Yes, at the moment I upload the package I did not have the ITP. - debian/README contains your changes to upstream source, but not debian/changelog; This is the initial debian release, do you think this is apropiate? I supouse you do, so I'll list it. - debian/rules is OK, but why don't you use debhelper and its dh_* commands? Because I am understanding the process as much I can, gcolor2 and alltray are using dh_*, this one is by-hand. This is for the first round. There may be others, but today I wish you all Merry Christmas! Merry Christmas and Happy New Year!!! On the first time in my office I'll update the package. Cheers, Laszlo/GCS Carlos C Soto :: eclipxe -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#345114: yasgml: reference and assigment to free variable
Package: yasgml Version: 1.5-7 Severity: important While dist-upgrading, I got the following message during emacs21 postinst: Loading yatexhks... While compiling toplevel forms in file /usr/share/emacs21/site-lisp/yasgml/yasgml.el: ** reference to free variable shell-command-option ** assignment to free variable kanji-fileio-code While compiling yasgml-jump-to-name in file /usr/share/emacs21/site-lisp/yasgml/yasgml.el: ** reference to free variable href While compiling the end of the data in file /usr/share/emacs21/site-lisp/yasgml/yasgml.el: ** The following functions are not known to be defined: set-file-coding-system, YaTeX-typeset Wrote /usr/share/emacs21/site-lisp/yasgml/yasgml.elc -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#335259: ssh conffile prompts
severity 335259 important severity 339978 important merge 335259 3339978 35276 thanks ssh doesn't handle conffiles the right way at all. I'm including a tarball of stuff that failed to work properly while upgrading from 1:3.8.1p1-8.sarge.4 to 1:4.2p1-5, excluding the "moduli" files, because I don't know if their contents are sensitive.. I think you can do what is necessary with custom MD5 handling as described at: http://www.dpkg.org/ConffileHandling mozilla and mysql also have this problem. ssh.tar.bz2 Description: Binary data
Bug#345113: mysql-server-4.1: conffile prompts during upgrade
Package: mysql-server-4.1 Severity: important Upgrading from 4.0.24-10sarge1 to 5.0.16-1 I got a large number of unnecessary conffile prompts. I'm including a tarball of the files that caused prompting. Actually I'm not sure about the package names or versions, so I'm also including my dpkg.log fragments. This might be useful: http://www.dpkg.org/ConffileHandling firefox and openssh also have this problem. BZh91AY&SY0?\' %? }??? ` `?p ?? ? ?hh ? CCCL? h?? p ?? ? ?hh ? CCCL? h?? 4?#?`L&? 0 ???&