unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Christopher Baines <mail@cbaines.net>
To: Ricardo Wurmus <rekado@elephly.net>
Cc: guix-devel@gnu.org
Subject: Re: avoid wrapper scripts when possible
Date: Fri, 3 Nov 2017 18:54:16 +0000	[thread overview]
Message-ID: <20171103185416.0ffc4065@cbaines.net> (raw)
In-Reply-To: <87mv44gyfv.fsf@elephly.net>

[-- Attachment #1: Type: text/plain, Size: 2689 bytes --]

On Thu, 02 Nov 2017 22:31:16 +0100
Ricardo Wurmus <rekado@elephly.net> wrote:

> Hi Guix,
> 
> the environment activation feature of our “conda” package currently
> fails.  This is because the “deactivate” shell script is wrapped in
> another shell script.  This leads to the actual shell script to be
> called “.deactivate-real”.  The script compares the value of “$0” with
> the expected name “deactivate”.  This fails so conda misbehaves.
> 
> Since “deactivate” is really just a shell script I think we could avoid
> the renaming and the external wrapper by setting the environment
> variables in the “deactivate” script itself.
> 
> This made me wonder if we could avoid shell wrappers in more cases.  If
> the target script is a Python script we could set the environment
> variables right after the Python shebang with Python code.  If the
> target script is a shell script we can set environment variables right
> there after the shebang.
> 
> For binaries (like emacs) we’d still create shell wrappers where needed,
> because it’s harder to do this natively.
> 
> What do you think?

I recently tried to implement automatic wrapping for the ruby build
system [1]. I ended up implementing a ruby specific wrapping function,
that generated a ruby wrapper, rather than a bash wrapper.

I first tried using a bash wrapper, but it broke using the -S flag
with ruby to execute the script, as when -S is passed to ruby, it
expects the script on the PATH to use ruby in the shebang, and not bash.

1: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=28773

After I wrote this, I also stumbled upon #27003: Generalized wrap phase
for perl, python. I haven't read through the thread enough to work out
what the state of it is.

2: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=27003

I've also found some other bugs relating to wrapping, [3] is about the
issue you mention, and [4] relates to the native inputs problem, that I
came across when I was working on the ruby-build-system wrapping. 

3: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=26752
4: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=25235

I haven't read through all of these in much detail though.

Back to your specific question about avoiding shell wrappers. For ruby,
I found this necessary to avoid breaking one way of invoking the
scripts.

However, I think that the file wrapping approach has advantages for
visibility. Maybe it could be tweaked to keep ensure the wrapper script
has the same name as the script its wrapping, e.g. when wrapping foo,
replace foo with a bash script, and move the real script
to .wrapped-bin/foo.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 963 bytes --]

  reply	other threads:[~2017-11-03 18:54 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-02 21:31 avoid wrapper scripts when possible Ricardo Wurmus
2017-11-03 18:54 ` Christopher Baines [this message]
2017-11-03 19:22   ` Jan Nieuwenhuizen
2017-11-03 21:17   ` Ricardo Wurmus
     [not found]     ` <874lqbghlz.fsf@elephly.net>
2017-11-03 22:41       ` Ricardo Wurmus
2017-11-05 11:10     ` Hartmut Goebel
2017-11-04 21:42   ` Eric Bavier
2017-11-04 10:12 ` Hartmut Goebel
     [not found]   ` <87tvy9ptge.fsf@elephly.net>
2017-11-05 11:00     ` Hartmut Goebel
2017-11-05 17:06       ` Ludovic Courtès
2017-11-06 15:53 ` Dave Love
  -- strict thread matches above, loose matches on Subject: below --
2021-09-07 18:52 Attila Lendvai
2021-09-07 20:41 ` Maxime Devos
2021-09-08  9:20   ` Attila Lendvai
2021-09-08 10:39     ` Maxime Devos
2021-09-24 21:38 John Kehayias

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

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171103185416.0ffc4065@cbaines.net \
    --to=mail@cbaines.net \
    --cc=guix-devel@gnu.org \
    --cc=rekado@elephly.net \
    /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 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).