0.6.10:
authorWilliam Harold Newman <william.newman@airmail.net>
Mon, 15 Jan 2001 02:28:27 +0000 (02:28 +0000)
committerWilliam Harold Newman <william.newman@airmail.net>
Mon, 15 Jan 2001 02:28:27 +0000 (02:28 +0000)
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 ./

binary-distribution.sh
source-distribution.sh [new file with mode: 0755]
version.lisp-expr

index 9794f04..1867bd9 100755 (executable)
@@ -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 (executable)
index 0000000..748c082
--- /dev/null
@@ -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 
index 5390757..833805f 100644 (file)
@@ -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"