summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-05-02 17:39:54 +0200
committerMichał Górny <mgorny@gentoo.org>2018-05-07 09:45:17 +0200
commitc54e5e702dbf2ade6cba311101fcc08f2cc4c6eb (patch)
treeb0ff3821393303d043fe470d2349964d4363ba86
parentdistutils-r1.eclass: Enable EAPI 7 support (diff)
downloadgentoo-c54e5e702dbf2ade6cba311101fcc08f2cc4c6eb.tar.gz
gentoo-c54e5e702dbf2ade6cba311101fcc08f2cc4c6eb.tar.bz2
gentoo-c54e5e702dbf2ade6cba311101fcc08f2cc4c6eb.zip
profiles/base: Set initial ENV_UNSET (EAPI 7)
Now that EAPI 7 is accepted and implemented in Portage, provide the initial environment blacklist for coming EAPI 7 ebuilds. The list is based on existing eclasses, xdg-utils mostly. Rationale is provided in the comment above ENV_UNSET.
-rw-r--r--profiles/base/make.defaults12
1 files changed, 12 insertions, 0 deletions
diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults
index bd038bebf167..cbc527e954e5 100644
--- a/profiles/base/make.defaults
+++ b/profiles/base/make.defaults
@@ -22,6 +22,18 @@ USE_EXPAND_HIDDEN="USERLAND KERNEL ELIBC ABI_MIPS ABI_PPC ABI_S390 ABI_X86 CPU_F
CONFIG_PROTECT="/etc"
CONFIG_PROTECT_MASK="/etc/env.d /etc/gconf"
+# EAPI 7 environment variable blacklist.
+#
+# DBUS_SESSION_BUS_ADDRESS to avoid trying to access the user's session
+# bus.
+#
+# DISPLAY and XAUTHORITY to avoid trying to access the user's X11.
+#
+# XDG_* since the values coming from user environment can collide with
+# ebuild-set ${HOME} (e.g. by referring to user's home directory).
+# We exclude XDG_DATA_DIRS & XDG_CONFIG_DIRS as those are set in env.d.
+ENV_UNSET="DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR"
+
# Variables that are set exclusively by the profile
# and not by user configuration files.
PROFILE_ONLY_VARIABLES="${PROFILE_ONLY_VARIABLES} ELIBC IUSE_IMPLICIT KERNEL USERLAND USE_EXPAND_IMPLICIT USE_EXPAND_UNPREFIXED USE_EXPAND_VALUES_ELIBC USE_EXPAND_VALUES_KERNEL USE_EXPAND_VALUES_USERLAND"