diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-03-09 23:49:02 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-03-09 23:49:02 +0000 |
commit | a24b31bac214cb0e6466413d1510d7c7f5f2e992 (patch) | |
tree | e9cbc39fb587afe2f58019694b927f48a18eb64d /Tools | |
parent | aff4d42b2139ab845ef5ba71072c6a833983e413 (diff) | |
download | ports-a24b31bac214cb0e6466413d1510d7c7f5f2e992.tar.gz ports-a24b31bac214cb0e6466413d1510d7c7f5f2e992.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/rmport | 46 |
1 files changed, 21 insertions, 25 deletions
diff --git a/Tools/scripts/rmport b/Tools/scripts/rmport index 28b05dc9263d..8025e1ce1ac5 100755 --- a/Tools/scripts/rmport +++ b/Tools/scripts/rmport @@ -184,36 +184,30 @@ check_dep() persist=${2} alltorm=${3} - while : ; do - log "${catport}: checking dependencies" + log "${catport}: checking dependencies" - err=0 + err=0 - res="`check_dep_core ${catport} "${alltorm}" 2>&1`" || err=1 + res="`check_dep_core ${catport} "${alltorm}" 2>&1`" || err=1 - if [ ${err} -eq 0 ] ; then - break - fi + if [ ${err} -eq 0 ] ; then + return 0 + fi - echo "${res}" |${PAGER:-less} + echo "${res}" |${PAGER:-less} - if [ ${persist} -eq 0 ] ; then - break - fi + if [ ${persist} -eq 0 ] ; then + return 0 + fi - echo "" >&2 - echo "you can ignore the above issues and proceed anyway." >&2 - echo "if this is the case, then either:" >&2 - echo " * these are false positives" >&2 - echo " * you want to break something" >&2 - echo " * your ${PORTSDIR} is out of date, consider setting PORTSDIR in environment" >&2 - echo " to point to a newer instance of the ports tree" >&2 - echo "or you can hit \`n' to repeat the check" >&2 - answer=`ask "ignore the above issues"` - if [ "${answer}" = "y" ] ; then - break - fi - done + echo "" >&2 + echo "you can skip ${catport} and continue with the rest or remove it anyway" >&2 + answer=`ask "do you want to skip ${catport}?"` + if [ "${answer}" = "y" ] ; then + return 1 + else + return 0 + fi } # query GNATS via query-pr-summary.cgi, format and return the result @@ -506,7 +500,9 @@ for catport in $* ; do catport="${cat}/${port}" pkgname=`pkgname ${catport}` - check_dep ${catport} 1 "${*}" + if ! check_dep ${catport} 1 "${*}" ; then + continue + fi if ! check_PRs ${catport} ${port} ; then continue |