diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-02-10 02:53:29 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-02-10 02:53:29 +0000 |
commit | 9c5e5d9fa305724a8022caa55a650640b4b24e71 (patch) | |
tree | 45e45c7327a4dbc4c90c7bd379da2a2921f2cb0a | |
parent | Stable for HPPA (bug #500320). (diff) | |
download | gentoo-2-9c5e5d9fa305724a8022caa55a650640b4b24e71.tar.gz gentoo-2-9c5e5d9fa305724a8022caa55a650640b4b24e71.tar.bz2 gentoo-2-9c5e5d9fa305724a8022caa55a650640b4b24e71.zip |
Version bump, add crypt use flag for XEP-0027 support using dev-python/python-gnupg.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
-rw-r--r-- | dev-python/sleekxmpp/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/sleekxmpp/sleekxmpp-1.2.0.ebuild | 29 |
2 files changed, 37 insertions, 2 deletions
diff --git a/dev-python/sleekxmpp/ChangeLog b/dev-python/sleekxmpp/ChangeLog index 35a1c4c72c9e..03c3cc0d49af 100644 --- a/dev-python/sleekxmpp/ChangeLog +++ b/dev-python/sleekxmpp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/sleekxmpp -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/ChangeLog,v 1.2 2013/09/05 18:46:37 mgorny Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/sleekxmpp/ChangeLog,v 1.3 2014/02/10 02:53:29 radhermit Exp $ + +*sleekxmpp-1.2.0 (10 Feb 2014) + + 10 Feb 2014; Tim Harder <radhermit@gentoo.org> +sleekxmpp-1.2.0.ebuild: + Version bump, add crypt use flag for XEP-0027 support using + dev-python/python-gnupg. 05 Sep 2013; Michał Górny <mgorny@gentoo.org> sleekxmpp-1.1.11.ebuild: Clean up PYTHON_COMPAT from old implementations. diff --git a/dev-python/sleekxmpp/sleekxmpp-1.2.0.ebuild b/dev-python/sleekxmpp/sleekxmpp-1.2.0.ebuild new file mode 100644 index 000000000000..36dd9ce0e27d --- /dev/null +++ b/dev-python/sleekxmpp/sleekxmpp-1.2.0.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.2.0.ebuild,v 1.1 2014/02/10 02:53:29 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) + +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 +} |