diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-09-01 16:28:05 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-09-01 16:28:05 (GMT) |
commit | 77525ea95d9a63e6a006fed055d964568eb9df93 (patch) | |
tree | b04d5d861a45b20739affbc35a9a59b2c2c15330 /bin | |
parent | d2cbacb94588f1a27e08e1b12b65c25d81d842d3 (diff) | |
download | hdf5-77525ea95d9a63e6a006fed055d964568eb9df93.zip hdf5-77525ea95d9a63e6a006fed055d964568eb9df93.tar.gz hdf5-77525ea95d9a63e6a006fed055d964568eb9df93.tar.bz2 |
[svn-r27655] Add .pl extension to Perl scripts in bin (part of HDFFV-9513)
This makes things easier on Windows, where we will have to run
Perl scripts as a part of CMake.
Tested on: jam
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/bbrelease | 8 | ||||
-rwxr-xr-x | bin/checkapi.pl (renamed from bin/checkapi) | 2 | ||||
-rwxr-xr-x | bin/checkposix.pl (renamed from bin/checkposix) | 0 | ||||
-rwxr-xr-x | bin/cmakehdf5 | 2 | ||||
-rwxr-xr-x | bin/debug-ohdr.pl (renamed from bin/debug-ohdr) | 0 | ||||
-rwxr-xr-x | bin/dependencies.pl (renamed from bin/dependencies) | 0 | ||||
-rwxr-xr-x | bin/distdep.pl (renamed from bin/distdep) | 0 | ||||
-rwxr-xr-x | bin/errors.pl (renamed from bin/errors) | 0 | ||||
-rwxr-xr-x | bin/h5vers.pl (renamed from bin/h5vers) | 2 | ||||
-rwxr-xr-x | bin/iostats.pl (renamed from bin/iostats) | 0 | ||||
-rwxr-xr-x | bin/make_err.pl (renamed from bin/make_err) | 0 | ||||
-rwxr-xr-x | bin/make_overflow.pl (renamed from bin/make_overflow) | 0 | ||||
-rwxr-xr-x | bin/make_vers.pl (renamed from bin/make_vers) | 0 | ||||
-rwxr-xr-x | bin/release | 6 | ||||
-rwxr-xr-x | bin/snapshot | 4 | ||||
-rwxr-xr-x | bin/trace.pl (renamed from bin/trace) | 0 |
16 files changed, 12 insertions, 12 deletions
diff --git a/bin/bbrelease b/bin/bbrelease index 1e3b88d..a4f7ee0 100755 --- a/bin/bbrelease +++ b/bin/bbrelease @@ -163,7 +163,7 @@ fi # Defaults DEST=releases -VERS=`perl bin/h5vers` +VERS=`perl bin/h5vers.pl` VERS_OLD= test "$VERS" || exit 1 verbose=yes @@ -183,7 +183,7 @@ RESTORE_VERSION() 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 + bin/h5vers.pl -s $VERS_OLD VERS_OLD= fi } @@ -252,7 +252,7 @@ if [ X$pmode = Xyes ]; then # (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 + bin/h5vers.pl -s $VERS fi if [ X$revmode = Xyes ]; then @@ -266,7 +266,7 @@ if [ X$revmode = Xyes ]; then # (h5vers does not correctly handle just m.n.r-$today.) VERS=`echo $VERS | sed -e s/-.*//`-r$revision echo Private release of $VERS - bin/h5vers -s $VERS + bin/h5vers.pl -s $VERS HDF5_VERS=hdf5-$branch-r$revision # use a generic directory name for revision releases HDF5_IN_VERS=hdfsrc diff --git a/bin/checkapi b/bin/checkapi.pl index b4a08e8..cc5b376 100755 --- a/bin/checkapi +++ b/bin/checkapi.pl @@ -16,7 +16,7 @@ require 5.003; # Purpose: insures that API functions aren't called internally. -# Usage: checkapi H5*.c +# Usage: checkapi.pl H5*.c my $filename = ""; my $lastname = ""; diff --git a/bin/checkposix b/bin/checkposix.pl index db47ff3..db47ff3 100755 --- a/bin/checkposix +++ b/bin/checkposix.pl diff --git a/bin/cmakehdf5 b/bin/cmakehdf5 index 715d6d7..753eb54 100755 --- a/bin/cmakehdf5 +++ b/bin/cmakehdf5 @@ -248,7 +248,7 @@ if [ ! -d $srcdir ]; then fi # figure out version information -vers=bin/h5vers +vers=bin/h5vers.pl if [ ! -x $srcdir/$vers ]; then echo $srcdir/$vers not found or not executable. Aborted. exit 1 diff --git a/bin/debug-ohdr b/bin/debug-ohdr.pl index 170919a..170919a 100755 --- a/bin/debug-ohdr +++ b/bin/debug-ohdr.pl diff --git a/bin/dependencies b/bin/dependencies.pl index a82a3ee..a82a3ee 100755 --- a/bin/dependencies +++ b/bin/dependencies.pl diff --git a/bin/distdep b/bin/distdep.pl index 0a22bd1..0a22bd1 100755 --- a/bin/distdep +++ b/bin/distdep.pl diff --git a/bin/errors b/bin/errors.pl index 6ce997b..6ce997b 100755 --- a/bin/errors +++ b/bin/errors.pl diff --git a/bin/h5vers b/bin/h5vers.pl index 2fe9105..18c5854 100755 --- a/bin/h5vers +++ b/bin/h5vers.pl @@ -30,7 +30,7 @@ use strict; # by appending a tilde `~' to the name. ### Usage: -# h5vers [OPTIONS] [FILE] +# h5vers.pl [OPTIONS] [FILE] # Without options this program only displays the current version and # doesn't modify any files or create backups. The default is to print diff --git a/bin/iostats b/bin/iostats.pl index f57c0d0..f57c0d0 100755 --- a/bin/iostats +++ b/bin/iostats.pl diff --git a/bin/make_err b/bin/make_err.pl index 4b1f474..4b1f474 100755 --- a/bin/make_err +++ b/bin/make_err.pl diff --git a/bin/make_overflow b/bin/make_overflow.pl index ced486a..ced486a 100755 --- a/bin/make_overflow +++ b/bin/make_overflow.pl diff --git a/bin/make_vers b/bin/make_vers.pl index 0bc3b62..0bc3b62 100755 --- a/bin/make_vers +++ b/bin/make_vers.pl diff --git a/bin/release b/bin/release index 703916b..1eea9b4 100755 --- a/bin/release +++ b/bin/release @@ -159,7 +159,7 @@ fi # Defaults DEST=releases -VERS=`perl bin/h5vers` +VERS=`perl bin/h5vers.pl` VERS_OLD= test "$VERS" || exit 1 verbose=yes @@ -178,7 +178,7 @@ RESTORE_VERSION() 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 + bin/h5vers.pl -s $VERS_OLD VERS_OLD= fi } @@ -240,7 +240,7 @@ if [ X$pmode = Xyes ]; then # (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 + bin/h5vers.pl -s $VERS fi # Store hdf5-$VERS ("hdf5-1.7.51", e.g.) to a variable to avoid typos diff --git a/bin/snapshot b/bin/snapshot index a496edd..4a94ff4 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -466,10 +466,10 @@ if [ "$cmd" = "all" -o -n "$cmdrel" ]; then # commit source if errors encounter here. set -e cd ${CURRENT} - RELEASE_VERSION="`perl bin/h5vers -v`" + RELEASE_VERSION="`perl bin/h5vers.pl -v`" echo "Making snapshot release ($RELEASE_VERSION) to ${ReleaseDir}..." bin/release -d $ReleaseDir $METHODS - perl bin/h5vers -i + perl bin/h5vers.pl -i svn -q commit -m "Snapshot $RELEASE_VERSION" ) errcode=$? |