Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Portable rootless ZSH



On Sat, Oct 12, 2019 at 5:13 PM Coden <codenb@xxxxxxxxxxxxxx> wrote:
>
> I don't understand one thing. I want to build rootless binary.
> * When I wrote that there is a way to build the binary on old version of packages I mean that library version checking raises the error only if the current packages version is older than used when compile. This workaround allows me to imitate "rootless" and I've tested my binary on modern linux distros versions and it works.

"Your mileage may vary" but typically if you want a fully portable
binary you need to static link everything.  Otherwise you're
eventually going to run into some kind of dynamic linkage problem,
even it it seems currently to work to compile with an older shared
object and then run with a newer one.

> * But when you wrote about prefix-like flags I think you understand that prefix-like flags requres absolute path from root like /usr/share. It's not rootless behaviour. Yes we can change prefixes for lib paths on building but we can't make it relative. I'm wrong?

Only a couple of them require an absolute path, and ultimately that
only matters to "make install" (it changes $module_path but all of
your modules are static).  Some variation of this seems to work:

./configure --disable-dynamic --prefix=$PWD/run --bindir=$PWD/run
--enable-etcdir=./run/etc --enable-scriptdir=./run/scripts
--enable-fndir=./run/functions --enable-function-subdirs
--disable-site-fndir
(edit config.modules)
make
make install
cd run
ln -s . run
mkdir etc
cd ..

Now you can move the "run" directory anywhere, even rename it provided
it contains the symlink "run" pointing to itself, and when you cd into
it and then execute "./zsh", everything works.  There is one other
step needed:  After moving/copying/whatever the "run" directory to its
final location, you have to create a zshenv file in that "etc" subdir
and assign fpath.  You could also assign module_path for completeness,
but as noted nothing will ever use it.   To assign the fpath you can
just do:

./zsh -fc 'typeset -p fpath' | sed "s,./run,$PWD,g" > etc/zshenv

and now you're all set.

> What step in your way gives us relativity?

The problem with your scheme is that anything loaded at run time --
such as the completion functions -- HAS to be loaded by absolute path,
in order for the shell to ever be able to change directory.  That's
why normally one would instead create a zsh package that was intended
always to be installed in a predetermined fixed location, and use the
configure options to set the default paths to that fixed place.  This
is the procedure my previous message was describing.



Messages sorted by: Reverse Date, Date, Thread, Author