diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-05-12 08:05:38 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-05-12 08:05:38 +0000 |
commit | 80e5291250a380a1e46d7f84658d17b5df60049a (patch) | |
tree | f5a576451bedbade9c229d5cc9d9e68b22572925 /dev-python/irc | |
parent | Version bump. (diff) | |
download | gentoo-2-80e5291250a380a1e46d7f84658d17b5df60049a.tar.gz gentoo-2-80e5291250a380a1e46d7f84658d17b5df60049a.tar.bz2 gentoo-2-80e5291250a380a1e46d7f84658d17b5df60049a.zip |
bump; drop py2.6 pypy2_0 support
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/irc')
-rw-r--r-- | dev-python/irc/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/irc/irc-8.9.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-python/irc/ChangeLog b/dev-python/irc/ChangeLog index e57e2fee9bc3..4954ba40a3b1 100644 --- a/dev-python/irc/ChangeLog +++ b/dev-python/irc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/irc # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/irc/ChangeLog,v 1.21 2014/04/11 03:01:40 sdamashek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/irc/ChangeLog,v 1.22 2014/05/12 08:05:38 idella4 Exp $ + +*irc-8.9 (12 May 2014) + + 12 May 2014; Ian Delaney <idella4@gentoo.org> +irc-8.9.ebuild: + bump; drop py2.6 pypy2_0 support 11 Apr 2014; Samuel Damashek <sdamashek@gentoo.org> irc-8.5.4.ebuild: Add python3_4 to PYTHON_COMPAT for 8.5.4 diff --git a/dev-python/irc/irc-8.9.ebuild b/dev-python/irc/irc-8.9.ebuild new file mode 100644 index 000000000000..149646c9813c --- /dev/null +++ b/dev-python/irc/irc-8.9.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/irc/irc-8.9.ebuild,v 1.1 2014/05/12 08:05:38 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) + +inherit distutils-r1 + +DESCRIPTION="IRC client framework written in Python." +HOMEPAGE="https://bitbucket.org/jaraco/irc http://pypi.python.org/pypi/irc" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples test" + +DEPEND="app-arch/unzip + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] )" + +RDEPEND="!>=dev-python/python-irclib-3.2.2[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" + +PATCHES=( + "${FILESDIR}/irc-8.5.1-setup_requires.patch" +) + +python_prepare_all() { + # Don't rely on hgtools for version + sed -e "s/use_hg_version=True/version=\"${PV}\"/" -i setup.py || die + sed -e "/^tag_/d" -i setup.cfg || die + + distutils-r1_python_prepare_all +} + +python_test() { + py.test irc/tests || die "Tests failed under ${EPYTHON}" +} + +python_install_all() { + use examples && local EXAMPLES=( scripts/. ) + distutils-r1_python_install_all +} |