public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-portage-dev] [PATCH] [checksum] Disable pygcrypt backend due to breakage
@ 2017-12-05 16:34 Michał Górny
  2017-12-05 16:42 ` Brian Dolbec
  0 siblings, 1 reply; 3+ messages in thread
From: Michał Górny @ 2017-12-05 16:34 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Michał Górny

Closes: https://bugs.gentoo.org/615620
---
 pym/portage/checksum.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/pym/portage/checksum.py b/pym/portage/checksum.py
index 5424ce56b..0841ab231 100644
--- a/pym/portage/checksum.py
+++ b/pym/portage/checksum.py
@@ -150,7 +150,10 @@ if "SHA3_256" not in hashfunc_map or "SHA3_512" not in hashfunc_map:
 # (GnuPG).
 gcrypt_algos = frozenset(('RMD160', 'WHIRLPOOL', 'SHA3_256', 'SHA3_512',
 	'STREEBOG256', 'STREEBOG512'))
-if gcrypt_algos.difference(hashfunc_map):
+# Note: currently disabled due to resource exhaustion bugs in pygcrypt.
+# Please do not reenable until upstream has a fix.
+# https://bugs.gentoo.org/615620
+if False and gcrypt_algos.difference(hashfunc_map):
 	try:
 		import binascii
 		import pygcrypt.hashcontext
-- 
2.15.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-12-05 16:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-05 16:34 [gentoo-portage-dev] [PATCH] [checksum] Disable pygcrypt backend due to breakage Michał Górny
2017-12-05 16:42 ` Brian Dolbec
2017-12-05 16:59   ` Brian Dolbec

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox