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
clpm
clpm
Commits
1bf9e663
Commit
1bf9e663
authored
May 15, 2020
by
Eric Timmons
Browse files
cleanup: move src/clpm/ to clpm/
parent
d5567462
Changes
62
Hide whitespace changes
Inline
Side-by-side
Lakefile
View file @
1bf9e663
...
...
@@ -48,7 +48,7 @@
(
parse-integer
(
uiop:run-program
'
(
"git"
"rev-list"
"--count"
"HEAD"
"--not"
"master"
)
:output
'
(
:string
:stripped
t
))))
(
defun
base-version
()
(
uiop:read-file-form
(
merge-pathnames
"
src/
clpm/version.lisp"
*lakefile-truename*
)
(
uiop:read-file-form
(
merge-pathnames
"clpm/version.lisp"
*lakefile-truename*
)
:at
'
(
3
2
)))
(
defun
clpm-version
(
&key
ignore-dirty-p
)
...
...
cli/deploy.lisp
View file @
1bf9e663
...
...
@@ -17,7 +17,7 @@
(
defvar
*default-clpm-home*
nil
)
(
deploy:define-resource-directory
deploy-src
"
src
/"
)
(
deploy:define-resource-directory
deploy-src
"
clpm
/"
)
(
deploy:define-resource-directory
deploy-cli
"cli/"
)
(
deploy:define-resource-directory
deploy-features
"features/"
)
(
deploy:define-resource-directory
deploy-client
"client/"
)
...
...
@@ -48,7 +48,7 @@
;; Fixup the logical pathnames
(
when
(
uiop:featurep
:clpm-logical-pathnames
)
(
setf
(
logical-pathname-translations
"clpm"
)
`
((
"clpm:
src
;**;*.*.*"
,
(
merge-pathnames
"
src
/**/*.*"
deploy:*data-location*
))
`
((
"clpm:
clpm
;**;*.*.*"
,
(
merge-pathnames
"
clpm
/**/*.*"
deploy:*data-location*
))
(
"clpm:cli;**;*.*.*"
,
(
merge-pathnames
"cli/**/*.*"
deploy:*data-location*
))
(
"clpm:features;**;*.*.*"
,
(
merge-pathnames
"features/**/*.*"
deploy:*data-location*
)))))
(
setf
*clpm-client-asd-pathname*
(
merge-pathnames
"src/clpm-client/clpm-client.asd"
...
...
clpm-cli.asd
View file @
1bf9e663
...
...
@@ -9,7 +9,7 @@
(
in-package
:asdf-user
)
(
defsystem
#:clpm-cli
:version
(
:read-file-form
"
src/
clpm/version.lisp"
:at
(
2
2
))
:version
(
:read-file-form
"clpm/version.lisp"
:at
(
2
2
))
:description
"Command Line Interface for CLPM"
:license
"BSD-2-Clause"
:pathname
#+
clpm-logical-pathnames
#p"clpm:cli;"
#-
clpm-logical-pathnames
"cli/"
...
...
clpm-features.asd
View file @
1bf9e663
...
...
@@ -9,7 +9,7 @@
(
in-package
:asdf-user
)
(
defsystem
#:clpm-features
:version
(
:read-file-form
"
src/
clpm/version.lisp"
:at
(
2
2
))
:version
(
:read-file-form
"clpm/version.lisp"
:at
(
2
2
))
:description
"Configuring *FEATURES* for CLPM"
:license
"BSD-2-Clause"
:pathname
#+
clpm-logical-pathnames
#p"clpm:features;"
#-
clpm-logical-pathnames
"features/"
...
...
clpm.asd
View file @
1bf9e663
...
...
@@ -10,10 +10,10 @@
(
in-package
:asdf-user
)
(
defsystem
#:clpm
:version
(
:read-file-form
"
src/
clpm/version.lisp"
:at
(
2
2
))
:version
(
:read-file-form
"clpm/version.lisp"
:at
(
2
2
))
:description
"A Common Lisp Package Manager"
:license
"BSD-2-Clause"
:pathname
#+
clpm-logical-pathnames
#p"clpm:
src;
clpm;"
#-
clpm-logical-pathnames
"
src/
clpm/"
:pathname
#+
clpm-logical-pathnames
#p"clpm:clpm;"
#-
clpm-logical-pathnames
"clpm/"
:class
:package-inferred-system
:defsystem-depends-on
(
#:clpm-features
)
:depends-on
(
#:clpm/clpm
...
...
src/
clpm/archives.lisp
→
clpm/archives.lisp
View file @
1bf9e663
File moved
src/
clpm/archives/archive.lisp
→
clpm/archives/archive.lisp
View file @
1bf9e663
File moved
src/
clpm/archives/chipz.lisp
→
clpm/archives/chipz.lisp
View file @
1bf9e663
File moved
src/
clpm/archives/defs.lisp
→
clpm/archives/defs.lisp
View file @
1bf9e663
File moved
src/
clpm/archives/tar.lisp
→
clpm/archives/tar.lisp
View file @
1bf9e663
File moved
src/
clpm/bundle.lisp
→
clpm/bundle.lisp
View file @
1bf9e663
File moved
src/
clpm/cache.lisp
→
clpm/cache.lisp
View file @
1bf9e663
File moved
src/
clpm/client.lisp
→
clpm/client.lisp
View file @
1bf9e663
File moved
src/
clpm/clpm.lisp
→
clpm/clpm.lisp
View file @
1bf9e663
File moved
src/
clpm/clpmfile.lisp
→
clpm/clpmfile.lisp
View file @
1bf9e663
File moved
src/
clpm/config.lisp
→
clpm/config.lisp
View file @
1bf9e663
File moved
src/
clpm/config/cli-source.lisp
→
clpm/config/cli-source.lisp
View file @
1bf9e663
File moved
src/
clpm/config/default-source.lisp
→
clpm/config/default-source.lisp
View file @
1bf9e663
File moved
src/
clpm/config/defs.lisp
→
clpm/config/defs.lisp
View file @
1bf9e663
File moved
src/
clpm/config/env-source.lisp
→
clpm/config/env-source.lisp
View file @
1bf9e663
File moved
Prev
1
2
3
4
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