diff options
author | 2013-12-28 18:45:05 +0000 | |
---|---|---|
committer | 2013-12-28 18:45:05 +0000 | |
commit | 9965d727340bcfa532142690c00ea0b013cb6be3 (patch) | |
tree | 7dfd2e5f8ea4b6b92d84d78b8f1b84370b1015bd /dev-python/pyro | |
parent | Version bump, remove older (diff) | |
download | gentoo-2-9965d727340bcfa532142690c00ea0b013cb6be3.tar.gz gentoo-2-9965d727340bcfa532142690c00ea0b013cb6be3.tar.bz2 gentoo-2-9965d727340bcfa532142690c00ea0b013cb6be3.zip |
3.16-r1 is stable long enough to remove 3.16 using deprecated distutils
eclass.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key F0134531E1DBFAB5)
Diffstat (limited to 'dev-python/pyro')
-rw-r--r-- | dev-python/pyro/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/pyro/pyro-3.16.ebuild | 42 |
2 files changed, 5 insertions, 43 deletions
diff --git a/dev-python/pyro/ChangeLog b/dev-python/pyro/ChangeLog index cc801259c6cf..3d925639e715 100644 --- a/dev-python/pyro/ChangeLog +++ b/dev-python/pyro/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/pyro # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.94 2013/12/24 12:49:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/ChangeLog,v 1.95 2013/12/28 18:45:05 aidecoe Exp $ + + 28 Dec 2013; Amadeusz Żołnowski <aidecoe@gentoo.org> -pyro-3.16.ebuild: + 3.16-r1 is stable long enough to remove 3.16 using deprecated distutils + eclass. 24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> pyro-4.22.ebuild: Stable for x86, wrt bug #494262 diff --git a/dev-python/pyro/pyro-3.16.ebuild b/dev-python/pyro/pyro-3.16.ebuild deleted file mode 100644 index 7381e6b698f3..000000000000 --- a/dev-python/pyro/pyro-3.16.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyro/pyro-3.16.ebuild,v 1.4 2012/05/29 20:03:06 ranger Exp $ - -EAPI="3" -PYTHON_DEPEND="2:2.5" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.4 3.*" - -inherit distutils - -MY_PN="Pyro" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Advanced and powerful Distributed Object Technology system written entirely in Python" -HOMEPAGE="http://www.xs4all.nl/~irmen/pyro3/ http://pypi.python.org/pypi/Pyro" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="3" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="doc examples" - -DEPEND="!dev-python/pyro:0" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -PYTHON_MODNAME="Pyro" - -src_install() { - distutils_src_install - - if use doc; then - dohtml -r docs/* || die "Installation of documentation failed" - fi - - if use examples; then - insinto /usr/share/doc/${PF} - doins -r examples || die "Installation of examples failed" - fi -} |