diff options
-rwxr-xr-x | checkVersions | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/checkVersions b/checkVersions index 3aff36392..e50c83a11 100755 --- a/checkVersions +++ b/checkVersions @@ -301,10 +301,12 @@ then then pre='s|\(\...\)$|\10|' post='s|\(\...\)0$|\1|' - elif [ "${pkgname}" == 'perl-opengl' ] + elif [ "${pkgname}" == 'perl-opengl' ] || \ + [ "${pkgname}" == 'perl-array-diff' ] || \ + [ "${pkgname}" == 'perl-module-cpants-analyse' ] then - pre='s|\(\...\)\(..\)$|\1.\2|' - post='s|\(\...\)\.\(..\)$|\1\2|' + pre='s|\(\...\)\(.\)|\1.\2|' + post='s|\(\...\)\.\(.\)|\1\2|' else pre='' post='' |