bug#62287: Ungexp inside vector problem

2023-03-19 Thread Andrew Tropin
I would expect two last expressions return the same result, but the
former one doesn't do ungexp:

--8<---cut here---start->8---
(define a '(3 4))

(define b `#(1 2 ,a))

(eval-with-store
 #~(list '(1 2 #$a))) ;; => ((1 2 (3 4)))

(eval-with-store
 #~(list #(1 2 #$a))) ;; => (#(1 2 (ungexp a)))

(eval-with-store
 #~(list #$b)) ;; => (#(1 2 4))
--8<---cut here---end--->8---

Am I doing/expecting something wrong or there is a bug here?

-- 
Best regards,
Andrew Tropin


signature.asc
Description: PGP signature


bug#62280: r-learnr contains minified JavaScript

2023-03-19 Thread Ricardo Wurmus
The r-learnr package contains minified JavaScript files that need to be
minified from source:

learnr/inst/lib/tutorial/tutorial.js
learnr/inst/lib/i18n/i18next.min.js
learnr/inst/lib/i18n/tutorial-i18n-init.js
learnr/inst/lib/i18next/i18next.min.js
learnr/inst/lib/ace/ace.js
learnr/inst/lib/clipboardjs/clipboard.min.js
learnr/inst/lib/bootbox/bootbox.min.js
learnr/inst/lib/idb-keyval/idb-keyval-iife.js
learnr/inst/lib/idb-keyval/idb-keyval-iife-compat.min.js
learnr/inst/rmarkdown/templates/tutorial/resources/tutorial-format.js

-- 
Ricardo





bug#61627: Cannot start a container built with `guix system container --network'.

2023-03-19 Thread Arun Isaac


Hi Bruno and Ludo,

This bug seems related to your commit
802ea1f3a43e5fb8d0b8bd2882954d8a6e49cde6 . Could you weigh in?

https://issues.guix.gnu.org/61627

Thanks!
Arun