summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurice van der Pot <griffon26@gentoo.org>2008-08-11 18:01:15 +0000
committerMaurice van der Pot <griffon26@gentoo.org>2008-08-11 18:01:15 +0000
commit0ebea4791cdb3c972efb79c1432e71a11c9aaa69 (patch)
tree05b1dd01395236232062c32adaed233d882257ca /net-im/pymsn-t/files
parentVersion bump, bug #198030, remove old (diff)
downloadgentoo-2-0ebea4791cdb3c972efb79c1432e71a11c9aaa69.tar.gz
gentoo-2-0ebea4791cdb3c972efb79c1432e71a11c9aaa69.tar.bz2
gentoo-2-0ebea4791cdb3c972efb79c1432e71a11c9aaa69.zip
Removed old pymsn-t ebuilds, one of which had a dep on twisted-xish (bug #231675).
(Portage version: 2.2_rc3/cvs/Linux 2.6.26 x86_64)
Diffstat (limited to 'net-im/pymsn-t/files')
-rw-r--r--net-im/pymsn-t/files/pymsn-t-0.11.2-twisted-2.5.patch15
-rw-r--r--net-im/pymsn-t/files/pymsn-t.initd23
2 files changed, 0 insertions, 38 deletions
diff --git a/net-im/pymsn-t/files/pymsn-t-0.11.2-twisted-2.5.patch b/net-im/pymsn-t/files/pymsn-t-0.11.2-twisted-2.5.patch
deleted file mode 100644
index 76fbac8340bf..000000000000
--- a/net-im/pymsn-t/files/pymsn-t-0.11.2-twisted-2.5.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -ruN pymsnt-0.11.2/src/main.py pymsnt-0.11.2-fixed/src/main.py
---- pymsnt-0.11.2/src/main.py 2006-10-18 06:40:55.000000000 +0200
-+++ pymsnt-0.11.2-fixed/src/main.py 2007-04-28 16:07:49.000000000 +0200
-@@ -390,7 +390,10 @@
- # Set SIGHUP to reload the config file & close & open debug file
- signal.signal(signal.SIGHUP, SIGHUPstuff)
- # Load some scripts for PID and daemonising
-- from twisted.scripts import twistd
-+ try:
-+ from twisted.scripts import _twistd_unix as twistd
-+ except:
-+ from twisted.scripts import twistd
-
-
- def main():
diff --git a/net-im/pymsn-t/files/pymsn-t.initd b/net-im/pymsn-t/files/pymsn-t.initd
deleted file mode 100644
index 6210e96308f0..000000000000
--- a/net-im/pymsn-t/files/pymsn-t.initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/files/pymsn-t.initd,v 1.5 2006/03/08 16:49:33 humpback Exp $
-
-depend() {
- need net
- use jabber-server
-}
-
-start() {
- ebegin "Starting MSN Jabber Transport"
- start-stop-daemon --start --name "pymsn-t" --background --chuid jabber:jabber \
- --exec /usr/bin/python /usr/lib/PATH/site-packages/pymsn-t/pymsn-t.py -- \
- -c /etc/jabber/pymsn-t.xml -l /var/log/jabber/pymsn-t.log
- eend $?
-}
-
-stop() {
- ebegin "Stopping MSN Jabber Transport"
- start-stop-daemon --stop --quiet --pidfile /var/run/jabber/pymsn-t.pid
- eend $?
-}