Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Hugo Ishimaru
asdf
Commits
b4dc78de
Commit
b4dc78de
authored
Oct 08, 2013
by
Francois-Rene Rideau
Browse files
Cleanup: use the name uiop and uiop/foo instead of asdf/driver and asdf/foo in the code.
parent
a11e3738
Changes
23
Hide whitespace changes
Inline
Side-by-side
action.lisp
View file @
b4dc78de
...
...
@@ -4,7 +4,7 @@
(
asdf/package:define-package
:asdf/action
(
:nicknames
:asdf-action
)
(
:recycle
:asdf/action
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
:asdf/system
#:asdf/cache
:asdf/find-system
:asdf/find-component
:asdf/operation
)
(
:export
#:action
#:define-convenience-action-methods
...
...
backward-internals.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/backward-internals
(
:recycle
:asdf/backward-internals
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/system
:asdf/component
:asdf/operation
:asdf/find-system
:asdf/action
:asdf/lisp-action
)
(
:export
;; for internal use
...
...
bundle.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/bundle
(
:recycle
:asdf/bundle
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
:asdf/system
:asdf/find-system
:asdf/find-component
:asdf/operation
:asdf/action
:asdf/lisp-action
:asdf/plan
:asdf/operate
)
(
:export
...
...
cache.lisp
View file @
b4dc78de
...
...
@@ -2,7 +2,7 @@
;;;; Stamp cache
(
asdf/package:define-package
:asdf/cache
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
)
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
)
(
:export
#:get-file-stamp
#:compute-file-stamp
#:register-file-stamp
#:consult-asdf-cache
#:do-asdf-cache
#:call-with-asdf-cache
#:with-asdf-cache
#:*asdf-cache*
))
...
...
component.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/component
(
:recycle
:asdf/component
:asdf/defsystem
:asdf/find-system
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
)
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
)
(
:export
#:component
#:component-find-path
#:component-name
#:component-pathname
#:component-relative-pathname
...
...
concatenate-source.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/concatenate-source
(
:recycle
:asdf/concatenate-source
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
:asdf/operation
:asdf/system
:asdf/find-system
:asdf/defsystem
:asdf/action
:asdf/lisp-action
:asdf/bundle
)
...
...
defsystem.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/defsystem
(
:recycle
:asdf/defsystem
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
:asdf/system
:asdf/cache
:asdf/find-system
:asdf/find-component
:asdf/lisp-action
:asdf/operate
:asdf/backward-internals
)
...
...
find-component.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/find-component
(
:recycle
:asdf/find-component
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
:asdf/system
:asdf/find-system
)
(
:export
#:find-component
...
...
find-system.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/find-system
(
:recycle
:asdf/find-system
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
:asdf/system
:asdf/cache
)
(
:export
#:remove-entry-from-registry
#:coerce-entry-to-directory
...
...
@@ -243,7 +243,9 @@ Going forward, we recommend new users should be using the source-registry.
(
setf
(
gethash
(
coerce-name
system-name
)
*preloaded-systems*
)
keys
))
(
register-preloaded-system
"asdf"
:version
*asdf-version*
)
(
register-preloaded-system
"uiop"
:version
*asdf-version*
)
(
register-preloaded-system
"asdf-driver"
:version
*asdf-version*
)
(
register-preloaded-system
"asdf-defsystem"
:version
*asdf-version*
)
(
defmethod
find-system
((
name
null
)
&optional
(
error-p
t
))
(
declare
(
ignorable
name
))
...
...
footer.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/footer
(
:recycle
:asdf/footer
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/find-system
:asdf/find-component
:asdf/operation
:asdf/action
:asdf/lisp-action
:asdf/operate
:asdf/bundle
:asdf/concatenate-source
:asdf/output-translations
:asdf/source-registry
...
...
interface.lisp
View file @
b4dc78de
...
...
@@ -10,7 +10,7 @@
#:split
#:make-collector
#:loaded-systems
; makes for annoying SLIME completion
#:output-files-for-system-and-operation
)
; obsolete ASDF-BINARY-LOCATION function
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
:asdf/cache
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/cache
:asdf/component
:asdf/system
:asdf/find-system
:asdf/find-component
:asdf/operation
:asdf/action
:asdf/lisp-action
:asdf/output-translations
:asdf/source-registry
...
...
lisp-action.lisp
View file @
b4dc78de
...
...
@@ -4,8 +4,8 @@
(
asdf/package:define-package
:asdf/lisp-action
(
:recycle
:asdf/lisp-action
:asdf
)
(
:intern
#:proclamations
#:flags
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/
upgrad
e
:asdf/cache
:asdf/component
:asdf/system
:asdf/find-component
:asdf/find-system
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/
cach
e
:asdf/component
:asdf/system
:asdf/find-component
:asdf/find-system
:asdf/operation
:asdf/action
)
(
:export
#:try-recompiling
...
...
operate.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/operate
(
:recycle
:asdf/operate
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
:asdf/system
:asdf/operation
:asdf/action
:asdf/find-system
:asdf/find-component
:asdf/lisp-action
:asdf/plan
)
(
:export
...
...
operation.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/operation
(
:recycle
:asdf/operation
:asdf/action
:asdf
)
;; asdf/action for FEATURE pre 2.31.5.
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
)
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
)
(
:export
#:operation
#:operation-original-initargs
#:original-initargs
;; backward-compatibility only. DO NOT USE.
...
...
output-translations.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/output-translations
(
:recycle
:asdf/output-translations
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
)
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
)
(
:export
#:*output-translations*
#:*output-translations-parameter*
#:invalid-output-translation
...
...
@@ -282,7 +282,7 @@ effectively disabling the output translation facility."
:return
(
translate-pathname*
p
absolute-source
destination
root
source
)
:finally
(
return
p
)))))
;; Hook into
asdf/driver
's output-translation mechanism
;; Hook into
uiop
's output-translation mechanism
#-
cormanlisp
(
setf
*output-translation-function*
'apply-output-translations
)
...
...
plan.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/plan
(
:recycle
:asdf/plan
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
:asdf/operation
:asdf/system
:asdf/cache
:asdf/find-system
:asdf/find-component
:asdf/operation
:asdf/action
:asdf/lisp-action
)
...
...
source-registry.lisp
View file @
b4dc78de
...
...
@@ -4,7 +4,7 @@
(
asdf/package:define-package
:asdf/source-registry
(
:recycle
:asdf/source-registry
:asdf
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
:asdf/find-system
)
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/find-system
)
(
:export
#:*source-registry-parameter*
#:*default-source-registries*
#:invalid-source-registry
...
...
system.lisp
View file @
b4dc78de
...
...
@@ -3,7 +3,7 @@
(
asdf/package:define-package
:asdf/system
(
:recycle
:asdf
:asdf/system
)
(
:use
:
asdf
/common-lisp
:
asdf/driver
:asdf/upgrade
:asdf/component
)
(
:use
:
uiop
/common-lisp
:
uiop
:asdf/upgrade
:asdf/component
)
(
:export
#:system
#:proto-system
#:system-source-file
#:system-source-directory
#:system-relative-pathname
...
...
uiop/driver.lisp
View file @
b4dc78de
;;;; ---------------------------------------------------------------------------
;;;; Re-export all the functionality in
asdf/driver
;;;; Re-export all the functionality in
UIOP
(
uiop/package:define-package
:uiop/driver
(
:nicknames
:uiop
:asdf/driver
:asdf-driver
:asdf-utils
)
(
:use
:uiop/common-lisp
:uiop/package
:uiop/utility
:uiop/os
:uiop/pathname
:uiop/stream
:uiop/filesystem
:uiop/image
:uiop/os
:uiop/pathname
:uiop/stream
:uiop/filesystem
:uiop/image
:uiop/run-program
:uiop/lisp-build
:uiop/configuration
:uiop/backward-driver
)
(
:reexport
;; NB: excluding asdf/common-lisp
;; which include all of CL with compatibility modifications on select platforms.
;; NB: excluding uiop/common-lisp
;; which include all of CL with compatibility modifications on select platforms,
;; that could cause potential conflicts for packages that would :use (cl uiop)
;; or :use (closer-common-lisp uiop), etc.
:uiop/package
:uiop/utility
:uiop/os
:uiop/pathname
:uiop/stream
:uiop/filesystem
:uiop/image
:uiop/run-program
:uiop/lisp-build
...
...
uiop/package.lisp
View file @
b4dc78de
...
...
@@ -8,7 +8,7 @@
;; CAUTION: we must handle the first few packages specially for hot-upgrade.
;; This package definition MUST NOT change unless its name too changes;
;; if/when it changes, don't forget to add new functions missing from below.
;; Until then,
asdf
/package is frozen to forever
;; Until then,
uiop
/package is frozen to forever
;; import and export the same exact symbols as for ASDF 2.27.
;; Any other symbol must be import-from'ed and re-export'ed in a different package.
(
:use
:common-lisp
)
...
...
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment