From 56a40197202500ced89f44a572cec6be62dbaa7a Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 12 Dec 2007 08:06:01 +0000 Subject: Bug #198398 - Make repoman bail out if support for RMD160 hash creation appears to be missing. svn path=/main/trunk/; revision=8887 --- bin/repoman | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'bin') diff --git a/bin/repoman b/bin/repoman index f6ab04dc9..783b4fb79 100755 --- a/bin/repoman +++ b/bin/repoman @@ -809,6 +809,20 @@ if isCvs: mynew = cvstree.findnew(mycvstree, recursive=1, basedir="./") new_ebuilds.update(x for x in mynew if x.endswith(".ebuild")) del mycvstree, mynew + if "commit" == options.mode and \ + "RMD160" not in portage.checksum.hashorigin_map: + from portage.util import grablines + repo_lines = grablines("./CVS/Repository") + if repo_lines and repo_lines[0].startswith("gentoo-x86/"): + msg = "Please install " \ + "pycrypto or enable python's ssl USE flag in order " \ + "to enable RMD160 hash support. See bug #198398 for " \ + "more information." + prefix = red(" * ") + from textwrap import wrap + for line in wrap(msg, 70): + print prefix + line + sys.exit(1) dofail = 0 arch_caches={} -- cgit v1.2.3-1-g7c22