Loading asdf.asd +1 −1 Original line number Diff line number Diff line Loading @@ -74,7 +74,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." :version "2.33.9" ;; to be automatically updated by make bump-version :version "2.33.10" ;; to be automatically updated by make bump-version :depends-on () #+asdf3 :encoding #+asdf3 :utf-8 ;; For most purposes, asdf itself specially counts as a builtin system. Loading bundle.lisp +23 −6 Original line number Diff line number Diff line Loading @@ -433,6 +433,29 @@ (asdf:load-system :precompiled-asdf-utils) |# #+(or ecl mkcl) (with-upgradability () (defun uiop-library-file () (or (and (find-system :uiop nil) (system-source-directory :uiop) (progn (operate 'lib-op :uiop) (output-file 'lib-op :uiop))) (resolve-symlinks* (c::compile-file-pathname "sys:asdf" :type :lib)))) (defmethod input-files :around ((o program-op) (c system)) (let ((files (call-next-method)) (plan (traverse-sub-actions o c :plan-class 'sequential-plan))) (unless (or (and (find-system :uiop nil) (system-source-directory :uiop) (plan-operates-on-p plan '("uiop"))) (and (system-source-directory :asdf) (plan-operates-on-p plan '("asdf")))) (pushnew (uiop-library-file) files :test 'pathname-equal)) files)) (defun register-pre-built-system (name) (register-system (make-instance 'system :name (coerce-name name) :source-file nil)))) #+ecl (with-upgradability () (defmethod perform ((o bundle-compile-op) (c system)) Loading Loading @@ -466,9 +489,3 @@ (defun bundle-system (system &rest args &key force (verbose t) version &allow-other-keys) (declare (ignore force verbose version)) (apply #'operate 'binary-op system args))) #+(or ecl mkcl) (with-upgradability () (defun register-pre-built-system (name) (register-system (make-instance 'system :name (coerce-name name) :source-file nil)))) doc/asdf.texinfo +1 −1 Original line number Diff line number Diff line Loading @@ -1952,7 +1952,7 @@ before performing @code{load-op}, we have to load @var{foo} The syntax is approximately @verbatim (this-op {(other-op required-components)}+) (this-op @{(other-op required-components)@}+) simple-component-name := string | symbol Loading header.lisp +1 −1 Original line number Diff line number Diff line ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- ;;; This is ASDF 2.33.9: Another System Definition Facility. ;;; This is ASDF 2.33.10: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. Loading test/run-tests.sh +1 −1 Original line number Diff line number Diff line Loading @@ -117,7 +117,7 @@ do_tests () { echo "or more interactively (and maybe with rlwrap or in emacs), start with:" >&2 echo "(cd test ; $cmd )" >&2 echo "then copy/paste:" >&2 echo "'(#.(load \"script-support.lisp\") #.(asdf-test::da) #.(load-asdf) #.(load \"$i\"))" >&2 echo "'(#.(load \"script-support.lisp\") #.(asdf-test::da) #.(load-asdf) #.(frob-packages) #.(load \"$i\"))" >&2 fi echo >&2 echo >&2 Loading Loading
asdf.asd +1 −1 Original line number Diff line number Diff line Loading @@ -74,7 +74,7 @@ :licence "MIT" :description "Another System Definition Facility" :long-description "ASDF builds Common Lisp software organized into defined systems." :version "2.33.9" ;; to be automatically updated by make bump-version :version "2.33.10" ;; to be automatically updated by make bump-version :depends-on () #+asdf3 :encoding #+asdf3 :utf-8 ;; For most purposes, asdf itself specially counts as a builtin system. Loading
bundle.lisp +23 −6 Original line number Diff line number Diff line Loading @@ -433,6 +433,29 @@ (asdf:load-system :precompiled-asdf-utils) |# #+(or ecl mkcl) (with-upgradability () (defun uiop-library-file () (or (and (find-system :uiop nil) (system-source-directory :uiop) (progn (operate 'lib-op :uiop) (output-file 'lib-op :uiop))) (resolve-symlinks* (c::compile-file-pathname "sys:asdf" :type :lib)))) (defmethod input-files :around ((o program-op) (c system)) (let ((files (call-next-method)) (plan (traverse-sub-actions o c :plan-class 'sequential-plan))) (unless (or (and (find-system :uiop nil) (system-source-directory :uiop) (plan-operates-on-p plan '("uiop"))) (and (system-source-directory :asdf) (plan-operates-on-p plan '("asdf")))) (pushnew (uiop-library-file) files :test 'pathname-equal)) files)) (defun register-pre-built-system (name) (register-system (make-instance 'system :name (coerce-name name) :source-file nil)))) #+ecl (with-upgradability () (defmethod perform ((o bundle-compile-op) (c system)) Loading Loading @@ -466,9 +489,3 @@ (defun bundle-system (system &rest args &key force (verbose t) version &allow-other-keys) (declare (ignore force verbose version)) (apply #'operate 'binary-op system args))) #+(or ecl mkcl) (with-upgradability () (defun register-pre-built-system (name) (register-system (make-instance 'system :name (coerce-name name) :source-file nil))))
doc/asdf.texinfo +1 −1 Original line number Diff line number Diff line Loading @@ -1952,7 +1952,7 @@ before performing @code{load-op}, we have to load @var{foo} The syntax is approximately @verbatim (this-op {(other-op required-components)}+) (this-op @{(other-op required-components)@}+) simple-component-name := string | symbol Loading
header.lisp +1 −1 Original line number Diff line number Diff line ;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*- ;;; This is ASDF 2.33.9: Another System Definition Facility. ;;; This is ASDF 2.33.10: Another System Definition Facility. ;;; ;;; Feedback, bug reports, and patches are all welcome: ;;; please mail to <asdf-devel@common-lisp.net>. Loading
test/run-tests.sh +1 −1 Original line number Diff line number Diff line Loading @@ -117,7 +117,7 @@ do_tests () { echo "or more interactively (and maybe with rlwrap or in emacs), start with:" >&2 echo "(cd test ; $cmd )" >&2 echo "then copy/paste:" >&2 echo "'(#.(load \"script-support.lisp\") #.(asdf-test::da) #.(load-asdf) #.(load \"$i\"))" >&2 echo "'(#.(load \"script-support.lisp\") #.(asdf-test::da) #.(load-asdf) #.(frob-packages) #.(load \"$i\"))" >&2 fi echo >&2 echo >&2 Loading