[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
131/210: gnu: mes: Update to 0.17.
From: |
Jan Nieuwenhuizen |
Subject: |
131/210: gnu: mes: Update to 0.17. |
Date: |
Sat, 8 Sep 2018 10:36:21 -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")
- 162/210: gnu: Add glibc-mesboot 2.3.6. WIP, (continued)
- 162/210: gnu: Add glibc-mesboot 2.3.6. WIP, Jan Nieuwenhuizen, 2018/09/08
- 167/210: gnu: gcc-mesboot: Enable c++ too., Jan Nieuwenhuizen, 2018/09/08
- 165/210: Revert "gnu: make-boot0: Set LOADLIBES for i686-linux.", Jan Nieuwenhuizen, 2018/09/08
- 164/210: gnu: Add gcc-mesboot-wrapper 4.7.4., Jan Nieuwenhuizen, 2018/09/08
- 161/210: gnu: make-boot0: Set LOADLIBES for i686-linux., Jan Nieuwenhuizen, 2018/09/08
- 154/210: Revert "gnu: Add %bootstrap-diffutils.", Jan Nieuwenhuizen, 2018/09/08
- 142/210: gnu: Add %linux-libre-headers-stripped, %linux-libre-headers-bootstrap-tarball., Jan Nieuwenhuizen, 2018/09/08
- 135/210: gnu: mes-boot: Use gnu-build-system., Jan Nieuwenhuizen, 2018/09/08
- 139/210: gnu: Add %bootstrap-make., Jan Nieuwenhuizen, 2018/09/08
- 140/210: gnu: Add %diffutils-static, %diffutils-static-stripped, %diffutils-bootstrap-tarball., Jan Nieuwenhuizen, 2018/09/08
- 131/210: gnu: mes: Update to 0.17.,
Jan Nieuwenhuizen <=
- 134/210: gnu: mescc-tools-boot: Use gnu-build-system., Jan Nieuwenhuizen, 2018/09/08
- 127/210: gnu: binutils-mesboot: Revise dependencies., Jan Nieuwenhuizen, 2018/09/08
- 125/210: gnu: glibc-mesboot: Revise dependencies., Jan Nieuwenhuizen, 2018/09/08
- 115/210: gnu: glibc-mesboot: Package with bootstrap-guile., Jan Nieuwenhuizen, 2018/09/08
- 116/210: gnu: gcc-mesboot0: Package with bootstrap-guile., Jan Nieuwenhuizen, 2018/09/08
- 118/210: gnu: mescc-tools-boot: Revise dependencies., Jan Nieuwenhuizen, 2018/09/08
- 121/210: gnu: tcc-boot0: Revise dependencies., Jan Nieuwenhuizen, 2018/09/08
- 110/210: Revert "REMOVEME: %fake-bootstrap => #t.", Jan Nieuwenhuizen, 2018/09/08
- 109/210: REMOVEME: %fake-bootstrap => #t., Jan Nieuwenhuizen, 2018/09/08
- 103/210: gnu: glibc-mesboot: Rename from glibc-boot., Jan Nieuwenhuizen, 2018/09/08