mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
guix: Support authentication when fetching from SVN.
* guix/svn-download.scm (<svn-reference>): Add fields for optional credentials. (svn-fetch): Pass credentials to build-side "svn-fetch". * guix/build/svn.scm (svn-fetch): Pass optional credentials to svn command.
This commit is contained in:
parent
1095bd1db0
commit
140dd8f82c
2 changed files with 21 additions and 10 deletions
|
@ -29,15 +29,22 @@ (define-module (guix build svn)
|
|||
;;; Code:
|
||||
|
||||
(define* (svn-fetch url revision directory
|
||||
#:key (svn-command "svn"))
|
||||
#:key (svn-command "svn")
|
||||
(user-name #f)
|
||||
(password #f))
|
||||
"Fetch REVISION from URL into DIRECTORY. REVISION must be an integer, and a
|
||||
valid Subversion revision. Return #t on success, #f otherwise."
|
||||
(and (zero? (system* svn-command "checkout" "--non-interactive"
|
||||
;; Trust the server certificate. This is OK as we
|
||||
;; verify the checksum later. This can be removed when
|
||||
;; ca-certificates package is added.
|
||||
"--trust-server-cert" "-r" (number->string revision)
|
||||
url directory))
|
||||
(and (zero? (apply system* svn-command
|
||||
"checkout" "--non-interactive"
|
||||
;; Trust the server certificate. This is OK as we
|
||||
;; verify the checksum later. This can be removed when
|
||||
;; ca-certificates package is added.
|
||||
"--trust-server-cert" "-r" (number->string revision)
|
||||
`(,@(if (and user-name password)
|
||||
(list (string-append "--username=" user-name)
|
||||
(string-append "--password=" password))
|
||||
'())
|
||||
,url ,directory)))
|
||||
(with-directory-excursion directory
|
||||
(begin
|
||||
;; The contents of '.svn' vary as a function of the current status
|
||||
|
|
|
@ -41,8 +41,10 @@ (define-module (guix svn-download)
|
|||
(define-record-type* <svn-reference>
|
||||
svn-reference make-svn-reference
|
||||
svn-reference?
|
||||
(url svn-reference-url) ; string
|
||||
(revision svn-reference-revision)) ; number
|
||||
(url svn-reference-url) ; string
|
||||
(revision svn-reference-revision) ; number
|
||||
(user-name svn-reference-user-name (default #f))
|
||||
(password svn-reference-password (default #f)))
|
||||
|
||||
(define (subversion-package)
|
||||
"Return the default Subversion package."
|
||||
|
@ -62,7 +64,9 @@ (define build
|
|||
(svn-fetch '#$(svn-reference-url ref)
|
||||
'#$(svn-reference-revision ref)
|
||||
#$output
|
||||
#:svn-command (string-append #+svn "/bin/svn"))))
|
||||
#:svn-command (string-append #+svn "/bin/svn")
|
||||
#:user-name #$(svn-reference-user-name ref)
|
||||
#:password #$(svn-reference-password ref))))
|
||||
|
||||
(mlet %store-monad ((guile (package->derivation guile system)))
|
||||
(gexp->derivation (or name "svn-checkout") build
|
||||
|
|
Loading…
Reference in a new issue