diff options
Diffstat (limited to 'versioncp/commontest')
-rwxr-xr-x | versioncp/commontest | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/versioncp/commontest b/versioncp/commontest deleted file mode 100755 index 78c4f1f..0000000 --- a/versioncp/commontest +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -echo "Trying the most common places for a package to be ..." - -# Try them ... -pwd="`pwd`" -sfvers="`${pwd}/upstscripts/sourceforge $1`" -fmvers="`${pwd}/upstscripts/freshmeat $1`" -bevers="`${pwd}/upstscripts/berlios $1`" - -if [[ -n "${sfvers}" ]] ; then - echo "Package $1 found on SourceForge with version ${sfvers}" -fi - -if [[ -n "${fmvers}" ]] ; then - echo "Package $1 found on FreshMeat with version ${fmvers}" -fi -if [[ -n "${bevers}" ]] ; then - echo "Package $1 found on Berlios with version ${bevers}" -fi - -if [[ -z "${sfvers}" ]] && [[ -z "${fmvers}" ]] && [[ -z "${bevers}" ]] ; then - echo "Not found anywhere ..." -fi |