guix: m2-planet: Update to 1.11.0.

* guix/git/mes.scm (m2-planet): Update to 1.11.0.
This commit is contained in:
Janneke Nieuwenhuizen 2023-11-05 09:54:26 +01:00
parent 40cdd8aef1
commit ae12aeac49

View file

@ -86,41 +86,36 @@ get_machine.")
(license gpl3+))) (license gpl3+)))
(define-public m2-planet (define-public m2-planet
(let ((version "1.10.0") (package
(revision "1") (name "m2-planet")
(commit "c82fb8c3530e93fd49efe60da785ffff827ea4d")) (version "1.11.0")
(package (source (origin
(name "m2-planet") (method url-fetch)
(version (git-version version revision commit)) (uri (string-append
(source (origin "https://github.com/oriansj/M2-Planet/releases/download/"
(method git-fetch) "Release_" version "/" name "-" version ".tar.gz"))
(uri (git-reference (sha256
(url "https://github.com/oriansj/m2-planet") (base32
(commit commit) "1c510p55amxjyvjlx9jpa30gixlgmf6mmfnaqcs46412krymwg38"))))
(recursive? #t))) ;for M2libc (native-inputs (list mescc-tools))
(file-name (git-file-name name version)) (build-system gnu-build-system)
(sha256 (supported-systems '("i686-linux" "x86_64-linux"
(base32 "armhf-linux" "aarch64-linux"
"1fy6ll8z96y6xzyi7zfgsn07rxxvfm600i8f8vwc57266a3sds9j")))) "riscv32-linux" "riscv64-linux"))
(native-inputs (list mescc-tools)) (arguments
(build-system gnu-build-system) `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
(supported-systems '("i686-linux" "x86_64-linux" (string-append "CC=" ,(cc-for-target)))
"armhf-linux" "aarch64-linux" #:tests? #f
"riscv32-linux" "riscv64-linux")) #:phases (modify-phases %standard-phases
(arguments (delete 'bootstrap)
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) (delete 'configure))))
(string-append "CC=" ,(cc-for-target))) (synopsis "The PLAtform NEutral Transpiler")
#:tests? #f (description
#:phases (modify-phases %standard-phases "M2-Planet, The PLAtform NEutral Transpiler, when combined with
(delete 'bootstrap)
(delete 'configure))))
(synopsis "The PLAtform NEutral Transpiler")
(description
"M2-Planet, The PLAtform NEutral Transpiler, when combined with
mescc-tools compiles a subset of the C language into working binaries mescc-tools compiles a subset of the C language into working binaries
with introspective steps inbetween.") with introspective steps inbetween.")
(home-page "https://github.com/oriansj/m2-planet") (home-page "https://github.com/oriansj/m2-planet")
(license gpl3+)))) (license gpl3+)))
(define-public nyacc-0.99 (define-public nyacc-0.99
(package (package