diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2024-07-29 21:11:13 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2024-07-29 21:11:13 +0200 |
commit | 9fa3551a5a4c435fd1162300dd9c407278aaf027 (patch) | |
tree | 8cf2ac28d3cf8d76a7d35ec85a4b3eacdbc5c62b /checkVersions | |
parent | 706e164f5f01788cee03bbe99d52242cbfe24ba4 (diff) | |
download | archlinuxewe-9fa3551a5a4c435fd1162300dd9c407278aaf027.tar.xz |
checkVersions: remove obsolete parsing logic
Diffstat (limited to 'checkVersions')
-rwxr-xr-x | checkVersions | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/checkVersions b/checkVersions index 88974cf3d..4507a193d 100755 --- a/checkVersions +++ b/checkVersions @@ -290,15 +290,6 @@ then ' \ | latest_version ) - elif [ "${pkgname}" = 'python2-sip' ]; then - remVer=$( - pacman -Ss '^python-sip$' \ - | sed ' - s@^\S\+/python-sip \([0-9.]\+\)-[0-9]\+\( .*\)\?$@\1@ - t - d - ' - ) elif [ "${pkgname}" = 'local-certificates' ]; then remVer=$( curl_it 'https://eckner.net/certs/sha512sums' \ @@ -319,19 +310,6 @@ then ' \ | latest_version ) - elif [ "${pkgname}" = 'python2-courier-pythonfilter' ] - then - remVer=$( - curl_it 'https://bitbucket.org/gordonmessmer/courier-pythonfilter/downloads/?tab=tags' \ - | tr '"' '\n' \ - | sed ' - s,^/gordonmessmer/courier-pythonfilter/get/release-\([-0-9]\+\)\.tar\.gz$,\1, - t - d - ' \ - | tr '-' '.' \ - | latest_version - ) elif [ "${pkgname}" = 'pacman-static' ] then git submodule update "${pkgname}" |