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