gnu: mes: Update to 0.25.
* gnu/packages/mes.scm (mes): Update to 0.25. [supported-systems]: Add aarch64-linux and riscv64-linux. [native-inputs]: For aarch64-linux, use arm-linux-gnueabihf compiler. Update to latest m2-planet (1.11.0). Change-Id: I8c4c46b1a0e30cdb4545186dfa93625a400bac0fmaster
parent
952d0951da
commit
552e15792b
|
@ -154,15 +154,16 @@ parsers to allow execution with Guile as extension languages.")))
|
||||||
(define-public mes
|
(define-public mes
|
||||||
(package
|
(package
|
||||||
(name "mes")
|
(name "mes")
|
||||||
(version "0.24.2")
|
(version "0.25")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/mes/"
|
(uri (string-append "mirror://gnu/mes/"
|
||||||
"mes-" version ".tar.gz"))
|
"mes-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0vp8v88zszh1imm3dvdfi3m8cywshdj7xcrsq4cgmss69s2y1nkx"))))
|
"0h49h85m1jkppfsv95zdxdrrw1q1mwswhq81lwxj1nbyasrm0lij"))))
|
||||||
(supported-systems '("armhf-linux" "i686-linux" "x86_64-linux"))
|
(supported-systems '("aarch64-linux" "armhf-linux" "i686-linux"
|
||||||
|
"x86_64-linux" "riscv64-linux"))
|
||||||
(propagated-inputs (list mescc-tools nyacc-1.00.2))
|
(propagated-inputs (list mescc-tools nyacc-1.00.2))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(append (list guile-3.0)
|
(append (list guile-3.0)
|
||||||
|
@ -174,10 +175,15 @@ parsers to allow execution with Guile as extension languages.")))
|
||||||
;; MesCC 64 bit .go files installed ready for use with Guile.
|
;; MesCC 64 bit .go files installed ready for use with Guile.
|
||||||
(list (cross-binutils "i686-unknown-linux-gnu")
|
(list (cross-binutils "i686-unknown-linux-gnu")
|
||||||
(cross-gcc "i686-unknown-linux-gnu")))
|
(cross-gcc "i686-unknown-linux-gnu")))
|
||||||
(else
|
((string-prefix? "aarch64-linux" target-system)
|
||||||
'())))
|
;; Use cross-compiler rather than #:system "armhf-linux" to get
|
||||||
|
;; MesCC 64 bit .go files installed ready for use with Guile.
|
||||||
|
(let ((triplet "arm-linux-gnueabihf"))
|
||||||
|
(list (cross-binutils triplet) (cross-gcc triplet))))
|
||||||
|
(else
|
||||||
|
'())))
|
||||||
(list graphviz help2man
|
(list graphviz help2man
|
||||||
m2-planet-1.9.0
|
m2-planet
|
||||||
perl ;build-aux/gitlog-to-changelog
|
perl ;build-aux/gitlog-to-changelog
|
||||||
texinfo)))
|
texinfo)))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
|
Reference in New Issue