diff options
author | Erich Eckner <git@eckner.net> | 2020-09-04 08:37:55 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-09-04 08:37:55 +0200 |
commit | 7ab6c56ab5e32ffe6f6297e1e7409744cea990b4 (patch) | |
tree | 3cc4b476171a35e0b1a9d04a2ce40d2d5a8f053e /checkVersions | |
parent | 8abc78550075baef3ab28e726fb1304b5b04b8e8 (diff) | |
download | archlinuxewe-7ab6c56ab5e32ffe6f6297e1e7409744cea990b4.tar.xz |
checkVersions: learn qemu-user-static and pcre-static
Diffstat (limited to 'checkVersions')
-rwxr-xr-x | checkVersions | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/checkVersions b/checkVersions index f945f7a49..f891d412a 100755 --- a/checkVersions +++ b/checkVersions @@ -929,8 +929,10 @@ then 'bindfs\.org' \ 'dl\.suckless\.org' \ 'download\.osgeo\.org' \ + 'download\.qemu\.org' \ 'downloads\.powerdns\.com' \ 'ftp\.daper\.net' \ + 'ftp\.pcre\.org' \ 'isl\.gforge\.inria\.fr' \ 'www\.vanheusden\.com'\ 'people\.gnome\.org' \ @@ -956,6 +958,10 @@ then break fi done + pkgname="${pkgname%-static}" + if [ "${pkgname}" = 'qemu-user' ]; then + pkgname='qemu' + fi quVer="${src%/*}/" if printf '%s\n' "${pkgver}" \ | grep -qx '[0-9.]\+_[0-9.]\+_rc[0-9]\+'; then |