1113 CORE|BASE ) |
1113 CORE|BASE ) |
1114 ;; |
1114 ;; |
1115 PLUS ) |
1115 PLUS ) |
1116 echo "set +x" |
1116 echo "set +x" |
1117 ( echo "This OpenPKG package is of class PLUS." |
1117 ( echo "This OpenPKG package is of class PLUS." |
1118 echo "This means it is still in extended QUALITY ASSURANCE state." |
1118 echo "It is still in a QUALITY ASSURANCE state," |
1119 echo "Hence it is still NOT ready for careless use." |
1119 echo "therefore it is NOT ready for careless use." |
1120 echo "Do not use it in critical production environments." |
1120 echo "Do not use it in critical production environments." |
1121 echo "It might be still potentially unstable under run-time." |
1121 echo "This software might still be unstable at runtime." |
1122 ) | sh $prog_path msg -r -t notice | sed -e 's;^;echo ";' -e 's;$;";' |
1122 ) | sh $prog_path msg -r -t notice | sed -e 's;^;echo ";' -e 's;$;";' |
1123 echo "set -x" |
1123 echo "set -x" |
1124 ;; |
1124 ;; |
1125 EVAL ) |
1125 EVAL ) |
1126 echo "set +x" |
1126 echo "set +x" |
1127 ( echo "This OpenPKG package is of class EVAL." |
1127 ( echo "This OpenPKG package is of class EVAL." |
1128 echo "This means it is still in EVALUATION and QUALITY ASSURANCE state." |
1128 echo "It is still in a EVALUATION and QA state," |
1129 echo "Hence it is still NOT ready for general use." |
1129 echo "therefore it is NOT ready for general use." |
1130 echo "Do not use it in production environments." |
1130 echo "Do not use it in production environments." |
1131 echo "It might be unstable under run-time or still incompletely packaged." |
1131 echo "It might be unstable or incompletely packaged." |
1132 ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";' |
1132 ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";' |
1133 echo "set -x" |
1133 echo "set -x" |
1134 ;; |
1134 ;; |
1135 JUNK ) |
1135 JUNK ) |
1136 echo "set +x" |
1136 echo "set +x" |
1137 ( echo "This OpenPKG package is of class JUNK." |
1137 ( echo "This OpenPKG package is of class JUNK." |
1138 echo "This means it is still in DEVELOPMENT state." |
1138 echo "It is still in DEVELOPMENT state," |
1139 echo "Hence it is still NOT ready even for general evaluation." |
1139 echo "therefore it is NOT ready to be used." |
1140 echo "Do not use it at all, except in development environments!" |
1140 echo "Do not use it at all, except in development environments!" |
1141 echo "It is definitely unstable and incompletely packaged." |
1141 echo "This software is either unstable or incompletely packaged." |
1142 ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";' |
1142 ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";' |
1143 echo "set -x" |
1143 echo "set -x" |
1144 ;; |
1144 ;; |
1145 esac |
1145 esac |
1146 ;; |
1146 ;; |