Limiting hashing to MD5 only until behaviour improves in the case of the
authorJason Stubbs <jstubbs@gentoo.org>
Sat, 24 Dec 2005 09:20:35 +0000 (09:20 -0000)
committerJason Stubbs <jstubbs@gentoo.org>
Sat, 24 Dec 2005 09:20:35 +0000 (09:20 -0000)
needed python module not being installed.  #116485

svn path=/main/trunk/; revision=2446

pym/portage_const.py

index 6ef92ccd08022bb911322a5c62d5f90afe832a11..6ed7da433c383f80586fd6a90fa75273d6f8e315 100644 (file)
@@ -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