diff options
author | 2022-10-04 07:09:19 -0700 | |
---|---|---|
committer | 2022-10-14 06:15:47 +0200 | |
commit | 1692c261b7393b5dfee906ae505b06261a494137 (patch) | |
tree | 196ebca57277d75e0c0bf62ba70ac2cbd2e5cfa0 /app-eselect/eselect-sh/files | |
parent | dev-util/dialog: Stabilize 1.3.20220728 ppc, #877055 (diff) | |
download | gentoo-1692c261b7393b5dfee906ae505b06261a494137.tar.gz gentoo-1692c261b7393b5dfee906ae505b06261a494137.tar.bz2 gentoo-1692c261b7393b5dfee906ae505b06261a494137.zip |
app-eselect/eselect-sh: Add 0.5.0
Adds support to set lksh as /bin/sh which preferred /bin/sh for mksh
according to upstream.
Using mksh as /bin/sh is only POSIX on 32-bit systems, but some may
still prefer it as POSIX requires some undefined behavior which is
respected with lksh.
Closes: https://github.com/gentoo/gentoo/pull/20787
Signed-off-by: orbea <orbea@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/27615
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-eselect/eselect-sh/files')
-rw-r--r-- | app-eselect/eselect-sh/files/sh.eselect-0.5.0 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app-eselect/eselect-sh/files/sh.eselect-0.5.0 b/app-eselect/eselect-sh/files/sh.eselect-0.5.0 new file mode 100644 index 000000000000..aa0f3c08494f --- /dev/null +++ b/app-eselect/eselect-sh/files/sh.eselect-0.5.0 @@ -0,0 +1,13 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +DESCRIPTION="Manage /bin/sh (POSIX shell) implementations" +MAINTAINER="mgorny@gentoo.org" +VERSION="0.5.0" + +SYMLINK_PATH=/bin/sh +SYMLINK_TARGETS=( bash dash lksh mksh ) +SYMLINK_DESCRIPTION='POSIX shell' +SYMLINK_CRUCIAL=1 + +inherit bin-symlink |