Skip to content
Snippets Groups Projects
Commit 7d2ef2a1 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

4.0.1: release fixes from 4.0.0, mostly for old implementations.

parent 1b7a7875
No related branches found
No related tags found
No related merge requests found
...@@ -85,6 +85,7 @@ push: ...@@ -85,6 +85,7 @@ push:
git status git status
debian-package-all: debian-package-all:
./release.lisp debian-package-all
quickrelease: reinstall_here quickrelease: reinstall_here
./release.lisp quickrelease ./release.lisp quickrelease
#!/bin/sh #!/bin/sh
#| cl-launch.sh -- shell wrapper generator for Common Lisp software -*- Lisp -*- #| cl-launch.sh -- shell wrapper generator for Common Lisp software -*- Lisp -*-
CL_LAUNCH_VERSION='4.0.0.5' CL_LAUNCH_VERSION='4.0.1'
license_information () { license_information () {
AUTHOR_NOTE="\ AUTHOR_NOTE="\
# Please send your improvements to the author: # Please send your improvements to the author:
......
cl-launch (4.0.1-1) unstable; urgency=low
* Speed up startup time by not upgrading ASDF unless needed.
* Fix 4.0.0 bugs: support old implementations with older ASDF;
unbreak working from cl-launch dumped image.
* Add alias -E for --entry.
* Eat our own dogfood with a CL release script.
-- Francois-Rene Rideau <fare@tunes.org> Mon, 28 Feb 2014 17:15:26 -0500
cl-launch (4.0.0-1) unstable; urgency=low cl-launch (4.0.0-1) unstable; urgency=low
* Build with --eval --require --file --system in order of appearance. * Build with --eval --require --file --system in order of appearance.
......
...@@ -61,8 +61,8 @@ exec "$(dirname $0)/cl-launch.sh" \ ...@@ -61,8 +61,8 @@ exec "$(dirname $0)/cl-launch.sh" \
(cl-launch-tag (strcat "cl-launch-" tag)) (cl-launch-tag (strcat "cl-launch-" tag))
(cldir (subpathname home "files/cl-launch/"))) (cldir (subpathname home "files/cl-launch/")))
(debian-package) (debian-package)
(run `(./cl-launch.sh --include "." -B install_path)) (run `(./cl-launch.sh --include "." "-B" install_path))
(run `(./cl-launch.sh --no-include -o cl-launch -B install_bin)) (run `(./cl-launch.sh --no-include -o cl-launch "-B" install_bin))
(with-current-directory (up) (with-current-directory (up)
(run `(rm -f ,cl-launch-tag)) (run `(rm -f ,cl-launch-tag))
(run `(ln -s cl-launch ,cl-launch-tag)) (run `(ln -s cl-launch ,cl-launch-tag))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment