summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2014-12-25 15:53:37 +0000
committerMike Gilbert <floppym@gentoo.org>2014-12-25 15:53:37 +0000
commitb2c5dc2a49f540714b6cd6d5cd5a48df2861728f (patch)
tree49cea9e5d0601394e9a25d1890d1c6a9cf3c24a6 /net-im
parentConvert to python-single-r1. (diff)
downloadgentoo-2-b2c5dc2a49f540714b6cd6d5cd5a48df2861728f.tar.gz
gentoo-2-b2c5dc2a49f540714b6cd6d5cd5a48df2861728f.tar.bz2
gentoo-2-b2c5dc2a49f540714b6cd6d5cd5a48df2861728f.zip
Drop stable ebuild per bug 471546.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'net-im')
-rw-r--r--net-im/pymsn-t/ChangeLog5
-rw-r--r--net-im/pymsn-t/pymsn-t-0.11.3-r3.ebuild78
2 files changed, 4 insertions, 79 deletions
diff --git a/net-im/pymsn-t/ChangeLog b/net-im/pymsn-t/ChangeLog
index aafe772f5f38..a3b692e32bbc 100644
--- a/net-im/pymsn-t/ChangeLog
+++ b/net-im/pymsn-t/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-im/pymsn-t
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/ChangeLog,v 1.29 2014/08/05 18:34:17 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/ChangeLog,v 1.30 2014/12/25 15:53:37 floppym Exp $
+
+ 25 Dec 2014; Mike Gilbert <floppym@gentoo.org> -pymsn-t-0.11.3-r3.ebuild:
+ Drop stable ebuild per bug 471546.
05 Aug 2014; Manuel Rüger <mrueg@gentoo.org> pymsn-t-0.11.3-r3.ebuild,
pymsn-t-0.11.3-r4.ebuild:
diff --git a/net-im/pymsn-t/pymsn-t-0.11.3-r3.ebuild b/net-im/pymsn-t/pymsn-t-0.11.3-r3.ebuild
deleted file mode 100644
index c2b2e846da2c..000000000000
--- a/net-im/pymsn-t/pymsn-t-0.11.3-r3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/pymsn-t/pymsn-t-0.11.3-r3.ebuild,v 1.6 2014/08/05 18:34:17 mrueg Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-
-inherit eutils multilib python
-
-MY_PN="pymsnt"
-S=${WORKDIR}/${MY_PN}-${PV}
-DESCRIPTION="Python based jabber transport for MSN"
-HOMEPAGE="http://msn-transport.jabberstudio.org/"
-SRC_URI="http://msn-transport.jabberstudio.org/tarballs/${MY_PN}-${PV}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-DEPEND="net-im/jabber-base"
-RDEPEND="${DEPEND}
- >=dev-python/twisted-core-2.5.0
- >=dev-python/twisted-words-0.5.0
- >=dev-python/twisted-web-0.7.0
- >=dev-python/imaging-1.1"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-protocol-version.patch"
- epatch "${FILESDIR}/${P}-unexpected-xfr.patch"
- epatch "${FILESDIR}/${P}-remove-pid.patch"
- epatch "${FILESDIR}/${P}-delete-reactor.patch"
- epatch "${FILESDIR}/${P}-use-non-deprecated-hashlib.patch"
-}
-
-src_install() {
- local inspath
-
- inspath=$(python_get_sitedir)/${PN}
- insinto ${inspath}
- doins -r data src
- newins PyMSNt.py ${PN}.py
-
- insinto /etc/jabber
- newins config-example.xml ${PN}.xml
- fperms 600 /etc/jabber/${PN}.xml
- fowners jabber:jabber /etc/jabber/${PN}.xml
- dosed \
- "s:<!-- <spooldir>[^\<]*</spooldir> -->:<spooldir>/var/spool/jabber</spooldir>:" \
- /etc/jabber/${PN}.xml
- dosed \
- "s:<pid>[^\<]*</pid>:<pid>/var/run/jabber/${PN}.pid</pid>:" \
- /etc/jabber/${PN}.xml
- dosed \
- "s:<host>[^\<]*</host>:<host>example.org</host>:" \
- /etc/jabber/${PN}.xml
- dosed \
- "s:<jid>msn</jid>:<jid>msn.example.org</jid>:" \
- /etc/jabber/${PN}.xml
-
- newinitd "${FILESDIR}/${PN}-initd" ${PN}
- dosed "s:INSPATH:${inspath}:" /etc/init.d/${PN}
-}
-
-pkg_postinst() {
- python_mod_optimize ${PN}
-
- elog "A sample configuration file has been installed in /etc/jabber/${PN}.xml."
- elog "Please edit it and the configuration of your Jabber server to match."
-}
-
-pkg_postrm() {
- python_mod_cleanup ${PN}
-}