mkdist 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. #! /bin/bash -
  2. #
  3. # mkdist - make a distribution directory from a master manifest file
  4. #
  5. # usage: mkdist [-m manifest] [-s srcdir] [-r rootname] [-v] version
  6. #
  7. # SRCDIR defaults to src
  8. # MANIFEST defaults to $SRCDIR/MANIFEST
  9. #
  10. # Chet Ramey
  11. # chet@po.cwru.edu
  12. # Copyright (C) 1996-2002 Free Software Foundation, Inc.
  13. #
  14. # This program is free software: you can redistribute it and/or modify
  15. # it under the terms of the GNU General Public License as published by
  16. # the Free Software Foundation, either version 3 of the License, or
  17. # (at your option) any later version.
  18. #
  19. # This program is distributed in the hope that it will be useful,
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. # GNU General Public License for more details.
  23. #
  24. # You should have received a copy of the GNU General Public License
  25. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  26. #
  27. SRCDIR=src
  28. ROOTNAME=bash
  29. usage()
  30. {
  31. echo usage: mkdist [-m manifest] [-s srcdir] [-r rootname] [-v] version 1>&2
  32. exit 2
  33. }
  34. vmsg()
  35. {
  36. if [ -n "$verbose" ]; then
  37. echo mkdist: "$@"
  38. fi
  39. }
  40. while getopts m:s:r:v name
  41. do
  42. case $name in
  43. m) MANIFEST=$OPTARG ;;
  44. s) SRCDIR=$OPTARG ;;
  45. r) ROOTNAME=$OPTARG ;;
  46. v) verbose=yes ;;
  47. ?) usage ;;
  48. esac
  49. done
  50. : ${MANIFEST:=$SRCDIR/MANIFEST}
  51. vmsg using $MANIFEST
  52. shift $(( $OPTIND - 1 ))
  53. if [ $# -lt 1 ]; then
  54. usage
  55. fi
  56. version=$1
  57. newdir=${ROOTNAME}-$version
  58. vmsg creating distribution for $ROOTNAME version $version in $newdir
  59. if [ ! -d $newdir ]; then
  60. mkdir $newdir || { echo $0: cannot make directory $newdir 1>&2 ; exit 1; }
  61. fi
  62. dirmode=755
  63. filmode=644
  64. while read fname type mode
  65. do
  66. [ -z "$fname" ] && continue
  67. case "$fname" in
  68. \#*) continue ;;
  69. esac
  70. case "$type" in
  71. d) mkdir $newdir/$fname ;;
  72. f) cp -p $SRCDIR/$fname $newdir/$fname ;;
  73. s) ln -s $mode $newdir/$fname ; mode= ;; # symlink
  74. l) ln $mode $newdir/$fname ; mode= ;; # hard link
  75. *) echo "unknown file type $type" 1>&2 ;;
  76. esac
  77. if [ -n "$mode" ]; then
  78. chmod $mode $newdir/$fname
  79. fi
  80. done < $MANIFEST
  81. # cut off the `-alpha' in something like `2.0-alpha', leaving just the
  82. # numeric version
  83. #version=${version%%-*}
  84. #case "$version" in
  85. #*.*.*) vers=${version%.*} ;;
  86. #*.*) vers=${version} ;;
  87. #esac
  88. #echo $vers > $newdir/.distribution
  89. #case "$version" in
  90. #*.*.*) plevel=${version##*.} ;;
  91. #*) plevel=0 ;;
  92. #esac
  93. #[ -z "$plevel" ] && plevel=0
  94. #echo ${plevel} > $newdir/.patchlevel
  95. vmsg $newdir created
  96. exit 0