1998-07-31 03:26:54 +08:00
|
|
|
#!/bin/sh
|
2005-10-22 23:35:28 +08:00
|
|
|
#
|
2007-02-15 06:25:02 +08:00
|
|
|
# Copyright by The HDF Group.
|
2005-10-22 23:35:28 +08:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
|
|
# terms governing use, modification, and redistribution, is contained in
|
2017-04-15 00:54:16 +08:00
|
|
|
# the COPYING file, which can be found at the root of the source code
|
2021-02-17 22:52:36 +08:00
|
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
2017-04-15 00:54:16 +08:00
|
|
|
# If you do not have access to either file, you may request a copy from
|
|
|
|
# help@hdfgroup.org.
|
2005-10-22 23:35:28 +08:00
|
|
|
#
|
1998-01-30 00:31:24 +08:00
|
|
|
|
2009-01-07 06:58:54 +08:00
|
|
|
# Make a release of hdf5.
|
1998-01-30 00:31:24 +08:00
|
|
|
|
2004-08-15 08:18:30 +08:00
|
|
|
# Function definitions
|
|
|
|
#
|
|
|
|
# Print Usage page
|
|
|
|
USAGE()
|
|
|
|
{
|
|
|
|
cat << EOF
|
2023-07-13 04:04:26 +08:00
|
|
|
Usage: $0 -d <dir> [-h] [--private] [--revision [--branch BRANCHNAME]] <methods> ...
|
2022-03-15 11:47:32 +08:00
|
|
|
-d DIR The name of the directory where the release(s) should be
|
2014-04-30 09:24:57 +08:00
|
|
|
placed.
|
2023-07-13 04:04:26 +08:00
|
|
|
--branch BRANCHNAME This is to get the correct version of the branch name from the
|
2016-12-17 07:04:56 +08:00
|
|
|
repository. BRANCHNAME for v1.8 should be hdf5_1_8.
|
2014-12-17 18:44:35 +08:00
|
|
|
-h print the help page.
|
2020-04-23 00:48:45 +08:00
|
|
|
--private Make a private release with today's date in version information.
|
2023-07-13 04:04:26 +08:00
|
|
|
--revision Make a private release with the code revision number in version information.
|
2020-04-23 00:48:45 +08:00
|
|
|
|
2014-04-30 09:24:57 +08:00
|
|
|
This must be run at the top level of the source directory.
|
2004-08-15 08:18:30 +08:00
|
|
|
The other command-line options are the names of the programs to use
|
|
|
|
for compressing the resulting tar archive (if none are given then
|
2015-04-01 01:40:43 +08:00
|
|
|
"tar" is assumed):
|
2004-08-15 08:18:30 +08:00
|
|
|
|
2020-08-02 01:26:22 +08:00
|
|
|
tar -- use tar and don't do any compressing.
|
|
|
|
gzip -- use gzip with "-9" and append ".gz" to the output name.
|
2019-02-01 04:22:52 +08:00
|
|
|
bzip2 -- use bzip2 with "-9" and append ".bz2" to the output name.
|
2020-08-02 01:26:22 +08:00
|
|
|
zip -- convert all text files to DOS style and form a zip file for Windows use.
|
2020-04-23 00:48:45 +08:00
|
|
|
cmake-tgz -- create a tar file using the gzip default level with a build-unix.sh
|
2017-02-22 05:18:17 +08:00
|
|
|
command file and all other CMake files needed to build HDF5 source
|
|
|
|
using CMake on unix machines.
|
2021-12-07 22:27:29 +08:00
|
|
|
cmake-zip -- convert all text files to DOS style and create a zip file including cmake
|
2020-04-23 00:48:45 +08:00
|
|
|
scripts and .bat files to build HDF5 source using CMake on Windows.
|
2006-02-16 04:37:00 +08:00
|
|
|
doc -- produce the latest doc tree in addition to the archive.
|
2004-08-15 08:18:30 +08:00
|
|
|
|
2023-09-23 03:25:08 +08:00
|
|
|
A sha256 checksum is produced for each archive created and stored in a corresponding sha256 file.
|
2015-04-01 01:40:43 +08:00
|
|
|
|
2004-08-15 08:18:30 +08:00
|
|
|
Examples:
|
|
|
|
|
2014-04-30 09:24:57 +08:00
|
|
|
$ bin/release -d /tmp
|
|
|
|
/tmp/hdf5-1.8.13-RELEASE.txt
|
|
|
|
/tmp/hdf5-1.8.13.tar
|
2023-09-23 03:25:08 +08:00
|
|
|
/tmp/hdf5-1.8.13.tar.sha256
|
2004-08-15 08:18:30 +08:00
|
|
|
|
2014-04-30 09:24:57 +08:00
|
|
|
$ bin/release -d /tmp gzip
|
|
|
|
/tmp/hdf5-1.8.13-RELEASE.txt
|
2023-09-23 03:25:08 +08:00
|
|
|
/tmp/hdf5-1.8.13.tar
|
|
|
|
/tmp/hdf5-1.8.13.tar.sha256
|
2014-04-30 09:24:57 +08:00
|
|
|
/tmp/hdf5-1.8.13.tar.gz
|
2023-09-23 03:25:08 +08:00
|
|
|
/tmp/hdf5-1.8.13.tar.gz.sha256
|
2004-08-15 08:18:30 +08:00
|
|
|
|
2015-04-01 01:40:43 +08:00
|
|
|
$ bin/release -d /tmp tar gzip zip
|
2014-04-30 09:24:57 +08:00
|
|
|
/tmp/hdf5-1.8.13-RELEASE.txt
|
|
|
|
/tmp/hdf5-1.8.13.tar
|
2023-09-23 03:25:08 +08:00
|
|
|
/tmp/hdf5-1.8.13.tar.sha256
|
2014-04-30 09:24:57 +08:00
|
|
|
/tmp/hdf5-1.8.13.tar.gz
|
2023-09-23 03:25:08 +08:00
|
|
|
/tmp/hdf5-1.8.13.tar.gz.sha256
|
|
|
|
/tmp/hdf5-1.8.13.zip
|
|
|
|
/tmp/hdf5-1.8.13.zip.sha256
|
|
|
|
|
|
|
|
The integrity of a downloaded file can be verified on Linux platforms by running
|
|
|
|
"sha256sum --check <filename>.sha256, which will display 'OK' if the calculated
|
|
|
|
checksum of <filename> matches the checksum in <filename>.sha256.
|
2004-08-15 08:18:30 +08:00
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-25 05:38:54 +08:00
|
|
|
# Function name: tar2zip
|
|
|
|
# Convert the release tarball to a Windows zipball.
|
|
|
|
#
|
|
|
|
# Steps:
|
2017-02-22 05:18:17 +08:00
|
|
|
# 1. untar the tarball in a temporary directory;
|
2014-04-25 05:38:54 +08:00
|
|
|
# Note: do this in a temporary directory to avoid changing
|
2017-02-22 05:18:17 +08:00
|
|
|
# the original source directory which may be around.
|
2014-04-25 05:38:54 +08:00
|
|
|
# 2. convert all its text files to DOS (LF-CR) style;
|
|
|
|
# 3. form a zip file which is usable by Windows users.
|
|
|
|
#
|
|
|
|
# Parameters:
|
|
|
|
# $1 version
|
|
|
|
# $2 release tarball
|
|
|
|
# $3 output zipball file name
|
|
|
|
#
|
|
|
|
# Returns 0 if successful; 1 otherwise
|
|
|
|
#
|
|
|
|
tar2zip()
|
|
|
|
{
|
|
|
|
if [ $# -ne 3 ]; then
|
2020-08-02 01:26:22 +08:00
|
|
|
echo "usage: tar2zip <tarfilename> <zipfilename>"
|
|
|
|
return 1
|
2014-04-25 05:38:54 +08:00
|
|
|
fi
|
2017-02-22 05:18:17 +08:00
|
|
|
ztmpdir=/tmp/ztmpdir$$
|
2014-04-30 09:24:57 +08:00
|
|
|
mkdir -p $ztmpdir
|
2014-04-25 05:38:54 +08:00
|
|
|
version=$1
|
|
|
|
tarfile=$2
|
|
|
|
zipfile=$3
|
|
|
|
|
2014-04-30 09:24:57 +08:00
|
|
|
# step 1: untar tarball in ztmpdir
|
|
|
|
(cd $ztmpdir; tar xf -) < $tarfile
|
2014-04-25 05:38:54 +08:00
|
|
|
# sanity check
|
2014-04-30 09:24:57 +08:00
|
|
|
if [ ! -d $ztmpdir/$version ]; then
|
2020-08-02 01:26:22 +08:00
|
|
|
echo "untar did not create $ztmpdir/$version source dir"
|
|
|
|
# cleanup
|
|
|
|
rm -rf $ztmpdir
|
|
|
|
return 1
|
2014-04-25 05:38:54 +08:00
|
|
|
fi
|
|
|
|
# step 2: convert text files
|
|
|
|
# There maybe a simpler way to do this.
|
|
|
|
# options used in unix2dos:
|
2020-04-23 00:48:45 +08:00
|
|
|
# -k Keep the date stamp
|
2014-04-25 05:38:54 +08:00
|
|
|
# -q quiet mode
|
|
|
|
# grep redirect output to /dev/null because -q or -s are not portable.
|
2014-04-30 09:24:57 +08:00
|
|
|
find $ztmpdir/$version | \
|
2020-08-02 01:26:22 +08:00
|
|
|
while read inf; do \
|
|
|
|
if file $inf | grep "$inf\: .*text" > /dev/null 2>&1 ; then \
|
|
|
|
unix2dos -q -k $inf; \
|
|
|
|
fi\
|
|
|
|
done
|
2014-04-25 05:38:54 +08:00
|
|
|
# step 3: make zipball
|
|
|
|
# -9 maximum compression
|
|
|
|
# -y Store symbolic links as such in the zip archive
|
|
|
|
# -r recursive
|
|
|
|
# -q quiet
|
2014-04-30 09:24:57 +08:00
|
|
|
(cd $ztmpdir; zip -9 -y -r -q $version.zip $version)
|
|
|
|
mv $ztmpdir/$version.zip $zipfile
|
2014-04-25 05:38:54 +08:00
|
|
|
|
|
|
|
# cleanup
|
2014-04-30 09:24:57 +08:00
|
|
|
rm -rf $ztmpdir
|
2014-04-25 05:38:54 +08:00
|
|
|
}
|
|
|
|
|
2017-02-22 05:18:17 +08:00
|
|
|
# Function name: tar2cmakezip
|
|
|
|
# Convert the release tarball to a Windows zipball with files to run CMake build.
|
|
|
|
#
|
|
|
|
# Steps:
|
|
|
|
# 1. untar the tarball in a temporary directory;
|
|
|
|
# Note: do this in a temporary directory to avoid changing
|
|
|
|
# the original source directory which may be around.
|
|
|
|
# 2. add build-unix.sh script.
|
2020-04-23 00:48:45 +08:00
|
|
|
# 3. add LIBAEC.tar.gz, ZLib.tar.gz and cmake files to top level directory.
|
2017-02-22 05:18:17 +08:00
|
|
|
# 4. create gzipped tar file with these contents:
|
|
|
|
# build-unix.sh script
|
|
|
|
# hdf5-<version> source code directory extracted from tar file
|
|
|
|
# CTestScript.cmake cmake file copied from <hdf5 source code>/config/cmake/scripts
|
|
|
|
# HDF5config.cmake cmake file copied from <hdf5 source code>/config/cmake/scripts
|
|
|
|
# HDF5options.cmake cmake file copied from <hdf5 source code>/config/cmake/scripts
|
2020-04-23 00:48:45 +08:00
|
|
|
# LIBAEC.tar.gz copied from /mnt/scr1/pre-release/hdf5/CMake
|
2017-02-22 05:18:17 +08:00
|
|
|
# ZLib.tar.gz copied from /mnt/scr1/pre-release/hdf5/CMake
|
|
|
|
|
|
|
|
|
|
|
|
# Parameters:
|
|
|
|
# $1 version
|
|
|
|
# $2 release tarball
|
|
|
|
# $3 output zipball file name
|
|
|
|
#
|
|
|
|
# Returns 0 if successful; 1 otherwise
|
|
|
|
#
|
|
|
|
# need function to create another temporary directory, extract the
|
2018-07-25 03:47:07 +08:00
|
|
|
# $tmpdir/$HDF5_VERS.tar into it, create build-VS*.bat files,
|
2020-04-23 00:48:45 +08:00
|
|
|
# add CTestScript.cmake, HDF5config.cmake, LIBAEC.tar.gz
|
2018-07-25 04:48:29 +08:00
|
|
|
# ZLib.tar.gz, HDF5 examples, and then zip it.
|
2017-02-22 05:18:17 +08:00
|
|
|
tar2cmakezip()
|
|
|
|
{
|
|
|
|
if [ $# -ne 3 ]; then
|
2020-08-02 01:26:22 +08:00
|
|
|
echo "usage: tar2cmakezip <tarfilename> <zipfilename>"
|
|
|
|
return 1
|
2017-02-22 05:18:17 +08:00
|
|
|
fi
|
|
|
|
cmziptmpdir=/tmp/cmziptmpdir$$
|
2018-07-25 03:47:07 +08:00
|
|
|
cmziptmpsubdir=$cmziptmpdir/CMake-$HDF5_VERS
|
|
|
|
mkdir -p $cmziptmpsubdir
|
2017-02-22 05:18:17 +08:00
|
|
|
version=$1
|
|
|
|
tarfile=$2
|
|
|
|
zipfile=$3
|
|
|
|
|
|
|
|
# step 1: untar tarball in cmgztmpdir
|
2018-07-25 03:47:07 +08:00
|
|
|
(cd $cmziptmpsubdir; tar xf -) < $tarfile
|
2017-02-22 05:18:17 +08:00
|
|
|
# sanity check
|
2018-07-25 03:47:07 +08:00
|
|
|
if [ ! -d $cmziptmpsubdir/$version ]; then
|
2020-08-02 01:26:22 +08:00
|
|
|
echo "untar did not create $cmziptmpsubdir/$version source dir"
|
|
|
|
# cleanup
|
|
|
|
rm -rf $cmziptmpdir
|
|
|
|
return 1
|
2017-02-22 05:18:17 +08:00
|
|
|
fi
|
|
|
|
|
2018-06-25 07:04:23 +08:00
|
|
|
# step 2: add batch file for building CMake on window
|
2018-07-25 03:47:07 +08:00
|
|
|
(cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2015 -C Release -V -O hdf5.log" > build-VS2015-32.bat; chmod 755 build-VS2015-32.bat)
|
|
|
|
(cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201564 -C Release -V -O hdf5.log" > build-VS2015-64.bat; chmod 755 build-VS2015-64.bat)
|
|
|
|
(cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2017 -C Release -V -O hdf5.log" > build-VS2017-32.bat; chmod 755 build-VS2017-32.bat)
|
2018-07-25 04:48:29 +08:00
|
|
|
(cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201764 -C Release -V -O hdf5.log" > build-VS2017-64.bat; chmod 755 build-VS2017-64.bat)
|
2021-07-15 00:12:01 +08:00
|
|
|
(cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2019 -C Release -V -O hdf5.log" > build-VS2019-32.bat; chmod 755 build-VS2019-32.bat)
|
|
|
|
(cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS201964 -C Release -V -O hdf5.log" > build-VS2019-64.bat; chmod 755 build-VS2019-64.bat)
|
2023-04-04 05:38:10 +08:00
|
|
|
(cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS2022 -C Release -V -O hdf5.log" > build-VS2022-32.bat; chmod 755 build-VS2022-32.bat)
|
|
|
|
(cd $cmziptmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=VS202264 -C Release -V -O hdf5.log" > build-VS2022-64.bat; chmod 755 build-VS2022-64.bat)
|
2017-02-22 05:18:17 +08:00
|
|
|
|
2020-04-23 00:48:45 +08:00
|
|
|
# step 3: add LIBAEC.tar.gz, ZLib.tar.gz and cmake files
|
|
|
|
cp /mnt/scr1/pre-release/hdf5/CMake/LIBAEC.tar.gz $cmziptmpsubdir
|
2018-07-25 03:47:07 +08:00
|
|
|
cp /mnt/scr1/pre-release/hdf5/CMake/ZLib.tar.gz $cmziptmpsubdir
|
2023-09-23 03:25:08 +08:00
|
|
|
cp /mnt/scr1/pre-release/hdf5/CMake/hdf5-examples-master.zip $cmziptmpsubdir
|
2021-07-15 00:12:01 +08:00
|
|
|
cp /mnt/scr1/pre-release/hdf5/CMake/hdf5_plugins-master.zip $cmziptmpsubdir
|
2018-07-25 03:47:07 +08:00
|
|
|
cp $cmziptmpsubdir/$version/config/cmake/scripts/CTestScript.cmake $cmziptmpsubdir
|
|
|
|
cp $cmziptmpsubdir/$version/config/cmake/scripts/HDF5config.cmake $cmziptmpsubdir
|
|
|
|
cp $cmziptmpsubdir/$version/config/cmake/scripts/HDF5options.cmake $cmziptmpsubdir
|
2017-02-22 05:18:17 +08:00
|
|
|
|
|
|
|
# step 4: convert text files
|
|
|
|
# There maybe a simpler way to do this.
|
|
|
|
# options used in unix2dos:
|
2020-04-23 00:48:45 +08:00
|
|
|
# -k Keep the date stamp
|
2017-02-22 05:18:17 +08:00
|
|
|
# -q quiet mode
|
|
|
|
# grep redirect output to /dev/null because -q or -s are not portable.
|
2018-07-25 03:47:07 +08:00
|
|
|
find $cmziptmpsubdir/$version | \
|
2020-08-02 01:26:22 +08:00
|
|
|
while read inf; do \
|
|
|
|
if file $inf | grep "$inf\: .*text" > /dev/null 2>&1 ; then \
|
|
|
|
unix2dos -q -k $inf; \
|
|
|
|
fi\
|
|
|
|
done
|
2018-07-25 03:47:07 +08:00
|
|
|
|
2017-02-22 05:18:17 +08:00
|
|
|
# step 3: make zipball
|
|
|
|
# -9 maximum compression
|
|
|
|
# -y Store symbolic links as such in the zip archive
|
|
|
|
# -r recursive
|
|
|
|
# -q quiet
|
|
|
|
(cd $cmziptmpdir; zip -9 -y -r -q CMake-$version.zip *)
|
|
|
|
mv $cmziptmpdir/CMake-$version.zip $zipfile
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rm -rf $cmziptmpdir
|
|
|
|
}
|
|
|
|
|
|
|
|
# Function name: tar2cmaketgz
|
2019-02-01 04:22:52 +08:00
|
|
|
# Convert the release tarball to a gzipped tar file with files to run CMake build.
|
2017-02-22 05:18:17 +08:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# Steps:
|
|
|
|
# 1. untar the tarball in a temporary directory;
|
|
|
|
# Note: do this in a temporary directory to avoid changing
|
|
|
|
# the original source directory which may be around.
|
|
|
|
# 2. add build-unix.sh script.
|
2020-04-23 00:48:45 +08:00
|
|
|
# 3. add LIBAEC.tar.gz, ZLib.tar.gz and cmake files to top level directory.
|
2017-02-22 05:18:17 +08:00
|
|
|
# 4. create gzipped tar file with these contents:
|
|
|
|
# build-unix.sh script
|
|
|
|
# hdf5-<version> source code directory extracted from tar file
|
|
|
|
# CTestScript.cmake cmake file copied from <hdf5 source code>/config/cmake/scripts
|
|
|
|
# HDF5config.cmake cmake file copied from <hdf5 source code>/config/cmake/scripts
|
|
|
|
# HDF5options.cmake cmake file copied from <hdf5 source code>/config/cmake/scripts
|
2020-04-23 00:48:45 +08:00
|
|
|
# LIBAEC.tar.gz copied from /mnt/scr1/pre-release/hdf5/CMake
|
2017-02-22 05:18:17 +08:00
|
|
|
# ZLib.tar.gz copied from /mnt/scr1/pre-release/hdf5/CMake
|
|
|
|
|
|
|
|
|
|
|
|
# Parameters:
|
|
|
|
# $1 version
|
|
|
|
# $2 release tarball
|
|
|
|
# $3 output zipball file name
|
|
|
|
#
|
|
|
|
# Returns 0 if successful; 1 otherwise
|
|
|
|
#
|
|
|
|
# need function to create another temporary directory, extract the
|
2018-07-25 03:47:07 +08:00
|
|
|
# $tmpdir/$HDF5_VERS.tar into it, create build-unix.sh,
|
2020-04-23 00:48:45 +08:00
|
|
|
# add CTestScript.cmake, HDF5config.cmake, LIBAEC.tar.gz
|
2018-07-25 04:48:29 +08:00
|
|
|
# ZLib.tar.gz, HDF5 examples, and then tar.gz it.
|
2017-02-22 05:18:17 +08:00
|
|
|
tar2cmaketgz()
|
|
|
|
{
|
|
|
|
if [ $# -ne 3 ]; then
|
2020-08-02 01:26:22 +08:00
|
|
|
echo "usage: tar2cmaketgz <tarfilename> <tgzfilename>"
|
|
|
|
return 1
|
2017-02-22 05:18:17 +08:00
|
|
|
fi
|
|
|
|
cmgztmpdir=/tmp/cmgztmpdir$$
|
2018-07-25 03:47:07 +08:00
|
|
|
cmgztmpsubdir=$cmgztmpdir/CMake-$HDF5_VERS
|
|
|
|
mkdir -p $cmgztmpsubdir
|
2017-02-22 05:18:17 +08:00
|
|
|
version=$1
|
|
|
|
tarfile=$2
|
|
|
|
tgzfile=$3
|
|
|
|
|
|
|
|
# step 1: untar tarball in cmgztmpdir
|
2018-07-25 03:47:07 +08:00
|
|
|
(cd $cmgztmpsubdir; tar xf -) < $tarfile
|
2017-02-22 05:18:17 +08:00
|
|
|
# sanity check
|
2018-07-25 03:47:07 +08:00
|
|
|
if [ ! -d $cmgztmpsubdir/$version ]; then
|
2020-08-02 01:26:22 +08:00
|
|
|
echo "untar did not create $cmgztmpsubdir/$version source dir"
|
|
|
|
# cleanup
|
|
|
|
rm -rf $cmgztmpdir
|
|
|
|
return 1
|
2017-02-22 05:18:17 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# step 2: add build-unix.sh script
|
2018-07-25 03:47:07 +08:00
|
|
|
(cd $cmgztmpsubdir; echo "ctest -S HDF5config.cmake,BUILD_GENERATOR=Unix -C Release -V -O hdf5.log" > build-unix.sh; chmod 755 build-unix.sh)
|
2017-02-22 05:18:17 +08:00
|
|
|
|
2020-04-23 00:48:45 +08:00
|
|
|
# step 3: add LIBAEC.tar.gz, ZLib.tar.gz and cmake files
|
|
|
|
cp /mnt/scr1/pre-release/hdf5/CMake/LIBAEC.tar.gz $cmgztmpsubdir
|
2018-07-25 03:47:07 +08:00
|
|
|
cp /mnt/scr1/pre-release/hdf5/CMake/ZLib.tar.gz $cmgztmpsubdir
|
2023-09-23 03:25:08 +08:00
|
|
|
cp /mnt/scr1/pre-release/hdf5/CMake/hdf5-examples-master.tar.gz $cmgztmpsubdir
|
2021-07-15 00:12:01 +08:00
|
|
|
cp /mnt/scr1/pre-release/hdf5/CMake/hdf5_plugins-master.tar.gz $cmgztmpsubdir
|
2018-07-25 03:47:07 +08:00
|
|
|
cp $cmgztmpsubdir/$version/config/cmake/scripts/CTestScript.cmake $cmgztmpsubdir
|
|
|
|
cp $cmgztmpsubdir/$version/config/cmake/scripts/HDF5config.cmake $cmgztmpsubdir
|
|
|
|
cp $cmgztmpsubdir/$version/config/cmake/scripts/HDF5options.cmake $cmgztmpsubdir
|
2020-04-23 00:48:45 +08:00
|
|
|
tar czf $DEST/CMake-$HDF5_VERS.tar.gz -C $cmgztmpdir . || exit 1
|
|
|
|
|
2019-02-01 04:22:52 +08:00
|
|
|
# cleanup
|
|
|
|
rm -rf $cmgztmpdir
|
|
|
|
}
|
|
|
|
|
2017-02-22 05:18:17 +08:00
|
|
|
|
2006-02-07 11:49:32 +08:00
|
|
|
# This command must be run at the top level of the hdf5 source directory.
|
|
|
|
# Verify this requirement.
|
2016-10-01 22:47:31 +08:00
|
|
|
if [ ! \( -f configure.ac -a -f bin/release \) ]; then
|
2006-02-07 11:49:32 +08:00
|
|
|
echo "$0 must be run at the top level of the hdf5 source directory"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
1998-07-31 03:26:54 +08:00
|
|
|
# Defaults
|
|
|
|
DEST=releases
|
1999-01-07 19:37:42 +08:00
|
|
|
VERS=`perl bin/h5vers`
|
2004-08-15 08:18:30 +08:00
|
|
|
VERS_OLD=
|
1998-07-31 03:26:54 +08:00
|
|
|
test "$VERS" || exit 1
|
|
|
|
verbose=yes
|
2011-06-16 06:58:13 +08:00
|
|
|
release_date=`date +%F`
|
2004-08-15 08:18:30 +08:00
|
|
|
today=`date +%Y%m%d`
|
|
|
|
pmode='no'
|
2023-07-13 04:04:26 +08:00
|
|
|
revmode='no'
|
2020-08-02 01:26:22 +08:00
|
|
|
tmpdir="../#release_tmp.$$" # tmp work directory
|
2006-02-16 04:37:00 +08:00
|
|
|
CPPLUS_RM_NAME=cpplus_RM
|
2016-12-24 03:54:05 +08:00
|
|
|
MAINT_MODE_ENABLED=""
|
|
|
|
|
|
|
|
# If maintainer mode is enabled in configure, it should be disabled for release,
|
|
|
|
# and enabled again after release files have been created. If already disabled
|
|
|
|
# there's no need to do either.
|
|
|
|
MAINT_MODE_ENABLED=`grep ^AM_MAINTAINER_MODE ./configure.ac | grep enable`
|
|
|
|
if [ "${MAINT_MODE_ENABLED}" != "" ]; then
|
|
|
|
bin/switch_maint_mode -disable ./configure.ac
|
|
|
|
fi
|
2004-08-15 08:18:30 +08:00
|
|
|
|
|
|
|
# Restore previous Version information
|
|
|
|
RESTORE_VERSION()
|
|
|
|
{
|
|
|
|
if [ X-${VERS_OLD} != X- ]; then
|
2020-08-02 01:26:22 +08:00
|
|
|
echo restoring version information back to $VERS_OLD
|
|
|
|
rm -f config/lt_vers.am
|
|
|
|
cp $tmpdir/lt_vers.am config/lt_vers.am
|
|
|
|
bin/h5vers -s $VERS_OLD
|
|
|
|
VERS_OLD=
|
2004-08-15 08:18:30 +08:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
1998-07-31 03:26:54 +08:00
|
|
|
|
|
|
|
# Command-line arguments
|
1999-06-02 21:59:35 +08:00
|
|
|
while [ -n "$1" ]; do
|
|
|
|
arg=$1
|
1998-07-31 03:26:54 +08:00
|
|
|
shift
|
1999-06-02 21:59:35 +08:00
|
|
|
case "$arg" in
|
2020-08-02 01:26:22 +08:00
|
|
|
-d)
|
|
|
|
DEST=$1
|
|
|
|
shift
|
|
|
|
;;
|
|
|
|
-h)
|
|
|
|
USAGE
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
--private)
|
|
|
|
pmode=yes
|
|
|
|
;;
|
2023-07-13 04:04:26 +08:00
|
|
|
--revision)
|
|
|
|
revmode=yes
|
|
|
|
;;
|
|
|
|
--branch)
|
|
|
|
BRANCHNAME=$1
|
2016-12-17 07:04:56 +08:00
|
|
|
shift
|
|
|
|
;;
|
2020-08-02 01:26:22 +08:00
|
|
|
-*)
|
|
|
|
echo "Unknown switch: $arg" 1>&2
|
|
|
|
USAGE
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
methods="$methods $arg"
|
|
|
|
;;
|
1999-06-02 21:59:35 +08:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2015-04-01 01:40:43 +08:00
|
|
|
# Default method is tar
|
1998-07-31 03:26:54 +08:00
|
|
|
if [ "X$methods" = "X" ]; then
|
2015-04-01 01:40:43 +08:00
|
|
|
methods="tar"
|
1998-07-31 03:26:54 +08:00
|
|
|
fi
|
1999-06-02 21:59:35 +08:00
|
|
|
|
2021-12-07 22:27:29 +08:00
|
|
|
# Create the temporary work directory.
|
2006-01-05 01:38:30 +08:00
|
|
|
if mkdir $tmpdir; then
|
|
|
|
echo "temporary work directory for release. "\
|
2006-02-21 00:38:05 +08:00
|
|
|
"Can be deleted after release completes." > $tmpdir/README
|
2006-01-05 01:38:30 +08:00
|
|
|
else
|
|
|
|
echo "Failed to mkdir tmpdir($tmpdir)"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2004-08-15 08:18:30 +08:00
|
|
|
# setup restoration in case of abort.
|
|
|
|
trap RESTORE_VERSION 0
|
|
|
|
|
|
|
|
if [ X$pmode = Xyes ]; then
|
|
|
|
VERS_OLD=$VERS
|
2006-02-02 06:26:14 +08:00
|
|
|
# Copy old version of config/lt_vers.am, since it's hard to
|
|
|
|
# "undo" changes to it.
|
|
|
|
cp config/lt_vers.am $tmpdir
|
2004-08-15 08:18:30 +08:00
|
|
|
# Set version information to m.n.r-of$today.
|
|
|
|
# (h5vers does not correctly handle just m.n.r-$today.)
|
|
|
|
VERS=`echo $VERS | sed -e s/-.*//`-of$today
|
|
|
|
echo Private release of $VERS
|
|
|
|
bin/h5vers -s $VERS
|
|
|
|
fi
|
1999-06-02 21:59:35 +08:00
|
|
|
|
2023-07-13 04:04:26 +08:00
|
|
|
if [ X$revmode = Xyes ]; then
|
|
|
|
VERS_OLD=$VERS
|
|
|
|
echo "Save old version $VERS_OLD for restoration later."
|
|
|
|
# Copy old version of config/lt_vers.am, since it's hard to
|
|
|
|
# "undo" changes to it.
|
|
|
|
cp config/lt_vers.am $tmpdir
|
|
|
|
if [ "${BRANCHNAME}" = "" ]; then
|
|
|
|
BRANCHNAME=`git symbolic-ref -q --short HEAD`
|
|
|
|
fi
|
|
|
|
revision=`git rev-parse --short HEAD`
|
|
|
|
# Set version information to m.n.r-r$revision.
|
|
|
|
# (h5vers does not correctly handle just m.n.r-$today.)
|
|
|
|
VERS=`echo $VERS | sed -e s/-.*//`-$revision
|
|
|
|
echo Private release of $VERS
|
|
|
|
HDF5_VERS=hdf5-$BRANCHNAME-$revision
|
|
|
|
echo file base of $HDF5_VERS
|
|
|
|
bin/h5vers -s $VERS
|
|
|
|
# use a generic directory name for revision releases
|
|
|
|
HDF5_IN_VERS=hdfsrc
|
|
|
|
else
|
|
|
|
# Store hdf5-$VERS ("hdf5-1.7.51", e.g.) to a variable to avoid typos
|
|
|
|
HDF5_VERS=hdf5-$VERS
|
|
|
|
# directory name matches tar file name for non-revision releases
|
|
|
|
HDF5_IN_VERS=$HDF5_VERS
|
|
|
|
fi
|
2005-09-08 04:20:37 +08:00
|
|
|
|
|
|
|
test "$verbose" && echo "Releasing $HDF5_VERS to $DEST" 1>&2
|
1998-07-31 03:26:54 +08:00
|
|
|
if [ ! -d $DEST ]; then
|
|
|
|
echo " Destination directory $DEST does not exist" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2022-03-15 11:47:32 +08:00
|
|
|
# Create a symlink to the source so files in the tarball have the prefix
|
|
|
|
# we want (gnu's --transform isn't portable)
|
2023-07-13 04:04:26 +08:00
|
|
|
ln -s `pwd` $tmpdir/$HDF5_IN_VERS || exit 1
|
2022-03-15 11:47:32 +08:00
|
|
|
|
2009-10-06 08:08:03 +08:00
|
|
|
# Save a backup copy of Makefile if exists.
|
|
|
|
test -f Makefile && mv Makefile $tmpdir/Makefile.x
|
1998-07-31 03:26:54 +08:00
|
|
|
cp -p Makefile.dist Makefile
|
2001-05-10 23:02:00 +08:00
|
|
|
|
2022-01-15 07:28:04 +08:00
|
|
|
# Update README.md and release_docs/RELEASE.txt with release information in
|
2009-01-07 06:58:54 +08:00
|
|
|
# line 1.
|
2022-01-15 07:28:04 +08:00
|
|
|
for f in README.md release_docs/RELEASE.txt; do
|
2011-06-16 06:58:13 +08:00
|
|
|
echo "HDF5 version $VERS released on $release_date" >$f.x
|
2009-01-07 06:58:54 +08:00
|
|
|
sed -e 1d $f >>$f.x
|
2001-07-06 13:43:38 +08:00
|
|
|
mv $f.x $f
|
|
|
|
# Make sure new files are of the right access mode
|
|
|
|
chmod 644 $f
|
|
|
|
done
|
|
|
|
|
2001-05-10 23:02:00 +08:00
|
|
|
# Create the tar file
|
1998-07-31 03:26:54 +08:00
|
|
|
test "$verbose" && echo " Running tar..." 1>&2
|
2024-02-13 22:42:39 +08:00
|
|
|
(cd "$tmpdir" && exec tar -ch --exclude-vcs --exclude=*autom4te* --exclude=.clang-format --exclude=.codespellrc --exclude=.devcontainer --exclude=.git* --exclude=.h5chkright.ini -f "$HDF5_VERS.tar" "./$HDF5_IN_VERS" || exit 1 )
|
1998-07-31 03:26:54 +08:00
|
|
|
|
|
|
|
# Compress
|
2023-09-23 03:25:08 +08:00
|
|
|
#SHA256=$HDF5_VERS.sha256
|
2022-12-14 22:58:20 +08:00
|
|
|
cp /dev/null $DEST/$SHA256
|
1998-07-31 03:26:54 +08:00
|
|
|
for comp in $methods; do
|
|
|
|
case $comp in
|
2020-08-02 01:26:22 +08:00
|
|
|
tar)
|
|
|
|
cp -p $tmpdir/$HDF5_VERS.tar $DEST/$HDF5_VERS.tar
|
2023-09-23 03:25:08 +08:00
|
|
|
(cd $DEST; sha256sum $HDF5_VERS.tar > $HDF5_VERS.tar.sha256)
|
2020-08-02 01:26:22 +08:00
|
|
|
;;
|
|
|
|
gzip)
|
|
|
|
test "$verbose" && echo " Running gzip..." 1>&2
|
|
|
|
gzip -9 <$tmpdir/$HDF5_VERS.tar >$DEST/$HDF5_VERS.tar.gz
|
2023-09-23 03:25:08 +08:00
|
|
|
(cd $DEST; sha256sum $HDF5_VERS.tar.gz > $HDF5_VERS.tar.gz.sha256)
|
2020-08-02 01:26:22 +08:00
|
|
|
;;
|
2017-02-22 05:18:17 +08:00
|
|
|
cmake-tgz)
|
2020-08-02 01:26:22 +08:00
|
|
|
test "$verbose" && echo " Creating CMake tar.gz file..." 1>&2
|
|
|
|
tar2cmaketgz $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/CMake-$HDF5_VERS.tar.gz 1>&2
|
2023-09-23 03:25:08 +08:00
|
|
|
(cd $DEST; sha256sum CMake-$HDF5_VERS.tar.gz > CMake-$HDF5_VERS.tar.gz.sha256)
|
2020-08-02 01:26:22 +08:00
|
|
|
;;
|
|
|
|
bzip2)
|
|
|
|
test "$verbose" && echo " Running bzip2..." 1>&2
|
|
|
|
bzip2 -9 <$tmpdir/$HDF5_VERS.tar >$DEST/$HDF5_VERS.tar.bz2
|
2023-09-23 03:25:08 +08:00
|
|
|
(cd $DEST; sha256sum $HDF5_VERS.tar.bz2 > $HDF5_VERS.tar.bz2.sha256)
|
2020-08-02 01:26:22 +08:00
|
|
|
;;
|
|
|
|
zip)
|
|
|
|
test "$verbose" && echo " Creating zip ball..." 1>&2
|
2023-07-14 01:17:52 +08:00
|
|
|
tar2zip $HDF5_IN_VERS $tmpdir/$HDF5_VERS.tar $DEST/$HDF5_VERS.zip 1>&2
|
2023-09-23 03:25:08 +08:00
|
|
|
(cd $DEST; sha256sum $HDF5_VERS.zip > $HDF5_VERS.zip.sha256)
|
2019-02-02 00:21:53 +08:00
|
|
|
;;
|
2017-02-22 05:18:17 +08:00
|
|
|
cmake-zip)
|
|
|
|
test "$verbose" && echo " Creating CMake-zip ball..." 1>&2
|
|
|
|
tar2cmakezip $HDF5_VERS $tmpdir/$HDF5_VERS.tar $DEST/CMake-$HDF5_VERS.zip 1>&2
|
2023-09-23 03:25:08 +08:00
|
|
|
(cd $DEST; sha256sum CMake-$HDF5_VERS.zip > CMake-$HDF5_VERS.zip.sha256)
|
2017-02-22 05:18:17 +08:00
|
|
|
;;
|
2020-08-02 01:26:22 +08:00
|
|
|
doc)
|
2016-12-17 07:04:56 +08:00
|
|
|
if [ "${DOCVERSION}" = "" ]; then
|
|
|
|
DOCVERSION=master
|
|
|
|
fi
|
2020-08-02 01:26:22 +08:00
|
|
|
test "$verbose" && echo " Creating docs..." 1>&2
|
|
|
|
# Check out docs from git repo
|
|
|
|
(cd $tmpdir; git clone -q $DOC_URL ${DOCVERSION} > /dev/null) || exit 1
|
2017-02-22 05:18:17 +08:00
|
|
|
# Create doxygen C++ RM
|
2020-08-02 01:26:22 +08:00
|
|
|
(cd c++/src && doxygen cpp_doc_config > /dev/null ) || exit 1
|
|
|
|
# Replace version of C++ RM with just-created version
|
|
|
|
rm -rf $tmpdir/${DOCVERSION}/html/$CPPLUS_RM_NAME || exit 1
|
|
|
|
mv c++/src/$CPPLUS_RM_NAME $tmpdir/${DOCVERSION}/html/$CPPLUS_RM_NAME || exit 1
|
2017-02-22 05:18:17 +08:00
|
|
|
# Compress the docs and move them to the release area
|
2020-08-02 01:26:22 +08:00
|
|
|
mv $tmpdir/${DOCVERSION} $tmpdir/${HDF5_VERS}_docs || exit 1
|
|
|
|
(cd $tmpdir && tar cf ${HDF5_VERS}_docs.tar ${HDF5_VERS}_docs) || exit 1
|
|
|
|
mv $tmpdir/${HDF5_VERS}_docs.tar $DEST || exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "***Error*** Unknown method $comp"
|
|
|
|
exit 1
|
|
|
|
;;
|
1998-07-31 03:26:54 +08:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2016-12-24 03:54:05 +08:00
|
|
|
# If AM_MAINTAINER_MODE was enabled before running this script
|
|
|
|
# restore it to "enabled".
|
|
|
|
if [ "${MAINT_MODE_ENABLED}" != "" ]; then
|
|
|
|
bin/switch_maint_mode -enable ./configure.ac
|
|
|
|
fi
|
|
|
|
|
2001-07-06 13:43:38 +08:00
|
|
|
# Copy the RELEASE.txt to the release area.
|
2005-09-08 04:20:37 +08:00
|
|
|
cp release_docs/RELEASE.txt $DEST/$HDF5_VERS-RELEASE.txt
|
2001-05-10 23:02:00 +08:00
|
|
|
|
2009-10-06 08:08:03 +08:00
|
|
|
# Remove distributed Makefile and restore previous Makefile if existed.
|
|
|
|
rm -f Makefile
|
2006-01-05 01:38:30 +08:00
|
|
|
test -f $tmpdir/Makefile.x && mv $tmpdir/Makefile.x Makefile
|
|
|
|
|
2004-08-15 08:18:30 +08:00
|
|
|
# Restore OLD version information, then no need for trap.
|
2023-07-13 04:04:26 +08:00
|
|
|
if [ X$pmode = Xyes ] || [ X$revmode = Xyes ]; then
|
|
|
|
echo "Restore the original version $VERS_OLD"
|
2004-08-15 08:18:30 +08:00
|
|
|
RESTORE_VERSION
|
|
|
|
trap 0
|
|
|
|
fi
|
|
|
|
|
2006-02-02 06:26:14 +08:00
|
|
|
# Remove temporary things
|
2006-02-16 04:30:51 +08:00
|
|
|
rm -rf $tmpdir
|
2006-02-02 06:26:14 +08:00
|
|
|
|
2022-03-15 11:47:32 +08:00
|
|
|
echo "DONE"
|
|
|
|
|
1998-07-31 03:26:54 +08:00
|
|
|
exit 0
|