unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#72291: ‘guix pack -RR’ doesn’t support provide “fakechroot” engine for script
@ 2024-07-25 15:05 Ludovic Courtès
  0 siblings, 0 replies; only message in thread
From: Ludovic Courtès @ 2024-07-25 15:05 UTC (permalink / raw)
  To: 72291; +Cc: Romain GARBAGE

Assume a manifest like this:

--8<---------------cut here---------------start------------->8---
(use-modules (guix))

(define program
  (program-file "hello" #~(display "hello")))

(define package-tree
  (computed-file "package-with-script"
                 #~(let ((bin (string-append #$output "/bin")))
                     (mkdir #$output)
                     (mkdir bin)
                     (copy-file #$program (string-append bin "/hello")))))

(manifest (list (manifest-entry
                  (name "hello")
                  (version "0")
                  (item package-tree))))
--8<---------------cut here---------------end--------------->8---

Passing it to ‘guix pack -RR -m’ yields a bundle where the “fakechroot”
execution engine is not supported for the ‘bin/hello’ script.

The explanation is in a TODO in (guix scripts pack):

    (define (elf-loader-compile-flags program)
      ;; Return the cpp flags defining macros for the ld.so/fakechroot
      ;; wrapper of PROGRAM.
      #$(if fakechroot?
            ;; TODO: Handle scripts by wrapping their interpreter.
            #~(if (elf-file? program)
                   …
                  '())
            #~'()))

I’m not entirely sure how to address it.

One workaround is to add ‘bash-minimal’ to the pack:

  guix pack -RR bash-minimal …

… and then, on the target machine, to run Bash first:

  GUIX_EXECUTION_ENGINE=fakechroot ./bin/sh -c ./bin/the-script

Ludo’.




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-07-25 15:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-25 15:05 bug#72291: ‘guix pack -RR’ doesn’t support provide “fakechroot” engine for script Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).