summaryrefslogtreecommitdiffstats
path: root/pym/portage/package/ebuild/_config/special_env_vars.py
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2012-01-08 07:19:06 +0100
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Gentoo.Org>2012-01-08 07:19:06 +0100
commit0d9ea2752aa7819e5b26b47920c09218d9f5b7c2 (patch)
tree1dcaf45fb92c6b0057495a431eaab303c55a49d5 /pym/portage/package/ebuild/_config/special_env_vars.py
parentd933ef603595ef43128065cf1791be97c5515578 (diff)
downloadportage-0d9ea2752aa7819e5b26b47920c09218d9f5b7c2.tar.gz
portage-0d9ea2752aa7819e5b26b47920c09218d9f5b7c2.tar.bz2
portage-0d9ea2752aa7819e5b26b47920c09218d9f5b7c2.zip
Set REPOSITORY variable in ebuild environment in EAPI="4-python".
Diffstat (limited to 'pym/portage/package/ebuild/_config/special_env_vars.py')
-rw-r--r--pym/portage/package/ebuild/_config/special_env_vars.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/portage/package/ebuild/_config/special_env_vars.py b/pym/portage/package/ebuild/_config/special_env_vars.py
index c1628f773..132f8ebd8 100644
--- a/pym/portage/package/ebuild/_config/special_env_vars.py
+++ b/pym/portage/package/ebuild/_config/special_env_vars.py
@@ -1,4 +1,4 @@
-# Copyright 2010-2011 Gentoo Foundation
+# Copyright 2010-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
__all__ = (
@@ -21,8 +21,8 @@ env_blacklist = frozenset((
"PORTAGE_BACKGROUND_UNMERGE", "PORTAGE_BUILDIR_LOCKED",
"PORTAGE_BUILT_USE", "PORTAGE_CONFIGROOT", "PORTAGE_IUSE",
"PORTAGE_NONFATAL", "PORTAGE_REPO_NAME",
- "PORTAGE_USE", "PROPERTIES", "PROVIDE", "RDEPEND", "RESTRICT",
- "ROOT", "SLOT", "SRC_URI"
+ "PORTAGE_USE", "PROPERTIES", "PROVIDE", "RDEPEND", "REPOSITORY",
+ "RESTRICT", "ROOT", "SLOT", "SRC_URI"
))
environ_whitelist = []