update-libuv.bash 554 B

12345678910111213141516171819202122232425262728
  1. #!/usr/bin/env bash
  2. set -e
  3. set -x
  4. shopt -s dotglob
  5. readonly name="libuv"
  6. readonly ownership="libuv upstream <libuv@googlegroups.com>"
  7. readonly subtree="Utilities/cmlibuv"
  8. readonly repo="https://github.com/libuv/libuv.git"
  9. readonly tag="v1.x"
  10. readonly shortlog=false
  11. readonly paths="
  12. LICENSE
  13. include
  14. src
  15. "
  16. extract_source () {
  17. git_archive
  18. pushd "${extractdir}/${name}-reduced"
  19. echo "* -whitespace" > .gitattributes
  20. echo >> src/unix/aix-common.c
  21. echo >> src/unix/ibmi.c
  22. popd
  23. }
  24. . "${BASH_SOURCE%/*}/update-third-party.bash"