* bug#30680: Installation of Racket packages tries to write to the store @ 2018-03-02 16:52 Konrad Hinsen 2018-08-12 18:25 ` bug#30680: [PATCH] Patch Racket to fix bug #30680 Timothy Sample 0 siblings, 1 reply; 5+ messages in thread From: Konrad Hinsen @ 2018-03-02 16:52 UTC (permalink / raw) To: 30680 Hi everyone, After installing Racket: guix package -i racket I tried to install a Racket package: raco pkg install sxml I'd expect this to install the package "sxml" into $HOME/.racket, as it does when Racket is installed via Debian. It actually does this, and the package is usable and looks complete (when comparing with an installation on another machine). However, for bigger packages some compilation results are missing from $HOME/.racket. There is a long list of errors (full log below) due to Racket trying to write to locations in the store. The paths suggest that these are temporary files, and that the location they are written to is completely bogus (it's the directory that holds the openssl module). I traced this back as far as I could by looking at the Racket compiler source code. Compilation generates a temporary file in the same directory where the result is supposed to go. If no errors occur, the temporary file is then renamed to become the output. The partial stack traces point to locations in the code that do a recursive traversal of a library in order to compile everything. Unfortunately, the part that decides where the output goes is not referenced in the stack trace. Konrad. $ raco pkg install sxml Resolving "sxml" via https://download.racket-lang.org/releases/6.11/catalog/ Resolving "sxml" via https://pkgs.racket-lang.org Downloading repository github://github.com/jbclements/sxml/master raco setup: version: 6.11 raco setup: platform: x86_64-linux [3m] raco setup: installation name: 6.11 raco setup: variants: 3m raco setup: main collects: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects raco setup: collects paths: raco setup: /home/hinsen/.racket/6.11/collects raco setup: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects raco setup: main pkgs: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/pkgs raco setup: pkgs paths: raco setup: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/pkgs raco setup: /home/hinsen/.racket/6.11/pkgs raco setup: links files: raco setup: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/links.rktd raco setup: /home/hinsen/.racket/6.11/links.rktd raco setup: main docs: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/doc/racket raco setup: --- updating info-domain tables --- raco setup: updating: /home/hinsen/.racket/6.11/share/info-cache.rktd raco setup: --- pre-installing collections --- raco setup: --- installing foreign libraries --- raco setup: --- installing shared files --- raco setup: --- compiling collections --- raco setup: --- parallel build using 4 jobs --- raco setup: 3 making: <pkgs>/sxml/sxml (sxml) open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549081 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/access-remote.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/id.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/multi-parser.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/xpath-context_xlink.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ddo-axes.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549156 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/access-remote.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/id.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/multi-parser.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549266 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/access-remote.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/id.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549365 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/access-remote.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/id.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/multi-parser.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... raco setup: 3 making: <pkgs>/sxml/sxml/scribblings open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/compiled/tmp15200075491520007549402 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/scribblings/extract-provides.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 6 more times] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:782:4: compilation-manager-load-handler standard-module-name-resolver /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:405:23 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/syntax/modcode.rkt:62:2: reader /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/syntax/modcode.rkt:279:5: compile-one /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* ... raco setup: 3 making: <pkgs>/sxml/sxml/ssax (ssax) open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549425 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/scribblings/util.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549455 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/access-remote.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549468 system error: Permission denied; errno=13 context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549519 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/scribblings/sxml.scrbl context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549589 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/access-remote.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/ssax.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549597 system error: Permission denied; errno=13 context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... open-output-file: cannot open output file path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549604 system error: Permission denied; errno=13 compilation context...: /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/access-remote.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/id.rkt /home/hinsen/.racket/6.11/pkgs/sxml/sxml/ssax/multi-parser.rkt context...: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/private/more-scheme.rkt:261:28 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/file.rkt:199:0: call-with-atomic-output-file20 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:363:0: compile-zo* /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:572:26 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:564:42 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict [repeats 1 more time] /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:723:0: ormap-strict /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:635:0: compile-root /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/compiler/cm.rkt:688:15 ... raco setup: --- creating launchers --- raco setup: --- installing man pages --- raco setup: --- building documentation --- raco setup: 3 running: <pkgs>/racket-index/scribblings/main/user/local-redirect.scrbl raco setup: 1 running: <pkgs>/racket-index/scribblings/main/user/release.scrbl raco setup: 2 running: <pkgs>/racket-index/scribblings/main/user/search.scrbl raco setup: 3 running: <pkgs>/racket-index/scribblings/main/user/start.scrbl raco setup: 0 running: <pkgs>/sxml/sxml/scribblings/sxml.scrbl raco setup: WARNING: undefined tag in <pkgs>/sxml/sxml/scribblings/sxml.scrbl: raco setup: ((lib "sxml/scribblings/util.rkt") #%provide) raco setup: ((lib "sxml/scribblings/util.rkt") ->) raco setup: ((lib "sxml/scribblings/util.rkt") ...) raco setup: ((lib "sxml/scribblings/util.rkt") any/c) raco setup: ((lib "sxml/scribblings/util.rkt") boolean?) raco setup: ((lib "sxml/scribblings/util.rkt") caar) raco setup: ((lib "sxml/scribblings/util.rkt") cdar) raco setup: ((lib "sxml/scribblings/util.rkt") cdr) raco setup: ((lib "sxml/scribblings/util.rkt") cond) raco setup: ((lib "sxml/scribblings/util.rkt") cons) raco setup: ((lib "sxml/scribblings/util.rkt") cons/c) raco setup: ((lib "sxml/scribblings/util.rkt") current-output-port) raco setup: ((lib "sxml/scribblings/util.rkt") define) raco setup: ((lib "sxml/scribblings/util.rkt") else) raco setup: ((lib "sxml/scribblings/util.rkt") eq?) raco setup: ((lib "sxml/scribblings/util.rkt") equal?) raco setup: ((lib "sxml/scribblings/util.rkt") exact-positive-integer?) raco setup: ((lib "sxml/scribblings/util.rkt") for/fold) raco setup: ((lib "sxml/scribblings/util.rkt") if) raco setup: ((lib "sxml/scribblings/util.rkt") in-range) raco setup: ((lib "sxml/scribblings/util.rkt") input-port?) raco setup: ((lib "sxml/scribblings/util.rkt") lambda) raco setup: ((lib "sxml/scribblings/util.rkt") let) raco setup: ((lib "sxml/scribblings/util.rkt") list) raco setup: ((lib "sxml/scribblings/util.rkt") list*) raco setup: ((lib "sxml/scribblings/util.rkt") list/c) raco setup: ((lib "sxml/scribblings/util.rkt") list?) raco setup: ((lib "sxml/scribblings/util.rkt") listof) raco setup: ((lib "sxml/scribblings/util.rkt") null?) raco setup: ((lib "sxml/scribblings/util.rkt") number->string) raco setup: ((lib "sxml/scribblings/util.rkt") open-input-string) raco setup: ((lib "sxml/scribblings/util.rkt") or/c) raco setup: ((lib "sxml/scribblings/util.rkt") output-port?) raco setup: ((lib "sxml/scribblings/util.rkt") path-string?) raco setup: ((lib "sxml/scribblings/util.rkt") port?) raco setup: ((lib "sxml/scribblings/util.rkt") procedure?) raco setup: ((lib "sxml/scribblings/util.rkt") require) raco setup: ((lib "sxml/scribblings/util.rkt") string?) raco setup: ((lib "sxml/scribblings/util.rkt") symbol?) raco setup: ((lib "sxml/scribblings/util.rkt") void?) raco setup: 3 rendering: <pkgs>/racket-index/scribblings/main/user/local-redirect.scrbl raco setup: 2 rendering: <pkgs>/racket-index/scribblings/main/user/release.scrbl raco setup: 1 rendering: <pkgs>/racket-index/scribblings/main/user/search.scrbl raco setup: 0 rendering: <pkgs>/racket-index/scribblings/main/user/start.scrbl raco setup: 2 rendering: <pkgs>/sxml/sxml/scribblings/sxml.scrbl raco setup: --- installing collections --- raco setup: --- post-installing collections --- raco setup: --- summary of errors --- raco setup: error: during making for <pkgs>/sxml/sxml (sxml) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549081 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/ssax/access-remote.rkt raco setup: error: during making for <pkgs>/sxml/sxml (sxml) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549156 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/ssax/access-remote.rkt raco setup: error: during making for <pkgs>/sxml/sxml (sxml) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549266 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/ssax/access-remote.rkt raco setup: error: during making for <pkgs>/sxml/sxml (sxml) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549365 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/ssax/access-remote.rkt raco setup: error: during making for <pkgs>/sxml/sxml/scribblings raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/racket/compiled/tmp15200075491520007549402 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/scribblings/extract-provides.rkt raco setup: error: during making for <pkgs>/sxml/sxml/scribblings raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549425 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/scribblings/util.rkt raco setup: error: during making for <pkgs>/sxml/sxml/ssax (ssax) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549455 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/ssax/access-remote.rkt raco setup: error: during making for <pkgs>/sxml/sxml (sxml) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549468 raco setup: system error: Permission denied; errno=13 raco setup: error: during making for <pkgs>/sxml/sxml (sxml) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549519 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/scribblings/sxml.scrbl raco setup: error: during making for <pkgs>/sxml/sxml/ssax (ssax) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549589 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/ssax/access-remote.rkt raco setup: error: during making for <pkgs>/sxml/sxml/ssax (ssax) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549597 raco setup: system error: Permission denied; errno=13 raco setup: error: during making for <pkgs>/sxml/sxml (sxml) raco setup: open-output-file: cannot open output file raco setup: path: /gnu/store/wnqdzv3f0i86nk3nq15aavpb7kg7fbwx-racket-6.11/share/racket/collects/openssl/compiled/tmp15200075491520007549604 raco setup: system error: Permission denied; errno=13 raco setup: compiling: <pkgs>/sxml/sxml/ssax/access-remote.rkt raco pkg install: packages installed, although setup reported errors ^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#30680: [PATCH] Patch Racket to fix bug #30680 2018-03-02 16:52 bug#30680: Installation of Racket packages tries to write to the store Konrad Hinsen @ 2018-08-12 18:25 ` Timothy Sample 2018-08-12 20:35 ` Christopher Lemmer Webber 0 siblings, 1 reply; 5+ messages in thread From: Timothy Sample @ 2018-08-12 18:25 UTC (permalink / raw) To: guix-patches [-- Attachment #1: Type: text/plain, Size: 792 bytes --] Hi Guix, (Patch is attached below.) This patch fixes <https://debbugs.gnu.org/30680>. It does so by patching Racket to treat store files specially. I have verified that it both fixes the bug above and still recompiles non-store files. As far as I can tell, Racket only uses these checksums as part of its “setup” library. When deciding whether to use a bytecode file during evaluation, it does not verify the checksum. That’s why only the “setup” code is patched. As a side note, both GDB and Go have similar problems: • <https://debbugs.gnu.org/19973> • <https://debbugs.gnu.org/25752> If there ever is a more general solution, this patch will no longer be necessary. (Also, Racket takes a bit of time to build, so reviewers beware!) [-- Attachment #2: /home/samplet/code/guix-wip-racket/0001-gnu-racket-Ignore-bytecode-checksums-in-the-store.patch --] [-- Type: message/external-body, Size: 102 bytes --] [-- Attachment #3: Type: text/plain, Size: 8 bytes --] -- Tim ^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#30680: [PATCH] Patch Racket to fix bug #30680 2018-08-12 18:25 ` bug#30680: [PATCH] Patch Racket to fix bug #30680 Timothy Sample @ 2018-08-12 20:35 ` Christopher Lemmer Webber 2018-08-12 20:51 ` Timothy Sample 0 siblings, 1 reply; 5+ messages in thread From: Christopher Lemmer Webber @ 2018-08-12 20:35 UTC (permalink / raw) To: Timothy Sample; +Cc: guix-patches Timothy Sample writes: > Hi Guix, > > (Patch is attached below.) > > This patch fixes <https://debbugs.gnu.org/30680>. It does so by > patching Racket to treat store files specially. I have verified that it > both fixes the bug above and still recompiles non-store files. > > As far as I can tell, Racket only uses these checksums as part of its > “setup” library. When deciding whether to use a bytecode file during > evaluation, it does not verify the checksum. That’s why only the > “setup” code is patched. > > As a side note, both GDB and Go have similar problems: > > • <https://debbugs.gnu.org/19973> > • <https://debbugs.gnu.org/25752> > > If there ever is a more general solution, this patch will no longer be > necessary. > > (Also, Racket takes a bit of time to build, so reviewers beware!) > > > -- Tim Oh wait... it seems like the patch is not actually attached? I assume that must be an error! Actually if I look at the raw view of the email I see: --=-=-= Content-Type: message/external-body; name="/home/samplet/code/guix-wip-racket/0001-gnu-racket-Ignore-bytecode-checksums-in-the-store.patch"; access-type=local-file Content-Type: text/x-patch Content-ID: <87pnynbfy0.fsf@ngyro.com> Content-Transfer-Encoding: binary --=-=-= So it looks like it should be attached, but I don't see the file contents? Perhaps this is an error on my end! But I'm very eager to test this patch! ^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#30680: [PATCH] Patch Racket to fix bug #30680 2018-08-12 20:35 ` Christopher Lemmer Webber @ 2018-08-12 20:51 ` Timothy Sample 2018-08-13 13:56 ` Konrad Hinsen 0 siblings, 1 reply; 5+ messages in thread From: Timothy Sample @ 2018-08-12 20:51 UTC (permalink / raw) To: Christopher Lemmer Webber; +Cc: guix-patches [-- Attachment #1: Type: text/plain, Size: 1683 bytes --] Christopher Lemmer Webber <cwebber@dustycloud.org> writes: > Timothy Sample writes: > >> Hi Guix, >> >> (Patch is attached below.) >> >> This patch fixes <https://debbugs.gnu.org/30680>. It does so by >> patching Racket to treat store files specially. I have verified that it >> both fixes the bug above and still recompiles non-store files. >> >> As far as I can tell, Racket only uses these checksums as part of its >> “setup” library. When deciding whether to use a bytecode file during >> evaluation, it does not verify the checksum. That’s why only the >> “setup” code is patched. >> >> As a side note, both GDB and Go have similar problems: >> >> • <https://debbugs.gnu.org/19973> >> • <https://debbugs.gnu.org/25752> >> >> If there ever is a more general solution, this patch will no longer be >> necessary. >> >> (Also, Racket takes a bit of time to build, so reviewers beware!) >> >> >> -- Tim > > Oh wait... it seems like the patch is not actually attached? I assume > that must be an error! > > Actually if I look at the raw view of the email I see: > > --=-=-= > Content-Type: message/external-body; > name="/home/samplet/code/guix-wip-racket/0001-gnu-racket-Ignore-bytecode-checksums-in-the-store.patch"; > access-type=local-file > > Content-Type: text/x-patch > Content-ID: <87pnynbfy0.fsf@ngyro.com> > Content-Transfer-Encoding: binary > > > > --=-=-= > > So it looks like it should be attached, but I don't see the file > contents? > > Perhaps this is an error on my end! But I'm very eager to test this > patch! Oops! My fault. The patch is attached here. *crosses fingers* [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: Racket patch --] [-- Type: text/x-patch, Size: 3609 bytes --] From 69383706548fadf550c84b3f0d07fc55d1c67858 Mon Sep 17 00:00:00 2001 From: Timothy Sample <samplet@ngyro.com> Date: Sun, 12 Aug 2018 11:12:38 -0400 Subject: [PATCH] gnu: racket: Ignore bytecode checksums in the store. Fixes <https://debbugs.gnu.org/30680>. * gnu/packages/patches/racket-store-checksum-override.patch: New file. * gnu/packages/scheme.scm (racket)[sources]: Add it. --- .../racket-store-checksum-override.patch | 42 +++++++++++++++++++ gnu/packages/scheme.scm | 3 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 gnu/packages/patches/racket-store-checksum-override.patch diff --git a/gnu/packages/patches/racket-store-checksum-override.patch b/gnu/packages/patches/racket-store-checksum-override.patch new file mode 100644 index 000000000..b22facca0 --- /dev/null +++ b/gnu/packages/patches/racket-store-checksum-override.patch @@ -0,0 +1,42 @@ +Racket uses checksums to test if it needs to recompile its source +files to bytecode. If Racket is updated by grafting, the source and +bytecode files get updated, but the checksum stays the same. Since +the checksum no longer matches the source file, Racket tries to +regenerate the bytecode and write it to the store, causing errors +because the store is immutable. This patch makes Racket ignore +checksums for files in the store. + +See <https://debbugs.gnu.org/30680> for details. + +diff -ruN racket-6.12/collects/compiler/cm.rkt racket-6.12-patched/collects/compiler/cm.rkt +--- racket-6.12/collects/compiler/cm.rkt 1969-12-31 19:00:00.000000000 -0500 ++++ racket-6.12-patched/collects/compiler/cm.rkt 2018-08-12 06:36:46.061142149 -0400 +@@ -7,6 +7,7 @@ + racket/list + racket/path + racket/promise ++ racket/string + openssl/sha1 + racket/place + setup/collects +@@ -627,6 +628,10 @@ + #f + (list src-hash recorded-hash))) + ++(define (store-reference? path) ++ (let ([store-prefix (or (getenv "NIX_STORE") "/gnu/store")]) ++ (string-prefix? (path->string path) store-prefix))) ++ + (define (rkt->ss p) + (if (path-has-extension? p #".rkt") + (path-replace-extension p #".ss") +@@ -679,7 +684,8 @@ + (trace-printf "newer src... ~a > ~a" path-time path-zo-time) + ;; If `sha1-only?', then `maybe-compile-zo' returns a #f or thunk: + (maybe-compile-zo sha1-only? deps path->mode roots path orig-path read-src-syntax up-to-date collection-cache new-seen)] +- [(different-source-sha1-and-dep-recorded path deps) ++ [(and (not (store-reference? path)) ++ (different-source-sha1-and-dep-recorded path deps)) + => (lambda (difference) + (trace-printf "different src hash... ~a" difference) + ;; If `sha1-only?', then `maybe-compile-zo' returns a #f or thunk: diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index 4178a45a8..b30245cce 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -421,7 +421,8 @@ implementation techniques and as an expository tool.") (patches (search-patches ;; See: https://github.com/racket/racket/issues/1962 ;; This can be removed in whatever Racket release comes after 6.12 - "racket-fix-xform-issue.patch")))) + "racket-fix-xform-issue.patch" + "racket-store-checksum-override.patch")))) (build-system gnu-build-system) (arguments '(#:phases -- 2.18.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#30680: [PATCH] Patch Racket to fix bug #30680 2018-08-12 20:51 ` Timothy Sample @ 2018-08-13 13:56 ` Konrad Hinsen 0 siblings, 0 replies; 5+ messages in thread From: Konrad Hinsen @ 2018-08-13 13:56 UTC (permalink / raw) To: guix-patches [-- Attachment #1: Type: text/plain, Size: 527 bytes --] Timothy Sample <samplet@ngyro.com> writes: > Oops! My fault. The patch is attached here. *crosses fingers* I have ported the patch to Racket 7.0, the modified version is attached. It gets rid of all the store-related error messages I got when installing packages with raco, so as far as I am concerned the bug is indeed fixed. BTW, the patch (to Guix) for updating Racket to 7.0 is at https://debbugs.gnu.org/32355 (but does not yet include this patch to Racket). Thanks a lot for resolving this issue! Konrad. [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: 0001-Patch-for-compilation-under-Guix.patch --] [-- Type: text/x-diff, Size: 2318 bytes --] From da6defb46b69dfb55e5188ed851f5c1443f748ba Mon Sep 17 00:00:00 2001 From: Konrad Hinsen <konrad.hinsen@fastmail.net> Date: Mon, 13 Aug 2018 14:50:37 +0200 Subject: [PATCH] Patch for compilation under Guix (Port to Racket 7.0 of Timothy Sample's patch for Racket 6.12) Racket uses checksums to test if it needs to recompile its source files to bytecode. If Racket is updated by grafting, the source and bytecode files get updated, but the checksum stays the same. Since the checksum no longer matches the source file, Racket tries to regenerate the bytecode and write it to the store, causing errors because the store is immutable. This patch makes Racket ignore checksums for files in the store. See <https://debbugs.gnu.org/30680> for details. --- collects/compiler/private/cm-minimal.rkt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/collects/compiler/private/cm-minimal.rkt b/collects/compiler/private/cm-minimal.rkt index a5a5407..15af6b8 100644 --- a/collects/compiler/private/cm-minimal.rkt +++ b/collects/compiler/private/cm-minimal.rkt @@ -7,6 +7,7 @@ racket/list racket/path racket/promise + racket/string openssl/sha1 setup/collects compiler/compilation-path @@ -543,6 +544,10 @@ #f (list src-hash recorded-hash))) +(define (store-reference? path) + (let ([store-prefix (or (getenv "NIX_STORE") "/gnu/store")]) + (string-prefix? (path->string path) store-prefix))) + (define (rkt->ss p) (if (path-has-extension? p #".rkt") (path-replace-extension p #".ss") @@ -595,7 +600,8 @@ (trace-printf "newer src... ~a > ~a" path-time path-zo-time) ;; If `sha1-only?', then `maybe-compile-zo' returns a #f or thunk: (maybe-compile-zo sha1-only? deps path->mode roots path orig-path read-src-syntax up-to-date collection-cache new-seen)] - [(different-source-sha1-and-dep-recorded path deps) + [(and (not (store-reference? path)) + (different-source-sha1-and-dep-recorded path deps)) => (lambda (difference) (trace-printf "different src hash... ~a" difference) ;; If `sha1-only?', then `maybe-compile-zo' returns a #f or thunk: -- 2.18.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-08-13 13:57 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-03-02 16:52 bug#30680: Installation of Racket packages tries to write to the store Konrad Hinsen 2018-08-12 18:25 ` bug#30680: [PATCH] Patch Racket to fix bug #30680 Timothy Sample 2018-08-12 20:35 ` Christopher Lemmer Webber 2018-08-12 20:51 ` Timothy Sample 2018-08-13 13:56 ` Konrad Hinsen
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.