diff -r 71503088f51b -r f880f219c566 openpkg/rpmtool
--- a/openpkg/rpmtool Tue Jul 31 12:12:54 2012 +0200
+++ b/openpkg/rpmtool Tue Jul 31 12:23:42 2012 +0200
@@ -1,15 +1,14 @@
#!@l_prefix@/lib/openpkg/bash
##
## rpmtool -- OpenPKG RPM Auxiliary Tool
-## Copyright (c) 2000-2007 OpenPKG Foundation e.V.
-## Copyright (c) 2000-2007 Ralf S. Engelschall
+## Copyright (c) 2000-2012 OpenPKG GmbH
##
-## Permission to use, copy, modify, and distribute this software for
-## any purpose with or without fee is hereby granted, provided that
-## the above copyright notice and this permission notice appear in all
-## copies.
+## This software is property of the OpenPKG GmbH, DE MUC HRB 160208.
+## All rights reserved. Licenses which grant limited permission to use,
+## copy, modify and distribute this software are available from the
+## OpenPKG GmbH.
##
-## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+## THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
@@ -35,7 +34,7 @@
fi
if [ ".$1" = ".-h" -o ".$1" = ".--help" ]; then
echo "This is $prog_name, version $prog_vers ($prog_date)"
- echo "Copyright (c) 2000-2004 Ralf S. Engelschall "
+ echo "Copyright (c) 2000-2012 OpenPKG GmbH "
echo ''
echo "Usage: $prog_name [] [ [] []]"
echo ''
@@ -1088,6 +1087,8 @@
if [ ".$opt_b" = .yes ]; then
echo . | awk '{ printf("%c", 7); }'
fi
+
+ # determine title of message
title=""
case $opt_t in
info ) title="-------" ;;
@@ -1114,30 +1115,30 @@
PLUS )
echo "set +x"
( echo "This OpenPKG package is of class PLUS."
- echo "It is still in a QUALITY ASSURANCE state,"
- echo "therefore it is NOT ready for careless use."
+ echo "This means it is still in extended QUALITY ASSURANCE state."
+ echo "Hence it is still NOT ready for careless use."
echo "Do not use it in critical production environments."
- echo "This software might still be unstable at runtime."
+ echo "It might be still potentially unstable under run-time."
) | sh $prog_path msg -r -t notice | sed -e 's;^;echo ";' -e 's;$;";'
echo "set -x"
;;
EVAL )
echo "set +x"
( echo "This OpenPKG package is of class EVAL."
- echo "It is still in a EVALUATION and QA state,"
- echo "therefore it is NOT ready for general use."
+ echo "This means it is still in EVALUATION and QUALITY ASSURANCE state."
+ echo "Hence it is still NOT ready for general use."
echo "Do not use it in production environments."
- echo "It might be unstable or incompletely packaged."
+ echo "It might be unstable under run-time or still incompletely packaged."
) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";'
echo "set -x"
;;
JUNK )
echo "set +x"
( echo "This OpenPKG package is of class JUNK."
- echo "It is still in DEVELOPMENT state,"
- echo "therefore it is NOT ready to be used."
+ echo "This means it is still in DEVELOPMENT state."
+ echo "Hence it is still NOT ready even for general evaluation."
echo "Do not use it at all, except in development environments!"
- echo "This software is either unstable or incompletely packaged."
+ echo "It is definitely unstable and incompletely packaged."
) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";'
echo "set -x"
;;