[cl-debian] Bug#334406: marked as done (reduce priority of common-lisp-control's asdf repository)

Debian Bug Tracking System owner at bugs.debian.org
Fri Oct 21 15:48:24 UTC 2005


Your message dated Fri, 21 Oct 2005 08:47:08 -0700
with message-id <E1ESz6q-0003mS-00 at spohr.debian.org>
and subject line Bug#334406: fixed in common-lisp-controller 4.21
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; 17 Oct 2005 17:33:23 +0000
>From clemens at endorphin.org Mon Oct 17 10:33:23 2005
Return-path: <clemens at endorphin.org>
Received: from irulan.endorphin.org [80.68.90.107] 
	by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
	id 1ERYrS-00082F-00; Mon, 17 Oct 2005 10:33:23 -0700
Received: from ghanima (chello080108077214.34.11.tuwien.teleweb.at [80.108.77.214])
	by irulan.endorphin.org (Postfix) with ESMTP id AE7A57933A
	for <submit at bugs.debian.org>; Mon, 17 Oct 2005 18:57:17 +0100 (BST)
From: Clemens Fruhwirth <clemens at endorphin.org>
To: submit at bugs.debian.org
Subject: reduce priority of common-lisp-control's asdf repository
X-Mailer: MH-E 7.84; nmh 1.1; XEmacs 21.5  (beta22)
Date: Mon, 17 Oct 2005 19:33:16 +0200
Message-Id: <20051017175717.AE7A57933A at irulan.endorphin.org>
Delivered-To: submit at bugs.debian.org
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-Level: 
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

Package: common-lisp-controler
Version: 4.15

asdf-install on Gentoo does not work. Gentoo packages asdf-install in
cl-asdf, and installs the package into common-lisp-controller's asdf
repository in /usr/share/common-lisp. SBCL comes with its own
implementation of asdf-install and must not use the portable version
from the common-lisp-repository. In the CLC dumping process, CLC
installs itself as the first ranking asdf repository by pushing the
/usr/share/common-lisp/systems path onto asdf:*central-repository*.

For SBCL, this is clearly wrong as SBCL's own repository should never be
lower in priority to CLC's repository. My fix is to append rather than
prepand the CLC asdf repository to asdf:*central-repository*, lowering
the CLC priority. This might cause other glitches, but imho this is a
better behaviour. Properly test this patch with other CL implementations
before merging MAIN.

--- common-lisp-controller.lisp 2005-10-17 19:27:23.000000000 +0200
+++ /tmp/common-lisp-controller.lisp    2005-10-17 19:27:11.000000000 +0200
@@ -40,6 +40,8 @@
 (defvar *implementation-name* nil "The name of the implementation,
 used to name the directory in /var/cache/common-lisp-controller")
 
+(define-modify-macro appendf (&rest lists) append)
+
 (defun init-common-lisp-controller (fasl-root
                                     &key
                                     (source-root "/usr/share/common-lisp/")
@@ -109,14 +111,16 @@
       (setq cl:*features* (delete :sbcl-hooks-require  cl:*features*))
 
       ;; register the systems root:
-      (push *systems-root*
-           (symbol-value (intern (symbol-name :*central-registry*)
-                                 (find-package :asdf))))
+      (appendf 
+           (symbol-value (intern (symbol-name :*central-registry*)
+                                 (find-package :asdf)))
+           (list *systems-root*))
 
-      (push '(merge-pathnames ".clc/systems/" 
-                             (user-homedir-pathname))
+      (appendf 
             (symbol-value (intern (symbol-name :*central-registry*)
-                                  (find-package :asdf))))))
+                                  (find-package :asdf)))
+            (list '(merge-pathnames ".clc/systems/" 
+                             (user-homedir-pathname))))))
   (values))
 

---------------------------------------
Received: (at 334406-close) by bugs.debian.org; 21 Oct 2005 15:48:01 +0000
>From katie at spohr.debian.org Fri Oct 21 08:48:01 2005
Return-path: <katie at spohr.debian.org>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
	id 1ESz6q-0003mS-00; Fri, 21 Oct 2005 08:47:08 -0700
From: Peter Van Eynde <pvaneynd at debian.org>
To: 334406-close at bugs.debian.org
X-Katie: $Revision: 1.56 $
Subject: Bug#334406: fixed in common-lisp-controller 4.21
Message-Id: <E1ESz6q-0003mS-00 at spohr.debian.org>
Sender: Archive Administrator <katie at spohr.debian.org>
Date: Fri, 21 Oct 2005 08:47:08 -0700
Delivered-To: 334406-close at bugs.debian.org
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-Level: 
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-CrossAssassin-Score: 3

Source: common-lisp-controller
Source-Version: 4.21

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.21.dsc
  to pool/main/c/common-lisp-controller/common-lisp-controller_4.21.dsc
common-lisp-controller_4.21.tar.gz
  to pool/main/c/common-lisp-controller/common-lisp-controller_4.21.tar.gz
common-lisp-controller_4.21_all.deb
  to pool/main/c/common-lisp-controller/common-lisp-controller_4.21_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 334406 at bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Peter Van Eynde <pvaneynd at debian.org> (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 ftpmaster at debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Fri, 21 Oct 2005 06:01:51 +0200
Source: common-lisp-controller
Binary: common-lisp-controller
Architecture: source all
Version: 4.21
Distribution: unstable
Urgency: low
Maintainer: Peter Van Eynde <pvaneynd at debian.org>
Changed-By: Peter Van Eynde <pvaneynd at debian.org>
Description: 
 common-lisp-controller - This is a Common Lisp source and compiler manager
Closes: 334189 334406 334550
Changes: 
 common-lisp-controller (4.21) unstable; urgency=low
 .
   * [INTL:sv] Swedish debconf templates translation (Closes: #334189)
     from Daniel Nylander
   * Spanish debconf translation (Closes: #334550)
   * reduce priority of common-lisp-control's asdf repository
     (Closes: #334406)
     Even if it affects Gentoo :-)
Files: 
 1b3104fb82e5733273d6fcb991b0052c 588 devel optional common-lisp-controller_4.21.dsc
 1ac11d033b02db6d0d9fc9572c28c7be 143967 devel optional common-lisp-controller_4.21.tar.gz
 e41452f70e3ed608b2fe7376c7abf901 25158 devel optional common-lisp-controller_4.21_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDWN/711ldN0tyliURAtugAKCXIgMh0CKsaKwEf5razbwBERBbCACgmV19
XNRZ93of8pmBEOjXonyD7IU=
=UY9a
-----END PGP SIGNATURE-----





More information about the Cl-debian mailing list