Simple Makefile target helper https://pagure.io/mkit

deploy.sh 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. #!/bin/bash
  2. # MKit - simple install helper
  3. # See LICENSE file for copyright and license details.
  4. _deploy_item() {
  5. #
  6. # Deploy item and make it look like wanted
  7. #
  8. # usage: _deploy_item src dst [mode]
  9. #
  10. # Both src and dst must be names of actual items[1],
  11. # whereas dst must not exist. On update, dst is
  12. # usually to be replaced but that is uninstall's
  13. # job!
  14. #
  15. # [1] Ie. src=foo and dst=/foo/bar does *always*
  16. # mean that foo will become 'bar'. This is
  17. # different than traditional `cp` behavior,
  18. # when this depends if 'bar' already exists
  19. # as a directory.
  20. #
  21. # If mode is omitted or empty, MKIT_DEFAULT_MODE is
  22. # used instead.
  23. #
  24. # Directories are copied recursively, and mode is
  25. # applied only to files.
  26. #
  27. local src=$1 # source path
  28. local dst=$2 # destination path
  29. local mode=${3:-$MKIT_DEFAULT_MODE} # mode
  30. local item # each in directory
  31. if test -d "$src"; then
  32. find "$src" -type f \
  33. | while read -r item; do
  34. [[ $item =~ .skel$ ]] \
  35. && grep -q "${item%.skel}" "$MKIT_LOCAL/built.lst" \
  36. && continue
  37. _deploy_item "$item" "$dst${item#$src}" "$mode"
  38. done
  39. else
  40. _maybe install -DTvm "$mode" "$src" "$dst"
  41. fi
  42. }
  43. _get_dst() {
  44. #
  45. # Find out target path for src file $2 of group $1
  46. #
  47. local grp=$1 # deploy group
  48. local src=$2 # each source
  49. local dst=$3 # alternative destination name
  50. test -n "$dst" || dst=${src##*/}
  51. echo "$(_get_root "$grp")/$dst"
  52. }
  53. _get_root() {
  54. #
  55. # Find out target root for group $1
  56. #
  57. local grp=$1 # deploy group
  58. local root # root for this group
  59. local destdir # value of DESTDIR
  60. root=$(ini 1value "roots:$grp")
  61. destdir=$(ini 1value ENV:DESTDIR)
  62. destdir=${destdir%/}
  63. case $destdir:$root in
  64. *:) die "missing in config.ini: roots:$grp" ;;
  65. :*) echo "$root" ;;
  66. *:*) echo "$destdir/$root" ;;
  67. esac
  68. }
  69. _maybe() {
  70. #
  71. # Call the deploy command $1 $@ unless in dry mode
  72. #
  73. debug "$@"
  74. local cmd="$1"; shift
  75. $MKIT_DRY && return
  76. case "$cmd" in
  77. cp|rm|rmdir|chmod|mkdir) $cmd "$@" ;;
  78. install) command -p install "$@" ;;
  79. *) die "bad command called";;
  80. esac
  81. }
  82. install() {
  83. #
  84. # Install product
  85. #
  86. local group # each deploy group
  87. local mode # mode (group-specific)
  88. local src # each source path
  89. local dst # each (final absolute) destination path
  90. ini lskeys "files" \
  91. | sort \
  92. | uniq \
  93. | while read -r group; do
  94. mode=$(ini 1value "modes:$group")
  95. ini values "files:$group" \
  96. | while read -r src dst; do
  97. dst=$(_get_dst "$group" "$src" "$dst")
  98. _deploy_item "$src" "$dst" "$mode"
  99. done
  100. done
  101. test -f "$MKIT_LOCAL/autoclean" && clean
  102. true
  103. }
  104. uninstall() {
  105. #
  106. # Uninstall product
  107. #
  108. local group # each deploy group
  109. local src # each source path
  110. local dst # each (final absolute) destination path
  111. ini lskeys "files" \
  112. | sort \
  113. | uniq \
  114. | while read -r group; do
  115. ini values "files:$group" \
  116. | while read -r src dst; do
  117. dst=$(_get_dst "$group" "$src" "$dst")
  118. _maybe rm -vrf "$dst"
  119. done
  120. done
  121. }