[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/11: gnu: mescc-tools: Update to 1.1.0.
From: |
guix-commits |
Subject: |
01/11: gnu: mescc-tools: Update to 1.1.0. |
Date: |
Sun, 3 Jan 2021 17:37:03 -0500 (EST) |
janneke pushed a commit to branch wip-full-source-bootstrap
in repository guix.
commit 3913ed705df297c21699058ace83b4af14c49bcf
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Dec 19 10:06:07 2020 +0100
gnu: mescc-tools: Update to 1.1.0.
* gnu/packages/mes.scm (mescc-tools)[source]: Update to 1.1.0.
[arguments]: Update patch-prefix phase for sha256sum.
---
gnu/packages/mes.scm | 48 +++++++++++++++++++++++++++++++++---------------
1 file changed, 33 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/mes.scm b/gnu/packages/mes.scm
index 5ceb1c6..9eda057 100644
--- a/gnu/packages/mes.scm
+++ b/gnu/packages/mes.scm
@@ -291,23 +291,41 @@ get_machine.")
(define-public mescc-tools
(package
- (inherit mescc-tools-0.5.2)
(name "mescc-tools")
- (version "0.6.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://git.savannah.nongnu.org/r/mescc-tools.git")
- (commit (string-append "Release_" version))))
- (file-name (string-append "mescc-tools-" version "-checkout"))
- (sha256
- (base32
- "1cgxcdza6ws725x84i31la7jxmlk5a3nsij5shz1zljg0i36kj99"))))
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://git.savannah.nongnu.org/cgit/mescc-tools.git/snapshot/"
+ name "-Release_" version
+ ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "12cjryqfd6m6j807pvhk7i4vr2q0jiibpfrpnq5s67iq9l4rrc6b"))))
+ (build-system gnu-build-system)
+ (supported-systems
+ '("aarch64-linux" "armhf-linux" "i686-linux" "x86_64-linux"))
(arguments
- (substitute-keyword-arguments (package-arguments mescc-tools-0.5.2)
- ((#:make-flags _)
- `(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
- "CC=gcc"))))))
+ `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
+ (string-append "CC=" ,(cc-for-target)))
+ #:test-target "test"
+ #:phases (modify-phases %standard-phases
+ (delete 'configure)
+ (add-after 'unpack 'patch-prefix
+ (lambda _
+ (substitute* "sha256.sh"
+ (("\\$\\(which sha256sum\\)") (which "sha256sum")))
+ #t)))))
+ (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
+linker, the blood-elf symbol table generator, the kaem shell, exec_enable and
+get_machine.")
+ (home-page "https://savannah.nongnu.org/projects/mescc-tools")
+ (license gpl3+)))
(define-public m2-planet
(let ((commit "b87ddb0051b168ea45f8d49a610dcd069263336a")
- branch wip-full-source-bootstrap created (now dcaed7a), guix-commits, 2021/01/03
- 01/11: gnu: mescc-tools: Update to 1.1.0.,
guix-commits <=
- 02/11: gnu: m2-planet: Update to 1.7.0-31-g358b6cf., guix-commits, 2021/01/03
- 03/11: commencement: Add bootstrap-seeds., guix-commits, 2021/01/03
- 04/11: commencement: Add m2-planet-boot., guix-commits, 2021/01/03
- 07/11: DRAFT commencement: mes-boot: Update to 0.22-304, build with m2-planet., guix-commits, 2021/01/03
- 06/11: DRAFT gnu: mes: Update to 0.22-305-g2ab4c5c67., guix-commits, 2021/01/03
- 05/11: gnu: Add nyacc-1.00.2., guix-commits, 2021/01/03
- 09/11: bootstrap: Remove %bootstrap-mescc-tools, %bootstrap-mes., guix-commits, 2021/01/03
- 11/11: DRAFT doc: Add the "Full Source Bootstrap"., guix-commits, 2021/01/03
- 08/11: commencement: tcc-boot0: Update to 0.9.26-1136-g0fbeb2dd., guix-commits, 2021/01/03
- 10/11: commencement: Remove %bootstrap-mes-rewired., guix-commits, 2021/01/03