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

Release 3.22: promoting 3.21.7

parent bce4c180
No related branches found
No related tags found
No related merge requests found
...@@ -60,8 +60,8 @@ mrproper: clean ...@@ -60,8 +60,8 @@ mrproper: clean
debian-package: mrproper debian-package: mrproper
git clean -xfd git clean -xfd
RELEASE="$$(git tag -l '3.0[0-9][0-9]' | tail -n 1)" ; \ RELEASE="$$(git tag -l '3.[0-9][0-9]' | tail -n 1)" ; \
git-buildpackage --git-debian-branch=master --git-upstream-branch=$$RELEASE --git-tag --git-retag git-buildpackage --git-debian-branch=master --git-upstream-branch=master --git-upstream-tag=$$RELEASE --git-tag --git-retag --git-ignore-branch
lintian -c --fail-on-warnings ../cl-launch_*.changes lintian -c --fail-on-warnings ../cl-launch_*.changes
git clean -xfd git clean -xfd
......
#!/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='3.21.7' CL_LAUNCH_VERSION='3.22'
license_information () { license_information () {
AUTHOR_NOTE="\ AUTHOR_NOTE="\
# Please send your improvements to the author: # Please send your improvements to the author:
......
cl-launch (3.22-1) unstable; urgency=low
* Release of cl-launch to match ASDF 3.0.0
-- Francois-Rene Rideau <fare@tunes.org> Mon, 16 May 2013 01:22:49 -0400
cl-launch (3.019-1) unstable; urgency=low cl-launch (3.019-1) unstable; urgency=low
* Use TMPDIR, not TMP. * Use TMPDIR, not TMP.
......
...@@ -5,13 +5,13 @@ Homepage: http://www.cliki.net/cl-launch ...@@ -5,13 +5,13 @@ Homepage: http://www.cliki.net/cl-launch
Maintainer: Francois-Rene Rideau <fare@tunes.org> Maintainer: Francois-Rene Rideau <fare@tunes.org>
Uploaders: Christoph Egger <christoph@debian.org>, Kan-Ru Chen <koster@debian.org>, Milan Zamazal <pdm@debian.org>, Peter Van Eynde <pvaneynd@debian.org> Uploaders: Christoph Egger <christoph@debian.org>, Kan-Ru Chen <koster@debian.org>, Milan Zamazal <pdm@debian.org>, Peter Van Eynde <pvaneynd@debian.org>
Build-Depends: debhelper (>= 7.2.8) Build-Depends: debhelper (>= 7.2.8)
Build-Depends-Indep: dh-lisp
Standards-Version: 3.9.3 Standards-Version: 3.9.3
Vcs-Git: git://common-lisp.net/projects/xcvb/cl-launch.git
Package: cl-launch Package: cl-launch
Architecture: all Architecture: all
Depends: ${misc:Depends} Depends: ${misc:Depends}
Suggests: cl-asdf (>= 2:2.015) Suggests: cl-asdf (>= 2:3.0.0)
Recommends: common-lisp-controller (>= 7.3), sbcl (>= 1:1.0.40) Recommends: common-lisp-controller (>= 7.3), sbcl (>= 1:1.0.40)
Breaks: cl-asdf (<< 2:2.015), common-lisp-controller (<= 7.2) Breaks: cl-asdf (<< 2:2.015), common-lisp-controller (<= 7.2)
Description: uniform frontend to running Common Lisp code from the shell Description: uniform frontend to running Common Lisp code from the shell
...@@ -24,14 +24,14 @@ Description: uniform frontend to running Common Lisp code from the shell ...@@ -24,14 +24,14 @@ Description: uniform frontend to running Common Lisp code from the shell
CL-Launch will automatically detect a supported Common Lisp implementation CL-Launch will automatically detect a supported Common Lisp implementation
and use adequate invocation options. It can also be configured to fit exactly and use adequate invocation options. It can also be configured to fit exactly
the programmer's desires. Fully supported implementations are: the programmer's desires. Fully supported implementations are:
Allegro, CLISP, ClozureCL, CMUCL, ECL, GCL 2.7, SBCL, SCL. Allegro, CLISP, ClozureCL, CMUCL, ECL, SBCL, SCL.
Of these, SBCL, ECL and CLISP support creating standalone executables. Of these, SBCL, ECL and CLISP support creating standalone executables.
Partially supported implementations are: Partially supported implementations are:
LispWorks Professional, ABCL, GCL 2.6, XCL. LispWorks Professional, ABCL, GCL 2.6, GCL 2.7, XCL.
. .
CL-Launch also offers Common Lisp programs a simple uniform interface to CL-Launch also offers Common Lisp programs a simple uniform interface to
invocation parameters (command-line arguments and environment variables). invocation parameters (command-line arguments and environment variables).
It relies on ASDF 2 for system construction. See the ASDF 2 manual for It relies on ASDF 3 for system construction. See the ASDF 3 manual for
more information on how to configure source and object code location. more information on how to configure source and object code location.
CL-Launch may dump memory images for fast startup (at the expense of disk CL-Launch may dump memory images for fast startup (at the expense of disk
space). It can also be used as a quick way to evaluate and print simple Lisp space). It can also be used as a quick way to evaluate and print simple Lisp
......
...@@ -54,7 +54,7 @@ binary-indep: build install ...@@ -54,7 +54,7 @@ binary-indep: build install
dh_installdocs -i dh_installdocs -i
dh_installchangelogs -i dh_installchangelogs -i
dh_link -i dh_link -i
dh_lisp -i #dh_lisp -i
dh_compress -i dh_compress -i
dh_fixperms -i dh_fixperms -i
dh_installdeb -i dh_installdeb -i
...@@ -63,7 +63,7 @@ binary-indep: build install ...@@ -63,7 +63,7 @@ binary-indep: build install
dh_builddeb -i dh_builddeb -i
# Build architecture-dependent files here. # Build architecture-dependent files here.
binary-arch: binary-arch: build
binary: binary-indep binary-arch binary: binary-indep binary-arch
......
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