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
xcvb
cl-launch
Commits
c46c70b5
Commit
c46c70b5
authored
Jun 14, 2014
by
Francois-Rene Rideau
Browse files
quickrelease: clean and extract source before we tarball and release!
parent
c86d2dc2
Changes
1
Hide whitespace changes
Inline
Side-by-side
release.lisp
View file @
c46c70b5
...
...
@@ -8,7 +8,8 @@ exec "$(dirname $0)/cl-launch.sh" \
(
:use
:cl
:uiop
:asdf
:inferior-shell
:optima
:optima.ppcre
)
;; Note: the exports are the list of available commands.
(
:export
#:rep
#:clean
#:debian-package
#:publish-debian-package
#:debian-package-all
#:quickrelease
))
#:source
#:quickrelease
#:debian-package
#:publish-debian-package
#:debian-package-all
))
(
in-package
:cl-launch-release
)
...
...
@@ -105,10 +106,17 @@ exec "$(dirname $0)/cl-launch.sh" \
(
run
`
(
rsync
-av
--delete
,
cldir
"common-lisp.net:/project/xcvb/public_html/cl-launch/"
)
:show
t
))
(
values
)))
(
defun
source
()
(
with-current-directory
()
(
run
`
(
.
/cl-launch.sh
--include
,
(
getcwd
)
"-B"
install_path
))))
(
defun
quickrelease
()
(
let*
((
version
(
script-version
))
;; no need to compare with the debian version
(
link
(
strcat
"cl-launch-"
version
))
(
tarball
(
strcat
link
".tar.gz"
)))
(
clean
)
(
source
)
(
with-current-directory
((
pn
"../"
))
(
run
`
(
pwd
)
:show
t
)
(
clean
)
...
...
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