Fixed dev-python/Coherence-0.5.8 ebuild by providing a missing

patch file, and also added an updated dev-python/Coherence-0.6.2
ebuild.


git-svn-id: http://svn.sabayonlinux.org/overlay@2850 d7aec97c-591d-0410-af39-a8856400b30a
This commit is contained in:
dontpanic
2009-03-19 00:30:20 +00:00
parent e46e9321ed
commit e5de20f7b2
3 changed files with 54 additions and 0 deletions
@@ -0,0 +1,11 @@
--- coherence/upnp/core/utils.py.old 2008-05-31 12:18:33.000000000 +0200
+++ coherence/upnp/core/utils.py 2008-11-09 14:09:56.000000000 +0100
@@ -116,7 +116,7 @@
tmp = route.readline()
l = tmp.split('\t')
if (len(l) > 2):
- if l[2] != '00000000': #default gateway...
+ if l[1] == '00000000': #default route
route.close()
return get_ip_address(l[0])
except IOerror, msg: