From lucas at lucas-nussbaum.net Wed Apr 2 10:26:22 2008 From: lucas at lucas-nussbaum.net (Lucas Nussbaum) Date: Wed, 2 Apr 2008 12:26:22 +0200 Subject: [cl-debian] Bug#473948: cmucl: FTBFS: unistd.h:2:25: error: unistd_32.h: No such file or directory Message-ID: <20080402102622.GA11366@blop.info> Package: cmucl Version: 19d-20061116-4 Severity: serious User: debian-qa at lists.debian.org Usertags: qa-ftbfs-20080401 qa-ftbfs Justification: FTBFS on i386 Hi, During a rebuild of all packages in sid, your package failed to build on i386. Relevant part: > gcc -rdynamic -Wstrict-prototypes -Wall -g -DGENCGC -DLINKAGE_TABLE -D__NO_CTYPE -I. -I../../src/lisp -I- -I/usr/X11R6/include -DGENCGC -DLINKAGE_TABLE -c -o lisp.o ../../src/lisp/lisp.c > cc1: note: obsolete option -I- used, please use -iquote instead > In file included from /usr/include/sys/syscall.h:25, > from ../../src/lisp/Linux-os.h:24, > from ../../src/lisp/os.h:41, > from ../../src/lisp/lisp.c:23: > /usr/include/asm/unistd.h:2:25: error: unistd_32.h: No such file or directory > ../../src/lisp/lisp.c: In function 'sigint_handler': > ../../src/lisp/lisp.c:45: warning: unused variable 'code' > ../../src/lisp/lisp.c: In function 'default_cmucllib': > ../../src/lisp/lisp.c:182: warning: assignment discards qualifiers from pointer target type > ../../src/lisp/lisp.c: In function 'main': > ../../src/lisp/lisp.c:417: warning: implicit declaration of function 'tzset' > ../../src/lisp/lisp.c:512: warning: implicit declaration of function 'map_core_sections' > make[2]: *** [lisp.o] Error 1 The full build log is available from: http://people.debian.org/~lucas/logs/2008/04/01 A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! About the archive rebuild: The rebuild was done on about 50 AMD64 nodes of the Grid'5000 platform, using a clean chroot containing a sid i386 environment. Internet was not accessible from the build systems. -- | Lucas Nussbaum | lucas at lucas-nussbaum.net http://www.lucas-nussbaum.net/ | | jabber: lucas at nussbaum.fr GPG: 1024D/023B3F4F | From lucas at lucas-nussbaum.net Wed Apr 2 10:25:32 2008 From: lucas at lucas-nussbaum.net (Lucas Nussbaum) Date: Wed, 2 Apr 2008 12:25:32 +0200 Subject: [cl-debian] Bug#470447: cmucl: FTBFS: make[1]: *** [all] Error 133 In-Reply-To: <47DAFB6A.7030206@debian.org> References: <47DAFB6A.7030206@debian.org> Message-ID: <20080402102532.GA10600@blop.info> On 14/03/08 at 23:25 +0100, Peter Van Eynde wrote: > Hi, > > On a real i386 rebuilding cmucl works. So I'm a bit confused as to why > you see the problem. My guess is that the reason is that you are > building on an AMD64 machine. Hi, Please don't forget to put me in the To: or Cc: of your mail when you ask a question. Bug submitters don't receive replies to their bugs by default. What makes you think that the problem is caused by building in an i386 chroot with an amd64 kernel? -- | Lucas Nussbaum | lucas at lucas-nussbaum.net http://www.lucas-nussbaum.net/ | | jabber: lucas at nussbaum.fr GPG: 1024D/023B3F4F | From objective-cl at mail.matthias.benkard.de Fri Apr 4 17:22:02 2008 From: objective-cl at mail.matthias.benkard.de (Matthias Benkard) Date: Fri, 04 Apr 2008 17:22:02 -0000 Subject: [cl-debian] [ann] [objective-cl-announce] Objective-CL 0.2.0 Message-ID: <8176ee540803051135s43f44acasc803671de68bc583@mail.gmail.com> Hi all, Objective-CL 0.2.0 has been released. This release is a major milestone on the way to 1.0.0. * Quick summary We can now define Objective-C classes and methods without writing a single line of Objective-C code. The API may not be stable and there might be crashes, but living dangerously is half the fun, right? ;) * What's new? ** Method call syntax #.(enable-method-syntax) We now support Clozure CL's new method call syntax via reader macros. That means you can write: (let ((lock (#/new (find-objc-class 'ns-lock)))) (#/lock lock) (print (#/stringWithCString:encoding: (find-objc-class 'ns-string) "Hi there!" 0)) (#/unlock lock)) In fact, as the reader macro does no more than offer an alternate syntax for symbols, you can do things like using it with APPLY as well: (apply #'#/stringWithUTF8String: (find-objc-class 'ns-string) (list "Hi again.")) ** Class definition You can now define classes. For example, the following will define a subclass of NSObject called MLKMyClass, including a native slot called FOOS and a foreign slot (that is, an Objective-C ivar) called FOO-COUNT (fooCount on the Objective-C side): (define-objective-c-class ns::mlk-my-class (ns::ns-object) ((foos :initargs :foos) (foo-count :foreign-type :int))) Simple CFFI type specifiers are recognised by :FOREIGN-TYPE, but please note that complex types such as struct and union types are not yet supported. ** Method definition You can now define Objective-C methods from Lisp for your own classes. The following will define the Objective-C method -(int)foo:(int)bar:(id)stuff:(id)do:(NSNumber *) on MLKMyClass instances: (define-objective-c-generic-function #/foo:bar:stuff:do: (self y z a b)) (define-objective-c-method #/foo:bar:stuff:do: :int ((self ns::mlk-my-class) (y :int) z a (b ns::ns-number)) (format t "Hello! Z and A are ~A and~&~A, respectively. Have a nice day." z a) (+ y 20)) Usage example: OBJECTIVE-CL> (invoke (invoke (find-objc-class 'mlk-my-class) 'new) :foo 3 :bar "abc" :stuff 3 :do 33) Hello! Z and A are # and #, respectively. Have a nice day. 23 Note that, at present, you absolutely have to call DEFINE-OBJECTIVE-C-GENERIC-FUNCTION before defining methods, because otherwise you're going to get the wrong type of generic function. All modifiers of the standard method combination should be supported in principle, but it's unlikey they'll work as expected. This is planned for a future release. &REST and &KEY arguments are not supported. #.(disable-method-syntax) ** Struct wrappers When an Objective-C method returns a struct, it is now wrapped in a FOREIGN-STRUCT; likewise for unions. If you want to prevent its automatic deallocation, you need to set its FOREIGN-VALUE-LISP-MANAGED-P property to false. This change has been made because it would otherwise not be safe to discard return values of Objective-C methods, a safety which both Objective-C and Lisp programmers have come to expect. ** COLLECT-CLASSES The new function COLLECT-CLASSES may be used to make all classes known to the Objective-C runtime available as CLOS classes under the NS namespace. In an ideal world, we'd do this automatically at system load-time, but registering such a large number of classes along with their metaclasses takes a long time on some CL implementations (CMUCL, SBCL), so it's the user's decision whether to use FIND-OBJC-CLASS for each class or COLLECT-CLASSES once for now. If you try the release out, please tell me what works and what doesn't. If you can't even get it to compile, that is helpful information as well. Of course, above all, have lots of fun! ~ Matthias _______________________________________________ objective-cl-announce mailing list objective-cl-announce at common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/objective-cl-announce _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements From objective-cl at mail.matthias.benkard.de Fri Apr 4 17:22:03 2008 From: objective-cl at mail.matthias.benkard.de (Matthias Benkard) Date: Fri, 04 Apr 2008 17:22:03 -0000 Subject: [cl-debian] [ann] [objective-cl-announce] Objective-CL 0.2.1 Message-ID: <8176ee540803070415k7c149698kceb0be1bbbb091f2@mail.gmail.com> Hi all, I have released Objective-CL 0.2.1. This release adds convenience and robustness to the previous one. * Quick Summary Super calls are supported. Bugs have been fixed. You may omit DEFINE-OBJECTIVE-C-GENERIC-FUNCTION calls. * What's New? ** Super Calls Up to now, there was no way of doing the equivalent of a message send to `super' as in Objective-C. This has changed. Just as with CALL-NEXT-METHOD for standard methods, you may now either call (SUPER) as-is or with the arguments you wish to pass to it. See the SUPER function in the reference manual for details. ** Implicit Definition of Objective-C Generic Functions DEFINE-OBJECTIVE-C-METHOD now takes care of defining a suitable OBJECTIVE-C-GENERIC-FUNCTION for you if you don't do so yourself. ** Bug Fixes Lots of little bugs are gone as well. Among others, returning values from Objective-C methods now works much more reliably, and Lisp wrapper objects don't just vanish when the GC runs as long as the corresponding foreign instance is still referenced by Objective-C code. I'm still wondering what to do on garbage-collected Objective-C runtimes. Have fun! ~ Matthias _______________________________________________ objective-cl-announce mailing list objective-cl-announce at common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/objective-cl-announce _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements From RossBoylan at stanfordalumni.org Sun Apr 6 00:44:03 2008 From: RossBoylan at stanfordalumni.org (Ross Boylan) Date: Sat, 05 Apr 2008 17:44:03 -0700 Subject: [cl-debian] Bug#474483: cl-swank: SWANK-BACKEND:WHO-SETS not implementated Message-ID: <20080406004403.20824.30190.reportbug@corn.betterworld.us> Package: cl-swank Version: 1:20080223-2 Severity: normal Running emacs 22.1, slime 1:20080223-2 , and sbcl 1:0.9.16.0-1, when I position on a function (actually, macro) invocation and ask for setters (slime | cross-references | who sets) I get the following exception: SWANK-BACKEND:WHO-SETS not implementated [Condition of type SIMPLE-ERROR] Restarts: 0: [ABORT] Return to SLIME's top level. 1: [TERMINATE-THREAD] Terminate this thread (#) Backtrace: 0: (SWANK-BACKEND:WHO-SETS MATCH) 1: (SWANK:XREF :SETS "match") 2: (SB-INT:EVAL-IN-LEXENV (SWANK:XREF (QUOTE :SETS) (QUOTE "match")) #) 3: ((LAMBDA NIL)) 4: ((LAMBDA (SWANK-BACKEND::HOOK SWANK-BACKEND::FUN)) # #) 5: ((LAMBDA NIL)) 6: ((LAMBDA (SWANK-BACKEND::HOOK SWANK-BACKEND::FUN)) # #) 7: (SWANK::CALL-WITH-REDIRECTED-IO # #) 8: (SWANK::CALL-WITH-CONNECTION # #) 9: (SWANK::HANDLE-REQUEST #) 10: (SWANK::CALL-WITH-BINDINGS NIL #) 11: ((LAMBDA NIL)) 12: ("foreign function: call_into_lisp") 13: ("foreign function: funcall0") 14: ("foreign function: new_thread_trampoline") 15: ("foreign function: #xB7FA94FB") I have no idea if the real source of the problem lies in slime, sbcl, or elsewhere. Please reassign as appropriate. I was trying to go to the definition. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (990, 'testing'), (990, 'stable'), (50, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.18-6-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages cl-swank depends on: ii common-lisp-controller 6.12 Common Lisp source and compiler ma cl-swank recommends no packages. -- no debconf information From owner at bugs.debian.org Sun Apr 6 22:10:05 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 06 Apr 2008 22:10:05 +0000 Subject: [cl-debian] Bug#436641: marked as done (cl-screen-sbcl has unmet recommends on some archs) References: <20070808102135.GG28020@semistable.com> Message-ID: Your message dated Sun, 06 Apr 2008 21:32:15 +0000 with message-id and subject line Bug#436641: fixed in cl-screen-sbcl 1.0-4.1 has caused the Debian Bug report #436641, regarding cl-screen-sbcl has unmet recommends on some archs to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 436641: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=436641 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Robert Lemmen Subject: cl-screen-sbcl has unmet recommends on some archs Date: Wed, 8 Aug 2007 12:21:35 +0200 Size: 2511 URL: -------------- next part -------------- An embedded message was scrubbed... From: Amaya Rodrigo Sastre Subject: Bug#436641: fixed in cl-screen-sbcl 1.0-4.1 Date: Sun, 06 Apr 2008 21:32:15 +0000 Size: 3742 URL: From owner at bugs.debian.org Sun Apr 6 22:10:23 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 06 Apr 2008 22:10:23 +0000 Subject: [cl-debian] Bug#460444: marked as done (cl-screen-sbcl: Wrong spelling in package description: SLang -> S-Lang) References: <20080112185743.GB13712@localhost> Message-ID: Your message dated Sun, 06 Apr 2008 21:32:15 +0000 with message-id and subject line Bug#460444: fixed in cl-screen-sbcl 1.0-4.1 has caused the Debian Bug report #460444, regarding cl-screen-sbcl: Wrong spelling in package description: SLang -> S-Lang to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 460444: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=460444 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Rafael Laboissiere Subject: cl-screen-sbcl: Wrong spelling in package description: SLang -> S-Lang Date: Sat, 12 Jan 2008 19:57:43 +0100 Size: 1976 URL: -------------- next part -------------- An embedded message was scrubbed... From: Amaya Rodrigo Sastre Subject: Bug#460444: fixed in cl-screen-sbcl 1.0-4.1 Date: Sun, 06 Apr 2008 21:32:15 +0000 Size: 3742 URL: From amaya at debian.org Sun Apr 6 21:32:15 2008 From: amaya at debian.org (Amaya Rodrigo Sastre) Date: Sun, 06 Apr 2008 21:32:15 +0000 Subject: [cl-debian] Accepted cl-screen-sbcl 1.0-4.1 (source all) Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Sun, 30 Mar 2008 22:18:36 +0200 Source: cl-screen-sbcl Binary: cl-screen-sbcl Architecture: source all Version: 1.0-4.1 Distribution: unstable Urgency: low Maintainer: Amaya Rodrigo Changed-By: Amaya Rodrigo Sastre Description: cl-screen-sbcl - SLang interface for Steel Bank Common Lisp Closes: 436641 460444 Changes: cl-screen-sbcl (1.0-4.1) unstable; urgency=low . * Non-maintainer upload. * Fix typo in Description (Closes: #460444). - Added a lintian override for this. See: http://lists.debian.org/debian-devel/2008/01/msg00442.html * Downgrade Recommends to Suggests as it's not possible to add an arch-dependent recommends on an arch-independent package, but it is a Lenny release goal to not Recommend unsatisfiable packages (Closes: #436641). Files: 7d761211c76381f65965de0dc867ad99 629 devel optional cl-screen-sbcl_1.0-4.1.dsc 6f39a55ec91b98befa2ca037dabb56a7 3627 devel optional cl-screen-sbcl_1.0-4.1.diff.gz ff622cc229a08acee8ca0a32af1d4fb9 75114 devel optional cl-screen-sbcl_1.0-4.1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iEYEARECAAYFAkfwBOEACgkQNFDtUT/MKpA9QQCeIcI6ArtzZ+qyKssxnZQI3guL 1ZgAn0Voq5llbuWqFziZReJbpdqd7stj =cfme -----END PGP SIGNATURE----- Accepted: cl-screen-sbcl_1.0-4.1.diff.gz to pool/main/c/cl-screen-sbcl/cl-screen-sbcl_1.0-4.1.diff.gz cl-screen-sbcl_1.0-4.1.dsc to pool/main/c/cl-screen-sbcl/cl-screen-sbcl_1.0-4.1.dsc cl-screen-sbcl_1.0-4.1_all.deb to pool/main/c/cl-screen-sbcl/cl-screen-sbcl_1.0-4.1_all.deb From lucas at lucas-nussbaum.net Mon Apr 7 19:35:30 2008 From: lucas at lucas-nussbaum.net (Lucas Nussbaum) Date: Mon, 7 Apr 2008 21:35:30 +0200 Subject: [cl-debian] Bug#474810: clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" Message-ID: <20080407193530.GA14940@xanadu.blop.info> Package: clisp Version: 1:2.44-1 Severity: serious User: debian-qa at lists.debian.org Usertags: qa-ftbfs-20080407 qa-ftbfs Justification: FTBFS on i386 Hi, During a rebuild of all packages in sid, your package failed to build on i386. This rebuild was done with gcc 4.3 instead of gcc 4.2, because gcc 4.3 is now the default on most architectures (even if it's not the case on i386 yet). Feel free to downgrade this bug to 'important' if your package is only built on i386, and this bug is specific to gcc 4.3 (i.e the package builds fine with gcc 4.2). Relevant part: > gcc -g -O2 -Igllib -W -Wswitch -Wcomment -Wpointer-arith -Wimplicit -Wreturn-type -Wmissing-declarations -Wno-sign-compare -O2 -fexpensive-optimizations -falign-functions=4 -DUNICODE -DDYNAMIC_FFI -DDYNAMIC_MODULES -I. -c spvw.c > In file included from /build/user/clisp-2.44/src/lispbibl.d:320, > from /build/user/clisp-2.44/src/spvw.d:23: > floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" > make[1]: *** [spvw.o] Error 1 The full build log is available from: http://people.debian.org/~lucas/logs/2008/04/07 A list of current common problems and possible solutions is available at http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute! About the archive rebuild: The rebuild was done on about 50 AMD64 nodes of the Grid'5000 platform, using a clean chroot containing a sid i386 environment. Internet was not accessible from the build systems. -- | Lucas Nussbaum | lucas at lucas-nussbaum.net http://www.lucas-nussbaum.net/ | | jabber: lucas at nussbaum.fr GPG: 1024D/023B3F4F | From edi at agharta.de Tue Apr 8 14:44:52 2008 From: edi at agharta.de (Edi Weitz) Date: Tue, 08 Apr 2008 16:44:52 +0200 Subject: [cl-debian] [ann] [hunchentoot-announce] New release 0.15.5 Message-ID: Version 0.15.5 2008-04-08 Removed FORCE-OUTPUT* and thus the ACL-COMPAT dependency (thanks to Hans H?bner) Support for MP-less CMUCL (thanks to Hans H?bner) _______________________________________________ tbnl-announce site list tbnl-announce at common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-announce _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements From edi at agharta.de Wed Apr 9 08:19:25 2008 From: edi at agharta.de (Edi Weitz) Date: Wed, 09 Apr 2008 10:19:25 +0200 Subject: [cl-debian] [ann] [hunchentoot-announce] New release 0.15.6 Message-ID: Version 0.15.6 2008-04-09 Fixed embarrassingly mis-placed parentheses (thanks to Hans H?bner) _______________________________________________ tbnl-announce site list tbnl-announce at common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-announce _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements From pvaneynd at debian.org Wed Apr 9 19:02:27 2008 From: pvaneynd at debian.org (Peter Van Eynde) Date: Wed, 09 Apr 2008 19:02:27 +0000 Subject: [cl-debian] Accepted cl-iterate 1.4.2-3 (source all) Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Wed, 09 Apr 2008 20:33:55 +0200 Source: cl-iterate Binary: cl-iterate Architecture: source all Version: 1.4.2-3 Distribution: unstable Urgency: low Maintainer: Debian Common Lisp Team Changed-By: Peter Van Eynde Description: cl-iterate - Iterate macro for Common Lisp Changes: cl-iterate (1.4.2-3) unstable; urgency=low . * Updated Standard Version without real changes * swap binary-indep and binary-arch round * Added Homepage field * Debhelper is Build-Depends * Added ${misc:Depends} to Depends * Added Vcs-Git control field * Changed to group maintanance Files: ea1e89518f82001d05198b87f0ec25a4 807 devel optional cl-iterate_1.4.2-3.dsc 41b55d1ad4849528c2a629fdffde5750 2337 devel optional cl-iterate_1.4.2-3.diff.gz 08d3b04240e7d1db7c3a1715e2fac61b 267454 devel optional cl-iterate_1.4.2-3_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFH/Q/E11ldN0tyliURAvrkAKCqeoc8cVa5GknV88RwkaCl64walgCfVwZ8 aUKKsq35kjyjUzRmH8V/BxA= =2xvZ -----END PGP SIGNATURE----- Accepted: cl-iterate_1.4.2-3.diff.gz to pool/main/c/cl-iterate/cl-iterate_1.4.2-3.diff.gz cl-iterate_1.4.2-3.dsc to pool/main/c/cl-iterate/cl-iterate_1.4.2-3.dsc cl-iterate_1.4.2-3_all.deb to pool/main/c/cl-iterate/cl-iterate_1.4.2-3_all.deb From owner at bugs.debian.org Wed Apr 9 16:15:31 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 09 Apr 2008 16:15:31 +0000 Subject: [cl-debian] Processed: closing 427220 In-Reply-To: <1207764361-1485-bts-lucas@lucas-nussbaum.net> References: <1207764361-1485-bts-lucas@lucas-nussbaum.net> Message-ID: Processing commands for control at bugs.debian.org: > # Automatically generated email from bts, devscripts version 2.10.18.1 > close 427220 1:20070409-3 Bug#427220: slime - FTBFS: /usr/bin/texi2dvi: etex exited with bad status, quitting. 'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing. Bug marked as fixed in version 1:20070409-3, send any further explanations to Michael Ablassmeier > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From owner at bugs.debian.org Wed Apr 9 16:36:14 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 09 Apr 2008 16:36:14 +0000 Subject: [cl-debian] Bug#474810: marked as done (clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!") References: <20080409182409.GA8415@xanadu.blop.info> <20080407193530.GA14940@xanadu.blop.info> Message-ID: Your message dated Wed, 9 Apr 2008 20:24:09 +0200 with message-id <20080409182409.GA8415 at xanadu.blop.info> and subject line Re: Bug#474810: clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" has caused the Debian Bug report #474810, regarding clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 474810: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474810 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Lucas Nussbaum Subject: clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" Date: Mon, 7 Apr 2008 21:35:30 +0200 Size: 3002 URL: -------------- next part -------------- An embedded message was scrubbed... From: Lucas Nussbaum Subject: Re: Bug#474810: clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" Date: Wed, 9 Apr 2008 20:24:09 +0200 Size: 1718 URL: From owner at bugs.debian.org Wed Apr 9 16:36:06 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 09 Apr 2008 16:36:06 +0000 Subject: [cl-debian] Processed: severity of 470447 is serious In-Reply-To: <1207766051-3585-bts-lucas@lucas-nussbaum.net> References: <1207766051-3585-bts-lucas@lucas-nussbaum.net> Message-ID: Processing commands for control at bugs.debian.org: > # Automatically generated email from bts, devscripts version 2.10.18.1 > severity 470447 serious Bug#470447: cmucl: FTBFS: make[1]: *** [all] Error 133 Severity set to `serious' from `normal' > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From bubulle at debian.org Sat Apr 12 17:12:08 2008 From: bubulle at debian.org (Christian Perrier) Date: Sat, 12 Apr 2008 19:12:08 +0200 Subject: [cl-debian] Bug#475676: gclcvs_2.7.0-84(sparc/unstable): Error: TYPE-ERROR :DATUM # :EXPECTED-TYPE VAR NIL In-Reply-To: <20080412090106.GW4183@solar.ftbfs.de> References: <20080412090106.GW4183@solar.ftbfs.de> Message-ID: <20080412171207.GP10768@mykerinos.kheops.frmug.org> Quoting Martin Zobel-Helas (zobel at ftbfs.de): > Package: gclcvs > Version: 2.7.0-84 > Severity: serious > > There was an error while trying to autobuild your package: An NMU of gclcvs 2.7.0-84.1 is currently in DELAYED/2-day. I built it on i386, using pbuilder, without problems (except that it took several hours to complete). That NMU is supposed to be non-invasive, though (just some l10n and minor lintian fixes). -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From pc at p-cos.net Sat Apr 12 19:14:14 2008 From: pc at p-cos.net (Pascal Costanza) Date: Sat, 12 Apr 2008 21:14:14 +0200 Subject: [cl-debian] [ann] [cdr-announce] CDR 5 finalized Message-ID: <750834BC-5347-485F-A445-5C0669AA7031@p-cos.net> The document "Sub-interval Numerical Types for Common Lisp" by Marco Antoniotti has been finalized. According to the CDR process, this document is now in its final stage and cannot be changed anymore. Seehttp://cdr.eurolisp.org/document/5/ for the details of this document. Pascal -- 1st European Lisp Symposium (ELS'08) http://prog.vub.ac.be/~pcostanza/els08/ Pascal Costanza, mailto:pc at p-cos.net, http://p-cos.net Vrije Universiteit Brussel, Programming Technology Lab Pleinlaan 2, B-1050 Brussel, Belgium _______________________________________________ cdr-announce mailing list cdr-announce at common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/cdr-announce _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements From owner at bugs.debian.org Sat Apr 12 21:33:04 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:33:04 +0000 Subject: [cl-debian] Bug#457025: marked as done (gcl: [debconf_rewrite] Debconf templates and debian/control review) References: <20071219062610.8568.80873.reportbug@mykerinos.kheops.frmug.org> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:48 +0000 with message-id and subject line Bug#457025: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #457025, regarding gcl: [debconf_rewrite] Debconf templates and debian/control review to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 457025: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457025 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: gcl: [debconf_rewrite] Debconf templates and debian/control review Date: Wed, 19 Dec 2007 11:56:10 +0530 Size: 9235 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#457025: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:48 +0000 Size: 4852 URL: From owner at bugs.debian.org Sat Apr 12 21:39:14 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:39:14 +0000 Subject: [cl-debian] Bug#458255: marked as done ([INTL:fi] Finnish translation of the debconf templates) References: <20071229213118.6143.92764.reportbug@outamo> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:49 +0000 with message-id and subject line Bug#458255: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #458255, regarding [INTL:fi] Finnish translation of the debconf templates to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 458255: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=458255 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: =?utf-8?q?Esko_Araj=C3=A4rvi?= Subject: [INTL:fi] Finnish translation of the debconf templates Date: Sat, 29 Dec 2007 23:31:18 +0200 Size: 5756 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#458255: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:49 +0000 Size: 4877 URL: From owner at bugs.debian.org Sat Apr 12 21:39:26 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:39:26 +0000 Subject: [cl-debian] Bug#459887: marked as done (gcl: [INTL:de] updated German debconf translation) References: <20080109105101.GA7742@ipxXXXXX> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:49 +0000 with message-id and subject line Bug#459887: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #459887, regarding gcl: [INTL:de] updated German debconf translation to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 459887: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459887 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Helge Kreutzmann Subject: gcl: [INTL:de] updated German debconf translation Date: Wed, 9 Jan 2008 11:51:01 +0100 Size: 9075 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#459887: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:49 +0000 Size: 4877 URL: From owner at bugs.debian.org Sat Apr 12 21:36:12 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:36:12 +0000 Subject: [cl-debian] Bug#457576: marked as done (gcl: [INTL:pt] Updated Portuguese translation for debconf messages) References: <200712231646.36006.traduz@debianpt.org> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:48 +0000 with message-id and subject line Bug#457576: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #457576, regarding gcl: [INTL:pt] Updated Portuguese translation for debconf messages to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 457576: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457576 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: "\"Traduz\" - Portuguese Translation Team" Subject: gcl: [INTL:pt] Updated Portuguese translation for debconf messages Date: Sun, 23 Dec 2007 16:46:35 +0000 Size: 6759 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#457576: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:48 +0000 Size: 4877 URL: From owner at bugs.debian.org Sat Apr 12 21:39:21 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:39:21 +0000 Subject: [cl-debian] Bug#459008: marked as done (gcl: [INTL:vi] Vietnamese debconf templates translation) References: <29B30F58-CBF5-440F-B0BC-95F77F26D55F@riverland.net.au> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:49 +0000 with message-id and subject line Bug#459008: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #459008, regarding gcl: [INTL:vi] Vietnamese debconf templates translation to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 459008: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459008 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Clytie Siddall Subject: gcl: [INTL:vi] Vietnamese debconf templates translation Date: Fri, 4 Jan 2008 16:37:25 +1030 Size: 4415 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#459008: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:49 +0000 Size: 4877 URL: From owner at bugs.debian.org Sat Apr 12 21:39:25 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:39:25 +0000 Subject: [cl-debian] Bug#459541: marked as done ([INTL:nl] Updated Dutch po-debconf translation) References: <200801070933.23872.cobaco@skolelinux.no> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:49 +0000 with message-id and subject line Bug#459541: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #459541, regarding [INTL:nl] Updated Dutch po-debconf translation to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 459541: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459541 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: "cobaco (aka Bart Cornelis)" Subject: [INTL:nl] Updated Dutch po-debconf translation Date: Mon, 7 Jan 2008 09:33:23 +0100 Size: 6917 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#459541: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:49 +0000 Size: 4878 URL: From owner at bugs.debian.org Sat Apr 12 21:39:23 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:39:23 +0000 Subject: [cl-debian] Bug#459308: marked as done (gcl: [INTL:ru] Russian debconf templates translation update) References: <20080105133148.24453.14182.reportbug@keeper.home> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:49 +0000 with message-id and subject line Bug#459308: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #459308, regarding gcl: [INTL:ru] Russian debconf templates translation update to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 459308: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=459308 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Yuri Kozlov Subject: gcl: [INTL:ru] Russian debconf templates translation update Date: Sat, 05 Jan 2008 16:31:48 +0300 Size: 11575 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#459308: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:49 +0000 Size: 4877 URL: From bubulle at debian.org Sat Apr 12 21:17:48 2008 From: bubulle at debian.org (Christian Perrier) Date: Sat, 12 Apr 2008 21:17:48 +0000 Subject: [cl-debian] Accepted gcl 2.6.7-36.1 (source all i386) Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Fri, 14 Mar 2008 05:45:32 +0100 Source: gcl Binary: gcl gcl-doc Architecture: source all i386 Version: 2.6.7-36.1 Distribution: unstable Urgency: low Maintainer: Camm Maguire Changed-By: Christian Perrier Description: gcl - GNU Common Lisp compiler gcl-doc - Documentation for GNU Common Lisp Closes: 457025 457576 457677 458120 458255 458529 459008 459308 459541 459887 Changes: gcl (2.6.7-36.1) unstable; urgency=low . * Non-maintainer upload to fix pending l10n issues * Debconf templates and debian/control reviewed by the debian-l10n- english team as part of the Smith review project. Closes: #457025 * [Debconf translation updates] - Portuguese. Closes: #457576 - Czech. Closes: #457677 - French. Closes: #458120 - Finnish. Closes: #458255 - Galician. Closes: #458529 - Vietnamese. Closes: #459008 - Russian. Closes: #459308 - Dutch. Closes: #459541 - German. Closes: #459887 * [Lintian] Correct FSF address in debian/copyright * [Lintian] Remove extra whitespaces at the end of debian/in.gcl-doc.doc-base.tk * [Lintian] Correct section in doc-base documents from Apps/Programming to Programming Checksums-Sha1: 3b2f2dd825bd6d84ce47783d843ec2ed68b2e60a 1100 gcl_2.6.7-36.1.dsc 8b50909ce3c142083007c90a0e8a56ab414e0265 14435546 gcl_2.6.7-36.1.diff.gz 2e19fe694e3f294dfc46751cf35dd9bd65996acd 574852 gcl-doc_2.6.7-36.1_all.deb 07404c0f4541606e150ad37d3d9b42295503d697 51204434 gcl_2.6.7-36.1_i386.deb Checksums-Sha256: 8bdacb04888c8d992d0a03841df525deca41ab05580fcebce2312ab9454a2479 1100 gcl_2.6.7-36.1.dsc f09079a1f739f2ae94e2cca2a493481b28d3b7def6b20fa527a9779e22adc762 14435546 gcl_2.6.7-36.1.diff.gz 6157347b0b8b6fa52db48d38c78678473da5a3eac67b7aecfb9fac3e5efa9356 574852 gcl-doc_2.6.7-36.1_all.deb bbeb5e3c8cfbb427147c3970f24303095a4fcc2892ebf5e60f475c0ecb5326a2 51204434 gcl_2.6.7-36.1_i386.deb Files: c6dd6e8e9cc5b5bfc349488e285ba7d1 1100 interpreters optional gcl_2.6.7-36.1.dsc 15ffb34525af6a8eddd44eac0cf63222 14435546 interpreters optional gcl_2.6.7-36.1.diff.gz 62246287db1d25624636b4721e8e267b 574852 doc optional gcl-doc_2.6.7-36.1_all.deb fbc83157439113d069b46293aabd4aca 51204434 interpreters optional gcl_2.6.7-36.1_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFH/59W1OXtrMAUPS0RAt5oAJoDdNi53sYyPHy3nzlbH6CEq5gAXgCeKe2C 6uPH137UcrYXero2Z5zZkBw= =Q/UV -----END PGP SIGNATURE----- Accepted: gcl-doc_2.6.7-36.1_all.deb to pool/main/g/gcl/gcl-doc_2.6.7-36.1_all.deb gcl_2.6.7-36.1.diff.gz to pool/main/g/gcl/gcl_2.6.7-36.1.diff.gz gcl_2.6.7-36.1.dsc to pool/main/g/gcl/gcl_2.6.7-36.1.dsc gcl_2.6.7-36.1_i386.deb to pool/main/g/gcl/gcl_2.6.7-36.1_i386.deb From owner at bugs.debian.org Sat Apr 12 21:39:19 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:39:19 +0000 Subject: [cl-debian] Bug#458529: marked as done ([INTL:gl] Galician debconf template translation for gcl) References: <20080101134038.6117.53685.reportbug@localhost> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:49 +0000 with message-id and subject line Bug#458529: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #458529, regarding [INTL:gl] Galician debconf template translation for gcl to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 458529: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=458529 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Jacobo Tarrio Subject: [INTL:gl] Galician debconf template translation for gcl Date: Tue, 01 Jan 2008 13:40:38 +0000 Size: 8343 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#458529: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:49 +0000 Size: 4877 URL: From owner at bugs.debian.org Sat Apr 12 21:36:16 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:36:16 +0000 Subject: [cl-debian] Bug#458120: marked as done (gcl: French debconf templates translation update) References: <20071228200215.5405.67749.reportbug@localhost.localdomain> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:48 +0000 with message-id and subject line Bug#458120: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #458120, regarding gcl: French debconf templates translation update to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 458120: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=458120 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Sylvain Archenault Subject: gcl: French debconf templates translation update Date: Fri, 28 Dec 2007 21:02:15 +0100 Size: 9567 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#458120: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:48 +0000 Size: 4877 URL: From owner at bugs.debian.org Sat Apr 12 21:36:14 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sat, 12 Apr 2008 21:36:14 +0000 Subject: [cl-debian] Bug#457677: marked as done ([l10n] Updated Czech translation of gcl debconf messages) References: <20071224125813.GB26096@pharaoh.inf.upol.cz> Message-ID: Your message dated Sat, 12 Apr 2008 21:17:48 +0000 with message-id and subject line Bug#457677: fixed in gcl 2.6.7-36.1 has caused the Debian Bug report #457677, regarding [l10n] Updated Czech translation of gcl debconf messages to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 457677: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457677 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Miroslav Kure Subject: [l10n] Updated Czech translation of gcl debconf messages Date: Mon, 24 Dec 2007 13:58:13 +0100 Size: 9342 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#457677: fixed in gcl 2.6.7-36.1 Date: Sat, 12 Apr 2008 21:17:48 +0000 Size: 4877 URL: From bubulle at debian.org Sun Apr 13 08:14:05 2008 From: bubulle at debian.org (Christian Perrier) Date: Sun, 13 Apr 2008 10:14:05 +0200 Subject: [cl-debian] Intent to NMU hyperspec to fix pending po-debconf l10n bugs Message-ID: Dear Debian maintainer, The hyperspec Debian package, which you are the maintainer of, has pending bug report(s) which include translation updates or fixes for po-debconf, namely bug number 466654 (and maybe other similar bugs). Even if we're still far from the release of the next Debian version, letting such bugs sleep in the BTS is simply lowering the chances that your package interaction with its users may be done in something else than the English language. It is also not encouraging for translators. I have the intention, as part of a more general action of the Debian i18n Task Force to build and possibly upload a non-maintainer upload for hyperspec in order to fix this as well as all pending translations for the debconf templates. Of course, an upload made by you would even be better...:-) Such changes are always harmless, which explains why I safely consider building NMU's for such issues even though they're obviously non critical. The schedule for the NMU (in case it happens, that is if you agree with it or if I don't receive any answer in 14 days) is roughly the following: Sunday, April 13, 2008 : send this notice Sunday, April 27, 2008 : post a NMU announcement to debian-i18n with you (maintainer) CC'ed Wednesday, May 07, 2008 : deadline for receiving translation updates Thursday, May 08, 2008 : build the package and upload it to DELAYED/2-day send the NMU patch to the BTS Saturday, May 10, 2008 : NMU reaches incoming If you intent to upload yourself, please notify me so that I interrupt the process on my side. In case I upload an NMU, I will subscribe to the Package Tracking System for hyperspec and follow its life for 60 days after my NMU in order to fix any issue potentially introduced by my upload. Let me know, as soon as possible, if you have any kind of objection to this process. If you'd rather do the fix yourself, I will of course leave the package alone. Same if you have reasons not to do the update now. -- -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From bubulle at debian.org Fri Apr 11 18:08:32 2008 From: bubulle at debian.org (Christian Perrier) Date: Fri, 11 Apr 2008 20:08:32 +0200 Subject: [cl-debian] Bug#457025: Patch for the 2.6.7-36.1 NMU of gcl Message-ID: <20080411180832.GA32752@mykerinos.kheops.frmug.org> Dear maintainer of gcl, On 30 Mar 2008 I sent you a notice announcing my intent to upload a NMU of your package to fix its pending l10n issues, after an initial notice sent on 14 Mar 2008. You either agreed for this NMU or did not respond to my notices. I will now upload this NMU to DELAYED/2-DAY. The NMU patch is attached to this mail. The NMU changelog is: Source: gcl Version: 2.6.7-36.1 Distribution: unstable Urgency: low Maintainer: Christian Perrier Date: Fri, 14 Mar 2008 05:45:32 +0100 Closes: 457025 457576 457677 458120 458255 458529 459008 459308 459541 459887 Changes: gcl (2.6.7-36.1) unstable; urgency=low . * Non-maintainer upload to fix pending l10n issues * Debconf templates and debian/control reviewed by the debian-l10n- english team as part of the Smith review project. Closes: #457025 * [Debconf translation updates] - Portuguese. Closes: #457576 - Czech. Closes: #457677 - French. Closes: #458120 - Finnish. Closes: #458255 - Galician. Closes: #458529 - Vietnamese. Closes: #459008 - Russian. Closes: #459308 - Dutch. Closes: #459541 - German. Closes: #459887 * [Lintian] Correct FSF address in debian/copyright * [Lintian] Remove extra whitespaces at the end of debian/in.gcl-doc.doc-base.tk * [Lintian] Correct section in doc-base documents from Apps/Programming to Programming -- -------------- next part -------------- A non-text attachment was scrubbed... Name: gcl.patch Type: text/x-diff Size: 92481 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From zobel at ftbfs.de Sat Apr 12 09:01:06 2008 From: zobel at ftbfs.de (Martin Zobel-Helas) Date: Sat, 12 Apr 2008 11:01:06 +0200 Subject: [cl-debian] Bug#475676: gclcvs_2.7.0-84(sparc/unstable): Error: TYPE-ERROR :DATUM # :EXPECTED-TYPE VAR NIL Message-ID: <20080412090106.GW4183@solar.ftbfs.de> Package: gclcvs Version: 2.7.0-84 Severity: serious There was an error while trying to autobuild your package: > Automatic build of gclcvs_2.7.0-84 on lebrun by sbuild/sparc 98 > Build started at 20080412-0455 [...] > ** Using build dependencies supplied by package: > Build-Depends: autotools-dev, binutils-dev, common-lisp-controller, debhelper (>= 4.1.16), libgmp3-dev, libreadline5-dev | libreadline-dev, libxaw7-dev, libxmu-dev, m4, po-debconf, texinfo, texlive-latex-base, tk8.4-dev [...] > child run time : 1.940 secs > gbc time : 0.000 secs > ;; Compiling ../cmpnew/gcl_cmpcall.lsp. > ;; End of Pass 1. > > Error: TYPE-ERROR :DATUM # :EXPECTED-TYPE VAR NIL > Fast links are on: do (si::use-fast-links nil) for debugging > Signalled by CTOP-WRITE. > TYPE-ERROR :DATUM # :EXPECTED-TYPE VAR NIL > > Broken at CTOP-WRITE. Type :H for Help. > COMPILER>>make[1]: *** [unixport/saved_pre_gcl] Error 255 > make[1]: Leaving directory `/build/buildd/gclcvs-2.7.0' > make: *** [build-trad-stamp] Error 2 > dpkg-buildpackage: failure: debian/rules build gave error exit status 2 A full build log can be found at: http://buildd.debian.org/build.php?arch=sparc&pkg=gclcvs&ver=2.7.0-84 From owner at bugs.debian.org Sun Apr 13 21:06:18 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 13 Apr 2008 21:06:18 +0000 Subject: [cl-debian] Bug#473249: marked as done (gclcvs: [INTL:ru] Russian debconf templates translation) References: <20080329152421.7154.23300.reportbug@keeper.home> Message-ID: Your message dated Sun, 13 Apr 2008 20:47:19 +0000 with message-id and subject line Bug#473249: fixed in gclcvs 2.7.0-84.1 has caused the Debian Bug report #473249, regarding gclcvs: [INTL:ru] Russian debconf templates translation to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 473249: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473249 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Yuri Kozlov Subject: gclcvs: [INTL:ru] Russian debconf templates translation Date: Sat, 29 Mar 2008 18:24:21 +0300 Size: 8350 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#473249: fixed in gclcvs 2.7.0-84.1 Date: Sun, 13 Apr 2008 20:47:19 +0000 Size: 4924 URL: From bubulle at debian.org Sun Apr 13 20:47:19 2008 From: bubulle at debian.org (Christian Perrier) Date: Sun, 13 Apr 2008 20:47:19 +0000 Subject: [cl-debian] Accepted gclcvs 2.7.0-84.1 (source all i386) Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Thu, 03 Apr 2008 19:09:22 +0200 Source: gclcvs Binary: gclcvs gclcvs-doc Architecture: source all i386 Version: 2.7.0-84.1 Distribution: unstable Urgency: low Maintainer: Camm Maguire Changed-By: Christian Perrier Description: gclcvs - GNU Common Lisp compiler, CVS snapshot gclcvs-doc - Documentation for GNU Common Lisp, CVS snapshot Closes: 450981 457113 457154 457359 472473 473249 474085 Changes: gclcvs (2.7.0-84.1) unstable; urgency=low . * Non-maintainer upload to fix pending l10n issues. * Debconf translations: - Dutch. Closes: #450981 - Portuguese. Closes: #457113 - French. Closes: #457154 - German. Closes: #457359 - Finnish. Closes: #472473 - Russian. Closes: #473249 - Czech. Closes: #474085 * [Lintian] Correct FSF address in debian/copyright * [Lintian] Add copyright information in debian/copyright * [Lintian] Correct doc-base section to "Programming" * [Lintian] Remove non-managed format files "Tex" in doc-base control files * [Lintian] Remove reference to several non-existing files in doc-base control files Checksums-Sha1: f483853d5caaa4e6c09d170c50e6a5f7028b449f 907 gclcvs_2.7.0-84.1.dsc c1dac9c4414069c3d6284c8b10a1da279425656c 23327656 gclcvs_2.7.0-84.1.tar.gz c4e07e1640d255a28cde1b09eab7629dc2ca3e6f 2348612 gclcvs-doc_2.7.0-84.1_all.deb 0064e48b9cfbc27bddccb5585a100f5affbee9c8 93623604 gclcvs_2.7.0-84.1_i386.deb Checksums-Sha256: 71aada825e0b39b693db51c280fbf5378d9d6f71b0f3447ff0925acf7d25476d 907 gclcvs_2.7.0-84.1.dsc 44991c3cfe98c579d5fd28862ac7c2ef9a0e1baac347fa0ee82859f1cb250669 23327656 gclcvs_2.7.0-84.1.tar.gz e4bfcb27d1285c19945a9cc3195a4743cb15421055cf29cd6b4ec147f6b88718 2348612 gclcvs-doc_2.7.0-84.1_all.deb 841019b709d87b4b924261830904660ed519be80676cd1220fe5338f0be9a6b9 93623604 gclcvs_2.7.0-84.1_i386.deb Files: 01e8b2e81f5419ef3248b6e30419e28e 907 interpreters optional gclcvs_2.7.0-84.1.dsc 66dc9bae6ad2ddcc9f2cbda3cb11573d 23327656 interpreters optional gclcvs_2.7.0-84.1.tar.gz 53afed46157204c9e9fe8eec726d391e 2348612 doc optional gclcvs-doc_2.7.0-84.1_all.deb 64cf245040b7b2b6415704c7c0c1d7b5 93623604 interpreters optional gclcvs_2.7.0-84.1_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFIAJ2a1OXtrMAUPS0RAve3AJ9u2j8a/r7kwp6RVmwSSZJuGSFXqACgiZMI wU6tl6m+Qti/dlgy7Fk7yaY= =KeJz -----END PGP SIGNATURE----- Accepted: gclcvs-doc_2.7.0-84.1_all.deb to pool/main/g/gclcvs/gclcvs-doc_2.7.0-84.1_all.deb gclcvs_2.7.0-84.1.dsc to pool/main/g/gclcvs/gclcvs_2.7.0-84.1.dsc gclcvs_2.7.0-84.1.tar.gz to pool/main/g/gclcvs/gclcvs_2.7.0-84.1.tar.gz gclcvs_2.7.0-84.1_i386.deb to pool/main/g/gclcvs/gclcvs_2.7.0-84.1_i386.deb From owner at bugs.debian.org Sun Apr 13 21:06:16 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 13 Apr 2008 21:06:16 +0000 Subject: [cl-debian] Bug#472473: marked as done ([INTL:fi] Finnish translation of the debconf templates) References: <20080324135814.27271.65225.reportbug@localhost.localdomain> Message-ID: Your message dated Sun, 13 Apr 2008 20:47:19 +0000 with message-id and subject line Bug#472473: fixed in gclcvs 2.7.0-84.1 has caused the Debian Bug report #472473, regarding [INTL:fi] Finnish translation of the debconf templates to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 472473: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=472473 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: =?utf-8?q?Esko_Araj=C3=A4rvi?= Subject: [INTL:fi] Finnish translation of the debconf templates Date: Mon, 24 Mar 2008 15:58:14 +0200 Size: 5619 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#472473: fixed in gclcvs 2.7.0-84.1 Date: Sun, 13 Apr 2008 20:47:19 +0000 Size: 4924 URL: From owner at bugs.debian.org Sun Apr 13 21:06:09 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 13 Apr 2008 21:06:09 +0000 Subject: [cl-debian] Bug#457113: marked as done (gclcvs: [INTL:pt] Updated Portuguese translation for debconf messages) References: <200712192223.28315.traduz@debianpt.org> Message-ID: Your message dated Sun, 13 Apr 2008 20:47:19 +0000 with message-id and subject line Bug#457113: fixed in gclcvs 2.7.0-84.1 has caused the Debian Bug report #457113, regarding gclcvs: [INTL:pt] Updated Portuguese translation for debconf messages to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 457113: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457113 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: "\"Traduz\" - Portuguese Translation Team" Subject: gclcvs: [INTL:pt] Updated Portuguese translation for debconf messages Date: Wed, 19 Dec 2007 22:23:28 +0000 Size: 6632 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#457113: fixed in gclcvs 2.7.0-84.1 Date: Sun, 13 Apr 2008 20:47:19 +0000 Size: 4924 URL: From owner at bugs.debian.org Sun Apr 13 21:06:11 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 13 Apr 2008 21:06:11 +0000 Subject: [cl-debian] Bug#457154: marked as done (gclcvs: [INTL:fr] French debconf templates translation update) References: <20071220073514.11029.26418.reportbug@mykerinos.onera> Message-ID: Your message dated Sun, 13 Apr 2008 20:47:19 +0000 with message-id and subject line Bug#457154: fixed in gclcvs 2.7.0-84.1 has caused the Debian Bug report #457154, regarding gclcvs: [INTL:fr] French debconf templates translation update to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 457154: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457154 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: gclcvs: [INTL:fr] French debconf templates translation update Date: Thu, 20 Dec 2007 13:05:14 +0530 Size: 8085 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#457154: fixed in gclcvs 2.7.0-84.1 Date: Sun, 13 Apr 2008 20:47:19 +0000 Size: 4924 URL: From owner at bugs.debian.org Sun Apr 13 21:06:07 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 13 Apr 2008 21:06:07 +0000 Subject: [cl-debian] Bug#450981: marked as done ([INTL:nl] Dutch po-debconf translation) References: <200711121946.58814.cobaco@skolelinux.no> Message-ID: Your message dated Sun, 13 Apr 2008 20:47:19 +0000 with message-id and subject line Bug#450981: fixed in gclcvs 2.7.0-84.1 has caused the Debian Bug report #450981, regarding [INTL:nl] Dutch po-debconf translation to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 450981: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=450981 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: "cobaco (aka Bart Cornelis)" Subject: [INTL:nl] Dutch po-debconf translation Date: Mon, 12 Nov 2007 19:46:58 +0100 Size: 6397 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#450981: fixed in gclcvs 2.7.0-84.1 Date: Sun, 13 Apr 2008 20:47:19 +0000 Size: 4924 URL: From owner at bugs.debian.org Sun Apr 13 21:06:12 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 13 Apr 2008 21:06:12 +0000 Subject: [cl-debian] Bug#457359: marked as done (gclcvs: [INTL:de] updated German debconf translation) References: <20071221205925.GA32707@ipxXXXXX> Message-ID: Your message dated Sun, 13 Apr 2008 20:47:19 +0000 with message-id and subject line Bug#457359: fixed in gclcvs 2.7.0-84.1 has caused the Debian Bug report #457359, regarding gclcvs: [INTL:de] updated German debconf translation to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 457359: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457359 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Helge Kreutzmann Subject: gclcvs: [INTL:de] updated German debconf translation Date: Fri, 21 Dec 2007 21:59:25 +0100 Size: 6105 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#457359: fixed in gclcvs 2.7.0-84.1 Date: Sun, 13 Apr 2008 20:47:19 +0000 Size: 4924 URL: From owner at bugs.debian.org Sun Apr 13 21:06:20 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 13 Apr 2008 21:06:20 +0000 Subject: [cl-debian] Bug#474085: marked as done ([l10n] Updated Czech translation of gclcvs debconf messages) References: <20080403071204.GA29235@pharaoh.inf.upol.cz> Message-ID: Your message dated Sun, 13 Apr 2008 20:47:19 +0000 with message-id and subject line Bug#474085: fixed in gclcvs 2.7.0-84.1 has caused the Debian Bug report #474085, regarding [l10n] Updated Czech translation of gclcvs debconf messages to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 474085: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474085 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Miroslav Kure Subject: [l10n] Updated Czech translation of gclcvs debconf messages Date: Thu, 3 Apr 2008 09:12:04 +0200 Size: 9137 URL: -------------- next part -------------- An embedded message was scrubbed... From: Christian Perrier Subject: Bug#474085: fixed in gclcvs 2.7.0-84.1 Date: Sun, 13 Apr 2008 20:47:19 +0000 Size: 4899 URL: From lucas at lucas-nussbaum.net Mon Apr 14 10:46:48 2008 From: lucas at lucas-nussbaum.net (Lucas Nussbaum) Date: Mon, 14 Apr 2008 12:46:48 +0200 Subject: [cl-debian] Bug#474810: clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" In-Reply-To: <20080409182409.GA8415@xanadu.blop.info> References: <20080407193530.GA14940@xanadu.blop.info> <20080409182409.GA8415@xanadu.blop.info> Message-ID: <20080414104648.GA29589@xanadu.blop.info> reopen 474810 thanks On 09/04/08 at 20:24 +0200, Lucas Nussbaum wrote: > Hi, > > During another rebuild today, this package built fine, so it's likely > that the problem mentioned in this bug was caused by another package, > and fixed now. > > I am now closing this bug. I will reopen if I can reproduce this bug > again. I reproduced it. maybe it's a random failure? -- | Lucas Nussbaum | lucas at lucas-nussbaum.net http://www.lucas-nussbaum.net/ | | jabber: lucas at nussbaum.fr GPG: 1024D/023B3F4F | From noreply at henning.makholm.net Thu Apr 17 22:39:17 2008 From: noreply at henning.makholm.net (Debian testing watch) Date: Thu, 17 Apr 2008 16:39:17 -0600 Subject: [cl-debian] cl-screen-sbcl 1.0-4.1 MIGRATED to testing Message-ID: FYI: The status of the cl-screen-sbcl source package in Debian's testing distribution has changed. Previous version: 1.0-4 Current version: 1.0-4.1 -- This email is automatically generated; henning at makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From noreply at henning.makholm.net Thu Apr 17 22:39:17 2008 From: noreply at henning.makholm.net (Debian testing watch) Date: Thu, 17 Apr 2008 16:39:17 -0600 Subject: [cl-debian] cl-screen-sbcl 1.0-4.1 MIGRATED to testing Message-ID: FYI: The status of the cl-screen-sbcl source package in Debian's testing distribution has changed. Previous version: 1.0-4 Current version: 1.0-4.1 -- This email is automatically generated; henning at makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From edu at iki.fi Sat Apr 19 21:28:48 2008 From: edu at iki.fi (Esko =?UTF-8?Q?Araj=C3=A4rvi?=) Date: Sun, 20 Apr 2008 00:28:48 +0300 Subject: [cl-debian] Bug#476883: [INTL:fi] Finnish translation of the debconf templates Message-ID: <20080419212848.10591.2753.reportbug@localhost.localdomain> Package: hyperspec Severity: wishlist Tags: l10n patch Please include attached translation fi.po to the package. Regards, Esko Araj?rvi -------------- next part -------------- A non-text attachment was scrubbed... Name: fi.po Type: text/x-po Size: 1850 bytes Desc: not available URL: From noreply at henning.makholm.net Sun Apr 20 22:39:07 2008 From: noreply at henning.makholm.net (Debian testing watch) Date: Sun, 20 Apr 2008 16:39:07 -0600 Subject: [cl-debian] cl-iterate 1.4.2-3 MIGRATED to testing Message-ID: FYI: The status of the cl-iterate source package in Debian's testing distribution has changed. Previous version: 1.4.2-2 Current version: 1.4.2-3 -- This email is automatically generated; henning at makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From noreply at henning.makholm.net Sun Apr 20 22:39:07 2008 From: noreply at henning.makholm.net (Debian testing watch) Date: Sun, 20 Apr 2008 16:39:07 -0600 Subject: [cl-debian] cl-iterate 1.4.2-3 MIGRATED to testing Message-ID: FYI: The status of the cl-iterate source package in Debian's testing distribution has changed. Previous version: 1.4.2-2 Current version: 1.4.2-3 -- This email is automatically generated; henning at makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From mdw at distorted.org.uk Mon Apr 21 14:47:52 2008 From: mdw at distorted.org.uk (Mark Wooding) Date: Mon, 21 Apr 2008 15:47:52 +0100 Subject: [cl-debian] Bug#477169: post-sysdef-install.lisp: GET-UID broken on ECL and otherwise inconsistent Message-ID: <20080421144752.19942.83950.reportbug@metalzone.distorted.org.uk> Package: common-lisp-controller Version: 6.12 Severity: important Tags: patch I recently found that my ECL fails to ASDF-whatever systems. It fails like this: [metalzone ~]ecl ;;; Loading #P"/usr/lib/ecl/cmp.fas" ;;; Loading #P"/usr/lib/ecl/sysfun.lsp" ECL (Embeddable Common-Lisp) 0.9i Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya Copyright (C) 1993 Giuseppe Attardi Copyright (C) 2000 Juan J. Garcia-Ripoll ECL is free software, and you are welcome to redistribute it under certain conditions; see file 'Copyright' for details. Type :h for Help. Top level. > (asdf:oos 'asdf:load-op :cl-ppcre) ; loading system definition from /usr/share/common-lisp/systems/cl-ppcre.asd ; into # ; registering # as CL-PPCRE 1000 Unable to find out user ID Broken at EVAL.No restarts available. Broken at ASDF:OPERATE. >> Tracking down the problem shows that CLC's fallback implementation of GET-UID, in terms of `id', isn't working for whatever reason (presumably ECL doesn't do the right output-redirection stuff). Since ECL has a convenient FFI, it's trivial to implement a working GET-UID which doesn't need to mess with running shell commands and doing redirection. While staring at this code, I've noticed inconsistencies in the behaviour of GET-UID: * SBCL, CMU and Allegro (and now ECL) use the real uid of the process. * CLisp uses the uid of the user named by the USER environment variable. * Other Lisps call `id -u', which returns the effective uid. This is clearly an undesirable state of affairs, so the patch below makes everyone use the ruid. (Using the euid would be better, but I'm not sure that running Lisp systems in a setuid state is clever in the first place; besides, SBCL and CMU don't provide convenient ways of getting hold of the effective uid.) --- /usr/share/common-lisp/source/common-lisp-controller/post-sysdef-install.lisp.aside 2008-04-21 14:53:46.000000000 +0100 +++ /usr/share/common-lisp/source/common-lisp-controller/post-sysdef-install.lisp 2008-04-21 15:28:39.000000000 +0100 @@ -30,20 +30,21 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (require :osi)) -#+clisp (defun get-uid () (posix:user-info-uid (posix:user-info (ext:getenv "USER")))) +#+clisp (defun get-uid () (posix:getuid)) #+sbcl (defun get-uid () (sb-unix:unix-getuid)) #+cmu (defun get-uid () (unix:unix-getuid)) #+allegro (defun get-uid () (excl.osi:getuid)) +#+ecl (defun get-uid () (ffi:c-inline () () :int "getuid()" :one-liner t)) #+clisp (defun world-writable? (mode) (or (member :RWXO mode) (member :WOTH mode))) #+clisp (defun group-writable? (mode) (or (member :RWXG mode) (member :WGRP mode))) #-clisp (defun world-writable? (mode) (/= 0 (logand mode #o002))) #-clisp (defun group-writable? (mode) (/= 0 (logand mode #o020))) -#-(or cmu sbcl clisp allegro) +#-(or cmu sbcl clisp allegro ecl) (defun get-uid () (let ((uid-string (with-output-to-string (asdf::*VERBOSE-OUT*) - (asdf:run-shell-command "id -u")))) + (asdf:run-shell-command "id -ur")))) (with-input-from-string (stream uid-string) (read-line stream) (handler-case (parse-integer (read-line stream)) (I've set the severity to important, not because it breaks CLC, but because it has a major adverse effect on ECL.) -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.24.4 (PREEMPT) Locale: LANG=C, LC_CTYPE=en_GB.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages common-lisp-controller depends on: ii bash 3.1dfsg-9 The GNU Bourne Again SHell ii cl-asdf 1.109-2 Another System Definition Facility ii debconf [debconf-2.0] 1.5.20 Debian configuration management sy ii debianutils 2.28.4 Miscellaneous utilities specific t ii perl 5.8.8-12 Larry Wall's Practical Extraction ii realpath 1.11 Return the canonicalized absolute common-lisp-controller recommends no packages. -- debconf information excluded From atomo64 at gmail.com Tue Apr 22 00:58:45 2008 From: atomo64 at gmail.com (Raphael Geissert) Date: Mon, 21 Apr 2008 19:58:45 -0500 Subject: [cl-debian] Bug#477254: cl-gd: bashism in debian/rules Message-ID: <200804211958.45878.atomo64@gmail.com> Source: cl-gd Severity: important User: debian-release at lists.debian.org Usertags: goal-dash Hello maintainer, While checking for bashisms in debian/rules with checkbashisms (from the 'devscripts' package) I've found your package making use of a bashism. checkbashisms' output: > possible bashism in cl-gd/debian/rules line 36 (brace expansion): > rm -f debian/cl-gd.postinst.* debian/cl-gd.prerm.* > $(lib-base).{o,so} > possible bashism in cl-sdl/debian/rules line 17 (brace expansion): > ex-data := > examples/data/{cl-sdl.bmp,cl-sdl.xcf,star.bmp,tut10.world} Not using bash (or a Debian Policy conformant shell interpreter which does provide such an extra feature) as /bin/sh is likely to lead to errors or unexpected behaviours. Please be aware that although bash is currently the default /bin/sh there's a release goal for Lenny to make dash the default /bin/sh[1]. If you want more information about dash as /bin/sh, you can read: http://lists.debian.org/debian-release/2008/01/msg00189.html For more information please refer to the Debian Policy section 10.4 supporting this argument at: http://www.debian.org/doc/debian-policy/ch-files.html#s-scripts Hints about how to fix bashisms: Sometimes these bugs are already fixed in Ubuntu, look at the PTS. If not already fixed you can read: https://wiki.ubuntu.com/DashAsBinSh [1]http://release.debian.org/lenny/goals.txt Thank you, -- Atomo64 - Raphael Please avoid sending me Word, PowerPoint or Excel attachments. See http://www.gnu.org/philosophy/no-word-attachments.html From lucas at lucas-nussbaum.net Tue Apr 22 07:58:17 2008 From: lucas at lucas-nussbaum.net (Lucas Nussbaum) Date: Tue, 22 Apr 2008 09:58:17 +0200 Subject: [cl-debian] Bug#470447: cmucl: FTBFS: make[1]: *** [all] Error 133 In-Reply-To: <20080421233545.GD19292@post.servercare.de> References: <20080421233545.GD19292@post.servercare.de> Message-ID: <20080422075817.GA12410@xanadu.blop.info> On 22/04/08 at 01:35 +0200, Sebastian Bober wrote: > Hi, > > I did a build of cmucl in a current i386 sid chroot on an amd64 machine. > For this I applied the patch for bug#473948 (see > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473948#10). The build > worked fine. The log can be found at: > > http://servercare.de/debian/logs/cmucl_i386_2008-04-22-1208819299.log > > Lucas, can you still reproduce this bug (with the mentioned patch > applied)? Please just upload if you think that the patch fixes the bug, and close the bug. If I can reproduce the failure during my next rebuild, I'll reopen the bug. -- | Lucas Nussbaum | lucas at lucas-nussbaum.net http://www.lucas-nussbaum.net/ | | jabber: lucas at nussbaum.fr GPG: 1024D/023B3F4F | From mcclim-devel at common-lisp.net Wed Apr 23 12:04:00 2008 From: mcclim-devel at common-lisp.net (McCLIM maintainers) Date: Wed, 23 Apr 2008 14:04:00 +0200 Subject: [cl-debian] [ann] [mcclim-announce] McCLIM 0.9.6 "St. George's Day" is released! Message-ID: <480F25B0.7020409@common-lisp.net> The McCLIM developers are happy to release version 0.9.6 of McCLIM, code-named "St. George's Day". This release includes several bug and specification compliance fixes, as well as improvements to the anti-aliased text drawing facility and to the Drei text editing substrate. When testing this release, we found that it works on these implementations: * SBCL * CMUCL 19d * Clozure CL 1.2 (RC 1) * CLISP 2.41 (requires "Telent" CLX) * Allegro Common Lisp 8.1 in ANSI Mode For compatibility with Mac OS X 10.5 "Leopard", please see the included release notes. Get the tarball at . Alternatively, you can install McCLIM via asdf-install. We are looking forward to your comments and bug reports. Please send them to mcclim-devel at common-lisp.net. The list of currently known bugs can be found at . Have fun using McCLIM, The McCLIM developers. RELEASE NOTES FOR McCLIM 0.9.6, "St. George's Day": Compatibility ============= This release was tested and found to work on the following implementations: * SBCL * CMUCL 19d * Clozure CL 1.2 (RC 1) * CLISP 2.41 (requires "Telent" CLX) * Allegro Common Lisp 8.1 in ANSI Mode McCLIM currently does not support lisps with case-sensitive readers (Allegro CL "modern mode" and lower-case Scieneer CL). To run McCLIM on Mac OS X 10.5, it is currently necessary to pass an explicit DISPLAY argument to work around incompatibility between Leopard's X11 auto-start facility and CLX. Changes in mcclim-0.9.6 "St. George's Day" relative to 0.9.5: ============================================================== From the NEWS file: * New extension: mcclim-truetype: provides a 100% lisp path for AA fonts with CLX using cl-vectors and zpb-ttf, as an alternative to mcclim-freetype. * Improvement: Faster drawing and AA text rendering. AA text requires a fix to the Xrender support of CLX, available in Christophe Rhodes's current CLX distribution from darcs. * Improvement: Look up arbitrary truetype fonts by name via fontconfig. * Drei improvements ** New redisplay engine that is faster and has more features. ** Support for "views" concept. ** Support for modes a la Emacs "mini-modes". ** Improvement: Goal-columns for line movement. ** Improvement: More Emacs-like expression movement for Lisp syntax. ** Bug fix: Input prompting now works for directly recursive calls to ACCEPT. * Specification compliance: READ-BITMAP-FILE and MAKE-PATTERN-FROM-BITMAP-FILE from CLIM 2.2. Includes new example program, IMAGE-VIEWER. * Specification compliance: The :inherit-menu keyword argument to DEFINE-COMMAND-TABLE and MAKE-COMMAND-TABLE is now implemented with CLIM 2.2 semantics. The :keystrokes value is not handled yet. * Specification compliance: :PRINTER functions for MENU-CHOOSE are now called with the menu item, not the display object. * Bug fix: ESA's help commands are better at finding bindings and describing them * Bug fix: Some missing methods and functions have been implemented for the Null backend, allowing headless operation for many applications. * Bug fix: correct computation of bounding rectangle after clear-output-record and recompute-extent-for-new-child. * Bug fix: label panes no longer have a restrictive maximum width. * Bug fix: ellipses with a zero radius no longer cause errors. * Bug fix: bezier drawing in CLIM-FIG less likely to cause errors. * Bug fix: restored somewhat working undo in CLIM-FIG. _______________________________________________ mcclim-announce mailing list mcclim-announce at common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/mcclim-announce _______________________________________________ announcements site list announcements at common-lisp.net http://common-lisp.net/mailman/listinfo/announcements From owner at bugs.debian.org Wed Apr 23 19:45:10 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 23 Apr 2008 19:45:10 +0000 Subject: [cl-debian] Bug#470447: marked as done (cmucl: FTBFS: make[1]: *** [all] Error 133) References: <20080423194501.GA26981@pryan.sytes.net> <20080311092634.GA7750@xanadu.blop.info> Message-ID: Your message dated Wed, 23 Apr 2008 21:45:01 +0200 with message-id <20080423194501.GA26981 at pryan.sytes.net> and subject line Re: Bug#470447: cmucl: FTBFS: make[1]: *** [all] Error 133 has caused the Debian Bug report #470447, regarding cmucl: FTBFS: make[1]: *** [all] Error 133 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 470447: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470447 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Lucas Nussbaum Subject: cmucl: FTBFS: make[1]: *** [all] Error 133 Date: Tue, 11 Mar 2008 10:26:34 +0100 Size: 8099 URL: -------------- next part -------------- An embedded message was scrubbed... From: Ana Guerrero Subject: Re: Bug#470447: cmucl: FTBFS: make[1]: *** [all] Error 133 Date: Wed, 23 Apr 2008 21:45:01 +0200 Size: 7941 URL: From owner at bugs.debian.org Wed Apr 23 19:48:08 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 23 Apr 2008 19:48:08 +0000 Subject: [cl-debian] Processed: cmucl: diff for NMU version 19d-20061116-4.1 In-Reply-To: <20080423194816.GA29836@pryan.sytes.net> References: <20080423194816.GA29836@pryan.sytes.net> Message-ID: Processing commands for control at bugs.debian.org: > tags 473948 + patch Bug#473948: cmucl: FTBFS: unistd.h:2:25: error: unistd_32.h: No such file or directory Tags were: patch Tags added: patch > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From ana at debian.org Wed Apr 23 19:48:16 2008 From: ana at debian.org (Ana Guerrero) Date: Wed, 23 Apr 2008 21:48:16 +0200 Subject: [cl-debian] Bug#473948: cmucl: diff for NMU version 19d-20061116-4.1 Message-ID: <20080423194816.GA29836@pryan.sytes.net> tags 473948 + patch thanks Hi, Attached is the diff for my cmucl 19d-20061116-4.1 NMU. -------------- next part -------------- A non-text attachment was scrubbed... Name: cmucl-19d-20061116-4.1-nmu.diff Type: text/x-diff Size: 1088 bytes Desc: not available URL: From ana at debian.org Wed Apr 23 20:47:06 2008 From: ana at debian.org (Ana Beatriz Guerrero Lopez) Date: Wed, 23 Apr 2008 20:47:06 +0000 Subject: [cl-debian] Accepted cmucl 19d-20061116-4.1 (source i386 all) Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Wed, 23 Apr 2008 21:45:29 +0200 Source: cmucl Binary: cmucl cmucl-docs cmucl-clm cmucl-source Architecture: source i386 all Version: 19d-20061116-4.1 Distribution: unstable Urgency: low Maintainer: Debian Common Lisp Team Changed-By: Ana Beatriz Guerrero Lopez Description: cmucl - The CMUCL lisp compiler and development system cmucl-clm - The Motif interface for CMUCL cmucl-docs - The CMUCL documentation cmucl-source - The CMUCL lisp sources Closes: 473948 Changes: cmucl (19d-20061116-4.1) unstable; urgency=low . * Non-maintainer upload to fix RC bug. * Remove -I- from the CPPFLAGS. Patch by Sebastian Bober. (Closes: #473948) Checksums-Sha1: 6aef90fe1fc430521bcdac25893cf17dc875941d 1381 cmucl_19d-20061116-4.1.dsc abf94f25ed7ff95449dd1adfc5df94f4309fbee9 1523302 cmucl_19d-20061116-4.1.diff.gz 9c57f31bd383afc7577ad3378ec02cef04a63650 10904650 cmucl_19d-20061116-4.1_i386.deb e86830f7ee0f918638c081288ba807dd7049918c 2346530 cmucl-docs_19d-20061116-4.1_all.deb 4c7e12e7f1b668faadc8602e60d6d719df8814dc 646246 cmucl-clm_19d-20061116-4.1_i386.deb 3734473570a76ce8392a07318cf5bf4e3f958b70 5275112 cmucl-source_19d-20061116-4.1_all.deb Checksums-Sha256: cbf7113eb59bcaa925cf917c7bad670b116c4ee74a383a5293c866638e6dd325 1381 cmucl_19d-20061116-4.1.dsc abf4b910e1b532329a0e5897546b22296849dbe9fe8fa4894b23d0d29f2839e7 1523302 cmucl_19d-20061116-4.1.diff.gz 4c1460599ba152ae23fca4ec4f8d5074efe9f4415a10a01c7098f06512ed04ed 10904650 cmucl_19d-20061116-4.1_i386.deb f8468fffe365a2c8c2307d14fabce919e25b32c7c819e23e3759865ef953c7f4 2346530 cmucl-docs_19d-20061116-4.1_all.deb 4487ef5df4227f984b2ca6f3b2ef30ea1c259ae73618a9afba68d54a3a3f0306 646246 cmucl-clm_19d-20061116-4.1_i386.deb 02b35d342e6fb8beef4c5c87aaa7de6be7e97aa4f0322d39bc27e53ae112d81d 5275112 cmucl-source_19d-20061116-4.1_all.deb Files: 121613c7769daea0df6974039dc1b623 1381 devel optional cmucl_19d-20061116-4.1.dsc e7acea55c465f5f72409f21b2e8a0045 1523302 devel optional cmucl_19d-20061116-4.1.diff.gz 1a7e629c2a12152b62241897e0170c89 10904650 devel optional cmucl_19d-20061116-4.1_i386.deb 9ad140dc10f80bb63152155c9f781ad0 2346530 doc optional cmucl-docs_19d-20061116-4.1_all.deb 5216bce97af7f0c959bd69d8ad0ece9f 646246 devel optional cmucl-clm_19d-20061116-4.1_i386.deb acff3b06557809f490080584c5b76756 5275112 devel optional cmucl-source_19d-20061116-4.1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Signed by Ana Guerrero iD8DBQFID5dZn3j4POjENGERAtwrAJ0adrNMVwTBH8MRGxH/N/3vf88K5QCeLHbT jHZmK6SC+Vuqrtdxq9dd0c4= =JXIm -----END PGP SIGNATURE----- Accepted: cmucl-clm_19d-20061116-4.1_i386.deb to pool/main/c/cmucl/cmucl-clm_19d-20061116-4.1_i386.deb cmucl-docs_19d-20061116-4.1_all.deb to pool/main/c/cmucl/cmucl-docs_19d-20061116-4.1_all.deb cmucl-source_19d-20061116-4.1_all.deb to pool/main/c/cmucl/cmucl-source_19d-20061116-4.1_all.deb cmucl_19d-20061116-4.1.diff.gz to pool/main/c/cmucl/cmucl_19d-20061116-4.1.diff.gz cmucl_19d-20061116-4.1.dsc to pool/main/c/cmucl/cmucl_19d-20061116-4.1.dsc cmucl_19d-20061116-4.1_i386.deb to pool/main/c/cmucl/cmucl_19d-20061116-4.1_i386.deb From owner at bugs.debian.org Wed Apr 23 21:42:04 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Wed, 23 Apr 2008 21:42:04 +0000 Subject: [cl-debian] Bug#473948: marked as done (cmucl: FTBFS: unistd.h:2:25: error: unistd_32.h: No such file or directory) References: <20080402102622.GA11366@blop.info> Message-ID: Your message dated Wed, 23 Apr 2008 20:47:06 +0000 with message-id and subject line Bug#473948: fixed in cmucl 19d-20061116-4.1 has caused the Debian Bug report #473948, regarding cmucl: FTBFS: unistd.h:2:25: error: unistd_32.h: No such file or directory to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 473948: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473948 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Lucas Nussbaum Subject: cmucl: FTBFS: unistd.h:2:25: error: unistd_32.h: No such file or directory Date: Wed, 2 Apr 2008 12:26:22 +0200 Size: 3248 URL: -------------- next part -------------- An embedded message was scrubbed... From: Ana Beatriz Guerrero Lopez Subject: Bug#473948: fixed in cmucl 19d-20061116-4.1 Date: Wed, 23 Apr 2008 20:47:06 +0000 Size: 5403 URL: From owner at bugs.debian.org Sun Apr 27 23:54:04 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 27 Apr 2008 23:54:04 +0000 Subject: [cl-debian] Processed: Re: clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" In-Reply-To: <20080427235210.GN22893@post.servercare.de> References: <20080427235210.GN22893@post.servercare.de> Message-ID: Processing commands for control at bugs.debian.org: > tags 474810 + patch Bug#474810: clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" There were no tags set. Tags added: patch > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From sbober at servercare.de Sun Apr 27 23:52:10 2008 From: sbober at servercare.de (Sebastian Bober) Date: Mon, 28 Apr 2008 01:52:10 +0200 Subject: [cl-debian] Bug#474810: clisp: FTBFS: floatparam.h:18:2: error: #error "Unknown rounding mode for type double!" Message-ID: <20080427235210.GN22893@post.servercare.de> tags 474810 + patch thanks Hi, this bug is fixed in a new upstream version 2.44.1 of clisp. I have extracted a minimal fix for this build failure. It is attached to this mail. I can confirm that clisp builds fine on i386 and amd64 and gcc-4.3 with this patch applied. Build logs at: http://servercare.de/debian/logs/clisp_i386_2008-04-28-1209339333.log http://servercare.de/debian/logs/clisp_amd64_2008-04-28-1209339906.log Regards, Sebastian -------------- next part -------------- A non-text attachment was scrubbed... Name: clisp-floatparam.patch Type: text/x-diff Size: 710 bytes Desc: not available URL: From gergo at erdi.hu Mon Apr 28 21:55:12 2008 From: gergo at erdi.hu (Dr. ERDI Gergo) Date: Mon, 28 Apr 2008 23:55:12 +0200 Subject: [cl-debian] Bug#478355: emacs-package-install fails to install slime for xemacs21 Message-ID: <20080428215512.22258.12140.reportbug@galaxy.cactus> Package: slime Version: 1:20080223-2 Severity: normal When (re)configuring the Slime package after installing xemacs21 from Debian, I get the following error message: Malformed list: :inherit xemacs exiting . emacs-package-install: /usr/lib/emacsen-common/packages/install/slime xemacs21 emacs21 emacs22 xemacs21 failed at /usr/lib/emacsen-common/emacs-package-install line 30, line 2. dpkg: error processing slime (--configure): subprocess post-installation script returned error exit status 255 Errors were encountered while processing: slime -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.23.12 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages slime depends on: ii cl-swank 1:20080223-2 Superior LISP Interaction Mode for ii emacsen-common 1.4.17 Common facilities for all emacsen Versions of packages slime recommends: ii emacs21 [info-browse 21.4a+1-5.3 The GNU Emacs editor ii emacs22 [info-browse 22.2+2-2 The GNU Emacs editor ii info [info-browser] 4.11.dfsg.1-4 Standalone GNU Info documentation ii konqueror [info-brow 4:3.5.9.dfsg.1-2+b1 KDE's advanced file manager, web b ii pinfo [info-browser] 0.6.9-2 An alternative info-file viewer ii xemacs21-gnome-mule 21.4.21-3 highly customizable text editor -- ii xemacs21-gnome-nomul 21.4.21-3 highly customizable text editor -- ii xemacs21-mule [info- 21.4.21-3 highly customizable text editor -- ii xemacs21-nomule [inf 21.4.21-3 highly customizable text editor -- -- no debconf information From owner at bugs.debian.org Mon Apr 28 19:57:04 2008 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Mon, 28 Apr 2008 19:57:04 +0000 Subject: [cl-debian] Processed: Re: ecl - FTBFS: dpkg-genchanges: failure: cannot read files list file: No such file or directory In-Reply-To: <20080428195504.GP22893@post.servercare.de> References: <20080428195504.GP22893@post.servercare.de> Message-ID: Processing commands for control at bugs.debian.org: > tags 471223 + patch Bug#471223: ecl - FTBFS: dpkg-genchanges: failure: cannot read files list file: No such file or directory There were no tags set. Tags added: patch > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) From sbober at servercare.de Mon Apr 28 19:55:04 2008 From: sbober at servercare.de (Sebastian Bober) Date: Mon, 28 Apr 2008 21:55:04 +0200 Subject: [cl-debian] Bug#471223: ecl - FTBFS: dpkg-genchanges: failure: cannot read files list file: No such file or directory Message-ID: <20080428195504.GP22893@post.servercare.de> tags 471223 + patch thanks Hi, in ecl 0.9j-20080306-1 all actions of the "binary-arch" target were moved to "binary-indep". This is cleary wrong, as one "Architecture: any" package is defined in debian/control. I have changed debian/rules in a way that the "Architecture: any" package "ecl" is created in "binary-arch" and the "Architecture: all" package "ecl-doc" in "binary-indep". For this I created the targets "build-arch" and "build-indep" and made "build" depend on both, "binary-arch" on "build-arch", and "binary-indep" on "build-indep". "build-indep" really only builds the info documentation. I have added the necessary dh_* calls to "binary-indep" and all dh_* calls have added the appropiate -a or -i options. The packages that are created by this updated debian/rules contain exactly the same files as the original ones and have no additional lintian warnings or errors. They build and install fine on i386 and amd64 with gcc-4.3 and if using "dpkg-buildpackage -B" (i.e. when only building binary-arch packages like on a buildd). The patch is attached and the build logs for i386 and amd64 can be found at: http://servercare.de/debian/logs/ecl_i386_2008-04-28-1209406859.log http://servercare.de/debian/logs/ecl_amd64_2008-04-28-1209410680.log Regards, Sebastian -------------- next part -------------- A non-text attachment was scrubbed... Name: ecl-correct-rules.patch Type: text/x-diff Size: 2601 bytes Desc: not available URL: From bubulle at debian.org Tue Apr 29 09:02:39 2008 From: bubulle at debian.org (Christian Perrier) Date: Tue, 29 Apr 2008 11:02:39 +0200 Subject: [cl-debian] Bug#466654: Announce of the upcoming NMU for the hyperspec package Message-ID: <20080429090239.GA1872@mykerinos.kheops.frmug.org> Dear maintainer of hyperspec and Debian translators, Some days ago, I sent a notice to the maintainer of the hyperspec Debian package, mentioning the status of at least one old po-debconf translation update in the BTS. I announced the intent to build and possibly upload a non-maintainer upload for this package in order to fix this long-time pending localization bug as well as all other pending translations. The package maintainer agreed for the NMU or did not respond in two weeks, so I will proceed with the NMU. The full planned schedule is available at the end of this mail. The package is currently translated to: cs de es fi fr pt sv Among these, the following translations are incomplete: cs es sv If you did any of the, currently incomplete, translations you will get ANOTHER mail with the translation to update. Other translators also have the opportunity to create new translations for this package. Once completed, please send them as a bug report against the hyperspec package so I can incorporate them in the build. The deadline for receiving updates and new translations is Friday, May 09, 2008. If you are not in time you can always send your translation to the BTS. The POT file is attached to this mail. If the maintainer objects to this process I will immediately abort my NMU and send him/her all updates I receive. Otherwise the following will happen (or already has): Sunday, April 13, 2008 : send the first intent to NMU notice to the package maintainer. Tuesday, April 29, 2008 : send this notice Friday, May 09, 2008 : deadline for receiving translation updates Saturday, May 10, 2008 : build the package and upload it to DELAYED/2-day send the NMU patch to the BTS Monday, May 12, 2008 : NMU uploaded to incoming Thanks for your efforts and time. -- -- -------------- next part -------------- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: hyperspec at packages.debian.org\n" "POT-Creation-Date: 2008-02-18 22:51+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Download the hyperspec book from the Internet?" msgstr "" #. Type: boolean #. Description #: ../templates:1001 msgid "" "You don't have the file /root/tmp/HyperSpec-6-0.tar.gz. You may want to " "download this file from internet now and proceed with the installation " "afterward." msgstr "" #. Type: boolean #. Description #: ../templates:2001 msgid "Unable to download. Try again?" msgstr "" #. Type: boolean #. Description #: ../templates:2001 msgid "" "An error occured during the download of the hyperspec from the Internet. You " "may now request to try the download again." msgstr "" #. Type: note #. Description #: ../templates:3001 msgid "Aborting" msgstr "" #. Type: note #. Description #: ../templates:3001 msgid "" "The download of the hyperspec from internet failed. You can try reinstalling " "the file another time." msgstr "" -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: Digital signature URL: From jtarrio at trasno.net Tue Apr 29 20:33:27 2008 From: jtarrio at trasno.net (Jacobo Tarrio) Date: Tue, 29 Apr 2008 21:33:27 +0100 Subject: [cl-debian] Bug#478575: [INTL:gl] Galician debconf template translation for hyperspec Message-ID: <20080429203327.8419.98376.reportbug@localhost> Package: hyperspec Severity: wishlist Tags: l10n patch It is attached to this report. -------------- next part -------------- # Galician translation of hyperspec's debconf templates # This file is distributed under the same license as the hyperspec package. # Jacobo Tarrio , 2008. # msgid "" msgstr "" "Project-Id-Version: hyperspec\n" "Report-Msgid-Bugs-To: hyperspec at packages.debian.org\n" "POT-Creation-Date: 2008-02-18 22:51+0100\n" "PO-Revision-Date: 2008-04-29 21:29+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Download the hyperspec book from the Internet?" msgstr "?Descargar o libro de hyperspec de Internet?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "You don't have the file /root/tmp/HyperSpec-6-0.tar.gz. You may want to " "download this file from internet now and proceed with the installation " "afterward." msgstr "" "Non ten o ficheiro /root/tmp/HyperSpec-6-0.tar.gz. Pode precisar de " "descargar este ficheiro de Internet agora e continuar a instalaci?n m?is " "tarde." #. Type: boolean #. Description #: ../templates:2001 msgid "Unable to download. Try again?" msgstr "Non se puido descargar. ?Quere volver tentalo?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "An error occured during the download of the hyperspec from the Internet. You " "may now request to try the download again." msgstr "" "Houbo un erro ao descargar hyperspec de Internet. Agora pode solicitar " "repetir a descarga." #. Type: note #. Description #: ../templates:3001 msgid "Aborting" msgstr "A abortar" #. Type: note #. Description #: ../templates:3001 msgid "" "The download of the hyperspec from internet failed. You can try reinstalling " "the file another time." msgstr "" "A descarga de hyperspec de Internet fallou. Pode volver tentar instalar o " "ficheiro." From noreply at henning.makholm.net Tue Apr 29 22:39:08 2008 From: noreply at henning.makholm.net (Debian testing watch) Date: Tue, 29 Apr 2008 16:39:08 -0600 Subject: [cl-debian] cmucl 19d-20061116-4.1 MIGRATED to testing Message-ID: FYI: The status of the cmucl source package in Debian's testing distribution has changed. Previous version: 19d-20061116-4 Current version: 19d-20061116-4.1 -- This email is automatically generated; henning at makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From noreply at henning.makholm.net Tue Apr 29 22:39:08 2008 From: noreply at henning.makholm.net (Debian testing watch) Date: Tue, 29 Apr 2008 16:39:08 -0600 Subject: [cl-debian] cmucl 19d-20061116-4.1 MIGRATED to testing Message-ID: FYI: The status of the cmucl source package in Debian's testing distribution has changed. Previous version: 19d-20061116-4 Current version: 19d-20061116-4.1 -- This email is automatically generated; henning at makholm.net is responsible. See http://people.debian.org/~henning/trille/ for more information. From pi+debian at beobide.net Wed Apr 30 22:10:08 2008 From: pi+debian at beobide.net (Piarres Beobide) Date: Thu, 01 May 2008 00:10:08 +0200 Subject: [cl-debian] Bug#478772: [INTL:eu] hyperspec debconf templates Basque translation Message-ID: <20080430221008.1213.24497.reportbug@zerb.beobide.net> Package: hyperspec Severity: wishlist Tags: l10n patch Hi Attached hypersec debconf templates Basque translation, please add it. thx -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core) Locale: LANG=eu_ES.UTF-8, LC_CTYPE=eu_ES.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages hyperspec depends on: ii debconf [debconf-2.0] 1.5.21 Debian configuration management sy ii wget 1.11.1-1 retrieves files from the web hyperspec recommends no packages. -------------- next part -------------- # translation of hyperspec-eu.po to Euskara # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Piarres Beobide , 2008. msgid "" msgstr "" "Project-Id-Version: hyperspec-eu\n" "Report-Msgid-Bugs-To: hyperspec at packages.debian.org\n" "POT-Creation-Date: 2008-02-18 22:51+0100\n" "PO-Revision-Date: 2008-04-30 23:57+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Download the hyperspec book from the Internet?" msgstr "Deskargatu hypersec liburua internetetik?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "You don't have the file /root/tmp/HyperSpec-6-0.tar.gz. You may want to " "download this file from internet now and proceed with the installation " "afterward." msgstr "" "Ez duzu /root/tmp/HyperSpec-6-0.tar.gz fitxategia. Fitxategi hau internetetik " "deskargatu beharko zenuke eta orduan instalazioarekin aurrera jarraitu." #. Type: boolean #. Description #: ../templates:2001 msgid "Unable to download. Try again?" msgstr "Ezin da deskargatu. Berriz saiatu?" #. Type: boolean #. Description #: ../templates:2001 msgid "" "An error occured during the download of the hyperspec from the Internet. You " "may now request to try the download again." msgstr "" "Errore bat gertatu da internetetik hypersec deskargatzean. Orain berriz " "deskargatzen saiatu beharko zenuke." #. Type: note #. Description #: ../templates:3001 msgid "Aborting" msgstr "Abortatzen" #. Type: note #. Description #: ../templates:3001 msgid "" "The download of the hyperspec from internet failed. You can try reinstalling " "the file another time." msgstr "" "Huts egin du hypersec internetetik deskargatzean. Fitxategia beste momentu " "batetan deskargatzen saiatzen zara."