bzr.scm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2018, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
  3. ;;;
  4. ;;; This file is part of GNU Guix.
  5. ;;;
  6. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 3 of the License, or (at
  9. ;;; your option) any later version.
  10. ;;;
  11. ;;; GNU Guix is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;;; GNU General Public License for more details.
  15. ;;;
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  18. (define-module (guix build bzr)
  19. #:use-module (guix build utils)
  20. #:export (bzr-fetch))
  21. ;;; Commentary:
  22. ;;;
  23. ;;; This is the build-side support code of (guix bzr-download). It allows a
  24. ;;; Bazaar repository to be branched at a specific revision.
  25. ;;;
  26. ;;; Code:
  27. (define* (bzr-fetch url revision directory
  28. #:key (bzr-command "brz"))
  29. "Fetch REVISION from URL into DIRECTORY. REVISION must be a valid Bazaar
  30. revision identifier. Return #t on success, else throw an exception."
  31. ;; Do not attempt to write .bzr.log to $HOME, which doesn't exist.
  32. (setenv "BZR_LOG" "/dev/null")
  33. ;; Disable SSL certificate verification; we rely on the hash instead.
  34. (invoke bzr-command "-Ossl.cert_reqs=none" "checkout"
  35. "--lightweight" "-r" revision url directory)
  36. (with-directory-excursion directory
  37. (delete-file-recursively ".bzr")))
  38. ;;; bzr.scm ends here