diff options
author | Erich Eckner <git@eckner.net> | 2017-08-30 10:09:23 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-08-30 10:09:23 +0200 |
commit | 51ecd7e88746f88b8d5c125cf7cf85883e55ca83 (patch) | |
tree | 01eed1c2639c90f31bfaf5ad86f077d5680a6e5a /checkVersions | |
parent | f8d5ce84d9c754ae3e1cb1b090b6d9d95996db57 (diff) | |
download | archlinuxewe-51ecd7e88746f88b8d5c125cf7cf85883e55ca83.tar.xz |
checkVersions kann jetzt mehr perl-pakete
Diffstat (limited to 'checkVersions')
-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='' |