From: William Harold Newman Date: Mon, 15 Jan 2001 02:28:27 +0000 (+0000) Subject: 0.6.10: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=b8f63d9b4e978bec3bfc1f4fc471e5ed946781fd;p=sbcl.git 0.6.10: got confused and tagged -- I think -- 0.6.9.23 as sbcl_0_6_10 redid distribution scripts so that .tar files expand into sbcl-x.y.z/ instead of ./ --- diff --git a/binary-distribution.sh b/binary-distribution.sh index 9794f04..1867bd9 100755 --- a/binary-distribution.sh +++ b/binary-distribution.sh @@ -5,9 +5,14 @@ # DocBook-to-HTML converter, should also be run to create the # HTML version of the documentation.) -tar cf ../sbcl-x.y.z-binary.tar \ - output/sbcl.core src/runtime/sbcl \ - BUGS COPYING CREDITS INSTALL NEWS README \ - install.sh \ - doc/sbcl.1 doc/cmucl/cmu-user doc/*.htm* \ - pubring.pgp +# (Before sbcl-0.6.10, this was run in the sbcl/ directory and created +# a tar file with no directory prefixes. Since sbcl-0.6.10, we've +# switched over to trying to do this the way everyone else does.) + +b=${1:?missing base directory name argument} +tar cf $b-binary.tar \ + $b/output/sbcl.core $b/src/runtime/sbcl \ + $b/BUGS $b/COPYING $b/CREDITS $b/INSTALL $b/NEWS $b/README \ + $b/install.sh \ + $b/doc/sbcl.1 $b/doc/cmucl/cmu-user $b/doc/*.htm* \ + $b/pubring.pgp diff --git a/source-distribution.sh b/source-distribution.sh new file mode 100755 index 0000000..748c082 --- /dev/null +++ b/source-distribution.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +# Create a source distribution. (You should run clean.sh first.) + +b=${1:?missing base directory name argument} +tar cf $b-source.tar $b diff --git a/version.lisp-expr b/version.lisp-expr index 5390757..833805f 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -15,4 +15,4 @@ ;;; versions, and a string like "0.6.5.12" is used for versions which ;;; aren't released but correspond only to CVS tags or snapshots. -"0.6.9.23" +"0.6.10"