diff options
author | Jan (janneke) Nieuwenhuizen <janneke@gnu.org> | 2023-02-15 15:32:08 +0100 |
---|---|---|
committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2023-02-15 15:39:10 +0100 |
commit | 0835eda487a4e08f43c7c95eaf54c4878c4ac9a2 (patch) | |
tree | 6acb0129a0fece455771d30ec59aee75fe1cbfff /gnu/packages | |
parent | b928e38bd333e6186727fe5c5e94b85d157b79d6 (diff) | |
download | guix-0835eda487a4e08f43c7c95eaf54c4878c4ac9a2.tar guix-0835eda487a4e08f43c7c95eaf54c4878c4ac9a2.tar.gz |
Revert "gnu: commencement: mes-boot: Update to 0.24.2."
This reverts commit b928e38bd333e6186727fe5c5e94b85d157b79d6.
The gcc-core-mesboot0 package fails to build with mes-boot-0.24.2, `ar'
segfaults
$ strace ar rc libiberty.a argv.o
execve("/gnu/store/nvb6jh26hfjifs79h7hrlkw3cisgc353-binutils-mesboot0-2.20.1a/bin/ar", ["ar", "rc", "libiberty.a", "argv.o"], 0x7ffc4187fff8 /* 82 vars */) = 0
[ Process PID=22689 runs in 32 bit mode. ]
brk(NULL) = 0x830f000
brk(0x830f000) = 0x830f000
stat64("libiberty.a", {st_mode=S_IFREG|0600, st_size=8, ...}) = 0
brk(0x830f0a4) = 0x830f0a4
brk(0x830f0b4) = 0x830f0b4
brk(0x8310098) = 0x8310098
brk(0x83100a4) = 0x83100a4
brk(0x8311088) = 0x8311088
--- SIGSEGV {si_signo=SIGSEGV, si_code=SEGV_MAPERR, si_addr=0x63ecebc8} ---
+++ killed by SIGSEGV +++
Segmentation fault
See also <https://debbugs.gnu.org/41264>.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/commencement.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 2b42f8025f..e34bcecd92 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2014, 2015, 2017 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2017, 2018, 2019, 2021, 2022 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> -;;; Copyright © 2018, 2019, 2020, 2021, 2022, 2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> +;;; Copyright © 2018, 2019, 2020, 2021, 2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2019-2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2020, 2022 Timothy Sample <samplet@ngyro.com> ;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org> @@ -430,16 +430,14 @@ MesCC-Tools), and finally M2-Planet.") (package (inherit mes) (name "mes-boot") - (version "0.24.2") + (version "0.24") (source (origin (method url-fetch) - (uri (list (string-append "mirror://gnu/mes/" - "mes-" version ".tar.gz") - (string-append "https://lilypond.org/janneke/mes/" - "mes-" version ".tar.gz"))) + (uri (string-append "mirror://gnu/mes/" + "mes-" version ".tar.gz")) (sha256 (base32 - "0vp8v88zszh1imm3dvdfi3m8cywshdj7xcrsq4cgmss69s2y1nkx")))) + "00lrpm4x5qg0l840zhbf9mr67mqhp8gljcl24j5dy0y109gf32w2")))) (inputs '()) (propagated-inputs '()) (supported-systems '("i686-linux" "x86_64-linux")) |