Saltstack Official PHP Formula
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

42 Zeilen
1.4KB

  1. #!/bin/sh
  2. ###############################################################################
  3. # (A) Update `FORMULA` with `${nextRelease.version}`
  4. ###############################################################################
  5. sed -i -e "s_^\(version:\).*_\1 ${1}_" FORMULA
  6. ###############################################################################
  7. # (B) Use `m2r` to convert automatically produced `.md` docs to `.rst`
  8. ###############################################################################
  9. # Install `m2r`
  10. sudo -H pip install m2r
  11. # Copy and then convert the `.md` docs
  12. cp *.md docs/
  13. cd docs/
  14. m2r --overwrite *.md
  15. # Change excess `H1` headings to `H2` in converted `CHANGELOG.rst`
  16. sed -i -e '/^=.*$/s/=/-/g' CHANGELOG.rst
  17. sed -i -e '1,4s/-/=/g' CHANGELOG.rst
  18. # Use for debugging output, when required
  19. # cat AUTHORS.rst
  20. # cat CHANGELOG.rst
  21. # Return back to the main directory
  22. cd ..
  23. ###############################################################################
  24. # (C) Update last version before `v1.0.0` with `${nextRelease.version}`
  25. ###############################################################################
  26. # Only apply this while the version number is below `v1.0.0`!
  27. V_REPR=v${1}
  28. MAJOR=$(echo ${V_REPR} | cut -c-2)
  29. if [ ${MAJOR} = "v0" ]; then
  30. sed -i -e "s@^\(\s\+\`\).*\(\s<https://github.com/saltstack-formulas/php-formula/releases/tag/\).*\(>\`_\.\)@\1${V_REPR}\2${V_REPR}\3@" docs/README.rst
  31. fi