bld_awk_pkginfo.ksh 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. #!/usr/bin/ksh -p
  2. #
  3. # Copyright 2005 Sun Microsystems, Inc. All rights reserved.
  4. # Use is subject to license terms.
  5. #
  6. # This Source Code Form is subject to the terms of the Mozilla Public
  7. # License, v. 2.0. If a copy of the MPL was not distributed with this
  8. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  9. #
  10. # Simple script which builds the awk_pkginfo awk script. This awk script
  11. # is used to convert the pkginfo.tmpl files into pkginfo files
  12. # for the build.
  13. #
  14. usage()
  15. {
  16. cat <<-EOF
  17. usage: bld_awk_pkginfo -p <prodver> -m <mach> -o <awk_script> [-v <version>]
  18. EOF
  19. }
  20. #
  21. # Awk strings
  22. #
  23. # two VERSION patterns: one for Dewey decimal, one for Dewey plus ,REV=n
  24. # the first has one '=' the second has two or more '='
  25. #
  26. VERSION1="VERSION=[^=]*$"
  27. VERSION2="VERSION=[^=]*=.*$"
  28. PRODVERS="^SUNW_PRODVERS="
  29. ARCH='ARCH=\"ISA\"'
  30. #
  31. # parse command line
  32. #
  33. mach=""
  34. prodver=""
  35. awk_script=""
  36. version="NSSVERS"
  37. while getopts o:p:m:v: c
  38. do
  39. case $c in
  40. o)
  41. awk_script=$OPTARG
  42. ;;
  43. m)
  44. mach=$OPTARG
  45. ;;
  46. p)
  47. prodver=$OPTARG
  48. ;;
  49. v)
  50. version=$OPTARG
  51. ;;
  52. \?)
  53. usage
  54. exit 1
  55. ;;
  56. esac
  57. done
  58. if [[ ( -z $prodver ) || ( -z $mach ) || ( -z $awk_script ) ]]
  59. then
  60. usage
  61. exit 1
  62. fi
  63. if [[ -f $awk_script ]]
  64. then
  65. rm -f $awk_script
  66. fi
  67. #
  68. # Build REV= field based on date
  69. #
  70. rev=$(date "+%Y.%m.%d.%H.%M")
  71. #
  72. # Build awk script which will process all the
  73. # pkginfo.tmpl files.
  74. #
  75. # the first VERSION pattern is replaced with a leading quotation mark
  76. #
  77. rm -f $awk_script
  78. cat << EOF > $awk_script
  79. /$VERSION1/ {
  80. sub(/\=[^=]*$/,"=\"$rev\"")
  81. print
  82. next
  83. }
  84. /$VERSION2/ {
  85. sub(/\=[^=]*$/,"=$rev\"")
  86. sub(/NSSVERS/,"$version")
  87. print
  88. next
  89. }
  90. /$PRODVERS/ {
  91. printf "SUNW_PRODVERS=\"%s\"\n", "$prodver"
  92. next
  93. }
  94. /$ARCH/ {
  95. printf "ARCH=\"%s\"\n", "$mach"
  96. next
  97. }
  98. { print }
  99. EOF