X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=blobdiff_plain;f=test%2Fpatchexim;h=c2983e4d0b742cb449fbe0fe5cf53fe24196690f;hp=7bd84d49d2bf5c82a9aaed7b5aada4f40825c04e;hb=f07babc0c0abfe8328da451f91f3ea46df3e63d9;hpb=28fb7042c4d99225f3968d6555faef598db2e9d0 diff --git a/test/patchexim b/test/patchexim index 7bd84d49d..c2983e4d0 100755 --- a/test/patchexim +++ b/test/patchexim @@ -19,7 +19,18 @@ open(OUT, '>eximdir/exim') || die "** Failed to open eximdir/exim: $!\n"; while() { s/>>>running<<>>/; - s/(\d+\.\d+(?:[_.]\d+)?([_-]RC\d+|[_-]dev)?(?:[0-9a-fA-F-]*)(?:[-_]XX)?\0<>)/"x.yz\0" . ("*" x (length($1) - 5))/e; + s{ + (\d+\.\d+ # major.minor + (?:[_.]\d+)? # optional security-patchlevel + (?:[_.]\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; }