From 7d2ef2a1d5e487d45a1be1fb6b9bb87675c34164 Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Fri, 28 Feb 2014 17:19:26 -0500 Subject: [PATCH] 4.0.1: release fixes from 4.0.0, mostly for old implementations. --- Makefile | 1 + cl-launch.sh | 2 +- debian/changelog | 10 ++++++++++ release.lisp | 4 ++-- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0c84d22..1c0fc23 100644 --- a/Makefile +++ b/Makefile @@ -85,6 +85,7 @@ push: git status debian-package-all: + ./release.lisp debian-package-all quickrelease: reinstall_here ./release.lisp quickrelease diff --git a/cl-launch.sh b/cl-launch.sh index a2d170b..4dec47c 100755 --- a/cl-launch.sh +++ b/cl-launch.sh @@ -1,6 +1,6 @@ #!/bin/sh #| 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 () { AUTHOR_NOTE="\ # Please send your improvements to the author: diff --git a/debian/changelog b/debian/changelog index 7674805..5ad3716 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +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 * Build with --eval --require --file --system in order of appearance. diff --git a/release.lisp b/release.lisp index 65f21c0..82f2313 100755 --- a/release.lisp +++ b/release.lisp @@ -61,8 +61,8 @@ exec "$(dirname $0)/cl-launch.sh" \ (cl-launch-tag (strcat "cl-launch-" tag)) (cldir (subpathname home "files/cl-launch/"))) (debian-package) - (run `(./cl-launch.sh --include "." -B install_path)) - (run `(./cl-launch.sh --no-include -o cl-launch -B install_bin)) + (run `(./cl-launch.sh --include "." "-B" install_path)) + (run `(./cl-launch.sh --no-include -o cl-launch "-B" install_bin)) (with-current-directory (up) (run `(rm -f ,cl-launch-tag)) (run `(ln -s cl-launch ,cl-launch-tag)) -- GitLab