From 085ee6a63fc6576f1ee486c8718b3f64e20d00fc Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@lothar.com>
Date: Wed, 1 May 2013 10:25:31 -0700
Subject: [PATCH] .gitignore: ignore the generated zope.interface egg too

Some dependencies are installed in the top-level directory, maybe
because they're required by the build process itself? I'm not sure.
Twisted is one of these, if the system version is not new enough, and
our .gitignore has a clause to ignore the resulting .egg directory. Now
that we've bumped our zope.interface dependency, it sometimes builds a
z.i egg too (even if it doesn't build a Twisted one). So ignore both.
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 9f1572c0..eeb581af 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,6 +17,7 @@
 /.built
 /src/allmydata_tahoe.egg-info/
 Twisted-*.egg
+zope.interface-*.egg
 
 /_trial_temp*
 /tmp*
-- 
2.45.2