From: zimoun <zimon.toutoune@gmail.com>
To: 47293@debbugs.gnu.org
Subject: bug#47293: Failure of “guix lint -c archival icecat”
Date: Sun, 21 Mar 2021 15:23:50 +0100 [thread overview]
Message-ID: <868s6gvb49.fsf@gmail.com> (raw)
In-Reply-To: <00DjWsxrRUaaun4ubnIXCcKV1ocbZHFEv6ZgevcQrYBAO1hwvBl_aoe2VCps3_HXfZsB2CqQhJY2NqlDEYM7SMYfn0vbM-EllJw4Pu2H508=@protonmail.com>
Hi,
Indeed, there is a bug. Because the source of ’icecat’ raises a case
that is not handled by ’check-archival’ in (guix lint).
Basically in the snippet:
--8<---------------cut here---------------start------------->8---
(match (lookup-content (content-hash-value hash)
(symbol->string
(content-hash-algorithm hash)))
--8<---------------cut here---------------end--------------->8---
’lookup-content’ expect a bytevector for ’content-hash’ and in the case
of ’icecat’, it returns #f. Then raises the backtrace.
For the record, compare ’icecat’ with ’hello’:
--8<---------------cut here---------------start------------->8---
$ guix repl
GNU Guile 3.0.5
Copyright (C) 1995-2021 Free Software Foundation, Inc.
Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
This program is free software, and you are welcome to redistribute it
under certain conditions; type `,show c' for details.
Enter `,help' for help.
scheme@(guix-user)> ,use(guix packages)
scheme@(guix-user)> ,use(guix swh)
scheme@(guix-user)> ,use(gnu packages gnuzilla)
scheme@(guix-user)> (content-hash-value (origin-hash (package-source icecat)))
$1 = #f
scheme@(guix-user)> (lookup-content (content-hash-value (origin-hash (package-source icecat))) "sha256")
ice-9/boot-9.scm:1669:16: In procedure raise-exception:
In procedure bv-length: Wrong type argument in position 1 (expecting bytevector): #f
Entering a new prompt. Type `,bt' for a backtrace or `,q' to continue.
scheme@(guix-user) [1]> ,q
--8<---------------cut here---------------end--------------->8---
then
--8<---------------cut here---------------start------------->8---
scheme@(guix-user)> ,use(gnu packages base)
scheme@(guix-user)> (content-hash-value (origin-hash (package-source hello)))
$3 = #vu8(49 224 102 19 122 150 38 118 232 159 105 209 182 83 130 222 149 167 239 125 145 75 140 185 86 244 30 167 46 15 81 107)
scheme@(guix-user)> (lookup-content (content-hash-value (origin-hash (package-source hello))) "sha256")
$2 = #<<content> checksums: (("sha1" . #vu8(247 190 191 111 156 98 162 41 94 136 159 102 224 92 233 191 174 217 172 227)) ("blake2s256" . #vu8(4 255 253 50 132 65 210 22 201 36 146 173 114 211 115 136 216 199 120 137 136 11 6 145 81 41 135 134 253 72 216 137)) ("sha1_git" . #vu8(202 230 179 60 195 63 170 253 45 107 216 108 107 66 115 249 51 140 105 194)) ("sha256" . #vu8(49 224 102 19 122 150 38 118 232 159 105 209 182 83 130 222 149 167 239 125 145 75 140 185 86 244 30 167 46 15 81 107))) data-url: "https://archive.softwareheritage.org/api/1/content/sha256:31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b/raw/" file-type-url: "https://archive.softwareheritage.org/api/1/content/sha256:31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b/filetype/" language-url: "https://archive.softwareheritage.org/api/1/content/sha256:31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b/language/" length: 725946 license-url: "https://archive.softwareheritage.org/api/1/content/sha256:31e066137a962676e89f69d1b65382de95a7ef7d914b8cb956f41ea72e0f516b/license/">
--8<---------------cut here---------------end--------------->8---
Cheers,
simon
next prev parent reply other threads:[~2021-03-21 14:28 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-18 14:28 Release 1.2.1: status zimoun
2021-03-19 6:37 ` Chris Marusich
2021-03-19 8:27 ` Christopher Baines
2021-03-19 8:50 ` zimoun
2021-03-20 18:09 ` Leo Famulari
2021-03-20 22:56 ` zimoun
2021-03-20 23:21 ` Leo Famulari
2021-03-19 18:31 ` Andreas Enge
2021-03-19 21:59 ` Luis Felipe
2021-03-20 23:03 ` zimoun
2021-03-19 22:26 ` Luis Felipe
2021-03-21 0:16 ` zimoun
2021-03-21 14:05 ` bug#47293: guix lint -c archival icecat fails Luis Felipe via Bug reports for GNU Guix
2021-03-21 14:23 ` zimoun [this message]
2021-03-21 19:39 ` bug#47293: Failure of “guix lint -c archival icecat” Mark H Weaver
2021-03-25 23:25 ` bug#47293: guix lint -c archival icecat fails Ludovic Courtès
2021-03-21 14:13 ` Release 1.2.1: status Luis Felipe
2021-03-20 20:01 ` Leo Famulari
2021-03-20 23:00 ` zimoun
2021-03-21 17:54 ` Leo Famulari
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=868s6gvb49.fsf@gmail.com \
--to=zimon.toutoune@gmail.com \
--cc=47293@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.