summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2009-01-06 22:58:33 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2009-01-06 22:58:33 (GMT)
commit5a5d4ce3b8e9376d3fa5feb3a02d11696b8dbd11 (patch)
treeda0c84c650fb33521ca29cac240eff6d74f2baac
parente531e9a2300d84ce30720181f1b6af7c77360e73 (diff)
downloadhdf5-5a5d4ce3b8e9376d3fa5feb3a02d11696b8dbd11.zip
hdf5-5a5d4ce3b8e9376d3fa5feb3a02d11696b8dbd11.tar.gz
hdf5-5a5d4ce3b8e9376d3fa5feb3a02d11696b8dbd11.tar.bz2
[svn-r16269] Bug fix.
The Tail command in jam (a newer linux) does not accept the +2l option. It ended up wiping most of the release_doc/RELEASE.txt file contents. Replaced the "tail +2l" by "sed -e 1d". Tested: Tested in Jam to verify it functions properly again.
-rwxr-xr-xbin/release47
1 files changed, 13 insertions, 34 deletions
diff --git a/bin/release b/bin/release
index 9a43461..11755ff 100755
--- a/bin/release
+++ b/bin/release
@@ -14,38 +14,10 @@
# access to either file, you may request a copy from help@hdfgroup.org.
#
-# Make a release of hdf5. The command-line switches are:
+# Make a release of hdf5.
#
-# -d DIR The name of the directory where the releas(es) should be
-# placed. By default, the directory is ./releases
-#
-# --nocheck Ignore errors in MANIFEST file.
-#
-# The other command-line options are the names of the programs to use
-# for compressing the resulting tar archive (if none are given then
-# `tar md5' is assumed):
-#
-# tar -- use tar and don't do any compressing.
-# compress -- use compress and append `.Z' to the output name.
-# gzip -- use gzip with `-9' and append `.gz' to the output name.
-# bzip2 -- use bzip2 with `-9' and append `.bz2' to the output name.
-# md5 -- produce a md5 checksum in addition to the archive.
-#
-# Examples:
-#
-# $ release
-# releases/hdf5-1.0.38.tar
-# releases/hdf5-1.0.38.tar.md5
-#
-# $ release gzip
-# releases/hdf5-1.0.38.tar.gz
-#
-# $ release -d /tmp tar compress gzip bzip2 md5
-# /tmp/hdf5-1.0.38.tar
-# /tmp/hdf5-1.0.38.tar.Z
-# /tmp/hdf5-1.0.38.tar.gz
-# /tmp/hdf5-1.0.38.tar.bz2
-# /tmp/hdf5-1.0.38.tar.md5
+# Programmer: Robb Matzke
+# Creation date: on or before 1998-01-29.
#
# Modifications
# Robb Matzke, 1999-07-16
@@ -55,6 +27,12 @@
# Albert Cheng, 1999-10-26
# Moved the MANIFEST checking to a separate command file so that
# it can be invoked individually.
+#
+# Albert Cheng, 2004-08-14
+# Added the --private option.
+#
+# James Laird, 2005-09-07
+# Added the md5 method.
# Function definitions
#
@@ -167,7 +145,7 @@ fi
# Create the temporay work directory.
if mkdir $tmpdir; then
echo "temporary work directory for release. "\
- "Can be deleted after release completes." > $tmpdir/READEME
+ "Can be deleted after release completes." > $tmpdir/README
else
echo "Failed to mkdir tmpdir($tmpdir)"
exit 1
@@ -213,10 +191,11 @@ ln -s `pwd` $tmpdir/$HDF5_VERS || exit 1
mv Makefile $tmpdir/Makefile.x 2>/dev/null #might fail
cp -p Makefile.dist Makefile
-# Update README.txt and release_docs/RELEASE.txt with release information.
+# Update README.txt and release_docs/RELEASE.txt with release information in
+# line 1.
for f in README.txt release_docs/RELEASE.txt; do
echo "HDF5 version $VERS released on `date`" >$f.x
- tail +2l $f >>$f.x
+ sed -e 1d $f >>$f.x
mv $f.x $f
# Make sure new files are of the right access mode
chmod 644 $f