diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-10-08 01:22:44 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-10-08 01:22:44 +0000 |
commit | 9fbfe42379e7b1d14f2611e1d29cd5cf93064d9e (patch) | |
tree | 891336618d7c64256a9b3dfaf10dafbbdd0b4cb6 | |
parent | Remove old. (diff) | |
download | gentoo-2-9fbfe42379e7b1d14f2611e1d29cd5cf93064d9e.tar.gz gentoo-2-9fbfe42379e7b1d14f2611e1d29cd5cf93064d9e.tar.bz2 gentoo-2-9fbfe42379e7b1d14f2611e1d29cd5cf93064d9e.zip |
Version bump.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
-rw-r--r-- | dev-python/sleekxmpp/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/sleekxmpp/sleekxmpp-1.3.1.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-python/sleekxmpp/ChangeLog b/dev-python/sleekxmpp/ChangeLog index e21ea3aec886..1f4d445377fe 100644 --- a/dev-python/sleekxmpp/ChangeLog +++ b/dev-python/sleekxmpp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/sleekxmpp # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/ChangeLog,v 1.6 2014/06/25 07:43:06 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/ChangeLog,v 1.7 2014/10/08 01:22:44 radhermit Exp $ + +*sleekxmpp-1.3.1 (08 Oct 2014) + + 08 Oct 2014; Tim Harder <radhermit@gentoo.org> +sleekxmpp-1.3.1.ebuild: + Version bump. 25 Jun 2014; Ian Delaney <idella4@gentoo.org> sleekxmpp-1.3.0.ebuild: bump; add py3.4 pypy diff --git a/dev-python/sleekxmpp/sleekxmpp-1.3.1.ebuild b/dev-python/sleekxmpp/sleekxmpp-1.3.1.ebuild new file mode 100644 index 000000000000..e78b01214ad2 --- /dev/null +++ b/dev-python/sleekxmpp/sleekxmpp-1.3.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/sleekxmpp-1.3.1.ebuild,v 1.1 2014/10/08 01:22:44 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) + +inherit eutils distutils-r1 + +MY_PN=SleekXMPP +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Python library for XMPP" +HOMEPAGE="http://sleekxmpp.com/ https://github.com/fritzy/SleekXMPP/" +SRC_URI="https://github.com/fritzy/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="crypt" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="crypt? ( dev-python/python-gnupg[${PYTHON_USEDEP}] )" + +S=${WORKDIR}/${MY_P} + +python_test() { + esetup.py test +} |