From a133c087327107b3101be49287db19d2697d9a02 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@lothar.com>
Date: Tue, 13 Mar 2012 23:13:51 -0700
Subject: [PATCH] minor: hush pyflakes, move pycryptopp dep to unconditional
 section

Also change Makefile's "pyflakes" rule to emit less output, so buildbot will
count errors properly.
---
 Makefile                    | 2 +-
 src/allmydata/_auto_deps.py | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 4bf09d39..89532499 100644
--- a/Makefile
+++ b/Makefile
@@ -134,7 +134,7 @@ check-miscaptures:
 	@echo
 
 pyflakes:
-	$(PYTHON) -OOu `which pyflakes` $(SOURCES) |sort |uniq
+	@$(PYTHON) -OOu `which pyflakes` $(SOURCES) |sort |uniq
 	@echo
 
 check-umids:
diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py
index 6f7d7cf5..ee9ad6f4 100644
--- a/src/allmydata/_auto_deps.py
+++ b/src/allmydata/_auto_deps.py
@@ -51,6 +51,9 @@ install_requires = [
     # http://www.voidspace.org.uk/python/mock/
     "mock",
 
+    # pycryptopp-0.6.0 includes ed25519
+    "pycryptopp >= 0.6.0",
+
     # Will be needed to test web apps, but not yet. See #1001.
     #"windmill >= 1.3",
 ]
@@ -75,9 +78,7 @@ package_imports = [
 ]
 
 def require_more():
-    import platform, sys
-    # pycryptopp-0.6.0 includes ed25519
-    install_requires.append("pycryptopp >= 0.6.0")
+    import sys
 
     # Sqlite comes built into Python >= 2.5, and is provided by the "pysqlite"
     # distribution for Python 2.4.
-- 
2.45.2