diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-11-23 03:02:57 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-11-23 03:02:57 +0000 |
commit | 71dd9d29cdaf7cc0ecdb9ea37d128726a941c630 (patch) | |
tree | 4eccd905f575579fe47abb8a83bbdb44ceb8c929 /app-shells/zsh | |
parent | c7a7ec40cf928d8fc6a8241aa208272c008c7b4d (diff) |
gentoo auto-resync : 23:11:2024 - 03:02:56
Diffstat (limited to 'app-shells/zsh')
-rw-r--r-- | app-shells/zsh/Manifest | 1 | ||||
-rw-r--r-- | app-shells/zsh/files/zprofile-4 | 42 |
2 files changed, 0 insertions, 43 deletions
diff --git a/app-shells/zsh/Manifest b/app-shells/zsh/Manifest index c04e79ad6e1e..52ba31b93e78 100644 --- a/app-shells/zsh/Manifest +++ b/app-shells/zsh/Manifest @@ -1,5 +1,4 @@ AUX prompt_gentoo_setup-1 817 BLAKE2B 37f6f7eae4602ca62b8bd8a01c442712903b5b1823959a58ef3bee41701e64d372dcf21fc2aa37421751349769605acedcca60e7b63328d662c96c42f7771485 SHA512 16298741c01755108234b7a6d4f5bca98a5033fa390c1796129368e11067f3f3884a3cb34629172d0cb3cf7eff35912149022de0ff6ea429e5327a71fc9a0aea -AUX zprofile-4 1314 BLAKE2B 8373d9f68613d5d44121c46a02dd7a5c988f4a3d948aa6bf96a9b0c5f67967f4b787b7ab346e7fabcdd8805321a89b63e6919d5abef082d24e4c46157c68e4db SHA512 5f87b4f0e59bb338f9aa8ec811424d37042ab5ad889aa00f6f912003b7aaaf8b3ea59746590c639a45facace0743deab89779ae5cee8ff6a39beda99864c9cf7 AUX zprofile-5 652 BLAKE2B 345661b262b365ac577b2537be87b61430f1fe21f3cfc4f7a86309172f1def2eb3ae46a6d100e8495aacaf55b407979666b6d0630c059b723b3344f6362b4bda SHA512 703742672b376c92881493cfe1c2e3dec318e2530cef4219c2211341bcdeb5690d09642e0490c59c4081e615bde181c937f04cadf4d8b7207916f9ed698de082 AUX zsh-5.3-init.d-gentoo.diff 1048 BLAKE2B 295e391679ef876a7bdaeaf6dc4b1b3a342c40f092f8cbeba137ee5ea6d26e16f988fc92f105bfcec739bc2aeca62195839b80dee337de8bfdfb5ff00a34fa22 SHA512 9f059cf4b99b7006955ab0ac43d4a4b4d762d193da9a738f771c562f2c3af3a9125694da59c584a3ff829598443e5429c873319ecd8fae2feba7096b597798dd AUX zsh-5.9-c99.patch 2942 BLAKE2B 712e976811a955f79c935ef9f50bdac1233addcafa78b14ca721a5d60f42c9e175e2f529131d57d9e2eecbfe0a7ae79cece8277b45b680de43c77a37504317e1 SHA512 89a472cd0c08869cee82049a26a7b434fc2b67f45e6450e552dac2c17c9df17b406584fa64a4b2ca91ce8a0470c303bce8080e43a37f7c643064db713bfbbf98 diff --git a/app-shells/zsh/files/zprofile-4 b/app-shells/zsh/files/zprofile-4 deleted file mode 100644 index 9155aae3fc58..000000000000 --- a/app-shells/zsh/files/zprofile-4 +++ /dev/null @@ -1,42 +0,0 @@ -# /etc/zsh/zprofile - -# Load environment settings from profile.env, which is created by -# env-update from the files in /etc/env.d -if [[ -e /etc/profile.env ]] ; then - . /etc/profile.env -fi - -# You should override these in your ~/.zprofile (or equivalent) for per-user -# settings. For system defaults, you can add a new file in /etc/profile.d/. -export EDITOR=${EDITOR:-/bin/nano} -export PAGER=${PAGER:-/usr/bin/less} - -# 077 would be more secure, but 022 is generally quite realistic -umask 022 - -# Set up PATH depending on whether we're root or a normal user. -# There's no real reason to exclude sbin paths from the normal user, -# but it can make tab-completion easier when they aren't in the -# user's PATH to pollute the executable namespace. -# -# It is intentional in the following line to use || instead of -o. -# This way the evaluation can be short-circuited and calling whoami is -# avoided. -if [[ "${EUID}" = "0" ]] || [[ "${USER}" = "root" ]] ; then - # Check to make sure ROOTPATH is sane before we use it. - # https://bugs.gentoo.org/656400 - if [[ -n ${ROOTPATH} ]] && [[ :${ROOTPATH}: == *:/usr/sbin:* ]] ; then - PATH="${ROOTPATH}" - fi -fi -export PATH -unset ROOTPATH - -shopts=$- -setopt nullglob -for sh in /etc/profile.d/*.sh ; do - [[ -r "${sh}" ]] && . "${sh}" -done -unsetopt nullglob -set -$shopts -unset sh shopts |