From 95c99b74c49fe6102c770e7118e8126766e37ea9 Mon Sep 17 00:00:00 2001
From: "Zooko O'Whielacronx zooko@zooko.com" <zooko@zooko.com>
Date: Tue, 1 May 2007 01:48:38 +0530
Subject: [PATCH] zfec: switch back to minimum setuptools of 0.6c3

This is newer than the one that comes with Dapper Ubuntu 6.06, *but* if there is no setuptools at all installed, then the bootstrap script will download one itself.  So with this patch, this will install cleanly on a Dapper system as long as the Dapper version of python-setuptools is *not* installed.

darcs-hash:e9d102891d16eff4a510f8edd286fbc3b09c056a
---
 zfec/ez_setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/zfec/ez_setup.py b/zfec/ez_setup.py
index 1f12619..0a812bd 100755
--- a/zfec/ez_setup.py
+++ b/zfec/ez_setup.py
@@ -14,7 +14,8 @@ the appropriate options to ``use_setuptools()``.
 This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
-DEFAULT_VERSION = "0.6a9"
+
+DEFAULT_VERSION = "0.6c3"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {
-- 
2.45.2