2013-01-05 23:47:50 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
utils: Move base16 procedures to (guix base16).
* guix/utils.scm (bytevector->base16-string, base16-string->bytevector):
Move to...
* guix/base16.scm: ... here. New file.
* tests/utils.scm ("bytevector->base16-string->bytevector"): Move to...
* tests/base16.scm: ... here. New file.
* Makefile.am (MODULES): Add guix/base16.scm.
(SCM_TESTS): Add tests/base16.scm.
* build-aux/download.scm, guix/derivations.scm,
guix/docker.scm, guix/import/snix.scm, guix/pk-crypto.scm,
guix/scripts/authenticate.scm, guix/scripts/download.scm,
guix/scripts/hash.scm, guix/store.scm, tests/hash.scm,
tests/pk-crypto.scm: Adjust imports accordingly.
2017-03-15 20:54:34 +00:00
|
|
|
;;; Copyright © 2012, 2013, 2017 Ludovic Courtès <ludo@gnu.org>
|
2014-12-31 09:23:12 +00:00
|
|
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
2016-06-25 17:53:24 +00:00
|
|
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
2012-10-17 19:44:25 +00:00
|
|
|
;;;
|
2013-01-05 23:47:50 +00:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-10-17 19:44:25 +00:00
|
|
|
;;;
|
2013-01-05 23:47:50 +00:00
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-10-17 19:44:25 +00:00
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
2013-01-05 23:47:50 +00:00
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-10-17 19:44:25 +00:00
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2013-01-05 23:47:50 +00:00
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-10-17 19:44:25 +00:00
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; Download a binary file from an external source.
|
|
|
|
;;;
|
|
|
|
|
|
|
|
(use-modules (ice-9 match)
|
|
|
|
(web uri)
|
|
|
|
(web client)
|
|
|
|
(rnrs io ports)
|
|
|
|
(srfi srfi-11)
|
utils: Move base16 procedures to (guix base16).
* guix/utils.scm (bytevector->base16-string, base16-string->bytevector):
Move to...
* guix/base16.scm: ... here. New file.
* tests/utils.scm ("bytevector->base16-string->bytevector"): Move to...
* tests/base16.scm: ... here. New file.
* Makefile.am (MODULES): Add guix/base16.scm.
(SCM_TESTS): Add tests/base16.scm.
* build-aux/download.scm, guix/derivations.scm,
guix/docker.scm, guix/import/snix.scm, guix/pk-crypto.scm,
guix/scripts/authenticate.scm, guix/scripts/download.scm,
guix/scripts/hash.scm, guix/store.scm, tests/hash.scm,
tests/pk-crypto.scm: Adjust imports accordingly.
2017-03-15 20:54:34 +00:00
|
|
|
(guix base16)
|
2013-07-04 11:43:54 +00:00
|
|
|
(guix hash))
|
2012-10-17 19:44:25 +00:00
|
|
|
|
|
|
|
(define %url-base
|
2013-01-15 10:34:54 +00:00
|
|
|
"http://alpha.gnu.org/gnu/guix/bootstrap"
|
|
|
|
|
|
|
|
;; Alternately:
|
|
|
|
;;"http://www.fdn.fr/~lcourtes/software/guix/packages"
|
|
|
|
)
|
2012-10-17 19:44:25 +00:00
|
|
|
|
|
|
|
(define (file-name->uri file)
|
|
|
|
"Return the URI for FILE."
|
|
|
|
(match (string-tokenize file (char-set-complement (char-set #\/)))
|
|
|
|
((_ ... system basename)
|
2016-06-25 17:53:24 +00:00
|
|
|
(string->uri
|
|
|
|
(match system
|
|
|
|
("aarch64-linux"
|
|
|
|
(string-append "http://flashner.co.il/guix/bootstrap/aarch64-linux"
|
|
|
|
"/20170217/" basename))
|
|
|
|
(_ (string-append %url-base "/" system
|
|
|
|
(match system
|
|
|
|
("armhf-linux"
|
|
|
|
"/20150101/")
|
|
|
|
(_
|
|
|
|
"/20131110/"))
|
|
|
|
basename)))))))
|
2012-10-17 19:44:25 +00:00
|
|
|
|
|
|
|
(match (command-line)
|
|
|
|
((_ file expected-hash)
|
|
|
|
(let ((uri (file-name->uri file)))
|
2016-01-24 17:48:29 +00:00
|
|
|
(format #t "downloading file `~a'~%from `~a'...~%"
|
2012-10-17 19:44:25 +00:00
|
|
|
file (uri->string uri))
|
|
|
|
(let*-values (((resp data) (http-get uri #:decode-body? #f))
|
|
|
|
((hash) (bytevector->base16-string (sha256 data)))
|
|
|
|
((part) (string-append file ".part")))
|
|
|
|
(if (string=? expected-hash hash)
|
|
|
|
(begin
|
|
|
|
(call-with-output-file part
|
|
|
|
(lambda (port)
|
|
|
|
(put-bytevector port data)))
|
|
|
|
(rename-file part file))
|
|
|
|
(begin
|
|
|
|
(format (current-error-port)
|
|
|
|
"file at `~a' has SHA256 ~a; expected ~a~%"
|
|
|
|
(uri->string uri) hash expected-hash)
|
|
|
|
(exit 1)))))))
|