Wed, 01 Aug 2012 23:27:43 +0200
Improve package class english description text warnings and messages.
openpkg/rpmtool | file | annotate | diff | comparison | revisions |
1.1 --- a/openpkg/rpmtool Wed Aug 01 23:26:35 2012 +0200 1.2 +++ b/openpkg/rpmtool Wed Aug 01 23:27:43 2012 +0200 1.3 @@ -1115,30 +1115,30 @@ 1.4 PLUS ) 1.5 echo "set +x" 1.6 ( echo "This OpenPKG package is of class PLUS." 1.7 - echo "This means it is still in extended QUALITY ASSURANCE state." 1.8 - echo "Hence it is still NOT ready for careless use." 1.9 + echo "It is still in a QUALITY ASSURANCE state," 1.10 + echo "therefore it is NOT ready for careless use." 1.11 echo "Do not use it in critical production environments." 1.12 - echo "It might be still potentially unstable under run-time." 1.13 + echo "This software might still be unstable at runtime." 1.14 ) | sh $prog_path msg -r -t notice | sed -e 's;^;echo ";' -e 's;$;";' 1.15 echo "set -x" 1.16 ;; 1.17 EVAL ) 1.18 echo "set +x" 1.19 ( echo "This OpenPKG package is of class EVAL." 1.20 - echo "This means it is still in EVALUATION and QUALITY ASSURANCE state." 1.21 - echo "Hence it is still NOT ready for general use." 1.22 + echo "It is still in a EVALUATION and QA state," 1.23 + echo "therefore it is NOT ready for general use." 1.24 echo "Do not use it in production environments." 1.25 - echo "It might be unstable under run-time or still incompletely packaged." 1.26 + echo "It might be unstable or incompletely packaged." 1.27 ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";' 1.28 echo "set -x" 1.29 ;; 1.30 JUNK ) 1.31 echo "set +x" 1.32 ( echo "This OpenPKG package is of class JUNK." 1.33 - echo "This means it is still in DEVELOPMENT state." 1.34 - echo "Hence it is still NOT ready even for general evaluation." 1.35 + echo "It is still in DEVELOPMENT state," 1.36 + echo "therefore it is NOT ready to be used." 1.37 echo "Do not use it at all, except in development environments!" 1.38 - echo "It is definitely unstable and incompletely packaged." 1.39 + echo "This software is either unstable or incompletely packaged." 1.40 ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";' 1.41 echo "set -x" 1.42 ;;