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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. #!/bin/bash
  2. . "$MKIT_DIR/include/ini.sh" || die "cannot import ini.sh"
  3. . "$MKIT_DIR/include/facts.sh" || die "cannot import facts.sh"
  4. _build1() {
  5. #
  6. # Process one skeleton
  7. #
  8. local srcpath="$1"
  9. local dstpath="$2"
  10. local ftype="$3"
  11. test -n "$dstpath" || dstpath=${srcpath%.skel}
  12. test -n "$ftype" || ftype=$(_guess_ftype "$dstpath")
  13. debug_var srcpath dstpath ftype
  14. <"$srcpath" _build1_ftype "$ftype" >"$dstpath"
  15. mkdir -p "$MKIT_LOCAL"
  16. echo "$dstpath" >> "$MKIT_LOCAL/built.lst"
  17. }
  18. _build1_ftype() {
  19. #
  20. # Build a file of type $1
  21. #
  22. local ftype="$1"
  23. case $ftype in
  24. MKIT_COMMON) _expand_tokens "tokens" ;;
  25. markdown) _expand_includes | _expand_tokens "tokens" ;;
  26. rpmstuff) _expand_tokens "tokens" "rpmstuff:tokens" ;;
  27. *) die "unknown file type: $ftype" ;;
  28. esac
  29. }
  30. _expand_includes() {
  31. #
  32. # Expand include directives
  33. #
  34. # Expand e.g. `<!-- include4: foo.sh -->` to include code of foo.sh
  35. #
  36. perl -we '
  37. use strict;
  38. my $text;
  39. while (<>) {
  40. chomp;
  41. if (m/<!-- include4: (\S+) -->/) {
  42. open my $fh, $1 or warn "cannot find: $1";
  43. my $text = do { local($/); <$fh> };
  44. close $fh;
  45. $text =~ s/^(.)/ $1/gm;
  46. chomp $text;
  47. print "$text\n";
  48. } else {
  49. print "$_\n";
  50. }
  51. }
  52. '
  53. }
  54. _expand_tokens() {
  55. #
  56. # Expand tokens from sections $@
  57. #
  58. local script=$(mktemp --tmpdir mkit-tmp.XXXXXXXXXX)
  59. local section varname varvalue
  60. {
  61. for section in "$@";
  62. do
  63. debug_var section
  64. ini lskeys "$section" \
  65. | while read varname;
  66. do
  67. varvalue="$(ini 1value "$section:$varname" | sed -e 's/\$/\\$/' )"
  68. echo "s|$varname|$varvalue|g;"
  69. debug_var varname varvalue
  70. done
  71. done
  72. echo "s|__MKIT_PROJ_NAME__|$(ini 1value project:name)|g;"
  73. echo "s|__MKIT_PROJ_CODENAME__|$(ini 1value project:codename)|g;"
  74. echo "s|__MKIT_PROJ_PKGNAME__|$(ini 1value project:pkgname)|g;"
  75. echo "s|__MKIT_PROJ_TAGLINE__|$(ini 1value project:tagline)|g;"
  76. echo "s|__MKIT_PROJ_GIT_LASTHASH__|$(git_lasthash)|g;"
  77. echo "s|__MKIT_PROJ_VERSION__|$(semver)|g;"
  78. echo "s|__MKIT_SELF_VERSION__|$MKIT_VERSION|g;"
  79. } >> "$script"
  80. perl -wp "$script" || die "_expand_tokens failed"
  81. rm "$script"
  82. }
  83. _guess_ftype() {
  84. #
  85. # Guess file type from destination path $1
  86. #
  87. local dstpath="$1"
  88. case $dstpath in
  89. *.md) echo markdown ;;
  90. *) echo MKIT_COMMON ;;
  91. esac
  92. }
  93. build() {
  94. #
  95. # Add meat to all skeletons
  96. #
  97. local srcpath
  98. find src -type f -name '*.skel' \
  99. | while read srcpath;
  100. do
  101. _build1 "$srcpath"
  102. done
  103. }
  104. build_manpages() {
  105. local manfile mdfile
  106. if command -v ronn >/dev/null;
  107. then
  108. ini lskeys "files:man" \
  109. | while read manfile;
  110. do
  111. mdfile="$manfile.md"
  112. ronn -r "$mdfile"
  113. mkdir -p "$MKIT_LOCAL"
  114. echo "$manfile" >> "$MKIT_LOCAL/built.lst"
  115. done
  116. else
  117. echo "ronn is not installed"
  118. return 1
  119. fi
  120. }
  121. clean() {
  122. #
  123. # Clean up tree after building
  124. #
  125. test -f "$MKIT_LOCAL/built.lst" && {
  126. <"$MKIT_LOCAL/built.lst" grep -v -e '\.\.' -e ^/ \
  127. | xargs -r rm -rf
  128. rm -f "$MKIT_LOCAL/built.lst"
  129. rmdir --ignore-fail-on-non-empty "$MKIT_LOCAL"
  130. }
  131. true
  132. }
  133. debstuff() {
  134. #
  135. # Build Debian stuff (eamed tarball, debian dir)
  136. #
  137. local version="$(semver)"
  138. # tarball - we should already have by means of 'dist'
  139. #
  140. mv "${MKIT_PROJ_PKGNAME}-$version.tar.gz" \
  141. "${MKIT_PROJ_PKGNAME}_$version.orig.tar.gz" \
  142. || die "could not rename tarball"
  143. echo "${MKIT_PROJ_PKGNAME}_$version.orig.tar.gz" >> "$MKIT_LOCAL/built.lst"
  144. # read content of each mandatory file from debian_skel
  145. #
  146. local debian_skel=$(ini 1value debstuff:debian_skel)
  147. test -n "$debian_skel" || die "debstuff:debian_skel not specified"
  148. test -d "$debian_skel" || die "debian directory template found: $debian_skel"
  149. mkdir -p debian/source
  150. local dfsrc dftgt
  151. find "$debian_skel" -type f \
  152. | while read dfsrc;
  153. do
  154. dftgt="debian/${dfsrc#$debian_skel}"
  155. mkdir -p "$(dirname "$dftgt")"
  156. _build1 "$dfsrc" "$dftgt"
  157. done
  158. echo debian >> "$MKIT_LOCAL/built.lst"
  159. }
  160. dist() {
  161. #
  162. # Create distributable tarball
  163. #
  164. #FIXME: lacking Makefile skills, we do this step twice fot
  165. # rpmstuff, hence -f hack for gzip
  166. #
  167. local version=$(semver)
  168. local git_lasthash=$(git_lasthash)
  169. local dirname=$MKIT_PROJ_PKGNAME-$version
  170. mkdir -p "$dirname"
  171. ini values "lists:dist" | xargs -I DIST_ITEM cp -R DIST_ITEM "$dirname"
  172. update_version "$version" "$dirname/mkit.ini"
  173. mkdir -p "$dirname/.mkit"
  174. echo -n "$git_lasthash" > "$dirname/.mkit/git_lasthash"
  175. tar -cf "$dirname.tar" "$dirname"
  176. gzip -f "$dirname.tar" # see above FIXME
  177. mkdir -p "$MKIT_LOCAL"
  178. echo "$dirname.tar.gz" >> "$MKIT_LOCAL/built.lst"
  179. rm -rf "$dirname"
  180. }
  181. rpmstuff() {
  182. #
  183. # Build specfile
  184. #
  185. local specname="$MKIT_PROJ_PKGNAME.spec"
  186. local specsrc="$(ini 1value "rpmstuff:spec_skel")"
  187. test -n "$specsrc" || die "rpmstuff:spec_skel not specified"
  188. test -f "$specsrc" || die "specfile template not found: $specsrc"
  189. _build1 "$specsrc" "$specname"
  190. }