utils.bzl 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License in the LICENSE file at the
  6. # root of this repository, or online at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. """Generic utilities for Bazel."""
  16. load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
  17. load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
  18. def maybe_github_archive(repo, commit, **kwargs):
  19. repo_name = repo.split("/")[-1]
  20. maybe(
  21. http_archive,
  22. urls = [repo + "/archive/" + commit + ".tar.gz"],
  23. strip_prefix = repo_name + "-" + commit,
  24. **kwargs
  25. )
  26. """
  27. Some of these functions have been copied from various open source projects, the
  28. licenses of these projects are as follows.
  29. Copyright 2008 Google Inc. All rights reserved.
  30. Redistribution and use in source and binary forms, with or without
  31. modification, are permitted provided that the following conditions are
  32. met:
  33. * Redistributions of source code must retain the above copyright
  34. notice, this list of conditions and the following disclaimer.
  35. * Redistributions in binary form must reproduce the above
  36. copyright notice, this list of conditions and the following disclaimer
  37. in the documentation and/or other materials provided with the
  38. distribution.
  39. * Neither the name of Google Inc. nor the names of its
  40. contributors may be used to endorse or promote products derived from
  41. this software without specific prior written permission.
  42. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  43. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  44. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  45. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  46. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  47. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  48. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  49. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  50. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  51. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  52. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  53. Code generated by the Protocol Buffer compiler is owned by the owner
  54. of the input file used when generating it. This code is not
  55. standalone and requires a support library to be linked with it. This
  56. support library is itself covered by the above license.
  57. """