diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-01-26 11:11:27 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-01-26 11:11:27 +0000 |
commit | 1f550b78d2165e3fed18cd1111d2c99cb69b1583 (patch) | |
tree | 8de7c561e72470962a7b95002243dd257025d47c /dev-python/stomper | |
parent | Remove old. (diff) | |
download | gentoo-2-1f550b78d2165e3fed18cd1111d2c99cb69b1583.tar.gz gentoo-2-1f550b78d2165e3fed18cd1111d2c99cb69b1583.tar.bz2 gentoo-2-1f550b78d2165e3fed18cd1111d2c99cb69b1583.zip |
Remove old.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python/stomper')
-rw-r--r-- | dev-python/stomper/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/stomper/stomper-0.2.7.ebuild | 38 | ||||
-rw-r--r-- | dev-python/stomper/stomper-0.2.8.ebuild | 35 |
3 files changed, 5 insertions, 74 deletions
diff --git a/dev-python/stomper/ChangeLog b/dev-python/stomper/ChangeLog index c78160d7ff64..4170c44fed87 100644 --- a/dev-python/stomper/ChangeLog +++ b/dev-python/stomper/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/stomper # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/stomper/ChangeLog,v 1.25 2015/01/26 10:27:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/stomper/ChangeLog,v 1.26 2015/01/26 11:11:27 mrueg Exp $ + + 26 Jan 2015; Manuel Rüger <mrueg@gentoo.org> -stomper-0.2.7.ebuild, + -stomper-0.2.8.ebuild: + Remove old. 26 Jan 2015; Agostino Sarubbo <ago@gentoo.org> stomper-0.3.0.ebuild: Stable for x86, wrt bug #535378 diff --git a/dev-python/stomper/stomper-0.2.7.ebuild b/dev-python/stomper/stomper-0.2.7.ebuild deleted file mode 100644 index d7dea13e795f..000000000000 --- a/dev-python/stomper/stomper-0.2.7.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# 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.7.ebuild,v 1.3 2014/03/03 23:48:05 pacho Exp $ - -EAPI="3" -PYTHON_DEPEND="2:2.5" -SUPPORT_PYTHON_ABIS="1" -# uuid module required. -RESTRICT_PYTHON_ABIS="2.4 3.*" -DISTUTILS_SRC_TEST="setup.py" - -inherit distutils - -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" -RDEPEND="" - -src_install() { - distutils_src_install - - delete_examples_and_tests() { - rm -fr "${ED}$(python_get_sitedir)/${PN}/"{examples,tests} - } - python_execute_function -q delete_examples_and_tests - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins lib/stomper/examples/* || die "Installation of examples failed" - fi -} diff --git a/dev-python/stomper/stomper-0.2.8.ebuild b/dev-python/stomper/stomper-0.2.8.ebuild deleted file mode 100644 index 603bb03a1b4b..000000000000 --- a/dev-python/stomper/stomper-0.2.8.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# 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.2 2014/10/15 12:18:47 idella4 Exp $ - -EAPI=5 -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 -} |