diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-10-15 12:18:47 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-10-15 12:18:47 +0000 |
commit | ac392d671825305ac15a9c635e880683bccaa687 (patch) | |
tree | 605137840d91a6853ba7fe899151302c88144afd | |
parent | Support multilib providers for deps. Bump to EAPI=5. (diff) | |
download | gentoo-2-ac392d671825305ac15a9c635e880683bccaa687.tar.gz gentoo-2-ac392d671825305ac15a9c635e880683bccaa687.tar.bz2 gentoo-2-ac392d671825305ac15a9c635e880683bccaa687.zip |
bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
-rw-r--r-- | dev-python/stomper/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/stomper/stomper-0.2.8.ebuild | 4 | ||||
-rw-r--r-- | dev-python/stomper/stomper-0.3.0.ebuild | 36 |
3 files changed, 45 insertions, 3 deletions
diff --git a/dev-python/stomper/ChangeLog b/dev-python/stomper/ChangeLog index cbe8466f5f7f..b90699ab0f31 100644 --- a/dev-python/stomper/ChangeLog +++ b/dev-python/stomper/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/stomper # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/stomper/ChangeLog,v 1.22 2014/04/18 07:36:11 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/stomper/ChangeLog,v 1.23 2014/10/15 12:18:47 idella4 Exp $ + +*stomper-0.3.0 (15 Oct 2014) + + 15 Oct 2014; Ian Delaney <idella4@gentoo.org> +stomper-0.3.0.ebuild, + stomper-0.2.8.ebuild: + bump *stomper-0.2.8 (18 Apr 2014) diff --git a/dev-python/stomper/stomper-0.2.8.ebuild b/dev-python/stomper/stomper-0.2.8.ebuild index 0a011e3e6bc8..603bb03a1b4b 100644 --- a/dev-python/stomper/stomper-0.2.8.ebuild +++ b/dev-python/stomper/stomper-0.2.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/stomper/stomper-0.2.8.ebuild,v 1.1 2014/04/18 07:36:11 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/stomper/stomper-0.2.8.ebuild,v 1.2 2014/10/15 12:18:47 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 pypy ) @@ -28,7 +28,7 @@ python_test() { esetup.py test } - python_install_all() { +python_install_all() { use examples && local EXAMPLES=( examples/. ) distutils-r1_python_install_all diff --git a/dev-python/stomper/stomper-0.3.0.ebuild b/dev-python/stomper/stomper-0.3.0.ebuild new file mode 100644 index 000000000000..5d4cf641f958 --- /dev/null +++ b/dev-python/stomper/stomper-0.3.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/stomper/stomper-0.3.0.ebuild,v 1.1 2014/10/15 12:18:47 idella4 Exp $ + +EAPI=5 +# Supports only py2 pypy +PYTHON_COMPAT=( python2_7 pypy ) + +inherit distutils-r1 + +DESCRIPTION="Transport neutral client implementation of the STOMP protocol" +HOMEPAGE="http://pypi.python.org/pypi/stomper" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="examples" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +python_prepare_all() { + mv lib/${PN}/examples . || die + distutils-r1_python_prepare_all +} + +python_test() { + esetup.py test +} + +python_install_all() { + use examples && local EXAMPLES=( examples/. ) + + distutils-r1_python_install_all +} |