gnu: m2-planet: Update to 1.8.0.

* gnu/packages/mes.scm (m2-planet): Update to 1.8.0.
This commit is contained in:
Ludovic Courtès 2021-07-25 22:22:34 +02:00
parent 8b627a7701
commit 0b9da8b5a2
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -360,36 +360,35 @@ get_machine.")
#t)))))))) #t))))))))
(define-public m2-planet (define-public m2-planet
(let ((commit "b87ddb0051b168ea45f8d49a610dcd069263336a") (package
(revision "2")) (name "m2-planet")
(package (version "1.8.0")
(name "m2-planet") (source (origin
(version (string-append "1.4.0-" revision "." (string-take commit 7))) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/oriansj/m2-planet")
(uri (git-reference (commit (string-append "Release_" version))
(url "https://github.com/oriansj/m2-planet") (recursive? #t))) ;for M2libc
(commit commit))) (file-name (git-file-name name version))
(file-name (git-file-name name version)) (sha256
(sha256 (base32
(base32 "0525fhijrjljgaabmgsjy8yk2pmh5zf8lwa44wpvkjc18knl7nza"))))
"0yyc0fcbbxi9jqa1n76x0rwspdrwmc8g09jlmsw9c35nflrhmz8q")))) (native-inputs (list mescc-tools))
(native-inputs (build-system gnu-build-system)
(list mescc-tools)) (arguments
(build-system gnu-build-system) `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
(arguments ,(string-append "CC=" (cc-for-target)))
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:tests? #f
#:tests? #f #:phases (modify-phases %standard-phases
#:phases (modify-phases %standard-phases (delete 'bootstrap)
(delete 'bootstrap) (delete 'configure))))
(delete 'configure)))) (synopsis "The PLAtform NEutral Transpiler")
(synopsis "The PLAtform NEutral Transpiler") (description
(description "M2-Planet, the PLAtform NEutral Transpiler, when combined with
"M2-Planet, the PLAtform NEutral Transpiler, when combined with
mescc-tools, compiles a subset of the C language into working binaries with mescc-tools, compiles a subset of the C language into working binaries with
introspective steps in between. It is self-hosting and for bootstrapping it introspective steps in between. It is self-hosting and for bootstrapping it
also has an implementation in the M1 macro assembly language. M2-Planet is also has an implementation in the M1 macro assembly language. M2-Planet is
built as Phase-5 of the full source bootstrapping process and is capable of built as Phase-5 of the full source bootstrapping process and is capable of
building GNU Mes.") building GNU Mes.")
(home-page "https://github.com/oriansj/m2-planet") (home-page "https://github.com/oriansj/m2-planet")
(license gpl3+)))) (license gpl3+)))