gnu: mescc-tools: Update to 0.5.2-0.bb062b0d.

* gnu/packages/mes.scm (mescc-tools): Update to 0.5.2-0.bb062b0d.
mescc
* gnu/packages/commencement.scm (mescc-tools-boot): Stay at 0.5.2
master
Jan Nieuwenhuizen 2018-10-12 08:20:20 +02:00
parent 5f02c9b7d6
commit 7cbf6f1ca2
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
2 changed files with 37 additions and 26 deletions

View File

@ -117,9 +117,18 @@
(package (package
(inherit mescc-tools) (inherit mescc-tools)
(name "mescc-tools-boot") (name "mescc-tools-boot")
(version "0.5.2")
(source (origin (source (origin
(inherit (package-source mescc-tools)) (method url-fetch)
(patches (search-patches "mescc-tools-boot.patch")))) (uri (string-append
"http://git.savannah.nongnu.org/cgit/mescc-tools.git/snapshot/"
name "-Release_" version
".tar.gz"))
(patches (search-patches "mescc-tools-boot.patch"))
(file-name (string-append "mescc-tools" "-" version ".tar.gz"))
(sha256
(base32
"01x7bhmgwyf6mc2g1hcvibhps98nllacqm4f0j5l51b1mbi18pc2"))))
(inputs '()) (inputs '())
(propagated-inputs '()) (propagated-inputs '())
(native-inputs (native-inputs

View File

@ -106,31 +106,33 @@ Scheme and is compatible with Guile.")
(license gpl3+)))) (license gpl3+))))
(define-public mescc-tools (define-public mescc-tools
(package (let ((commit "bb062b0da7bf2724ca40f9002b121579898d4ef7")
(name "mescc-tools") (revision "0")
(version "0.5.2") (version "0.5.2"))
(source (origin (package
(method url-fetch) (name "mescc-tools")
(uri (string-append (version (string-append version "-" revision "." (string-take commit 7)))
"http://git.savannah.nongnu.org/cgit/mescc-tools.git/snapshot/" (source (origin
name "-Release_" version (method url-fetch)
".tar.gz")) (uri (string-append
(file-name (string-append name "-" version ".tar.gz")) "https://git.savannah.nongnu.org/cgit/mescc-tools.git/snapshot/"
(sha256 name "-" commit
(base32 ".tar.gz"))
"01x7bhmgwyf6mc2g1hcvibhps98nllacqm4f0j5l51b1mbi18pc2")))) (sha256
(build-system gnu-build-system) (base32
(supported-systems '("i686-linux" "x86_64-linux")) "1h6j57wyf91i42b26f8msbv6451cw3nm4nmpl1fckp9c7vi8mwkh"))))
(arguments (build-system gnu-build-system)
`(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) (supported-systems '("i686-linux" "x86_64-linux"))
#:test-target "test" (arguments
#:phases (modify-phases %standard-phases `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
(delete 'configure)))) #:test-target "test"
(synopsis "Tools for the full source bootstrapping process") #:phases (modify-phases %standard-phases
(description (delete 'configure))))
"Mescc-tools is a collection of tools for use in a full source (synopsis "Tools for the full source bootstrapping process")
(description
"Mescc-tools is a collection of tools for use in a full source
bootstrapping process. It consists of the M1 macro assembler, the hex2 bootstrapping process. It consists of the M1 macro assembler, the hex2
linker, the blood-elf symbol table generator, the kaem shell, exec_enable and linker, the blood-elf symbol table generator, the kaem shell, exec_enable and
get_machine.") get_machine.")
(home-page "https://savannah.nongnu.org/projects/mescc-tools") (home-page "https://savannah.nongnu.org/projects/mescc-tools")
(license gpl3+))) (license gpl3+))))