summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-09-25 09:02:41 +0300
committerJanneke Nieuwenhuizen <janneke@gnu.org>2026-01-28 21:47:36 +0100
commit40fc41296a03b31b0d8d73db31df7d2ec856ca38 (patch)
treec68ca528d50bc059de71e29f8afc4af085e596f5
parent587eda0f5894b729506968e15f585adb7648aed8 (diff)
gnu: stage0-posix: Update to 1.7.0.
* gnu/packages/commencement.scm (stage0-posix): Update to 1.7.0. [description]: Update to follow upstream's changes. Change-Id: I3a9d9cdb494188b88f62becf00809c8f899208bd
-rw-r--r--gnu/packages/commencement.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 8a151de5180..a42a8aa3e18 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -349,18 +349,18 @@ pure Scheme to Tar and decompression in one easy step.")
349 349
350(define stage0-posix 350(define stage0-posix
351 ;; The initial bootstrap package: no binary inputs except those from 351 ;; The initial bootstrap package: no binary inputs except those from
352 ;; `bootstrap-seeds, for x86 a 357 byte binary seed: `x86/hex0-seed'. 352 ;; `bootstrap-seeds, for x86 a 190 byte binary seed: `x86/hex0-seed'.
353 (package 353 (package
354 (name "stage0-posix") 354 (name "stage0-posix")
355 (version "1.6.0") 355 (version "1.7.0")
356 (source (origin 356 (source (origin
357 (method url-fetch) 357 (method url-fetch)
358 (uri (string-append 358 (uri (string-append "https://github.com/oriansj/stage0-posix/"
359 "https://github.com/oriansj/" name "/releases/download/" 359 "releases/download/Release_" version
360 "Release_" version "/" name "-" version ".tar.gz")) 360 "/stage0-posix-" version ".tar.gz"))
361 (sha256 361 (sha256
362 (base32 362 (base32
363 "0p06wn95y6xbp2kcd81h2fm3wxvldd1qqyxgav0farl34xlzyq4j")))) 363 "10c79z2c62gvrvpshvj94zz2hczdq1p4g1v0dakx1jiz2fx32vvn"))))
364 (supported-systems '("i686-linux" "x86_64-linux" 364 (supported-systems '("i686-linux" "x86_64-linux"
365 "aarch64-linux" 365 "aarch64-linux"
366 "riscv64-linux")) 366 "riscv64-linux"))
@@ -412,7 +412,7 @@ pure Scheme to Tar and decompression in one easy step.")
412 (install-file "M2-Planet" bindir)))))) 412 (install-file "M2-Planet" bindir))))))
413 (home-page "https://github.com/oriansj/stage0-posix/") 413 (home-page "https://github.com/oriansj/stage0-posix/")
414 (synopsis "The initial bootstrap package, builds stage0 up to M2-Planet") 414 (synopsis "The initial bootstrap package, builds stage0 up to M2-Planet")
415 (description "Starting from the 357-byte hex0-seed binary provided by 415 (description "Starting from the 190-byte hex0-seed binary provided by
416the bootstrap-seeds, the stage0-posix package first builds hex0 and then all 416the bootstrap-seeds, the stage0-posix package first builds hex0 and then all
417the way up: hex1, catm, hex2, M0, cc_x86, M1, M2, get_machine (that's all of 417the way up: hex1, catm, hex2, M0, cc_x86, M1, M2, get_machine (that's all of
418MesCC-Tools), and finally M2-Planet.") 418MesCC-Tools), and finally M2-Planet.")