mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: mes: Remove 0.19.
* gnu/packages/mes.scm (mes-0.19): Remove. (mes): Copy missing fields from MES-0.19.
This commit is contained in:
parent
81096caf7d
commit
5510e1c483
1 changed files with 16 additions and 31 deletions
|
@ -150,21 +150,19 @@ parsers to allow execution with Guile as extension languages.")))
|
||||||
"065ksalfllbdrzl12dz9d9dcxrv97wqxblslngsc6kajvnvlyvpk"))))
|
"065ksalfllbdrzl12dz9d9dcxrv97wqxblslngsc6kajvnvlyvpk"))))
|
||||||
(inputs (list guile-3.0))))
|
(inputs (list guile-3.0))))
|
||||||
|
|
||||||
(define-public mes-0.19
|
(define-public mes
|
||||||
;; Mes used for bootstrap.
|
|
||||||
(package
|
(package
|
||||||
(name "mes")
|
(name "mes")
|
||||||
(version "0.19")
|
(version "0.23")
|
||||||
(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
|
||||||
"15h4yhaywdc0djpjlin2jz1kzahpqxfki0r0aav1qm9nxxmnp1l0"))))
|
"0mnryfkl0dwbr5gxp16j5s95gw7z1vm1fqa1pxabp0aiar1hw53s"))))
|
||||||
(build-system gnu-build-system)
|
(supported-systems '("armhf-linux" "i686-linux" "x86_64-linux"))
|
||||||
(supported-systems '("i686-linux" "x86_64-linux"))
|
(propagated-inputs (list mescc-tools nyacc-1.00.2))
|
||||||
(propagated-inputs (list mescc-tools nyacc-0.86))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("guile" ,guile-3.0)
|
`(("guile" ,guile-3.0)
|
||||||
,@(let ((target-system (or (%current-target-system)
|
,@(let ((target-system (or (%current-target-system)
|
||||||
|
@ -181,31 +179,9 @@ parsers to allow execution with Guile as extension languages.")))
|
||||||
("help2man" ,help2man)
|
("help2man" ,help2man)
|
||||||
("perl" ,perl) ; build-aux/gitlog-to-changelog
|
("perl" ,perl) ; build-aux/gitlog-to-changelog
|
||||||
("texinfo" ,texinfo)))
|
("texinfo" ,texinfo)))
|
||||||
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:strip-binaries? #f)) ; binutil's strip b0rkes MesCC/M1/hex2 binaries
|
`(#:strip-binaries? #f)) ; binutil's strip b0rkes MesCC/M1/hex2 binaries
|
||||||
(synopsis "Scheme interpreter and C compiler for full source bootstrapping")
|
|
||||||
(description
|
|
||||||
"GNU Mes--Maxwell Equations of Software--brings the Reduced Binary Seed
|
|
||||||
bootstrap to Guix and aims to help create full source bootstrapping for
|
|
||||||
GNU/Linux distributions. It consists of a mutual self-hosting Scheme
|
|
||||||
interpreter in C and a Nyacc-based C compiler in Scheme and is compatible with
|
|
||||||
Guile.")
|
|
||||||
(home-page "https://www.gnu.org/software/mes/")
|
|
||||||
(license gpl3+)))
|
|
||||||
|
|
||||||
(define-public mes
|
|
||||||
(package
|
|
||||||
(inherit mes-0.19)
|
|
||||||
(version "0.23")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://gnu/mes/"
|
|
||||||
"mes-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0mnryfkl0dwbr5gxp16j5s95gw7z1vm1fqa1pxabp0aiar1hw53s"))))
|
|
||||||
(supported-systems '("armhf-linux" "i686-linux" "x86_64-linux"))
|
|
||||||
(propagated-inputs (list mescc-tools nyacc-1.00.2))
|
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "C_INCLUDE_PATH")
|
(variable "C_INCLUDE_PATH")
|
||||||
|
@ -216,7 +192,16 @@ Guile.")
|
||||||
(search-path-specification
|
(search-path-specification
|
||||||
(variable "MES_PREFIX")
|
(variable "MES_PREFIX")
|
||||||
(separator #f)
|
(separator #f)
|
||||||
(files '("")))))))
|
(files '("")))))
|
||||||
|
(synopsis "Scheme interpreter and C compiler for full source bootstrapping")
|
||||||
|
(description
|
||||||
|
"GNU Mes--Maxwell Equations of Software--brings the Reduced Binary Seed
|
||||||
|
bootstrap to Guix and aims to help create full source bootstrapping for
|
||||||
|
GNU/Linux distributions. It consists of a mutual self-hosting Scheme
|
||||||
|
interpreter in C and a Nyacc-based C compiler in Scheme and is compatible with
|
||||||
|
Guile.")
|
||||||
|
(home-page "https://www.gnu.org/software/mes/")
|
||||||
|
(license gpl3+)))
|
||||||
|
|
||||||
(define-public mes-rb5
|
(define-public mes-rb5
|
||||||
;; This is the Reproducible-Builds summit 5's Mes, also built on Debian
|
;; This is the Reproducible-Builds summit 5's Mes, also built on Debian
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue