summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice van der Pot <griffon26@gentoo.org>2010-01-10 10:25:27 +0000
committerMaurice van der Pot <griffon26@gentoo.org>2010-01-10 10:25:27 +0000
commit354b8beeb1e4e044971b626db007f4de32ec4b9c (patch)
treeb5659b35c1af454df12f5fe1a077346ef40eae13 /net-im/pyicq-t/files
parentFix compiling with java6 and non ISO-8859-1 locales. (diff)
downloadgentoo-2-354b8beeb1e4e044971b626db007f4de32ec4b9c.tar.gz
gentoo-2-354b8beeb1e4e044971b626db007f4de32ec4b9c.tar.bz2
gentoo-2-354b8beeb1e4e044971b626db007f4de32ec4b9c.zip
Removed old pyicq-t ebuilds
(Portage version: 2.1.7.5/cvs/Linux x86_64)
Diffstat (limited to 'net-im/pyicq-t/files')
-rw-r--r--net-im/pyicq-t/files/pyicq-t-0.8-twisted-2.5.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/net-im/pyicq-t/files/pyicq-t-0.8-twisted-2.5.patch b/net-im/pyicq-t/files/pyicq-t-0.8-twisted-2.5.patch
deleted file mode 100644
index f38b73d13fd8..000000000000
--- a/net-im/pyicq-t/files/pyicq-t-0.8-twisted-2.5.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -ruN pyicq-t-0.8/src/main.py pyicq-t-0.8-fixed/src/main.py
---- pyicq-t-0.8/src/main.py 2006-09-30 21:44:21.000000000 +0200
-+++ pyicq-t-0.8-fixed/src/main.py 2007-04-28 14:37:15.000000000 +0200
-@@ -89,7 +89,10 @@
- import signal
- signal.signal(signal.SIGHUP, reloadConfig)
- # Load scripts for PID and daemonizing
-- from twisted.scripts import twistd
-+ try:
-+ from twisted.scripts import _twistd_unix as twistd
-+ except:
-+ from twisted.scripts import twistd
-
- selectWarning = "Unable to install any good reactors (kqueue, cf, epoll, poll).\nWe fell back to using select. You may have scalability problems.\nThis reactor will not support more than 1024 connections +at a time. You may silence this message by choosing 'select' or 'default' as your reactor in the transport config."
- if config.reactor and len(config.reactor) > 0: