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-dependency-grovel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xcvb
asdf-dependency-grovel
Commits
68065400
Commit
68065400
authored
Apr 15, 2010
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.101: handle enough-component-spec correctly.
parent
1f087347
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
grovel.lisp
grovel.lisp
+7
-5
package.lisp
package.lisp
+1
-1
No files found.
grovel.lisp
View file @
68065400
...
...
@@ -514,11 +514,13 @@
(
let
((
pn
(
enough-namestring
(
normalize-pathname-directory
(
asdf:component-pathname
c
))))
(
type
(
asdf:source-file-type
c
(
asdf:component-system
c
))))
(
values
(
strip-extension
pn
type
)
pn
)))
(
values
(
strip-extension
pn
type
)
pn
type
)))
(
defun
enough-component-spec
(
c
&optional
pn-p
)
(
multiple-value-bind
(
name
pn
)
(
normalized-component-name
c
)
(
write-to-string
name
)))
(
defun
enough-component-spec
(
c
)
(
multiple-value-bind
(
name
pn
type
)
(
normalized-component-name
c
)
(
if
(
or
(
null
type
)
(
equal
(
concatenate
'string
name
"."
type
)
pn
))
(
write-to-string
name
)
(
format
nil
"~S :pathname #p~S"
name
pn
))))
;; Used by additional-dependencies* and overridden-dependencies*.
(
defun
map-over-instrumented-component-and-parents
(
component
slot-name
)
...
...
@@ -562,7 +564,7 @@
(
slot-value
component
'translated-name
))
(
and
include-pathname
(
slot-value
component
'translated-pathname
)))
(
enough-component-spec
component
include-pathname
)))
(
enough-component-spec
component
)))
;; Used only by maybe-translated-component-class.
(
defun
coerce-name
(
maybe-class
)
...
...
package.lisp
View file @
68065400
...
...
@@ -31,7 +31,7 @@
(
in-package
#:asdf-dependency-grovel
)
(
defparameter
*asdf-dependency-grovel-version*
"1.10
0
"
)
(
defparameter
*asdf-dependency-grovel-version*
"1.10
1
"
)
(
defparameter
*asdf-version-required-by-adg*
"1.702"
)
#-
asdf2
...
...
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