summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Stubbs <jstubbs@gentoo.org>2005-12-24 09:20:35 +0000
committerJason Stubbs <jstubbs@gentoo.org>2005-12-24 09:20:35 +0000
commit29c01db1bce425531bd268d629c251e25d32ee51 (patch)
treefe03d0ab1e7e159f88bd381b62b149b1dc82f515
parentTreat symlinks similar to regular files when unmerging and remove them if the (diff)
downloadportage-multirepo-29c01db1bce425531bd268d629c251e25d32ee51.tar.gz
portage-multirepo-29c01db1bce425531bd268d629c251e25d32ee51.tar.bz2
portage-multirepo-29c01db1bce425531bd268d629c251e25d32ee51.zip
Limiting hashing to MD5 only until behaviour improves in the case of the
needed python module not being installed. #116485 svn path=/main/trunk/; revision=2446
-rw-r--r--pym/portage_const.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pym/portage_const.py b/pym/portage_const.py
index 6ef92ccd..6ed7da43 100644
--- a/pym/portage_const.py
+++ b/pym/portage_const.py
@@ -46,7 +46,10 @@ EBUILD_PHASES = ["setup","unpack","compile","test","install","preinst","postin
EAPI = 0
HASHING_BLOCKSIZE = 32768
-MANIFEST1_HASH_FUNCTIONS = ["MD5","SHA256","RMD160"]
+# Disabling until behaviour when missing the relevant python module is
+# corrected. #116485
+#MANIFEST1_HASH_FUNCTIONS = ["MD5","SHA256","RMD160"]
+MANIFEST1_HASH_FUNCTIONS = ["MD5"]
# ===========================================================================
# END OF CONSTANTS -- END OF CONSTANTS -- END OF CONSTANTS -- END OF CONSTANT