From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EA1FB1384B4 for ; Tue, 10 Nov 2015 11:47:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3EEAE0839; Tue, 10 Nov 2015 11:47:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 71B47E0839 for ; Tue, 10 Nov 2015 11:47:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 43895340042 for ; Tue, 10 Nov 2015 11:47:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04DB82357 for ; Tue, 10 Nov 2015 11:47:34 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1447156048.9a0a9a23d93899f2f96d6d30b18bd3aac1cbcccc.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xmpppy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xmpppy/xmpppy-0.5.0_rc1.ebuild X-VCS-Directories: dev-python/xmpppy/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: 9a0a9a23d93899f2f96d6d30b18bd3aac1cbcccc X-VCS-Branch: master Date: Tue, 10 Nov 2015 11:47:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0eaab83a-2686-4f9e-ac41-fcf70ec6f5ee X-Archives-Hash: de34c5860d79b124502a61b690123e1d commit: 9a0a9a23d93899f2f96d6d30b18bd3aac1cbcccc Author: Sergey Popov gentoo org> AuthorDate: Tue Nov 10 11:47:14 2015 +0000 Commit: Sergey Popov gentoo org> CommitDate: Tue Nov 10 11:47:28 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a0a9a23 dev-python/xmpppy: drop old broken version Package-Manager: portage-2.2.23 dev-python/xmpppy/xmpppy-0.5.0_rc1.ebuild | 42 ------------------------------- 1 file changed, 42 deletions(-) diff --git a/dev-python/xmpppy/xmpppy-0.5.0_rc1.ebuild b/dev-python/xmpppy/xmpppy-0.5.0_rc1.ebuild deleted file mode 100644 index 92fe198..0000000 --- a/dev-python/xmpppy/xmpppy-0.5.0_rc1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils eutils - -MY_P="${P/_/-}" - -DESCRIPTION="Python library providing easy scripting with Jabber" -HOMEPAGE="http://xmpppy.sourceforge.net/" -SRC_URI="mirror://sourceforge/xmpppy/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 x86" -IUSE="doc" - -RDEPEND="|| ( - dev-python/dnspython:0 - dev-python/pydns - )" -DEPEND="${RDEPEND} - dev-python/setuptools" - -S="${WORKDIR}/${MY_P}" - -PYTHON_MODNAME="xmpp" - -src_prepare() { - distutils_src_prepare - epatch "${FILESDIR}/${PN}-hashlib_ssl_deprecation.patch" -} - -src_install() { - distutils_src_install - use doc && dohtml -A py -r doc/. -}