Your message dated Tue, 03 May 2005 06:17:03 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#307161: fixed in common-lisp-controller 4.14
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 1 May 2005 11:19:07 +0000
>From [EMAIL PROTECTED] Sun May 01 04:19:07 2005
Return-path: <[EMAIL PROTECTED]>
Received: from wproxy.gmail.com [64.233.184.195]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DSCTb-0003fl-00; Sun, 01 May 2005 04:19:07 -0700
Received: by wproxy.gmail.com with SMTP id 71so1787595wra
for <[EMAIL PROTECTED]>; Sun, 01 May 2005 04:18:36 -0700 (PDT)
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
s=beta; d=gmail.com;
h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition;
b=IEpYWN/v10kpQxcZQSOKPXc2swyAq9jH7YfbN6owg6h3RcR/nTF/q/zoKUsXBte8l/LjzY1j+HSgUsOUHA4kB2EwOvahcJ7stTEZS4KC3jbKxWF5IlEJvn2U6gDZS5gi6I97SGdOlYFy07968t/iCMaRYiNjg70PqC5CtSkqcXU=
Received: by 10.54.123.20 with SMTP id v20mr91565wrc;
Sun, 01 May 2005 04:18:36 -0700 (PDT)
Received: by 10.54.72.13 with HTTP; Sun, 1 May 2005 04:18:36 -0700 (PDT)
Message-ID: <[EMAIL PROTECTED]>
Date: Sun, 1 May 2005 13:18:36 +0200
From: =?ISO-8859-1?Q?Pascal_Gross=E9?= <[EMAIL PROTECTED]>
Reply-To: =?ISO-8859-1?Q?Pascal_Gross=E9?= <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: common-lisp-controller: user registered packages not found by
clc-require in sbcl
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Package: common-lisp-controller
Version: 4.12
Severity: normal
-- System Information:
Debian Release: 3.1
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11
Locale: LANG=3Dfr_FR, LC_CTYPE=3Dfr_FR (charmap=3DISO-8859-1)
Versions of packages common-lisp-controller depends on:
ii bash 3.0-14 The GNU Bourne Again SHell
ii cl-asdf 1.86-2 Another System Definition Faci=
lity
ii debconf 1.4.48 Debian configuration managemen=
t sy
ii debianutils 2.13.2 Miscellaneous utilities specif=
ic t
ii realpath 1.9.20 Return the canonicalized absol=
ute=20
-- debconf information:
* common-lisp-controller/short-site-name: pilipili
* common-lisp-controller/long-site-name: pilipili
I am using debian sid, which was last updated 1 hour ago.
I just did a fresh install of sbcl, cmucl and clisp (no other lisp
package, except dependencies). I also registered a lisp package I just
downloaded (ltk) with clc-register-user-package, and tried to load it
with all 3 lisp implementations using (clc:clc-require :ltk).
It works flawlessly with cmucl and clisp (well, ltk does not compile
with clisp, but the package is found). sbcl simply returns NIL.
If I launch sbcl from within the ltk directory, the above command works
correctly, so I thought it might be a path issue:
$ rlwrap sbcl
This is SBCL 0.9.0, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
* (clc:clc-require :ltk)
NIL
* asdf:*central-registry*
(#P"/root/.clc/systems/" #P"/usr/share/common-lisp/systems/"
(MERGE-PATHNAMES ".sbcl/systems/" (USER-HOMEDIR-PATHNAME))
(MERGE-PATHNAMES "site-systems/" (TRUENAME (POSIX-GETENV "SBCL_HOME")))
(MERGE-PATHNAMES "systems/" (TRUENAME (POSIX-GETENV "SBCL_HOME")))
*DEFAULT-PATHNAME-DEFAULTS*)
* (dolist (dir asdf:*central-registry*) (print (eval dir)))
#P"/root/.clc/systems/"
#P"/usr/share/common-lisp/systems/"
#P"/home/skal/.sbcl/systems/"
#P"/usr/lib/sbcl/site-systems/"
#P"/usr/lib/sbcl/systems/"
#P"/home/skal/"
NIL
The /root/.clc/systems does indeed look suspicious. I think this is
caused by an expression evaluated too soon (during image creation). At
the end of
/usr/share/common-lisp/source/common-lisp-controller/common-lisp-controller=
.lisp,
I changed
;; register the users root:
(push (merge-pathnames ".clc/systems/"
=09(user-homedir-pathname))
(symbol-value (intern (symbol-name :*central-registry*)
=09=09=09 (find-package :asdf))))))
to
;; register the users root:
(push '(merge-pathnames ".clc/systems/"
=09(user-homedir-pathname))
(symbol-value (intern (symbol-name :*central-registry*)
=09=09=09 (find-package :asdf))))))
(just added the single quote, to delay the evalutation).
After a dpkg-reconfigure sbcl, all is back to normal:
$rlwrap sbcl
This is SBCL 0.9.0, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
* (dolist (dir asdf:*central-registry*) (print (eval dir)))
#P"/home/skal/.clc/systems/"
#P"/usr/share/common-lisp/systems/"
#P"/home/skal/.sbcl/systems/"
#P"/usr/lib/sbcl/site-systems/"
#P"/usr/lib/sbcl/systems/"
#P"/home/skal/"
NIL
* (clc:clc-require :ltk)
T
---------------------------------------
Received: (at 307161-close) by bugs.debian.org; 3 May 2005 10:24:09 +0000
>From [EMAIL PROTECTED] Tue May 03 03:24:09 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DSuZV-0007u8-00; Tue, 03 May 2005 03:24:09 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DSuSd-0004Ci-00; Tue, 03 May 2005 06:17:03 -0400
From: Peter Van Eynde <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#307161: fixed in common-lisp-controller 4.14
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 03 May 2005 06:17:03 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Source: common-lisp-controller
Source-Version: 4.14
We believe that the bug you reported is fixed in the latest version of
common-lisp-controller, which is due to be installed in the Debian FTP archive:
common-lisp-controller_4.14.dsc
to pool/main/c/common-lisp-controller/common-lisp-controller_4.14.dsc
common-lisp-controller_4.14.tar.gz
to pool/main/c/common-lisp-controller/common-lisp-controller_4.14.tar.gz
common-lisp-controller_4.14_all.deb
to pool/main/c/common-lisp-controller/common-lisp-controller_4.14_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Peter Van Eynde <[EMAIL PROTECTED]> (supplier of updated common-lisp-controller
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Tue, 3 May 2005 11:53:00 +0200
Source: common-lisp-controller
Binary: common-lisp-controller
Architecture: source all
Version: 4.14
Distribution: unstable
Urgency: low
Maintainer: Peter Van Eynde <[EMAIL PROTECTED]>
Changed-By: Peter Van Eynde <[EMAIL PROTECTED]>
Description:
common-lisp-controller - This is a Common Lisp source and compiler manager
Closes: 307161
Changes:
common-lisp-controller (4.14) unstable; urgency=low
.
* Corrected user system search path for sbcl. Closes: #307161
Files:
6be07b9972d2a1d2ff4cebcf10d7a82f 587 devel optional
common-lisp-controller_4.14.dsc
10066b7c2f17c58c5fe986d87b7e1155 23236 devel optional
common-lisp-controller_4.14.tar.gz
5ad3c400359484e530041fc793915738 22470 devel optional
common-lisp-controller_4.14_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCd0sk11ldN0tyliURAi57AJoDjnwT4akWY/Nril+RW7S60QeLWgCgpO/j
6y5oDrJvSMBqk5lqKL+yDMk=
=ITOc
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]