diff options
author | Francisco Javier Félix <web@inode64.com> | 2021-07-07 10:37:41 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-07-17 10:27:24 -0700 |
commit | d4af5bb08dbb9e759d6fac16cf23feba26ea7e3b (patch) | |
tree | cd95478d8a7c25c26919c62f3cad8dbcb0ba63aa /app-admin/salt | |
parent | sys-libs/libxcrypt: block sys-libs/glibc[crypt(+)] (diff) | |
download | gentoo-d4af5bb08dbb9e759d6fac16cf23feba26ea7e3b.tar.gz gentoo-d4af5bb08dbb9e759d6fac16cf23feba26ea7e3b.tar.bz2 gentoo-d4af5bb08dbb9e759d6fac16cf23feba26ea7e3b.zip |
app-admin/salt: Remove contextvars dependency
Closes: https://bugs.gentoo.org/799431
Closes: https://github.com/gentoo/gentoo/pull/21547
Signed-off-by: Francisco Javier Félix <ffelix@inode64.com>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'app-admin/salt')
-rw-r--r-- | app-admin/salt/salt-3003.1-r1.ebuild (renamed from app-admin/salt/salt-3003.1.ebuild) | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app-admin/salt/salt-3003.1.ebuild b/app-admin/salt/salt-3003.1-r1.ebuild index 83ee4b779050..5c542bc2bd47 100644 --- a/app-admin/salt/salt-3003.1.ebuild +++ b/app-admin/salt/salt-3003.1-r1.ebuild @@ -143,6 +143,9 @@ python_prepare() { local abc abc="$("${EPYTHON}" -c 'import collections.abc; print("|".join((c for c in dir(collections.abc) if not c.startswith("_"))))')" || die find -name '*.py' -type f -print0 | xargs -0 sed -r -e "s:collections\\.(${abc}):collections.abc.\\1:g" -i || die + + # removes contextvars, see bug: https://bugs.gentoo.org/799431 + sed -i '/^contextvars/d' requirements/base.txt || die } python_install_all() { |