Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
clpm
clpi
Commits
d692fefa
Commit
d692fefa
authored
May 08, 2020
by
Eric Timmons
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure objects end with a newline
parent
551a981d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
src/project.lisp
src/project.lisp
+6
-3
src/system.lisp
src/system.lisp
+2
-1
No files found.
src/project.lisp
View file @
d692fefa
...
...
@@ -158,19 +158,22 @@ instantiated."))
:direction
:output
:if-exists
:supersede
)
(
with-clpi-io-syntax
()
(
write
it
:stream
s
))))
(
write
it
:stream
s
)
(
terpri
s
))))
(
when
(
slot-boundp
project
'repo
)
(
with-open-index-object-stream
(
s
(
index
project
)
(
project-object-path
project
"repo"
)
:direction
:output
:if-exists
:supersede
)
(
with-clpi-io-syntax
()
(
write
(
repo-to-description
(
project-repo
project
))
:stream
s
))))
(
write
(
repo-to-description
(
project-repo
project
))
:stream
s
)
(
terpri
s
))))
(
when
(
slot-boundp
project
'version-scheme
)
(
with-open-index-object-stream
(
s
(
index
project
)
(
project-object-path
project
"version-scheme"
)
:direction
:output
:if-exists
:supersede
)
(
with-clpi-io-syntax
()
(
write
(
project-version-scheme
project
)
:stream
s
)))))))
(
write
(
project-version-scheme
project
)
:stream
s
)
(
terpri
s
)))))))
(
defmethod
project-versions
((
project
project
))
(
hash-table-keys
(
project-release-ht
project
)))
...
...
src/system.lisp
View file @
d692fefa
...
...
@@ -95,7 +95,8 @@ provide that version.")))
:direction
:output
:if-exists
:supersede
)
(
with-clpi-io-syntax
()
(
write
(
system-primary-project
system
)
:stream
s
)))))
(
write
(
system-primary-project
system
)
:stream
s
)
(
terpri
s
)))))
(
defmethod
system-version-release-names
((
system
system
)
version
&optional
(
error
t
))
(
multiple-value-bind
(
names
exists-p
)
(
gethash
version
(
system-version-release-ht
system
))
...
...
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