[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
131/176: gnu: mes: Update to 0.17.
From: |
Jan Nieuwenhuizen |
Subject: |
131/176: gnu: mes: Update to 0.17. |
Date: |
Fri, 31 Aug 2018 11:20:28 -0400 (EDT) |
janneke pushed a commit to branch wip-bootstrap
in repository guix.
commit 0cdef9bdcab0931039d5d764781b2d3f4cf04ed7
Author: Jan Nieuwenhuizen <address@hidden>
Date: Sun Jul 22 22:02:01 2018 +0200
gnu: mes: Update to 0.17.
* gnu/packages/mes.scm (mes): Update to 0.17.
---
gnu/packages/mes.scm | 47 +++++++++++++++++++++++++++++------------------
1 file changed, 29 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm
index 221dffc..0b85d31 100644
--- a/gnu/packages/mes.scm
+++ b/gnu/packages/mes.scm
@@ -223,22 +223,31 @@ hex2 linker.")
(license gpl3+)))))
(define-public mes-boot
- (let ((version "0.16.1")
+ (let ((version "0.17")
(revision "0")
- (commit "6a48f4a81431d4357057ff928a7df880e3f3e6b4"))
+ (commit #f))
(package-with-bootstrap-guile
(package
(name "mes-boot")
- (version (string-append version "-" revision "." (string-take commit
7)))
+ (version (if commit (string-append version "-" revision "."
(string-take commit 7))
+ version))
(synopsis "Scheme interpreter and C compiler for full source
bootstrapping")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://gitlab.com/janneke/mes"
- "/-/archive/" commit
- "/mes-" commit ".tar.gz"))
- (sha256
- (base32
- "1d1sfp54j8wsvv10mlsr4bh3n7fb70hhb164kldsrrixw6sk0nvi"))))
+ (source (if commit
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://gitlab.com/janneke/mes"
+ "/-/archive/" commit
+ "/mes-" commit ".tar.gz"))
+ (sha256
+ (base32
+
"02nakd20pnpgc1fq23r76ys23h150lg4fwjv5sqzza5dn66s60a6")))
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://alpha.gnu.org/gnu/mes/"
+ "mes-" version ".tar.gz"))
+ (sha256
+ (base32
+
"1j32x4zqy2cqjlg9m35f2411mwac2b0p5ch4hm99gddmfbxzgyhg")))))
(build-system trivial-build-system)
(supported-systems '("i686-linux" "x86_64-linux"))
(native-inputs
@@ -284,8 +293,9 @@ hex2 linker.")
;; configure
(setenv "prefix" out)
+ ;; (setenv "V" "2")
+ (system* "bash" "-x" "configure.sh")
- ;; (setenv "BUILD_DEBUG" "1")
(if ,%fake-bootstrap?
(begin ; Cheat using Guile+Nyacc+MesCC; ~30 times faster
(setenv "MES" "guile")
@@ -298,8 +308,8 @@ hex2 linker.")
":" guile "/share/guile/2.0/"))
;; these fail with guile-2.0
(when srfi-43
- (delete-file "tests/srfi-9.test-guile")
- (delete-file "tests/srfi-43.test-guile"))
+ (delete-file "tests/srfi-9.test")
+ (delete-file "tests/srfi-43.test"))
;; give auto-compile a home -- massive speed-up
(mkdir-p "/tmp/home")
@@ -320,6 +330,7 @@ hex2 linker.")
;; check
(unless ,%fake-bootstrap? ; check takes ~15min, skip when faking
+ (setenv "MES_ARENA" "100000000")
(zero? (system* "sh" "build-aux/test.sh"))
(zero? (system* "sh" "build-aux/test.sh"
"scaffold/tests/63-struct-cell"))
(zero? (system* "sh" "check.sh")))
@@ -328,12 +339,12 @@ hex2 linker.")
(setenv "SHELL" (string-append coreutils "/bin/bash"))
(zero? (system* "sh" "install.sh")))))))
(description
- "Mes [Maxwell Equations of Software] aims to create full source
+ "GNU Mes [Maxwell Equations of Software] aims to create full source
bootstrapping for GuixSD. It consists of a mutual self-hosting [close to
Guile-] Scheme interpreter prototype in C and a Nyacc-based C compiler in
-[Guile] Scheme.") ; []
- (home-page "https://gitlab.com/janneke/mes")
- (license gpl3+)))))
+[Guile] Scheme.")
+ (home-page "https://gnu.org/software/mes")
+ (license gpl3+)))))
(define-public nyacc-boot
(let ((version "0.80.42")
- 113/176: gnu: binutils-mesboot0: Package with bootstrap-guile., (continued)
- 113/176: gnu: binutils-mesboot0: Package with bootstrap-guile., Jan Nieuwenhuizen, 2018/08/31
- 112/176: gnu: tcc-boot: Package with bootstrap-guile., Jan Nieuwenhuizen, 2018/08/31
- 108/176: gnu: Add gcc-mesboot 4.7.4. WIP, Jan Nieuwenhuizen, 2018/08/31
- 109/176: REMOVEME: %fake-bootstrap => #t., Jan Nieuwenhuizen, 2018/08/31
- 129/176: gnu: %mes-seed: Update for mes 0.17., Jan Nieuwenhuizen, 2018/08/31
- 154/176: Revert "gnu: Add %bootstrap-diffutils.", Jan Nieuwenhuizen, 2018/08/31
- 140/176: gnu: Add %diffutils-static, %diffutils-static-stripped, %diffutils-bootstrap-tarball., Jan Nieuwenhuizen, 2018/08/31
- 161/176: gnu: make-boot0: Set LOADLIBES for i686-linux., Jan Nieuwenhuizen, 2018/08/31
- 126/176: gnu: gcc-mesboot0: Revise dependencies., Jan Nieuwenhuizen, 2018/08/31
- 136/176: gnu: tcc-boot0: Use gnu-build-system., Jan Nieuwenhuizen, 2018/08/31
- 131/176: gnu: mes: Update to 0.17.,
Jan Nieuwenhuizen <=
- 164/176: gnu: Add gcc-mesboot-wrapper 4.7.4., Jan Nieuwenhuizen, 2018/08/31
- 160/176: gnu: Add mpc-boot 1.0.3., Jan Nieuwenhuizen, 2018/08/31
- 166/176: gnu: diffutils-boot0: Export (for testing)., Jan Nieuwenhuizen, 2018/08/31
- 165/176: Revert "gnu: make-boot0: Set LOADLIBES for i686-linux.", Jan Nieuwenhuizen, 2018/08/31
- 87/176: gnu: %mes-seed: Update for mes 0.16., Jan Nieuwenhuizen, 2018/08/31
- 77/176: Revert "gnu: gcc-boot: Update to 3.0.", Jan Nieuwenhuizen, 2018/08/31
- 102/176: gnu: gcc-core-mesboot: Rename from gcc-core-boot., Jan Nieuwenhuizen, 2018/08/31
- 103/176: gnu: glibc-mesboot: Rename from glibc-boot., Jan Nieuwenhuizen, 2018/08/31
- 107/176: gnu: Add gcc-mesboot 4.1.0., Jan Nieuwenhuizen, 2018/08/31
- 119/176: gnu: %mes-seed: Update for mes 0.16.1., Jan Nieuwenhuizen, 2018/08/31