Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
9
Merge Requests
9
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
d840949c
Commit
d840949c
authored
Jan 19, 2013
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.26.122: Fix logical pathname issue on clisp
parent
0a621ca2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
7 deletions
+11
-7
asdf.asd
asdf.asd
+1
-1
find-system.lisp
find-system.lisp
+5
-1
header.lisp
header.lisp
+1
-1
test/test-logical-pathname.script
test/test-logical-pathname.script
+2
-2
upgrade.lisp
upgrade.lisp
+1
-1
version.lisp-expr
version.lisp-expr
+1
-1
No files found.
asdf.asd
View file @
d840949c
...
...
@@ -15,7 +15,7 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.26.12
1
"
;; to be automatically updated by bin/bump-revision
:version
"2.26.12
2
"
;; to be automatically updated by bin/bump-revision
:depends-on
()
:components
((
:module
"build"
:components
((
:file
"asdf"
))))
:in-order-to
(
#+
asdf2.27
(
compile-op
(
monolithic-load-concatenated-source-op
asdf/defsystem
))))
...
...
find-system.lisp
View file @
d840949c
...
...
@@ -311,7 +311,11 @@ PREVIOUS-TIME when not null is the time at which the PREVIOUS system was loaded.
(
setf
(
system-source-file
system
)
pathname
))
(
when
(
and
pathname
(
not
(
and
previous
(
pathname-equal
pathname
previous-pathname
)
(
or
(
pathname-equal
pathname
previous-pathname
)
(
and
pathname
previous-pathname
(
pathname-equal
(
translate-logical-pathname
pathname
)
(
translate-logical-pathname
previous-pathname
))))
(
stamp<=
(
safe-file-write-date
pathname
)
previous-time
))))
;; only load when it's a pathname that is different or has newer content
(
load-sysdef
name
pathname
)))
...
...
header.lisp
View file @
d840949c
;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp ; coding: utf-8 -*-
;;; This is ASDF 2.26.12
1
: Another System Definition Facility.
;;; This is ASDF 2.26.12
2
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
test/test-logical-pathname.script
View file @
d840949c
...
...
@@ -52,7 +52,7 @@
:ignore-inherited-configuration))
(load-system :test-logical-pathname :force t)
(let ((sys (find-system :test-logical-pathname)))
(assert (logical-pathname-p (component-pathname sys)))
(assert (logical-pathname-p (system-source-file sys)))))
#-clisp
(assert (logical-pathname-p (component-pathname sys)))
#-clisp
(assert (logical-pathname-p (system-source-file sys)))))
(DBG "Done"))
upgrade.lisp
View file @
d840949c
...
...
@@ -45,7 +45,7 @@
;; "2.345.6" would be a development version in the official upstream
;; "2.345.0.7" would be your seventh local modification of official release 2.345
;; "2.345.6.7" would be your seventh local modification of development version 2.345.6
(
asdf-version
"2.26.12
1
"
)
(
asdf-version
"2.26.12
2
"
)
(
existing-asdf
(
find-class
(
find-symbol*
:component
:asdf
nil
)
nil
))
(
existing-version
*asdf-version*
)
(
already-there
(
equal
asdf-version
existing-version
)))
...
...
version.lisp-expr
View file @
d840949c
"2.26.12
1
"
"2.26.12
2
"
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