X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=test%2Fpatchexim;h=cb9f98825102d06cee8eba8b69e886bc1ed2af78;hb=5455f54826fe81cddb761ca943ea0b1ef5836dbc;hp=1143741fb0fd1e2673b5c16d45779264cfcfbd0f;hpb=3634fc257bd0667daef14d72005cd87c735bbb24;p=exim.git diff --git a/test/patchexim b/test/patchexim index 1143741fb..cb9f98825 100755 --- a/test/patchexim +++ b/test/patchexim @@ -1,4 +1,7 @@ -#! /usr/bin/perl -w +#! /usr/bin/env perl + +use strict; +use warnings; ############################################################################### # This is an auxiliary script that is part of the Exim test suite. It must be # @@ -10,19 +13,29 @@ # be copied. The script must be run in the correct current directory. # ############################################################################### -open(IN, "$ARGV[0]") || die "** Failed to open $ARGV[0]: $!\n"; -open(OUT, ">eximdir/exim") || die "** Failed to open eximdir/exim: $!\n"; +open(IN, $ARGV[0]) || die "** Failed to open $ARGV[0]: $!\n"; +open(OUT, '>eximdir/exim') || die "** Failed to open eximdir/exim: $!\n"; while() { s/>>>running<<>>/; - s/(\d+\.\d+(?:\.\d+)?(-RC\d+|-dev)?\0<>)/"x.yz\0" . ("*" x (length($1) - 5))/e; + s{ + (\d+\.\d+ # major.minor + (?:[_.]\d+)? # optional patchlevel + (?:[_-]RC\d+|[_-]?dev(?:start)?)? # optional RC or dev(start) + (?:(?:[_-]\d+)? # git tag distance + [-_][[:xdigit:]]+)? # git id + (?:[-_]XX)?\0 # git dirty bit + <> # marker + ) + } + {"x.yz\0" . ("*" x (length($1) - 5))}xe; print OUT; } close(IN); close(OUT); -chmod 04755, "eximdir/exim"; +chmod 04755, 'eximdir/exim'; # End of patchexim script