Skip to content
Snippets Groups Projects
Commit aa031e18 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

2.26.166: Debug a define-package bug.

ENSURE-EXPORTED was exporting the wrong symbol via EXPORT*.
Also, backward compatibility with systems (i.e. cxml) that directly access
the relative-pathname slot of a system the ASDF 1 way,
instead of using system-relative-pathname.
Eliminate the last use of merge-pathnames.
parent 185f4c69
No related branches found
No related tags found
No related merge requests found
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
:licence "MIT" :licence "MIT"
:description "Another System Definition Facility" :description "Another System Definition Facility"
:long-description "ASDF builds Common Lisp software organized into defined systems." :long-description "ASDF builds Common Lisp software organized into defined systems."
:version "2.26.165" ;; to be automatically updated by make bump-version :version "2.26.166" ;; to be automatically updated by make bump-version
:depends-on () :depends-on ()
#+asdf3 :encoding #+asdf3 :utf-8 #+asdf3 :encoding #+asdf3 :utf-8
;; For most purposes, asdf itself specially counts as a builtin system. ;; For most purposes, asdf itself specially counts as a builtin system.
......
...@@ -270,7 +270,7 @@ ...@@ -270,7 +270,7 @@
(move-here-path (if (and move-here (move-here-path (if (and move-here
(typep move-here '(or pathname string))) (typep move-here '(or pathname string)))
(pathname move-here) (pathname move-here)
(merge-pathnames "./asdf-output/"))) (system-relative-pathname system "asdf-output/")))
(operation (apply #'operate operation-name (operation (apply #'operate operation-name
system system
(remove-plist-keys '(:monolithic :type :move-here) args))) (remove-plist-keys '(:monolithic :type :move-here) args)))
......
;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.26.165: Another System Definition Facility. ;;; This is ASDF 2.26.166: Another System Definition Facility.
;;; ;;;
;;; Feedback, bug reports, and patches are all welcome: ;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>. ;;; please mail to <asdf-devel@common-lisp.net>.
......
...@@ -120,16 +120,9 @@ or when loading the package is optional." ...@@ -120,16 +120,9 @@ or when loading the package is optional."
(eval-when (:load-toplevel :compile-toplevel :execute) (eval-when (:load-toplevel :compile-toplevel :execute)
(defvar *all-package-happiness* '()) (defvar *all-package-happiness* '())
(defvar *all-package-fishiness* (list t)) (defvar *all-package-fishiness* (list t))
(defvar *package-fishiness* '())
(defun flush-fishy ()
(when *package-fishiness*
(if (null (rest *package-fishiness*))
(push (first *package-fishiness*) *all-package-happiness*)
(push (nreverse *package-fishiness*) *all-package-fishiness*))
(setf *package-fishiness* nil)))
(defun record-fishy (info) (defun record-fishy (info)
;;(format t "~&FISHY: ~S~%" info) ;;(format t "~&FISHY: ~S~%" info)
(push info *package-fishiness*)) (push info *all-package-fishiness*))
(defmacro when-package-fishiness (&body body) (defmacro when-package-fishiness (&body body)
`(when *all-package-fishiness* ,@body)) `(when *all-package-fishiness* ,@body))
(defmacro note-package-fishiness (&rest info) (defmacro note-package-fishiness (&rest info)
...@@ -207,9 +200,9 @@ or when loading the package is optional." ...@@ -207,9 +200,9 @@ or when loading the package is optional."
(and overwritten-symbol-status (and overwritten-symbol-status
(symbol-shadowing-p overwritten-symbol package)))) (symbol-shadowing-p overwritten-symbol package))))
(note-package-fishiness (note-package-fishiness
:rehome-symbol name (package-name old-package) :rehome-symbol name
(package-name package) old-status (and shadowing t) (when old-package (package-name old-package)) old-status (and shadowing t)
overwritten-symbol-status overwritten-symbol-shadowing-p) (package-name package) overwritten-symbol-status overwritten-symbol-shadowing-p)
(when old-package (when old-package
(if shadowing (if shadowing
(shadowing-import shadowing old-package)) (shadowing-import shadowing old-package))
...@@ -337,8 +330,211 @@ or when loading the package is optional." ...@@ -337,8 +330,211 @@ or when loading the package is optional."
;;; ensure-package, define-package ;;; ensure-package, define-package
(eval-when (:load-toplevel :compile-toplevel :execute) (eval-when (:load-toplevel :compile-toplevel :execute)
(defun ensure-shadowing-import (name to-package from-package shadowed imported)
(check-type name string)
(check-type to-package package)
(check-type from-package package)
(check-type shadowed hash-table)
(check-type imported hash-table)
(let ((import-me (find-symbol* name from-package)))
(multiple-value-bind (existing status) (find-symbol name to-package)
(cond
((gethash name shadowed)
(unless (eq import-me existing)
(error "Conflicting shadowings for ~A" name)))
(t
(setf (gethash name shadowed) t)
(setf (gethash name imported) t)
(unless (or (null status)
(and (member status '(:internal :external))
(eq existing import-me)
(symbol-shadowing-p existing to-package)))
(note-package-fishiness
:shadowing-import name
(package-name from-package)
(or (home-package-p import-me from-package) (symbol-package-name import-me))
(package-name to-package) status
(and status (or (home-package-p existing to-package) (symbol-package-name existing))))
(shadowing-import import-me to-package)))))))
(defun ensure-import (name to-package from-package shadowed imported)
(check-type name string)
(check-type to-package package)
(check-type from-package package)
(check-type shadowed hash-table)
(check-type imported hash-table)
(let* ((import-me (find-symbol* name from-package)))
(multiple-value-bind (existing status) (find-symbol name to-package)
(cond
((gethash name imported)
(unless (eq import-me existing)
(error "Can't import ~S from both ~S and ~S"
name (package-name (symbol-package existing)) (package-name from-package))))
((gethash name shadowed)
(error "Can't both shadow ~S and import it from ~S" name (package-name from-package)))
(t
(setf (gethash name imported) t)
(unless (and status (eq import-me existing))
(when status
(note-package-fishiness
:import name
(package-name from-package)
(or (home-package-p import-me from-package) (symbol-package-name import-me))
(package-name to-package) status
(and status (or (home-package-p existing to-package) (symbol-package-name existing))))
(unintern* existing to-package))
(import import-me to-package)))))))
(defun ensure-inherited (name symbol to-package from-package mixp shadowed imported inherited)
(check-type name string)
(check-type symbol symbol)
(check-type to-package package)
(check-type from-package package)
(check-type mixp boolean)
(check-type shadowed hash-table)
(check-type imported hash-table)
(check-type inherited hash-table)
(multiple-value-bind (existing status) (find-symbol name to-package)
(let* ((sp (symbol-package symbol))
(in (gethash name inherited))
(xp (and status (symbol-package existing))))
(when (null sp)
(note-package-fishiness
:import-uninterned name
(package-name from-package) (package-name to-package) mixp)
(import symbol from-package)
(setf sp (package-name from-package)))
(cond
((gethash name shadowed))
(in
(unless (equal sp (first in))
(if mixp
(ensure-shadowing-import name to-package (second in) shadowed imported)
(error "Can't inherit ~S from ~S, it is inherited from ~S"
name (package-name sp) (package-name (first in))))))
((gethash name imported)
(unless (eq symbol existing)
(error "Can't inherit ~S from ~S, it is imported from ~S"
name (package-name sp) (package-name xp))))
(t
(setf (gethash name inherited) (list sp from-package))
(when (and status (not (eq sp xp)))
(let ((shadowing (symbol-shadowing-p existing to-package)))
(note-package-fishiness
:inherited name
(package-name from-package)
(or (home-package-p symbol from-package) (symbol-package-name symbol))
(package-name to-package)
(or (home-package-p existing to-package) (symbol-package-name existing)))
(if shadowing (ensure-shadowing-import name to-package from-package shadowed imported)
(unintern* existing to-package)))))))))
(defun ensure-mix (name symbol to-package from-package shadowed imported inherited)
(check-type name string)
(check-type symbol symbol)
(check-type to-package package)
(check-type from-package package)
(check-type shadowed hash-table)
(check-type imported hash-table)
(check-type inherited hash-table)
(unless (gethash name shadowed)
(multiple-value-bind (existing status) (find-symbol name to-package)
(let* ((sp (symbol-package symbol))
(im (gethash name imported))
(in (gethash name inherited)))
(cond
((or (null status)
(and status (eq symbol existing))
(and in (eq sp (first in))))
(ensure-inherited name symbol to-package from-package t shadowed imported inherited))
(in
(remhash name inherited)
(ensure-shadowing-import name to-package (second in) shadowed imported))
(im
(error "Symbol ~S import from ~S~:[~*~; actually ~:[~*uninterned~;from ~S~]~] conflicts with existing symbol in ~S~:[~*~; actually ~:[~*uninterned~;from ~S~]~]"
name (package-name from-package)
(home-package-p symbol from-package) (symbol-package-name symbol)
(package-name to-package)
(home-package-p existing to-package) (symbol-package-name existing)))
(t
(ensure-inherited name symbol to-package from-package t shadowed imported inherited)))))))
(defun recycle-symbol (name recycle exported)
(check-type name string)
(check-type recycle list)
(check-type exported hash-table)
(when (gethash name exported) ;; don't bother recycling private symbols
(let (recycled foundp)
(dolist (r recycle (values recycled foundp))
(multiple-value-bind (symbol status) (find-symbol name r)
(when (and status (home-package-p symbol r))
(cond
(foundp
;; (nuke-symbol symbol)) -- even simple variable names like O or C will do that.
(note-package-fishiness :recycled-duplicate name (package-name foundp) (package-name r)))
(t
(setf recycled symbol foundp r)))))))))
(defun symbol-recycled-p (sym recycle)
(check-type sym symbol)
(check-type recycle list)
(member (symbol-package sym) recycle))
(defun ensure-symbol (name package intern recycle shadowed imported inherited exported)
(check-type name string)
(check-type package package)
(check-type intern boolean)
(check-type shadowed hash-table)
(check-type imported hash-table)
(check-type inherited hash-table)
(unless (or (gethash name shadowed)
(gethash name imported)
(gethash name inherited))
(multiple-value-bind (existing status)
(find-symbol name package)
(multiple-value-bind (recycled previous) (recycle-symbol name recycle exported)
(cond
((and status (eq existing recycled) (eq previous package)))
(previous
(rehome-symbol recycled package))
((and status (eq package (symbol-package existing))))
(t
(when status
(note-package-fishiness
:ensure-symbol name
(reify-package (symbol-package existing) package)
status intern)
(unintern existing))
(when intern
(intern* name package))))))))
(declaim (ftype function ensure-exported))
(defun ensure-exported-to-user (name symbol to-package &optional recycle)
(check-type name string)
(check-type symbol symbol)
(check-type to-package package)
(check-type recycle list)
(multiple-value-bind (existing status) (find-symbol name to-package)
(unless (and status (eq symbol existing))
(let ((accessible
(or (null status)
(let ((shadowing (symbol-shadowing-p existing to-package))
(recycled (symbol-recycled-p existing recycle)))
(unless (and shadowing (not recycled))
(note-package-fishiness
:ensure-export name (symbol-package-name symbol)
(package-name to-package)
(or (home-package-p existing to-package) (symbol-package-name existing))
status shadowing)
(if (or (eq status :inherited) shadowing)
(shadowing-import symbol to-package)
(unintern existing to-package))
t)))))
(when (and accessible (eq status :external))
(ensure-exported name symbol to-package recycle))))))
(defun ensure-exported (name symbol from-package &optional recycle)
(dolist (to-package (package-used-by-list from-package))
(ensure-exported-to-user name symbol to-package recycle))
(import symbol from-package)
(export* name from-package))
(defun ensure-export (name from-package &optional recycle)
(multiple-value-bind (symbol status) (find-symbol* name from-package)
(unless (eq status :external)
(ensure-exported name symbol from-package recycle))))
(defun ensure-package (name &key (defun ensure-package (name &key
nicknames documentation use nicknames documentation use
shadow shadowing-import-from shadow shadowing-import-from
...@@ -346,239 +542,98 @@ or when loading the package is optional." ...@@ -346,239 +542,98 @@ or when loading the package is optional."
recycle mix reexport recycle mix reexport
unintern) unintern)
#+(or gcl2.6 genera) (declare (ignore documentation)) #+(or gcl2.6 genera) (declare (ignore documentation))
(macrolet ((when-fishy (&body body) `(when-package-fishiness ,@body)) (let* ((package-name (string name))
(fishy (&rest info) `(note-package-fishiness ,@info))) (nicknames (mapcar #'string nicknames))
(let* ((package-name (string name)) (names (cons package-name nicknames))
(nicknames (mapcar #'string nicknames)) (previous (packages-from-names names))
(names (cons package-name nicknames)) (discarded (cdr previous))
(previous (packages-from-names names)) (to-delete ())
(discarded (cdr previous)) (package (or (first previous) (make-package package-name :nicknames nicknames)))
(to-delete ()) (recycle (packages-from-names recycle))
(package (or (first previous) (make-package package-name :nicknames nicknames))) (use (mapcar 'find-package* use))
(recycle (packages-from-names recycle)) (mix (mapcar 'find-package* mix))
(use (mapcar 'find-package* use)) (reexport (mapcar 'find-package* reexport))
(mix (mapcar 'find-package* mix)) (shadow (mapcar 'string shadow))
(reexport (mapcar 'find-package* reexport)) (export (mapcar 'string export))
(shadow (mapcar 'string shadow)) (intern (mapcar 'string intern))
(export (mapcar 'string export)) (unintern (mapcar 'string unintern))
(intern (mapcar 'string intern)) (shadowed (make-hash-table :test 'equal)) ; string to bool
(unintern (mapcar 'string unintern)) (imported (make-hash-table :test 'equal)) ; string to bool
(shadowed (make-hash-table :test 'equal)) ; string to bool (exported (make-hash-table :test 'equal)) ; string to bool
(imported (make-hash-table :test 'equal)) ; string to bool ;; string to list home package and use package:
(exported (make-hash-table :test 'equal)) ; string to bool (inherited (make-hash-table :test 'equal)))
;; string to list home package and use package: (when-package-fishiness (record-fishy package-name))
(inherited (make-hash-table :test 'equal))) #-(or gcl2.6 genera)
(when-fishy (record-fishy package-name)) (when documentation (setf (documentation package t) documentation))
(labels (loop :for p :in (set-difference (package-use-list package) (append mix use))
((ensure-shadowing-import (name p) :do (note-package-fishiness :over-use name (package-names p))
(let ((import-me (find-symbol* name p))) (unuse-package p package))
(multiple-value-bind (existing status) (find-symbol name package) (loop :for p :in discarded
(cond :for n = (remove-if #'(lambda (x) (member x names :test 'equal))
((gethash name shadowed) (package-names p))
(unless (eq import-me existing) :do (note-package-fishiness :nickname name (package-names p))
(error "Conflicting shadowings for ~A" name))) (cond (n (rename-package p (first n) (rest n)))
(t (t (rename-package-away p)
(setf (gethash name shadowed) t) (push p to-delete))))
(setf (gethash name imported) t) (rename-package package package-name nicknames)
(unless (or (null status) (dolist (name unintern)
(and (member status '(:internal :external)) (multiple-value-bind (existing status) (find-symbol name package)
(eq existing import-me) (when status
(symbol-shadowing-p existing package))) (unless (eq status :inherited)
(fishy :shadowing-import (note-package-fishiness
name (package-name p) (symbol-package-name import-me) :unintern (package-name package) name (symbol-package-name existing) status)
(and status (symbol-package-name existing)) status)) (unintern* name package nil)))))
(shadowing-import import-me package)))))) (dolist (name export)
(ensure-import (sym p) (setf (gethash name exported) t))
(let* ((name (string sym)) (dolist (p reexport)
(import-me (find-symbol* name p))) (do-external-symbols (sym p)
(multiple-value-bind (existing status) (find-symbol name package) (setf (gethash (string sym) exported) t)))
(cond (do-external-symbols (sym package)
((gethash name imported) (let ((name (symbol-name sym)))
(unless (eq import-me existing) (unless (gethash name exported)
(error "Can't import ~S from both ~S and ~S" (note-package-fishiness
name (package-name (symbol-package existing)) (package-name p)))) :over-export (package-name package) name
((gethash name shadowed) (or (home-package-p sym package) (symbol-package-name sym)))
(error "Can't both shadow ~S and import it from ~S" name (package-name p))) (unexport sym package))))
(t (dolist (name shadow)
(setf (gethash name imported) t) (setf (gethash name shadowed) t)
(unless (and status (eq import-me existing)) (multiple-value-bind (existing status) (find-symbol name package)
(when status (multiple-value-bind (recycled previous) (recycle-symbol name recycle exported)
(fishy :import name (package-name p) (symbol-package-name import-me) (let ((shadowing (and status (symbol-shadowing-p existing package))))
(and status (symbol-package-name existing)) status) (cond
(unintern* existing package)) ((eq previous package))
(import import-me package))))))) (previous
(ensure-mix (name symbol p) (rehome-symbol recycled package))
(unless (gethash name shadowed) ((or (member status '(nil :inherited))
(multiple-value-bind (existing status) (find-symbol name package) (home-package-p existing package)))
(let* ((sp (symbol-package symbol)) (t
(im (gethash name imported)) (let ((dummy (make-symbol name)))
(in (gethash name inherited))) (note-package-fishiness
(cond :shadow-imported (package-name package) name
((or (null status) (symbol-package-name existing) status shadowing)
(and status (eq symbol existing)) (shadowing-import dummy package)
(and in (eq sp (first in)))) (import dummy package)))))))
(ensure-inherited name symbol p t)) (shadow name package))
(in (loop :for (p . syms) :in shadowing-import-from
(remhash name inherited) :for pp = (find-package* p) :do
(ensure-shadowing-import name (second in))) (dolist (sym syms) (ensure-shadowing-import (string sym) package pp shadowed imported)))
(im (dolist (p mix)
(error "Imported symbol ~S conflicts with inherited symbol ~S in ~S" (do-external-symbols (sym p) (ensure-mix (symbol-name sym) sym package p shadowed imported inherited)))
existing symbol (package-name package))) (loop :for (p . syms) :in import-from
(t :for pp = (find-package p) :do
(ensure-inherited name symbol p t))))))) (dolist (sym syms) (ensure-import (symbol-name sym) package pp shadowed imported)))
(ensure-inherited (name symbol p mix) (dolist (p (append use mix))
(multiple-value-bind (existing status) (find-symbol name package) (do-external-symbols (sym p) (ensure-inherited (string sym) sym package p nil shadowed imported inherited))
(let* ((sp (symbol-package symbol)) (use-package p package))
(in (gethash name inherited)) (loop :for name :being :the :hash-keys :of exported :do
(xp (and status (symbol-package existing)))) (ensure-symbol name package t recycle shadowed imported inherited exported)
(when (null sp) (ensure-export name package recycle))
(fishy :import-uninterned name (package-name p) mix) (dolist (name intern)
(import symbol p) (ensure-symbol name package t recycle shadowed imported inherited exported))
(setf sp (package-name p))) (do-symbols (sym package)
(cond (ensure-symbol (symbol-name sym) package nil recycle shadowed imported inherited exported))
((gethash name shadowed)) (map () 'delete-package* to-delete)
(in package)))
(unless (equal sp (first in))
(if mix
(ensure-shadowing-import name (second in))
(error "Can't inherit ~S from ~S, it is inherited from ~S"
name (package-name sp) (package-name (first in))))))
((gethash name imported)
(unless (eq symbol existing)
(error "Can't inherit ~S from ~S, it is imported from ~S"
name (package-name sp) (package-name xp))))
(t
(setf (gethash name inherited) (list sp p))
(when (and status (not (eq sp xp)))
(let ((shadowing (symbol-shadowing-p existing package)))
(fishy :inherited name (package-name p) (package-name sp)
(package-name xp))
(if shadowing (ensure-shadowing-import name p)
(unintern* existing package)))))))))
(recycle-symbol (name)
(when (gethash name exported) ;; don't bother recycling private symbols
(let (recycled foundp)
(dolist (r recycle (values recycled foundp))
(multiple-value-bind (symbol status) (find-symbol name r)
(when (and status (home-package-p symbol r))
(cond
(foundp
;; (nuke-symbol symbol)) -- even simple variable names like O or C will do that.
(fishy :recycled-duplicate name (package-name foundp) (package-name r)))
(t
(setf recycled symbol foundp r)))))))))
(symbol-recycled-p (sym)
(member (symbol-package sym) recycle))
(ensure-symbol (name &optional intern)
(unless (or (gethash name shadowed)
(gethash name imported)
(gethash name inherited))
(multiple-value-bind (existing status)
(find-symbol name package)
(multiple-value-bind (recycled previous) (recycle-symbol name)
(cond
((and status (eq existing recycled) (eq previous package)))
(previous
(rehome-symbol recycled package))
((and status (eq package (symbol-package existing))))
(t
(when status
(fishy :ensure-symbol name
(reify-package (symbol-package existing) package)
status intern)
(unintern existing))
(when intern
(intern* name package))))))))
(ensure-export (name p)
(multiple-value-bind (symbol status) (find-symbol* name p)
(unless (eq status :external)
(ensure-exported name symbol p))))
(ensure-exported (name sym p)
(dolist (u (package-used-by-list p))
(ensure-exported-to-user name sym u))
(export* sym p))
(ensure-exported-to-user (name sym u)
(multiple-value-bind (usym ustat) (find-symbol name u)
(unless (and ustat (eq sym usym))
(let ((accessible
(or (null ustat)
(let ((shadowing (symbol-shadowing-p usym u))
(recycled (symbol-recycled-p usym)))
(unless (and shadowing (not recycled))
(fishy :ensure-export name (symbol-package-name sym)
(package-name u)
(and ustat (symbol-package-name usym)) ustat shadowing)
(if (or (eq ustat :inherited) shadowing)
(shadowing-import sym u)
(unintern usym u))
t)))))
(when (and accessible (eq ustat :external))
(ensure-exported name sym u)))))))
#-(or gcl2.6 genera)
(when documentation (setf (documentation package t) documentation))
(loop :for p :in (set-difference (package-use-list package) (append mix use))
:do (fishy :use (package-names p)) (unuse-package p package))
(loop :for p :in discarded
:for n = (remove-if #'(lambda (x) (member x names :test 'equal))
(package-names p))
:do (fishy :nickname (package-names p))
(cond (n (rename-package p (first n) (rest n)))
(t (rename-package-away p)
(push p to-delete))))
(rename-package package package-name nicknames)
(dolist (name unintern)
(multiple-value-bind (existing status) (find-symbol name package)
(when status
(unless (eq status :inherited)
(fishy :unintern name (symbol-package-name existing) status)
(unintern* name package nil)))))
(dolist (name export)
(setf (gethash name exported) t))
(dolist (p reexport)
(do-external-symbols (sym p)
(setf (gethash (string sym) exported) t)))
(do-external-symbols (sym package)
(let ((name (symbol-name sym)))
(unless (gethash name exported)
(fishy :over-exported name (symbol-package-name sym))
(unexport sym package))))
(dolist (name shadow)
(setf (gethash name shadowed) t)
(multiple-value-bind (existing status) (find-symbol name package)
(multiple-value-bind (recycled previous) (recycle-symbol name)
(let ((shadowing (and status (symbol-shadowing-p existing package))))
(cond
((eq previous package))
(previous
(rehome-symbol recycled package))
((or (member status '(nil :inherited))
(home-package-p existing package)))
(t
(let ((dummy (make-symbol name)))
(fishy :shadow-imported name (symbol-package-name existing) status shadowing)
(shadowing-import dummy package)
(import dummy package)))))))
(shadow name package))
(loop :for (p . syms) :in shadowing-import-from
:for pp = (find-package* p) :do
(dolist (sym syms) (ensure-shadowing-import (string sym) pp)))
(dolist (p mix)
(do-external-symbols (sym p) (ensure-mix (symbol-name sym) sym p)))
(loop :for (p . syms) :in import-from :do
(dolist (sym syms) (ensure-import sym p)))
(dolist (p (append use mix))
(do-external-symbols (sym p) (ensure-inherited (string sym) sym p nil))
(use-package p package))
(loop :for name :being :the :hash-keys :of exported :do
(ensure-symbol name t)
(ensure-export name package))
(dolist (name intern)
(ensure-symbol name t))
(do-symbols (sym package)
(ensure-symbol (symbol-name sym)))
(map () 'delete-package* to-delete)
(flush-fishy)
package)))))
(eval-when (:load-toplevel :compile-toplevel :execute) (eval-when (:load-toplevel :compile-toplevel :execute)
(defun parse-define-package-form (package clauses) (defun parse-define-package-form (package clauses)
......
...@@ -72,8 +72,11 @@ in which the system specification (.asd file) is located." ...@@ -72,8 +72,11 @@ in which the system specification (.asd file) is located."
(subpathname (system-source-directory system) name :type type)) (subpathname (system-source-directory system) name :type type))
(defmethod component-pathname ((system system)) (defmethod component-pathname ((system system))
(or (call-next-method) (let ((pathname (or (call-next-method) (system-source-directory system))))
(system-source-directory system))) (unless (and (slot-boundp system 'relative-pathname) ;; backward-compatibility with ASDF1-age
(slot-value system 'relative-pathname)) ;; systems that directly access this slot.
(setf (slot-value system 'relative-pathname) pathname))
pathname))
(defmethod component-relative-pathname ((system system)) (defmethod component-relative-pathname ((system system))
(parse-unix-namestring (parse-unix-namestring
......
...@@ -225,10 +225,6 @@ fi ...@@ -225,10 +225,6 @@ fi
ASDFDIR="$(cd $(dirname $0)/.. ; /bin/pwd)" ASDFDIR="$(cd $(dirname $0)/.. ; /bin/pwd)"
## Make sure testing remains within the confines of this filesystem tree
export CL_SOURCE_REGISTRY="${ASDFDIR}"
export ASDF_OUTPUT_TRANSLATIONS="(:output-translations (\"${ASDFDIR}\" (\"${ASDFDIR}/build/fasls\" :implementation)) :ignore-inherited-configuration)"
cmd="$command $flags" cmd="$command $flags"
debugp= debugp=
if [ -z "${DEBUG_ASDF_TEST}" ] ; then if [ -z "${DEBUG_ASDF_TEST}" ] ; then
......
...@@ -430,30 +430,6 @@ is bound, write a message and exit on an error. If ...@@ -430,30 +430,6 @@ is bound, write a message and exit on an error. If
(cons (format nil "~{~D~^.~}" ver)) (cons (format nil "~{~D~^.~}" ver))
(null "1.0")))))) (null "1.0"))))))
(defun test-upgrade (old-method new-method tag) ;; called by run-test
(with-test ()
(verbose t nil)
(when old-method
(cond
((string-equal tag "REQUIRE")
(format t "Requiring some previous ASDF ~A~%" tag)
(ignore-errors (funcall 'require "asdf"))
(if (member "ASDF" *modules* :test 'equalp)
(format t "Your Lisp implementation provided ASDF ~A~%" (get-asdf-version))
(leave-test "Your Lisp implementation does not provide ASDF. Skipping test.~%" 0)))
(t
(format t "Loading old asdf ~A via ~A~%" tag old-method)
(funcall old-method tag))))
(when (asym :*asdf-verbose* nil nil) (setf (asymval :*asdf-verbose*) t))
(when (asym :*verbose-out* nil nil) (setf (asymval :*verbose-out*) *standard-output*))
(format t "Now loading new asdf via method ~A~%" new-method)
(funcall new-method)
(format t "Testing it~%")
(register-directory *test-directory*)
(load-test-system :test-module-depend)
(assert (eval (intern (symbol-name '#:*file1*) :test-package)))
(assert (eval (intern (symbol-name '#:*file3*) :test-package)))))
(defun output-location (&rest sublocation) (defun output-location (&rest sublocation)
(list* *asdf-directory* "build/fasls" :implementation sublocation)) (list* *asdf-directory* "build/fasls" :implementation sublocation))
(defun resolve-output (&rest sublocation) (defun resolve-output (&rest sublocation)
...@@ -477,27 +453,30 @@ is bound, write a message and exit on an error. If ...@@ -477,27 +453,30 @@ is bound, write a message and exit on an error. If
(clean-asdf-system)) (clean-asdf-system))
(defun configure-asdf () (defun configure-asdf ()
(setf *debug-asdf* (or *debug-asdf* (acall :getenvp "DEBUG_ASDF_TEST"))) (when (asym :getenvp nil nil)
(untrace) (setf *debug-asdf* (or *debug-asdf* (acall :getenvp "DEBUG_ASDF_TEST"))))
(eval `(trace ,@(loop :for s :in *trace-symbols* :collect (asym s)))) (eval `(trace ,@(loop :for s :in *trace-symbols* :collect (asym s))))
(acall :initialize-source-registry (when (asym :initialize-source-registry nil nil)
`(:source-registry :ignore-inherited-configuration)) (acall :initialize-source-registry
(acall :initialize-output-translations `(:source-registry :ignore-inherited-configuration)))
`(:output-translations (when (asym :initialize-output-translations nil nil)
((,*asdf-directory* :**/ :*.*.*) ,(output-location "asdf")) (acall :initialize-output-translations
(t ,(output-location "root")) `(:output-translations
:ignore-inherited-configuration)) ((,*asdf-directory*) ,(output-location "asdf"))
(t ,(output-location "root"))
:ignore-inherited-configuration)))
(set (asym :*central-registry*) `(,*test-directory*)) (set (asym :*central-registry*) `(,*test-directory*))
(when (asym :*asdf-verbose*) (setf (asymval :*asdf-verbose*) t)) (when (asym :*asdf-verbose*) (setf (asymval :*asdf-verbose*) t))
(when (asym :*verbose-out*) (setf (asymval :*verbose-out*) *standard-output*)) (when (asym :*verbose-out*) (setf (asymval :*verbose-out*) *standard-output*))
(let ((x (acall :system-source-directory :hello-world-example))) (when (asym :system-source-directory nil nil)
(assert-pathname-equal *test-directory* x) ;; not always EQUAL (!) (let ((x (acall :system-source-directory :test-module-depend)))
(unless (equal *test-directory* x) (assert-pathname-equal *test-directory* x) ;; not always EQUAL (!)
(format t "Interestingly, while *test-directory* has components~% ~S~%~ (unless (equal *test-directory* x)
(format t "Interestingly, while *test-directory* has components~% ~S~%~
ASDF finds the ASDs in~% ~S~%Using the latter.~%" ASDF finds the ASDs in~% ~S~%Using the latter.~%"
(pathname-components *test-directory*) (pathname-components *test-directory*)
(pathname-components x))) (pathname-components x)))
(setf *test-directory* x)) (setf *test-directory* x)))
t) t)
(defun load-asdf (&optional tag) (defun load-asdf (&optional tag)
...@@ -537,6 +516,31 @@ is bound, write a message and exit on an error. If ...@@ -537,6 +516,31 @@ is bound, write a message and exit on an error. If
(acall :load-system sys)) (acall :load-system sys))
(format t "~&Done!~%")) (format t "~&Done!~%"))
(defun test-upgrade (old-method new-method tag) ;; called by run-test
(with-test ()
(verbose t nil)
(when old-method
(cond
((string-equal tag "REQUIRE")
(format t "Requiring some previous ASDF ~A~%" tag)
(ignore-errors (funcall 'require "asdf"))
(if (member "ASDF" *modules* :test 'equalp)
(format t "Your Lisp implementation provided ASDF ~A~%" (get-asdf-version))
(leave-test "Your Lisp implementation does not provide ASDF. Skipping test.~%" 0)))
(t
(format t "Loading old asdf ~A via ~A~%" tag old-method)
(funcall old-method tag))))
(configure-asdf)
(when (asym :*asdf-verbose* nil nil) (setf (asymval :*asdf-verbose*) t))
(when (asym :*verbose-out* nil nil) (setf (asymval :*verbose-out*) *standard-output*))
(format t "Now loading new asdf via method ~A~%" new-method)
(funcall new-method)
(format t "Testing it~%")
(register-directory *test-directory*)
(load-test-system :test-module-depend)
(assert (eval (intern (symbol-name '#:*file1*) :test-package)))
(assert (eval (intern (symbol-name '#:*file3*) :test-package)))))
;; These are shorthands for interactive debugging of test scripts: ;; These are shorthands for interactive debugging of test scripts:
(!a (!a
common-lisp-user::debug-asdf debug-asdf common-lisp-user::debug-asdf debug-asdf
......
...@@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO ...@@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO
;; "3.4.5.67" would be a development version in the official upstream of 3.4.5. ;; "3.4.5.67" would be a development version in the official upstream of 3.4.5.
;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5 ;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5
;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67 ;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67
(asdf-version "2.26.165") (asdf-version "2.26.166")
(existing-version (asdf-version))) (existing-version (asdf-version)))
(setf *asdf-version* asdf-version) (setf *asdf-version* asdf-version)
(when (and existing-version (not (equal asdf-version existing-version))) (when (and existing-version (not (equal asdf-version existing-version)))
......
...@@ -52,30 +52,29 @@ ...@@ -52,30 +52,29 @@
#-gcl2.6 (fmakunbound function-spec)) #-gcl2.6 (fmakunbound function-spec))
(t (error "bad function spec ~S" function-spec)))) (t (error "bad function spec ~S" function-spec))))
(defun undefine-functions (function-spec-list) (defun undefine-functions (function-spec-list)
(map () 'undefine-function function-spec-list))) (map () 'undefine-function function-spec-list))
(macrolet
(macrolet ((defdef (def* def)
((defdef (def* def) `(defmacro ,def* (name formals &rest rest)
`(defmacro ,def* (name formals &rest rest) (destructuring-bind (name &key (supersede t))
(destructuring-bind (name &key (supersede t)) (if (or (atom name) (eq (car name) 'setf))
(if (or (atom name) (eq (car name) 'setf)) (list name :supersede nil)
(list name :supersede nil) name)
name) (declare (ignorable supersede))
(declare (ignorable supersede)) `(progn
`(progn ;; undefining the previous function is the portable way
;; undefining the previous function is the portable way ;; of overriding any incompatible previous gf, except on CLISP.
;; of overriding any incompatible previous gf, except on CLISP. ;; We usually try to do it only for the functions that need it,
;; We usually try to do it only for the functions that need it, ;; which happens in asdf/upgrade - however, for ECL, we need this hammer,
;; which happens in asdf/upgrade - however, for ECL, we need this hammer, ;; (which causes issues in clisp)
;; (which causes issues in clisp) ,@(when (or #-clisp supersede #+(or ecl gcl2.7) t) ; XXX
,@(when (or #-clisp supersede #+(or ecl gcl2.7) t) ; XXX `((undefine-function ',name)))
`((undefine-function ',name))) #-gcl ; gcl 2.7.0 notinline functions lose secondary return values :-(
#-gcl ; gcl 2.7.0 notinline functions lose secondary return values :-( ,@(when (and #+ecl (symbolp name)) ; fails for setf functions on ecl
,@(when (and #+ecl (symbolp name)) ; fails for setf functions on ecl `((declaim (notinline ,name))))
`((declaim (notinline ,name)))) (,',def ,name ,formals ,@rest))))))
(,',def ,name ,formals ,@rest)))))) (defdef defgeneric* defgeneric)
(defdef defgeneric* defgeneric) (defdef defun* defun)))
(defdef defun* defun))
;;; Magic debugging help. See contrib/debug.lisp ;;; Magic debugging help. See contrib/debug.lisp
......
"2.26.165" "2.26.166"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment