diff options
Diffstat (limited to 'net-zope')
-rw-r--r-- | net-zope/transaction/ChangeLog | 8 | ||||
-rw-r--r-- | net-zope/transaction/transaction-1.0.1.ebuild | 36 |
2 files changed, 43 insertions, 1 deletions
diff --git a/net-zope/transaction/ChangeLog b/net-zope/transaction/ChangeLog index 13f60c11b348..76d056d10e15 100644 --- a/net-zope/transaction/ChangeLog +++ b/net-zope/transaction/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-zope/transaction # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/transaction/ChangeLog,v 1.4 2010/02/10 18:32:59 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-zope/transaction/ChangeLog,v 1.5 2010/05/10 17:41:45 arfrever Exp $ + +*transaction-1.0.1 (10 May 2010) + + 10 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -transaction-1.0.0.ebuild, +transaction-1.0.1.ebuild: + Version bump. 10 Feb 2010; Raúl Porcel <armin76@gentoo.org> transaction-1.0.0.ebuild: Add ~alpha/~sparc wrt #288603 diff --git a/net-zope/transaction/transaction-1.0.1.ebuild b/net-zope/transaction/transaction-1.0.1.ebuild new file mode 100644 index 000000000000..2ddeba5bfeda --- /dev/null +++ b/net-zope/transaction/transaction-1.0.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/transaction/transaction-1.0.1.ebuild,v 1.1 2010/05/10 17:41:45 arfrever Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +DISTUTILS_SRC_TEST="nosetests" + +inherit distutils + +DESCRIPTION="Transaction management for Python" +HOMEPAGE="http://pypi.python.org/pypi/transaction" +SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="net-zope/zope-interface" +DEPEND="${RDEPEND} + dev-python/setuptools" +RESTRICT_PYTHON_ABIS="3.*" + +DOCS="CHANGES.txt README.txt" + +src_install() { + distutils_src_install + + # Don't install tests. + delete_tests() { + rm -fr "${ED}$(python_get_sitedir)/transaction/tests" + } + python_execute_function -q delete_tests +} |