bootstrap: Add %bootstrap-mes.
Built with
668ffe1e4e
bootstrap: Move use-modules to top of builder.
Todo: host these on ftp.gnu.org/pub/guix/...
* gnu/packages/bootstrap.scm (%bootstrap-mes): New variable.
This commit is contained in:
parent
668ffe1e4e
commit
5f02c9b7d6
|
@ -49,6 +49,7 @@
|
||||||
%bootstrap-gcc
|
%bootstrap-gcc
|
||||||
%bootstrap-glibc
|
%bootstrap-glibc
|
||||||
%bootstrap-inputs
|
%bootstrap-inputs
|
||||||
|
%bootstrap-mes
|
||||||
%mescc-tools-seed
|
%mescc-tools-seed
|
||||||
%mes-seed
|
%mes-seed
|
||||||
%srfi-43
|
%srfi-43
|
||||||
|
@ -616,6 +617,58 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
|
||||||
(home-page #f)
|
(home-page #f)
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
|
(define %bootstrap-mes
|
||||||
|
;; The initial Mes. Uses binaries from a tarball typically built by
|
||||||
|
;; %MES-BOOTSTRAP-TARBALL.
|
||||||
|
(package
|
||||||
|
(name "bootstrap-mes")
|
||||||
|
(version "0")
|
||||||
|
(source #f)
|
||||||
|
(build-system trivial-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:guile ,%bootstrap-guile
|
||||||
|
#:modules ((guix build utils))
|
||||||
|
#:builder
|
||||||
|
(begin
|
||||||
|
(use-modules (guix build utils)
|
||||||
|
(ice-9 popen))
|
||||||
|
(let ((out (assoc-ref %outputs "out"))
|
||||||
|
(tar (assoc-ref %build-inputs "tar"))
|
||||||
|
(xz (assoc-ref %build-inputs "xz"))
|
||||||
|
(tarball (assoc-ref %build-inputs "tarball")))
|
||||||
|
|
||||||
|
(mkdir out)
|
||||||
|
(copy-file tarball "binaries.tar.xz")
|
||||||
|
(invoke xz "-d" "binaries.tar.xz")
|
||||||
|
(let ((builddir (getcwd))
|
||||||
|
(bindir (string-append out "/bin")))
|
||||||
|
(with-directory-excursion out
|
||||||
|
(invoke tar "xvf"
|
||||||
|
(string-append builddir "/binaries.tar"))))))))
|
||||||
|
(inputs
|
||||||
|
`(("tar" ,(search-bootstrap-binary "tar" (%current-system)))
|
||||||
|
("xz" ,(search-bootstrap-binary "xz" (%current-system)))
|
||||||
|
("tarball" ,(bootstrap-origin
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://lilypond.org/janneke/mes/"
|
||||||
|
(match (%current-system)
|
||||||
|
("x86_64-linux" "mes-stripped-0.18-0.08f04f5-x86_64-linux.tar.xz")
|
||||||
|
("i686-linux" "mes-stripped-0.18-0.08f04f5-i686-linux.tar.xz"))))
|
||||||
|
(sha256
|
||||||
|
(match (%current-system)
|
||||||
|
("x86_64-linux"
|
||||||
|
(base32
|
||||||
|
"1yhxqf1sm67gwjbkkc26m4lcscvpjfmi71bzy8rhysal4lcj1vc8"))
|
||||||
|
("i686-linux"
|
||||||
|
(base32
|
||||||
|
"1p116ya9n52852bryh34n7db4mhvi98qifmmwygl7nbyc4dz92jy")))))))))
|
||||||
|
(synopsis "Bootstrap binaries of Mes")
|
||||||
|
(description synopsis)
|
||||||
|
(home-page #f)
|
||||||
|
(license gpl3+)))
|
||||||
|
|
||||||
(define %mescc-tools-seed ; todo: add tarballs to alpha.gnu.org/pub/mes/bootstrap/
|
(define %mescc-tools-seed ; todo: add tarballs to alpha.gnu.org/pub/mes/bootstrap/
|
||||||
(let ((commit "dc4e20e74924a5c80a2b7a77b4d7b927234fa71c"))
|
(let ((commit "dc4e20e74924a5c80a2b7a77b4d7b927234fa71c"))
|
||||||
(origin
|
(origin
|
||||||
|
|
Loading…
Reference in New Issue