diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-09-14 20:11:43 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-09-14 20:11:43 (GMT) |
commit | b5eaacb9113f15ed517bdc3a4e5e28f577c5ca61 (patch) | |
tree | b4fc35321095170372ca9bdb0ac36591822b7b1f /bin | |
parent | 4b748365dfb69e6f1f5ae99379f39e3db858889a (diff) | |
download | hdf5-b5eaacb9113f15ed517bdc3a4e5e28f577c5ca61.zip hdf5-b5eaacb9113f15ed517bdc3a4e5e28f577c5ca61.tar.gz hdf5-b5eaacb9113f15ed517bdc3a4e5e28f577c5ca61.tar.bz2 |
[svn-r27775] Undo of r27655
Removes .pl extension from Perl scripts. This may be returned in the future,
but it's best to keep the script names unchanged while we merge with the
trunk.
Tested on: h5committest
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/bbrelease | 8 | ||||
-rwxr-xr-x | bin/checkapi (renamed from bin/checkapi.pl) | 2 | ||||
-rwxr-xr-x | bin/checkposix (renamed from bin/checkposix.pl) | 0 | ||||
-rwxr-xr-x | bin/cmakehdf5 | 2 | ||||
-rwxr-xr-x | bin/debug-ohdr (renamed from bin/debug-ohdr.pl) | 0 | ||||
-rwxr-xr-x | bin/dependencies (renamed from bin/dependencies.pl) | 0 | ||||
-rwxr-xr-x | bin/distdep (renamed from bin/distdep.pl) | 0 | ||||
-rwxr-xr-x | bin/errors (renamed from bin/errors.pl) | 0 | ||||
-rwxr-xr-x | bin/h5vers (renamed from bin/h5vers.pl) | 2 | ||||
-rwxr-xr-x | bin/iostats (renamed from bin/iostats.pl) | 0 | ||||
-rwxr-xr-x | bin/make_err (renamed from bin/make_err.pl) | 0 | ||||
-rwxr-xr-x | bin/make_overflow (renamed from bin/make_overflow.pl) | 0 | ||||
-rwxr-xr-x | bin/make_vers (renamed from bin/make_vers.pl) | 0 | ||||
-rwxr-xr-x | bin/release | 6 | ||||
-rwxr-xr-x | bin/snapshot | 4 | ||||
-rwxr-xr-x | bin/trace (renamed from bin/trace.pl) | 0 |
16 files changed, 12 insertions, 12 deletions
diff --git a/bin/bbrelease b/bin/bbrelease index a4f7ee0..1e3b88d 100755 --- a/bin/bbrelease +++ b/bin/bbrelease @@ -163,7 +163,7 @@ fi # Defaults DEST=releases -VERS=`perl bin/h5vers.pl` +VERS=`perl bin/h5vers` 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.pl -s $VERS_OLD + bin/h5vers -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.pl -s $VERS + bin/h5vers -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.pl -s $VERS + bin/h5vers -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.pl b/bin/checkapi index cc5b376..b4a08e8 100755 --- a/bin/checkapi.pl +++ b/bin/checkapi @@ -16,7 +16,7 @@ require 5.003; # Purpose: insures that API functions aren't called internally. -# Usage: checkapi.pl H5*.c +# Usage: checkapi H5*.c my $filename = ""; my $lastname = ""; diff --git a/bin/checkposix.pl b/bin/checkposix index db47ff3..db47ff3 100755 --- a/bin/checkposix.pl +++ b/bin/checkposix diff --git a/bin/cmakehdf5 b/bin/cmakehdf5 index 753eb54..715d6d7 100755 --- a/bin/cmakehdf5 +++ b/bin/cmakehdf5 @@ -248,7 +248,7 @@ if [ ! -d $srcdir ]; then fi # figure out version information -vers=bin/h5vers.pl +vers=bin/h5vers if [ ! -x $srcdir/$vers ]; then echo $srcdir/$vers not found or not executable. Aborted. exit 1 diff --git a/bin/debug-ohdr.pl b/bin/debug-ohdr index 170919a..170919a 100755 --- a/bin/debug-ohdr.pl +++ b/bin/debug-ohdr diff --git a/bin/dependencies.pl b/bin/dependencies index a82a3ee..a82a3ee 100755 --- a/bin/dependencies.pl +++ b/bin/dependencies diff --git a/bin/distdep.pl b/bin/distdep index 0a22bd1..0a22bd1 100755 --- a/bin/distdep.pl +++ b/bin/distdep diff --git a/bin/errors.pl b/bin/errors index 6ce997b..6ce997b 100755 --- a/bin/errors.pl +++ b/bin/errors diff --git a/bin/h5vers.pl b/bin/h5vers index 18c5854..2fe9105 100755 --- a/bin/h5vers.pl +++ b/bin/h5vers @@ -30,7 +30,7 @@ use strict; # by appending a tilde `~' to the name. ### Usage: -# h5vers.pl [OPTIONS] [FILE] +# h5vers [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.pl b/bin/iostats index f57c0d0..f57c0d0 100755 --- a/bin/iostats.pl +++ b/bin/iostats diff --git a/bin/make_err.pl b/bin/make_err index 4b1f474..4b1f474 100755 --- a/bin/make_err.pl +++ b/bin/make_err diff --git a/bin/make_overflow.pl b/bin/make_overflow index ced486a..ced486a 100755 --- a/bin/make_overflow.pl +++ b/bin/make_overflow diff --git a/bin/make_vers.pl b/bin/make_vers index 0bc3b62..0bc3b62 100755 --- a/bin/make_vers.pl +++ b/bin/make_vers diff --git a/bin/release b/bin/release index 1eea9b4..703916b 100755 --- a/bin/release +++ b/bin/release @@ -159,7 +159,7 @@ fi # Defaults DEST=releases -VERS=`perl bin/h5vers.pl` +VERS=`perl bin/h5vers` 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.pl -s $VERS_OLD + bin/h5vers -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.pl -s $VERS + bin/h5vers -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 4a94ff4..a496edd 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.pl -v`" + RELEASE_VERSION="`perl bin/h5vers -v`" echo "Making snapshot release ($RELEASE_VERSION) to ${ReleaseDir}..." bin/release -d $ReleaseDir $METHODS - perl bin/h5vers.pl -i + perl bin/h5vers -i svn -q commit -m "Snapshot $RELEASE_VERSION" ) errcode=$? |