Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal J. Bourguignon
asdf
Commits
a6d23b3d
Commit
a6d23b3d
authored
22 years ago
by
Daniel Barlow
Browse files
Options
Downloads
Patches
Plain Diff
Now works in Scieneer Common Lisp (patch thanks to Douglas Thomas Crosher)
parent
22b1a44c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
asdf.lisp
+4
-4
4 additions, 4 deletions
asdf.lisp
test/file1.lisp
+1
-1
1 addition, 1 deletion
test/file1.lisp
test/file3.lisp
+1
-1
1 addition, 1 deletion
test/file3.lisp
with
6 additions
and
6 deletions
asdf.lisp
+
4
−
4
View file @
a6d23b3d
;;; This is asdf: Another System Definition Facility. $Revision: 1.3
7
$
;;; This is asdf: Another System Definition Facility. $Revision: 1.3
8
$
;;;
;;;
;;; The canonical source for asdf is presently the cCLan CVS repository,
;;; The canonical source for asdf is presently the cCLan CVS repository,
;;; at <URL:http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/cclan/asdf/>
;;; at <URL:http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/cclan/asdf/>
...
@@ -86,7 +86,7 @@
...
@@ -86,7 +86,7 @@
(
in-package
#:asdf
)
(
in-package
#:asdf
)
;;; parse the cvs revision into something that might be vaguely useful.
;;; parse the cvs revision into something that might be vaguely useful.
(
defvar
*asdf-revision*
(
let*
((
v
"$Revision: 1.3
7
$"
)
(
defvar
*asdf-revision*
(
let*
((
v
"$Revision: 1.3
8
$"
)
(
colon
(
position
#\:
v
))
(
colon
(
position
#\:
v
))
(
dot
(
position
#\.
v
)))
(
dot
(
position
#\.
v
)))
(
and
v
colon
dot
(
and
v
colon
dot
...
@@ -329,7 +329,7 @@ and NIL NAME and TYPE components"
...
@@ -329,7 +329,7 @@ and NIL NAME and TYPE components"
(
or
(
not
in-memory
)
(
or
(
not
in-memory
)
(
<
(
car
in-memory
)
(
file-write-date
on-disk
))))
(
<
(
car
in-memory
)
(
file-write-date
on-disk
))))
(
let
((
*package*
(
make-package
(
gensym
(
package-name
#.
*package*
))
(
let
((
*package*
(
make-package
(
gensym
(
package-name
#.
*package*
))
:use
'
(
"CL"
"ASDF"
))))
:use
'
(
:cl
:asdf
))))
(
format
t
";;; Loading system definition from ~A into ~A~%"
(
format
t
";;; Loading system definition from ~A into ~A~%"
on-disk
*package*
)
on-disk
*package*
)
(
load
on-disk
)))
(
load
on-disk
)))
...
@@ -851,7 +851,7 @@ output to *trace-output*. Returns the shell's exit code."
...
@@ -851,7 +851,7 @@ output to *trace-output*. Returns the shell's exit code."
(
list
"-c"
command
)
(
list
"-c"
command
)
:input
nil
:output
*trace-output*
))))
:input
nil
:output
*trace-output*
))))
#+
cmu
#+
(
or
cmu
scl
)
(
defun
run-shell-command
(
control-string
&rest
args
)
(
defun
run-shell-command
(
control-string
&rest
args
)
"Interpolate ARGS into CONTROL-STRING as if by FORMAT, and
"Interpolate ARGS into CONTROL-STRING as if by FORMAT, and
synchronously execute the result using a Bourne-compatible shell, with
synchronously execute the result using a Bourne-compatible shell, with
...
...
This diff is collapsed.
Click to expand it.
test/file1.lisp
+
1
−
1
View file @
a6d23b3d
(
defpackage
:test-package
(
:use
"CL"
))
(
defpackage
:test-package
(
:use
:cl
))
(
in-package
:test-package
)
(
in-package
:test-package
)
(
defvar
*file1*
t
)
(
defvar
*file1*
t
)
This diff is collapsed.
Click to expand it.
test/file3.lisp
+
1
−
1
View file @
a6d23b3d
(
defpackage
:test-package
(
:use
"CL"
))
(
defpackage
:test-package
(
:use
:cl
))
(
in-package
:test-package
)
(
in-package
:test-package
)
(
defvar
*file3*
t
)
(
defvar
*file3*
t
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment