tree: c9ad2fb9c0a5eddcf00874d7e96b6fe49bf49fb7 [path history] [tgz]
  1. autoconf/
  2. automake/
  3. binutils/
  4. buf/
  5. buildifier/
  6. bzip2/
  7. cmake/
  8. cmake_bootstrap/
  9. cpython/
  10. cpython3/
  11. cpython38/
  12. cpython_common/
  13. curl/
  14. firebase-tools/
  15. flex/
  16. gae_go_sdk/
  17. gcloud/
  18. gettext/
  19. git/
  20. go/
  21. go116/
  22. golangci-lint/
  23. gsutil/
  24. help2man/
  25. lessmsi/
  26. libexpat/
  27. libffi/
  28. libidn2/
  29. libnl/
  30. libtool/
  31. libuuid/
  32. mpich/
  33. ncurses/
  34. ncursesw/
  35. ninja/
  36. nodejs/
  37. nsjail/
  38. nsl/
  39. openssl/
  40. pcre/
  41. pcre2/
  42. pip_bootstrap/
  43. protobuf-cpp/
  44. protoc/
  45. protoc-gen-go/
  46. protoc-gen-go-grpc/
  47. re2c/
  48. readline/
  49. renode/
  50. sed/
  51. sqlite/
  52. squashfs/
  53. swig/
  54. texinfo/
  55. tflint/
  56. virtualenv/
  57. win_adk/
  58. win_adk_winpe/
  59. xzutils/
  60. zlib/
  61. .vpython
  62. cross_util.sh
  63. OWNERS
  64. README.md
  65. run_locally.sh
  66. run_remotely.sh
  67. run_remotely_extract_repo_ref.py
  68. run_remotely_slurp_cl.py
3pp/README.md

3pp package definitions

This is a collection of “third-party package” definitions.

See the support_3pp recipe module docs for the format of package definitions.

Building stuff locally

TODO(crbug.com/1171499): run_locally might not work. See [./run_locally.sh]. You can pass help as the first argument for the lowdown. run_locally.sh requires docker to be installed. For googlers, please refer to go/docker.

CIPD Sources

If possible, prefer to use git, url, or script methods. If none of these are workable for a package, cipd source may be used.

Some third-party packages distribute their releases via source tarballs or zips. Sometimes this is done via http or ftp.

To ingest a new tarball/zip:

  • Download the official tarball release from the software site.

    • pick one that is compressed with gzip, bzip2, or is a zip file.
    • If there's no such tarball, consider expanding compression support in the recipe_engine/archive module.
  • Put the tarball in an empty directory by itself (don‘t unpack it). The name of the archive doesn’t matter. Your directory should now look like:

    some/dir/ pkgname-1.2.3.tar.gz

  • Now run:

    $ PKG_NAME=pkgname $ VERSION=1.2.3 $ cipd create
    -in some/dir
    -name infra/third_party/source/$PKG_NAME
    -tag version:$VERSION

  • You can now use the source in a 3pp package definition like:

    source { cipd { pkg: “infra/third_party/source/pkgname” default_version: “1.2.3” original_download_url: “https://original.source.url.example.com” } # Lets 3pp recipe know to expect a single tarball/zip unpack_archive: true }

  • By default the 3pp recipe also expects unpacked archives to unpack their actual contents (files) to a subdirectory (in the Unix world this is typical for tarballs to have all files under a folder named the same thing as the tarball itself). The 3pp recipe will remove these ‘single directories’ and move all contents to the top level directory. To avoid this behavior, see the no_archive_prune option.