1.1 --- a/openpkg/rpmtool Tue Jul 31 12:12:54 2012 +0200 1.2 +++ b/openpkg/rpmtool Tue Jul 31 12:23:42 2012 +0200 1.3 @@ -1,15 +1,14 @@ 1.4 #!@l_prefix@/lib/openpkg/bash 1.5 ## 1.6 ## rpmtool -- OpenPKG RPM Auxiliary Tool 1.7 -## Copyright (c) 2000-2007 OpenPKG Foundation e.V. <http://openpkg.net/> 1.8 -## Copyright (c) 2000-2007 Ralf S. Engelschall <http://engelschall.com/> 1.9 +## Copyright (c) 2000-2012 OpenPKG GmbH <http://openpkg.com/> 1.10 ## 1.11 -## Permission to use, copy, modify, and distribute this software for 1.12 -## any purpose with or without fee is hereby granted, provided that 1.13 -## the above copyright notice and this permission notice appear in all 1.14 -## copies. 1.15 +## This software is property of the OpenPKG GmbH, DE MUC HRB 160208. 1.16 +## All rights reserved. Licenses which grant limited permission to use, 1.17 +## copy, modify and distribute this software are available from the 1.18 +## OpenPKG GmbH. 1.19 ## 1.20 -## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED 1.21 +## THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED 1.22 ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 1.23 ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 1.24 ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR 1.25 @@ -35,7 +34,7 @@ 1.26 fi 1.27 if [ ".$1" = ".-h" -o ".$1" = ".--help" ]; then 1.28 echo "This is $prog_name, version $prog_vers ($prog_date)" 1.29 - echo "Copyright (c) 2000-2004 Ralf S. Engelschall <rse@engelschall.com>" 1.30 + echo "Copyright (c) 2000-2012 OpenPKG GmbH <http://openpkg.com/>" 1.31 echo '' 1.32 echo "Usage: $prog_name [<options>] [<cmd-name> [<cmd-options>] [<cmd-args>]]" 1.33 echo '' 1.34 @@ -1088,6 +1087,8 @@ 1.35 if [ ".$opt_b" = .yes ]; then 1.36 echo . | awk '{ printf("%c", 7); }' 1.37 fi 1.38 + 1.39 + # determine title of message 1.40 title="" 1.41 case $opt_t in 1.42 info ) title="-------" ;; 1.43 @@ -1114,30 +1115,30 @@ 1.44 PLUS ) 1.45 echo "set +x" 1.46 ( echo "This OpenPKG package is of class PLUS." 1.47 - echo "It is still in a QUALITY ASSURANCE state," 1.48 - echo "therefore it is NOT ready for careless use." 1.49 + echo "This means it is still in extended QUALITY ASSURANCE state." 1.50 + echo "Hence it is still NOT ready for careless use." 1.51 echo "Do not use it in critical production environments." 1.52 - echo "This software might still be unstable at runtime." 1.53 + echo "It might be still potentially unstable under run-time." 1.54 ) | sh $prog_path msg -r -t notice | sed -e 's;^;echo ";' -e 's;$;";' 1.55 echo "set -x" 1.56 ;; 1.57 EVAL ) 1.58 echo "set +x" 1.59 ( echo "This OpenPKG package is of class EVAL." 1.60 - echo "It is still in a EVALUATION and QA state," 1.61 - echo "therefore it is NOT ready for general use." 1.62 + echo "This means it is still in EVALUATION and QUALITY ASSURANCE state." 1.63 + echo "Hence it is still NOT ready for general use." 1.64 echo "Do not use it in production environments." 1.65 - echo "It might be unstable or incompletely packaged." 1.66 + echo "It might be unstable under run-time or still incompletely packaged." 1.67 ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";' 1.68 echo "set -x" 1.69 ;; 1.70 JUNK ) 1.71 echo "set +x" 1.72 ( echo "This OpenPKG package is of class JUNK." 1.73 - echo "It is still in DEVELOPMENT state," 1.74 - echo "therefore it is NOT ready to be used." 1.75 + echo "This means it is still in DEVELOPMENT state." 1.76 + echo "Hence it is still NOT ready even for general evaluation." 1.77 echo "Do not use it at all, except in development environments!" 1.78 - echo "This software is either unstable or incompletely packaged." 1.79 + echo "It is definitely unstable and incompletely packaged." 1.80 ) | sh $prog_path msg -r -t warn | sed -e 's;^;echo ";' -e 's;$;";' 1.81 echo "set -x" 1.82 ;;